{"version":3,"sources":["node_modules/@vendasta/platform-integrations/fesm2020/vendasta-platform-integrations.mjs"],"sourcesContent":["import * as i0 from '@angular/core';\nimport { Injectable, inject } from '@angular/core';\nimport { HttpClient, HttpHeaders } from '@angular/common/http';\nimport { map } from 'rxjs/operators';\nconst environment = (window ? window['environment'] : 'prod') ?? 'prod';\nconst hostMap = {\n 'local': 'platform-integrations-api.vendasta-local.com',\n 'test': '',\n 'demo': 'platform-integrations-demo.apigateway.co',\n 'prod': 'platform-integrations-prod.apigateway.co',\n 'production': 'platform-integrations-prod.apigateway.co'\n};\nlet HostService = /*#__PURE__*/(() => {\n class HostService {\n get host() {\n return hostMap[environment.toLowerCase()];\n }\n get hostWithScheme() {\n return 'https://' + this.host;\n }\n }\n HostService.ɵfac = function HostService_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || HostService)();\n };\n HostService.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: HostService,\n factory: HostService.ɵfac,\n providedIn: 'root'\n });\n return HostService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n// *********************************\n// Code generated by sdkgen\n// DO NOT EDIT!.\n//\n// Enums.\n// *********************************\nvar ActionType = /*#__PURE__*/function (ActionType) {\n ActionType[ActionType[\"ACTION_TYPE_UNSPECIFIED\"] = 0] = \"ACTION_TYPE_UNSPECIFIED\";\n ActionType[ActionType[\"ACTION_TYPE_CONTINUE\"] = 1] = \"ACTION_TYPE_CONTINUE\";\n ActionType[ActionType[\"ACTION_TYPE_CANCEL\"] = 2] = \"ACTION_TYPE_CANCEL\";\n ActionType[ActionType[\"ACTION_TYPE_ADD_CONNECTION\"] = 3] = \"ACTION_TYPE_ADD_CONNECTION\";\n ActionType[ActionType[\"ACTION_TYPE_SEND_REQUEST\"] = 4] = \"ACTION_TYPE_SEND_REQUEST\";\n ActionType[ActionType[\"ACTION_TYPE_COPY\"] = 5] = \"ACTION_TYPE_COPY\";\n ActionType[ActionType[\"ACTION_TYPE_SAVE\"] = 6] = \"ACTION_TYPE_SAVE\";\n ActionType[ActionType[\"ACTION_TYPE_UNLOCK\"] = 7] = \"ACTION_TYPE_UNLOCK\";\n ActionType[ActionType[\"ACTION_TYPE_EDIT\"] = 8] = \"ACTION_TYPE_EDIT\";\n return ActionType;\n}(ActionType || {});\nvar ConnectionMethods = /*#__PURE__*/function (ConnectionMethods) {\n ConnectionMethods[ConnectionMethods[\"UNSPECIFIED\"] = 0] = \"UNSPECIFIED\";\n ConnectionMethods[ConnectionMethods[\"OAUTH2\"] = 1] = \"OAUTH2\";\n ConnectionMethods[ConnectionMethods[\"APIKEY\"] = 2] = \"APIKEY\";\n ConnectionMethods[ConnectionMethods[\"VENDOR_MANAGED\"] = 3] = \"VENDOR_MANAGED\";\n ConnectionMethods[ConnectionMethods[\"LEGACY_OAUTH\"] = 4] = \"LEGACY_OAUTH\";\n return ConnectionMethods;\n}(ConnectionMethods || {});\nvar ConnectionStatus = /*#__PURE__*/function (ConnectionStatus) {\n ConnectionStatus[ConnectionStatus[\"UNSPECIFIED_STATUS\"] = 0] = \"UNSPECIFIED_STATUS\";\n ConnectionStatus[ConnectionStatus[\"PRECONNECTED\"] = 1] = \"PRECONNECTED\";\n ConnectionStatus[ConnectionStatus[\"CONNECTED\"] = 2] = \"CONNECTED\";\n ConnectionStatus[ConnectionStatus[\"DISCONNECTED\"] = 3] = \"DISCONNECTED\";\n ConnectionStatus[ConnectionStatus[\"DELETED\"] = 4] = \"DELETED\";\n return ConnectionStatus;\n}(ConnectionStatus || {});\nvar FieldType = /*#__PURE__*/function (FieldType) {\n FieldType[FieldType[\"FIELD_TYPE_UNSPECIFIED\"] = 0] = \"FIELD_TYPE_UNSPECIFIED\";\n FieldType[FieldType[\"FIELD_TYPE_CHECKBOX\"] = 1] = \"FIELD_TYPE_CHECKBOX\";\n FieldType[FieldType[\"FIELD_TYPE_TOGGLE\"] = 2] = \"FIELD_TYPE_TOGGLE\";\n FieldType[FieldType[\"FIELD_TYPE_PASSWORD\"] = 3] = \"FIELD_TYPE_PASSWORD\";\n FieldType[FieldType[\"FIELD_TYPE_TEXT\"] = 4] = \"FIELD_TYPE_TEXT\";\n FieldType[FieldType[\"FIELD_TYPE_RADIO\"] = 5] = \"FIELD_TYPE_RADIO\";\n FieldType[FieldType[\"FIELD_TYPE_SELECT\"] = 6] = \"FIELD_TYPE_SELECT\";\n FieldType[FieldType[\"FIELD_TYPE_LABEL\"] = 7] = \"FIELD_TYPE_LABEL\";\n FieldType[FieldType[\"FIELD_TYPE_CHIPLIST\"] = 8] = \"FIELD_TYPE_CHIPLIST\";\n FieldType[FieldType[\"FIELD_TYPE_URL\"] = 9] = \"FIELD_TYPE_URL\";\n return FieldType;\n}(FieldType || {});\nvar SupportedContexts = /*#__PURE__*/function (SupportedContexts) {\n SupportedContexts[SupportedContexts[\"PI_CONTEXT_UNSET\"] = 0] = \"PI_CONTEXT_UNSET\";\n SupportedContexts[SupportedContexts[\"PI_CONTEXT_PARTNER\"] = 1] = \"PI_CONTEXT_PARTNER\";\n SupportedContexts[SupportedContexts[\"PI_CONTEXT_SMB\"] = 2] = \"PI_CONTEXT_SMB\";\n return SupportedContexts;\n}(SupportedContexts || {});\n// *********************************\n// Code generated by sdkgen\n// DO NOT EDIT!.\n//\n// Enums Index.\n// *********************************\n\nfunction enumStringToValue$5(enumRef, value) {\n if (typeof value === 'number') {\n return value;\n }\n return enumRef[value];\n}\nclass FieldMask {\n static fromProto(proto) {\n let m = new FieldMask();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.paths !== 'undefined') {\n toReturn['paths'] = this.paths;\n }\n return toReturn;\n }\n}\nfunction enumStringToValue$4(enumRef, value) {\n if (typeof value === 'number') {\n return value;\n }\n return enumRef[value];\n}\nclass Access {\n static fromProto(proto) {\n let m = new Access();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.scope !== 'undefined') {\n toReturn['scope'] = this.scope;\n }\n if (typeof this.public !== 'undefined') {\n toReturn['public'] = this.public;\n }\n return toReturn;\n }\n}\nfunction enumStringToValue$3(enumRef, value) {\n if (typeof value === 'number') {\n return value;\n }\n return enumRef[value];\n}\nclass Actions {\n static fromProto(proto) {\n let m = new Actions();\n m = Object.assign(m, proto);\n if (proto.actionType) {\n m.actionType = enumStringToValue$3(ActionType, proto.actionType);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.label !== 'undefined') {\n toReturn['label'] = this.label;\n }\n if (typeof this.actionType !== 'undefined') {\n toReturn['actionType'] = this.actionType;\n }\n return toReturn;\n }\n}\nclass AdditionalInfo {\n static fromProto(proto) {\n let m = new AdditionalInfo();\n m = Object.assign(m, proto);\n if (proto.websites) {\n m.websites = proto.websites.map(WebsiteInfo.fromProto);\n }\n if (proto.resources) {\n m.resources = proto.resources.map(ResourceInfo.fromProto);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.provider !== 'undefined') {\n toReturn['provider'] = this.provider;\n }\n if (typeof this.categories !== 'undefined') {\n toReturn['categories'] = this.categories;\n }\n if (typeof this.websites !== 'undefined' && this.websites !== null) {\n toReturn['websites'] = 'toApiJson' in this.websites ? this.websites.toApiJson() : this.websites;\n }\n if (typeof this.requirements !== 'undefined') {\n toReturn['requirements'] = this.requirements;\n }\n if (typeof this.resources !== 'undefined' && this.resources !== null) {\n toReturn['resources'] = 'toApiJson' in this.resources ? this.resources.toApiJson() : this.resources;\n }\n if (typeof this.businesses !== 'undefined') {\n toReturn['businesses'] = this.businesses;\n }\n if (typeof this.billing !== 'undefined') {\n toReturn['billing'] = this.billing;\n }\n return toReturn;\n }\n}\nclass ConnectionResponse {\n static fromProto(proto) {\n let m = new ConnectionResponse();\n m = Object.assign(m, proto);\n if (proto.created) {\n m.created = new Date(proto.created);\n }\n if (proto.updated) {\n m.updated = new Date(proto.updated);\n }\n if (proto.deleted) {\n m.deleted = new Date(proto.deleted);\n }\n if (proto.status) {\n m.status = enumStringToValue$3(ConnectionStatus, proto.status);\n }\n if (proto.customFields) {\n m.customFields = proto.customFields.map(CustomFields.fromProto);\n }\n if (proto.statusLastUpdated) {\n m.statusLastUpdated = new Date(proto.statusLastUpdated);\n }\n if (proto.dataLastReceived) {\n m.dataLastReceived = new Date(proto.dataLastReceived);\n }\n if (proto.context) {\n m.context = enumStringToValue$3(SupportedContexts, proto.context);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.connectionId !== 'undefined') {\n toReturn['connectionId'] = this.connectionId;\n }\n if (typeof this.namespace !== 'undefined') {\n toReturn['namespace'] = this.namespace;\n }\n if (typeof this.integrationId !== 'undefined') {\n toReturn['integrationId'] = this.integrationId;\n }\n if (typeof this.userId !== 'undefined') {\n toReturn['userId'] = this.userId;\n }\n if (typeof this.created !== 'undefined' && this.created !== null) {\n toReturn['created'] = 'toApiJson' in this.created ? this.created.toApiJson() : this.created;\n }\n if (typeof this.updated !== 'undefined' && this.updated !== null) {\n toReturn['updated'] = 'toApiJson' in this.updated ? this.updated.toApiJson() : this.updated;\n }\n if (typeof this.deleted !== 'undefined' && this.deleted !== null) {\n toReturn['deleted'] = 'toApiJson' in this.deleted ? this.deleted.toApiJson() : this.deleted;\n }\n if (typeof this.status !== 'undefined') {\n toReturn['status'] = this.status;\n }\n if (typeof this.label !== 'undefined') {\n toReturn['label'] = this.label;\n }\n if (typeof this.externalId !== 'undefined') {\n toReturn['externalId'] = this.externalId;\n }\n if (typeof this.customFields !== 'undefined' && this.customFields !== null) {\n toReturn['customFields'] = 'toApiJson' in this.customFields ? this.customFields.toApiJson() : this.customFields;\n }\n if (typeof this.statusLastUpdated !== 'undefined' && this.statusLastUpdated !== null) {\n toReturn['statusLastUpdated'] = 'toApiJson' in this.statusLastUpdated ? this.statusLastUpdated.toApiJson() : this.statusLastUpdated;\n }\n if (typeof this.dataLastReceived !== 'undefined' && this.dataLastReceived !== null) {\n toReturn['dataLastReceived'] = 'toApiJson' in this.dataLastReceived ? this.dataLastReceived.toApiJson() : this.dataLastReceived;\n }\n if (typeof this.context !== 'undefined') {\n toReturn['context'] = this.context;\n }\n return toReturn;\n }\n}\nclass CreateConnectionRequest {\n static fromProto(proto) {\n let m = new CreateConnectionRequest();\n m = Object.assign(m, proto);\n if (proto.customFields) {\n m.customFields = proto.customFields.map(CustomFields.fromProto);\n }\n if (proto.context) {\n m.context = enumStringToValue$3(SupportedContexts, proto.context);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.namespace !== 'undefined') {\n toReturn['namespace'] = this.namespace;\n }\n if (typeof this.integrationId !== 'undefined') {\n toReturn['integrationId'] = this.integrationId;\n }\n if (typeof this.customFields !== 'undefined' && this.customFields !== null) {\n toReturn['customFields'] = 'toApiJson' in this.customFields ? this.customFields.toApiJson() : this.customFields;\n }\n if (typeof this.context !== 'undefined') {\n toReturn['context'] = this.context;\n }\n return toReturn;\n }\n}\nclass CreateConnectionResponse {\n static fromProto(proto) {\n let m = new CreateConnectionResponse();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.connectionId !== 'undefined') {\n toReturn['connectionId'] = this.connectionId;\n }\n return toReturn;\n }\n}\nclass CreateIntegrationRequest {\n static fromProto(proto) {\n let m = new CreateIntegrationRequest();\n m = Object.assign(m, proto);\n if (proto.connectionMethod) {\n m.connectionMethod = enumStringToValue$3(ConnectionMethods, proto.connectionMethod);\n }\n if (proto.additionalInfo) {\n m.additionalInfo = AdditionalInfo.fromProto(proto.additionalInfo);\n }\n if (proto.maxConnections) {\n m.maxConnections = parseInt(proto.maxConnections, 10);\n }\n if (proto.supportedContexts) {\n m.supportedContexts = proto.supportedContexts.map(v => enumStringToValue$3(SupportedContexts, v));\n }\n if (proto.preconnectFormFields) {\n m.preconnectFormFields = FormConfig.fromProto(proto.preconnectFormFields);\n }\n if (proto.configPageFields) {\n m.configPageFields = proto.configPageFields.map(FormConfig.fromProto);\n }\n if (proto.instructions) {\n m.instructions = FormConfig.fromProto(proto.instructions);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.ownerId !== 'undefined') {\n toReturn['ownerId'] = this.ownerId;\n }\n if (typeof this.logo !== 'undefined') {\n toReturn['logo'] = this.logo;\n }\n if (typeof this.displayName !== 'undefined') {\n toReturn['displayName'] = this.displayName;\n }\n if (typeof this.description !== 'undefined') {\n toReturn['description'] = this.description;\n }\n if (typeof this.integrationType !== 'undefined') {\n toReturn['integrationType'] = this.integrationType;\n }\n if (typeof this.connectionMethod !== 'undefined') {\n toReturn['connectionMethod'] = this.connectionMethod;\n }\n if (typeof this.clientId !== 'undefined') {\n toReturn['clientId'] = this.clientId;\n }\n if (typeof this.clientSecret !== 'undefined') {\n toReturn['clientSecret'] = this.clientSecret;\n }\n if (typeof this.apiKey !== 'undefined') {\n toReturn['apiKey'] = this.apiKey;\n }\n if (typeof this.authenticationUrl !== 'undefined') {\n toReturn['authenticationUrl'] = this.authenticationUrl;\n }\n if (typeof this.tokenUrl !== 'undefined') {\n toReturn['tokenUrl'] = this.tokenUrl;\n }\n if (typeof this.longDescription !== 'undefined') {\n toReturn['longDescription'] = this.longDescription;\n }\n if (typeof this.additionalInfo !== 'undefined' && this.additionalInfo !== null) {\n toReturn['additionalInfo'] = 'toApiJson' in this.additionalInfo ? this.additionalInfo.toApiJson() : this.additionalInfo;\n }\n if (typeof this.baseUrl !== 'undefined') {\n toReturn['baseUrl'] = this.baseUrl;\n }\n if (typeof this.maxConnections !== 'undefined') {\n toReturn['maxConnections'] = this.maxConnections;\n }\n if (typeof this.webhookVerifierToken !== 'undefined') {\n toReturn['webhookVerifierToken'] = this.webhookVerifierToken;\n }\n if (typeof this.supportedContexts !== 'undefined') {\n toReturn['supportedContexts'] = this.supportedContexts;\n }\n if (typeof this.fieldExtensionIds !== 'undefined') {\n toReturn['fieldExtensionIds'] = this.fieldExtensionIds;\n }\n if (typeof this.preconnectFormFields !== 'undefined' && this.preconnectFormFields !== null) {\n toReturn['preconnectFormFields'] = 'toApiJson' in this.preconnectFormFields ? this.preconnectFormFields.toApiJson() : this.preconnectFormFields;\n }\n if (typeof this.configPageFields !== 'undefined' && this.configPageFields !== null) {\n toReturn['configPageFields'] = 'toApiJson' in this.configPageFields ? this.configPageFields.toApiJson() : this.configPageFields;\n }\n if (typeof this.instructions !== 'undefined' && this.instructions !== null) {\n toReturn['instructions'] = 'toApiJson' in this.instructions ? this.instructions.toApiJson() : this.instructions;\n }\n return toReturn;\n }\n}\nclass CreateIntegrationResponse {\n static fromProto(proto) {\n let m = new CreateIntegrationResponse();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.integrationId !== 'undefined') {\n toReturn['integrationId'] = this.integrationId;\n }\n return toReturn;\n }\n}\nclass CustomFields {\n static fromProto(proto) {\n let m = new CustomFields();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.label !== 'undefined') {\n toReturn['label'] = this.label;\n }\n if (typeof this.value !== 'undefined') {\n toReturn['value'] = this.value;\n }\n return toReturn;\n }\n}\nclass DeleteConnectionRequest {\n static fromProto(proto) {\n let m = new DeleteConnectionRequest();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.connectionId !== 'undefined') {\n toReturn['connectionId'] = this.connectionId;\n }\n if (typeof this.namespace !== 'undefined') {\n toReturn['namespace'] = this.namespace;\n }\n return toReturn;\n }\n}\nclass DeleteIntegrationRequest {\n static fromProto(proto) {\n let m = new DeleteIntegrationRequest();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.integrationId !== 'undefined') {\n toReturn['integrationId'] = this.integrationId;\n }\n if (typeof this.namespace !== 'undefined') {\n toReturn['namespace'] = this.namespace;\n }\n return toReturn;\n }\n}\nclass EmitEventRequest {\n static fromProto(proto) {\n let m = new EmitEventRequest();\n m = Object.assign(m, proto);\n if (proto.emittedAt) {\n m.emittedAt = new Date(proto.emittedAt);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.topic !== 'undefined') {\n toReturn['topic'] = this.topic;\n }\n if (typeof this.namespace !== 'undefined') {\n toReturn['namespace'] = this.namespace;\n }\n if (typeof this.payload !== 'undefined') {\n toReturn['payload'] = this.payload;\n }\n if (typeof this.eventId !== 'undefined') {\n toReturn['eventId'] = this.eventId;\n }\n if (typeof this.emittedAt !== 'undefined' && this.emittedAt !== null) {\n toReturn['emittedAt'] = 'toApiJson' in this.emittedAt ? this.emittedAt.toApiJson() : this.emittedAt;\n }\n if (typeof this.ownerId !== 'undefined') {\n toReturn['ownerId'] = this.ownerId;\n }\n return toReturn;\n }\n}\nclass EmitEventResponse {\n static fromProto(proto) {\n let m = new EmitEventResponse();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.eventId !== 'undefined') {\n toReturn['eventId'] = this.eventId;\n }\n return toReturn;\n }\n}\nclass FieldConfig {\n static fromProto(proto) {\n let m = new FieldConfig();\n m = Object.assign(m, proto);\n if (proto.fieldType) {\n m.fieldType = enumStringToValue$3(FieldType, proto.fieldType);\n }\n if (proto.dependents) {\n m.dependents = proto.dependents.map(FieldConfig.fromProto);\n }\n if (proto.options) {\n m.options = proto.options.map(FieldOptions.fromProto);\n }\n if (proto.actions) {\n m.actions = proto.actions.map(Actions.fromProto);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.id !== 'undefined') {\n toReturn['id'] = this.id;\n }\n if (typeof this.label !== 'undefined') {\n toReturn['label'] = this.label;\n }\n if (typeof this.placeHolder !== 'undefined') {\n toReturn['placeHolder'] = this.placeHolder;\n }\n if (typeof this.hintText !== 'undefined') {\n toReturn['hintText'] = this.hintText;\n }\n if (typeof this.fieldType !== 'undefined') {\n toReturn['fieldType'] = this.fieldType;\n }\n if (typeof this.required !== 'undefined') {\n toReturn['required'] = this.required;\n }\n if (typeof this.dependents !== 'undefined' && this.dependents !== null) {\n toReturn['dependents'] = 'toApiJson' in this.dependents ? this.dependents.toApiJson() : this.dependents;\n }\n if (typeof this.options !== 'undefined' && this.options !== null) {\n toReturn['options'] = 'toApiJson' in this.options ? this.options.toApiJson() : this.options;\n }\n if (typeof this.actions !== 'undefined' && this.actions !== null) {\n toReturn['actions'] = 'toApiJson' in this.actions ? this.actions.toApiJson() : this.actions;\n }\n if (typeof this.url !== 'undefined') {\n toReturn['url'] = this.url;\n }\n if (typeof this.icon !== 'undefined') {\n toReturn['icon'] = this.icon;\n }\n if (typeof this.defaultValue !== 'undefined') {\n toReturn['defaultValue'] = this.defaultValue;\n }\n return toReturn;\n }\n}\nclass FieldOptions {\n static fromProto(proto) {\n let m = new FieldOptions();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.label !== 'undefined') {\n toReturn['label'] = this.label;\n }\n if (typeof this.value !== 'undefined') {\n toReturn['value'] = this.value;\n }\n return toReturn;\n }\n}\nclass FormConfig {\n static fromProto(proto) {\n let m = new FormConfig();\n m = Object.assign(m, proto);\n if (proto.fields) {\n m.fields = proto.fields.map(FieldConfig.fromProto);\n }\n if (proto.actions) {\n m.actions = proto.actions.map(Actions.fromProto);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.title !== 'undefined') {\n toReturn['title'] = this.title;\n }\n if (typeof this.description !== 'undefined') {\n toReturn['description'] = this.description;\n }\n if (typeof this.fields !== 'undefined' && this.fields !== null) {\n toReturn['fields'] = 'toApiJson' in this.fields ? this.fields.toApiJson() : this.fields;\n }\n if (typeof this.actions !== 'undefined' && this.actions !== null) {\n toReturn['actions'] = 'toApiJson' in this.actions ? this.actions.toApiJson() : this.actions;\n }\n return toReturn;\n }\n}\nclass GetConnectionDataRequest {\n static fromProto(proto) {\n let m = new GetConnectionDataRequest();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.connectionId !== 'undefined') {\n toReturn['connectionId'] = this.connectionId;\n }\n return toReturn;\n }\n}\nclass GetConnectionDataResponse {\n static fromProto(proto) {\n let m = new GetConnectionDataResponse();\n m = Object.assign(m, proto);\n if (proto.customFields) {\n m.customFields = proto.customFields.map(CustomFields.fromProto);\n }\n if (proto.status) {\n m.status = enumStringToValue$3(ConnectionStatus, proto.status);\n }\n if (proto.statusLastUpdated) {\n m.statusLastUpdated = new Date(proto.statusLastUpdated);\n }\n if (proto.dataLastReceived) {\n m.dataLastReceived = new Date(proto.dataLastReceived);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.connectionId !== 'undefined') {\n toReturn['connectionId'] = this.connectionId;\n }\n if (typeof this.namespace !== 'undefined') {\n toReturn['namespace'] = this.namespace;\n }\n if (typeof this.integrationId !== 'undefined') {\n toReturn['integrationId'] = this.integrationId;\n }\n if (typeof this.customFields !== 'undefined' && this.customFields !== null) {\n toReturn['customFields'] = 'toApiJson' in this.customFields ? this.customFields.toApiJson() : this.customFields;\n }\n if (typeof this.status !== 'undefined') {\n toReturn['status'] = this.status;\n }\n if (typeof this.statusLastUpdated !== 'undefined' && this.statusLastUpdated !== null) {\n toReturn['statusLastUpdated'] = 'toApiJson' in this.statusLastUpdated ? this.statusLastUpdated.toApiJson() : this.statusLastUpdated;\n }\n if (typeof this.dataLastReceived !== 'undefined' && this.dataLastReceived !== null) {\n toReturn['dataLastReceived'] = 'toApiJson' in this.dataLastReceived ? this.dataLastReceived.toApiJson() : this.dataLastReceived;\n }\n return toReturn;\n }\n}\nclass GetConnectionRequest {\n static fromProto(proto) {\n let m = new GetConnectionRequest();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.connectionId !== 'undefined') {\n toReturn['connectionId'] = this.connectionId;\n }\n if (typeof this.namespace !== 'undefined') {\n toReturn['namespace'] = this.namespace;\n }\n return toReturn;\n }\n}\nclass GetConnectionResponse {\n static fromProto(proto) {\n let m = new GetConnectionResponse();\n m = Object.assign(m, proto);\n if (proto.created) {\n m.created = new Date(proto.created);\n }\n if (proto.updated) {\n m.updated = new Date(proto.updated);\n }\n if (proto.deleted) {\n m.deleted = new Date(proto.deleted);\n }\n if (proto.status) {\n m.status = enumStringToValue$3(ConnectionStatus, proto.status);\n }\n if (proto.customFields) {\n m.customFields = proto.customFields.map(CustomFields.fromProto);\n }\n if (proto.context) {\n m.context = enumStringToValue$3(SupportedContexts, proto.context);\n }\n if (proto.statusLastUpdated) {\n m.statusLastUpdated = new Date(proto.statusLastUpdated);\n }\n if (proto.dataLastReceived) {\n m.dataLastReceived = new Date(proto.dataLastReceived);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.connectionId !== 'undefined') {\n toReturn['connectionId'] = this.connectionId;\n }\n if (typeof this.namespace !== 'undefined') {\n toReturn['namespace'] = this.namespace;\n }\n if (typeof this.integrationId !== 'undefined') {\n toReturn['integrationId'] = this.integrationId;\n }\n if (typeof this.userId !== 'undefined') {\n toReturn['userId'] = this.userId;\n }\n if (typeof this.created !== 'undefined' && this.created !== null) {\n toReturn['created'] = 'toApiJson' in this.created ? this.created.toApiJson() : this.created;\n }\n if (typeof this.updated !== 'undefined' && this.updated !== null) {\n toReturn['updated'] = 'toApiJson' in this.updated ? this.updated.toApiJson() : this.updated;\n }\n if (typeof this.deleted !== 'undefined' && this.deleted !== null) {\n toReturn['deleted'] = 'toApiJson' in this.deleted ? this.deleted.toApiJson() : this.deleted;\n }\n if (typeof this.status !== 'undefined') {\n toReturn['status'] = this.status;\n }\n if (typeof this.label !== 'undefined') {\n toReturn['label'] = this.label;\n }\n if (typeof this.externalId !== 'undefined') {\n toReturn['externalId'] = this.externalId;\n }\n if (typeof this.customFields !== 'undefined' && this.customFields !== null) {\n toReturn['customFields'] = 'toApiJson' in this.customFields ? this.customFields.toApiJson() : this.customFields;\n }\n if (typeof this.context !== 'undefined') {\n toReturn['context'] = this.context;\n }\n if (typeof this.statusLastUpdated !== 'undefined' && this.statusLastUpdated !== null) {\n toReturn['statusLastUpdated'] = 'toApiJson' in this.statusLastUpdated ? this.statusLastUpdated.toApiJson() : this.statusLastUpdated;\n }\n if (typeof this.dataLastReceived !== 'undefined' && this.dataLastReceived !== null) {\n toReturn['dataLastReceived'] = 'toApiJson' in this.dataLastReceived ? this.dataLastReceived.toApiJson() : this.dataLastReceived;\n }\n return toReturn;\n }\n}\nclass GetIntegrationMarketingRequest {\n static fromProto(proto) {\n let m = new GetIntegrationMarketingRequest();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.integrationId !== 'undefined') {\n toReturn['integrationId'] = this.integrationId;\n }\n return toReturn;\n }\n}\nclass GetIntegrationRequest {\n static fromProto(proto) {\n let m = new GetIntegrationRequest();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.integrationId !== 'undefined') {\n toReturn['integrationId'] = this.integrationId;\n }\n return toReturn;\n }\n}\nclass GetIntegrationResponse {\n static fromProto(proto) {\n let m = new GetIntegrationResponse();\n m = Object.assign(m, proto);\n if (proto.connectionMethod) {\n m.connectionMethod = enumStringToValue$3(ConnectionMethods, proto.connectionMethod);\n }\n if (proto.created) {\n m.created = new Date(proto.created);\n }\n if (proto.updated) {\n m.updated = new Date(proto.updated);\n }\n if (proto.deleted) {\n m.deleted = new Date(proto.deleted);\n }\n if (proto.additionalInfo) {\n m.additionalInfo = AdditionalInfo.fromProto(proto.additionalInfo);\n }\n if (proto.maxConnections) {\n m.maxConnections = parseInt(proto.maxConnections, 10);\n }\n if (proto.supportedContexts) {\n m.supportedContexts = proto.supportedContexts.map(v => enumStringToValue$3(SupportedContexts, v));\n }\n if (proto.preconnectFormFields) {\n m.preconnectFormFields = FormConfig.fromProto(proto.preconnectFormFields);\n }\n if (proto.configPageFields) {\n m.configPageFields = proto.configPageFields.map(FormConfig.fromProto);\n }\n if (proto.instructions) {\n m.instructions = FormConfig.fromProto(proto.instructions);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.integrationId !== 'undefined') {\n toReturn['integrationId'] = this.integrationId;\n }\n if (typeof this.ownerId !== 'undefined') {\n toReturn['ownerId'] = this.ownerId;\n }\n if (typeof this.logo !== 'undefined') {\n toReturn['logo'] = this.logo;\n }\n if (typeof this.displayName !== 'undefined') {\n toReturn['displayName'] = this.displayName;\n }\n if (typeof this.description !== 'undefined') {\n toReturn['description'] = this.description;\n }\n if (typeof this.integrationType !== 'undefined') {\n toReturn['integrationType'] = this.integrationType;\n }\n if (typeof this.clientId !== 'undefined') {\n toReturn['clientId'] = this.clientId;\n }\n if (typeof this.clientSecret !== 'undefined') {\n toReturn['clientSecret'] = this.clientSecret;\n }\n if (typeof this.apiKey !== 'undefined') {\n toReturn['apiKey'] = this.apiKey;\n }\n if (typeof this.authenticationUrl !== 'undefined') {\n toReturn['authenticationUrl'] = this.authenticationUrl;\n }\n if (typeof this.tokenUrl !== 'undefined') {\n toReturn['tokenUrl'] = this.tokenUrl;\n }\n if (typeof this.connectionMethod !== 'undefined') {\n toReturn['connectionMethod'] = this.connectionMethod;\n }\n if (typeof this.created !== 'undefined' && this.created !== null) {\n toReturn['created'] = 'toApiJson' in this.created ? this.created.toApiJson() : this.created;\n }\n if (typeof this.updated !== 'undefined' && this.updated !== null) {\n toReturn['updated'] = 'toApiJson' in this.updated ? this.updated.toApiJson() : this.updated;\n }\n if (typeof this.deleted !== 'undefined' && this.deleted !== null) {\n toReturn['deleted'] = 'toApiJson' in this.deleted ? this.deleted.toApiJson() : this.deleted;\n }\n if (typeof this.longDescription !== 'undefined') {\n toReturn['longDescription'] = this.longDescription;\n }\n if (typeof this.additionalInfo !== 'undefined' && this.additionalInfo !== null) {\n toReturn['additionalInfo'] = 'toApiJson' in this.additionalInfo ? this.additionalInfo.toApiJson() : this.additionalInfo;\n }\n if (typeof this.baseUrl !== 'undefined') {\n toReturn['baseUrl'] = this.baseUrl;\n }\n if (typeof this.maxConnections !== 'undefined') {\n toReturn['maxConnections'] = this.maxConnections;\n }\n if (typeof this.webhookVerifierToken !== 'undefined') {\n toReturn['webhookVerifierToken'] = this.webhookVerifierToken;\n }\n if (typeof this.supportedContexts !== 'undefined') {\n toReturn['supportedContexts'] = this.supportedContexts;\n }\n if (typeof this.fieldExtensionIds !== 'undefined') {\n toReturn['fieldExtensionIds'] = this.fieldExtensionIds;\n }\n if (typeof this.preconnectFormFields !== 'undefined' && this.preconnectFormFields !== null) {\n toReturn['preconnectFormFields'] = 'toApiJson' in this.preconnectFormFields ? this.preconnectFormFields.toApiJson() : this.preconnectFormFields;\n }\n if (typeof this.configPageFields !== 'undefined' && this.configPageFields !== null) {\n toReturn['configPageFields'] = 'toApiJson' in this.configPageFields ? this.configPageFields.toApiJson() : this.configPageFields;\n }\n if (typeof this.instructions !== 'undefined' && this.instructions !== null) {\n toReturn['instructions'] = 'toApiJson' in this.instructions ? this.instructions.toApiJson() : this.instructions;\n }\n return toReturn;\n }\n}\nclass GetMultiIntegrationMarketingRequest {\n static fromProto(proto) {\n let m = new GetMultiIntegrationMarketingRequest();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.integrationIds !== 'undefined') {\n toReturn['integrationIds'] = this.integrationIds;\n }\n return toReturn;\n }\n}\nclass GetMultiIntegrationMarketingResponse {\n static fromProto(proto) {\n let m = new GetMultiIntegrationMarketingResponse();\n m = Object.assign(m, proto);\n if (proto.integrations) {\n m.integrations = proto.integrations.map(IntegrationMarketingResponse.fromProto);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.integrations !== 'undefined' && this.integrations !== null) {\n toReturn['integrations'] = 'toApiJson' in this.integrations ? this.integrations.toApiJson() : this.integrations;\n }\n return toReturn;\n }\n}\nclass IntegrationMarketingResponse {\n static fromProto(proto) {\n let m = new IntegrationMarketingResponse();\n m = Object.assign(m, proto);\n if (proto.created) {\n m.created = new Date(proto.created);\n }\n if (proto.updated) {\n m.updated = new Date(proto.updated);\n }\n if (proto.deleted) {\n m.deleted = new Date(proto.deleted);\n }\n if (proto.additionalInfo) {\n m.additionalInfo = AdditionalInfo.fromProto(proto.additionalInfo);\n }\n if (proto.maxConnections) {\n m.maxConnections = parseInt(proto.maxConnections, 10);\n }\n if (proto.connectionMethod) {\n m.connectionMethod = enumStringToValue$3(ConnectionMethods, proto.connectionMethod);\n }\n if (proto.supportedContexts) {\n m.supportedContexts = proto.supportedContexts.map(v => enumStringToValue$3(SupportedContexts, v));\n }\n if (proto.preconnectFormFields) {\n m.preconnectFormFields = FormConfig.fromProto(proto.preconnectFormFields);\n }\n if (proto.configPageFields) {\n m.configPageFields = proto.configPageFields.map(FormConfig.fromProto);\n }\n if (proto.instructions) {\n m.instructions = FormConfig.fromProto(proto.instructions);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.integrationId !== 'undefined') {\n toReturn['integrationId'] = this.integrationId;\n }\n if (typeof this.logo !== 'undefined') {\n toReturn['logo'] = this.logo;\n }\n if (typeof this.displayName !== 'undefined') {\n toReturn['displayName'] = this.displayName;\n }\n if (typeof this.description !== 'undefined') {\n toReturn['description'] = this.description;\n }\n if (typeof this.integrationType !== 'undefined') {\n toReturn['integrationType'] = this.integrationType;\n }\n if (typeof this.status !== 'undefined') {\n toReturn['status'] = this.status;\n }\n if (typeof this.created !== 'undefined' && this.created !== null) {\n toReturn['created'] = 'toApiJson' in this.created ? this.created.toApiJson() : this.created;\n }\n if (typeof this.updated !== 'undefined' && this.updated !== null) {\n toReturn['updated'] = 'toApiJson' in this.updated ? this.updated.toApiJson() : this.updated;\n }\n if (typeof this.deleted !== 'undefined' && this.deleted !== null) {\n toReturn['deleted'] = 'toApiJson' in this.deleted ? this.deleted.toApiJson() : this.deleted;\n }\n if (typeof this.longDescription !== 'undefined') {\n toReturn['longDescription'] = this.longDescription;\n }\n if (typeof this.additionalInfo !== 'undefined' && this.additionalInfo !== null) {\n toReturn['additionalInfo'] = 'toApiJson' in this.additionalInfo ? this.additionalInfo.toApiJson() : this.additionalInfo;\n }\n if (typeof this.maxConnections !== 'undefined') {\n toReturn['maxConnections'] = this.maxConnections;\n }\n if (typeof this.connectionMethod !== 'undefined') {\n toReturn['connectionMethod'] = this.connectionMethod;\n }\n if (typeof this.supportedContexts !== 'undefined') {\n toReturn['supportedContexts'] = this.supportedContexts;\n }\n if (typeof this.preconnectFormFields !== 'undefined' && this.preconnectFormFields !== null) {\n toReturn['preconnectFormFields'] = 'toApiJson' in this.preconnectFormFields ? this.preconnectFormFields.toApiJson() : this.preconnectFormFields;\n }\n if (typeof this.configPageFields !== 'undefined' && this.configPageFields !== null) {\n toReturn['configPageFields'] = 'toApiJson' in this.configPageFields ? this.configPageFields.toApiJson() : this.configPageFields;\n }\n if (typeof this.instructions !== 'undefined' && this.instructions !== null) {\n toReturn['instructions'] = 'toApiJson' in this.instructions ? this.instructions.toApiJson() : this.instructions;\n }\n return toReturn;\n }\n}\nclass IntegrationsFilters {\n static fromProto(proto) {\n let m = new IntegrationsFilters();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.displayName !== 'undefined') {\n toReturn['displayName'] = this.displayName;\n }\n return toReturn;\n }\n}\nclass ListConnectionRequest {\n static fromProto(proto) {\n let m = new ListConnectionRequest();\n m = Object.assign(m, proto);\n if (proto.pagingOptions) {\n m.pagingOptions = PagedRequestOptions$1.fromProto(proto.pagingOptions);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.namespace !== 'undefined') {\n toReturn['namespace'] = this.namespace;\n }\n if (typeof this.pagingOptions !== 'undefined' && this.pagingOptions !== null) {\n toReturn['pagingOptions'] = 'toApiJson' in this.pagingOptions ? this.pagingOptions.toApiJson() : this.pagingOptions;\n }\n return toReturn;\n }\n}\nclass ListConnectionResponse {\n static fromProto(proto) {\n let m = new ListConnectionResponse();\n m = Object.assign(m, proto);\n if (proto.connections) {\n m.connections = proto.connections.map(ConnectionResponse.fromProto);\n }\n if (proto.pagingMetadata) {\n m.pagingMetadata = PagedResponseMetadata$1.fromProto(proto.pagingMetadata);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.connections !== 'undefined' && this.connections !== null) {\n toReturn['connections'] = 'toApiJson' in this.connections ? this.connections.toApiJson() : this.connections;\n }\n if (typeof this.pagingMetadata !== 'undefined' && this.pagingMetadata !== null) {\n toReturn['pagingMetadata'] = 'toApiJson' in this.pagingMetadata ? this.pagingMetadata.toApiJson() : this.pagingMetadata;\n }\n return toReturn;\n }\n}\nclass ListIntegrationMarketingRequest {\n static fromProto(proto) {\n let m = new ListIntegrationMarketingRequest();\n m = Object.assign(m, proto);\n if (proto.pagingOptions) {\n m.pagingOptions = PagedRequestOptions$1.fromProto(proto.pagingOptions);\n }\n if (proto.filters) {\n m.filters = IntegrationsFilters.fromProto(proto.filters);\n }\n if (proto.supportedContexts) {\n m.supportedContexts = enumStringToValue$3(SupportedContexts, proto.supportedContexts);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.pagingOptions !== 'undefined' && this.pagingOptions !== null) {\n toReturn['pagingOptions'] = 'toApiJson' in this.pagingOptions ? this.pagingOptions.toApiJson() : this.pagingOptions;\n }\n if (typeof this.filters !== 'undefined' && this.filters !== null) {\n toReturn['filters'] = 'toApiJson' in this.filters ? this.filters.toApiJson() : this.filters;\n }\n if (typeof this.supportedContexts !== 'undefined') {\n toReturn['supportedContexts'] = this.supportedContexts;\n }\n return toReturn;\n }\n}\nclass ListIntegrationMarketingResponse {\n static fromProto(proto) {\n let m = new ListIntegrationMarketingResponse();\n m = Object.assign(m, proto);\n if (proto.integrations) {\n m.integrations = proto.integrations.map(IntegrationMarketingResponse.fromProto);\n }\n if (proto.pagingMetadata) {\n m.pagingMetadata = PagedResponseMetadata$1.fromProto(proto.pagingMetadata);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.integrations !== 'undefined' && this.integrations !== null) {\n toReturn['integrations'] = 'toApiJson' in this.integrations ? this.integrations.toApiJson() : this.integrations;\n }\n if (typeof this.pagingMetadata !== 'undefined' && this.pagingMetadata !== null) {\n toReturn['pagingMetadata'] = 'toApiJson' in this.pagingMetadata ? this.pagingMetadata.toApiJson() : this.pagingMetadata;\n }\n return toReturn;\n }\n}\nclass ListIntegrationRequest {\n static fromProto(proto) {\n let m = new ListIntegrationRequest();\n m = Object.assign(m, proto);\n if (proto.pagingOptions) {\n m.pagingOptions = PagedRequestOptions$1.fromProto(proto.pagingOptions);\n }\n if (proto.filters) {\n m.filters = IntegrationsFilters.fromProto(proto.filters);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.pagingOptions !== 'undefined' && this.pagingOptions !== null) {\n toReturn['pagingOptions'] = 'toApiJson' in this.pagingOptions ? this.pagingOptions.toApiJson() : this.pagingOptions;\n }\n if (typeof this.filters !== 'undefined' && this.filters !== null) {\n toReturn['filters'] = 'toApiJson' in this.filters ? this.filters.toApiJson() : this.filters;\n }\n return toReturn;\n }\n}\nclass ListIntegrationResponse {\n static fromProto(proto) {\n let m = new ListIntegrationResponse();\n m = Object.assign(m, proto);\n if (proto.integrations) {\n m.integrations = proto.integrations.map(GetIntegrationResponse.fromProto);\n }\n if (proto.pagingMetadata) {\n m.pagingMetadata = PagedResponseMetadata$1.fromProto(proto.pagingMetadata);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.integrations !== 'undefined' && this.integrations !== null) {\n toReturn['integrations'] = 'toApiJson' in this.integrations ? this.integrations.toApiJson() : this.integrations;\n }\n if (typeof this.pagingMetadata !== 'undefined' && this.pagingMetadata !== null) {\n toReturn['pagingMetadata'] = 'toApiJson' in this.pagingMetadata ? this.pagingMetadata.toApiJson() : this.pagingMetadata;\n }\n return toReturn;\n }\n}\nlet PagedRequestOptions$1 = class PagedRequestOptions {\n static fromProto(proto) {\n let m = new PagedRequestOptions();\n m = Object.assign(m, proto);\n if (proto.pageSize) {\n m.pageSize = parseInt(proto.pageSize, 10);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.cursor !== 'undefined') {\n toReturn['cursor'] = this.cursor;\n }\n if (typeof this.pageSize !== 'undefined') {\n toReturn['pageSize'] = this.pageSize;\n }\n return toReturn;\n }\n};\nlet PagedResponseMetadata$1 = class PagedResponseMetadata {\n static fromProto(proto) {\n let m = new PagedResponseMetadata();\n m = Object.assign(m, proto);\n if (proto.totalResults) {\n m.totalResults = parseInt(proto.totalResults, 10);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.nextCursor !== 'undefined') {\n toReturn['nextCursor'] = this.nextCursor;\n }\n if (typeof this.hasMore !== 'undefined') {\n toReturn['hasMore'] = this.hasMore;\n }\n if (typeof this.totalResults !== 'undefined') {\n toReturn['totalResults'] = this.totalResults;\n }\n return toReturn;\n }\n};\nclass ResourceInfo {\n static fromProto(proto) {\n let m = new ResourceInfo();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.resourceName !== 'undefined') {\n toReturn['resourceName'] = this.resourceName;\n }\n if (typeof this.resourceUrl !== 'undefined') {\n toReturn['resourceUrl'] = this.resourceUrl;\n }\n return toReturn;\n }\n}\nclass UpdateConnectionRequest {\n static fromProto(proto) {\n let m = new UpdateConnectionRequest();\n m = Object.assign(m, proto);\n if (proto.updateFields) {\n m.updateFields = UpdateConnectionRequestUpdateFields.fromProto(proto.updateFields);\n }\n if (proto.fieldMask) {\n m.fieldMask = FieldMask.fromProto(proto.fieldMask);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.connectionId !== 'undefined') {\n toReturn['connectionId'] = this.connectionId;\n }\n if (typeof this.namespace !== 'undefined') {\n toReturn['namespace'] = this.namespace;\n }\n if (typeof this.updateFields !== 'undefined' && this.updateFields !== null) {\n toReturn['updateFields'] = 'toApiJson' in this.updateFields ? this.updateFields.toApiJson() : this.updateFields;\n }\n if (typeof this.fieldMask !== 'undefined' && this.fieldMask !== null) {\n toReturn['fieldMask'] = 'toApiJson' in this.fieldMask ? this.fieldMask.toApiJson() : this.fieldMask;\n }\n return toReturn;\n }\n}\nclass UpdateConnectionRequestUpdateFields {\n static fromProto(proto) {\n let m = new UpdateConnectionRequestUpdateFields();\n m = Object.assign(m, proto);\n if (proto.status) {\n m.status = enumStringToValue$3(ConnectionStatus, proto.status);\n }\n if (proto.customFields) {\n m.customFields = proto.customFields.map(CustomFields.fromProto);\n }\n if (proto.context) {\n m.context = enumStringToValue$3(SupportedContexts, proto.context);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.status !== 'undefined') {\n toReturn['status'] = this.status;\n }\n if (typeof this.customFields !== 'undefined' && this.customFields !== null) {\n toReturn['customFields'] = 'toApiJson' in this.customFields ? this.customFields.toApiJson() : this.customFields;\n }\n if (typeof this.label !== 'undefined') {\n toReturn['label'] = this.label;\n }\n if (typeof this.context !== 'undefined') {\n toReturn['context'] = this.context;\n }\n return toReturn;\n }\n}\nclass UpdateIntegrationRequestUpdateFields {\n static fromProto(proto) {\n let m = new UpdateIntegrationRequestUpdateFields();\n m = Object.assign(m, proto);\n if (proto.connectionMethod) {\n m.connectionMethod = enumStringToValue$3(ConnectionMethods, proto.connectionMethod);\n }\n if (proto.additionalInfo) {\n m.additionalInfo = AdditionalInfo.fromProto(proto.additionalInfo);\n }\n if (proto.maxConnections) {\n m.maxConnections = parseInt(proto.maxConnections, 10);\n }\n if (proto.supportedContexts) {\n m.supportedContexts = proto.supportedContexts.map(v => enumStringToValue$3(SupportedContexts, v));\n }\n if (proto.preconnectFormFields) {\n m.preconnectFormFields = FormConfig.fromProto(proto.preconnectFormFields);\n }\n if (proto.configPageFields) {\n m.configPageFields = proto.configPageFields.map(FormConfig.fromProto);\n }\n if (proto.instructions) {\n m.instructions = FormConfig.fromProto(proto.instructions);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.logo !== 'undefined') {\n toReturn['logo'] = this.logo;\n }\n if (typeof this.displayName !== 'undefined') {\n toReturn['displayName'] = this.displayName;\n }\n if (typeof this.description !== 'undefined') {\n toReturn['description'] = this.description;\n }\n if (typeof this.integrationType !== 'undefined') {\n toReturn['integrationType'] = this.integrationType;\n }\n if (typeof this.clientId !== 'undefined') {\n toReturn['clientId'] = this.clientId;\n }\n if (typeof this.clientSecret !== 'undefined') {\n toReturn['clientSecret'] = this.clientSecret;\n }\n if (typeof this.apiKey !== 'undefined') {\n toReturn['apiKey'] = this.apiKey;\n }\n if (typeof this.connectionMethod !== 'undefined') {\n toReturn['connectionMethod'] = this.connectionMethod;\n }\n if (typeof this.authenticationUrl !== 'undefined') {\n toReturn['authenticationUrl'] = this.authenticationUrl;\n }\n if (typeof this.tokenUrl !== 'undefined') {\n toReturn['tokenUrl'] = this.tokenUrl;\n }\n if (typeof this.longDescription !== 'undefined') {\n toReturn['longDescription'] = this.longDescription;\n }\n if (typeof this.additionalInfo !== 'undefined' && this.additionalInfo !== null) {\n toReturn['additionalInfo'] = 'toApiJson' in this.additionalInfo ? this.additionalInfo.toApiJson() : this.additionalInfo;\n }\n if (typeof this.baseUrl !== 'undefined') {\n toReturn['baseUrl'] = this.baseUrl;\n }\n if (typeof this.maxConnections !== 'undefined') {\n toReturn['maxConnections'] = this.maxConnections;\n }\n if (typeof this.webhookVerifierToken !== 'undefined') {\n toReturn['webhookVerifierToken'] = this.webhookVerifierToken;\n }\n if (typeof this.supportedContexts !== 'undefined') {\n toReturn['supportedContexts'] = this.supportedContexts;\n }\n if (typeof this.ownerId !== 'undefined') {\n toReturn['ownerId'] = this.ownerId;\n }\n if (typeof this.fieldExtensionIds !== 'undefined') {\n toReturn['fieldExtensionIds'] = this.fieldExtensionIds;\n }\n if (typeof this.preconnectFormFields !== 'undefined' && this.preconnectFormFields !== null) {\n toReturn['preconnectFormFields'] = 'toApiJson' in this.preconnectFormFields ? this.preconnectFormFields.toApiJson() : this.preconnectFormFields;\n }\n if (typeof this.configPageFields !== 'undefined' && this.configPageFields !== null) {\n toReturn['configPageFields'] = 'toApiJson' in this.configPageFields ? this.configPageFields.toApiJson() : this.configPageFields;\n }\n if (typeof this.instructions !== 'undefined' && this.instructions !== null) {\n toReturn['instructions'] = 'toApiJson' in this.instructions ? this.instructions.toApiJson() : this.instructions;\n }\n return toReturn;\n }\n}\nclass UpdateIntegrationRequest {\n static fromProto(proto) {\n let m = new UpdateIntegrationRequest();\n m = Object.assign(m, proto);\n if (proto.updateFields) {\n m.updateFields = UpdateIntegrationRequestUpdateFields.fromProto(proto.updateFields);\n }\n if (proto.fieldMask) {\n m.fieldMask = FieldMask.fromProto(proto.fieldMask);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.integrationId !== 'undefined') {\n toReturn['integrationId'] = this.integrationId;\n }\n if (typeof this.updateFields !== 'undefined' && this.updateFields !== null) {\n toReturn['updateFields'] = 'toApiJson' in this.updateFields ? this.updateFields.toApiJson() : this.updateFields;\n }\n if (typeof this.fieldMask !== 'undefined' && this.fieldMask !== null) {\n toReturn['fieldMask'] = 'toApiJson' in this.fieldMask ? this.fieldMask.toApiJson() : this.fieldMask;\n }\n return toReturn;\n }\n}\nclass WebsiteInfo {\n static fromProto(proto) {\n let m = new WebsiteInfo();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.siteName !== 'undefined') {\n toReturn['siteName'] = this.siteName;\n }\n if (typeof this.siteUrl !== 'undefined') {\n toReturn['siteUrl'] = this.siteUrl;\n }\n return toReturn;\n }\n}\nfunction enumStringToValue$2(enumRef, value) {\n if (typeof value === 'number') {\n return value;\n }\n return enumRef[value];\n}\nclass GetAuthorizationCodeRedirectURLRequest {\n static fromProto(proto) {\n let m = new GetAuthorizationCodeRedirectURLRequest();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.namespace !== 'undefined') {\n toReturn['namespace'] = this.namespace;\n }\n if (typeof this.connectionId !== 'undefined') {\n toReturn['connectionId'] = this.connectionId;\n }\n if (typeof this.integrationId !== 'undefined') {\n toReturn['integrationId'] = this.integrationId;\n }\n if (typeof this.baseUrl !== 'undefined') {\n toReturn['baseUrl'] = this.baseUrl;\n }\n return toReturn;\n }\n}\nclass GetAuthorizationCodeRedirectURLResponse {\n static fromProto(proto) {\n let m = new GetAuthorizationCodeRedirectURLResponse();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.url !== 'undefined') {\n toReturn['url'] = this.url;\n }\n return toReturn;\n }\n}\nclass RevokeAccessTokenAndDeleteRequest {\n static fromProto(proto) {\n let m = new RevokeAccessTokenAndDeleteRequest();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.connectionId !== 'undefined') {\n toReturn['connectionId'] = this.connectionId;\n }\n if (typeof this.namespace !== 'undefined') {\n toReturn['namespace'] = this.namespace;\n }\n return toReturn;\n }\n}\nfunction enumStringToValue$1(enumRef, value) {\n if (typeof value === 'number') {\n return value;\n }\n return enumRef[value];\n}\nclass PagedRequestOptions {\n static fromProto(proto) {\n let m = new PagedRequestOptions();\n m = Object.assign(m, proto);\n if (proto.pageSize) {\n m.pageSize = parseInt(proto.pageSize, 10);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.cursor !== 'undefined') {\n toReturn['cursor'] = this.cursor;\n }\n if (typeof this.pageSize !== 'undefined') {\n toReturn['pageSize'] = this.pageSize;\n }\n return toReturn;\n }\n}\nclass PagedResponseMetadata {\n static fromProto(proto) {\n let m = new PagedResponseMetadata();\n m = Object.assign(m, proto);\n if (proto.totalResults) {\n m.totalResults = parseInt(proto.totalResults, 10);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.nextCursor !== 'undefined') {\n toReturn['nextCursor'] = this.nextCursor;\n }\n if (typeof this.hasMore !== 'undefined') {\n toReturn['hasMore'] = this.hasMore;\n }\n if (typeof this.totalResults !== 'undefined') {\n toReturn['totalResults'] = this.totalResults;\n }\n return toReturn;\n }\n}\nfunction enumStringToValue(enumRef, value) {\n if (typeof value === 'number') {\n return value;\n }\n return enumRef[value];\n}\nclass ListVendorConnectionRequestFilters {\n static fromProto(proto) {\n let m = new ListVendorConnectionRequestFilters();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.ownerId !== 'undefined') {\n toReturn['ownerId'] = this.ownerId;\n }\n if (typeof this.integrationIds !== 'undefined') {\n toReturn['integrationIds'] = this.integrationIds;\n }\n return toReturn;\n }\n}\nclass GetBusinessDataRequest {\n static fromProto(proto) {\n let m = new GetBusinessDataRequest();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.connectionId !== 'undefined') {\n toReturn['connectionId'] = this.connectionId;\n }\n return toReturn;\n }\n}\nclass GetBusinessDataResponse {\n static fromProto(proto) {\n let m = new GetBusinessDataResponse();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.namespace !== 'undefined') {\n toReturn['namespace'] = this.namespace;\n }\n if (typeof this.businessName !== 'undefined') {\n toReturn['businessName'] = this.businessName;\n }\n if (typeof this.countryCode !== 'undefined') {\n toReturn['countryCode'] = this.countryCode;\n }\n if (typeof this.regionCode !== 'undefined') {\n toReturn['regionCode'] = this.regionCode;\n }\n if (typeof this.stateCode !== 'undefined') {\n toReturn['stateCode'] = this.stateCode;\n }\n if (typeof this.city !== 'undefined') {\n toReturn['city'] = this.city;\n }\n return toReturn;\n }\n}\nclass GetMultiVendorConnectionRequest {\n static fromProto(proto) {\n let m = new GetMultiVendorConnectionRequest();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.connectionIds !== 'undefined') {\n toReturn['connectionIds'] = this.connectionIds;\n }\n return toReturn;\n }\n}\nclass GetMultiVendorConnectionResponse {\n static fromProto(proto) {\n let m = new GetMultiVendorConnectionResponse();\n m = Object.assign(m, proto);\n if (proto.connections) {\n m.connections = proto.connections.map(VendorConnection.fromProto);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.connections !== 'undefined' && this.connections !== null) {\n toReturn['connections'] = 'toApiJson' in this.connections ? this.connections.toApiJson() : this.connections;\n }\n return toReturn;\n }\n}\nclass GetVendorConnectionRequest {\n static fromProto(proto) {\n let m = new GetVendorConnectionRequest();\n m = Object.assign(m, proto);\n if (proto.options) {\n m.options = GetVendorConnectionRequestOptions.fromProto(proto.options);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.connectionId !== 'undefined') {\n toReturn['connectionId'] = this.connectionId;\n }\n if (typeof this.options !== 'undefined' && this.options !== null) {\n toReturn['options'] = 'toApiJson' in this.options ? this.options.toApiJson() : this.options;\n }\n return toReturn;\n }\n}\nclass GetVendorConnectionResponse {\n static fromProto(proto) {\n let m = new GetVendorConnectionResponse();\n m = Object.assign(m, proto);\n if (proto.connection) {\n m.connection = VendorConnection.fromProto(proto.connection);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.connection !== 'undefined' && this.connection !== null) {\n toReturn['connection'] = 'toApiJson' in this.connection ? this.connection.toApiJson() : this.connection;\n }\n return toReturn;\n }\n}\nclass ListVendorConnectionRequest {\n static fromProto(proto) {\n let m = new ListVendorConnectionRequest();\n m = Object.assign(m, proto);\n if (proto.filters) {\n m.filters = ListVendorConnectionRequestFilters.fromProto(proto.filters);\n }\n if (proto.pagingOptions) {\n m.pagingOptions = PagedRequestOptions.fromProto(proto.pagingOptions);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.filters !== 'undefined' && this.filters !== null) {\n toReturn['filters'] = 'toApiJson' in this.filters ? this.filters.toApiJson() : this.filters;\n }\n if (typeof this.pagingOptions !== 'undefined' && this.pagingOptions !== null) {\n toReturn['pagingOptions'] = 'toApiJson' in this.pagingOptions ? this.pagingOptions.toApiJson() : this.pagingOptions;\n }\n return toReturn;\n }\n}\nclass ListVendorConnectionResponse {\n static fromProto(proto) {\n let m = new ListVendorConnectionResponse();\n m = Object.assign(m, proto);\n if (proto.connections) {\n m.connections = proto.connections.map(VendorConnection.fromProto);\n }\n if (proto.pagingMetadata) {\n m.pagingMetadata = PagedResponseMetadata.fromProto(proto.pagingMetadata);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.connections !== 'undefined' && this.connections !== null) {\n toReturn['connections'] = 'toApiJson' in this.connections ? this.connections.toApiJson() : this.connections;\n }\n if (typeof this.pagingMetadata !== 'undefined' && this.pagingMetadata !== null) {\n toReturn['pagingMetadata'] = 'toApiJson' in this.pagingMetadata ? this.pagingMetadata.toApiJson() : this.pagingMetadata;\n }\n return toReturn;\n }\n}\nclass GetVendorConnectionRequestOptions {\n static fromProto(proto) {\n let m = new GetVendorConnectionRequestOptions();\n m = Object.assign(m, proto);\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.includeDeleted !== 'undefined') {\n toReturn['includeDeleted'] = this.includeDeleted;\n }\n return toReturn;\n }\n}\nclass UpdateVendorConnectionRequest {\n static fromProto(proto) {\n let m = new UpdateVendorConnectionRequest();\n m = Object.assign(m, proto);\n if (proto.connection) {\n m.connection = VendorConnection.fromProto(proto.connection);\n }\n if (proto.updateMask) {\n m.updateMask = FieldMask.fromProto(proto.updateMask);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.connection !== 'undefined' && this.connection !== null) {\n toReturn['connection'] = 'toApiJson' in this.connection ? this.connection.toApiJson() : this.connection;\n }\n if (typeof this.updateMask !== 'undefined' && this.updateMask !== null) {\n toReturn['updateMask'] = 'toApiJson' in this.updateMask ? this.updateMask.toApiJson() : this.updateMask;\n }\n return toReturn;\n }\n}\nclass UpdateVendorConnectionResponse {\n static fromProto(proto) {\n let m = new UpdateVendorConnectionResponse();\n m = Object.assign(m, proto);\n if (proto.connection) {\n m.connection = VendorConnection.fromProto(proto.connection);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.connection !== 'undefined' && this.connection !== null) {\n toReturn['connection'] = 'toApiJson' in this.connection ? this.connection.toApiJson() : this.connection;\n }\n return toReturn;\n }\n}\nclass VendorConnection {\n static fromProto(proto) {\n let m = new VendorConnection();\n m = Object.assign(m, proto);\n if (proto.status) {\n m.status = enumStringToValue(ConnectionStatus, proto.status);\n }\n if (proto.created) {\n m.created = new Date(proto.created);\n }\n if (proto.updated) {\n m.updated = new Date(proto.updated);\n }\n if (proto.deleted) {\n m.deleted = new Date(proto.deleted);\n }\n return m;\n }\n constructor(kwargs) {\n if (!kwargs) {\n return;\n }\n Object.assign(this, kwargs);\n }\n toApiJson() {\n const toReturn = {};\n if (typeof this.integrationId !== 'undefined') {\n toReturn['integrationId'] = this.integrationId;\n }\n if (typeof this.connectionId !== 'undefined') {\n toReturn['connectionId'] = this.connectionId;\n }\n if (typeof this.namespace !== 'undefined') {\n toReturn['namespace'] = this.namespace;\n }\n if (typeof this.userId !== 'undefined') {\n toReturn['userId'] = this.userId;\n }\n if (typeof this.status !== 'undefined') {\n toReturn['status'] = this.status;\n }\n if (typeof this.label !== 'undefined') {\n toReturn['label'] = this.label;\n }\n if (typeof this.externalId !== 'undefined') {\n toReturn['externalId'] = this.externalId;\n }\n if (typeof this.customFields !== 'undefined') {\n toReturn['customFields'] = this.customFields;\n }\n if (typeof this.created !== 'undefined' && this.created !== null) {\n toReturn['created'] = 'toApiJson' in this.created ? this.created.toApiJson() : this.created;\n }\n if (typeof this.updated !== 'undefined' && this.updated !== null) {\n toReturn['updated'] = 'toApiJson' in this.updated ? this.updated.toApiJson() : this.updated;\n }\n if (typeof this.deleted !== 'undefined' && this.deleted !== null) {\n toReturn['deleted'] = 'toApiJson' in this.deleted ? this.deleted.toApiJson() : this.deleted;\n }\n return toReturn;\n }\n}\n\n// *********************************\n// Code generated by sdkgen\n// DO NOT EDIT!.\n//\n// Objects Index.\n// *********************************\n\n// *********************************\n// Code generated by sdkgen\n// DO NOT EDIT!.\n//\n// API Service.\n// *********************************\nlet ConnectionsApiService = /*#__PURE__*/(() => {\n class ConnectionsApiService {\n constructor() {\n this.hostService = inject(HostService);\n this.http = inject(HttpClient);\n this._host = this.hostService.hostWithScheme;\n }\n apiOptions() {\n return {\n headers: new HttpHeaders({\n 'Content-Type': 'application/json'\n }),\n withCredentials: true\n };\n }\n create(r) {\n const request = r.toApiJson ? r : new CreateConnectionRequest(r);\n return this.http.post(this._host + \"/platform_integrations.v1.ConnectionsService/Create\", request.toApiJson(), this.apiOptions()).pipe(map(resp => CreateConnectionResponse.fromProto(resp)));\n }\n update(r) {\n const request = r.toApiJson ? r : new UpdateConnectionRequest(r);\n return this.http.post(this._host + \"/platform_integrations.v1.ConnectionsService/Update\", request.toApiJson(), {\n ...this.apiOptions(),\n observe: 'response'\n });\n }\n get(r) {\n const request = r.toApiJson ? r : new GetConnectionRequest(r);\n return this.http.post(this._host + \"/platform_integrations.v1.ConnectionsService/Get\", request.toApiJson(), this.apiOptions()).pipe(map(resp => GetConnectionResponse.fromProto(resp)));\n }\n list(r) {\n const request = r.toApiJson ? r : new ListConnectionRequest(r);\n return this.http.post(this._host + \"/platform_integrations.v1.ConnectionsService/List\", request.toApiJson(), this.apiOptions()).pipe(map(resp => ListConnectionResponse.fromProto(resp)));\n }\n delete(r) {\n const request = r.toApiJson ? r : new DeleteConnectionRequest(r);\n return this.http.post(this._host + \"/platform_integrations.v1.ConnectionsService/Delete\", request.toApiJson(), {\n ...this.apiOptions(),\n observe: 'response'\n });\n }\n getConnectionData(r) {\n const request = r.toApiJson ? r : new GetConnectionDataRequest(r);\n return this.http.post(this._host + \"/platform_integrations.v1.ConnectionsService/GetConnectionData\", request.toApiJson(), this.apiOptions()).pipe(map(resp => GetConnectionDataResponse.fromProto(resp)));\n }\n }\n ConnectionsApiService.ɵfac = function ConnectionsApiService_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || ConnectionsApiService)();\n };\n ConnectionsApiService.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: ConnectionsApiService,\n factory: ConnectionsApiService.ɵfac,\n providedIn: 'root'\n });\n return ConnectionsApiService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n// *********************************\n// Code generated by sdkgen\n// DO NOT EDIT!.\n//\n// API Service.\n// *********************************\nlet IntegrationManagementApiService = /*#__PURE__*/(() => {\n class IntegrationManagementApiService {\n constructor() {\n this.hostService = inject(HostService);\n this.http = inject(HttpClient);\n this._host = this.hostService.hostWithScheme;\n }\n apiOptions() {\n return {\n headers: new HttpHeaders({\n 'Content-Type': 'application/json'\n }),\n withCredentials: true\n };\n }\n create(r) {\n const request = r.toApiJson ? r : new CreateIntegrationRequest(r);\n return this.http.post(this._host + \"/platform_integrations.v1.IntegrationManagementService/Create\", request.toApiJson(), this.apiOptions()).pipe(map(resp => CreateIntegrationResponse.fromProto(resp)));\n }\n update(r) {\n const request = r.toApiJson ? r : new UpdateIntegrationRequest(r);\n return this.http.post(this._host + \"/platform_integrations.v1.IntegrationManagementService/Update\", request.toApiJson(), {\n ...this.apiOptions(),\n observe: 'response'\n });\n }\n list(r) {\n const request = r.toApiJson ? r : new ListIntegrationRequest(r);\n return this.http.post(this._host + \"/platform_integrations.v1.IntegrationManagementService/List\", request.toApiJson(), this.apiOptions()).pipe(map(resp => ListIntegrationResponse.fromProto(resp)));\n }\n delete(r) {\n const request = r.toApiJson ? r : new DeleteIntegrationRequest(r);\n return this.http.post(this._host + \"/platform_integrations.v1.IntegrationManagementService/Delete\", request.toApiJson(), {\n ...this.apiOptions(),\n observe: 'response'\n });\n }\n get(r) {\n const request = r.toApiJson ? r : new GetIntegrationRequest(r);\n return this.http.post(this._host + \"/platform_integrations.v1.IntegrationManagementService/Get\", request.toApiJson(), this.apiOptions()).pipe(map(resp => GetIntegrationResponse.fromProto(resp)));\n }\n emitEvent(r) {\n const request = r.toApiJson ? r : new EmitEventRequest(r);\n return this.http.post(this._host + \"/platform_integrations.v1.IntegrationManagementService/EmitEvent\", request.toApiJson(), this.apiOptions()).pipe(map(resp => EmitEventResponse.fromProto(resp)));\n }\n }\n IntegrationManagementApiService.ɵfac = function IntegrationManagementApiService_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || IntegrationManagementApiService)();\n };\n IntegrationManagementApiService.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: IntegrationManagementApiService,\n factory: IntegrationManagementApiService.ɵfac,\n providedIn: 'root'\n });\n return IntegrationManagementApiService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n// *********************************\n// Code generated by sdkgen\n// DO NOT EDIT!.\n//\n// API Service.\n// *********************************\nlet IntegrationMarketingApiService = /*#__PURE__*/(() => {\n class IntegrationMarketingApiService {\n constructor() {\n this.hostService = inject(HostService);\n this.http = inject(HttpClient);\n this._host = this.hostService.hostWithScheme;\n }\n apiOptions() {\n return {\n headers: new HttpHeaders({\n 'Content-Type': 'application/json'\n }),\n withCredentials: true\n };\n }\n list(r) {\n const request = r.toApiJson ? r : new ListIntegrationMarketingRequest(r);\n return this.http.post(this._host + \"/platform_integrations.v1.IntegrationMarketingService/List\", request.toApiJson(), this.apiOptions()).pipe(map(resp => ListIntegrationMarketingResponse.fromProto(resp)));\n }\n get(r) {\n const request = r.toApiJson ? r : new GetIntegrationMarketingRequest(r);\n return this.http.post(this._host + \"/platform_integrations.v1.IntegrationMarketingService/Get\", request.toApiJson(), this.apiOptions()).pipe(map(resp => IntegrationMarketingResponse.fromProto(resp)));\n }\n getMulti(r) {\n const request = r.toApiJson ? r : new GetMultiIntegrationMarketingRequest(r);\n return this.http.post(this._host + \"/platform_integrations.v1.IntegrationMarketingService/GetMulti\", request.toApiJson(), this.apiOptions()).pipe(map(resp => GetMultiIntegrationMarketingResponse.fromProto(resp)));\n }\n }\n IntegrationMarketingApiService.ɵfac = function IntegrationMarketingApiService_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || IntegrationMarketingApiService)();\n };\n IntegrationMarketingApiService.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: IntegrationMarketingApiService,\n factory: IntegrationMarketingApiService.ɵfac,\n providedIn: 'root'\n });\n return IntegrationMarketingApiService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n// *********************************\n// Code generated by sdkgen\n// DO NOT EDIT!.\n//\n// API Service.\n// *********************************\nlet OAuthApiService = /*#__PURE__*/(() => {\n class OAuthApiService {\n constructor() {\n this.hostService = inject(HostService);\n this.http = inject(HttpClient);\n this._host = this.hostService.hostWithScheme;\n }\n apiOptions() {\n return {\n headers: new HttpHeaders({\n 'Content-Type': 'application/json'\n }),\n withCredentials: true\n };\n }\n getAuthorizationCodeRedirectUrl(r) {\n const request = r.toApiJson ? r : new GetAuthorizationCodeRedirectURLRequest(r);\n return this.http.post(this._host + \"/platform_integrations.v1.OAuthService/GetAuthorizationCodeRedirectURL\", request.toApiJson(), this.apiOptions()).pipe(map(resp => GetAuthorizationCodeRedirectURLResponse.fromProto(resp)));\n }\n revokeAccessTokenAndDelete(r) {\n const request = r.toApiJson ? r : new RevokeAccessTokenAndDeleteRequest(r);\n return this.http.post(this._host + \"/platform_integrations.v1.OAuthService/RevokeAccessTokenAndDelete\", request.toApiJson(), {\n ...this.apiOptions(),\n observe: 'response'\n });\n }\n }\n OAuthApiService.ɵfac = function OAuthApiService_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || OAuthApiService)();\n };\n OAuthApiService.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: OAuthApiService,\n factory: OAuthApiService.ɵfac,\n providedIn: 'root'\n });\n return OAuthApiService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n// *********************************\n// Code generated by sdkgen\n// DO NOT EDIT!.\n//\n// API Service.\n// *********************************\nlet VendorConnectionApiService = /*#__PURE__*/(() => {\n class VendorConnectionApiService {\n constructor() {\n this.hostService = inject(HostService);\n this.http = inject(HttpClient);\n this._host = this.hostService.hostWithScheme;\n }\n apiOptions() {\n return {\n headers: new HttpHeaders({\n 'Content-Type': 'application/json'\n }),\n withCredentials: true\n };\n }\n get(r) {\n const request = r.toApiJson ? r : new GetVendorConnectionRequest(r);\n return this.http.post(this._host + \"/platform_integrations.v1.VendorConnectionService/Get\", request.toApiJson(), this.apiOptions()).pipe(map(resp => GetVendorConnectionResponse.fromProto(resp)));\n }\n getMulti(r) {\n const request = r.toApiJson ? r : new GetMultiVendorConnectionRequest(r);\n return this.http.post(this._host + \"/platform_integrations.v1.VendorConnectionService/GetMulti\", request.toApiJson(), this.apiOptions()).pipe(map(resp => GetMultiVendorConnectionResponse.fromProto(resp)));\n }\n list(r) {\n const request = r.toApiJson ? r : new ListVendorConnectionRequest(r);\n return this.http.post(this._host + \"/platform_integrations.v1.VendorConnectionService/List\", request.toApiJson(), this.apiOptions()).pipe(map(resp => ListVendorConnectionResponse.fromProto(resp)));\n }\n update(r) {\n const request = r.toApiJson ? r : new UpdateVendorConnectionRequest(r);\n return this.http.post(this._host + \"/platform_integrations.v1.VendorConnectionService/Update\", request.toApiJson(), this.apiOptions()).pipe(map(resp => UpdateVendorConnectionResponse.fromProto(resp)));\n }\n getBusinessData(r) {\n const request = r.toApiJson ? r : new GetBusinessDataRequest(r);\n return this.http.post(this._host + \"/platform_integrations.v1.VendorConnectionService/GetBusinessData\", request.toApiJson(), this.apiOptions()).pipe(map(resp => GetBusinessDataResponse.fromProto(resp)));\n }\n }\n VendorConnectionApiService.ɵfac = function VendorConnectionApiService_Factory(__ngFactoryType__) {\n return new (__ngFactoryType__ || VendorConnectionApiService)();\n };\n VendorConnectionApiService.ɵprov = /* @__PURE__ */i0.ɵɵdefineInjectable({\n token: VendorConnectionApiService,\n factory: VendorConnectionApiService.ɵfac,\n providedIn: 'root'\n });\n return VendorConnectionApiService;\n})();\n(() => {\n (typeof ngDevMode === \"undefined\" || ngDevMode) && void 0;\n})();\n\n// *********************************\n// Code generated by sdkgen\n// DO NOT EDIT!.\n//\n// Index.\n// *********************************\n\n/**\n * Generated bundle index. Do not edit.\n */\n\nexport { Access, ActionType, Actions, AdditionalInfo, ConnectionMethods, ConnectionResponse, ConnectionStatus, ConnectionsApiService, CreateConnectionRequest, CreateConnectionResponse, CreateIntegrationRequest, CreateIntegrationResponse, CustomFields, DeleteConnectionRequest, DeleteIntegrationRequest, EmitEventRequest, EmitEventResponse, FieldConfig, FieldMask, FieldOptions, FieldType, FormConfig, GetAuthorizationCodeRedirectURLRequest, GetAuthorizationCodeRedirectURLResponse, GetBusinessDataRequest, GetBusinessDataResponse, GetConnectionDataRequest, GetConnectionDataResponse, GetConnectionRequest, GetConnectionResponse, GetIntegrationMarketingRequest, GetIntegrationRequest, GetIntegrationResponse, GetMultiIntegrationMarketingRequest, GetMultiIntegrationMarketingResponse, GetMultiVendorConnectionRequest, GetMultiVendorConnectionResponse, GetVendorConnectionRequest, GetVendorConnectionRequestOptions, GetVendorConnectionResponse, HostService, IntegrationManagementApiService, IntegrationMarketingApiService, IntegrationMarketingResponse, IntegrationsFilters, ListConnectionRequest, ListConnectionResponse, ListIntegrationMarketingRequest, ListIntegrationMarketingResponse, ListIntegrationRequest, ListIntegrationResponse, ListVendorConnectionRequest, ListVendorConnectionRequestFilters, ListVendorConnectionResponse, OAuthApiService, PagedRequestOptions, PagedResponseMetadata, ResourceInfo, RevokeAccessTokenAndDeleteRequest, SupportedContexts, UpdateConnectionRequest, UpdateConnectionRequestUpdateFields, UpdateIntegrationRequest, UpdateIntegrationRequestUpdateFields, UpdateVendorConnectionRequest, UpdateVendorConnectionResponse, VendorConnection, VendorConnectionApiService, WebsiteInfo };\n"],"mappings":"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","names":["enumStringToValue$3","enumRef","value","environment","hostMap","HostService","ActionType","ConnectionMethods","ConnectionStatus","FieldType","SupportedContexts","FieldMask","Actions","AdditionalInfo","ConnectionResponse","CreateConnectionRequest","CreateConnectionResponse","CustomFields","DeleteConnectionRequest","FieldConfig","FieldOptions","FormConfig","GetConnectionDataRequest","GetConnectionDataResponse","GetConnectionRequest","GetConnectionResponse","GetIntegrationMarketingRequest","GetMultiIntegrationMarketingRequest","GetMultiIntegrationMarketingResponse","IntegrationMarketingResponse","IntegrationsFilters","ListConnectionRequest","ListConnectionResponse","ListIntegrationMarketingRequest","ListIntegrationMarketingResponse","PagedRequestOptions$1","PagedResponseMetadata$1","ResourceInfo","UpdateConnectionRequest","UpdateConnectionRequestUpdateFields","WebsiteInfo","GetAuthorizationCodeRedirectURLRequest","GetAuthorizationCodeRedirectURLResponse","RevokeAccessTokenAndDeleteRequest","ConnectionsApiService","IntegrationMarketingApiService","OAuthApiService","init_vendasta_platform_integrations","__esmMin","init_core","init_http","init_operators","__ngFactoryType__","ɵɵdefineInjectable","_FieldMask","proto","m","kwargs","toReturn","_Actions","_AdditionalInfo","_ConnectionResponse","_CreateConnectionRequest","_CreateConnectionResponse","_CustomFields","_DeleteConnectionRequest","_FieldConfig","_FieldOptions","_FormConfig","_GetConnectionDataRequest","_GetConnectionDataResponse","_GetConnectionRequest","_GetConnectionResponse","_GetIntegrationMarketingRequest","_GetMultiIntegrationMarketingRequest","_GetMultiIntegrationMarketingResponse","_IntegrationMarketingResponse","v","_IntegrationsFilters","_ListConnectionRequest","_ListConnectionResponse","_ListIntegrationMarketingRequest","_ListIntegrationMarketingResponse","PagedRequestOptions","PagedResponseMetadata","_ResourceInfo","_UpdateConnectionRequest","_UpdateConnectionRequestUpdateFields","_WebsiteInfo","_GetAuthorizationCodeRedirectURLRequest","_GetAuthorizationCodeRedirectURLResponse","_RevokeAccessTokenAndDeleteRequest","inject","HttpClient","HttpHeaders","r","request","map","resp","__spreadProps","__spreadValues"],"x_google_ignoreList":[0]}