{"version":3,"sources":["../../src/academy-certifications-v1-account-certification-account-certifications.http.ts","../../src/academy-certifications-v1-account-certification-account-certifications.types.ts","../../src/academy-certifications-v1-account-certification-account-certifications.meta.ts"],"sourcesContent":["import { toURLSearchParams } from '@wix/sdk-runtime/rest-modules';\nimport { transformRESTTimestampToSDKTimestamp } from '@wix/sdk-runtime/transformations/timestamp';\nimport { transformPaths } from '@wix/sdk-runtime/transformations/transform-paths';\nimport { resolveUrl } from '@wix/sdk-runtime/rest-modules';\nimport { ResolveUrlOpts } from '@wix/sdk-runtime/rest-modules';\nimport { RequestOptionsFactory } from '@wix/sdk-types';\n\nfunction resolveWixAcademyCertificationsAccountV1AccountCertificationsUrl(\n  opts: Omit<ResolveUrlOpts, 'domainToMappings'>\n) {\n  const domainToMappings = {\n    'api._api_base_domain_': [\n      {\n        srcPath: '/account-certifications',\n        destPath: '',\n      },\n    ],\n    'www._base_domain_': [\n      {\n        srcPath: '/_api/account-certifications',\n        destPath: '',\n      },\n    ],\n    'manage._base_domain_': [\n      {\n        srcPath: '/_api/account-certifications',\n        destPath: '',\n      },\n    ],\n    'www.wixapis.com': [\n      {\n        srcPath: '/academy/certifications/v1/account-certifications',\n        destPath: '/v1/account-certifications',\n      },\n    ],\n    '*.dev.wix-code.com': [\n      {\n        srcPath: '/academy/certifications/v1/account-certifications',\n        destPath: '/v1/account-certifications',\n      },\n    ],\n    _: [\n      {\n        srcPath: '/academy/certifications/v1/account-certifications',\n        destPath: '/v1/account-certifications',\n      },\n    ],\n  };\n\n  return resolveUrl(Object.assign(opts, { domainToMappings }));\n}\n\nconst PACKAGE_NAME =\n  '@wix/auto_sdk_account-certifications_account-certifications';\n\n/**\n * Retrieves a list of up to 1,000 account certifications, given the provided paging, filtering, and sorting.\n *\n * Query Account Certifications returns the full account certification records, including the underlying `userCertificationIds`, for the caller's own account only. To retrieve any account's certifications as a public, visitor-safe projection, call [List Account Certifications](https://dev.wix.com/docs/api-reference/account-level/studio-workspace/certifications/account-certification-v1/list-account-certifications) instead.\n *\n * Query Account Certifications runs with these defaults, which you can override:\n *\n * - `createdDate` is sorted in `DESC` order\n * - `cursorPaging.limit` is `50`\n *\n * You can filter and sort by `id`, `certificationType`, and `createdDate`.\n *\n * To learn about working with Query methods, see [API Query Language](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/data-retrieval/about-the-wix-api-query-language), [Sorting and Paging](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/data-retrieval/about-sorting-and-paging), and [Field Projection](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/data-retrieval/about-field-projection).\n */\nexport function queryAccountCertifications(\n  payload: object\n): RequestOptionsFactory<any> {\n  function __queryAccountCertifications({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.academy.certifications.v1.account_certification',\n      method: 'POST' as any,\n      methodFqn:\n        'wix.academy.certifications.account.v1.AccountCertifications.QueryAccountCertifications',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveWixAcademyCertificationsAccountV1AccountCertificationsUrl({\n        protoPath: '/v1/account-certifications/query',\n        data: payload,\n        host,\n      }),\n      data: payload,\n      transformResponse: (payload: any) =>\n        transformPaths(payload, [\n          {\n            transformFn: transformRESTTimestampToSDKTimestamp,\n            paths: [\n              { path: 'accountCertifications.createdDate' },\n              { path: 'accountCertifications.updatedDate' },\n            ],\n          },\n        ]),\n    };\n\n    return metadata;\n  }\n\n  return __queryAccountCertifications;\n}\n\n/**\n * Retrieves an account's certifications for public display, given the account ID.\n *\n * This is a public, visitor-safe projection that returns only each certification's type and\n * creation date. To retrieve the full account certification records, including the underlying\n * `userCertificationIds`, call [Query Account Certifications](https://dev.wix.com/docs/api-reference/account-level/studio-workspace/certifications/account-certification-v1/query-account-certifications) instead.\n */\nexport function listAccountCertifications(\n  payload: object\n): RequestOptionsFactory<any> {\n  function __listAccountCertifications({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.academy.certifications.v1.account_certification',\n      method: 'GET' as any,\n      methodFqn:\n        'wix.academy.certifications.account.v1.AccountCertifications.ListAccountCertifications',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveWixAcademyCertificationsAccountV1AccountCertificationsUrl({\n        protoPath: '/v1/account-certifications/by-account/{accountId}',\n        data: payload,\n        host,\n      }),\n      params: toURLSearchParams(payload),\n      transformResponse: (payload: any) =>\n        transformPaths(payload, [\n          {\n            transformFn: transformRESTTimestampToSDKTimestamp,\n            paths: [{ path: 'certifications.createdDate' }],\n          },\n        ]),\n    };\n\n    return metadata;\n  }\n\n  return __listAccountCertifications;\n}\n","/**\n * An account certification represents a Wix Academy certification held by an account,\n * such as the Velo, Web Designer, or Wix Studio Developer certification.\n *\n * An account holds a certification when one or more of its team members hold the corresponding\n * user certification. Each account has at most one account certification per certification type,\n * aggregating all of the account's certified team members for that type.\n *\n * To read certifications at the individual user level, see the User Certifications API.\n */\nexport interface AccountCertification {\n  /**\n   * Account certification ID.\n   * @format GUID\n   * @readonly\n   */\n  id?: string | null;\n  /**\n   * Revision number, which increments by 1 each time the account certification is updated.\n   * To prevent conflicting changes,\n   * the current revision must be passed when updating the account certification.\n   *\n   * Ignored when creating an account certification.\n   * @readonly\n   */\n  revision?: string | null;\n  /**\n   * Date and time the account certification was created.\n   * @readonly\n   */\n  createdDate?: Date | null;\n  /**\n   * Date and time the account certification was last updated.\n   * @readonly\n   */\n  updatedDate?: Date | null;\n  /**\n   * IDs of the user certification records, held by the account's team members, that qualify the\n   * account for its `certificationType`. Up to 100. The list contains no duplicates, and its order isn't guaranteed.\n   * @format GUID\n   * @maxSize 100\n   */\n  userCertificationIds?: string[];\n  /**\n   * Type of certification the account holds. Set when the certification is created and can't be changed afterward.\n   * @immutable\n   */\n  certificationType?: CertificationTypeWithLiterals;\n}\n\nexport enum CertificationType {\n  /** Velo certification: proficiency in building with Velo, Wix's full-stack development platform. */\n  VELO = 'VELO',\n  /** Web Designer certification: proficiency in designing and building Wix websites. */\n  WEB_DESIGNER = 'WEB_DESIGNER',\n  /** Accessibility certification: proficiency in building accessible Wix websites. */\n  ACCESSIBILITY = 'ACCESSIBILITY',\n  /** Wix Studio Developer certification: proficiency in developing with Wix Studio. */\n  STUDIO_DEVELOPER = 'STUDIO_DEVELOPER',\n  /** Wix Studio Design League certification, awarded through the Wix Studio Design League program. */\n  STUDIO_DESIGN_LEAGUE = 'STUDIO_DESIGN_LEAGUE',\n  /** Wix Studio Developer Websites League certification, awarded through the Wix Studio Developer Websites League program. */\n  STUDIO_DEV_WEBSITES_LEAGUE = 'STUDIO_DEV_WEBSITES_LEAGUE',\n}\n\n/** @enumType */\nexport type CertificationTypeWithLiterals =\n  | CertificationType\n  | 'VELO'\n  | 'WEB_DESIGNER'\n  | 'ACCESSIBILITY'\n  | 'STUDIO_DEVELOPER'\n  | 'STUDIO_DESIGN_LEAGUE'\n  | 'STUDIO_DEV_WEBSITES_LEAGUE';\n\nexport interface CertifyAccountRequest {\n  /**\n   * ID of the user certification to add to the account.\n   * @format GUID\n   */\n  userCertificationId?: string;\n  /**\n   * ID of the account to certify.\n   * @format GUID\n   */\n  accountId?: string;\n}\n\nexport interface CertifyAccountResponse {\n  /** The created or updated account certification. */\n  accountCertification?: AccountCertification;\n}\n\nexport interface DecertifyAccountRequest {\n  /**\n   * ID of the user certification to remove from the account.\n   * @format GUID\n   */\n  userCertificationId?: string;\n  /**\n   * ID of the account to decertify.\n   * @format GUID\n   */\n  accountId?: string;\n}\n\nexport interface DecertifyAccountResponse {\n  /** Updated account certification. Empty when the last user certification of that type was removed and the account certification was deleted. */\n  accountCertification?: AccountCertification;\n}\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  /**\n   * Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity\n   * @internal\n   */\n  triggeredByUndelete?: boolean | null;\n  /** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */\n  restoreInfo?: RestoreInfo;\n  /**\n   * Optional domain-specific metadata defined by the API owner, encoded as JSON.\n   * @internal\n   */\n  additionalMetadataAsJson?: string | null;\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   * This field is currently part of the of the EntityUpdatedEvent msg, but scala/node libraries which implements the domain events standard\n   * wont populate it / have any reference to it in the API.\n   * The main reason for it is that fetching the old entity from the DB will have a performance hit on an update operation so unless truly needed,\n   * the developer should send only the new (current) entity.\n   * An additional reason is not wanting to send this additional entity over the wire (kafka) since in some cases it can be really big\n   * Developers that must reflect the old entity will have to implement their own domain event sender mechanism which will follow the DomainEvent proto message.\n   * @internal\n   * @deprecated\n   */\n  previousEntityAsJson?: string | null;\n  /**\n   * Map of fully qualified field paths to their previous values for fields that changed.\n   * For more details please see [AIP](https://dev.wix.com/docs/rnd-general/articles/p13n-guidelines-aips/guidance-aips/design-patterns/7016-events#modified-fields-format)\n   * @internal\n   */\n  modifiedFields?: Record<string, any>;\n  /**\n   * Optional domain-specific metadata defined by the API owner, encoded as JSON.\n   * @internal\n   */\n  additionalMetadataAsJson?: string | null;\n}\n\nexport interface EntityDeletedEvent {\n  /**\n   * Indicates if the entity is sent to trash-bin. only available when trash-bin is enabled\n   * @internal\n   */\n  movedToTrash?: boolean | null;\n  /** Entity that was deleted. */\n  deletedEntityAsJson?: string | null;\n  /**\n   * Optional domain-specific metadata defined by the API owner, encoded as JSON.\n   * @internal\n   */\n  additionalMetadataAsJson?: string | null;\n}\n\nexport interface ActionEvent {\n  bodyAsJson?: string;\n}\n\nexport interface Empty {}\n\nexport interface QueryAccountCertificationsRequest {\n  /** Query options. See [API Query Language](https://dev.wix.com/docs/api-reference/articles/work-with-wix-apis/data-retrieval/about-the-wix-api-query-language) for more information. */\n  query?: CursorQuery;\n}\n\nexport interface CursorQuery extends CursorQueryPagingMethodOneOf {\n  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */\n  cursorPaging?: CursorPaging;\n  /**\n   * Filter object in the following format:\n   * `\"filter\" : {\n   * \"fieldName1\": \"value1\",\n   * \"fieldName2\":{\"$operator\":\"value2\"}\n   * }`\n   * Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`\n   */\n  filter?: Record<string, any> | null;\n  /**\n   * Sort object in the following format:\n   * `[{\"fieldName\":\"sortField1\",\"order\":\"ASC\"},{\"fieldName\":\"sortField2\",\"order\":\"DESC\"}]`\n   * @maxSize 4\n   */\n  sort?: Sorting[];\n}\n\n/** @oneof */\nexport interface CursorQueryPagingMethodOneOf {\n  /** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */\n  cursorPaging?: CursorPaging;\n}\n\nexport interface Sorting {\n  /**\n   * Name of the field to sort by.\n   * @maxLength 50\n   */\n  fieldName?: string;\n  /** Sort order. */\n  order?: SortOrderWithLiterals;\n}\n\nexport enum SortOrder {\n  ASC = 'ASC',\n  DESC = 'DESC',\n}\n\n/** @enumType */\nexport type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';\n\nexport interface CursorPaging {\n  /**\n   * Number of items to load.\n   * @max 100\n   */\n  limit?: number | null;\n  /**\n   * Pointer to the next or previous page in the list of results.\n   *\n   * You can get the relevant cursor token\n   * from the `pagingMetadata` object in the previous call's response.\n   * Not relevant for the first request.\n   * @maxLength 16000\n   */\n  cursor?: string | null;\n}\n\nexport interface QueryAccountCertificationsResponse {\n  /** List of account certifications. */\n  accountCertifications?: AccountCertification[];\n  /** Paging metadata. */\n  pagingMetadata?: CursorPagingMetadata;\n}\n\nexport interface CursorPagingMetadata {\n  /** Number of items returned in the response. */\n  count?: number | null;\n  /** Offset that was requested. */\n  cursors?: Cursors;\n  /**\n   * Indicates if there are more results after the current page.\n   * If `true`, another page of results can be retrieved.\n   * If `false`, this is the last page.\n   */\n  hasNext?: boolean | null;\n}\n\nexport interface Cursors {\n  /**\n   * Cursor pointing to next page in the list of results.\n   * @maxLength 16000\n   */\n  next?: string | null;\n  /**\n   * Cursor pointing to previous page in the list of results.\n   * @maxLength 16000\n   */\n  prev?: string | null;\n}\n\nexport interface ListAccountCertificationsRequest {\n  /**\n   * ID of the account to get certifications for.\n   * @format GUID\n   */\n  accountId: string;\n}\n\nexport interface ListAccountCertificationsResponse {\n  /** The account's certifications, as a public, visitor-safe projection. */\n  certifications?: Certification[];\n}\n\n/** A public, visitor-safe view of a certification held by an account. */\nexport interface Certification {\n  /** Type of certification the account holds. */\n  certificationType?: CertificationTypeWithLiterals;\n  /**\n   * Date and time the account certification was created.\n   * @readonly\n   */\n  createdDate?: Date | null;\n}\n\nexport interface TeamMemberRemovedEvent {\n  /**\n   * ID of the account the user was removed from.\n   * @format GUID\n   */\n  accountId?: string;\n  /**\n   * ID of the user (team member) that was removed from the account. Same identifier as `UserCertification.userId`.\n   * @format GUID\n   */\n  teamMemberId?: 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","import * as ambassadorWixAcademyCertificationsV1AccountCertification from './academy-certifications-v1-account-certification-account-certifications.http.js';\nimport * as ambassadorWixAcademyCertificationsV1AccountCertificationTypes from './academy-certifications-v1-account-certification-account-certifications.types.js';\nimport * as ambassadorWixAcademyCertificationsV1AccountCertificationUniversalTypes from './academy-certifications-v1-account-certification-account-certifications.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 queryAccountCertifications(): __PublicMethodMetaInfo<\n  'POST',\n  {},\n  ambassadorWixAcademyCertificationsV1AccountCertificationUniversalTypes.QueryAccountCertificationsRequest,\n  ambassadorWixAcademyCertificationsV1AccountCertificationTypes.QueryAccountCertificationsRequest,\n  ambassadorWixAcademyCertificationsV1AccountCertificationUniversalTypes.QueryAccountCertificationsResponse,\n  ambassadorWixAcademyCertificationsV1AccountCertificationTypes.QueryAccountCertificationsResponse\n> {\n  const payload = {} as any;\n\n  const getRequestOptions =\n    ambassadorWixAcademyCertificationsV1AccountCertification.queryAccountCertifications(\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: 'POST',\n    path: '/v1/account-certifications/query',\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 function listAccountCertifications(): __PublicMethodMetaInfo<\n  'GET',\n  { accountId: string },\n  ambassadorWixAcademyCertificationsV1AccountCertificationUniversalTypes.ListAccountCertificationsRequest,\n  ambassadorWixAcademyCertificationsV1AccountCertificationTypes.ListAccountCertificationsRequest,\n  ambassadorWixAcademyCertificationsV1AccountCertificationUniversalTypes.ListAccountCertificationsResponse,\n  ambassadorWixAcademyCertificationsV1AccountCertificationTypes.ListAccountCertificationsResponse\n> {\n  const payload = { accountId: ':accountId' } as any;\n\n  const getRequestOptions =\n    ambassadorWixAcademyCertificationsV1AccountCertification.listAccountCertifications(\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/account-certifications/by-account/{accountId}',\n    pathParams: { accountId: 'accountId' },\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  AccountCertification as AccountCertificationOriginal,\n  CertificationType as CertificationTypeOriginal,\n  CertificationTypeWithLiterals as CertificationTypeWithLiteralsOriginal,\n  CertifyAccountRequest as CertifyAccountRequestOriginal,\n  CertifyAccountResponse as CertifyAccountResponseOriginal,\n  DecertifyAccountRequest as DecertifyAccountRequestOriginal,\n  DecertifyAccountResponse as DecertifyAccountResponseOriginal,\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  Empty as EmptyOriginal,\n  QueryAccountCertificationsRequest as QueryAccountCertificationsRequestOriginal,\n  CursorQuery as CursorQueryOriginal,\n  CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal,\n  Sorting as SortingOriginal,\n  SortOrder as SortOrderOriginal,\n  SortOrderWithLiterals as SortOrderWithLiteralsOriginal,\n  CursorPaging as CursorPagingOriginal,\n  QueryAccountCertificationsResponse as QueryAccountCertificationsResponseOriginal,\n  CursorPagingMetadata as CursorPagingMetadataOriginal,\n  Cursors as CursorsOriginal,\n  ListAccountCertificationsRequest as ListAccountCertificationsRequestOriginal,\n  ListAccountCertificationsResponse as ListAccountCertificationsResponseOriginal,\n  Certification as CertificationOriginal,\n  TeamMemberRemovedEvent as TeamMemberRemovedEventOriginal,\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} from './academy-certifications-v1-account-certification-account-certifications.types.js';\n"],"mappings":"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","names":["payload","CertificationType","SortOrder","WebhookIdentityType","queryAccountCertifications","listAccountCertifications"]}