{"version":3,"sources":["../../src/multilingual-genericconverter-v1-entity-mapper-entity-mapper.http.ts","../../src/multilingual-genericconverter-v1-entity-mapper-entity-mapper.types.ts","../../src/multilingual-genericconverter-v1-entity-mapper-entity-mapper.meta.ts"],"sourcesContent":["import { toURLSearchParams } from '@wix/sdk-runtime/rest-modules';\nimport { resolveUrl } from '@wix/sdk-runtime/rest-modules';\nimport { ResolveUrlOpts } from '@wix/sdk-runtime/rest-modules';\nimport { RequestOptionsFactory } from '@wix/sdk-types';\n\nfunction resolveWixMultilingualEditoradapterV1EditorAdapterUrl(\n  opts: Omit<ResolveUrlOpts, 'domainToMappings'>\n) {\n  const domainToMappings = {\n    'manage._base_domain_': [\n      {\n        srcPath: '/_api/editoradapter/v1/component-mapper',\n        destPath: '/v1',\n      },\n    ],\n  };\n\n  return resolveUrl(Object.assign(opts, { domainToMappings }));\n}\n\nconst PACKAGE_NAME = '@wix/auto_sdk_multilingual_entity-mapper';\n\n/** Update localization content with editor data */\nexport function syncEditorData(payload: object): RequestOptionsFactory<any> {\n  function __syncEditorData({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.multilingual.genericconverter.v1.entity_mapper',\n      method: 'GET' as any,\n      methodFqn:\n        'wix.multilingual.editoradapter.v1.EditorAdapter.SyncEditorData',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveWixMultilingualEditoradapterV1EditorAdapterUrl({\n        protoPath: '/v1/pull_data',\n        data: payload,\n        host,\n      }),\n      params: toURLSearchParams(payload),\n    };\n\n    return metadata;\n  }\n\n  return __syncEditorData;\n}\n","export interface Mapper {\n  /** @format GUID */\n  id?: string | null;\n  /**\n   * The FQDN of the entity the mapper refer to of exist\n   * @maxLength 1000\n   */\n  entityFqdn?: string;\n  /**\n   * The entity fqn - this is unique across wix\n   * @maxLength 1000\n   */\n  entityFqn?: string;\n  /**\n   * The appDefId that the entity belongs to\n   * @format GUID\n   */\n  appId?: string;\n  /**\n   * A list of fields to translate from the entity\n   * @maxSize 1000\n   */\n  fields?: MapperField[];\n  /**\n   * The name of field that hold the parent name (if exist)\n   * @maxLength 1000\n   */\n  groupByNameFieldId?: string | null;\n  /** Flag to turn off sync data to localization upon domain events */\n  ignoreDomainEvents?: boolean | null;\n  /**\n   * The segment of the entity\n   * @maxLength 20\n   */\n  segment?: string | null;\n  /** flag that indicate the removing a repeated field in main language should remove it in all languages */\n  deleteRepeatedFields?: boolean | null;\n  /** Whether the entity can bt extended by Data Extensions */\n  extensible?: boolean | null;\n  /**\n   * The schema id that the mapper points to\n   * @format GUID\n   */\n  schemaId?: string | null;\n}\n\nexport interface MapperField {\n  /**\n   * The field FQN\n   * @maxLength 1000\n   */\n  id?: string;\n  /** The field Type as it's shown in localization schema */\n  type?: FieldTypeWithLiterals;\n  /**\n   * If the field is part of a repeated fields\n   * @maxSize 16\n   */\n  sequencePath?: SequencePath[];\n  /**\n   * Option to override the field mask (the default is the id)\n   * @maxLength 1000\n   */\n  overrideMask?: string | null;\n}\n\nexport enum FieldType {\n  /** Undefined field type */\n  UNDEFINED_TYPE = 'UNDEFINED_TYPE',\n  /** Short text TEXT */\n  SHORT_TEXT = 'SHORT_TEXT',\n  /** Long Plain Text TEXT */\n  LONG_TEXT = 'LONG_TEXT',\n  /** Long text including styles, images, links and more... HTML */\n  RICH_TEXT = 'RICH_TEXT',\n  /** Wix Rich-Content-Editor format RICO */\n  RICH_CONTENT_EDITOR = 'RICH_CONTENT_EDITOR',\n  /** Choose one from many options CSV TEXT */\n  SELECTION = 'SELECTION',\n  /** Choose multi items from many options */\n  MULTI_SELECTION = 'MULTI_SELECTION',\n  /** Wix document media item */\n  DOCUMENT = 'DOCUMENT',\n  /** Wix Image media item */\n  IMAGE = 'IMAGE',\n  /** Wix Video media item */\n  VIDEO = 'VIDEO',\n  /** Image URL without metadata */\n  IMAGE_LINK = 'IMAGE_LINK',\n}\n\n/** @enumType */\nexport type FieldTypeWithLiterals =\n  | FieldType\n  | 'UNDEFINED_TYPE'\n  | 'SHORT_TEXT'\n  | 'LONG_TEXT'\n  | 'RICH_TEXT'\n  | 'RICH_CONTENT_EDITOR'\n  | 'SELECTION'\n  | 'MULTI_SELECTION'\n  | 'DOCUMENT'\n  | 'IMAGE'\n  | 'VIDEO'\n  | 'IMAGE_LINK';\n\nexport interface SequencePath {\n  /**\n   * The name of the sequence the field is a part of\n   * @maxLength 1000\n   */\n  name?: string;\n  /**\n   * The name of the field hold the id in the entity\n   * @maxLength 1000\n   */\n  fieldId?: string;\n}\n\nexport interface Empty {}\n\nexport interface DomainEvent extends DomainEventBodyOneOf {\n  createdEvent?: EntityCreatedEvent;\n  updatedEvent?: EntityUpdatedEvent;\n  deletedEvent?: EntityDeletedEvent;\n  actionEvent?: ActionEvent;\n  /** Event ID. With this ID you can easily spot duplicated events and ignore them. */\n  id?: string;\n  /**\n   * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.\n   * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.\n   */\n  entityFqdn?: string;\n  /**\n   * Event action name, placed at the top level to make it easier for users to dispatch messages.\n   * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.\n   */\n  slug?: string;\n  /** ID of the entity associated with the event. */\n  entityId?: string;\n  /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */\n  eventTime?: Date | null;\n  /**\n   * Whether the event was triggered as a result of a privacy regulation application\n   * (for example, GDPR).\n   */\n  triggeredByAnonymizeRequest?: boolean | null;\n  /** If present, indicates the action that triggered the event. */\n  originatedFrom?: string | null;\n  /**\n   * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.\n   * You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.\n   */\n  entityEventSequence?: string | null;\n}\n\n/** @oneof */\nexport interface DomainEventBodyOneOf {\n  createdEvent?: EntityCreatedEvent;\n  updatedEvent?: EntityUpdatedEvent;\n  deletedEvent?: EntityDeletedEvent;\n  actionEvent?: ActionEvent;\n}\n\nexport interface EntityCreatedEvent {\n  entityAsJson?: string;\n  /** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */\n  restoreInfo?: RestoreInfo;\n}\n\nexport interface RestoreInfo {\n  deletedDate?: Date | null;\n}\n\nexport interface EntityUpdatedEvent {\n  /**\n   * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.\n   * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.\n   * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.\n   */\n  currentEntityAsJson?: string;\n}\n\nexport interface EntityDeletedEvent {\n  /** Entity that was deleted. */\n  deletedEntityAsJson?: string | null;\n}\n\nexport interface ActionEvent {\n  bodyAsJson?: string;\n}\n\nexport interface CreateOrUpdateNileMapperRequest {\n  /** A mapper to create or update if already exist */\n  mapper?: Mapper;\n  /** if true don't send pods notify kafka event */\n  skipPodsNotify?: boolean | null;\n}\n\nexport interface CreateOrUpdateNileMapperResponse {}\n\nexport interface GetEntityMapperRequest {\n  /**\n   * App id of the mapper requested\n   * @format GUID\n   */\n  appId?: string;\n  /**\n   * Entity fqn of the mapper requested\n   * @maxLength 100\n   */\n  entityFqn?: string;\n}\n\nexport interface GetEntityMapperResponse {\n  /** Mapper requested */\n  entityMapper?: Mapper;\n}\n\nexport interface ListEntityMapperRequest {\n  /**\n   * App id of the mapper requested\n   * @format GUID\n   */\n  appId?: string | null;\n  /**\n   * Entity fqn of the mapper requested\n   * @maxLength 100\n   */\n  entityFqn?: string | null;\n}\n\nexport interface ListEntityMapperResponse {\n  /**\n   * Mapper requested\n   * @maxSize 500\n   */\n  mappers?: Mapper[];\n}\n\nexport interface DeleteEntityMapperRequest {\n  /**\n   * App id of the mapper to delete\n   * @format GUID\n   */\n  appId?: string;\n  /**\n   * Entity fqn of the mapper to delete\n   * @maxLength 100\n   */\n  entityFqn?: string;\n}\n\nexport interface DeleteEntityMapperResponse {}\n\nexport interface GetSubscribedTopicsRequest {}\n\nexport interface GetSubscribedTopicsResponse {\n  /**\n   * List of subscribed topics\n   * @maxSize 1000\n   */\n  topics?: string[];\n}\n\nexport interface MessageEnvelope {\n  /**\n   * App instance ID.\n   * @format GUID\n   */\n  instanceId?: string | null;\n  /**\n   * Event type.\n   * @maxLength 150\n   */\n  eventType?: string;\n  /** The identification type and identity data. */\n  identity?: IdentificationData;\n  /** Stringify payload. */\n  data?: string;\n  /** Details related to the account */\n  accountInfo?: AccountInfo;\n}\n\nexport interface IdentificationData extends IdentificationDataIdOneOf {\n  /**\n   * ID of a site visitor that has not logged in to the site.\n   * @format GUID\n   */\n  anonymousVisitorId?: string;\n  /**\n   * ID of a site visitor that has logged in to the site.\n   * @format GUID\n   */\n  memberId?: string;\n  /**\n   * ID of a Wix user (site owner, contributor, etc.).\n   * @format GUID\n   */\n  wixUserId?: string;\n  /**\n   * ID of an app.\n   * @format GUID\n   */\n  appId?: string;\n  /** @readonly */\n  identityType?: WebhookIdentityTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface IdentificationDataIdOneOf {\n  /**\n   * ID of a site visitor that has not logged in to the site.\n   * @format GUID\n   */\n  anonymousVisitorId?: string;\n  /**\n   * ID of a site visitor that has logged in to the site.\n   * @format GUID\n   */\n  memberId?: string;\n  /**\n   * ID of a Wix user (site owner, contributor, etc.).\n   * @format GUID\n   */\n  wixUserId?: string;\n  /**\n   * ID of an app.\n   * @format GUID\n   */\n  appId?: string;\n}\n\nexport enum WebhookIdentityType {\n  UNKNOWN = 'UNKNOWN',\n  ANONYMOUS_VISITOR = 'ANONYMOUS_VISITOR',\n  MEMBER = 'MEMBER',\n  WIX_USER = 'WIX_USER',\n  APP = 'APP',\n}\n\n/** @enumType */\nexport type WebhookIdentityTypeWithLiterals =\n  | WebhookIdentityType\n  | 'UNKNOWN'\n  | 'ANONYMOUS_VISITOR'\n  | 'MEMBER'\n  | 'WIX_USER'\n  | 'APP';\n\nexport interface AccountInfo {\n  /**\n   * ID of the Wix account associated with the event.\n   * @format GUID\n   */\n  accountId?: string | null;\n  /**\n   * ID of the parent Wix account. Only included when accountId belongs to a child account.\n   * @format GUID\n   */\n  parentAccountId?: string | null;\n  /**\n   * ID of the Wix site associated with the event. Only included when the event is tied to a specific site.\n   * @format GUID\n   */\n  siteId?: string | null;\n}\n\nexport interface HtmlNewRevisionSavedMessage {\n  /**\n   * HTML Site ID\n   * @format GUID\n   */\n  siteId?: string;\n  /** Newly saved revision */\n  revision?: string;\n  /** Restored from revision */\n  restoredFrom?: string | null;\n  /**\n   * Optional meta site id\n   * @format GUID\n   */\n  metaSiteId?: string | null;\n  /** Date that this version was updated (same as created) */\n  updateDate?: string;\n  /** determine whether this site uses responsive editor */\n  isResponsive?: boolean;\n  /**\n   * optional branch id if revision saved on branch\n   * @format GUID\n   */\n  branchId?: string | null;\n  /** determine if the new revision is a result of override save */\n  overrideSave?: boolean;\n  /**\n   * Optional last transaction id\n   * @maxLength 50\n   */\n  lastTransactionId?: string | null;\n  /**\n   * optional branch id if revision restored from branch\n   * @format GUID\n   */\n  restoredFromBranchId?: string | null;\n  /** information of revision prior to save revision operation */\n  lastRevisionInfo?: RevisionInfo;\n  /** new revision pages */\n  pages?: Page[];\n  /** the pages that were changed from the last save. Operations such as clone and restore will return an empty response at the moment. */\n  changedPages?: ChangedPages;\n  /**\n   * id of the main page of the site\n   * @maxLength 100\n   */\n  mainPageId?: string;\n  /**\n   * correlation id of original process (allows callers of createRevision to identify their revisions)\n   * @format GUID\n   */\n  originCorrelationId?: string | null;\n}\n\nexport interface RevisionInfo {\n  /** revision number */\n  revision?: string;\n  /** last_transaction_id of revision */\n  lastTransactionId?: string | null;\n}\n\nexport interface Page {\n  /**\n   * Page's Id\n   * @maxLength 100\n   */\n  id?: string;\n}\n\nexport interface ChangedPages {\n  /** list of updated_pages */\n  updatedPages?: Page[];\n  /** list of deleted_pages */\n  deletedPages?: Page[];\n}\n\nexport interface SyncEditorDataRequest {\n  /** an optional filter for syncing the content */\n  syncFilter?: SyncFilter;\n}\n\nexport interface SyncFilter {\n  /**\n   * content IETF BCP 47 language tag\n   * @format LANGUAGE_TAG\n   */\n  languageTag?: string;\n}\n\nexport interface SyncEditorDataResponse {}\n\nexport interface PublishSiteTranslationsRequest {\n  /**\n   * A language to publish it's language\n   * @format LANGUAGE\n   */\n  language?: string;\n}\n\nexport interface PublishSiteTranslationsResponse {}\n\nexport interface CreateOrUpdateEditorMapperRequest {\n  /** A mapper to create or update if already exist */\n  mapper?: Mapper;\n}\n\nexport interface CreateOrUpdateEditorMapperResponse {}\n\nexport interface GetMapperRequest {\n  /**\n   * The mapper type requested\n   * @minLength 2\n   * @maxLength 80\n   */\n  entityType?: string;\n}\n\nexport interface GetMapperResponse {\n  /** The mapper with the entity type requested */\n  mapper?: Mapper;\n}\n\nexport interface DeleteMapperRequest {\n  /**\n   * The entity type to delete from the service\n   * @minLength 2\n   * @maxLength 80\n   */\n  entityType?: string;\n}\n\nexport interface DeleteMapperResponse {}\n\nexport interface ListMappersRequest {}\n\nexport interface ListMappersResponse {\n  /**\n   * all mappers known to editor adapter\n   * @maxSize 256\n   */\n  mappers?: Mapper[];\n}\n","import * as ambassadorWixMultilingualGenericconverterV1EntityMapper from './multilingual-genericconverter-v1-entity-mapper-entity-mapper.http.js';\nimport * as ambassadorWixMultilingualGenericconverterV1EntityMapperTypes from './multilingual-genericconverter-v1-entity-mapper-entity-mapper.types.js';\nimport * as ambassadorWixMultilingualGenericconverterV1EntityMapperUniversalTypes from './multilingual-genericconverter-v1-entity-mapper-entity-mapper.universal.js';\n\nexport type __PublicMethodMetaInfo<\n  K = string,\n  M = unknown,\n  T = unknown,\n  S = unknown,\n  Q = unknown,\n  R = unknown\n> = {\n  getUrl: (context: any) => string;\n  httpMethod: K;\n  path: string;\n  pathParams: M;\n  __requestType: T;\n  __originalRequestType: S;\n  __responseType: Q;\n  __originalResponseType: R;\n};\n\nexport function syncEditorData(): __PublicMethodMetaInfo<\n  'GET',\n  {},\n  ambassadorWixMultilingualGenericconverterV1EntityMapperUniversalTypes.SyncEditorDataRequest,\n  ambassadorWixMultilingualGenericconverterV1EntityMapperTypes.SyncEditorDataRequest,\n  ambassadorWixMultilingualGenericconverterV1EntityMapperUniversalTypes.SyncEditorDataResponse,\n  ambassadorWixMultilingualGenericconverterV1EntityMapperTypes.SyncEditorDataResponse\n> {\n  const payload = {} as any;\n\n  const getRequestOptions =\n    ambassadorWixMultilingualGenericconverterV1EntityMapper.syncEditorData(\n      payload\n    );\n\n  const getUrl = (context: any): string => {\n    const { url } = getRequestOptions(context);\n    return url!;\n  };\n\n  return {\n    getUrl,\n    httpMethod: 'GET',\n    path: '/v1/pull_data',\n    pathParams: {},\n    __requestType: null as any,\n    __originalRequestType: null as any,\n    __responseType: null as any,\n    __originalResponseType: null as any,\n  };\n}\n\nexport {\n  Mapper as MapperOriginal,\n  MapperField as MapperFieldOriginal,\n  FieldType as FieldTypeOriginal,\n  FieldTypeWithLiterals as FieldTypeWithLiteralsOriginal,\n  SequencePath as SequencePathOriginal,\n  Empty as EmptyOriginal,\n  DomainEvent as DomainEventOriginal,\n  DomainEventBodyOneOf as DomainEventBodyOneOfOriginal,\n  EntityCreatedEvent as EntityCreatedEventOriginal,\n  RestoreInfo as RestoreInfoOriginal,\n  EntityUpdatedEvent as EntityUpdatedEventOriginal,\n  EntityDeletedEvent as EntityDeletedEventOriginal,\n  ActionEvent as ActionEventOriginal,\n  CreateOrUpdateNileMapperRequest as CreateOrUpdateNileMapperRequestOriginal,\n  CreateOrUpdateNileMapperResponse as CreateOrUpdateNileMapperResponseOriginal,\n  GetEntityMapperRequest as GetEntityMapperRequestOriginal,\n  GetEntityMapperResponse as GetEntityMapperResponseOriginal,\n  ListEntityMapperRequest as ListEntityMapperRequestOriginal,\n  ListEntityMapperResponse as ListEntityMapperResponseOriginal,\n  DeleteEntityMapperRequest as DeleteEntityMapperRequestOriginal,\n  DeleteEntityMapperResponse as DeleteEntityMapperResponseOriginal,\n  GetSubscribedTopicsRequest as GetSubscribedTopicsRequestOriginal,\n  GetSubscribedTopicsResponse as GetSubscribedTopicsResponseOriginal,\n  MessageEnvelope as MessageEnvelopeOriginal,\n  IdentificationData as IdentificationDataOriginal,\n  IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal,\n  WebhookIdentityType as WebhookIdentityTypeOriginal,\n  WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal,\n  AccountInfo as AccountInfoOriginal,\n  HtmlNewRevisionSavedMessage as HtmlNewRevisionSavedMessageOriginal,\n  RevisionInfo as RevisionInfoOriginal,\n  Page as PageOriginal,\n  ChangedPages as ChangedPagesOriginal,\n  SyncEditorDataRequest as SyncEditorDataRequestOriginal,\n  SyncFilter as SyncFilterOriginal,\n  SyncEditorDataResponse as SyncEditorDataResponseOriginal,\n  PublishSiteTranslationsRequest as PublishSiteTranslationsRequestOriginal,\n  PublishSiteTranslationsResponse as PublishSiteTranslationsResponseOriginal,\n  CreateOrUpdateEditorMapperRequest as CreateOrUpdateEditorMapperRequestOriginal,\n  CreateOrUpdateEditorMapperResponse as CreateOrUpdateEditorMapperResponseOriginal,\n  GetMapperRequest as GetMapperRequestOriginal,\n  GetMapperResponse as GetMapperResponseOriginal,\n  DeleteMapperRequest as DeleteMapperRequestOriginal,\n  DeleteMapperResponse as DeleteMapperResponseOriginal,\n  ListMappersRequest as ListMappersRequestOriginal,\n  ListMappersResponse as ListMappersResponseOriginal,\n} from './multilingual-genericconverter-v1-entity-mapper-entity-mapper.types.js';\n"],"mappings":";AAAA,SAAS,yBAAyB;AAClC,SAAS,kBAAkB;AAI3B,SAAS,sDACP,MACA;AACA,QAAM,mBAAmB;AAAA,IACvB,wBAAwB;AAAA,MACtB;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,EACF;AAEA,SAAO,WAAW,OAAO,OAAO,MAAM,EAAE,iBAAiB,CAAC,CAAC;AAC7D;AAEA,IAAM,eAAe;AAGd,SAAS,eAAe,SAA6C;AAC1E,WAAS,iBAAiB,EAAE,KAAK,GAAQ;AACvC,UAAM,WAAW;AAAA,MACf,YAAY;AAAA,MACZ,QAAQ;AAAA,MACR,WACE;AAAA,MACF,aAAa;AAAA,MACb,kBAAkB;AAAA,QAChB,wBAAwB;AAAA,MAC1B;AAAA,MACA,KAAK,sDAAsD;AAAA,QACzD,WAAW;AAAA,QACX,MAAM;AAAA,QACN;AAAA,MACF,CAAC;AAAA,MACD,QAAQ,kBAAkB,OAAO;AAAA,IACnC;AAEA,WAAO;AAAA,EACT;AAEA,SAAO;AACT;;;ACoBO,IAAK,YAAL,kBAAKA,eAAL;AAEL,EAAAA,WAAA,oBAAiB;AAEjB,EAAAA,WAAA,gBAAa;AAEb,EAAAA,WAAA,eAAY;AAEZ,EAAAA,WAAA,eAAY;AAEZ,EAAAA,WAAA,yBAAsB;AAEtB,EAAAA,WAAA,eAAY;AAEZ,EAAAA,WAAA,qBAAkB;AAElB,EAAAA,WAAA,cAAW;AAEX,EAAAA,WAAA,WAAQ;AAER,EAAAA,WAAA,WAAQ;AAER,EAAAA,WAAA,gBAAa;AAtBH,SAAAA;AAAA,GAAA;AA2QL,IAAK,sBAAL,kBAAKC,yBAAL;AACL,EAAAA,qBAAA,aAAU;AACV,EAAAA,qBAAA,uBAAoB;AACpB,EAAAA,qBAAA,YAAS;AACT,EAAAA,qBAAA,cAAW;AACX,EAAAA,qBAAA,SAAM;AALI,SAAAA;AAAA,GAAA;;;ACvTL,SAASC,kBAOd;AACA,QAAM,UAAU,CAAC;AAEjB,QAAM,oBACoD;AAAA,IACtD;AAAA,EACF;AAEF,QAAM,SAAS,CAAC,YAAyB;AACvC,UAAM,EAAE,IAAI,IAAI,kBAAkB,OAAO;AACzC,WAAO;AAAA,EACT;AAEA,SAAO;AAAA,IACL;AAAA,IACA,YAAY;AAAA,IACZ,MAAM;AAAA,IACN,YAAY,CAAC;AAAA,IACb,eAAe;AAAA,IACf,uBAAuB;AAAA,IACvB,gBAAgB;AAAA,IAChB,wBAAwB;AAAA,EAC1B;AACF;","names":["FieldType","WebhookIdentityType","syncEditorData"]}