@wix/auto_sdk_apps-installer_apps-installer 1.0.11 → 1.0.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../src/apps-v1-app-instance-apps-installer.universal.ts","../../../src/apps-v1-app-instance-apps-installer.http.ts"],"sourcesContent":["import { transformError as sdkTransformError } from '@wix/sdk-runtime/transform-error';\nimport {\n renameKeysFromSDKRequestToRESTRequest,\n renameKeysFromRESTResponseToSDKResponse,\n} from '@wix/sdk-runtime/rename-all-nested-keys';\nimport { HttpClient, NonNullablePaths } from '@wix/sdk-types';\nimport * as ambassadorWixAppsV1AppInstance from './apps-v1-app-instance-apps-installer.http.js';\n\nexport interface AppInstance {\n /**\n * App instance ID.\n * @format GUID\n * @readonly\n */\n _id?: string;\n /**\n * ID of the app to install.\n * @format GUID\n */\n appDefId?: string;\n /**\n * Version of the app to install.\n *\n * If you don't specify a version, the latest version of the app will be installed. Don't specify a version unless you want to install an older version of the app.\n */\n version?: string | null;\n /** Whether the app instance is enabled. */\n enabled?: boolean;\n /**\n * A signed access token of the Wix user and the app instance.\n * @readonly\n */\n appToken?: string | null;\n /**\n * Date and time the app instance was installed.\n * @readonly\n */\n installedDate?: Date | null;\n /**\n * Date and time the app instance was last updated.\n * @readonly\n */\n _updatedDate?: Date | null;\n}\n\nexport enum Status {\n /** Installation status is unknown. */\n UNKNOWN = 'UNKNOWN',\n /** Waiting for OAUTH authentication to complete installation. */\n WAITING_FOR_OAUTH = 'WAITING_FOR_OAUTH',\n /** App instance authenticated successfully. */\n AUTHENTICATED = 'AUTHENTICATED',\n /** Payment hasn't been completed and is required for access to the app. */\n DIDNT_COMPLETE_PAYMENT = 'DIDNT_COMPLETE_PAYMENT',\n}\n\n/** @enumType */\nexport type StatusWithLiterals =\n | Status\n | 'UNKNOWN'\n | 'WAITING_FOR_OAUTH'\n | 'AUTHENTICATED'\n | 'DIDNT_COMPLETE_PAYMENT';\n\nexport interface LegacyParams {\n /** Legacy int id */\n intId?: number | null;\n /**\n * Legacy source template id\n * @format GUID\n */\n sourceTemplateId?: string | null;\n}\n\nexport interface DevVersionInstallation {\n /**\n * ID of the override to assign to the development version.\n * @maxLength 50\n */\n overrideId?: string;\n}\n\nexport interface ListAppInstancesRequest {\n /** Tenant to fetch app instances for */\n tenant?: Tenant;\n}\n\nexport interface Tenant {\n /** Tenant ID. For a site, this is the [site ID](https://dev.wix.com/docs/rest/account-level/sites/sites/introduction). For an account this is the [account ID](https://dev.wix.com/docs/rest/account-level/user-management/accounts/accounts/about-accounts). */\n _id?: string;\n /** Tenant type. This can be a Wix site or account. */\n tenantType?: TenantTypeWithLiterals;\n}\n\nexport enum TenantType {\n SITE = 'SITE',\n ACCOUNT = 'ACCOUNT',\n}\n\n/** @enumType */\nexport type TenantTypeWithLiterals = TenantType | 'SITE' | 'ACCOUNT';\n\nexport interface ListAppInstancesResponse {\n /** List of installed app instances list for the specified tenant */\n appInstances?: AppInstance[];\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 entity?: string;\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 currentEntity?: string;\n}\n\nexport interface EntityDeletedEvent {\n /** Entity that was deleted. */\n deletedEntity?: string | null;\n}\n\nexport interface ActionEvent {\n body?: 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}\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 InstallDefaultAppsEvent {\n tenant?: Tenant;\n}\n\nexport interface Empty {}\n\nexport interface InstallAppRequest {\n /** Tenant details. */\n tenant: Tenant;\n /** Details of the app instance to create when the app is installed. */\n appInstance: AppInstance;\n}\n\nexport interface InstallAppResponse {\n /** The app instance created when the app was installed. */\n appInstance?: AppInstance;\n}\n\nexport interface AppInstalledOnTenant {\n /** Tenant details. */\n tenant?: Tenant;\n /** App instance details. */\n appInstance?: AppInstance;\n}\n\nexport interface BulkInstallAppRequest {\n /** Tenant details. */\n tenant: Tenant;\n /**\n * Details of the app instances to create when the apps are installed.\n * @maxSize 20\n */\n appInstances?: AppInstance[];\n}\n\n/** A list of possible additional fields to be included in the response. */\nexport enum RequestedFields {\n /** The requested field is unknown. */\n UNKNOWN_REQUESTED_FIELD = 'UNKNOWN_REQUESTED_FIELD',\n /** The client spec map. */\n CLIENT_SPEC_MAP = 'CLIENT_SPEC_MAP',\n}\n\n/** @enumType */\nexport type RequestedFieldsWithLiterals =\n | RequestedFields\n | 'UNKNOWN_REQUESTED_FIELD'\n | 'CLIENT_SPEC_MAP';\n\nexport interface BulkInstallAppResponse {\n /** Information and metadata about the app installations. */\n results?: BulkInstallAppResult[];\n /** Metadata about the bulk installation. */\n bulkActionMetadata?: BulkActionMetadata;\n}\n\nexport interface BulkInstallAppResult {\n /** Metadata about the app installation. */\n itemMetadata?: ItemMetadata;\n /** Details of the created app instance. */\n appInstance?: AppInstance;\n}\n\nexport interface ItemMetadata {\n /** Item ID. Should always be available, unless it's impossible (for example, when failing to create an item). */\n _id?: string | null;\n /** Index of the item within the request array. Allows for correlation between request and response items. */\n originalIndex?: number;\n /** Whether the requested action was successful for this item. When `false`, the `error` field is populated. */\n success?: boolean;\n /** Details about the error in case of failure. */\n error?: ApplicationError;\n}\n\nexport interface ApplicationError {\n /** Error code. */\n code?: string;\n /** Description of the error. */\n description?: string;\n /** Data related to the error. */\n data?: Record<string, any> | null;\n}\n\nexport interface BulkActionMetadata {\n /** Number of items that were successfully processed. */\n totalSuccesses?: number;\n /** Number of items that couldn't be processed. */\n totalFailures?: number;\n /** Number of failures without details because detailed failure threshold was exceeded. */\n undetailedFailures?: number;\n}\n\nexport interface ClientSpecMap {\n /** The Client Spec Map data. */\n data?: Record<number, ClientSpec>;\n}\n\n/**\n * ClientSpec is a merge of meta site and dev center data about application.\n *\n * This API is very old, but used a lot in editor and viewer.\n *\n * It represents a flatten hierarchy of subclasses of [com.wixpress.apps.dto.ClientSpec](https://github.com/wix-private/meta-site/blob/master/wix-meta-site-server/app-store-service/client-spec-map-api/src/main/scala/com/wixpress/apps/dto/ClientSpec.java).\n */\nexport interface ClientSpec {\n /** Possible values: editor, public, wixapps, appbuilder, sitemembers, siteextension, mobileapp, onboarding, metasite or ignored. */\n type?: string;\n /**\n * Deprecated. Represents so-called intId -- a \"position\" of the application in Site Pages (previously editor saved intId\n * instead of appDefId in pages to correlate with applications).\n */\n applicationId?: number;\n appDefinitionId?: string | null;\n instanceId?: string | null;\n state?: string | null;\n expirationDate?: string | null;\n /** This field will be deprecated in the future. It currently contains either the access token or the data token. */\n instance?: string | null;\n /** A OAuth access token for the application - provides API access. */\n accessToken?: string | null;\n /** A data token for the application - provides data about the application user. */\n dataToken?: string | null;\n /** MetaSiteClientSpec */\n metaSiteId?: string | null;\n /** deprecated */\n appDefId?: string | null;\n /** BaseTPAClientSpec */\n versionFailure?: string | null;\n appWorkerUrl?: string | null;\n appDefinitionName?: string | null;\n sectionDefaultPage?: string | null;\n sectionUrl?: string | null;\n widgets?: Record<string, Widget>;\n gluedWidgets?: Record<string, GluedWidget>;\n pixelUrl?: string | null;\n embeddedScriptUrl?: string | null;\n appRequirements?: TPAAppRequirements;\n sectionRefreshOnWidthChange?: boolean | null;\n sectionMobileUrl?: string | null;\n sectionPublished?: boolean | null;\n sectionMobilePublished?: boolean | null;\n sectionSeoEnabled?: boolean | null;\n /** TODO check serialization */\n isWixTPA?: boolean | null;\n installedAtDashboard?: boolean | null;\n permissions?: TPAPermissions;\n appFields?: any;\n version?: string | null;\n requiresEditorComponent?: boolean | null;\n editorPartDismissed?: boolean | null;\n openPremiumPage?: boolean | null;\n /** TPAEditorClientSpec */\n settingsUrl?: string | null;\n onboardingSettingsUrl?: string | null;\n dashboardUrl?: string | null;\n dashboardDefaultHeight?: number | null;\n settingsDialogBanner?: string | null;\n settingsCompanyName?: string | null;\n settingsWidth?: number | null;\n settingsHeight?: number | null;\n demoMode?: boolean | null;\n sectionSettings?: TPASettingsClientSpec;\n vendorProductId?: string | null;\n vendorProducts?: string[];\n preInstalled?: boolean | null;\n appType?: string | null;\n provisionOnSaveSite?: boolean | null;\n components?: any;\n /** WLAClientSpec */\n datastoreId?: string | null;\n originDatastoreId?: string | null;\n packageName?: string | null;\n /** SiteMembersClientSpec */\n smcollectionId?: string | null;\n collectionType?: string | null;\n collectionFormFace?: string | null;\n collectionExposure?: string | null;\n smtoken?: string | null;\n /** MobileAppClientSpec */\n name?: string | null;\n iconUrl?: string | null;\n /** OnboardingClientSpec */\n storyId?: string | null;\n inUse?: boolean | null;\n}\n\nexport interface Widget {\n /** BaseTPAClientWidget */\n widgetId?: string | null;\n widgetUrl?: string | null;\n tpaWidgetId?: string | null;\n refreshOnWidthChange?: boolean | null;\n mobileUrl?: string | null;\n appPage?: TPAAppPage;\n published?: boolean | null;\n mobilePublished?: boolean | null;\n seoEnabled?: boolean | null;\n preFetch?: boolean | null;\n shouldBeStretchedByDefault?: boolean | null;\n shouldBeStretchedByDefaultMobile?: boolean | null;\n gluedOptions?: GluedOptions;\n componentFields?: any;\n default?: boolean | null;\n /** TPAEditorClientWidget */\n defaultWidth?: number | null;\n defaultHeight?: number | null;\n defaultShowOnAllPages?: boolean | null;\n settings?: TPASettingsClientSpec;\n autoAddToSite?: boolean | null;\n defaultPosition?: TPAWidgetPosition;\n canBeStretched?: boolean | null;\n santaEditorPublished?: boolean | null;\n addOnlyOnce?: boolean | null;\n}\n\nexport interface TPAAppPage {\n _id?: string;\n name?: string;\n defaultPage?: string;\n hidden?: boolean;\n multiInstanceEnabled?: boolean | null;\n order?: number | null;\n indexable?: boolean | null;\n fullPage?: boolean | null;\n landingPageInMobile?: boolean | null;\n hideFromMenu?: boolean | null;\n}\n\nexport interface GluedOptions {\n placement?: string | null;\n verticalMargin?: number | null;\n horizontalMargin?: number | null;\n}\n\nexport interface TPASettingsClientSpec {\n height?: number;\n width?: number;\n url?: string | null;\n urlV2?: string | null;\n onboardingUrl?: string | null;\n abTest?: boolean | null;\n version?: number | null;\n}\n\nexport interface TPAWidgetPosition {\n region?: string;\n placement?: string;\n}\n\nexport interface GluedWidget {\n widgetId?: string | null;\n widgetUrl?: string | null;\n}\n\nexport interface TPAAppRequirements {\n requireSiteMembers?: boolean;\n}\n\nexport interface TPAPermissions {\n revoked?: boolean;\n}\n\nexport interface UninstallAppRequest {\n /** Tenant details. */\n tenant?: Tenant;\n /**\n * The ID of the app to install.\n * @format GUID\n */\n appDefId: string;\n}\n\nexport interface UninstallAppResponse {}\n\nexport interface BulkUninstallAppRequest {\n /** Tenant details. */\n tenant?: Tenant;\n /**\n * List of apps to be uninstalled.\n * @format GUID\n * @maxSize 20\n */\n appDefIds: string[];\n}\n\nexport interface BulkUninstallAppResponse {\n /** Information and metadata about the uninstalled apps. */\n results?: BulkUninstallAppResult[];\n /** Metadata about the bulk uninstallation. */\n bulkActionMetadata?: BulkActionMetadata;\n}\n\nexport interface BulkUninstallAppResult {\n /** Metadata about the uninstalled app instance. */\n itemMetadata?: ItemMetadata;\n /**\n * @format GUID\n * @deprecated\n * @replacedBy app_instance\n * @targetRemovalDate 2025-09-01\n */\n appDefId?: string;\n /** Details of the uninstalled app instance. */\n appInstance?: AppInstance;\n}\n\nexport interface InstallAppFromShareUrlRequest {\n /** Tenant details. */\n tenant: Tenant;\n /**\n * ID of the share URL to install the app from.\n *\n * To get the share URL of an app:\n *\n * 1. [Generate an install link](https://dev.wix.com/docs/build-apps/develop-your-app/app-dashboard-setup/share-your-app-with-an-install-link).\n *\n * 2. Click the link, which will redirect you to a page where you can install the app. The URL of this page is the share URL, and the string after `install/` in the URL is the share URL ID. For example, in the share URL `https://www.wix.com/app-market/install/8d5179a2-6d46-45b0-bcfa-64f479c6a2al`, the share URL ID is `8d5179a2-6d46-45b0-bcfa-64f479c6a2al`.\n * @format GUID\n */\n shareUrlId: string;\n /** Information about the development version of the app to install. Only relevant if the share URL refers to a development version of an app created in the Wix CLI. */\n devVersion?: DevVersionInstallation;\n}\n\nexport interface InstallAppFromShareUrlResponse {\n /** App instance created when the app was installed. */\n appInstance?: AppInstance;\n}\n\nexport interface IsPermittedToInstallAppsRequest\n extends IsPermittedToInstallAppsRequestOptionsOneOf {\n /** Install the app using app instance details. */\n appsInstallOptions?: AppsInstallOptions;\n /** Install an app using a share URL. */\n shareUrlInstallOptions?: ShareUrlInstallOptions;\n /** Installation type. */\n installType: InstallTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface IsPermittedToInstallAppsRequestOptionsOneOf {\n /** Install the app using app instance details. */\n appsInstallOptions?: AppsInstallOptions;\n /** Install an app using a share URL. */\n shareUrlInstallOptions?: ShareUrlInstallOptions;\n}\n\nexport enum InstallType {\n /** Installation type is unknown. */\n UNKNOWN_INSTALL_TYPE = 'UNKNOWN_INSTALL_TYPE',\n /** Installation based on app instance data provided in the request. */\n APPS_INSTALL = 'APPS_INSTALL',\n /** Installation based on a shareable app URL. */\n SHARE_URL_INSTALL = 'SHARE_URL_INSTALL',\n}\n\n/** @enumType */\nexport type InstallTypeWithLiterals =\n | InstallType\n | 'UNKNOWN_INSTALL_TYPE'\n | 'APPS_INSTALL'\n | 'SHARE_URL_INSTALL';\n\nexport interface AppsInstallOptions {\n /** Tenant details. */\n tenant?: Tenant;\n /**\n * Details of the app instances to create when the apps are installed.\n * @minSize 1\n * @maxSize 30\n */\n appInstances?: AppInstance[];\n}\n\nexport interface ShareUrlInstallOptions {\n /**\n * ID of the share URL to install the app from.\n * @format GUID\n */\n shareUrlId?: string;\n}\n\nexport interface IsPermittedToInstallAppsResponse {\n /** Whether the installation is permitted. */\n permitted?: boolean;\n}\n\nexport interface GetInstalledAppsRequest {}\n\nexport interface GetInstalledAppsResponse {\n /** The installed app instances */\n appInstances?: AppInstance[];\n}\n\n/** @docsIgnore */\nexport type InstallAppApplicationErrors =\n | {\n code?: 'DOMAIN_ENTITY_MISSING';\n description?: string;\n data?: Record<string, any>;\n }\n | {\n code?: 'UNSUPPORTED_TENANT_TYPE';\n description?: string;\n data?: Record<string, any>;\n }\n | {\n code?: 'INVALID_DEV_VERSION';\n description?: string;\n data?: Record<string, any>;\n }\n | {\n code?: 'ACCOUNT_INVALID_DEV_VERSION';\n description?: string;\n data?: Record<string, any>;\n };\n/** @docsIgnore */\nexport type BulkInstallAppApplicationErrors =\n | {\n code?: 'DOMAIN_ENTITY_MISSING';\n description?: string;\n data?: Record<string, any>;\n }\n | {\n code?: 'UNSUPPORTED_TENANT_TYPE';\n description?: string;\n data?: Record<string, any>;\n };\n/** @docsIgnore */\nexport type InstallAppFromShareUrlApplicationErrors =\n | {\n code?: 'UNSUPPORTED_TENANT_TYPE';\n description?: string;\n data?: Record<string, any>;\n }\n | {\n code?: 'SHARE_URL_IS_REVOKED';\n description?: string;\n data?: Record<string, any>;\n }\n | {\n code?: 'SHARE_URL_NOT_FOUND';\n description?: string;\n data?: Record<string, any>;\n };\n/** @docsIgnore */\nexport type IsPermittedToInstallAppsApplicationErrors = {\n code?: 'UNSUPPORTED_TENANT_TYPE';\n description?: string;\n data?: Record<string, any>;\n};\n\nexport interface BaseEventMetadata {\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}\n\nexport interface EventMetadata extends BaseEventMetadata {\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\nexport interface AppInstanceAppInstalledOnTenantEnvelope {\n data: AppInstalledOnTenant;\n metadata: EventMetadata;\n}\n\n/** @permissionId APPS_INSTALLER.INSTALL_SITE_LEVEL\n * @webhook\n * @eventType wix.apps.v1.app_instance_app_installed_on_tenant\n * @serviceIdentifier wix.devcenter.apps.installer.v1.AppsInstallerService\n * @slug app_installed_on_tenant\n */\nexport declare function onAppInstanceAppInstalledOnTenant(\n handler: (\n event: AppInstanceAppInstalledOnTenantEnvelope\n ) => void | Promise<void>\n): void;\n\n/**\n * <blockquote class=\"warning\">\n *\n * __Warning:__\n * By using this API to install 3rd-party apps, you acknowledge and agree that:\n *\n * - Some 3rd-party apps installed with this API may access, use, copy, change, or delete all your website's data, including your and your website visitors' and members' financial and personal information.\n * - Wix may not have reviewed the app, and can't guarantee their operation or that it will continue to function as described by the app developers.\n * - You may be sharing sensitive information with the app. Review the terms of use and privacy policies of any app you choose to install to understand how your data will be handled.\n * - You agree to the Wix App Market [terms of use](https://www.wix.com/about/app-market-terms).\n *\n * By installing any 3rd-party app through this API, you confirm your acceptance of all the above conditions.\n *\n * </blockquote>\n *\n * Installs an app on a tenant, specifying the details of the app instance to create.\n *\n * The ID of this app instance is automatically generated and included in the `appInstance` object in the response.\n * @param tenant - Tenant details.\n * @public\n * @requiredField options\n * @requiredField options.appInstance\n * @requiredField options.appInstance.appDefId\n * @requiredField tenant\n * @requiredField tenant._id\n * @permissionId APPS_INSTALLER.INSTALL_SITE_LEVEL\n * @permissionId APPS_INSTALLER.INSTALL_ACCOUNT_LEVEL\n * @fqn wix.devcenter.apps.installer.v1.AppsInstallerService.InstallApp\n */\nexport async function installApp(\n tenant: NonNullablePaths<Tenant, `_id`, 2>,\n options: NonNullablePaths<\n InstallAppOptions,\n `appInstance` | `appInstance.appDefId`,\n 3\n >\n): Promise<\n NonNullablePaths<\n InstallAppResponse,\n `appInstance._id` | `appInstance.appDefId` | `appInstance.enabled`,\n 3\n > & {\n __applicationErrorsType?: InstallAppApplicationErrors;\n }\n> {\n // @ts-ignore\n const { httpClient, sideEffects } = arguments[2] as {\n httpClient: HttpClient;\n sideEffects?: any;\n };\n\n const payload = renameKeysFromSDKRequestToRESTRequest({\n tenant: tenant,\n appInstance: options?.appInstance,\n });\n\n const reqOpts = ambassadorWixAppsV1AppInstance.installApp(payload);\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: {\n tenant: '$[0]',\n appInstance: '$[1].appInstance',\n },\n singleArgumentUnchanged: false,\n },\n ['tenant', 'options']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n\nexport interface InstallAppOptions {\n /** Details of the app instance to create when the app is installed. */\n appInstance: AppInstance;\n}\n\n/**\n * <blockquote class=\"warning\">\n *\n * __Warning:__\n * By using this API to install 3rd-party apps, you acknowledge and agree that:\n *\n * - Some 3rd-party apps installed with this API may access, use, copy, change, or delete all your website's data, including your and your website visitors' and members' financial and personal information.\n * - Wix may not have reviewed the app, and can't guarantee their operation or that it will continue to function as described by the app developers.\n * - You may be sharing sensitive information with the app. Review the terms of use and privacy policies of any app you choose to install to understand how your data will be handled.\n * - You agree to the Wix App Market [terms of use](https://www.wix.com/about/app-market-terms).\n *\n * By installing any 3rd-party app through this API, you confirm your acceptance of all the above conditions.\n *\n * </blockquote>\n *\n * Bulk installs apps on a tenant, specifying the details of the app instances to create.\n *\n * The IDs of these app instances are automatically generated and included in the `appInstance` objects in the response.\n * @param tenant - Tenant details.\n * @public\n * @requiredField tenant\n * @requiredField tenant._id\n * @permissionId APPS_INSTALLER.INSTALL_SITE_LEVEL\n * @permissionId APPS_INSTALLER.INSTALL_ACCOUNT_LEVEL\n * @fqn wix.devcenter.apps.installer.v1.AppsInstallerService.BulkInstallApp\n */\nexport async function bulkInstallApp(\n tenant: NonNullablePaths<Tenant, `_id`, 2>,\n options?: BulkInstallAppOptions\n): Promise<\n NonNullablePaths<\n BulkInstallAppResponse,\n | `results`\n | `results.${number}.itemMetadata.originalIndex`\n | `results.${number}.itemMetadata.success`\n | `results.${number}.itemMetadata.error.code`\n | `results.${number}.itemMetadata.error.description`\n | `results.${number}.appInstance._id`\n | `results.${number}.appInstance.appDefId`\n | `results.${number}.appInstance.enabled`\n | `bulkActionMetadata.totalSuccesses`\n | `bulkActionMetadata.totalFailures`\n | `bulkActionMetadata.undetailedFailures`,\n 6\n > & {\n __applicationErrorsType?: BulkInstallAppApplicationErrors;\n }\n> {\n // @ts-ignore\n const { httpClient, sideEffects } = arguments[2] as {\n httpClient: HttpClient;\n sideEffects?: any;\n };\n\n const payload = renameKeysFromSDKRequestToRESTRequest({\n tenant: tenant,\n appInstances: options?.appInstances,\n });\n\n const reqOpts = ambassadorWixAppsV1AppInstance.bulkInstallApp(payload);\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: {\n tenant: '$[0]',\n appInstances: '$[1].appInstances',\n },\n singleArgumentUnchanged: false,\n },\n ['tenant', 'options']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n\nexport interface BulkInstallAppOptions {\n /**\n * Details of the app instances to create when the apps are installed.\n * @maxSize 20\n */\n appInstances?: AppInstance[];\n}\n\n/**\n * Uninstalls an app from a tenant.\n *\n * This removes the instance of a specified app from the tenant.\n * @public\n * @requiredField options.appDefId\n * @permissionId APPS_INSTALLER.UNINSTALL_SITE_LEVEL\n * @permissionId APPS_INSTALLER.UNINSTALL_ACCOUNT_LEVEL\n * @fqn wix.devcenter.apps.installer.v1.AppsInstallerService.UninstallApp\n */\nexport async function uninstallApp(\n options?: NonNullablePaths<UninstallAppOptions, `appDefId`, 2>\n): Promise<void> {\n // @ts-ignore\n const { httpClient, sideEffects } = arguments[1] as {\n httpClient: HttpClient;\n sideEffects?: any;\n };\n\n const payload = renameKeysFromSDKRequestToRESTRequest({\n tenant: options?.tenant,\n appDefId: options?.appDefId,\n });\n\n const reqOpts = ambassadorWixAppsV1AppInstance.uninstallApp(payload);\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: {\n tenant: '$[0].tenant',\n appDefId: '$[0].appDefId',\n },\n singleArgumentUnchanged: false,\n },\n ['options']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n\nexport interface UninstallAppOptions {\n /** Tenant details. */\n tenant?: Tenant;\n /**\n * The ID of the app to install.\n * @format GUID\n */\n appDefId: string;\n}\n\n/**\n * Uninstalls apps from a tenant.\n *\n * This removes the instances of the specified apps from the tenant.\n * @public\n * @requiredField options.appDefIds\n * @permissionId APPS_INSTALLER.UNINSTALL_SITE_LEVEL\n * @permissionId APPS_INSTALLER.UNINSTALL_ACCOUNT_LEVEL\n * @fqn wix.devcenter.apps.installer.v1.AppsInstallerService.BulkUninstallApp\n */\nexport async function bulkUninstallApp(\n options?: NonNullablePaths<BulkUninstallAppOptions, `appDefIds`, 2>\n): Promise<\n NonNullablePaths<\n BulkUninstallAppResponse,\n | `results`\n | `results.${number}.itemMetadata.originalIndex`\n | `results.${number}.itemMetadata.success`\n | `results.${number}.itemMetadata.error.code`\n | `results.${number}.itemMetadata.error.description`\n | `results.${number}.appDefId`\n | `results.${number}.appInstance._id`\n | `results.${number}.appInstance.appDefId`\n | `results.${number}.appInstance.enabled`\n | `bulkActionMetadata.totalSuccesses`\n | `bulkActionMetadata.totalFailures`\n | `bulkActionMetadata.undetailedFailures`,\n 6\n >\n> {\n // @ts-ignore\n const { httpClient, sideEffects } = arguments[1] as {\n httpClient: HttpClient;\n sideEffects?: any;\n };\n\n const payload = renameKeysFromSDKRequestToRESTRequest({\n tenant: options?.tenant,\n appDefIds: options?.appDefIds,\n });\n\n const reqOpts = ambassadorWixAppsV1AppInstance.bulkUninstallApp(payload);\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: {\n tenant: '$[0].tenant',\n appDefIds: '$[0].appDefIds',\n },\n singleArgumentUnchanged: false,\n },\n ['options']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n\nexport interface BulkUninstallAppOptions {\n /** Tenant details. */\n tenant?: Tenant;\n /**\n * List of apps to be uninstalled.\n * @format GUID\n * @maxSize 20\n */\n appDefIds: string[];\n}\n\n/**\n * <blockquote class=\"warning\">\n *\n * __Warning:__\n * By using this API to install 3rd-party apps, you acknowledge and agree that:\n *\n * - Some 3rd-party apps installed with this API may access, use, copy, change, or delete all your website's data, including your and your website visitors' and members' financial and personal information.\n * - Wix may not have reviewed the app, and cannot guarantee their operation or that it will continue to function as described by the app developers.\n * - You may be sharing sensitive information with the app. Please review the terms of use and privacy policies of any app you choose to install to understand how your data will be handled.\n * - By utilizing this API, you agree to the Wix App Market [terms of use](https://www.wix.com/about/app-market-terms).\n *\n * By installing any 3rd-party app through this API, I confirm my acceptance of all the above conditions.\n *\n * </blockquote>\n *\n * Installs an app on a site using a share URL.\n * @param tenant - Tenant details.\n * @public\n * @requiredField options.shareUrlId\n * @requiredField tenant\n * @requiredField tenant._id\n * @permissionId APPS_INSTALLER.INSTALL_SITE_LEVEL\n * @permissionId APPS_INSTALLER.INSTALL_ACCOUNT_LEVEL\n * @fqn wix.devcenter.apps.installer.v1.AppsInstallerService.InstallAppFromShareUrl\n */\nexport async function installAppFromShareUrl(\n tenant: NonNullablePaths<Tenant, `_id`, 2>,\n options?: NonNullablePaths<InstallAppFromShareUrlOptions, `shareUrlId`, 2>\n): Promise<\n NonNullablePaths<\n InstallAppFromShareUrlResponse,\n `appInstance._id` | `appInstance.appDefId` | `appInstance.enabled`,\n 3\n > & {\n __applicationErrorsType?: InstallAppFromShareUrlApplicationErrors;\n }\n> {\n // @ts-ignore\n const { httpClient, sideEffects } = arguments[2] as {\n httpClient: HttpClient;\n sideEffects?: any;\n };\n\n const payload = renameKeysFromSDKRequestToRESTRequest({\n tenant: tenant,\n shareUrlId: options?.shareUrlId,\n devVersion: options?.devVersion,\n });\n\n const reqOpts =\n ambassadorWixAppsV1AppInstance.installAppFromShareUrl(payload);\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: {\n tenant: '$[0]',\n shareUrlId: '$[1].shareUrlId',\n devVersion: '$[1].devVersion',\n },\n singleArgumentUnchanged: false,\n },\n ['tenant', 'options']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n\nexport interface InstallAppFromShareUrlOptions {\n /**\n * ID of the share URL to install the app from.\n *\n * To get the share URL of an app:\n *\n * 1. [Generate an install link](https://dev.wix.com/docs/build-apps/develop-your-app/app-dashboard-setup/share-your-app-with-an-install-link).\n *\n * 2. Click the link, which will redirect you to a page where you can install the app. The URL of this page is the share URL, and the string after `install/` in the URL is the share URL ID. For example, in the share URL `https://www.wix.com/app-market/install/8d5179a2-6d46-45b0-bcfa-64f479c6a2al`, the share URL ID is `8d5179a2-6d46-45b0-bcfa-64f479c6a2al`.\n * @format GUID\n */\n shareUrlId: string;\n /** Information about the development version of the app to install. Only relevant if the share URL refers to a development version of an app created in the Wix CLI. */\n devVersion?: DevVersionInstallation;\n}\n\n/**\n * Returns whether it's possible to install an app on a tenant, either by providing app instance details or using a share URL.\n * @param installType - Installation type.\n * @public\n * @requiredField installType\n * @requiredField options\n * @requiredField options.options\n * @requiredField options.options.appsInstallOptions.tenant\n * @requiredField options.options.appsInstallOptions.tenant._id\n * @requiredField options.options.shareUrlInstallOptions.shareUrlId\n * @permissionId DEV_CENTER.WRITE_APP\n * @permissionId APPS_INSTALLER.INSTALL_SITE_LEVEL\n * @permissionId APPS_INSTALLER.INSTALL_ACCOUNT_LEVEL\n * @fqn wix.devcenter.apps.installer.v1.AppsInstallerService.IsPermittedToInstallApps\n */\nexport async function isPermittedToInstallApps(\n installType: InstallTypeWithLiterals,\n options: IsPermittedToInstallAppsOptions\n): Promise<\n NonNullablePaths<IsPermittedToInstallAppsResponse, `permitted`, 2> & {\n __applicationErrorsType?: IsPermittedToInstallAppsApplicationErrors;\n }\n> {\n // @ts-ignore\n const { httpClient, sideEffects } = arguments[2] as {\n httpClient: HttpClient;\n sideEffects?: any;\n };\n\n const payload = renameKeysFromSDKRequestToRESTRequest({\n installType: installType,\n appsInstallOptions: options?.appsInstallOptions,\n shareUrlInstallOptions: options?.shareUrlInstallOptions,\n });\n\n const reqOpts =\n ambassadorWixAppsV1AppInstance.isPermittedToInstallApps(payload);\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: {\n installType: '$[0]',\n appsInstallOptions: '$[1].appsInstallOptions',\n shareUrlInstallOptions: '$[1].shareUrlInstallOptions',\n },\n singleArgumentUnchanged: false,\n },\n ['installType', 'options']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n\nexport interface IsPermittedToInstallAppsOptions\n extends IsPermittedToInstallAppsOptionsOptionsOneOf {\n /** Install the app using app instance details. */\n appsInstallOptions?: AppsInstallOptions;\n /** Install an app using a share URL. */\n shareUrlInstallOptions?: ShareUrlInstallOptions;\n}\n\n/** @oneof */\nexport interface IsPermittedToInstallAppsOptionsOptionsOneOf {\n /** Install the app using app instance details. */\n appsInstallOptions?: AppsInstallOptions;\n /** Install an app using a share URL. */\n shareUrlInstallOptions?: ShareUrlInstallOptions;\n}\n\n/**\n * Returns the apps that are installed on the site in context\n * @public\n * @permissionId APP-MARKET.VIEW-INSTALLED-APP\n * @applicableIdentity APP\n * @fqn wix.devcenter.apps.installer.v1.AppsInstallerService.GetInstalledApps\n */\nexport async function getInstalledApps(): Promise<\n NonNullablePaths<\n GetInstalledAppsResponse,\n | `appInstances`\n | `appInstances.${number}._id`\n | `appInstances.${number}.appDefId`\n | `appInstances.${number}.enabled`,\n 4\n >\n> {\n // @ts-ignore\n const { httpClient, sideEffects } = arguments[0] as {\n httpClient: HttpClient;\n sideEffects?: any;\n };\n\n const payload = renameKeysFromSDKRequestToRESTRequest({});\n\n const reqOpts = ambassadorWixAppsV1AppInstance.getInstalledApps(payload);\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: {},\n singleArgumentUnchanged: false,\n },\n []\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n","import { toURLSearchParams } from '@wix/sdk-runtime/rest-modules';\nimport { transformRESTFloatToSDKFloat } from '@wix/sdk-runtime/transformations/float';\nimport { transformSDKTimestampToRESTTimestamp } from '@wix/sdk-runtime/transformations/timestamp';\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 resolveWixDevcenterAppsInstallerV1AppsInstallerServiceUrl(\n opts: Omit<ResolveUrlOpts, 'domainToMappings'>\n) {\n const domainToMappings = {\n 'manage._base_domain_': [\n {\n srcPath: '/apps-installer-service',\n destPath: '',\n },\n ],\n 'editor._base_domain_': [\n {\n srcPath: '/apps-installer-service',\n destPath: '',\n },\n ],\n 'blocks._base_domain_': [\n {\n srcPath: '/apps-installer-service',\n destPath: '',\n },\n ],\n 'create.editorx': [\n {\n srcPath: '/apps-installer-service',\n destPath: '',\n },\n ],\n 'dev._base_domain_': [\n {\n srcPath: '/apps-installer-service',\n destPath: '',\n },\n ],\n 'www.wixapis.com': [\n {\n srcPath: '/apps-installer-service',\n destPath: '',\n },\n ],\n '*.dev.wix-code.com': [\n {\n srcPath: '/apps/v1/app-instances',\n destPath: '',\n },\n ],\n _: [\n {\n srcPath: '/apps/v1/app-instances',\n destPath: '',\n },\n ],\n 'bo._base_domain_': [\n {\n srcPath: '/_api/apps-installer-service',\n destPath: '',\n },\n ],\n 'wixbo.ai': [\n {\n srcPath: '/_api/apps-installer-service',\n destPath: '',\n },\n ],\n 'wix-bo.com': [\n {\n srcPath: '/_api/apps-installer-service',\n destPath: '',\n },\n ],\n 'vibe._base_domain_': [\n {\n srcPath: '/_api/apps-installer-service',\n destPath: '',\n },\n ],\n };\n\n return resolveUrl(Object.assign(opts, { domainToMappings }));\n}\n\nconst PACKAGE_NAME = '@wix/auto_sdk_apps-installer_apps-installer';\n\n/**\n * <blockquote class=\"warning\">\n *\n * __Warning:__\n * By using this API to install 3rd-party apps, you acknowledge and agree that:\n *\n * - Some 3rd-party apps installed with this API may access, use, copy, change, or delete all your website's data, including your and your website visitors' and members' financial and personal information.\n * - Wix may not have reviewed the app, and can't guarantee their operation or that it will continue to function as described by the app developers.\n * - You may be sharing sensitive information with the app. Review the terms of use and privacy policies of any app you choose to install to understand how your data will be handled.\n * - You agree to the Wix App Market [terms of use](https://www.wix.com/about/app-market-terms).\n *\n * By installing any 3rd-party app through this API, you confirm your acceptance of all the above conditions.\n *\n * </blockquote>\n *\n * Installs an app on a tenant, specifying the details of the app instance to create.\n *\n * The ID of this app instance is automatically generated and included in the `appInstance` object in the response.\n */\nexport function installApp(payload: object): RequestOptionsFactory<any> {\n function __installApp({ host }: any) {\n const serializedData = transformPaths(payload, [\n {\n transformFn: transformSDKTimestampToRESTTimestamp,\n paths: [\n { path: 'appInstance.installedDate' },\n { path: 'appInstance.updatedDate' },\n ],\n },\n ]);\n const metadata = {\n entityFqdn: 'wix.apps.v1.app_instance',\n method: 'POST' as any,\n methodFqn:\n 'wix.devcenter.apps.installer.v1.AppsInstallerService.InstallApp',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixDevcenterAppsInstallerV1AppsInstallerServiceUrl({\n protoPath: '/v1/app-instance/install',\n data: serializedData,\n host,\n }),\n data: serializedData,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'appInstance.installedDate' },\n { path: 'appInstance.updatedDate' },\n { path: 'dependenciesInstallation.installedDate' },\n { path: 'dependenciesInstallation.updatedDate' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __installApp;\n}\n\n/**\n * <blockquote class=\"warning\">\n *\n * __Warning:__\n * By using this API to install 3rd-party apps, you acknowledge and agree that:\n *\n * - Some 3rd-party apps installed with this API may access, use, copy, change, or delete all your website's data, including your and your website visitors' and members' financial and personal information.\n * - Wix may not have reviewed the app, and can't guarantee their operation or that it will continue to function as described by the app developers.\n * - You may be sharing sensitive information with the app. Review the terms of use and privacy policies of any app you choose to install to understand how your data will be handled.\n * - You agree to the Wix App Market [terms of use](https://www.wix.com/about/app-market-terms).\n *\n * By installing any 3rd-party app through this API, you confirm your acceptance of all the above conditions.\n *\n * </blockquote>\n *\n * Bulk installs apps on a tenant, specifying the details of the app instances to create.\n *\n * The IDs of these app instances are automatically generated and included in the `appInstance` objects in the response.\n */\nexport function bulkInstallApp(payload: object): RequestOptionsFactory<any> {\n function __bulkInstallApp({ host }: any) {\n const serializedData = transformPaths(payload, [\n {\n transformFn: transformSDKTimestampToRESTTimestamp,\n paths: [\n { path: 'appInstances.installedDate' },\n { path: 'appInstances.updatedDate' },\n ],\n },\n ]);\n const metadata = {\n entityFqdn: 'wix.apps.v1.app_instance',\n method: 'POST' as any,\n methodFqn:\n 'wix.devcenter.apps.installer.v1.AppsInstallerService.BulkInstallApp',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixDevcenterAppsInstallerV1AppsInstallerServiceUrl({\n protoPath: '/v1/bulk/app-instance/install',\n data: serializedData,\n host,\n }),\n data: serializedData,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'results.appInstance.installedDate' },\n { path: 'results.appInstance.updatedDate' },\n ],\n },\n {\n transformFn: transformRESTFloatToSDKFloat,\n paths: [\n {\n path: 'clientSpecMap.data.widgets.*.gluedOptions.verticalMargin',\n },\n {\n path: 'clientSpecMap.data.widgets.*.gluedOptions.horizontalMargin',\n },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __bulkInstallApp;\n}\n\n/**\n * Uninstalls an app from a tenant.\n *\n * This removes the instance of a specified app from the tenant.\n */\nexport function uninstallApp(payload: object): RequestOptionsFactory<any> {\n function __uninstallApp({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.apps.v1.app_instance',\n method: 'POST' as any,\n methodFqn:\n 'wix.devcenter.apps.installer.v1.AppsInstallerService.UninstallApp',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixDevcenterAppsInstallerV1AppsInstallerServiceUrl({\n protoPath: '/v1/app-instance/uninstall',\n data: payload,\n host,\n }),\n data: payload,\n };\n\n return metadata;\n }\n\n return __uninstallApp;\n}\n\n/**\n * Uninstalls apps from a tenant.\n *\n * This removes the instances of the specified apps from the tenant.\n */\nexport function bulkUninstallApp(payload: object): RequestOptionsFactory<any> {\n function __bulkUninstallApp({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.apps.v1.app_instance',\n method: 'POST' as any,\n methodFqn:\n 'wix.devcenter.apps.installer.v1.AppsInstallerService.BulkUninstallApp',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixDevcenterAppsInstallerV1AppsInstallerServiceUrl({\n protoPath: '/v1/bulk/app-instance/uninstall',\n data: payload,\n host,\n }),\n data: payload,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'results.appInstance.installedDate' },\n { path: 'results.appInstance.updatedDate' },\n ],\n },\n {\n transformFn: transformRESTFloatToSDKFloat,\n paths: [\n {\n path: 'clientSpecMap.data.widgets.*.gluedOptions.verticalMargin',\n },\n {\n path: 'clientSpecMap.data.widgets.*.gluedOptions.horizontalMargin',\n },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __bulkUninstallApp;\n}\n\n/**\n * <blockquote class=\"warning\">\n *\n * __Warning:__\n * By using this API to install 3rd-party apps, you acknowledge and agree that:\n *\n * - Some 3rd-party apps installed with this API may access, use, copy, change, or delete all your website's data, including your and your website visitors' and members' financial and personal information.\n * - Wix may not have reviewed the app, and cannot guarantee their operation or that it will continue to function as described by the app developers.\n * - You may be sharing sensitive information with the app. Please review the terms of use and privacy policies of any app you choose to install to understand how your data will be handled.\n * - By utilizing this API, you agree to the Wix App Market [terms of use](https://www.wix.com/about/app-market-terms).\n *\n * By installing any 3rd-party app through this API, I confirm my acceptance of all the above conditions.\n *\n * </blockquote>\n *\n * Installs an app on a site using a share URL.\n */\nexport function installAppFromShareUrl(\n payload: object\n): RequestOptionsFactory<any> {\n function __installAppFromShareUrl({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.apps.v1.app_instance',\n method: 'POST' as any,\n methodFqn:\n 'wix.devcenter.apps.installer.v1.AppsInstallerService.InstallAppFromShareUrl',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixDevcenterAppsInstallerV1AppsInstallerServiceUrl({\n protoPath: '/v1/app-share-url/install',\n data: payload,\n host,\n }),\n data: payload,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'appInstance.installedDate' },\n { path: 'appInstance.updatedDate' },\n { path: 'dependenciesInstallation.installedDate' },\n { path: 'dependenciesInstallation.updatedDate' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __installAppFromShareUrl;\n}\n\n/** Returns whether it's possible to install an app on a tenant, either by providing app instance details or using a share URL. */\nexport function isPermittedToInstallApps(\n payload: object\n): RequestOptionsFactory<any> {\n function __isPermittedToInstallApps({ host }: any) {\n const serializedData = transformPaths(payload, [\n {\n transformFn: transformSDKTimestampToRESTTimestamp,\n paths: [\n { path: 'appsInstallOptions.appInstances.installedDate' },\n { path: 'appsInstallOptions.appInstances.updatedDate' },\n ],\n },\n ]);\n const metadata = {\n entityFqdn: 'wix.apps.v1.app_instance',\n method: 'POST' as any,\n methodFqn:\n 'wix.devcenter.apps.installer.v1.AppsInstallerService.IsPermittedToInstallApps',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixDevcenterAppsInstallerV1AppsInstallerServiceUrl({\n protoPath: '/v1/app-instance/is-permitted-to-install',\n data: serializedData,\n host,\n }),\n data: serializedData,\n };\n\n return metadata;\n }\n\n return __isPermittedToInstallApps;\n}\n\n/** Returns the apps that are installed on the site in context */\nexport function getInstalledApps(payload: object): RequestOptionsFactory<any> {\n function __getInstalledApps({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.apps.v1.app_instance',\n method: 'GET' as any,\n methodFqn:\n 'wix.devcenter.apps.installer.v1.AppsInstallerService.GetInstalledApps',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixDevcenterAppsInstallerV1AppsInstallerServiceUrl({\n protoPath: '/v1/app-instances',\n data: payload,\n host,\n }),\n params: toURLSearchParams(payload),\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'appInstances.installedDate' },\n { path: 'appInstances.updatedDate' },\n ],\n },\n ]),\n fallback: [\n {\n method: 'GET' as any,\n url: resolveWixDevcenterAppsInstallerV1AppsInstallerServiceUrl({\n protoPath: '/v1/app-instances',\n data: payload,\n host,\n }),\n params: toURLSearchParams(payload),\n },\n ],\n };\n\n return metadata;\n }\n\n return __getInstalledApps;\n}\n"],"mappings":";AAAA,SAAS,kBAAkB,yBAAyB;AACpD;AAAA,EACE;AAAA,EACA;AAAA,OACK;;;ACJP,SAAS,yBAAyB;AAClC,SAAS,oCAAoC;AAC7C,SAAS,4CAA4C;AACrD,SAAS,4CAA4C;AACrD,SAAS,sBAAsB;AAC/B,SAAS,kBAAkB;AAI3B,SAAS,0DACP,MACA;AACA,QAAM,mBAAmB;AAAA,IACvB,wBAAwB;AAAA,MACtB;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,IACA,wBAAwB;AAAA,MACtB;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,IACA,wBAAwB;AAAA,MACtB;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,IACA,kBAAkB;AAAA,MAChB;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,IACA,qBAAqB;AAAA,MACnB;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,IACA,mBAAmB;AAAA,MACjB;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,IACA,sBAAsB;AAAA,MACpB;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,IACA,GAAG;AAAA,MACD;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,IACA,oBAAoB;AAAA,MAClB;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,IACA,YAAY;AAAA,MACV;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,IACA,cAAc;AAAA,MACZ;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,IACA,sBAAsB;AAAA,MACpB;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;AAqBd,SAAS,WAAW,SAA6C;AACtE,WAAS,aAAa,EAAE,KAAK,GAAQ;AACnC,UAAM,iBAAiB,eAAe,SAAS;AAAA,MAC7C;AAAA,QACE,aAAa;AAAA,QACb,OAAO;AAAA,UACL,EAAE,MAAM,4BAA4B;AAAA,UACpC,EAAE,MAAM,0BAA0B;AAAA,QACpC;AAAA,MACF;AAAA,IACF,CAAC;AACD,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,0DAA0D;AAAA,QAC7D,WAAW;AAAA,QACX,MAAM;AAAA,QACN;AAAA,MACF,CAAC;AAAA,MACD,MAAM;AAAA,MACN,mBAAmB,CAACA,aAClB,eAAeA,UAAS;AAAA,QACtB;AAAA,UACE,aAAa;AAAA,UACb,OAAO;AAAA,YACL,EAAE,MAAM,4BAA4B;AAAA,YACpC,EAAE,MAAM,0BAA0B;AAAA,YAClC,EAAE,MAAM,yCAAyC;AAAA,YACjD,EAAE,MAAM,uCAAuC;AAAA,UACjD;AAAA,QACF;AAAA,MACF,CAAC;AAAA,IACL;AAEA,WAAO;AAAA,EACT;AAEA,SAAO;AACT;AAqBO,SAAS,eAAe,SAA6C;AAC1E,WAAS,iBAAiB,EAAE,KAAK,GAAQ;AACvC,UAAM,iBAAiB,eAAe,SAAS;AAAA,MAC7C;AAAA,QACE,aAAa;AAAA,QACb,OAAO;AAAA,UACL,EAAE,MAAM,6BAA6B;AAAA,UACrC,EAAE,MAAM,2BAA2B;AAAA,QACrC;AAAA,MACF;AAAA,IACF,CAAC;AACD,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,0DAA0D;AAAA,QAC7D,WAAW;AAAA,QACX,MAAM;AAAA,QACN;AAAA,MACF,CAAC;AAAA,MACD,MAAM;AAAA,MACN,mBAAmB,CAACA,aAClB,eAAeA,UAAS;AAAA,QACtB;AAAA,UACE,aAAa;AAAA,UACb,OAAO;AAAA,YACL,EAAE,MAAM,oCAAoC;AAAA,YAC5C,EAAE,MAAM,kCAAkC;AAAA,UAC5C;AAAA,QACF;AAAA,QACA;AAAA,UACE,aAAa;AAAA,UACb,OAAO;AAAA,YACL;AAAA,cACE,MAAM;AAAA,YACR;AAAA,YACA;AAAA,cACE,MAAM;AAAA,YACR;AAAA,UACF;AAAA,QACF;AAAA,MACF,CAAC;AAAA,IACL;AAEA,WAAO;AAAA,EACT;AAEA,SAAO;AACT;AAOO,SAAS,aAAa,SAA6C;AACxE,WAAS,eAAe,EAAE,KAAK,GAAQ;AACrC,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,0DAA0D;AAAA,QAC7D,WAAW;AAAA,QACX,MAAM;AAAA,QACN;AAAA,MACF,CAAC;AAAA,MACD,MAAM;AAAA,IACR;AAEA,WAAO;AAAA,EACT;AAEA,SAAO;AACT;AAOO,SAAS,iBAAiB,SAA6C;AAC5E,WAAS,mBAAmB,EAAE,KAAK,GAAQ;AACzC,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,0DAA0D;AAAA,QAC7D,WAAW;AAAA,QACX,MAAM;AAAA,QACN;AAAA,MACF,CAAC;AAAA,MACD,MAAM;AAAA,MACN,mBAAmB,CAACA,aAClB,eAAeA,UAAS;AAAA,QACtB;AAAA,UACE,aAAa;AAAA,UACb,OAAO;AAAA,YACL,EAAE,MAAM,oCAAoC;AAAA,YAC5C,EAAE,MAAM,kCAAkC;AAAA,UAC5C;AAAA,QACF;AAAA,QACA;AAAA,UACE,aAAa;AAAA,UACb,OAAO;AAAA,YACL;AAAA,cACE,MAAM;AAAA,YACR;AAAA,YACA;AAAA,cACE,MAAM;AAAA,YACR;AAAA,UACF;AAAA,QACF;AAAA,MACF,CAAC;AAAA,IACL;AAEA,WAAO;AAAA,EACT;AAEA,SAAO;AACT;AAmBO,SAAS,uBACd,SAC4B;AAC5B,WAAS,yBAAyB,EAAE,KAAK,GAAQ;AAC/C,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,0DAA0D;AAAA,QAC7D,WAAW;AAAA,QACX,MAAM;AAAA,QACN;AAAA,MACF,CAAC;AAAA,MACD,MAAM;AAAA,MACN,mBAAmB,CAACA,aAClB,eAAeA,UAAS;AAAA,QACtB;AAAA,UACE,aAAa;AAAA,UACb,OAAO;AAAA,YACL,EAAE,MAAM,4BAA4B;AAAA,YACpC,EAAE,MAAM,0BAA0B;AAAA,YAClC,EAAE,MAAM,yCAAyC;AAAA,YACjD,EAAE,MAAM,uCAAuC;AAAA,UACjD;AAAA,QACF;AAAA,MACF,CAAC;AAAA,IACL;AAEA,WAAO;AAAA,EACT;AAEA,SAAO;AACT;AAGO,SAAS,yBACd,SAC4B;AAC5B,WAAS,2BAA2B,EAAE,KAAK,GAAQ;AACjD,UAAM,iBAAiB,eAAe,SAAS;AAAA,MAC7C;AAAA,QACE,aAAa;AAAA,QACb,OAAO;AAAA,UACL,EAAE,MAAM,gDAAgD;AAAA,UACxD,EAAE,MAAM,8CAA8C;AAAA,QACxD;AAAA,MACF;AAAA,IACF,CAAC;AACD,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,0DAA0D;AAAA,QAC7D,WAAW;AAAA,QACX,MAAM;AAAA,QACN;AAAA,MACF,CAAC;AAAA,MACD,MAAM;AAAA,IACR;AAEA,WAAO;AAAA,EACT;AAEA,SAAO;AACT;AAGO,SAAS,iBAAiB,SAA6C;AAC5E,WAAS,mBAAmB,EAAE,KAAK,GAAQ;AACzC,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,0DAA0D;AAAA,QAC7D,WAAW;AAAA,QACX,MAAM;AAAA,QACN;AAAA,MACF,CAAC;AAAA,MACD,QAAQ,kBAAkB,OAAO;AAAA,MACjC,mBAAmB,CAACA,aAClB,eAAeA,UAAS;AAAA,QACtB;AAAA,UACE,aAAa;AAAA,UACb,OAAO;AAAA,YACL,EAAE,MAAM,6BAA6B;AAAA,YACrC,EAAE,MAAM,2BAA2B;AAAA,UACrC;AAAA,QACF;AAAA,MACF,CAAC;AAAA,MACH,UAAU;AAAA,QACR;AAAA,UACE,QAAQ;AAAA,UACR,KAAK,0DAA0D;AAAA,YAC7D,WAAW;AAAA,YACX,MAAM;AAAA,YACN;AAAA,UACF,CAAC;AAAA,UACD,QAAQ,kBAAkB,OAAO;AAAA,QACnC;AAAA,MACF;AAAA,IACF;AAEA,WAAO;AAAA,EACT;AAEA,SAAO;AACT;;;ADrZO,IAAK,SAAL,kBAAKC,YAAL;AAEL,EAAAA,QAAA,aAAU;AAEV,EAAAA,QAAA,uBAAoB;AAEpB,EAAAA,QAAA,mBAAgB;AAEhB,EAAAA,QAAA,4BAAyB;AARf,SAAAA;AAAA,GAAA;AAiDL,IAAK,aAAL,kBAAKC,gBAAL;AACL,EAAAA,YAAA,UAAO;AACP,EAAAA,YAAA,aAAU;AAFA,SAAAA;AAAA,GAAA;AAoJL,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;AAqDL,IAAK,kBAAL,kBAAKC,qBAAL;AAEL,EAAAA,iBAAA,6BAA0B;AAE1B,EAAAA,iBAAA,qBAAkB;AAJR,SAAAA;AAAA,GAAA;AAuTL,IAAK,cAAL,kBAAKC,iBAAL;AAEL,EAAAA,aAAA,0BAAuB;AAEvB,EAAAA,aAAA,kBAAe;AAEf,EAAAA,aAAA,uBAAoB;AANV,SAAAA;AAAA,GAAA;AAqMZ,eAAsBC,YACpB,QACA,SAaA;AAEA,QAAM,EAAE,YAAY,YAAY,IAAI,UAAU,CAAC;AAK/C,QAAM,UAAU,sCAAsC;AAAA,IACpD;AAAA,IACA,aAAa,SAAS;AAAA,EACxB,CAAC;AAED,QAAM,UAAyC,WAAW,OAAO;AAEjE,eAAa,aAAa;AAC1B,MAAI;AACF,UAAM,SAAS,MAAM,WAAW,QAAQ,OAAO;AAC/C,iBAAa,YAAY,MAAM;AAE/B,WAAO,wCAAwC,OAAO,IAAI;AAAA,EAC5D,SAAS,KAAU;AACjB,UAAM,mBAAmB;AAAA,MACvB;AAAA,MACA;AAAA,QACE,wBAAwB,CAAC;AAAA,QACzB,0BAA0B;AAAA,UACxB,QAAQ;AAAA,UACR,aAAa;AAAA,QACf;AAAA,QACA,yBAAyB;AAAA,MAC3B;AAAA,MACA,CAAC,UAAU,SAAS;AAAA,IACtB;AACA,iBAAa,UAAU,GAAG;AAE1B,UAAM;AAAA,EACR;AACF;AAiCA,eAAsBC,gBACpB,QACA,SAmBA;AAEA,QAAM,EAAE,YAAY,YAAY,IAAI,UAAU,CAAC;AAK/C,QAAM,UAAU,sCAAsC;AAAA,IACpD;AAAA,IACA,cAAc,SAAS;AAAA,EACzB,CAAC;AAED,QAAM,UAAyC,eAAe,OAAO;AAErE,eAAa,aAAa;AAC1B,MAAI;AACF,UAAM,SAAS,MAAM,WAAW,QAAQ,OAAO;AAC/C,iBAAa,YAAY,MAAM;AAE/B,WAAO,wCAAwC,OAAO,IAAI;AAAA,EAC5D,SAAS,KAAU;AACjB,UAAM,mBAAmB;AAAA,MACvB;AAAA,MACA;AAAA,QACE,wBAAwB,CAAC;AAAA,QACzB,0BAA0B;AAAA,UACxB,QAAQ;AAAA,UACR,cAAc;AAAA,QAChB;AAAA,QACA,yBAAyB;AAAA,MAC3B;AAAA,MACA,CAAC,UAAU,SAAS;AAAA,IACtB;AACA,iBAAa,UAAU,GAAG;AAE1B,UAAM;AAAA,EACR;AACF;AAoBA,eAAsBC,cACpB,SACe;AAEf,QAAM,EAAE,YAAY,YAAY,IAAI,UAAU,CAAC;AAK/C,QAAM,UAAU,sCAAsC;AAAA,IACpD,QAAQ,SAAS;AAAA,IACjB,UAAU,SAAS;AAAA,EACrB,CAAC;AAED,QAAM,UAAyC,aAAa,OAAO;AAEnE,eAAa,aAAa;AAC1B,MAAI;AACF,UAAM,SAAS,MAAM,WAAW,QAAQ,OAAO;AAC/C,iBAAa,YAAY,MAAM;AAAA,EACjC,SAAS,KAAU;AACjB,UAAM,mBAAmB;AAAA,MACvB;AAAA,MACA;AAAA,QACE,wBAAwB,CAAC;AAAA,QACzB,0BAA0B;AAAA,UACxB,QAAQ;AAAA,UACR,UAAU;AAAA,QACZ;AAAA,QACA,yBAAyB;AAAA,MAC3B;AAAA,MACA,CAAC,SAAS;AAAA,IACZ;AACA,iBAAa,UAAU,GAAG;AAE1B,UAAM;AAAA,EACR;AACF;AAsBA,eAAsBC,kBACpB,SAkBA;AAEA,QAAM,EAAE,YAAY,YAAY,IAAI,UAAU,CAAC;AAK/C,QAAM,UAAU,sCAAsC;AAAA,IACpD,QAAQ,SAAS;AAAA,IACjB,WAAW,SAAS;AAAA,EACtB,CAAC;AAED,QAAM,UAAyC,iBAAiB,OAAO;AAEvE,eAAa,aAAa;AAC1B,MAAI;AACF,UAAM,SAAS,MAAM,WAAW,QAAQ,OAAO;AAC/C,iBAAa,YAAY,MAAM;AAE/B,WAAO,wCAAwC,OAAO,IAAI;AAAA,EAC5D,SAAS,KAAU;AACjB,UAAM,mBAAmB;AAAA,MACvB;AAAA,MACA;AAAA,QACE,wBAAwB,CAAC;AAAA,QACzB,0BAA0B;AAAA,UACxB,QAAQ;AAAA,UACR,WAAW;AAAA,QACb;AAAA,QACA,yBAAyB;AAAA,MAC3B;AAAA,MACA,CAAC,SAAS;AAAA,IACZ;AACA,iBAAa,UAAU,GAAG;AAE1B,UAAM;AAAA,EACR;AACF;AAsCA,eAAsBC,wBACpB,QACA,SASA;AAEA,QAAM,EAAE,YAAY,YAAY,IAAI,UAAU,CAAC;AAK/C,QAAM,UAAU,sCAAsC;AAAA,IACpD;AAAA,IACA,YAAY,SAAS;AAAA,IACrB,YAAY,SAAS;AAAA,EACvB,CAAC;AAED,QAAM,UAC2B,uBAAuB,OAAO;AAE/D,eAAa,aAAa;AAC1B,MAAI;AACF,UAAM,SAAS,MAAM,WAAW,QAAQ,OAAO;AAC/C,iBAAa,YAAY,MAAM;AAE/B,WAAO,wCAAwC,OAAO,IAAI;AAAA,EAC5D,SAAS,KAAU;AACjB,UAAM,mBAAmB;AAAA,MACvB;AAAA,MACA;AAAA,QACE,wBAAwB,CAAC;AAAA,QACzB,0BAA0B;AAAA,UACxB,QAAQ;AAAA,UACR,YAAY;AAAA,UACZ,YAAY;AAAA,QACd;AAAA,QACA,yBAAyB;AAAA,MAC3B;AAAA,MACA,CAAC,UAAU,SAAS;AAAA,IACtB;AACA,iBAAa,UAAU,GAAG;AAE1B,UAAM;AAAA,EACR;AACF;AAiCA,eAAsBC,0BACpB,aACA,SAKA;AAEA,QAAM,EAAE,YAAY,YAAY,IAAI,UAAU,CAAC;AAK/C,QAAM,UAAU,sCAAsC;AAAA,IACpD;AAAA,IACA,oBAAoB,SAAS;AAAA,IAC7B,wBAAwB,SAAS;AAAA,EACnC,CAAC;AAED,QAAM,UAC2B,yBAAyB,OAAO;AAEjE,eAAa,aAAa;AAC1B,MAAI;AACF,UAAM,SAAS,MAAM,WAAW,QAAQ,OAAO;AAC/C,iBAAa,YAAY,MAAM;AAE/B,WAAO,wCAAwC,OAAO,IAAI;AAAA,EAC5D,SAAS,KAAU;AACjB,UAAM,mBAAmB;AAAA,MACvB;AAAA,MACA;AAAA,QACE,wBAAwB,CAAC;AAAA,QACzB,0BAA0B;AAAA,UACxB,aAAa;AAAA,UACb,oBAAoB;AAAA,UACpB,wBAAwB;AAAA,QAC1B;AAAA,QACA,yBAAyB;AAAA,MAC3B;AAAA,MACA,CAAC,eAAe,SAAS;AAAA,IAC3B;AACA,iBAAa,UAAU,GAAG;AAE1B,UAAM;AAAA,EACR;AACF;AAyBA,eAAsBC,oBASpB;AAEA,QAAM,EAAE,YAAY,YAAY,IAAI,UAAU,CAAC;AAK/C,QAAM,UAAU,sCAAsC,CAAC,CAAC;AAExD,QAAM,UAAyC,iBAAiB,OAAO;AAEvE,eAAa,aAAa;AAC1B,MAAI;AACF,UAAM,SAAS,MAAM,WAAW,QAAQ,OAAO;AAC/C,iBAAa,YAAY,MAAM;AAE/B,WAAO,wCAAwC,OAAO,IAAI;AAAA,EAC5D,SAAS,KAAU;AACjB,UAAM,mBAAmB;AAAA,MACvB;AAAA,MACA;AAAA,QACE,wBAAwB,CAAC;AAAA,QACzB,0BAA0B,CAAC;AAAA,QAC3B,yBAAyB;AAAA,MAC3B;AAAA,MACA,CAAC;AAAA,IACH;AACA,iBAAa,UAAU,GAAG;AAE1B,UAAM;AAAA,EACR;AACF;","names":["payload","Status","TenantType","WebhookIdentityType","RequestedFields","InstallType","installApp","bulkInstallApp","uninstallApp","bulkUninstallApp","installAppFromShareUrl","isPermittedToInstallApps","getInstalledApps"]}
1
+ {"version":3,"sources":["../../../src/apps-v1-app-instance-apps-installer.universal.ts","../../../src/apps-v1-app-instance-apps-installer.http.ts"],"sourcesContent":["import { transformError as sdkTransformError } from '@wix/sdk-runtime/transform-error';\nimport {\n renameKeysFromSDKRequestToRESTRequest,\n renameKeysFromRESTResponseToSDKResponse,\n} from '@wix/sdk-runtime/rename-all-nested-keys';\nimport { HttpClient, NonNullablePaths } from '@wix/sdk-types';\nimport * as ambassadorWixAppsV1AppInstance from './apps-v1-app-instance-apps-installer.http.js';\n\nexport interface AppInstance {\n /**\n * App instance ID.\n * @format GUID\n * @readonly\n */\n _id?: string;\n /**\n * ID of the app to install.\n * @format GUID\n */\n appDefId?: string;\n /**\n * Version of the app to install.\n *\n * If you don't specify a version, the latest version of the app will be installed. Don't specify a version unless you want to install an older version of the app.\n */\n version?: string | null;\n /** Whether the app instance is enabled. */\n enabled?: boolean;\n /**\n * A signed access token of the Wix user and the app instance.\n * @readonly\n */\n appToken?: string | null;\n /**\n * Date and time the app instance was installed.\n * @readonly\n */\n installedDate?: Date | null;\n /**\n * Date and time the app instance was last updated.\n * @readonly\n */\n _updatedDate?: Date | null;\n}\n\nexport enum Status {\n /** Installation status is unknown. */\n UNKNOWN = 'UNKNOWN',\n /** Waiting for OAUTH authentication to complete installation. */\n WAITING_FOR_OAUTH = 'WAITING_FOR_OAUTH',\n /** App instance authenticated successfully. */\n AUTHENTICATED = 'AUTHENTICATED',\n /** Payment hasn't been completed and is required for access to the app. */\n DIDNT_COMPLETE_PAYMENT = 'DIDNT_COMPLETE_PAYMENT',\n}\n\n/** @enumType */\nexport type StatusWithLiterals =\n | Status\n | 'UNKNOWN'\n | 'WAITING_FOR_OAUTH'\n | 'AUTHENTICATED'\n | 'DIDNT_COMPLETE_PAYMENT';\n\nexport interface LegacyParams {\n /** Legacy int id */\n intId?: number | null;\n /**\n * Legacy source template id\n * @format GUID\n */\n sourceTemplateId?: string | null;\n}\n\nexport interface DevVersionInstallation {\n /**\n * ID of the override to assign to the development version.\n * @maxLength 50\n */\n overrideId?: string;\n}\n\nexport interface ListAppInstancesRequest {\n /** Tenant to fetch app instances for */\n tenant?: Tenant;\n}\n\nexport interface Tenant {\n /** Tenant ID. For a site, this is the [site ID](https://dev.wix.com/docs/rest/account-level/sites/sites/introduction). For an account this is the [account ID](https://dev.wix.com/docs/rest/account-level/user-management/accounts/accounts/about-accounts). */\n _id?: string;\n /** Tenant type. This can be a Wix site or account. */\n tenantType?: TenantTypeWithLiterals;\n}\n\nexport enum TenantType {\n SITE = 'SITE',\n ACCOUNT = 'ACCOUNT',\n}\n\n/** @enumType */\nexport type TenantTypeWithLiterals = TenantType | 'SITE' | 'ACCOUNT';\n\nexport interface ListAppInstancesResponse {\n /** List of installed app instances list for the specified tenant */\n appInstances?: AppInstance[];\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 entity?: string;\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 currentEntity?: string;\n}\n\nexport interface EntityDeletedEvent {\n /** Entity that was deleted. */\n deletedEntity?: string | null;\n}\n\nexport interface ActionEvent {\n body?: 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}\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 InstallDefaultAppsEvent {\n tenant?: Tenant;\n}\n\nexport interface Empty {}\n\nexport interface InstallAppRequest {\n /** Tenant details. */\n tenant: Tenant;\n /** Details of the app instance to create when the app is installed. */\n appInstance: AppInstance;\n}\n\nexport interface InstallAppResponse {\n /** The app instance created when the app was installed. */\n appInstance?: AppInstance;\n}\n\nexport interface AppInstalledOnTenant {\n /** Tenant details. */\n tenant?: Tenant;\n /** App instance details. */\n appInstance?: AppInstance;\n}\n\nexport interface BulkInstallAppRequest {\n /** Tenant details. */\n tenant: Tenant;\n /**\n * Details of the app instances to create when the apps are installed.\n * @maxSize 20\n */\n appInstances?: AppInstance[];\n}\n\n/** A list of possible additional fields to be included in the response. */\nexport enum RequestedFields {\n /** The requested field is unknown. */\n UNKNOWN_REQUESTED_FIELD = 'UNKNOWN_REQUESTED_FIELD',\n /** The client spec map. */\n CLIENT_SPEC_MAP = 'CLIENT_SPEC_MAP',\n}\n\n/** @enumType */\nexport type RequestedFieldsWithLiterals =\n | RequestedFields\n | 'UNKNOWN_REQUESTED_FIELD'\n | 'CLIENT_SPEC_MAP';\n\nexport interface BulkInstallAppResponse {\n /** Information and metadata about the app installations. */\n results?: BulkInstallAppResult[];\n /** Metadata about the bulk installation. */\n bulkActionMetadata?: BulkActionMetadata;\n}\n\nexport interface BulkInstallAppResult {\n /** Metadata about the app installation. */\n itemMetadata?: ItemMetadata;\n /** Details of the created app instance. */\n appInstance?: AppInstance;\n}\n\nexport interface ItemMetadata {\n /** Item ID. Should always be available, unless it's impossible (for example, when failing to create an item). */\n _id?: string | null;\n /** Index of the item within the request array. Allows for correlation between request and response items. */\n originalIndex?: number;\n /** Whether the requested action was successful for this item. When `false`, the `error` field is populated. */\n success?: boolean;\n /** Details about the error in case of failure. */\n error?: ApplicationError;\n}\n\nexport interface ApplicationError {\n /** Error code. */\n code?: string;\n /** Description of the error. */\n description?: string;\n /** Data related to the error. */\n data?: Record<string, any> | null;\n}\n\nexport interface BulkActionMetadata {\n /** Number of items that were successfully processed. */\n totalSuccesses?: number;\n /** Number of items that couldn't be processed. */\n totalFailures?: number;\n /** Number of failures without details because detailed failure threshold was exceeded. */\n undetailedFailures?: number;\n}\n\nexport interface ClientSpecMap {\n /** The Client Spec Map data. */\n data?: Record<number, ClientSpec>;\n}\n\n/**\n * ClientSpec is a merge of meta site and dev center data about application.\n *\n * This API is very old, but used a lot in editor and viewer.\n *\n * It represents a flatten hierarchy of subclasses of [com.wixpress.apps.dto.ClientSpec](https://github.com/wix-private/meta-site/blob/master/wix-meta-site-server/app-store-service/client-spec-map-api/src/main/scala/com/wixpress/apps/dto/ClientSpec.java).\n */\nexport interface ClientSpec {\n /** Possible values: editor, public, wixapps, appbuilder, sitemembers, siteextension, mobileapp, onboarding, metasite or ignored. */\n type?: string;\n /**\n * Deprecated. Represents so-called intId -- a \"position\" of the application in Site Pages (previously editor saved intId\n * instead of appDefId in pages to correlate with applications).\n */\n applicationId?: number;\n appDefinitionId?: string | null;\n instanceId?: string | null;\n state?: string | null;\n expirationDate?: string | null;\n /** This field will be deprecated in the future. It currently contains either the access token or the data token. */\n instance?: string | null;\n /** A OAuth access token for the application - provides API access. */\n accessToken?: string | null;\n /** A data token for the application - provides data about the application user. */\n dataToken?: string | null;\n /** MetaSiteClientSpec */\n metaSiteId?: string | null;\n /** deprecated */\n appDefId?: string | null;\n /** BaseTPAClientSpec */\n versionFailure?: string | null;\n appWorkerUrl?: string | null;\n appDefinitionName?: string | null;\n sectionDefaultPage?: string | null;\n sectionUrl?: string | null;\n widgets?: Record<string, Widget>;\n gluedWidgets?: Record<string, GluedWidget>;\n pixelUrl?: string | null;\n embeddedScriptUrl?: string | null;\n appRequirements?: TPAAppRequirements;\n sectionRefreshOnWidthChange?: boolean | null;\n sectionMobileUrl?: string | null;\n sectionPublished?: boolean | null;\n sectionMobilePublished?: boolean | null;\n sectionSeoEnabled?: boolean | null;\n /** TODO check serialization */\n isWixTPA?: boolean | null;\n installedAtDashboard?: boolean | null;\n permissions?: TPAPermissions;\n appFields?: any;\n version?: string | null;\n requiresEditorComponent?: boolean | null;\n editorPartDismissed?: boolean | null;\n openPremiumPage?: boolean | null;\n /** TPAEditorClientSpec */\n settingsUrl?: string | null;\n onboardingSettingsUrl?: string | null;\n dashboardUrl?: string | null;\n dashboardDefaultHeight?: number | null;\n settingsDialogBanner?: string | null;\n settingsCompanyName?: string | null;\n settingsWidth?: number | null;\n settingsHeight?: number | null;\n demoMode?: boolean | null;\n sectionSettings?: TPASettingsClientSpec;\n vendorProductId?: string | null;\n vendorProducts?: string[];\n preInstalled?: boolean | null;\n appType?: string | null;\n provisionOnSaveSite?: boolean | null;\n components?: any;\n /** WLAClientSpec */\n datastoreId?: string | null;\n originDatastoreId?: string | null;\n packageName?: string | null;\n /** SiteMembersClientSpec */\n smcollectionId?: string | null;\n collectionType?: string | null;\n collectionFormFace?: string | null;\n collectionExposure?: string | null;\n smtoken?: string | null;\n /** MobileAppClientSpec */\n name?: string | null;\n iconUrl?: string | null;\n /** OnboardingClientSpec */\n storyId?: string | null;\n inUse?: boolean | null;\n}\n\nexport interface Widget {\n /** BaseTPAClientWidget */\n widgetId?: string | null;\n widgetUrl?: string | null;\n tpaWidgetId?: string | null;\n refreshOnWidthChange?: boolean | null;\n mobileUrl?: string | null;\n appPage?: TPAAppPage;\n published?: boolean | null;\n mobilePublished?: boolean | null;\n seoEnabled?: boolean | null;\n preFetch?: boolean | null;\n shouldBeStretchedByDefault?: boolean | null;\n shouldBeStretchedByDefaultMobile?: boolean | null;\n gluedOptions?: GluedOptions;\n componentFields?: any;\n default?: boolean | null;\n /** TPAEditorClientWidget */\n defaultWidth?: number | null;\n defaultHeight?: number | null;\n defaultShowOnAllPages?: boolean | null;\n settings?: TPASettingsClientSpec;\n autoAddToSite?: boolean | null;\n defaultPosition?: TPAWidgetPosition;\n canBeStretched?: boolean | null;\n santaEditorPublished?: boolean | null;\n addOnlyOnce?: boolean | null;\n}\n\nexport interface TPAAppPage {\n _id?: string;\n name?: string;\n defaultPage?: string;\n hidden?: boolean;\n multiInstanceEnabled?: boolean | null;\n order?: number | null;\n indexable?: boolean | null;\n fullPage?: boolean | null;\n landingPageInMobile?: boolean | null;\n hideFromMenu?: boolean | null;\n}\n\nexport interface GluedOptions {\n placement?: string | null;\n verticalMargin?: number | null;\n horizontalMargin?: number | null;\n}\n\nexport interface TPASettingsClientSpec {\n height?: number;\n width?: number;\n url?: string | null;\n urlV2?: string | null;\n onboardingUrl?: string | null;\n abTest?: boolean | null;\n version?: number | null;\n}\n\nexport interface TPAWidgetPosition {\n region?: string;\n placement?: string;\n}\n\nexport interface GluedWidget {\n widgetId?: string | null;\n widgetUrl?: string | null;\n}\n\nexport interface TPAAppRequirements {\n requireSiteMembers?: boolean;\n}\n\nexport interface TPAPermissions {\n revoked?: boolean;\n}\n\nexport interface UninstallAppRequest {\n /** Tenant details. */\n tenant?: Tenant;\n /**\n * The ID of the app to install.\n * @format GUID\n */\n appDefId: string;\n}\n\nexport interface UninstallAppResponse {}\n\nexport interface BulkUninstallAppRequest {\n /** Tenant details. */\n tenant?: Tenant;\n /**\n * List of apps to be uninstalled.\n * @format GUID\n * @maxSize 20\n */\n appDefIds: string[];\n}\n\nexport interface BulkUninstallAppResponse {\n /** Information and metadata about the uninstalled apps. */\n results?: BulkUninstallAppResult[];\n /** Metadata about the bulk uninstallation. */\n bulkActionMetadata?: BulkActionMetadata;\n}\n\nexport interface BulkUninstallAppResult {\n /** Metadata about the uninstalled app instance. */\n itemMetadata?: ItemMetadata;\n /**\n * @format GUID\n * @deprecated\n * @replacedBy app_instance\n * @targetRemovalDate 2025-09-01\n */\n appDefId?: string;\n /** Details of the uninstalled app instance. */\n appInstance?: AppInstance;\n}\n\nexport interface InstallAppFromShareUrlRequest {\n /** Tenant details. */\n tenant: Tenant;\n /**\n * ID of the share URL to install the app from.\n *\n * To get the share URL of an app:\n *\n * 1. [Generate an install link](https://dev.wix.com/docs/build-apps/develop-your-app/app-dashboard-setup/share-your-app-with-an-install-link).\n *\n * 2. Click the link, which will redirect you to a page where you can install the app. The URL of this page is the share URL, and the string after `install/` in the URL is the share URL ID. For example, in the share URL `https://www.wix.com/app-market/install/8d5179a2-6d46-45b0-bcfa-64f479c6a2al`, the share URL ID is `8d5179a2-6d46-45b0-bcfa-64f479c6a2al`.\n * @format GUID\n */\n shareUrlId: string;\n /** Information about the development version of the app to install. Only relevant if the share URL refers to a development version of an app created in the Wix CLI. */\n devVersion?: DevVersionInstallation;\n}\n\nexport interface InstallAppFromShareUrlResponse {\n /** App instance created when the app was installed. */\n appInstance?: AppInstance;\n}\n\nexport interface IsPermittedToInstallAppsRequest\n extends IsPermittedToInstallAppsRequestOptionsOneOf {\n /** Install the app using app instance details. */\n appsInstallOptions?: AppsInstallOptions;\n /** Install an app using a share URL. */\n shareUrlInstallOptions?: ShareUrlInstallOptions;\n /** Installation type. */\n installType: InstallTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface IsPermittedToInstallAppsRequestOptionsOneOf {\n /** Install the app using app instance details. */\n appsInstallOptions?: AppsInstallOptions;\n /** Install an app using a share URL. */\n shareUrlInstallOptions?: ShareUrlInstallOptions;\n}\n\nexport enum InstallType {\n /** Installation type is unknown. */\n UNKNOWN_INSTALL_TYPE = 'UNKNOWN_INSTALL_TYPE',\n /** Installation based on app instance data provided in the request. */\n APPS_INSTALL = 'APPS_INSTALL',\n /** Installation based on a shareable app URL. */\n SHARE_URL_INSTALL = 'SHARE_URL_INSTALL',\n}\n\n/** @enumType */\nexport type InstallTypeWithLiterals =\n | InstallType\n | 'UNKNOWN_INSTALL_TYPE'\n | 'APPS_INSTALL'\n | 'SHARE_URL_INSTALL';\n\nexport interface AppsInstallOptions {\n /** Tenant details. */\n tenant?: Tenant;\n /**\n * Details of the app instances to create when the apps are installed.\n * @minSize 1\n * @maxSize 30\n */\n appInstances?: AppInstance[];\n}\n\nexport interface ShareUrlInstallOptions {\n /**\n * ID of the share URL to install the app from.\n * @format GUID\n */\n shareUrlId?: string;\n}\n\nexport interface IsPermittedToInstallAppsResponse {\n /** Whether the installation is permitted. */\n permitted?: boolean;\n}\n\nexport interface GetInstalledAppsRequest {}\n\nexport interface GetInstalledAppsResponse {\n /** The installed app instances */\n appInstances?: AppInstance[];\n}\n\nexport interface AccountDetails {\n /**\n * ID of the account.\n * @format GUID\n */\n accountId?: string | null;\n /**\n * ID of the parent account.\n * @format GUID\n */\n parentAccountId?: string | null;\n /**\n * ID of the site, if applicable.\n * @format GUID\n */\n siteId?: string | null;\n}\n\n/** @docsIgnore */\nexport type InstallAppApplicationErrors =\n | {\n code?: 'DOMAIN_ENTITY_MISSING';\n description?: string;\n data?: Record<string, any>;\n }\n | {\n code?: 'UNSUPPORTED_TENANT_TYPE';\n description?: string;\n data?: Record<string, any>;\n }\n | {\n code?: 'INVALID_DEV_VERSION';\n description?: string;\n data?: Record<string, any>;\n }\n | {\n code?: 'ACCOUNT_INVALID_DEV_VERSION';\n description?: string;\n data?: Record<string, any>;\n };\n/** @docsIgnore */\nexport type BulkInstallAppApplicationErrors =\n | {\n code?: 'DOMAIN_ENTITY_MISSING';\n description?: string;\n data?: Record<string, any>;\n }\n | {\n code?: 'UNSUPPORTED_TENANT_TYPE';\n description?: string;\n data?: Record<string, any>;\n };\n/** @docsIgnore */\nexport type InstallAppFromShareUrlApplicationErrors =\n | {\n code?: 'UNSUPPORTED_TENANT_TYPE';\n description?: string;\n data?: Record<string, any>;\n }\n | {\n code?: 'SHARE_URL_IS_REVOKED';\n description?: string;\n data?: Record<string, any>;\n }\n | {\n code?: 'SHARE_URL_NOT_FOUND';\n description?: string;\n data?: Record<string, any>;\n };\n/** @docsIgnore */\nexport type IsPermittedToInstallAppsApplicationErrors = {\n code?: 'UNSUPPORTED_TENANT_TYPE';\n description?: string;\n data?: Record<string, any>;\n};\n\nexport interface BaseEventMetadata {\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}\n\nexport interface EventMetadata extends BaseEventMetadata {\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\nexport interface AppInstanceAppInstalledOnTenantEnvelope {\n data: AppInstalledOnTenant;\n metadata: EventMetadata;\n}\n\n/** @permissionId APPS_INSTALLER.INSTALL_SITE_LEVEL\n * @webhook\n * @eventType wix.apps.v1.app_instance_app_installed_on_tenant\n * @serviceIdentifier wix.devcenter.apps.installer.v1.AppsInstallerService\n * @slug app_installed_on_tenant\n */\nexport declare function onAppInstanceAppInstalledOnTenant(\n handler: (\n event: AppInstanceAppInstalledOnTenantEnvelope\n ) => void | Promise<void>\n): void;\n\n/**\n * <blockquote class=\"warning\">\n *\n * __Warning:__\n * By using this API to install 3rd-party apps, you acknowledge and agree that:\n *\n * - Some 3rd-party apps installed with this API may access, use, copy, change, or delete all your website's data, including your and your website visitors' and members' financial and personal information.\n * - Wix may not have reviewed the app, and can't guarantee their operation or that it will continue to function as described by the app developers.\n * - You may be sharing sensitive information with the app. Review the terms of use and privacy policies of any app you choose to install to understand how your data will be handled.\n * - You agree to the Wix App Market [terms of use](https://www.wix.com/about/app-market-terms).\n *\n * By installing any 3rd-party app through this API, you confirm your acceptance of all the above conditions.\n *\n * </blockquote>\n *\n * Installs an app on a tenant, specifying the details of the app instance to create.\n *\n * The ID of this app instance is automatically generated and included in the `appInstance` object in the response.\n * @param tenant - Tenant details.\n * @public\n * @requiredField options\n * @requiredField options.appInstance\n * @requiredField options.appInstance.appDefId\n * @requiredField tenant\n * @requiredField tenant._id\n * @permissionId APPS_INSTALLER.INSTALL_SITE_LEVEL\n * @permissionId APPS_INSTALLER.INSTALL_ACCOUNT_LEVEL\n * @fqn wix.devcenter.apps.installer.v1.AppsInstallerService.InstallApp\n */\nexport async function installApp(\n tenant: NonNullablePaths<Tenant, `_id`, 2>,\n options: NonNullablePaths<\n InstallAppOptions,\n `appInstance` | `appInstance.appDefId`,\n 3\n >\n): Promise<\n NonNullablePaths<\n InstallAppResponse,\n `appInstance._id` | `appInstance.appDefId` | `appInstance.enabled`,\n 3\n > & {\n __applicationErrorsType?: InstallAppApplicationErrors;\n }\n> {\n // @ts-ignore\n const { httpClient, sideEffects } = arguments[2] as {\n httpClient: HttpClient;\n sideEffects?: any;\n };\n\n const payload = renameKeysFromSDKRequestToRESTRequest({\n tenant: tenant,\n appInstance: options?.appInstance,\n });\n\n const reqOpts = ambassadorWixAppsV1AppInstance.installApp(payload);\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: {\n tenant: '$[0]',\n appInstance: '$[1].appInstance',\n },\n singleArgumentUnchanged: false,\n },\n ['tenant', 'options']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n\nexport interface InstallAppOptions {\n /** Details of the app instance to create when the app is installed. */\n appInstance: AppInstance;\n}\n\n/**\n * <blockquote class=\"warning\">\n *\n * __Warning:__\n * By using this API to install 3rd-party apps, you acknowledge and agree that:\n *\n * - Some 3rd-party apps installed with this API may access, use, copy, change, or delete all your website's data, including your and your website visitors' and members' financial and personal information.\n * - Wix may not have reviewed the app, and can't guarantee their operation or that it will continue to function as described by the app developers.\n * - You may be sharing sensitive information with the app. Review the terms of use and privacy policies of any app you choose to install to understand how your data will be handled.\n * - You agree to the Wix App Market [terms of use](https://www.wix.com/about/app-market-terms).\n *\n * By installing any 3rd-party app through this API, you confirm your acceptance of all the above conditions.\n *\n * </blockquote>\n *\n * Bulk installs apps on a tenant, specifying the details of the app instances to create.\n *\n * The IDs of these app instances are automatically generated and included in the `appInstance` objects in the response.\n * @param tenant - Tenant details.\n * @public\n * @requiredField tenant\n * @requiredField tenant._id\n * @permissionId APPS_INSTALLER.INSTALL_SITE_LEVEL\n * @permissionId APPS_INSTALLER.INSTALL_ACCOUNT_LEVEL\n * @fqn wix.devcenter.apps.installer.v1.AppsInstallerService.BulkInstallApp\n */\nexport async function bulkInstallApp(\n tenant: NonNullablePaths<Tenant, `_id`, 2>,\n options?: BulkInstallAppOptions\n): Promise<\n NonNullablePaths<\n BulkInstallAppResponse,\n | `results`\n | `results.${number}.itemMetadata.originalIndex`\n | `results.${number}.itemMetadata.success`\n | `results.${number}.itemMetadata.error.code`\n | `results.${number}.itemMetadata.error.description`\n | `results.${number}.appInstance._id`\n | `results.${number}.appInstance.appDefId`\n | `results.${number}.appInstance.enabled`\n | `bulkActionMetadata.totalSuccesses`\n | `bulkActionMetadata.totalFailures`\n | `bulkActionMetadata.undetailedFailures`,\n 6\n > & {\n __applicationErrorsType?: BulkInstallAppApplicationErrors;\n }\n> {\n // @ts-ignore\n const { httpClient, sideEffects } = arguments[2] as {\n httpClient: HttpClient;\n sideEffects?: any;\n };\n\n const payload = renameKeysFromSDKRequestToRESTRequest({\n tenant: tenant,\n appInstances: options?.appInstances,\n });\n\n const reqOpts = ambassadorWixAppsV1AppInstance.bulkInstallApp(payload);\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: {\n tenant: '$[0]',\n appInstances: '$[1].appInstances',\n },\n singleArgumentUnchanged: false,\n },\n ['tenant', 'options']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n\nexport interface BulkInstallAppOptions {\n /**\n * Details of the app instances to create when the apps are installed.\n * @maxSize 20\n */\n appInstances?: AppInstance[];\n}\n\n/**\n * Uninstalls an app from a tenant.\n *\n * This removes the instance of a specified app from the tenant.\n * @public\n * @requiredField options.appDefId\n * @permissionId APPS_INSTALLER.UNINSTALL_SITE_LEVEL\n * @permissionId APPS_INSTALLER.UNINSTALL_ACCOUNT_LEVEL\n * @fqn wix.devcenter.apps.installer.v1.AppsInstallerService.UninstallApp\n */\nexport async function uninstallApp(\n options?: NonNullablePaths<UninstallAppOptions, `appDefId`, 2>\n): Promise<void> {\n // @ts-ignore\n const { httpClient, sideEffects } = arguments[1] as {\n httpClient: HttpClient;\n sideEffects?: any;\n };\n\n const payload = renameKeysFromSDKRequestToRESTRequest({\n tenant: options?.tenant,\n appDefId: options?.appDefId,\n });\n\n const reqOpts = ambassadorWixAppsV1AppInstance.uninstallApp(payload);\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: {\n tenant: '$[0].tenant',\n appDefId: '$[0].appDefId',\n },\n singleArgumentUnchanged: false,\n },\n ['options']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n\nexport interface UninstallAppOptions {\n /** Tenant details. */\n tenant?: Tenant;\n /**\n * The ID of the app to install.\n * @format GUID\n */\n appDefId: string;\n}\n\n/**\n * Uninstalls apps from a tenant.\n *\n * This removes the instances of the specified apps from the tenant.\n * @public\n * @requiredField options.appDefIds\n * @permissionId APPS_INSTALLER.UNINSTALL_SITE_LEVEL\n * @permissionId APPS_INSTALLER.UNINSTALL_ACCOUNT_LEVEL\n * @fqn wix.devcenter.apps.installer.v1.AppsInstallerService.BulkUninstallApp\n */\nexport async function bulkUninstallApp(\n options?: NonNullablePaths<BulkUninstallAppOptions, `appDefIds`, 2>\n): Promise<\n NonNullablePaths<\n BulkUninstallAppResponse,\n | `results`\n | `results.${number}.itemMetadata.originalIndex`\n | `results.${number}.itemMetadata.success`\n | `results.${number}.itemMetadata.error.code`\n | `results.${number}.itemMetadata.error.description`\n | `results.${number}.appDefId`\n | `results.${number}.appInstance._id`\n | `results.${number}.appInstance.appDefId`\n | `results.${number}.appInstance.enabled`\n | `bulkActionMetadata.totalSuccesses`\n | `bulkActionMetadata.totalFailures`\n | `bulkActionMetadata.undetailedFailures`,\n 6\n >\n> {\n // @ts-ignore\n const { httpClient, sideEffects } = arguments[1] as {\n httpClient: HttpClient;\n sideEffects?: any;\n };\n\n const payload = renameKeysFromSDKRequestToRESTRequest({\n tenant: options?.tenant,\n appDefIds: options?.appDefIds,\n });\n\n const reqOpts = ambassadorWixAppsV1AppInstance.bulkUninstallApp(payload);\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: {\n tenant: '$[0].tenant',\n appDefIds: '$[0].appDefIds',\n },\n singleArgumentUnchanged: false,\n },\n ['options']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n\nexport interface BulkUninstallAppOptions {\n /** Tenant details. */\n tenant?: Tenant;\n /**\n * List of apps to be uninstalled.\n * @format GUID\n * @maxSize 20\n */\n appDefIds: string[];\n}\n\n/**\n * <blockquote class=\"warning\">\n *\n * __Warning:__\n * By using this API to install 3rd-party apps, you acknowledge and agree that:\n *\n * - Some 3rd-party apps installed with this API may access, use, copy, change, or delete all your website's data, including your and your website visitors' and members' financial and personal information.\n * - Wix may not have reviewed the app, and cannot guarantee their operation or that it will continue to function as described by the app developers.\n * - You may be sharing sensitive information with the app. Please review the terms of use and privacy policies of any app you choose to install to understand how your data will be handled.\n * - By utilizing this API, you agree to the Wix App Market [terms of use](https://www.wix.com/about/app-market-terms).\n *\n * By installing any 3rd-party app through this API, I confirm my acceptance of all the above conditions.\n *\n * </blockquote>\n *\n * Installs an app on a site using a share URL.\n * @param tenant - Tenant details.\n * @public\n * @requiredField options.shareUrlId\n * @requiredField tenant\n * @requiredField tenant._id\n * @permissionId APPS_INSTALLER.INSTALL_SITE_LEVEL\n * @permissionId APPS_INSTALLER.INSTALL_ACCOUNT_LEVEL\n * @fqn wix.devcenter.apps.installer.v1.AppsInstallerService.InstallAppFromShareUrl\n */\nexport async function installAppFromShareUrl(\n tenant: NonNullablePaths<Tenant, `_id`, 2>,\n options?: NonNullablePaths<InstallAppFromShareUrlOptions, `shareUrlId`, 2>\n): Promise<\n NonNullablePaths<\n InstallAppFromShareUrlResponse,\n `appInstance._id` | `appInstance.appDefId` | `appInstance.enabled`,\n 3\n > & {\n __applicationErrorsType?: InstallAppFromShareUrlApplicationErrors;\n }\n> {\n // @ts-ignore\n const { httpClient, sideEffects } = arguments[2] as {\n httpClient: HttpClient;\n sideEffects?: any;\n };\n\n const payload = renameKeysFromSDKRequestToRESTRequest({\n tenant: tenant,\n shareUrlId: options?.shareUrlId,\n devVersion: options?.devVersion,\n });\n\n const reqOpts =\n ambassadorWixAppsV1AppInstance.installAppFromShareUrl(payload);\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: {\n tenant: '$[0]',\n shareUrlId: '$[1].shareUrlId',\n devVersion: '$[1].devVersion',\n },\n singleArgumentUnchanged: false,\n },\n ['tenant', 'options']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n\nexport interface InstallAppFromShareUrlOptions {\n /**\n * ID of the share URL to install the app from.\n *\n * To get the share URL of an app:\n *\n * 1. [Generate an install link](https://dev.wix.com/docs/build-apps/develop-your-app/app-dashboard-setup/share-your-app-with-an-install-link).\n *\n * 2. Click the link, which will redirect you to a page where you can install the app. The URL of this page is the share URL, and the string after `install/` in the URL is the share URL ID. For example, in the share URL `https://www.wix.com/app-market/install/8d5179a2-6d46-45b0-bcfa-64f479c6a2al`, the share URL ID is `8d5179a2-6d46-45b0-bcfa-64f479c6a2al`.\n * @format GUID\n */\n shareUrlId: string;\n /** Information about the development version of the app to install. Only relevant if the share URL refers to a development version of an app created in the Wix CLI. */\n devVersion?: DevVersionInstallation;\n}\n\n/**\n * Returns whether it's possible to install an app on a tenant, either by providing app instance details or using a share URL.\n * @param installType - Installation type.\n * @public\n * @requiredField installType\n * @requiredField options\n * @requiredField options.options\n * @requiredField options.options.appsInstallOptions.tenant\n * @requiredField options.options.appsInstallOptions.tenant._id\n * @requiredField options.options.shareUrlInstallOptions.shareUrlId\n * @permissionId DEV_CENTER.WRITE_APP\n * @permissionId APPS_INSTALLER.INSTALL_SITE_LEVEL\n * @permissionId APPS_INSTALLER.INSTALL_ACCOUNT_LEVEL\n * @fqn wix.devcenter.apps.installer.v1.AppsInstallerService.IsPermittedToInstallApps\n */\nexport async function isPermittedToInstallApps(\n installType: InstallTypeWithLiterals,\n options: IsPermittedToInstallAppsOptions\n): Promise<\n NonNullablePaths<IsPermittedToInstallAppsResponse, `permitted`, 2> & {\n __applicationErrorsType?: IsPermittedToInstallAppsApplicationErrors;\n }\n> {\n // @ts-ignore\n const { httpClient, sideEffects } = arguments[2] as {\n httpClient: HttpClient;\n sideEffects?: any;\n };\n\n const payload = renameKeysFromSDKRequestToRESTRequest({\n installType: installType,\n appsInstallOptions: options?.appsInstallOptions,\n shareUrlInstallOptions: options?.shareUrlInstallOptions,\n });\n\n const reqOpts =\n ambassadorWixAppsV1AppInstance.isPermittedToInstallApps(payload);\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: {\n installType: '$[0]',\n appsInstallOptions: '$[1].appsInstallOptions',\n shareUrlInstallOptions: '$[1].shareUrlInstallOptions',\n },\n singleArgumentUnchanged: false,\n },\n ['installType', 'options']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n\nexport interface IsPermittedToInstallAppsOptions\n extends IsPermittedToInstallAppsOptionsOptionsOneOf {\n /** Install the app using app instance details. */\n appsInstallOptions?: AppsInstallOptions;\n /** Install an app using a share URL. */\n shareUrlInstallOptions?: ShareUrlInstallOptions;\n}\n\n/** @oneof */\nexport interface IsPermittedToInstallAppsOptionsOptionsOneOf {\n /** Install the app using app instance details. */\n appsInstallOptions?: AppsInstallOptions;\n /** Install an app using a share URL. */\n shareUrlInstallOptions?: ShareUrlInstallOptions;\n}\n\n/**\n * Returns the apps that are installed on the site in context\n * @public\n * @permissionId APP-MARKET.VIEW-INSTALLED-APP\n * @applicableIdentity APP\n * @fqn wix.devcenter.apps.installer.v1.AppsInstallerService.GetInstalledApps\n */\nexport async function getInstalledApps(): Promise<\n NonNullablePaths<\n GetInstalledAppsResponse,\n | `appInstances`\n | `appInstances.${number}._id`\n | `appInstances.${number}.appDefId`\n | `appInstances.${number}.enabled`,\n 4\n >\n> {\n // @ts-ignore\n const { httpClient, sideEffects } = arguments[0] as {\n httpClient: HttpClient;\n sideEffects?: any;\n };\n\n const payload = renameKeysFromSDKRequestToRESTRequest({});\n\n const reqOpts = ambassadorWixAppsV1AppInstance.getInstalledApps(payload);\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: {},\n singleArgumentUnchanged: false,\n },\n []\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n","import { toURLSearchParams } from '@wix/sdk-runtime/rest-modules';\nimport { transformRESTFloatToSDKFloat } from '@wix/sdk-runtime/transformations/float';\nimport { transformSDKTimestampToRESTTimestamp } from '@wix/sdk-runtime/transformations/timestamp';\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 resolveWixDevcenterAppsInstallerV1AppsInstallerServiceUrl(\n opts: Omit<ResolveUrlOpts, 'domainToMappings'>\n) {\n const domainToMappings = {\n 'manage._base_domain_': [\n {\n srcPath: '/apps-installer-service',\n destPath: '',\n },\n ],\n 'editor._base_domain_': [\n {\n srcPath: '/apps-installer-service',\n destPath: '',\n },\n ],\n 'blocks._base_domain_': [\n {\n srcPath: '/apps-installer-service',\n destPath: '',\n },\n ],\n 'create.editorx': [\n {\n srcPath: '/apps-installer-service',\n destPath: '',\n },\n ],\n 'dev._base_domain_': [\n {\n srcPath: '/apps-installer-service',\n destPath: '',\n },\n ],\n 'www.wixapis.com': [\n {\n srcPath: '/apps-installer-service',\n destPath: '',\n },\n ],\n '*.dev.wix-code.com': [\n {\n srcPath: '/apps/v1/app-instances',\n destPath: '',\n },\n ],\n _: [\n {\n srcPath: '/apps/v1/app-instances',\n destPath: '',\n },\n ],\n 'bo._base_domain_': [\n {\n srcPath: '/_api/apps-installer-service',\n destPath: '',\n },\n ],\n 'wixbo.ai': [\n {\n srcPath: '/_api/apps-installer-service',\n destPath: '',\n },\n ],\n 'wix-bo.com': [\n {\n srcPath: '/_api/apps-installer-service',\n destPath: '',\n },\n ],\n 'vibe._base_domain_': [\n {\n srcPath: '/_api/apps-installer-service',\n destPath: '',\n },\n ],\n };\n\n return resolveUrl(Object.assign(opts, { domainToMappings }));\n}\n\nconst PACKAGE_NAME = '@wix/auto_sdk_apps-installer_apps-installer';\n\n/**\n * <blockquote class=\"warning\">\n *\n * __Warning:__\n * By using this API to install 3rd-party apps, you acknowledge and agree that:\n *\n * - Some 3rd-party apps installed with this API may access, use, copy, change, or delete all your website's data, including your and your website visitors' and members' financial and personal information.\n * - Wix may not have reviewed the app, and can't guarantee their operation or that it will continue to function as described by the app developers.\n * - You may be sharing sensitive information with the app. Review the terms of use and privacy policies of any app you choose to install to understand how your data will be handled.\n * - You agree to the Wix App Market [terms of use](https://www.wix.com/about/app-market-terms).\n *\n * By installing any 3rd-party app through this API, you confirm your acceptance of all the above conditions.\n *\n * </blockquote>\n *\n * Installs an app on a tenant, specifying the details of the app instance to create.\n *\n * The ID of this app instance is automatically generated and included in the `appInstance` object in the response.\n */\nexport function installApp(payload: object): RequestOptionsFactory<any> {\n function __installApp({ host }: any) {\n const serializedData = transformPaths(payload, [\n {\n transformFn: transformSDKTimestampToRESTTimestamp,\n paths: [\n { path: 'appInstance.installedDate' },\n { path: 'appInstance.updatedDate' },\n ],\n },\n ]);\n const metadata = {\n entityFqdn: 'wix.apps.v1.app_instance',\n method: 'POST' as any,\n methodFqn:\n 'wix.devcenter.apps.installer.v1.AppsInstallerService.InstallApp',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixDevcenterAppsInstallerV1AppsInstallerServiceUrl({\n protoPath: '/v1/app-instance/install',\n data: serializedData,\n host,\n }),\n data: serializedData,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'appInstance.installedDate' },\n { path: 'appInstance.updatedDate' },\n { path: 'dependenciesInstallation.installedDate' },\n { path: 'dependenciesInstallation.updatedDate' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __installApp;\n}\n\n/**\n * <blockquote class=\"warning\">\n *\n * __Warning:__\n * By using this API to install 3rd-party apps, you acknowledge and agree that:\n *\n * - Some 3rd-party apps installed with this API may access, use, copy, change, or delete all your website's data, including your and your website visitors' and members' financial and personal information.\n * - Wix may not have reviewed the app, and can't guarantee their operation or that it will continue to function as described by the app developers.\n * - You may be sharing sensitive information with the app. Review the terms of use and privacy policies of any app you choose to install to understand how your data will be handled.\n * - You agree to the Wix App Market [terms of use](https://www.wix.com/about/app-market-terms).\n *\n * By installing any 3rd-party app through this API, you confirm your acceptance of all the above conditions.\n *\n * </blockquote>\n *\n * Bulk installs apps on a tenant, specifying the details of the app instances to create.\n *\n * The IDs of these app instances are automatically generated and included in the `appInstance` objects in the response.\n */\nexport function bulkInstallApp(payload: object): RequestOptionsFactory<any> {\n function __bulkInstallApp({ host }: any) {\n const serializedData = transformPaths(payload, [\n {\n transformFn: transformSDKTimestampToRESTTimestamp,\n paths: [\n { path: 'appInstances.installedDate' },\n { path: 'appInstances.updatedDate' },\n ],\n },\n ]);\n const metadata = {\n entityFqdn: 'wix.apps.v1.app_instance',\n method: 'POST' as any,\n methodFqn:\n 'wix.devcenter.apps.installer.v1.AppsInstallerService.BulkInstallApp',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixDevcenterAppsInstallerV1AppsInstallerServiceUrl({\n protoPath: '/v1/bulk/app-instance/install',\n data: serializedData,\n host,\n }),\n data: serializedData,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'results.appInstance.installedDate' },\n { path: 'results.appInstance.updatedDate' },\n ],\n },\n {\n transformFn: transformRESTFloatToSDKFloat,\n paths: [\n {\n path: 'clientSpecMap.data.widgets.*.gluedOptions.verticalMargin',\n },\n {\n path: 'clientSpecMap.data.widgets.*.gluedOptions.horizontalMargin',\n },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __bulkInstallApp;\n}\n\n/**\n * Uninstalls an app from a tenant.\n *\n * This removes the instance of a specified app from the tenant.\n */\nexport function uninstallApp(payload: object): RequestOptionsFactory<any> {\n function __uninstallApp({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.apps.v1.app_instance',\n method: 'POST' as any,\n methodFqn:\n 'wix.devcenter.apps.installer.v1.AppsInstallerService.UninstallApp',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixDevcenterAppsInstallerV1AppsInstallerServiceUrl({\n protoPath: '/v1/app-instance/uninstall',\n data: payload,\n host,\n }),\n data: payload,\n };\n\n return metadata;\n }\n\n return __uninstallApp;\n}\n\n/**\n * Uninstalls apps from a tenant.\n *\n * This removes the instances of the specified apps from the tenant.\n */\nexport function bulkUninstallApp(payload: object): RequestOptionsFactory<any> {\n function __bulkUninstallApp({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.apps.v1.app_instance',\n method: 'POST' as any,\n methodFqn:\n 'wix.devcenter.apps.installer.v1.AppsInstallerService.BulkUninstallApp',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixDevcenterAppsInstallerV1AppsInstallerServiceUrl({\n protoPath: '/v1/bulk/app-instance/uninstall',\n data: payload,\n host,\n }),\n data: payload,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'results.appInstance.installedDate' },\n { path: 'results.appInstance.updatedDate' },\n ],\n },\n {\n transformFn: transformRESTFloatToSDKFloat,\n paths: [\n {\n path: 'clientSpecMap.data.widgets.*.gluedOptions.verticalMargin',\n },\n {\n path: 'clientSpecMap.data.widgets.*.gluedOptions.horizontalMargin',\n },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __bulkUninstallApp;\n}\n\n/**\n * <blockquote class=\"warning\">\n *\n * __Warning:__\n * By using this API to install 3rd-party apps, you acknowledge and agree that:\n *\n * - Some 3rd-party apps installed with this API may access, use, copy, change, or delete all your website's data, including your and your website visitors' and members' financial and personal information.\n * - Wix may not have reviewed the app, and cannot guarantee their operation or that it will continue to function as described by the app developers.\n * - You may be sharing sensitive information with the app. Please review the terms of use and privacy policies of any app you choose to install to understand how your data will be handled.\n * - By utilizing this API, you agree to the Wix App Market [terms of use](https://www.wix.com/about/app-market-terms).\n *\n * By installing any 3rd-party app through this API, I confirm my acceptance of all the above conditions.\n *\n * </blockquote>\n *\n * Installs an app on a site using a share URL.\n */\nexport function installAppFromShareUrl(\n payload: object\n): RequestOptionsFactory<any> {\n function __installAppFromShareUrl({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.apps.v1.app_instance',\n method: 'POST' as any,\n methodFqn:\n 'wix.devcenter.apps.installer.v1.AppsInstallerService.InstallAppFromShareUrl',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixDevcenterAppsInstallerV1AppsInstallerServiceUrl({\n protoPath: '/v1/app-share-url/install',\n data: payload,\n host,\n }),\n data: payload,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'appInstance.installedDate' },\n { path: 'appInstance.updatedDate' },\n { path: 'dependenciesInstallation.installedDate' },\n { path: 'dependenciesInstallation.updatedDate' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __installAppFromShareUrl;\n}\n\n/** Returns whether it's possible to install an app on a tenant, either by providing app instance details or using a share URL. */\nexport function isPermittedToInstallApps(\n payload: object\n): RequestOptionsFactory<any> {\n function __isPermittedToInstallApps({ host }: any) {\n const serializedData = transformPaths(payload, [\n {\n transformFn: transformSDKTimestampToRESTTimestamp,\n paths: [\n { path: 'appsInstallOptions.appInstances.installedDate' },\n { path: 'appsInstallOptions.appInstances.updatedDate' },\n ],\n },\n ]);\n const metadata = {\n entityFqdn: 'wix.apps.v1.app_instance',\n method: 'POST' as any,\n methodFqn:\n 'wix.devcenter.apps.installer.v1.AppsInstallerService.IsPermittedToInstallApps',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixDevcenterAppsInstallerV1AppsInstallerServiceUrl({\n protoPath: '/v1/app-instance/is-permitted-to-install',\n data: serializedData,\n host,\n }),\n data: serializedData,\n };\n\n return metadata;\n }\n\n return __isPermittedToInstallApps;\n}\n\n/** Returns the apps that are installed on the site in context */\nexport function getInstalledApps(payload: object): RequestOptionsFactory<any> {\n function __getInstalledApps({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.apps.v1.app_instance',\n method: 'GET' as any,\n methodFqn:\n 'wix.devcenter.apps.installer.v1.AppsInstallerService.GetInstalledApps',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixDevcenterAppsInstallerV1AppsInstallerServiceUrl({\n protoPath: '/v1/app-instances',\n data: payload,\n host,\n }),\n params: toURLSearchParams(payload),\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'appInstances.installedDate' },\n { path: 'appInstances.updatedDate' },\n ],\n },\n ]),\n fallback: [\n {\n method: 'GET' as any,\n url: resolveWixDevcenterAppsInstallerV1AppsInstallerServiceUrl({\n protoPath: '/v1/app-instances',\n data: payload,\n host,\n }),\n params: toURLSearchParams(payload),\n },\n ],\n };\n\n return metadata;\n }\n\n return __getInstalledApps;\n}\n"],"mappings":"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","names":["payload","Status","TenantType","WebhookIdentityType","RequestedFields","InstallType","installApp","bulkInstallApp","uninstallApp","bulkUninstallApp","installAppFromShareUrl","isPermittedToInstallApps","getInstalledApps"]}
@@ -571,6 +571,23 @@ interface GetInstalledAppsResponse {
571
571
  /** The installed app instances */
572
572
  appInstances?: AppInstance[];
573
573
  }
574
+ interface AccountDetails {
575
+ /**
576
+ * ID of the account.
577
+ * @format GUID
578
+ */
579
+ accountId?: string | null;
580
+ /**
581
+ * ID of the parent account.
582
+ * @format GUID
583
+ */
584
+ parentAccountId?: string | null;
585
+ /**
586
+ * ID of the site, if applicable.
587
+ * @format GUID
588
+ */
589
+ siteId?: string | null;
590
+ }
574
591
  /** @docsIgnore */
575
592
  type InstallAppApplicationErrors = {
576
593
  code?: 'DOMAIN_ENTITY_MISSING';
@@ -638,4 +655,4 @@ declare function installAppFromShareUrl(): __PublicMethodMetaInfo<'POST', {}, In
638
655
  declare function isPermittedToInstallApps(): __PublicMethodMetaInfo<'POST', {}, IsPermittedToInstallAppsRequest$1, IsPermittedToInstallAppsRequest, IsPermittedToInstallAppsResponse$1, IsPermittedToInstallAppsResponse>;
639
656
  declare function getInstalledApps(): __PublicMethodMetaInfo<'GET', {}, GetInstalledAppsRequest$1, GetInstalledAppsRequest, GetInstalledAppsResponse$1, GetInstalledAppsResponse>;
640
657
 
641
- export { type ActionEvent as ActionEventOriginal, type AppInstalledOnTenant as AppInstalledOnTenantOriginal, type AppInstance as AppInstanceOriginal, type ApplicationError as ApplicationErrorOriginal, type AppsInstallOptions as AppsInstallOptionsOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, type BulkInstallAppApplicationErrors as BulkInstallAppApplicationErrorsOriginal, type BulkInstallAppRequest as BulkInstallAppRequestOriginal, type BulkInstallAppResponse as BulkInstallAppResponseOriginal, type BulkInstallAppResult as BulkInstallAppResultOriginal, type BulkUninstallAppRequest as BulkUninstallAppRequestOriginal, type BulkUninstallAppResponse as BulkUninstallAppResponseOriginal, type BulkUninstallAppResult as BulkUninstallAppResultOriginal, type ClientSpecMap as ClientSpecMapOriginal, type ClientSpec as ClientSpecOriginal, type DevVersionInstallation as DevVersionInstallationOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type Empty as EmptyOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type GetInstalledAppsRequest as GetInstalledAppsRequestOriginal, type GetInstalledAppsResponse as GetInstalledAppsResponseOriginal, type GluedOptions as GluedOptionsOriginal, type GluedWidget as GluedWidgetOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type InstallAppApplicationErrors as InstallAppApplicationErrorsOriginal, type InstallAppFromShareUrlApplicationErrors as InstallAppFromShareUrlApplicationErrorsOriginal, type InstallAppFromShareUrlRequest as InstallAppFromShareUrlRequestOriginal, type InstallAppFromShareUrlResponse as InstallAppFromShareUrlResponseOriginal, type InstallAppRequest as InstallAppRequestOriginal, type InstallAppResponse as InstallAppResponseOriginal, type InstallDefaultAppsEvent as InstallDefaultAppsEventOriginal, InstallType as InstallTypeOriginal, type InstallTypeWithLiterals as InstallTypeWithLiteralsOriginal, type IsPermittedToInstallAppsApplicationErrors as IsPermittedToInstallAppsApplicationErrorsOriginal, type IsPermittedToInstallAppsRequestOptionsOneOf as IsPermittedToInstallAppsRequestOptionsOneOfOriginal, type IsPermittedToInstallAppsRequest as IsPermittedToInstallAppsRequestOriginal, type IsPermittedToInstallAppsResponse as IsPermittedToInstallAppsResponseOriginal, type ItemMetadata as ItemMetadataOriginal, type LegacyParams as LegacyParamsOriginal, type ListAppInstancesRequest as ListAppInstancesRequestOriginal, type ListAppInstancesResponse as ListAppInstancesResponseOriginal, type MessageEnvelope as MessageEnvelopeOriginal, RequestedFields as RequestedFieldsOriginal, type RequestedFieldsWithLiterals as RequestedFieldsWithLiteralsOriginal, type RestoreInfo as RestoreInfoOriginal, type ShareUrlInstallOptions as ShareUrlInstallOptionsOriginal, Status as StatusOriginal, type StatusWithLiterals as StatusWithLiteralsOriginal, type TPAAppPage as TPAAppPageOriginal, type TPAAppRequirements as TPAAppRequirementsOriginal, type TPAPermissions as TPAPermissionsOriginal, type TPASettingsClientSpec as TPASettingsClientSpecOriginal, type TPAWidgetPosition as TPAWidgetPositionOriginal, type Tenant as TenantOriginal, TenantType as TenantTypeOriginal, type TenantTypeWithLiterals as TenantTypeWithLiteralsOriginal, type UninstallAppRequest as UninstallAppRequestOriginal, type UninstallAppResponse as UninstallAppResponseOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, type Widget as WidgetOriginal, type __PublicMethodMetaInfo, bulkInstallApp, bulkUninstallApp, getInstalledApps, installApp, installAppFromShareUrl, isPermittedToInstallApps, uninstallApp };
658
+ export { type AccountDetails as AccountDetailsOriginal, type ActionEvent as ActionEventOriginal, type AppInstalledOnTenant as AppInstalledOnTenantOriginal, type AppInstance as AppInstanceOriginal, type ApplicationError as ApplicationErrorOriginal, type AppsInstallOptions as AppsInstallOptionsOriginal, type BulkActionMetadata as BulkActionMetadataOriginal, type BulkInstallAppApplicationErrors as BulkInstallAppApplicationErrorsOriginal, type BulkInstallAppRequest as BulkInstallAppRequestOriginal, type BulkInstallAppResponse as BulkInstallAppResponseOriginal, type BulkInstallAppResult as BulkInstallAppResultOriginal, type BulkUninstallAppRequest as BulkUninstallAppRequestOriginal, type BulkUninstallAppResponse as BulkUninstallAppResponseOriginal, type BulkUninstallAppResult as BulkUninstallAppResultOriginal, type ClientSpecMap as ClientSpecMapOriginal, type ClientSpec as ClientSpecOriginal, type DevVersionInstallation as DevVersionInstallationOriginal, type DomainEventBodyOneOf as DomainEventBodyOneOfOriginal, type DomainEvent as DomainEventOriginal, type Empty as EmptyOriginal, type EntityCreatedEvent as EntityCreatedEventOriginal, type EntityDeletedEvent as EntityDeletedEventOriginal, type EntityUpdatedEvent as EntityUpdatedEventOriginal, type GetInstalledAppsRequest as GetInstalledAppsRequestOriginal, type GetInstalledAppsResponse as GetInstalledAppsResponseOriginal, type GluedOptions as GluedOptionsOriginal, type GluedWidget as GluedWidgetOriginal, type IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal, type IdentificationData as IdentificationDataOriginal, type InstallAppApplicationErrors as InstallAppApplicationErrorsOriginal, type InstallAppFromShareUrlApplicationErrors as InstallAppFromShareUrlApplicationErrorsOriginal, type InstallAppFromShareUrlRequest as InstallAppFromShareUrlRequestOriginal, type InstallAppFromShareUrlResponse as InstallAppFromShareUrlResponseOriginal, type InstallAppRequest as InstallAppRequestOriginal, type InstallAppResponse as InstallAppResponseOriginal, type InstallDefaultAppsEvent as InstallDefaultAppsEventOriginal, InstallType as InstallTypeOriginal, type InstallTypeWithLiterals as InstallTypeWithLiteralsOriginal, type IsPermittedToInstallAppsApplicationErrors as IsPermittedToInstallAppsApplicationErrorsOriginal, type IsPermittedToInstallAppsRequestOptionsOneOf as IsPermittedToInstallAppsRequestOptionsOneOfOriginal, type IsPermittedToInstallAppsRequest as IsPermittedToInstallAppsRequestOriginal, type IsPermittedToInstallAppsResponse as IsPermittedToInstallAppsResponseOriginal, type ItemMetadata as ItemMetadataOriginal, type LegacyParams as LegacyParamsOriginal, type ListAppInstancesRequest as ListAppInstancesRequestOriginal, type ListAppInstancesResponse as ListAppInstancesResponseOriginal, type MessageEnvelope as MessageEnvelopeOriginal, RequestedFields as RequestedFieldsOriginal, type RequestedFieldsWithLiterals as RequestedFieldsWithLiteralsOriginal, type RestoreInfo as RestoreInfoOriginal, type ShareUrlInstallOptions as ShareUrlInstallOptionsOriginal, Status as StatusOriginal, type StatusWithLiterals as StatusWithLiteralsOriginal, type TPAAppPage as TPAAppPageOriginal, type TPAAppRequirements as TPAAppRequirementsOriginal, type TPAPermissions as TPAPermissionsOriginal, type TPASettingsClientSpec as TPASettingsClientSpecOriginal, type TPAWidgetPosition as TPAWidgetPositionOriginal, type Tenant as TenantOriginal, TenantType as TenantTypeOriginal, type TenantTypeWithLiterals as TenantTypeWithLiteralsOriginal, type UninstallAppRequest as UninstallAppRequestOriginal, type UninstallAppResponse as UninstallAppResponseOriginal, WebhookIdentityType as WebhookIdentityTypeOriginal, type WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal, type Widget as WidgetOriginal, type __PublicMethodMetaInfo, bulkInstallApp, bulkUninstallApp, getInstalledApps, installApp, installAppFromShareUrl, isPermittedToInstallApps, uninstallApp };