{"version":3,"sources":["../../src/devcenter-app-instance-v1-app-instance-app-instances.http.ts","../../src/devcenter-app-instance-v1-app-instance-app-instances.types.ts","../../src/devcenter-app-instance-v1-app-instance-app-instances.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 resolveComWixpressMarketAimApiAppInstanceServiceUrl(\n  opts: Omit<ResolveUrlOpts, 'domainToMappings'>\n) {\n  const domainToMappings = {\n    'api._api_base_domain_': [\n      {\n        srcPath: '/app-instance-manager-webapp',\n        destPath: '',\n      },\n    ],\n    'www.wixapis.com': [\n      {\n        srcPath: '/apps',\n        destPath: '',\n      },\n    ],\n    'wixapis.com': [\n      {\n        srcPath: '/apps',\n        destPath: '',\n      },\n    ],\n    'dev._base_domain_': [\n      {\n        srcPath: '/_api/app-instance-manager',\n        destPath: '',\n      },\n      {\n        srcPath: '/api/v1/instance',\n        destPath: '/v1/instance',\n      },\n      {\n        srcPath: '/api/v1/scripts',\n        destPath: '/v1/scripts',\n      },\n    ],\n    'manage._base_domain_': [\n      {\n        srcPath: '/_api/app-instance-manager',\n        destPath: '',\n      },\n    ],\n    'www._base_domain_': [\n      {\n        srcPath: '/_api/app-instance-manager',\n        destPath: '',\n      },\n    ],\n    'editor._base_domain_': [\n      {\n        srcPath: '/_api/app-instance-manager',\n        destPath: '',\n      },\n    ],\n    'blocks._base_domain_': [\n      {\n        srcPath: '/_api/app-instance-manager',\n        destPath: '',\n      },\n    ],\n    'create.editorx': [\n      {\n        srcPath: '/_api/app-instance-manager',\n        destPath: '',\n      },\n    ],\n    '*.dev.wix-code.com': [\n      {\n        srcPath: '/devcenter/app-instance/v1/instance',\n        destPath: '/v1/instance',\n      },\n      {\n        srcPath: '/devcenter/checkout/v1/checkout',\n        destPath: '/v1/checkout',\n      },\n      {\n        srcPath: '/devcenter/checkout/v1/metered-billing-charges',\n        destPath: '/v1/metered-billing-charges',\n      },\n      {\n        srcPath: '/devcenter/scripts/v1/scripts',\n        destPath: '/v1/scripts',\n      },\n      {\n        srcPath: '/market/aim/v1/billing-event',\n        destPath: '/v1/billing-event',\n      },\n      {\n        srcPath: '/devcenter/bi-events/v1/bi-event',\n        destPath: '/v1/bi-event',\n      },\n    ],\n    _: [\n      {\n        srcPath: '/devcenter/app-instance/v1/instance',\n        destPath: '/v1/instance',\n      },\n      {\n        srcPath: '/devcenter/checkout/v1/checkout',\n        destPath: '/v1/checkout',\n      },\n      {\n        srcPath: '/devcenter/checkout/v1/metered-billing-charges',\n        destPath: '/v1/metered-billing-charges',\n      },\n      {\n        srcPath: '/devcenter/scripts/v1/scripts',\n        destPath: '/v1/scripts',\n      },\n      {\n        srcPath: '/market/aim/v1/billing-event',\n        destPath: '/v1/billing-event',\n      },\n      {\n        srcPath: '/devcenter/bi-events/v1/bi-event',\n        destPath: '/v1/bi-event',\n      },\n    ],\n  };\n\n  return resolveUrl(Object.assign(opts, { domainToMappings }));\n}\n\nconst PACKAGE_NAME = '@wix/auto_sdk_app-management_app-instances';\n\n/**\n * Retrieves data about the instance of your app that's installed on a Wix\n * site and data about the site itself. For example, to check whether the Wix user has installed a free or paid version of your app,\n * or to check which apps made by Wix are installed on the site.\n *\n * You must authenticate this method [as a Wix app](https://dev.wix.com/docs/build-apps/develop-your-app/access/authentication/authenticate-using-oauth#step-2--make-an-authenticated-api-request).\n *\n * To retrieve `site.ownerInfo` in the response, you must\n * have the __READ SITE OWNER EMAIL__ permission scope in addition to\n * __MANAGE YOUR APP__.\n */\nexport function getAppInstance(payload: object): RequestOptionsFactory<any> {\n  function __getAppInstance({ host }: any) {\n    const metadata = {\n      entityFqdn: 'wix.devcenter.app_instance.v1.app_instance',\n      method: 'GET' as any,\n      methodFqn:\n        'com.wixpress.market.aim.api.AppInstanceService.GetAppInstance',\n      packageName: PACKAGE_NAME,\n      migrationOptions: {\n        optInTransformResponse: true,\n      },\n      url: resolveComWixpressMarketAimApiAppInstanceServiceUrl({\n        protoPath: '/v1/instance',\n        data: payload,\n        host,\n      }),\n      params: toURLSearchParams(payload),\n      transformResponse: (payload: any) =>\n        transformPaths(payload, [\n          {\n            transformFn: transformRESTTimestampToSDKTimestamp,\n            paths: [{ path: 'instance.billing.freeTrialInfo.endDate' }],\n          },\n        ]),\n    };\n\n    return metadata;\n  }\n\n  return __getAppInstance;\n}\n","/**\n * An app instance is a specific occurrence of an app on a Wix site.\n * When a Wix user installs an app, a unique instance is generated for that\n * specific site. Use the `instanceId` to keep track of the individual data\n * associated with each app instance.\n */\nexport interface AppInstance {\n  /**\n   * App instance ID. Useful to keep track of the\n   * data that's associated with the specific instance of your app\n   * installed on a Wix site.\n   */\n  instanceId?: string;\n  /** App name, as you entered it in the App Dashboard. */\n  appName?: string;\n  /** Version of your app that's installed on the Wix site. */\n  appVersion?: string | null;\n  /**\n   * Whether the Wix user has installed a free or paid version of your app\n   * on their site.\n   */\n  isFree?: boolean;\n  /**\n   * Billing information for the app instance. Available only in case\n   * `{\"isFree\": false}`.\n   */\n  billing?: BillingInfo;\n  /**\n   * List of [permissions](https://dev.wix.com/docs/build-apps/developer-tools/developers-center/example-app-walkthrough/build-an-app#4-add-permissions)\n   * that the Wix user has granted your app. You set the list of permissions that\n   * your app requires from the Wix user in your app's Permissions page.\n   */\n  permissions?: string[];\n  /** Plans available to this app instance. */\n  availablePlans?: AvailablePlan[];\n  /**\n   * ID of the Wix site from which the instance of your app has been cloned.\n   *\n   * All visual settings of the Wix site and app data are duplicated during the\n   * cloning process. Wix also notifies you in case there is any additional\n   * external functionality for the original site.\n   */\n  originInstanceId?: string | null;\n  /**\n   * __Deprecated__. This parameter will be removed on March 30, 2023. Use\n   * `copiedFromTemplate` instead.\n   * @deprecated\n   */\n  isOriginSiteTemplate?: boolean;\n  /** Whether this app instance was created when another Wix site was cloned. */\n  copiedFromTemplate?: boolean;\n  /** Whether this app instance includes a free trial that hasn't started yet. */\n  freeTrialAvailable?: boolean;\n}\n\nexport interface BillingInfo {\n  /** Name of the package that the site owner has paid for. */\n  packageName?: string;\n  /**\n   * Interval of the billing cycle. `ONE_TIME` indicates that the Wix user has\n   * made a single upfront payment without any automatic subscription renewal.\n   * This is primarily for usage credits (for example, 5 SMS) but may occasionally apply\n   * to a one-time setup for the app.\n   */\n  billingCycle?: PaymentCycleWithLiterals;\n  /**\n   * Date and time the Wix user purchased the app's paid plan or began their free trial. In\n   * `YYYY-MM-DDThh:mm:ss.sssZ` format.\n   */\n  timeStamp?: string;\n  /**\n   * Date and time the app's current billing cycle ends in\n   * `YYYY-MM-DDThh:mm:ss.sssZ` format. Available only for yearly and\n   * multi-yearly plans.\n   */\n  expirationDate?: string | null;\n  /**\n   * Whether the app's subscription automatically renews at the end of the\n   * current billing cycle.\n   */\n  autoRenewing?: boolean | null;\n  /** ID of the invoice for the current billing cycle. */\n  invoiceId?: string | null;\n  /**\n   * Information about any discounts applied to the app instance's current billing cycle.\n   * If the site owners applied a developer coupon or Wix Voucher\n   * when installing the paid version of your app, this field holds the coupon's\n   * name or `“Wix discount coupon”`. Site owners may receive a Wix Voucher when\n   * upgrading their Wix subscription. If there is no discount for the\n   * current billing cycle, the field is an empty string.\n   */\n  source?: string | null;\n  /** Information about the free trial applied, if relevant. */\n  freeTrialInfo?: FreeTrialInfo;\n}\n\nexport enum PaymentCycle {\n  NO_CYCLE = 'NO_CYCLE',\n  MONTHLY = 'MONTHLY',\n  YEARLY = 'YEARLY',\n  ONE_TIME = 'ONE_TIME',\n  TWO_YEARS = 'TWO_YEARS',\n  THREE_YEARS = 'THREE_YEARS',\n  FOUR_YEARS = 'FOUR_YEARS',\n  FIVE_YEARS = 'FIVE_YEARS',\n}\n\n/** @enumType */\nexport type PaymentCycleWithLiterals =\n  | PaymentCycle\n  | 'NO_CYCLE'\n  | 'MONTHLY'\n  | 'YEARLY'\n  | 'ONE_TIME'\n  | 'TWO_YEARS'\n  | 'THREE_YEARS'\n  | 'FOUR_YEARS'\n  | 'FIVE_YEARS';\n\nexport interface FreeTrialInfo {\n  /**\n   * Current free trial status.\n   * @readonly\n   */\n  status?: FreeTrialStatusWithLiterals;\n  /**\n   * When the free trial has ended. Populated only once the free trial is over.\n   * @readonly\n   */\n  endDate?: Date | null;\n}\n\nexport enum FreeTrialStatus {\n  /** The free trial is currently in progress. */\n  IN_PROGRESS = 'IN_PROGRESS',\n  /** The free trial has ended. */\n  ENDED = 'ENDED',\n  /** No free trial was applied, as none was available. */\n  NOT_AVAILABLE = 'NOT_AVAILABLE',\n}\n\n/** @enumType */\nexport type FreeTrialStatusWithLiterals =\n  | FreeTrialStatus\n  | 'IN_PROGRESS'\n  | 'ENDED'\n  | 'NOT_AVAILABLE';\n\nexport interface AvailablePlan {\n  /** Package name of the available plan. */\n  packageName?: string;\n  /** Source of the available plan. Can be a bundle or 3rd-party app. */\n  source?: string;\n}\n\nexport interface AppInstalled {\n  /**\n   * Unique identifier of the app within the website.\n   * @format GUID\n   */\n  appId?: string;\n  /**\n   * Instance ID of the app in the original website (relevant only when this site was [duplicated from another site](https://support.wix.com/en/article/duplicating-your-site-1472847)).\n   * @format GUID\n   */\n  originInstanceId?: string | null;\n}\n\nexport interface AppRemoved {\n  /**\n   * Unique identifier of the app within the website.\n   * @format GUID\n   */\n  appId?: string;\n}\n\nexport interface PaidPlanPurchased {\n  /** Date and time of purchase. */\n  operationTimeStamp?: Date | null;\n  /**\n   * Purchased app plan.\n   * @maxLength 100\n   */\n  vendorProductId?: string;\n  /** Selected payment cycle. */\n  cycle?: PaymentCycleWithLiterals;\n  /** Plan expiration date. */\n  expiresOn?: Date | null;\n  /**\n   * Coupon applied to purchase (if relevant).\n   * @maxLength 150\n   */\n  couponName?: string | null;\n  /**\n   * Invoice ID.\n   * @maxLength 50\n   */\n  invoiceId?: string | null;\n}\n\nexport interface PaidPlanChanged {\n  /** Date and time of change. */\n  operationTimeStamp?: Date | null;\n  /**\n   * Newly purchased app plan.\n   * @maxLength 100\n   */\n  vendorProductId?: string;\n  /** Newly selected payment cycle. */\n  cycle?: PaymentCycleWithLiterals;\n  /**\n   * Previous app plan.\n   * @maxLength 100\n   */\n  previousVendorProductId?: string | null;\n  /** Previous payment cycle. */\n  previousCycle?: PaymentCycleWithLiterals;\n  /**\n   * Coupon applied to purchase (if relevant).\n   * @maxLength 150\n   */\n  couponName?: string | null;\n  /**\n   * Invoice ID.\n   * @maxLength 50\n   */\n  invoiceId?: string | null;\n}\n\nexport interface PaidPlanAutoRenewalCancelled {\n  /** Date and time of auto-renewal cancellation. */\n  operationTimeStamp?: Date | null;\n  /**\n   * Current app plan.\n   * @maxLength 100\n   */\n  vendorProductId?: string;\n  /** Current payment cycle. */\n  cycle?: PaymentCycleWithLiterals;\n  /**\n   * Supported values: `UNKNOWN_CANCELLATION_TYPE_ERROR_STATE`, `USER_CANCEL`, `FAILED_PAYMENT`, `TRANSFER_CANCELLATION_REASON`. Reason provided by app for cancellation (if relevant).\n   * @maxLength 100\n   */\n  cancelReason?: string | null;\n  /**\n   * Reason provided by site owner for cancellation (if relevant).\n   * @maxLength 150\n   */\n  userReason?: string | null;\n  /**\n   * Cancellation type.\n   * @maxLength 100\n   */\n  subscriptionCancellationType?: string | null;\n  /** Whether the cancellation occurred during a free trial. */\n  cancelledDuringFreeTrial?: FreeTrialPeriodWithLiterals;\n}\n\nexport enum FreeTrialPeriod {\n  /** During a free trial period. */\n  DURING_FREE_TRIAL = 'DURING_FREE_TRIAL',\n  /** Not during a free trial period. */\n  NOT_DURING_FREE_TRIAL = 'NOT_DURING_FREE_TRIAL',\n}\n\n/** @enumType */\nexport type FreeTrialPeriodWithLiterals =\n  | FreeTrialPeriod\n  | 'DURING_FREE_TRIAL'\n  | 'NOT_DURING_FREE_TRIAL';\n\nexport interface PlanTransferred {\n  /** Date and time of transfer. */\n  operationTimeStamp?: Date | null;\n  /**\n   * Current app plan.\n   * @maxLength 100\n   */\n  vendorProductId?: string;\n  /** Selected payment cycle. */\n  cycle?: PaymentCycleWithLiterals;\n  /**\n   * Invoice ID.\n   * @maxLength 50\n   */\n  invoiceId?: string | null;\n}\n\nexport interface PlanReactivated {\n  /** Date and time of reactivation. */\n  operationTimeStamp?: Date | null;\n  /**\n   * Current app plan.\n   * @maxLength 100\n   */\n  vendorProductId?: string;\n  /** Selected payment cycle. */\n  cycle?: PaymentCycleWithLiterals;\n  /** Plan expiration date. */\n  expiresOn?: Date | null;\n  /**\n   * Invoice ID.\n   * @maxLength 50\n   */\n  invoiceId?: string | null;\n  /** Reason for reactivation. */\n  reason?: ReactivationReasonWithLiterals;\n}\n\nexport enum ReactivationReason {\n  /** Reactivation reason unknown. */\n  REACTIVATION_REASON_UNKNOWN = 'REACTIVATION_REASON_UNKNOWN',\n  /** The subscription's auto-renewal is turned on. */\n  AUTO_RENEW_TURNED_ON = 'AUTO_RENEW_TURNED_ON',\n}\n\n/** @enumType */\nexport type ReactivationReasonWithLiterals =\n  | ReactivationReason\n  | 'REACTIVATION_REASON_UNKNOWN'\n  | 'AUTO_RENEW_TURNED_ON';\n\nexport interface PlanConvertedToPaid {\n  /** Date and time of conversion to paid subscription (free-trial ended). */\n  operationTimeStamp?: Date | null;\n  /**\n   * Current app plan.\n   * @maxLength 100\n   */\n  vendorProductId?: string;\n  /** Selected payment cycle. */\n  cycle?: PaymentCycleWithLiterals;\n  /** Plan expiration date. */\n  expiresOn?: Date | null;\n}\n\nexport interface GetAppInstanceRequest {}\n\nexport interface GetAppInstanceResponse {\n  /** Retrieved app instance. */\n  instance?: AppInstance;\n  /** Information about the site. */\n  site?: SiteInfo;\n}\n\nexport interface SiteInfo {\n  /** Display name of the site. */\n  siteDisplayName?: string | null;\n  /**\n   * 2-letter language code of the site's locale in\n   * [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format.\n   */\n  locale?: string;\n  /**\n   * 3-letter currency code for the site's billing in\n   * [ISO-4217 alphabetic](https://en.wikipedia.org/wiki/ISO_4217#Active_codes) format.\n   */\n  paymentCurrency?: string;\n  /** Information about the site's supported languages. */\n  multilingual?: Multilingual;\n  /** URL of the site. Available only when the site has been published. */\n  url?: string | null;\n  /** Description of the site. */\n  description?: string | null;\n  /** Apps made by Wix that are installed on the site. */\n  installedWixApps?: string[];\n  /**\n   * > **Deprecation Notice:** This parameter will be removed on June 30, 2022. Use `ownerInfo` instead.\n   * @format EMAIL\n   * @deprecated\n   */\n  ownerEmail?: string | null;\n  /**\n   * Information about the site's Wix user. Available only when calling\n   * _Get App Instance_ with the __Read Site Owner Email__ permission scope.\n   */\n  ownerInfo?: OwnerInfo;\n  /** Site ID. */\n  siteId?: string;\n  /**\n   * Type of Wix user who owns the site.\n   * Available only when calling _Get App Instance_ with the __Read Site User Type__ permission scope.\n   * Supported values: `\"Channel DIY\"`, `\"Channel DIFM\"`, `\"Enterprise\"`.\n   */\n  siteUserType?: string | null;\n}\n\nexport interface Multilingual {\n  /** Whether the site supports more than a single language. */\n  isMultiLingual?: boolean;\n  /** List of supported languages. Returned only when `{\"isMultiLingual\": true}`. */\n  supportedLanguages?: SupportedLanguage[];\n}\n\nexport interface SupportedLanguage {\n  /** Two-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format. */\n  languageCode?: string;\n  /** Locale. */\n  locale?: Locale;\n  /** Whether the supported language is the primary language for the site. */\n  isPrimary?: boolean;\n  /** Language icon. */\n  countryCode?: string;\n  /** How the language will be resolved. For internal use. */\n  resolutionMethod?: ResolutionMethodWithLiterals;\n  /** Whether the supported language is the primary language for site visitors. */\n  isVisitorPrimary?: boolean | null;\n}\n\nexport interface Locale {\n  /** Two-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format. */\n  languageCode?: string;\n  /** Two-letter country code in [ISO-3166 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements) format. */\n  country?: string;\n}\n\nexport enum ResolutionMethod {\n  QUERY_PARAM = 'QUERY_PARAM',\n  SUBDOMAIN = 'SUBDOMAIN',\n  SUBDIRECTORY = 'SUBDIRECTORY',\n}\n\n/** @enumType */\nexport type ResolutionMethodWithLiterals =\n  | ResolutionMethod\n  | 'QUERY_PARAM'\n  | 'SUBDOMAIN'\n  | 'SUBDIRECTORY';\n\nexport interface OwnerInfo {\n  /**\n   * Wix user's email address. Identical to the their login email.\n   * @format EMAIL\n   */\n  email?: string;\n  /**\n   * Supported values: `VERIFIED_OPT_IN`, `VERIFIED_OPT_OUT`,\n   * `NOT_VERIFIED_OPT_IN`, `NOT_VERIFIED_OPT_OUT`.\n   *\n   * Whether the Wix user has verified their email and whether they have chosen\n   * to receive email notifications from Wix.\n   */\n  emailStatus?: string;\n}\n\nexport interface GetAppInstanceByInstanceIdRequest {\n  /**\n   * ID of the app instance to retrieve.\n   * @format GUID\n   */\n  instanceId?: 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 ambassadorWixDevcenterAppInstanceV1AppInstance from './devcenter-app-instance-v1-app-instance-app-instances.http.js';\nimport * as ambassadorWixDevcenterAppInstanceV1AppInstanceTypes from './devcenter-app-instance-v1-app-instance-app-instances.types.js';\nimport * as ambassadorWixDevcenterAppInstanceV1AppInstanceUniversalTypes from './devcenter-app-instance-v1-app-instance-app-instances.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 getAppInstance(): __PublicMethodMetaInfo<\n  'GET',\n  {},\n  ambassadorWixDevcenterAppInstanceV1AppInstanceUniversalTypes.GetAppInstanceRequest,\n  ambassadorWixDevcenterAppInstanceV1AppInstanceTypes.GetAppInstanceRequest,\n  ambassadorWixDevcenterAppInstanceV1AppInstanceUniversalTypes.GetAppInstanceResponse,\n  ambassadorWixDevcenterAppInstanceV1AppInstanceTypes.GetAppInstanceResponse\n> {\n  const payload = {} as any;\n\n  const getRequestOptions =\n    ambassadorWixDevcenterAppInstanceV1AppInstance.getAppInstance(payload);\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/instance',\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  AppInstance as AppInstanceOriginal,\n  BillingInfo as BillingInfoOriginal,\n  PaymentCycle as PaymentCycleOriginal,\n  PaymentCycleWithLiterals as PaymentCycleWithLiteralsOriginal,\n  FreeTrialInfo as FreeTrialInfoOriginal,\n  FreeTrialStatus as FreeTrialStatusOriginal,\n  FreeTrialStatusWithLiterals as FreeTrialStatusWithLiteralsOriginal,\n  AvailablePlan as AvailablePlanOriginal,\n  AppInstalled as AppInstalledOriginal,\n  AppRemoved as AppRemovedOriginal,\n  PaidPlanPurchased as PaidPlanPurchasedOriginal,\n  PaidPlanChanged as PaidPlanChangedOriginal,\n  PaidPlanAutoRenewalCancelled as PaidPlanAutoRenewalCancelledOriginal,\n  FreeTrialPeriod as FreeTrialPeriodOriginal,\n  FreeTrialPeriodWithLiterals as FreeTrialPeriodWithLiteralsOriginal,\n  PlanTransferred as PlanTransferredOriginal,\n  PlanReactivated as PlanReactivatedOriginal,\n  ReactivationReason as ReactivationReasonOriginal,\n  ReactivationReasonWithLiterals as ReactivationReasonWithLiteralsOriginal,\n  PlanConvertedToPaid as PlanConvertedToPaidOriginal,\n  GetAppInstanceRequest as GetAppInstanceRequestOriginal,\n  GetAppInstanceResponse as GetAppInstanceResponseOriginal,\n  SiteInfo as SiteInfoOriginal,\n  Multilingual as MultilingualOriginal,\n  SupportedLanguage as SupportedLanguageOriginal,\n  Locale as LocaleOriginal,\n  ResolutionMethod as ResolutionMethodOriginal,\n  ResolutionMethodWithLiterals as ResolutionMethodWithLiteralsOriginal,\n  OwnerInfo as OwnerInfoOriginal,\n  GetAppInstanceByInstanceIdRequest as GetAppInstanceByInstanceIdRequestOriginal,\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 './devcenter-app-instance-v1-app-instance-app-instances.types.js';\n"],"mappings":"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","names":["payload","PaymentCycle","FreeTrialStatus","FreeTrialPeriod","ReactivationReason","ResolutionMethod","WebhookIdentityType","getAppInstance"]}