@wix/auto_sdk_domains_connected-domain-setup-info 1.0.22 → 1.0.23
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.
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +12 -12
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +12 -12
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +12 -12
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +12 -12
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +12 -12
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +12 -12
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +12 -12
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +12 -12
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +3 -3
package/build/cjs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../index.ts","../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.ts","../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.http.ts","../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.public.ts","../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.context.ts"],"sourcesContent":["export * from './src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.context.js';\n","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 ambassadorWixPremiumDomainsV1ConnectedDomainSetupInfo from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.http.js';\n\n/**\n * A `connectedDomainSetupInfo` object holds information the connected domain's\n * external registrar and some DNS records. You can use this information to guide\n * the site owner through the domain's setup process.\n */\nexport interface ConnectedDomainSetupInfo\n extends ConnectedDomainSetupInfoDnsRecordsOneOf {\n /**\n * Information about domains connected using nameservers. Available only for\n * `{\"connectionType\": \"NAMESERVERS\"}`.\n */\n nameserverRecord?: NameserverRecord;\n /**\n * Information about domains connected by pointing. Available only for\n * `{\"connectionType\": \"POINTING\"}`.\n * @readonly\n */\n pointingRecords?: PointingRecords;\n /**\n * Information about subdomains. Available only for subdomains.\n * @readonly\n */\n subdomainRecords?: SubdomainRecords;\n /**\n * ID of the connected domain. Identical to the domain name including TLD.\n * @format HOSTNAME\n */\n connectedDomainId?: string;\n /**\n * Information about the external domain registrar including current name\n * servers.\n */\n registrar?: Registrar;\n}\n\n/** @oneof */\nexport interface ConnectedDomainSetupInfoDnsRecordsOneOf {\n /**\n * Information about domains connected using nameservers. Available only for\n * `{\"connectionType\": \"NAMESERVERS\"}`.\n */\n nameserverRecord?: NameserverRecord;\n /**\n * Information about domains connected by pointing. Available only for\n * `{\"connectionType\": \"POINTING\"}`.\n * @readonly\n */\n pointingRecords?: PointingRecords;\n /**\n * Information about subdomains. Available only for subdomains.\n * @readonly\n */\n subdomainRecords?: SubdomainRecords;\n}\n\nexport interface Registrar {\n /**\n * Name of the external domain registrar. For subdomains it's the registrar of the root domain.\n * @readonly\n */\n name?: string | null;\n /**\n * Values of the current name server records. In case you connect an external\n * domain using name servers, site owners must replace these current name servers\n * with the new name servers found in `connectedDomainSetupInfo.nameserverRecord.nsRecord.values`\n * during the initial domain setup.\n * The replacement can't be performed through Wix APIs, you must use the\n * infrastructure of the external domain registrar. Read more about\n * [connecting domains using nameservers](https://dev.wix.com/api/rest/account-level-apis/connected-domains/sample-flows#account-level-apis_connected-domains_sample-flows_connect-an-external-domain-using-nameservers).\n * @readonly\n */\n nameServers?: string[];\n}\n\n/** Information about domains connected by nameservers. */\nexport interface NameserverRecord {\n /**\n * Default [nameserver record](https://en.wikipedia.org/wiki/List_of_DNS_record_types#NS).\n * @readonly\n */\n nsRecord?: NsRecord;\n}\n\nexport interface NsRecord {\n /**\n * Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.\n * @format HOSTNAME\n */\n hostName?: string;\n /** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */\n ttl?: number;\n /**\n * DNS record values.\n * @minSize 1\n * @maxSize 10\n */\n values?: string[];\n}\n\n/** Information about domains connected by pointing. */\nexport interface PointingRecords {\n /**\n * [Address record](https://en.wikipedia.org/wiki/List_of_DNS_record_types#A).\n * @readonly\n */\n aRecord?: ARecord;\n /**\n * [Canonical Name record](https://en.wikipedia.org/wiki/CNAME_record).\n * @readonly\n */\n cnameRecord?: CnameRecord;\n}\n\nexport interface ARecord {\n /**\n * Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.\n * @format HOSTNAME\n */\n hostName?: string;\n /** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */\n ttl?: number;\n /**\n * DNS record values.\n * @minSize 1\n * @maxSize 10\n */\n values?: string[];\n}\n\nexport interface CnameRecord {\n /**\n * Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.\n * @format HOSTNAME\n */\n hostName?: string;\n /** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */\n ttl?: number;\n /** DNS record value. */\n value?: string;\n}\n\n/** Information about subdomains. */\nexport interface SubdomainRecords {\n /**\n * [Canonical Name records](https://en.wikipedia.org/wiki/CNAME_record).\n * @readonly\n * @maxSize 2\n */\n cnameRecords?: CnameRecord[];\n}\n\nexport interface GetSetupInfoRequest {\n /**\n * Domain name including TLD\n * @format HOSTNAME\n */\n domain?: string;\n /**\n * How the domain should be to connected the Wix site.\n *\n * + `\"UNKNOWN_CONNECTION_TYPE\"`: supported only for subdomain.\n * + `\"POINTING\"`: Get domain or subdomain setup by pointing\n * + `\"NAMESERVERS\"`: Get domain setup by nameservers\n * + `\"HIDDEN\"`: supported only for subdomain.\n */\n connectionType?: ConnectionTypeWithLiterals;\n /** Whether to return registrar information or not. Default is false. */\n includeRegistrar?: boolean;\n}\n\nexport enum ConnectionType {\n /** There is no information about the connection type. */\n UNKNOWN_CONNECTION_TYPE = 'UNKNOWN_CONNECTION_TYPE',\n /** The domain is connected by pointing. Wix doesn't manage DNS information. */\n POINTING = 'POINTING',\n /** The domain is connected by nameservers. Wix manages DNS information. */\n NAMESERVERS = 'NAMESERVERS',\n /** The domain isn't visible to site visitors. */\n HIDDEN = 'HIDDEN',\n}\n\n/** @enumType */\nexport type ConnectionTypeWithLiterals =\n | ConnectionType\n | 'UNKNOWN_CONNECTION_TYPE'\n | 'POINTING'\n | 'NAMESERVERS'\n | 'HIDDEN';\n\nexport interface GetSetupInfoResponse {\n /** Retrieved setup information. */\n domainSetupInfo?: ConnectedDomainSetupInfo;\n}\n\nexport interface PreCreateConnectedDomainRequest {\n /**\n * Domain name including TLD\n * @format HOSTNAME\n */\n domain?: string;\n}\n\nexport interface PreCreateConnectedDomainResponse {}\n\nexport interface CanChangeDomainOwnerRequest {\n /**\n * Domain name including TLD\n * @format HOSTNAME\n */\n domain?: string;\n}\n\nexport interface CanChangeDomainOwnerResponse {\n /** Whether the domain owner can be changed. */\n canChangeOwner?: boolean;\n}\n\nexport interface GetMxRecordsRequest {\n /**\n * Domain name including TLD\n * @format HOSTNAME\n */\n domain?: string;\n}\n\nexport interface GetMxRecordsResponse {\n /**\n * MX records for the domain.\n * Domain can be either registered or connected.\n * The list will be empty if no MX records are found in the public DNS.\n */\n mxRecords?: MxRecord[];\n}\n\nexport interface MxRecord {\n /**\n * DNS record values. Wix limits DNS records to 50 values per type. External\n * providers may support a different maximum number of DNS records for a\n * specific type, Wix doesn't validate that you don't exceed these external\n * limits.\n *\n * Max: 50 records\n * @minSize 1\n * @maxSize 50\n * @maxLength 1000\n */\n values?: string[];\n}\n\nexport interface GetConnectedDomainSetupInfoRequest {\n /**\n * ID of the connected domain to retrieve setup information for.\n * Identical to the domain name including TLD.\n * @format HOSTNAME\n */\n connectedDomainId: string;\n}\n\nexport interface GetConnectedDomainSetupInfoResponse {\n /** Retrieved setup information. */\n connectedDomainSetupInfo?: ConnectedDomainSetupInfo;\n}\n\n/**\n * Retrieves information for the initial setup of a connected domain.\n *\n *\n * You must pass the relevant Wix account ID in the header of the call.\n *\n * > __Important:__ This call requires an account level API key and cannot be authenticated with the standard authorization header.\n * @param connectedDomainId - ID of the connected domain to retrieve setup information for.\n * Identical to the domain name including TLD.\n * @public\n * @requiredField connectedDomainId\n * @permissionId DOMAINS.READ_CONNECTED_DOMAINS\n * @returns Retrieved setup information.\n * @fqn com.wixpress.premium.domain.connected.ConnectedDomainSetupInfoService.GetConnectedDomainSetupInfo\n */\nexport async function getConnectedDomainSetupInfo(\n connectedDomainId: string\n): Promise<\n NonNullablePaths<\n ConnectedDomainSetupInfo,\n | `nameserverRecord.nsRecord.hostName`\n | `nameserverRecord.nsRecord.ttl`\n | `nameserverRecord.nsRecord.values`\n | `pointingRecords.aRecord.hostName`\n | `pointingRecords.aRecord.ttl`\n | `pointingRecords.aRecord.values`\n | `pointingRecords.cnameRecord.hostName`\n | `pointingRecords.cnameRecord.ttl`\n | `pointingRecords.cnameRecord.value`\n | `subdomainRecords.cnameRecords`\n | `connectedDomainId`\n | `registrar.nameServers`,\n 4\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 connectedDomainId: connectedDomainId,\n });\n\n const reqOpts =\n ambassadorWixPremiumDomainsV1ConnectedDomainSetupInfo.getConnectedDomainSetupInfo(\n payload\n );\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)\n ?.connectedDomainSetupInfo!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: { connectedDomainId: '$[0]' },\n singleArgumentUnchanged: false,\n },\n ['connectedDomainId']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n","import { toURLSearchParams } from '@wix/sdk-runtime/rest-modules';\nimport { resolveUrl } from '@wix/sdk-runtime/rest-modules';\nimport { ResolveUrlOpts } from '@wix/sdk-runtime/rest-modules';\nimport { RequestOptionsFactory } from '@wix/sdk-types';\n\nfunction resolveComWixpressPremiumDomainConnectedConnectedDomainSetupInfoServiceUrl(\n opts: Omit<ResolveUrlOpts, 'domainToMappings'>\n) {\n const domainToMappings = {\n 'www.wixapis.com': [\n {\n srcPath: '/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/v1/domain-setup-info',\n destPath: '/v1/domain-setup-info',\n },\n {\n srcPath: '/premium/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/premium/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n ],\n 'manage._base_domain_': [\n {\n srcPath: '/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/v1/domain-setup-info',\n destPath: '/v1/domain-setup-info',\n },\n ],\n 'www._base_domain_': [\n {\n srcPath: '/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/v1/domain-setup-info',\n destPath: '/v1/domain-setup-info',\n },\n ],\n 'premium._base_domain_': [\n {\n srcPath: '/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/v1/domain-setup-info',\n destPath: '/v1/domain-setup-info',\n },\n ],\n '*.dev.wix-code.com': [\n {\n srcPath: '/premium/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/premium/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n ],\n _: [\n {\n srcPath: '/premium/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/premium/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n ],\n };\n\n return resolveUrl(Object.assign(opts, { domainToMappings }));\n}\n\nconst PACKAGE_NAME = '@wix/auto_sdk_domains_connected-domain-setup-info';\n\n/**\n * Retrieves information for the initial setup of a connected domain.\n *\n *\n * You must pass the relevant Wix account ID in the header of the call.\n *\n * > __Important:__ This call requires an account level API key and cannot be authenticated with the standard authorization header.\n */\nexport function getConnectedDomainSetupInfo(\n payload: object\n): RequestOptionsFactory<any> {\n function __getConnectedDomainSetupInfo({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.premium.domains.v1.connected_domain_setup_info',\n method: 'GET' as any,\n methodFqn:\n 'com.wixpress.premium.domain.connected.ConnectedDomainSetupInfoService.GetConnectedDomainSetupInfo',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveComWixpressPremiumDomainConnectedConnectedDomainSetupInfoServiceUrl(\n {\n protoPath: '/v1/connected-domain-setup-info/{connectedDomainId}',\n data: payload,\n host,\n }\n ),\n params: toURLSearchParams(payload),\n };\n\n return metadata;\n }\n\n return __getConnectedDomainSetupInfo;\n}\n","import { HttpClient, NonNullablePaths } from '@wix/sdk-types';\nimport {\n ConnectedDomainSetupInfo,\n getConnectedDomainSetupInfo as universalGetConnectedDomainSetupInfo,\n} from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js';\n\nexport const __metadata = { PACKAGE_NAME: '@wix/domains' };\n\nexport function getConnectedDomainSetupInfo(\n httpClient: HttpClient\n): GetConnectedDomainSetupInfoSignature {\n return (connectedDomainId: string) =>\n universalGetConnectedDomainSetupInfo(\n connectedDomainId,\n // @ts-ignore\n { httpClient }\n );\n}\n\ninterface GetConnectedDomainSetupInfoSignature {\n /**\n * Retrieves information for the initial setup of a connected domain.\n *\n *\n * You must pass the relevant Wix account ID in the header of the call.\n *\n * > __Important:__ This call requires an account level API key and cannot be authenticated with the standard authorization header.\n * @param - ID of the connected domain to retrieve setup information for.\n * Identical to the domain name including TLD.\n * @returns Retrieved setup information.\n */\n (connectedDomainId: string): Promise<\n NonNullablePaths<\n ConnectedDomainSetupInfo,\n | `nameserverRecord.nsRecord.hostName`\n | `nameserverRecord.nsRecord.ttl`\n | `nameserverRecord.nsRecord.values`\n | `pointingRecords.aRecord.hostName`\n | `pointingRecords.aRecord.ttl`\n | `pointingRecords.aRecord.values`\n | `pointingRecords.cnameRecord.hostName`\n | `pointingRecords.cnameRecord.ttl`\n | `pointingRecords.cnameRecord.value`\n | `subdomainRecords.cnameRecords`\n | `connectedDomainId`\n | `registrar.nameServers`,\n 4\n >\n >;\n}\n\nexport {\n ARecord,\n CanChangeDomainOwnerRequest,\n CanChangeDomainOwnerResponse,\n CnameRecord,\n ConnectedDomainSetupInfo,\n ConnectedDomainSetupInfoDnsRecordsOneOf,\n ConnectionType,\n GetConnectedDomainSetupInfoRequest,\n GetConnectedDomainSetupInfoResponse,\n GetMxRecordsRequest,\n GetMxRecordsResponse,\n GetSetupInfoRequest,\n GetSetupInfoResponse,\n MxRecord,\n NameserverRecord,\n NsRecord,\n PointingRecords,\n PreCreateConnectedDomainRequest,\n PreCreateConnectedDomainResponse,\n Registrar,\n SubdomainRecords,\n} from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js';\n","import { getConnectedDomainSetupInfo as publicGetConnectedDomainSetupInfo } from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.public.js';\nimport { createRESTModule } from '@wix/sdk-runtime/rest-modules';\nimport { BuildRESTFunction, MaybeContext } from '@wix/sdk-types';\n\nexport const getConnectedDomainSetupInfo: MaybeContext<\n BuildRESTFunction<typeof publicGetConnectedDomainSetupInfo> &\n typeof publicGetConnectedDomainSetupInfo\n> = /*#__PURE__*/ createRESTModule(publicGetConnectedDomainSetupInfo);\n\nexport { ConnectionType } from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js';\nexport {\n ConnectedDomainSetupInfo,\n ConnectedDomainSetupInfoDnsRecordsOneOf,\n Registrar,\n NameserverRecord,\n NsRecord,\n PointingRecords,\n ARecord,\n CnameRecord,\n SubdomainRecords,\n GetSetupInfoRequest,\n GetSetupInfoResponse,\n PreCreateConnectedDomainRequest,\n PreCreateConnectedDomainResponse,\n CanChangeDomainOwnerRequest,\n CanChangeDomainOwnerResponse,\n GetMxRecordsRequest,\n GetMxRecordsResponse,\n MxRecord,\n GetConnectedDomainSetupInfoRequest,\n GetConnectedDomainSetupInfoResponse,\n} from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js';\nexport { ConnectionTypeWithLiterals } from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js';\n"],"mappings":"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","names":["getConnectedDomainSetupInfo","import_rest_modules","ConnectionType","getConnectedDomainSetupInfo","sdkTransformError","getConnectedDomainSetupInfo","import_rest_modules","getConnectedDomainSetupInfo"]}
|
|
1
|
+
{"version":3,"sources":["../../index.ts","../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.ts","../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.http.ts","../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.public.ts","../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.context.ts"],"sourcesContent":["export * from './src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.context.js';\n","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 ambassadorWixPremiumDomainsV1ConnectedDomainSetupInfo from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.http.js';\n\n/**\n * A `connectedDomainSetupInfo` object holds information the connected domain's\n * external registrar and some DNS records. You can use this information to guide\n * the site owner through the domain's setup process.\n */\nexport interface ConnectedDomainSetupInfo\n extends ConnectedDomainSetupInfoDnsRecordsOneOf {\n /**\n * Information about domains connected using nameservers. Available only for\n * `{\"connectionType\": \"NAMESERVERS\"}`.\n */\n nameserverRecord?: NameserverRecord;\n /**\n * Information about domains connected by pointing. Available only for\n * `{\"connectionType\": \"POINTING\"}`.\n * @readonly\n */\n pointingRecords?: PointingRecords;\n /**\n * Information about subdomains. Available only for subdomains.\n * @readonly\n */\n subdomainRecords?: SubdomainRecords;\n /**\n * ID of the connected domain. Identical to the domain name including TLD.\n * @format HOSTNAME\n */\n connectedDomainId?: string;\n /**\n * Information about the external domain registrar including current name\n * servers.\n */\n registrar?: Registrar;\n}\n\n/** @oneof */\nexport interface ConnectedDomainSetupInfoDnsRecordsOneOf {\n /**\n * Information about domains connected using nameservers. Available only for\n * `{\"connectionType\": \"NAMESERVERS\"}`.\n */\n nameserverRecord?: NameserverRecord;\n /**\n * Information about domains connected by pointing. Available only for\n * `{\"connectionType\": \"POINTING\"}`.\n * @readonly\n */\n pointingRecords?: PointingRecords;\n /**\n * Information about subdomains. Available only for subdomains.\n * @readonly\n */\n subdomainRecords?: SubdomainRecords;\n}\n\nexport interface Registrar {\n /**\n * Name of the external domain registrar. For subdomains it's the registrar of the root domain.\n * @readonly\n */\n name?: string | null;\n /**\n * Values of the current name server records. In case you connect an external\n * domain using name servers, site owners must replace these current name servers\n * with the new name servers found in `connectedDomainSetupInfo.nameserverRecord.nsRecord.values`\n * during the initial domain setup.\n * The replacement can't be performed through Wix APIs, you must use the\n * infrastructure of the external domain registrar. Read more about\n * [connecting domains using nameservers](https://dev.wix.com/api/rest/account-level-apis/connected-domains/sample-flows#account-level-apis_connected-domains_sample-flows_connect-an-external-domain-using-nameservers).\n * @readonly\n */\n nameServers?: string[];\n}\n\n/** Information about domains connected by nameservers. */\nexport interface NameserverRecord {\n /**\n * Default [nameserver record](https://en.wikipedia.org/wiki/List_of_DNS_record_types#NS).\n * @readonly\n */\n nsRecord?: NsRecord;\n}\n\nexport interface NsRecord {\n /**\n * Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.\n * @format HOSTNAME\n */\n hostName?: string;\n /** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */\n ttl?: number;\n /**\n * DNS record values.\n * @minSize 1\n * @maxSize 10\n */\n values?: string[];\n}\n\n/** Information about domains connected by pointing. */\nexport interface PointingRecords {\n /**\n * [Address record](https://en.wikipedia.org/wiki/List_of_DNS_record_types#A).\n * @readonly\n */\n aRecord?: ARecord;\n /**\n * [Canonical Name record](https://en.wikipedia.org/wiki/CNAME_record).\n * @readonly\n */\n cnameRecord?: CnameRecord;\n}\n\nexport interface ARecord {\n /**\n * Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.\n * @format HOSTNAME\n */\n hostName?: string;\n /** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */\n ttl?: number;\n /**\n * DNS record values.\n * @minSize 1\n * @maxSize 10\n */\n values?: string[];\n}\n\nexport interface CnameRecord {\n /**\n * Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.\n * @format HOSTNAME\n */\n hostName?: string;\n /** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */\n ttl?: number;\n /** DNS record value. */\n value?: string;\n}\n\n/** Information about subdomains. */\nexport interface SubdomainRecords {\n /**\n * [Canonical Name records](https://en.wikipedia.org/wiki/CNAME_record).\n * @readonly\n * @maxSize 2\n */\n cnameRecords?: CnameRecord[];\n}\n\nexport interface GetConnectedDomainSetupInfoRequest {\n /**\n * ID of the connected domain to retrieve setup information for.\n * Identical to the domain name including TLD.\n * @format HOSTNAME\n */\n connectedDomainId: string;\n}\n\nexport interface GetConnectedDomainSetupInfoResponse {\n /** Retrieved setup information. */\n connectedDomainSetupInfo?: ConnectedDomainSetupInfo;\n}\n\nexport interface GetSetupInfoRequest {\n /**\n * Domain name including TLD\n * @format HOSTNAME\n */\n domain?: string;\n /**\n * How the domain should be to connected the Wix site.\n *\n * + `\"UNKNOWN_CONNECTION_TYPE\"`: supported only for subdomain.\n * + `\"POINTING\"`: Get domain or subdomain setup by pointing\n * + `\"NAMESERVERS\"`: Get domain setup by nameservers\n * + `\"HIDDEN\"`: supported only for subdomain.\n */\n connectionType?: ConnectionTypeWithLiterals;\n /** Whether to return registrar information or not. Default is false. */\n includeRegistrar?: boolean;\n}\n\nexport enum ConnectionType {\n /** There is no information about the connection type. */\n UNKNOWN_CONNECTION_TYPE = 'UNKNOWN_CONNECTION_TYPE',\n /** The domain is connected by pointing. Wix doesn't manage DNS information. */\n POINTING = 'POINTING',\n /** The domain is connected by nameservers. Wix manages DNS information. */\n NAMESERVERS = 'NAMESERVERS',\n /** The domain isn't visible to site visitors. */\n HIDDEN = 'HIDDEN',\n}\n\n/** @enumType */\nexport type ConnectionTypeWithLiterals =\n | ConnectionType\n | 'UNKNOWN_CONNECTION_TYPE'\n | 'POINTING'\n | 'NAMESERVERS'\n | 'HIDDEN';\n\nexport interface GetSetupInfoResponse {\n /** Retrieved setup information. */\n domainSetupInfo?: ConnectedDomainSetupInfo;\n}\n\nexport interface PreCreateConnectedDomainRequest {\n /**\n * Domain name including TLD\n * @format HOSTNAME\n */\n domain?: string;\n}\n\nexport interface PreCreateConnectedDomainResponse {}\n\nexport interface CanChangeDomainOwnerRequest {\n /**\n * Domain name including TLD\n * @format HOSTNAME\n */\n domain?: string;\n}\n\nexport interface CanChangeDomainOwnerResponse {\n /** Whether the domain owner can be changed. */\n canChangeOwner?: boolean;\n}\n\nexport interface GetMxRecordsRequest {\n /**\n * Domain name including TLD\n * @format HOSTNAME\n */\n domain?: string;\n}\n\nexport interface GetMxRecordsResponse {\n /**\n * MX records for the domain.\n * Domain can be either registered or connected.\n * The list will be empty if no MX records are found in the public DNS.\n */\n mxRecords?: MxRecord[];\n}\n\nexport interface MxRecord {\n /**\n * DNS record values. Wix limits DNS records to 50 values per type. External\n * providers may support a different maximum number of DNS records for a\n * specific type, Wix doesn't validate that you don't exceed these external\n * limits.\n *\n * Max: 50 records\n * @minSize 1\n * @maxSize 50\n * @maxLength 1000\n */\n values?: string[];\n}\n\n/**\n * Retrieves information for the initial setup of a connected domain.\n *\n *\n * You must pass the relevant Wix account ID in the header of the call.\n *\n * > __Important:__ This call requires an account level API key and cannot be authenticated with the standard authorization header.\n * @param connectedDomainId - ID of the connected domain to retrieve setup information for.\n * Identical to the domain name including TLD.\n * @public\n * @requiredField connectedDomainId\n * @permissionId DOMAINS.READ_CONNECTED_DOMAINS\n * @returns Retrieved setup information.\n * @fqn com.wixpress.premium.domain.connected.ConnectedDomainSetupInfoService.GetConnectedDomainSetupInfo\n */\nexport async function getConnectedDomainSetupInfo(\n connectedDomainId: string\n): Promise<\n NonNullablePaths<\n ConnectedDomainSetupInfo,\n | `nameserverRecord.nsRecord.hostName`\n | `nameserverRecord.nsRecord.ttl`\n | `nameserverRecord.nsRecord.values`\n | `pointingRecords.aRecord.hostName`\n | `pointingRecords.aRecord.ttl`\n | `pointingRecords.aRecord.values`\n | `pointingRecords.cnameRecord.hostName`\n | `pointingRecords.cnameRecord.ttl`\n | `pointingRecords.cnameRecord.value`\n | `subdomainRecords.cnameRecords`\n | `connectedDomainId`\n | `registrar.nameServers`,\n 4\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 connectedDomainId: connectedDomainId,\n });\n\n const reqOpts =\n ambassadorWixPremiumDomainsV1ConnectedDomainSetupInfo.getConnectedDomainSetupInfo(\n payload\n );\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)\n ?.connectedDomainSetupInfo!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: { connectedDomainId: '$[0]' },\n singleArgumentUnchanged: false,\n },\n ['connectedDomainId']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n","import { toURLSearchParams } from '@wix/sdk-runtime/rest-modules';\nimport { resolveUrl } from '@wix/sdk-runtime/rest-modules';\nimport { ResolveUrlOpts } from '@wix/sdk-runtime/rest-modules';\nimport { RequestOptionsFactory } from '@wix/sdk-types';\n\nfunction resolveComWixpressPremiumDomainConnectedConnectedDomainSetupInfoServiceUrl(\n opts: Omit<ResolveUrlOpts, 'domainToMappings'>\n) {\n const domainToMappings = {\n 'www.wixapis.com': [\n {\n srcPath: '/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/v1/domain-setup-info',\n destPath: '/v1/domain-setup-info',\n },\n {\n srcPath: '/premium/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/premium/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n ],\n 'manage._base_domain_': [\n {\n srcPath: '/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/v1/domain-setup-info',\n destPath: '/v1/domain-setup-info',\n },\n ],\n 'www._base_domain_': [\n {\n srcPath: '/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/v1/domain-setup-info',\n destPath: '/v1/domain-setup-info',\n },\n ],\n 'premium._base_domain_': [\n {\n srcPath: '/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/v1/domain-setup-info',\n destPath: '/v1/domain-setup-info',\n },\n ],\n '*.dev.wix-code.com': [\n {\n srcPath: '/premium/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/premium/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n ],\n _: [\n {\n srcPath: '/premium/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/premium/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n ],\n };\n\n return resolveUrl(Object.assign(opts, { domainToMappings }));\n}\n\nconst PACKAGE_NAME = '@wix/auto_sdk_domains_connected-domain-setup-info';\n\n/**\n * Retrieves information for the initial setup of a connected domain.\n *\n *\n * You must pass the relevant Wix account ID in the header of the call.\n *\n * > __Important:__ This call requires an account level API key and cannot be authenticated with the standard authorization header.\n */\nexport function getConnectedDomainSetupInfo(\n payload: object\n): RequestOptionsFactory<any> {\n function __getConnectedDomainSetupInfo({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.premium.domains.v1.connected_domain_setup_info',\n method: 'GET' as any,\n methodFqn:\n 'com.wixpress.premium.domain.connected.ConnectedDomainSetupInfoService.GetConnectedDomainSetupInfo',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveComWixpressPremiumDomainConnectedConnectedDomainSetupInfoServiceUrl(\n {\n protoPath: '/v1/connected-domain-setup-info/{connectedDomainId}',\n data: payload,\n host,\n }\n ),\n params: toURLSearchParams(payload),\n };\n\n return metadata;\n }\n\n return __getConnectedDomainSetupInfo;\n}\n","import { HttpClient, NonNullablePaths } from '@wix/sdk-types';\nimport {\n ConnectedDomainSetupInfo,\n getConnectedDomainSetupInfo as universalGetConnectedDomainSetupInfo,\n} from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js';\n\nexport const __metadata = { PACKAGE_NAME: '@wix/domains' };\n\nexport function getConnectedDomainSetupInfo(\n httpClient: HttpClient\n): GetConnectedDomainSetupInfoSignature {\n return (connectedDomainId: string) =>\n universalGetConnectedDomainSetupInfo(\n connectedDomainId,\n // @ts-ignore\n { httpClient }\n );\n}\n\ninterface GetConnectedDomainSetupInfoSignature {\n /**\n * Retrieves information for the initial setup of a connected domain.\n *\n *\n * You must pass the relevant Wix account ID in the header of the call.\n *\n * > __Important:__ This call requires an account level API key and cannot be authenticated with the standard authorization header.\n * @param - ID of the connected domain to retrieve setup information for.\n * Identical to the domain name including TLD.\n * @returns Retrieved setup information.\n */\n (connectedDomainId: string): Promise<\n NonNullablePaths<\n ConnectedDomainSetupInfo,\n | `nameserverRecord.nsRecord.hostName`\n | `nameserverRecord.nsRecord.ttl`\n | `nameserverRecord.nsRecord.values`\n | `pointingRecords.aRecord.hostName`\n | `pointingRecords.aRecord.ttl`\n | `pointingRecords.aRecord.values`\n | `pointingRecords.cnameRecord.hostName`\n | `pointingRecords.cnameRecord.ttl`\n | `pointingRecords.cnameRecord.value`\n | `subdomainRecords.cnameRecords`\n | `connectedDomainId`\n | `registrar.nameServers`,\n 4\n >\n >;\n}\n\nexport {\n ARecord,\n CanChangeDomainOwnerRequest,\n CanChangeDomainOwnerResponse,\n CnameRecord,\n ConnectedDomainSetupInfo,\n ConnectedDomainSetupInfoDnsRecordsOneOf,\n ConnectionType,\n GetConnectedDomainSetupInfoRequest,\n GetConnectedDomainSetupInfoResponse,\n GetMxRecordsRequest,\n GetMxRecordsResponse,\n GetSetupInfoRequest,\n GetSetupInfoResponse,\n MxRecord,\n NameserverRecord,\n NsRecord,\n PointingRecords,\n PreCreateConnectedDomainRequest,\n PreCreateConnectedDomainResponse,\n Registrar,\n SubdomainRecords,\n} from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js';\n","import { getConnectedDomainSetupInfo as publicGetConnectedDomainSetupInfo } from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.public.js';\nimport { createRESTModule } from '@wix/sdk-runtime/rest-modules';\nimport { BuildRESTFunction, MaybeContext } from '@wix/sdk-types';\n\nexport const getConnectedDomainSetupInfo: MaybeContext<\n BuildRESTFunction<typeof publicGetConnectedDomainSetupInfo> &\n typeof publicGetConnectedDomainSetupInfo\n> = /*#__PURE__*/ createRESTModule(publicGetConnectedDomainSetupInfo);\n\nexport { ConnectionType } from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js';\nexport {\n ConnectedDomainSetupInfo,\n ConnectedDomainSetupInfoDnsRecordsOneOf,\n Registrar,\n NameserverRecord,\n NsRecord,\n PointingRecords,\n ARecord,\n CnameRecord,\n SubdomainRecords,\n GetConnectedDomainSetupInfoRequest,\n GetConnectedDomainSetupInfoResponse,\n GetSetupInfoRequest,\n GetSetupInfoResponse,\n PreCreateConnectedDomainRequest,\n PreCreateConnectedDomainResponse,\n CanChangeDomainOwnerRequest,\n CanChangeDomainOwnerResponse,\n GetMxRecordsRequest,\n GetMxRecordsResponse,\n MxRecord,\n} from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js';\nexport { ConnectionTypeWithLiterals } from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js';\n"],"mappings":"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","names":["getConnectedDomainSetupInfo","import_rest_modules","ConnectionType","getConnectedDomainSetupInfo","sdkTransformError","getConnectedDomainSetupInfo","import_rest_modules","getConnectedDomainSetupInfo"]}
|
|
@@ -141,6 +141,18 @@ interface SubdomainRecords {
|
|
|
141
141
|
*/
|
|
142
142
|
cnameRecords?: CnameRecord[];
|
|
143
143
|
}
|
|
144
|
+
interface GetConnectedDomainSetupInfoRequest {
|
|
145
|
+
/**
|
|
146
|
+
* ID of the connected domain to retrieve setup information for.
|
|
147
|
+
* Identical to the domain name including TLD.
|
|
148
|
+
* @format HOSTNAME
|
|
149
|
+
*/
|
|
150
|
+
connectedDomainId: string;
|
|
151
|
+
}
|
|
152
|
+
interface GetConnectedDomainSetupInfoResponse {
|
|
153
|
+
/** Retrieved setup information. */
|
|
154
|
+
connectedDomainSetupInfo?: ConnectedDomainSetupInfo;
|
|
155
|
+
}
|
|
144
156
|
interface GetSetupInfoRequest {
|
|
145
157
|
/**
|
|
146
158
|
* Domain name including TLD
|
|
@@ -224,18 +236,6 @@ interface MxRecord {
|
|
|
224
236
|
*/
|
|
225
237
|
values?: string[];
|
|
226
238
|
}
|
|
227
|
-
interface GetConnectedDomainSetupInfoRequest {
|
|
228
|
-
/**
|
|
229
|
-
* ID of the connected domain to retrieve setup information for.
|
|
230
|
-
* Identical to the domain name including TLD.
|
|
231
|
-
* @format HOSTNAME
|
|
232
|
-
*/
|
|
233
|
-
connectedDomainId: string;
|
|
234
|
-
}
|
|
235
|
-
interface GetConnectedDomainSetupInfoResponse {
|
|
236
|
-
/** Retrieved setup information. */
|
|
237
|
-
connectedDomainSetupInfo?: ConnectedDomainSetupInfo;
|
|
238
|
-
}
|
|
239
239
|
/**
|
|
240
240
|
* Retrieves information for the initial setup of a connected domain.
|
|
241
241
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../index.typings.ts","../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.ts","../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.http.ts"],"sourcesContent":["export * from './src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js';\n","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 ambassadorWixPremiumDomainsV1ConnectedDomainSetupInfo from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.http.js';\n\n/**\n * A `connectedDomainSetupInfo` object holds information the connected domain's\n * external registrar and some DNS records. You can use this information to guide\n * the site owner through the domain's setup process.\n */\nexport interface ConnectedDomainSetupInfo\n extends ConnectedDomainSetupInfoDnsRecordsOneOf {\n /**\n * Information about domains connected using nameservers. Available only for\n * `{\"connectionType\": \"NAMESERVERS\"}`.\n */\n nameserverRecord?: NameserverRecord;\n /**\n * Information about domains connected by pointing. Available only for\n * `{\"connectionType\": \"POINTING\"}`.\n * @readonly\n */\n pointingRecords?: PointingRecords;\n /**\n * Information about subdomains. Available only for subdomains.\n * @readonly\n */\n subdomainRecords?: SubdomainRecords;\n /**\n * ID of the connected domain. Identical to the domain name including TLD.\n * @format HOSTNAME\n */\n connectedDomainId?: string;\n /**\n * Information about the external domain registrar including current name\n * servers.\n */\n registrar?: Registrar;\n}\n\n/** @oneof */\nexport interface ConnectedDomainSetupInfoDnsRecordsOneOf {\n /**\n * Information about domains connected using nameservers. Available only for\n * `{\"connectionType\": \"NAMESERVERS\"}`.\n */\n nameserverRecord?: NameserverRecord;\n /**\n * Information about domains connected by pointing. Available only for\n * `{\"connectionType\": \"POINTING\"}`.\n * @readonly\n */\n pointingRecords?: PointingRecords;\n /**\n * Information about subdomains. Available only for subdomains.\n * @readonly\n */\n subdomainRecords?: SubdomainRecords;\n}\n\nexport interface Registrar {\n /**\n * Name of the external domain registrar. For subdomains it's the registrar of the root domain.\n * @readonly\n */\n name?: string | null;\n /**\n * Values of the current name server records. In case you connect an external\n * domain using name servers, site owners must replace these current name servers\n * with the new name servers found in `connectedDomainSetupInfo.nameserverRecord.nsRecord.values`\n * during the initial domain setup.\n * The replacement can't be performed through Wix APIs, you must use the\n * infrastructure of the external domain registrar. Read more about\n * [connecting domains using nameservers](https://dev.wix.com/api/rest/account-level-apis/connected-domains/sample-flows#account-level-apis_connected-domains_sample-flows_connect-an-external-domain-using-nameservers).\n * @readonly\n */\n nameServers?: string[];\n}\n\n/** Information about domains connected by nameservers. */\nexport interface NameserverRecord {\n /**\n * Default [nameserver record](https://en.wikipedia.org/wiki/List_of_DNS_record_types#NS).\n * @readonly\n */\n nsRecord?: NsRecord;\n}\n\nexport interface NsRecord {\n /**\n * Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.\n * @format HOSTNAME\n */\n hostName?: string;\n /** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */\n ttl?: number;\n /**\n * DNS record values.\n * @minSize 1\n * @maxSize 10\n */\n values?: string[];\n}\n\n/** Information about domains connected by pointing. */\nexport interface PointingRecords {\n /**\n * [Address record](https://en.wikipedia.org/wiki/List_of_DNS_record_types#A).\n * @readonly\n */\n aRecord?: ARecord;\n /**\n * [Canonical Name record](https://en.wikipedia.org/wiki/CNAME_record).\n * @readonly\n */\n cnameRecord?: CnameRecord;\n}\n\nexport interface ARecord {\n /**\n * Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.\n * @format HOSTNAME\n */\n hostName?: string;\n /** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */\n ttl?: number;\n /**\n * DNS record values.\n * @minSize 1\n * @maxSize 10\n */\n values?: string[];\n}\n\nexport interface CnameRecord {\n /**\n * Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.\n * @format HOSTNAME\n */\n hostName?: string;\n /** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */\n ttl?: number;\n /** DNS record value. */\n value?: string;\n}\n\n/** Information about subdomains. */\nexport interface SubdomainRecords {\n /**\n * [Canonical Name records](https://en.wikipedia.org/wiki/CNAME_record).\n * @readonly\n * @maxSize 2\n */\n cnameRecords?: CnameRecord[];\n}\n\nexport interface GetSetupInfoRequest {\n /**\n * Domain name including TLD\n * @format HOSTNAME\n */\n domain?: string;\n /**\n * How the domain should be to connected the Wix site.\n *\n * + `\"UNKNOWN_CONNECTION_TYPE\"`: supported only for subdomain.\n * + `\"POINTING\"`: Get domain or subdomain setup by pointing\n * + `\"NAMESERVERS\"`: Get domain setup by nameservers\n * + `\"HIDDEN\"`: supported only for subdomain.\n */\n connectionType?: ConnectionTypeWithLiterals;\n /** Whether to return registrar information or not. Default is false. */\n includeRegistrar?: boolean;\n}\n\nexport enum ConnectionType {\n /** There is no information about the connection type. */\n UNKNOWN_CONNECTION_TYPE = 'UNKNOWN_CONNECTION_TYPE',\n /** The domain is connected by pointing. Wix doesn't manage DNS information. */\n POINTING = 'POINTING',\n /** The domain is connected by nameservers. Wix manages DNS information. */\n NAMESERVERS = 'NAMESERVERS',\n /** The domain isn't visible to site visitors. */\n HIDDEN = 'HIDDEN',\n}\n\n/** @enumType */\nexport type ConnectionTypeWithLiterals =\n | ConnectionType\n | 'UNKNOWN_CONNECTION_TYPE'\n | 'POINTING'\n | 'NAMESERVERS'\n | 'HIDDEN';\n\nexport interface GetSetupInfoResponse {\n /** Retrieved setup information. */\n domainSetupInfo?: ConnectedDomainSetupInfo;\n}\n\nexport interface PreCreateConnectedDomainRequest {\n /**\n * Domain name including TLD\n * @format HOSTNAME\n */\n domain?: string;\n}\n\nexport interface PreCreateConnectedDomainResponse {}\n\nexport interface CanChangeDomainOwnerRequest {\n /**\n * Domain name including TLD\n * @format HOSTNAME\n */\n domain?: string;\n}\n\nexport interface CanChangeDomainOwnerResponse {\n /** Whether the domain owner can be changed. */\n canChangeOwner?: boolean;\n}\n\nexport interface GetMxRecordsRequest {\n /**\n * Domain name including TLD\n * @format HOSTNAME\n */\n domain?: string;\n}\n\nexport interface GetMxRecordsResponse {\n /**\n * MX records for the domain.\n * Domain can be either registered or connected.\n * The list will be empty if no MX records are found in the public DNS.\n */\n mxRecords?: MxRecord[];\n}\n\nexport interface MxRecord {\n /**\n * DNS record values. Wix limits DNS records to 50 values per type. External\n * providers may support a different maximum number of DNS records for a\n * specific type, Wix doesn't validate that you don't exceed these external\n * limits.\n *\n * Max: 50 records\n * @minSize 1\n * @maxSize 50\n * @maxLength 1000\n */\n values?: string[];\n}\n\nexport interface GetConnectedDomainSetupInfoRequest {\n /**\n * ID of the connected domain to retrieve setup information for.\n * Identical to the domain name including TLD.\n * @format HOSTNAME\n */\n connectedDomainId: string;\n}\n\nexport interface GetConnectedDomainSetupInfoResponse {\n /** Retrieved setup information. */\n connectedDomainSetupInfo?: ConnectedDomainSetupInfo;\n}\n\n/**\n * Retrieves information for the initial setup of a connected domain.\n *\n *\n * You must pass the relevant Wix account ID in the header of the call.\n *\n * > __Important:__ This call requires an account level API key and cannot be authenticated with the standard authorization header.\n * @param connectedDomainId - ID of the connected domain to retrieve setup information for.\n * Identical to the domain name including TLD.\n * @public\n * @requiredField connectedDomainId\n * @permissionId DOMAINS.READ_CONNECTED_DOMAINS\n * @returns Retrieved setup information.\n * @fqn com.wixpress.premium.domain.connected.ConnectedDomainSetupInfoService.GetConnectedDomainSetupInfo\n */\nexport async function getConnectedDomainSetupInfo(\n connectedDomainId: string\n): Promise<\n NonNullablePaths<\n ConnectedDomainSetupInfo,\n | `nameserverRecord.nsRecord.hostName`\n | `nameserverRecord.nsRecord.ttl`\n | `nameserverRecord.nsRecord.values`\n | `pointingRecords.aRecord.hostName`\n | `pointingRecords.aRecord.ttl`\n | `pointingRecords.aRecord.values`\n | `pointingRecords.cnameRecord.hostName`\n | `pointingRecords.cnameRecord.ttl`\n | `pointingRecords.cnameRecord.value`\n | `subdomainRecords.cnameRecords`\n | `connectedDomainId`\n | `registrar.nameServers`,\n 4\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 connectedDomainId: connectedDomainId,\n });\n\n const reqOpts =\n ambassadorWixPremiumDomainsV1ConnectedDomainSetupInfo.getConnectedDomainSetupInfo(\n payload\n );\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)\n ?.connectedDomainSetupInfo!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: { connectedDomainId: '$[0]' },\n singleArgumentUnchanged: false,\n },\n ['connectedDomainId']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n","import { toURLSearchParams } from '@wix/sdk-runtime/rest-modules';\nimport { resolveUrl } from '@wix/sdk-runtime/rest-modules';\nimport { ResolveUrlOpts } from '@wix/sdk-runtime/rest-modules';\nimport { RequestOptionsFactory } from '@wix/sdk-types';\n\nfunction resolveComWixpressPremiumDomainConnectedConnectedDomainSetupInfoServiceUrl(\n opts: Omit<ResolveUrlOpts, 'domainToMappings'>\n) {\n const domainToMappings = {\n 'www.wixapis.com': [\n {\n srcPath: '/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/v1/domain-setup-info',\n destPath: '/v1/domain-setup-info',\n },\n {\n srcPath: '/premium/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/premium/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n ],\n 'manage._base_domain_': [\n {\n srcPath: '/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/v1/domain-setup-info',\n destPath: '/v1/domain-setup-info',\n },\n ],\n 'www._base_domain_': [\n {\n srcPath: '/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/v1/domain-setup-info',\n destPath: '/v1/domain-setup-info',\n },\n ],\n 'premium._base_domain_': [\n {\n srcPath: '/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/v1/domain-setup-info',\n destPath: '/v1/domain-setup-info',\n },\n ],\n '*.dev.wix-code.com': [\n {\n srcPath: '/premium/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/premium/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n ],\n _: [\n {\n srcPath: '/premium/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/premium/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n ],\n };\n\n return resolveUrl(Object.assign(opts, { domainToMappings }));\n}\n\nconst PACKAGE_NAME = '@wix/auto_sdk_domains_connected-domain-setup-info';\n\n/**\n * Retrieves information for the initial setup of a connected domain.\n *\n *\n * You must pass the relevant Wix account ID in the header of the call.\n *\n * > __Important:__ This call requires an account level API key and cannot be authenticated with the standard authorization header.\n */\nexport function getConnectedDomainSetupInfo(\n payload: object\n): RequestOptionsFactory<any> {\n function __getConnectedDomainSetupInfo({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.premium.domains.v1.connected_domain_setup_info',\n method: 'GET' as any,\n methodFqn:\n 'com.wixpress.premium.domain.connected.ConnectedDomainSetupInfoService.GetConnectedDomainSetupInfo',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveComWixpressPremiumDomainConnectedConnectedDomainSetupInfoServiceUrl(\n {\n protoPath: '/v1/connected-domain-setup-info/{connectedDomainId}',\n data: payload,\n host,\n }\n ),\n params: toURLSearchParams(payload),\n };\n\n return metadata;\n }\n\n return __getConnectedDomainSetupInfo;\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA,qCAAAA;AAAA;AAAA;;;ACAA,6BAAoD;AACpD,oCAGO;;;ACJP,0BAAkC;AAClC,IAAAC,uBAA2B;AAI3B,SAAS,2EACP,MACA;AACA,QAAM,mBAAmB;AAAA,IACvB,mBAAmB;AAAA,MACjB;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,IACA,wBAAwB;AAAA,MACtB;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,IACA,qBAAqB;AAAA,MACnB;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,IACA,yBAAyB;AAAA,MACvB;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,IACA,sBAAsB;AAAA,MACpB;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,IACA,GAAG;AAAA,MACD;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,EACF;AAEA,aAAO,iCAAW,OAAO,OAAO,MAAM,EAAE,iBAAiB,CAAC,CAAC;AAC7D;AAEA,IAAM,eAAe;AAUd,SAAS,4BACd,SAC4B;AAC5B,WAAS,8BAA8B,EAAE,KAAK,GAAQ;AACpD,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;AAAA,QACH;AAAA,UACE,WAAW;AAAA,UACX,MAAM;AAAA,UACN;AAAA,QACF;AAAA,MACF;AAAA,MACA,YAAQ,uCAAkB,OAAO;AAAA,IACnC;AAEA,WAAO;AAAA,EACT;AAEA,SAAO;AACT;;;ADmCO,IAAK,iBAAL,kBAAKC,oBAAL;AAEL,EAAAA,gBAAA,6BAA0B;AAE1B,EAAAA,gBAAA,cAAW;AAEX,EAAAA,gBAAA,iBAAc;AAEd,EAAAA,gBAAA,YAAS;AARC,SAAAA;AAAA,GAAA;AA4GZ,eAAsBC,6BACpB,mBAkBA;AAEA,QAAM,EAAE,YAAY,YAAY,IAAI,UAAU,CAAC;AAK/C,QAAM,cAAU,qEAAsC;AAAA,IACpD;AAAA,EACF,CAAC;AAED,QAAM,UACkD;AAAA,IACpD;AAAA,EACF;AAEF,eAAa,aAAa;AAC1B,MAAI;AACF,UAAM,SAAS,MAAM,WAAW,QAAQ,OAAO;AAC/C,iBAAa,YAAY,MAAM;AAE/B,eAAO,uEAAwC,OAAO,IAAI,GACtD;AAAA,EACN,SAAS,KAAU;AACjB,UAAM,uBAAmB,uBAAAC;AAAA,MACvB;AAAA,MACA;AAAA,QACE,wBAAwB,CAAC;AAAA,QACzB,0BAA0B,EAAE,mBAAmB,OAAO;AAAA,QACtD,yBAAyB;AAAA,MAC3B;AAAA,MACA,CAAC,mBAAmB;AAAA,IACtB;AACA,iBAAa,UAAU,GAAG;AAE1B,UAAM;AAAA,EACR;AACF;","names":["getConnectedDomainSetupInfo","import_rest_modules","ConnectionType","getConnectedDomainSetupInfo","sdkTransformError"]}
|
|
1
|
+
{"version":3,"sources":["../../index.typings.ts","../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.ts","../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.http.ts"],"sourcesContent":["export * from './src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js';\n","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 ambassadorWixPremiumDomainsV1ConnectedDomainSetupInfo from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.http.js';\n\n/**\n * A `connectedDomainSetupInfo` object holds information the connected domain's\n * external registrar and some DNS records. You can use this information to guide\n * the site owner through the domain's setup process.\n */\nexport interface ConnectedDomainSetupInfo\n extends ConnectedDomainSetupInfoDnsRecordsOneOf {\n /**\n * Information about domains connected using nameservers. Available only for\n * `{\"connectionType\": \"NAMESERVERS\"}`.\n */\n nameserverRecord?: NameserverRecord;\n /**\n * Information about domains connected by pointing. Available only for\n * `{\"connectionType\": \"POINTING\"}`.\n * @readonly\n */\n pointingRecords?: PointingRecords;\n /**\n * Information about subdomains. Available only for subdomains.\n * @readonly\n */\n subdomainRecords?: SubdomainRecords;\n /**\n * ID of the connected domain. Identical to the domain name including TLD.\n * @format HOSTNAME\n */\n connectedDomainId?: string;\n /**\n * Information about the external domain registrar including current name\n * servers.\n */\n registrar?: Registrar;\n}\n\n/** @oneof */\nexport interface ConnectedDomainSetupInfoDnsRecordsOneOf {\n /**\n * Information about domains connected using nameservers. Available only for\n * `{\"connectionType\": \"NAMESERVERS\"}`.\n */\n nameserverRecord?: NameserverRecord;\n /**\n * Information about domains connected by pointing. Available only for\n * `{\"connectionType\": \"POINTING\"}`.\n * @readonly\n */\n pointingRecords?: PointingRecords;\n /**\n * Information about subdomains. Available only for subdomains.\n * @readonly\n */\n subdomainRecords?: SubdomainRecords;\n}\n\nexport interface Registrar {\n /**\n * Name of the external domain registrar. For subdomains it's the registrar of the root domain.\n * @readonly\n */\n name?: string | null;\n /**\n * Values of the current name server records. In case you connect an external\n * domain using name servers, site owners must replace these current name servers\n * with the new name servers found in `connectedDomainSetupInfo.nameserverRecord.nsRecord.values`\n * during the initial domain setup.\n * The replacement can't be performed through Wix APIs, you must use the\n * infrastructure of the external domain registrar. Read more about\n * [connecting domains using nameservers](https://dev.wix.com/api/rest/account-level-apis/connected-domains/sample-flows#account-level-apis_connected-domains_sample-flows_connect-an-external-domain-using-nameservers).\n * @readonly\n */\n nameServers?: string[];\n}\n\n/** Information about domains connected by nameservers. */\nexport interface NameserverRecord {\n /**\n * Default [nameserver record](https://en.wikipedia.org/wiki/List_of_DNS_record_types#NS).\n * @readonly\n */\n nsRecord?: NsRecord;\n}\n\nexport interface NsRecord {\n /**\n * Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.\n * @format HOSTNAME\n */\n hostName?: string;\n /** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */\n ttl?: number;\n /**\n * DNS record values.\n * @minSize 1\n * @maxSize 10\n */\n values?: string[];\n}\n\n/** Information about domains connected by pointing. */\nexport interface PointingRecords {\n /**\n * [Address record](https://en.wikipedia.org/wiki/List_of_DNS_record_types#A).\n * @readonly\n */\n aRecord?: ARecord;\n /**\n * [Canonical Name record](https://en.wikipedia.org/wiki/CNAME_record).\n * @readonly\n */\n cnameRecord?: CnameRecord;\n}\n\nexport interface ARecord {\n /**\n * Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.\n * @format HOSTNAME\n */\n hostName?: string;\n /** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */\n ttl?: number;\n /**\n * DNS record values.\n * @minSize 1\n * @maxSize 10\n */\n values?: string[];\n}\n\nexport interface CnameRecord {\n /**\n * Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.\n * @format HOSTNAME\n */\n hostName?: string;\n /** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */\n ttl?: number;\n /** DNS record value. */\n value?: string;\n}\n\n/** Information about subdomains. */\nexport interface SubdomainRecords {\n /**\n * [Canonical Name records](https://en.wikipedia.org/wiki/CNAME_record).\n * @readonly\n * @maxSize 2\n */\n cnameRecords?: CnameRecord[];\n}\n\nexport interface GetConnectedDomainSetupInfoRequest {\n /**\n * ID of the connected domain to retrieve setup information for.\n * Identical to the domain name including TLD.\n * @format HOSTNAME\n */\n connectedDomainId: string;\n}\n\nexport interface GetConnectedDomainSetupInfoResponse {\n /** Retrieved setup information. */\n connectedDomainSetupInfo?: ConnectedDomainSetupInfo;\n}\n\nexport interface GetSetupInfoRequest {\n /**\n * Domain name including TLD\n * @format HOSTNAME\n */\n domain?: string;\n /**\n * How the domain should be to connected the Wix site.\n *\n * + `\"UNKNOWN_CONNECTION_TYPE\"`: supported only for subdomain.\n * + `\"POINTING\"`: Get domain or subdomain setup by pointing\n * + `\"NAMESERVERS\"`: Get domain setup by nameservers\n * + `\"HIDDEN\"`: supported only for subdomain.\n */\n connectionType?: ConnectionTypeWithLiterals;\n /** Whether to return registrar information or not. Default is false. */\n includeRegistrar?: boolean;\n}\n\nexport enum ConnectionType {\n /** There is no information about the connection type. */\n UNKNOWN_CONNECTION_TYPE = 'UNKNOWN_CONNECTION_TYPE',\n /** The domain is connected by pointing. Wix doesn't manage DNS information. */\n POINTING = 'POINTING',\n /** The domain is connected by nameservers. Wix manages DNS information. */\n NAMESERVERS = 'NAMESERVERS',\n /** The domain isn't visible to site visitors. */\n HIDDEN = 'HIDDEN',\n}\n\n/** @enumType */\nexport type ConnectionTypeWithLiterals =\n | ConnectionType\n | 'UNKNOWN_CONNECTION_TYPE'\n | 'POINTING'\n | 'NAMESERVERS'\n | 'HIDDEN';\n\nexport interface GetSetupInfoResponse {\n /** Retrieved setup information. */\n domainSetupInfo?: ConnectedDomainSetupInfo;\n}\n\nexport interface PreCreateConnectedDomainRequest {\n /**\n * Domain name including TLD\n * @format HOSTNAME\n */\n domain?: string;\n}\n\nexport interface PreCreateConnectedDomainResponse {}\n\nexport interface CanChangeDomainOwnerRequest {\n /**\n * Domain name including TLD\n * @format HOSTNAME\n */\n domain?: string;\n}\n\nexport interface CanChangeDomainOwnerResponse {\n /** Whether the domain owner can be changed. */\n canChangeOwner?: boolean;\n}\n\nexport interface GetMxRecordsRequest {\n /**\n * Domain name including TLD\n * @format HOSTNAME\n */\n domain?: string;\n}\n\nexport interface GetMxRecordsResponse {\n /**\n * MX records for the domain.\n * Domain can be either registered or connected.\n * The list will be empty if no MX records are found in the public DNS.\n */\n mxRecords?: MxRecord[];\n}\n\nexport interface MxRecord {\n /**\n * DNS record values. Wix limits DNS records to 50 values per type. External\n * providers may support a different maximum number of DNS records for a\n * specific type, Wix doesn't validate that you don't exceed these external\n * limits.\n *\n * Max: 50 records\n * @minSize 1\n * @maxSize 50\n * @maxLength 1000\n */\n values?: string[];\n}\n\n/**\n * Retrieves information for the initial setup of a connected domain.\n *\n *\n * You must pass the relevant Wix account ID in the header of the call.\n *\n * > __Important:__ This call requires an account level API key and cannot be authenticated with the standard authorization header.\n * @param connectedDomainId - ID of the connected domain to retrieve setup information for.\n * Identical to the domain name including TLD.\n * @public\n * @requiredField connectedDomainId\n * @permissionId DOMAINS.READ_CONNECTED_DOMAINS\n * @returns Retrieved setup information.\n * @fqn com.wixpress.premium.domain.connected.ConnectedDomainSetupInfoService.GetConnectedDomainSetupInfo\n */\nexport async function getConnectedDomainSetupInfo(\n connectedDomainId: string\n): Promise<\n NonNullablePaths<\n ConnectedDomainSetupInfo,\n | `nameserverRecord.nsRecord.hostName`\n | `nameserverRecord.nsRecord.ttl`\n | `nameserverRecord.nsRecord.values`\n | `pointingRecords.aRecord.hostName`\n | `pointingRecords.aRecord.ttl`\n | `pointingRecords.aRecord.values`\n | `pointingRecords.cnameRecord.hostName`\n | `pointingRecords.cnameRecord.ttl`\n | `pointingRecords.cnameRecord.value`\n | `subdomainRecords.cnameRecords`\n | `connectedDomainId`\n | `registrar.nameServers`,\n 4\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 connectedDomainId: connectedDomainId,\n });\n\n const reqOpts =\n ambassadorWixPremiumDomainsV1ConnectedDomainSetupInfo.getConnectedDomainSetupInfo(\n payload\n );\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)\n ?.connectedDomainSetupInfo!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: { connectedDomainId: '$[0]' },\n singleArgumentUnchanged: false,\n },\n ['connectedDomainId']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n","import { toURLSearchParams } from '@wix/sdk-runtime/rest-modules';\nimport { resolveUrl } from '@wix/sdk-runtime/rest-modules';\nimport { ResolveUrlOpts } from '@wix/sdk-runtime/rest-modules';\nimport { RequestOptionsFactory } from '@wix/sdk-types';\n\nfunction resolveComWixpressPremiumDomainConnectedConnectedDomainSetupInfoServiceUrl(\n opts: Omit<ResolveUrlOpts, 'domainToMappings'>\n) {\n const domainToMappings = {\n 'www.wixapis.com': [\n {\n srcPath: '/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/v1/domain-setup-info',\n destPath: '/v1/domain-setup-info',\n },\n {\n srcPath: '/premium/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/premium/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n ],\n 'manage._base_domain_': [\n {\n srcPath: '/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/v1/domain-setup-info',\n destPath: '/v1/domain-setup-info',\n },\n ],\n 'www._base_domain_': [\n {\n srcPath: '/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/v1/domain-setup-info',\n destPath: '/v1/domain-setup-info',\n },\n ],\n 'premium._base_domain_': [\n {\n srcPath: '/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/v1/domain-setup-info',\n destPath: '/v1/domain-setup-info',\n },\n ],\n '*.dev.wix-code.com': [\n {\n srcPath: '/premium/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/premium/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n ],\n _: [\n {\n srcPath: '/premium/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/premium/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n ],\n };\n\n return resolveUrl(Object.assign(opts, { domainToMappings }));\n}\n\nconst PACKAGE_NAME = '@wix/auto_sdk_domains_connected-domain-setup-info';\n\n/**\n * Retrieves information for the initial setup of a connected domain.\n *\n *\n * You must pass the relevant Wix account ID in the header of the call.\n *\n * > __Important:__ This call requires an account level API key and cannot be authenticated with the standard authorization header.\n */\nexport function getConnectedDomainSetupInfo(\n payload: object\n): RequestOptionsFactory<any> {\n function __getConnectedDomainSetupInfo({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.premium.domains.v1.connected_domain_setup_info',\n method: 'GET' as any,\n methodFqn:\n 'com.wixpress.premium.domain.connected.ConnectedDomainSetupInfoService.GetConnectedDomainSetupInfo',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveComWixpressPremiumDomainConnectedConnectedDomainSetupInfoServiceUrl(\n {\n protoPath: '/v1/connected-domain-setup-info/{connectedDomainId}',\n data: payload,\n host,\n }\n ),\n params: toURLSearchParams(payload),\n };\n\n return metadata;\n }\n\n return __getConnectedDomainSetupInfo;\n}\n"],"mappings":"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","names":["getConnectedDomainSetupInfo","import_rest_modules","ConnectionType","getConnectedDomainSetupInfo","sdkTransformError"]}
|
package/build/cjs/meta.d.ts
CHANGED
|
@@ -142,6 +142,18 @@ interface SubdomainRecords {
|
|
|
142
142
|
*/
|
|
143
143
|
cnameRecords?: CnameRecord[];
|
|
144
144
|
}
|
|
145
|
+
interface GetConnectedDomainSetupInfoRequest {
|
|
146
|
+
/**
|
|
147
|
+
* ID of the connected domain to retrieve setup information for.
|
|
148
|
+
* Identical to the domain name including TLD.
|
|
149
|
+
* @format HOSTNAME
|
|
150
|
+
*/
|
|
151
|
+
connectedDomainId: string;
|
|
152
|
+
}
|
|
153
|
+
interface GetConnectedDomainSetupInfoResponse {
|
|
154
|
+
/** Retrieved setup information. */
|
|
155
|
+
connectedDomainSetupInfo?: ConnectedDomainSetupInfo;
|
|
156
|
+
}
|
|
145
157
|
interface GetSetupInfoRequest {
|
|
146
158
|
/**
|
|
147
159
|
* Domain name including TLD
|
|
@@ -225,18 +237,6 @@ interface MxRecord {
|
|
|
225
237
|
*/
|
|
226
238
|
values?: string[];
|
|
227
239
|
}
|
|
228
|
-
interface GetConnectedDomainSetupInfoRequest {
|
|
229
|
-
/**
|
|
230
|
-
* ID of the connected domain to retrieve setup information for.
|
|
231
|
-
* Identical to the domain name including TLD.
|
|
232
|
-
* @format HOSTNAME
|
|
233
|
-
*/
|
|
234
|
-
connectedDomainId: string;
|
|
235
|
-
}
|
|
236
|
-
interface GetConnectedDomainSetupInfoResponse {
|
|
237
|
-
/** Retrieved setup information. */
|
|
238
|
-
connectedDomainSetupInfo?: ConnectedDomainSetupInfo;
|
|
239
|
-
}
|
|
240
240
|
|
|
241
241
|
type __PublicMethodMetaInfo<K = string, M = unknown, T = unknown, S = unknown, Q = unknown, R = unknown> = {
|
|
242
242
|
getUrl: (context: any) => string;
|
package/build/cjs/meta.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../meta.ts","../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.http.ts","../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.types.ts","../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.meta.ts"],"sourcesContent":["export * from './src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.meta.js';\n","import { toURLSearchParams } from '@wix/sdk-runtime/rest-modules';\nimport { resolveUrl } from '@wix/sdk-runtime/rest-modules';\nimport { ResolveUrlOpts } from '@wix/sdk-runtime/rest-modules';\nimport { RequestOptionsFactory } from '@wix/sdk-types';\n\nfunction resolveComWixpressPremiumDomainConnectedConnectedDomainSetupInfoServiceUrl(\n opts: Omit<ResolveUrlOpts, 'domainToMappings'>\n) {\n const domainToMappings = {\n 'www.wixapis.com': [\n {\n srcPath: '/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/v1/domain-setup-info',\n destPath: '/v1/domain-setup-info',\n },\n {\n srcPath: '/premium/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/premium/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n ],\n 'manage._base_domain_': [\n {\n srcPath: '/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/v1/domain-setup-info',\n destPath: '/v1/domain-setup-info',\n },\n ],\n 'www._base_domain_': [\n {\n srcPath: '/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/v1/domain-setup-info',\n destPath: '/v1/domain-setup-info',\n },\n ],\n 'premium._base_domain_': [\n {\n srcPath: '/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/v1/domain-setup-info',\n destPath: '/v1/domain-setup-info',\n },\n ],\n '*.dev.wix-code.com': [\n {\n srcPath: '/premium/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/premium/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n ],\n _: [\n {\n srcPath: '/premium/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/premium/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n ],\n };\n\n return resolveUrl(Object.assign(opts, { domainToMappings }));\n}\n\nconst PACKAGE_NAME = '@wix/auto_sdk_domains_connected-domain-setup-info';\n\n/**\n * Retrieves information for the initial setup of a connected domain.\n *\n *\n * You must pass the relevant Wix account ID in the header of the call.\n *\n * > __Important:__ This call requires an account level API key and cannot be authenticated with the standard authorization header.\n */\nexport function getConnectedDomainSetupInfo(\n payload: object\n): RequestOptionsFactory<any> {\n function __getConnectedDomainSetupInfo({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.premium.domains.v1.connected_domain_setup_info',\n method: 'GET' as any,\n methodFqn:\n 'com.wixpress.premium.domain.connected.ConnectedDomainSetupInfoService.GetConnectedDomainSetupInfo',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveComWixpressPremiumDomainConnectedConnectedDomainSetupInfoServiceUrl(\n {\n protoPath: '/v1/connected-domain-setup-info/{connectedDomainId}',\n data: payload,\n host,\n }\n ),\n params: toURLSearchParams(payload),\n };\n\n return metadata;\n }\n\n return __getConnectedDomainSetupInfo;\n}\n","/**\n * A `connectedDomainSetupInfo` object holds information the connected domain's\n * external registrar and some DNS records. You can use this information to guide\n * the site owner through the domain's setup process.\n */\nexport interface ConnectedDomainSetupInfo\n extends ConnectedDomainSetupInfoDnsRecordsOneOf {\n /**\n * Information about domains connected using nameservers. Available only for\n * `{\"connectionType\": \"NAMESERVERS\"}`.\n */\n nameserverRecord?: NameserverRecord;\n /**\n * Information about domains connected by pointing. Available only for\n * `{\"connectionType\": \"POINTING\"}`.\n * @readonly\n */\n pointingRecords?: PointingRecords;\n /**\n * Information about subdomains. Available only for subdomains.\n * @readonly\n */\n subdomainRecords?: SubdomainRecords;\n /**\n * ID of the connected domain. Identical to the domain name including TLD.\n * @format HOSTNAME\n */\n connectedDomainId?: string;\n /**\n * Information about the external domain registrar including current name\n * servers.\n */\n registrar?: Registrar;\n}\n\n/** @oneof */\nexport interface ConnectedDomainSetupInfoDnsRecordsOneOf {\n /**\n * Information about domains connected using nameservers. Available only for\n * `{\"connectionType\": \"NAMESERVERS\"}`.\n */\n nameserverRecord?: NameserverRecord;\n /**\n * Information about domains connected by pointing. Available only for\n * `{\"connectionType\": \"POINTING\"}`.\n * @readonly\n */\n pointingRecords?: PointingRecords;\n /**\n * Information about subdomains. Available only for subdomains.\n * @readonly\n */\n subdomainRecords?: SubdomainRecords;\n}\n\nexport interface Registrar {\n /**\n * Name of the external domain registrar. For subdomains it's the registrar of the root domain.\n * @readonly\n */\n name?: string | null;\n /**\n * Values of the current name server records. In case you connect an external\n * domain using name servers, site owners must replace these current name servers\n * with the new name servers found in `connectedDomainSetupInfo.nameserverRecord.nsRecord.values`\n * during the initial domain setup.\n * The replacement can't be performed through Wix APIs, you must use the\n * infrastructure of the external domain registrar. Read more about\n * [connecting domains using nameservers](https://dev.wix.com/api/rest/account-level-apis/connected-domains/sample-flows#account-level-apis_connected-domains_sample-flows_connect-an-external-domain-using-nameservers).\n * @readonly\n */\n nameServers?: string[];\n}\n\n/** Information about domains connected by nameservers. */\nexport interface NameserverRecord {\n /**\n * Default [nameserver record](https://en.wikipedia.org/wiki/List_of_DNS_record_types#NS).\n * @readonly\n */\n nsRecord?: NsRecord;\n}\n\nexport interface NsRecord {\n /**\n * Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.\n * @format HOSTNAME\n */\n hostName?: string;\n /** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */\n ttl?: number;\n /**\n * DNS record values.\n * @minSize 1\n * @maxSize 10\n */\n values?: string[];\n}\n\n/** Information about domains connected by pointing. */\nexport interface PointingRecords {\n /**\n * [Address record](https://en.wikipedia.org/wiki/List_of_DNS_record_types#A).\n * @readonly\n */\n aRecord?: ARecord;\n /**\n * [Canonical Name record](https://en.wikipedia.org/wiki/CNAME_record).\n * @readonly\n */\n cnameRecord?: CnameRecord;\n}\n\nexport interface ARecord {\n /**\n * Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.\n * @format HOSTNAME\n */\n hostName?: string;\n /** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */\n ttl?: number;\n /**\n * DNS record values.\n * @minSize 1\n * @maxSize 10\n */\n values?: string[];\n}\n\nexport interface CnameRecord {\n /**\n * Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.\n * @format HOSTNAME\n */\n hostName?: string;\n /** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */\n ttl?: number;\n /** DNS record value. */\n value?: string;\n}\n\n/** Information about subdomains. */\nexport interface SubdomainRecords {\n /**\n * [Canonical Name records](https://en.wikipedia.org/wiki/CNAME_record).\n * @readonly\n * @maxSize 2\n */\n cnameRecords?: CnameRecord[];\n}\n\nexport interface GetSetupInfoRequest {\n /**\n * Domain name including TLD\n * @format HOSTNAME\n */\n domain?: string;\n /**\n * How the domain should be to connected the Wix site.\n *\n * + `\"UNKNOWN_CONNECTION_TYPE\"`: supported only for subdomain.\n * + `\"POINTING\"`: Get domain or subdomain setup by pointing\n * + `\"NAMESERVERS\"`: Get domain setup by nameservers\n * + `\"HIDDEN\"`: supported only for subdomain.\n */\n connectionType?: ConnectionTypeWithLiterals;\n /** Whether to return registrar information or not. Default is false. */\n includeRegistrar?: boolean;\n}\n\nexport enum ConnectionType {\n /** There is no information about the connection type. */\n UNKNOWN_CONNECTION_TYPE = 'UNKNOWN_CONNECTION_TYPE',\n /** The domain is connected by pointing. Wix doesn't manage DNS information. */\n POINTING = 'POINTING',\n /** The domain is connected by nameservers. Wix manages DNS information. */\n NAMESERVERS = 'NAMESERVERS',\n /** The domain isn't visible to site visitors. */\n HIDDEN = 'HIDDEN',\n}\n\n/** @enumType */\nexport type ConnectionTypeWithLiterals =\n | ConnectionType\n | 'UNKNOWN_CONNECTION_TYPE'\n | 'POINTING'\n | 'NAMESERVERS'\n | 'HIDDEN';\n\nexport interface GetSetupInfoResponse {\n /** Retrieved setup information. */\n domainSetupInfo?: ConnectedDomainSetupInfo;\n}\n\nexport interface PreCreateConnectedDomainRequest {\n /**\n * Domain name including TLD\n * @format HOSTNAME\n */\n domain?: string;\n}\n\nexport interface PreCreateConnectedDomainResponse {}\n\nexport interface CanChangeDomainOwnerRequest {\n /**\n * Domain name including TLD\n * @format HOSTNAME\n */\n domain?: string;\n}\n\nexport interface CanChangeDomainOwnerResponse {\n /** Whether the domain owner can be changed. */\n canChangeOwner?: boolean;\n}\n\nexport interface GetMxRecordsRequest {\n /**\n * Domain name including TLD\n * @format HOSTNAME\n */\n domain?: string;\n}\n\nexport interface GetMxRecordsResponse {\n /**\n * MX records for the domain.\n * Domain can be either registered or connected.\n * The list will be empty if no MX records are found in the public DNS.\n */\n mxRecords?: MxRecord[];\n}\n\nexport interface MxRecord {\n /**\n * DNS record values. Wix limits DNS records to 50 values per type. External\n * providers may support a different maximum number of DNS records for a\n * specific type, Wix doesn't validate that you don't exceed these external\n * limits.\n *\n * Max: 50 records\n * @minSize 1\n * @maxSize 50\n * @maxLength 1000\n */\n values?: string[];\n}\n\nexport interface GetConnectedDomainSetupInfoRequest {\n /**\n * ID of the connected domain to retrieve setup information for.\n * Identical to the domain name including TLD.\n * @format HOSTNAME\n */\n connectedDomainId: string;\n}\n\nexport interface GetConnectedDomainSetupInfoResponse {\n /** Retrieved setup information. */\n connectedDomainSetupInfo?: ConnectedDomainSetupInfo;\n}\n","import * as ambassadorWixPremiumDomainsV1ConnectedDomainSetupInfo from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.http.js';\nimport * as ambassadorWixPremiumDomainsV1ConnectedDomainSetupInfoTypes from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.types.js';\nimport * as ambassadorWixPremiumDomainsV1ConnectedDomainSetupInfoUniversalTypes from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js';\n\nexport type __PublicMethodMetaInfo<\n K = string,\n M = unknown,\n T = unknown,\n S = unknown,\n Q = unknown,\n R = unknown\n> = {\n getUrl: (context: any) => string;\n httpMethod: K;\n path: string;\n pathParams: M;\n __requestType: T;\n __originalRequestType: S;\n __responseType: Q;\n __originalResponseType: R;\n};\n\nexport function getConnectedDomainSetupInfo(): __PublicMethodMetaInfo<\n 'GET',\n { connectedDomainId: string },\n ambassadorWixPremiumDomainsV1ConnectedDomainSetupInfoUniversalTypes.GetConnectedDomainSetupInfoRequest,\n ambassadorWixPremiumDomainsV1ConnectedDomainSetupInfoTypes.GetConnectedDomainSetupInfoRequest,\n ambassadorWixPremiumDomainsV1ConnectedDomainSetupInfoUniversalTypes.GetConnectedDomainSetupInfoResponse,\n ambassadorWixPremiumDomainsV1ConnectedDomainSetupInfoTypes.GetConnectedDomainSetupInfoResponse\n> {\n const payload = { connectedDomainId: ':connectedDomainId' } as any;\n\n const getRequestOptions =\n ambassadorWixPremiumDomainsV1ConnectedDomainSetupInfo.getConnectedDomainSetupInfo(\n payload\n );\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'GET',\n path: '/v1/connected-domain-setup-info/{connectedDomainId}',\n pathParams: { connectedDomainId: 'connectedDomainId' },\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport {\n ConnectedDomainSetupInfo as ConnectedDomainSetupInfoOriginal,\n ConnectedDomainSetupInfoDnsRecordsOneOf as ConnectedDomainSetupInfoDnsRecordsOneOfOriginal,\n Registrar as RegistrarOriginal,\n NameserverRecord as NameserverRecordOriginal,\n NsRecord as NsRecordOriginal,\n PointingRecords as PointingRecordsOriginal,\n ARecord as ARecordOriginal,\n CnameRecord as CnameRecordOriginal,\n SubdomainRecords as SubdomainRecordsOriginal,\n GetSetupInfoRequest as GetSetupInfoRequestOriginal,\n ConnectionType as ConnectionTypeOriginal,\n ConnectionTypeWithLiterals as ConnectionTypeWithLiteralsOriginal,\n GetSetupInfoResponse as GetSetupInfoResponseOriginal,\n PreCreateConnectedDomainRequest as PreCreateConnectedDomainRequestOriginal,\n PreCreateConnectedDomainResponse as PreCreateConnectedDomainResponseOriginal,\n CanChangeDomainOwnerRequest as CanChangeDomainOwnerRequestOriginal,\n CanChangeDomainOwnerResponse as CanChangeDomainOwnerResponseOriginal,\n GetMxRecordsRequest as GetMxRecordsRequestOriginal,\n GetMxRecordsResponse as GetMxRecordsResponseOriginal,\n MxRecord as MxRecordOriginal,\n GetConnectedDomainSetupInfoRequest as GetConnectedDomainSetupInfoRequestOriginal,\n GetConnectedDomainSetupInfoResponse as GetConnectedDomainSetupInfoResponseOriginal,\n} from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.types.js';\n"],"mappings":"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","names":["getConnectedDomainSetupInfo","import_rest_modules","ConnectionType","getConnectedDomainSetupInfo"]}
|
|
1
|
+
{"version":3,"sources":["../../meta.ts","../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.http.ts","../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.types.ts","../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.meta.ts"],"sourcesContent":["export * from './src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.meta.js';\n","import { toURLSearchParams } from '@wix/sdk-runtime/rest-modules';\nimport { resolveUrl } from '@wix/sdk-runtime/rest-modules';\nimport { ResolveUrlOpts } from '@wix/sdk-runtime/rest-modules';\nimport { RequestOptionsFactory } from '@wix/sdk-types';\n\nfunction resolveComWixpressPremiumDomainConnectedConnectedDomainSetupInfoServiceUrl(\n opts: Omit<ResolveUrlOpts, 'domainToMappings'>\n) {\n const domainToMappings = {\n 'www.wixapis.com': [\n {\n srcPath: '/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/v1/domain-setup-info',\n destPath: '/v1/domain-setup-info',\n },\n {\n srcPath: '/premium/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/premium/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n ],\n 'manage._base_domain_': [\n {\n srcPath: '/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/v1/domain-setup-info',\n destPath: '/v1/domain-setup-info',\n },\n ],\n 'www._base_domain_': [\n {\n srcPath: '/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/v1/domain-setup-info',\n destPath: '/v1/domain-setup-info',\n },\n ],\n 'premium._base_domain_': [\n {\n srcPath: '/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/v1/domain-setup-info',\n destPath: '/v1/domain-setup-info',\n },\n ],\n '*.dev.wix-code.com': [\n {\n srcPath: '/premium/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/premium/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n ],\n _: [\n {\n srcPath: '/premium/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/premium/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n ],\n };\n\n return resolveUrl(Object.assign(opts, { domainToMappings }));\n}\n\nconst PACKAGE_NAME = '@wix/auto_sdk_domains_connected-domain-setup-info';\n\n/**\n * Retrieves information for the initial setup of a connected domain.\n *\n *\n * You must pass the relevant Wix account ID in the header of the call.\n *\n * > __Important:__ This call requires an account level API key and cannot be authenticated with the standard authorization header.\n */\nexport function getConnectedDomainSetupInfo(\n payload: object\n): RequestOptionsFactory<any> {\n function __getConnectedDomainSetupInfo({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.premium.domains.v1.connected_domain_setup_info',\n method: 'GET' as any,\n methodFqn:\n 'com.wixpress.premium.domain.connected.ConnectedDomainSetupInfoService.GetConnectedDomainSetupInfo',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveComWixpressPremiumDomainConnectedConnectedDomainSetupInfoServiceUrl(\n {\n protoPath: '/v1/connected-domain-setup-info/{connectedDomainId}',\n data: payload,\n host,\n }\n ),\n params: toURLSearchParams(payload),\n };\n\n return metadata;\n }\n\n return __getConnectedDomainSetupInfo;\n}\n","/**\n * A `connectedDomainSetupInfo` object holds information the connected domain's\n * external registrar and some DNS records. You can use this information to guide\n * the site owner through the domain's setup process.\n */\nexport interface ConnectedDomainSetupInfo\n extends ConnectedDomainSetupInfoDnsRecordsOneOf {\n /**\n * Information about domains connected using nameservers. Available only for\n * `{\"connectionType\": \"NAMESERVERS\"}`.\n */\n nameserverRecord?: NameserverRecord;\n /**\n * Information about domains connected by pointing. Available only for\n * `{\"connectionType\": \"POINTING\"}`.\n * @readonly\n */\n pointingRecords?: PointingRecords;\n /**\n * Information about subdomains. Available only for subdomains.\n * @readonly\n */\n subdomainRecords?: SubdomainRecords;\n /**\n * ID of the connected domain. Identical to the domain name including TLD.\n * @format HOSTNAME\n */\n connectedDomainId?: string;\n /**\n * Information about the external domain registrar including current name\n * servers.\n */\n registrar?: Registrar;\n}\n\n/** @oneof */\nexport interface ConnectedDomainSetupInfoDnsRecordsOneOf {\n /**\n * Information about domains connected using nameservers. Available only for\n * `{\"connectionType\": \"NAMESERVERS\"}`.\n */\n nameserverRecord?: NameserverRecord;\n /**\n * Information about domains connected by pointing. Available only for\n * `{\"connectionType\": \"POINTING\"}`.\n * @readonly\n */\n pointingRecords?: PointingRecords;\n /**\n * Information about subdomains. Available only for subdomains.\n * @readonly\n */\n subdomainRecords?: SubdomainRecords;\n}\n\nexport interface Registrar {\n /**\n * Name of the external domain registrar. For subdomains it's the registrar of the root domain.\n * @readonly\n */\n name?: string | null;\n /**\n * Values of the current name server records. In case you connect an external\n * domain using name servers, site owners must replace these current name servers\n * with the new name servers found in `connectedDomainSetupInfo.nameserverRecord.nsRecord.values`\n * during the initial domain setup.\n * The replacement can't be performed through Wix APIs, you must use the\n * infrastructure of the external domain registrar. Read more about\n * [connecting domains using nameservers](https://dev.wix.com/api/rest/account-level-apis/connected-domains/sample-flows#account-level-apis_connected-domains_sample-flows_connect-an-external-domain-using-nameservers).\n * @readonly\n */\n nameServers?: string[];\n}\n\n/** Information about domains connected by nameservers. */\nexport interface NameserverRecord {\n /**\n * Default [nameserver record](https://en.wikipedia.org/wiki/List_of_DNS_record_types#NS).\n * @readonly\n */\n nsRecord?: NsRecord;\n}\n\nexport interface NsRecord {\n /**\n * Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.\n * @format HOSTNAME\n */\n hostName?: string;\n /** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */\n ttl?: number;\n /**\n * DNS record values.\n * @minSize 1\n * @maxSize 10\n */\n values?: string[];\n}\n\n/** Information about domains connected by pointing. */\nexport interface PointingRecords {\n /**\n * [Address record](https://en.wikipedia.org/wiki/List_of_DNS_record_types#A).\n * @readonly\n */\n aRecord?: ARecord;\n /**\n * [Canonical Name record](https://en.wikipedia.org/wiki/CNAME_record).\n * @readonly\n */\n cnameRecord?: CnameRecord;\n}\n\nexport interface ARecord {\n /**\n * Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.\n * @format HOSTNAME\n */\n hostName?: string;\n /** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */\n ttl?: number;\n /**\n * DNS record values.\n * @minSize 1\n * @maxSize 10\n */\n values?: string[];\n}\n\nexport interface CnameRecord {\n /**\n * Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.\n * @format HOSTNAME\n */\n hostName?: string;\n /** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */\n ttl?: number;\n /** DNS record value. */\n value?: string;\n}\n\n/** Information about subdomains. */\nexport interface SubdomainRecords {\n /**\n * [Canonical Name records](https://en.wikipedia.org/wiki/CNAME_record).\n * @readonly\n * @maxSize 2\n */\n cnameRecords?: CnameRecord[];\n}\n\nexport interface GetConnectedDomainSetupInfoRequest {\n /**\n * ID of the connected domain to retrieve setup information for.\n * Identical to the domain name including TLD.\n * @format HOSTNAME\n */\n connectedDomainId: string;\n}\n\nexport interface GetConnectedDomainSetupInfoResponse {\n /** Retrieved setup information. */\n connectedDomainSetupInfo?: ConnectedDomainSetupInfo;\n}\n\nexport interface GetSetupInfoRequest {\n /**\n * Domain name including TLD\n * @format HOSTNAME\n */\n domain?: string;\n /**\n * How the domain should be to connected the Wix site.\n *\n * + `\"UNKNOWN_CONNECTION_TYPE\"`: supported only for subdomain.\n * + `\"POINTING\"`: Get domain or subdomain setup by pointing\n * + `\"NAMESERVERS\"`: Get domain setup by nameservers\n * + `\"HIDDEN\"`: supported only for subdomain.\n */\n connectionType?: ConnectionTypeWithLiterals;\n /** Whether to return registrar information or not. Default is false. */\n includeRegistrar?: boolean;\n}\n\nexport enum ConnectionType {\n /** There is no information about the connection type. */\n UNKNOWN_CONNECTION_TYPE = 'UNKNOWN_CONNECTION_TYPE',\n /** The domain is connected by pointing. Wix doesn't manage DNS information. */\n POINTING = 'POINTING',\n /** The domain is connected by nameservers. Wix manages DNS information. */\n NAMESERVERS = 'NAMESERVERS',\n /** The domain isn't visible to site visitors. */\n HIDDEN = 'HIDDEN',\n}\n\n/** @enumType */\nexport type ConnectionTypeWithLiterals =\n | ConnectionType\n | 'UNKNOWN_CONNECTION_TYPE'\n | 'POINTING'\n | 'NAMESERVERS'\n | 'HIDDEN';\n\nexport interface GetSetupInfoResponse {\n /** Retrieved setup information. */\n domainSetupInfo?: ConnectedDomainSetupInfo;\n}\n\nexport interface PreCreateConnectedDomainRequest {\n /**\n * Domain name including TLD\n * @format HOSTNAME\n */\n domain?: string;\n}\n\nexport interface PreCreateConnectedDomainResponse {}\n\nexport interface CanChangeDomainOwnerRequest {\n /**\n * Domain name including TLD\n * @format HOSTNAME\n */\n domain?: string;\n}\n\nexport interface CanChangeDomainOwnerResponse {\n /** Whether the domain owner can be changed. */\n canChangeOwner?: boolean;\n}\n\nexport interface GetMxRecordsRequest {\n /**\n * Domain name including TLD\n * @format HOSTNAME\n */\n domain?: string;\n}\n\nexport interface GetMxRecordsResponse {\n /**\n * MX records for the domain.\n * Domain can be either registered or connected.\n * The list will be empty if no MX records are found in the public DNS.\n */\n mxRecords?: MxRecord[];\n}\n\nexport interface MxRecord {\n /**\n * DNS record values. Wix limits DNS records to 50 values per type. External\n * providers may support a different maximum number of DNS records for a\n * specific type, Wix doesn't validate that you don't exceed these external\n * limits.\n *\n * Max: 50 records\n * @minSize 1\n * @maxSize 50\n * @maxLength 1000\n */\n values?: string[];\n}\n","import * as ambassadorWixPremiumDomainsV1ConnectedDomainSetupInfo from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.http.js';\nimport * as ambassadorWixPremiumDomainsV1ConnectedDomainSetupInfoTypes from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.types.js';\nimport * as ambassadorWixPremiumDomainsV1ConnectedDomainSetupInfoUniversalTypes from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js';\n\nexport type __PublicMethodMetaInfo<\n K = string,\n M = unknown,\n T = unknown,\n S = unknown,\n Q = unknown,\n R = unknown\n> = {\n getUrl: (context: any) => string;\n httpMethod: K;\n path: string;\n pathParams: M;\n __requestType: T;\n __originalRequestType: S;\n __responseType: Q;\n __originalResponseType: R;\n};\n\nexport function getConnectedDomainSetupInfo(): __PublicMethodMetaInfo<\n 'GET',\n { connectedDomainId: string },\n ambassadorWixPremiumDomainsV1ConnectedDomainSetupInfoUniversalTypes.GetConnectedDomainSetupInfoRequest,\n ambassadorWixPremiumDomainsV1ConnectedDomainSetupInfoTypes.GetConnectedDomainSetupInfoRequest,\n ambassadorWixPremiumDomainsV1ConnectedDomainSetupInfoUniversalTypes.GetConnectedDomainSetupInfoResponse,\n ambassadorWixPremiumDomainsV1ConnectedDomainSetupInfoTypes.GetConnectedDomainSetupInfoResponse\n> {\n const payload = { connectedDomainId: ':connectedDomainId' } as any;\n\n const getRequestOptions =\n ambassadorWixPremiumDomainsV1ConnectedDomainSetupInfo.getConnectedDomainSetupInfo(\n payload\n );\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'GET',\n path: '/v1/connected-domain-setup-info/{connectedDomainId}',\n pathParams: { connectedDomainId: 'connectedDomainId' },\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport {\n ConnectedDomainSetupInfo as ConnectedDomainSetupInfoOriginal,\n ConnectedDomainSetupInfoDnsRecordsOneOf as ConnectedDomainSetupInfoDnsRecordsOneOfOriginal,\n Registrar as RegistrarOriginal,\n NameserverRecord as NameserverRecordOriginal,\n NsRecord as NsRecordOriginal,\n PointingRecords as PointingRecordsOriginal,\n ARecord as ARecordOriginal,\n CnameRecord as CnameRecordOriginal,\n SubdomainRecords as SubdomainRecordsOriginal,\n GetConnectedDomainSetupInfoRequest as GetConnectedDomainSetupInfoRequestOriginal,\n GetConnectedDomainSetupInfoResponse as GetConnectedDomainSetupInfoResponseOriginal,\n GetSetupInfoRequest as GetSetupInfoRequestOriginal,\n ConnectionType as ConnectionTypeOriginal,\n ConnectionTypeWithLiterals as ConnectionTypeWithLiteralsOriginal,\n GetSetupInfoResponse as GetSetupInfoResponseOriginal,\n PreCreateConnectedDomainRequest as PreCreateConnectedDomainRequestOriginal,\n PreCreateConnectedDomainResponse as PreCreateConnectedDomainResponseOriginal,\n CanChangeDomainOwnerRequest as CanChangeDomainOwnerRequestOriginal,\n CanChangeDomainOwnerResponse as CanChangeDomainOwnerResponseOriginal,\n GetMxRecordsRequest as GetMxRecordsRequestOriginal,\n GetMxRecordsResponse as GetMxRecordsResponseOriginal,\n MxRecord as MxRecordOriginal,\n} from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.types.js';\n"],"mappings":"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","names":["getConnectedDomainSetupInfo","import_rest_modules","ConnectionType","getConnectedDomainSetupInfo"]}
|
package/build/es/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.ts","../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.http.ts","../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.public.ts","../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.context.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 ambassadorWixPremiumDomainsV1ConnectedDomainSetupInfo from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.http.js';\n\n/**\n * A `connectedDomainSetupInfo` object holds information the connected domain's\n * external registrar and some DNS records. You can use this information to guide\n * the site owner through the domain's setup process.\n */\nexport interface ConnectedDomainSetupInfo\n extends ConnectedDomainSetupInfoDnsRecordsOneOf {\n /**\n * Information about domains connected using nameservers. Available only for\n * `{\"connectionType\": \"NAMESERVERS\"}`.\n */\n nameserverRecord?: NameserverRecord;\n /**\n * Information about domains connected by pointing. Available only for\n * `{\"connectionType\": \"POINTING\"}`.\n * @readonly\n */\n pointingRecords?: PointingRecords;\n /**\n * Information about subdomains. Available only for subdomains.\n * @readonly\n */\n subdomainRecords?: SubdomainRecords;\n /**\n * ID of the connected domain. Identical to the domain name including TLD.\n * @format HOSTNAME\n */\n connectedDomainId?: string;\n /**\n * Information about the external domain registrar including current name\n * servers.\n */\n registrar?: Registrar;\n}\n\n/** @oneof */\nexport interface ConnectedDomainSetupInfoDnsRecordsOneOf {\n /**\n * Information about domains connected using nameservers. Available only for\n * `{\"connectionType\": \"NAMESERVERS\"}`.\n */\n nameserverRecord?: NameserverRecord;\n /**\n * Information about domains connected by pointing. Available only for\n * `{\"connectionType\": \"POINTING\"}`.\n * @readonly\n */\n pointingRecords?: PointingRecords;\n /**\n * Information about subdomains. Available only for subdomains.\n * @readonly\n */\n subdomainRecords?: SubdomainRecords;\n}\n\nexport interface Registrar {\n /**\n * Name of the external domain registrar. For subdomains it's the registrar of the root domain.\n * @readonly\n */\n name?: string | null;\n /**\n * Values of the current name server records. In case you connect an external\n * domain using name servers, site owners must replace these current name servers\n * with the new name servers found in `connectedDomainSetupInfo.nameserverRecord.nsRecord.values`\n * during the initial domain setup.\n * The replacement can't be performed through Wix APIs, you must use the\n * infrastructure of the external domain registrar. Read more about\n * [connecting domains using nameservers](https://dev.wix.com/api/rest/account-level-apis/connected-domains/sample-flows#account-level-apis_connected-domains_sample-flows_connect-an-external-domain-using-nameservers).\n * @readonly\n */\n nameServers?: string[];\n}\n\n/** Information about domains connected by nameservers. */\nexport interface NameserverRecord {\n /**\n * Default [nameserver record](https://en.wikipedia.org/wiki/List_of_DNS_record_types#NS).\n * @readonly\n */\n nsRecord?: NsRecord;\n}\n\nexport interface NsRecord {\n /**\n * Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.\n * @format HOSTNAME\n */\n hostName?: string;\n /** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */\n ttl?: number;\n /**\n * DNS record values.\n * @minSize 1\n * @maxSize 10\n */\n values?: string[];\n}\n\n/** Information about domains connected by pointing. */\nexport interface PointingRecords {\n /**\n * [Address record](https://en.wikipedia.org/wiki/List_of_DNS_record_types#A).\n * @readonly\n */\n aRecord?: ARecord;\n /**\n * [Canonical Name record](https://en.wikipedia.org/wiki/CNAME_record).\n * @readonly\n */\n cnameRecord?: CnameRecord;\n}\n\nexport interface ARecord {\n /**\n * Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.\n * @format HOSTNAME\n */\n hostName?: string;\n /** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */\n ttl?: number;\n /**\n * DNS record values.\n * @minSize 1\n * @maxSize 10\n */\n values?: string[];\n}\n\nexport interface CnameRecord {\n /**\n * Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.\n * @format HOSTNAME\n */\n hostName?: string;\n /** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */\n ttl?: number;\n /** DNS record value. */\n value?: string;\n}\n\n/** Information about subdomains. */\nexport interface SubdomainRecords {\n /**\n * [Canonical Name records](https://en.wikipedia.org/wiki/CNAME_record).\n * @readonly\n * @maxSize 2\n */\n cnameRecords?: CnameRecord[];\n}\n\nexport interface GetSetupInfoRequest {\n /**\n * Domain name including TLD\n * @format HOSTNAME\n */\n domain?: string;\n /**\n * How the domain should be to connected the Wix site.\n *\n * + `\"UNKNOWN_CONNECTION_TYPE\"`: supported only for subdomain.\n * + `\"POINTING\"`: Get domain or subdomain setup by pointing\n * + `\"NAMESERVERS\"`: Get domain setup by nameservers\n * + `\"HIDDEN\"`: supported only for subdomain.\n */\n connectionType?: ConnectionTypeWithLiterals;\n /** Whether to return registrar information or not. Default is false. */\n includeRegistrar?: boolean;\n}\n\nexport enum ConnectionType {\n /** There is no information about the connection type. */\n UNKNOWN_CONNECTION_TYPE = 'UNKNOWN_CONNECTION_TYPE',\n /** The domain is connected by pointing. Wix doesn't manage DNS information. */\n POINTING = 'POINTING',\n /** The domain is connected by nameservers. Wix manages DNS information. */\n NAMESERVERS = 'NAMESERVERS',\n /** The domain isn't visible to site visitors. */\n HIDDEN = 'HIDDEN',\n}\n\n/** @enumType */\nexport type ConnectionTypeWithLiterals =\n | ConnectionType\n | 'UNKNOWN_CONNECTION_TYPE'\n | 'POINTING'\n | 'NAMESERVERS'\n | 'HIDDEN';\n\nexport interface GetSetupInfoResponse {\n /** Retrieved setup information. */\n domainSetupInfo?: ConnectedDomainSetupInfo;\n}\n\nexport interface PreCreateConnectedDomainRequest {\n /**\n * Domain name including TLD\n * @format HOSTNAME\n */\n domain?: string;\n}\n\nexport interface PreCreateConnectedDomainResponse {}\n\nexport interface CanChangeDomainOwnerRequest {\n /**\n * Domain name including TLD\n * @format HOSTNAME\n */\n domain?: string;\n}\n\nexport interface CanChangeDomainOwnerResponse {\n /** Whether the domain owner can be changed. */\n canChangeOwner?: boolean;\n}\n\nexport interface GetMxRecordsRequest {\n /**\n * Domain name including TLD\n * @format HOSTNAME\n */\n domain?: string;\n}\n\nexport interface GetMxRecordsResponse {\n /**\n * MX records for the domain.\n * Domain can be either registered or connected.\n * The list will be empty if no MX records are found in the public DNS.\n */\n mxRecords?: MxRecord[];\n}\n\nexport interface MxRecord {\n /**\n * DNS record values. Wix limits DNS records to 50 values per type. External\n * providers may support a different maximum number of DNS records for a\n * specific type, Wix doesn't validate that you don't exceed these external\n * limits.\n *\n * Max: 50 records\n * @minSize 1\n * @maxSize 50\n * @maxLength 1000\n */\n values?: string[];\n}\n\nexport interface GetConnectedDomainSetupInfoRequest {\n /**\n * ID of the connected domain to retrieve setup information for.\n * Identical to the domain name including TLD.\n * @format HOSTNAME\n */\n connectedDomainId: string;\n}\n\nexport interface GetConnectedDomainSetupInfoResponse {\n /** Retrieved setup information. */\n connectedDomainSetupInfo?: ConnectedDomainSetupInfo;\n}\n\n/**\n * Retrieves information for the initial setup of a connected domain.\n *\n *\n * You must pass the relevant Wix account ID in the header of the call.\n *\n * > __Important:__ This call requires an account level API key and cannot be authenticated with the standard authorization header.\n * @param connectedDomainId - ID of the connected domain to retrieve setup information for.\n * Identical to the domain name including TLD.\n * @public\n * @requiredField connectedDomainId\n * @permissionId DOMAINS.READ_CONNECTED_DOMAINS\n * @returns Retrieved setup information.\n * @fqn com.wixpress.premium.domain.connected.ConnectedDomainSetupInfoService.GetConnectedDomainSetupInfo\n */\nexport async function getConnectedDomainSetupInfo(\n connectedDomainId: string\n): Promise<\n NonNullablePaths<\n ConnectedDomainSetupInfo,\n | `nameserverRecord.nsRecord.hostName`\n | `nameserverRecord.nsRecord.ttl`\n | `nameserverRecord.nsRecord.values`\n | `pointingRecords.aRecord.hostName`\n | `pointingRecords.aRecord.ttl`\n | `pointingRecords.aRecord.values`\n | `pointingRecords.cnameRecord.hostName`\n | `pointingRecords.cnameRecord.ttl`\n | `pointingRecords.cnameRecord.value`\n | `subdomainRecords.cnameRecords`\n | `connectedDomainId`\n | `registrar.nameServers`,\n 4\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 connectedDomainId: connectedDomainId,\n });\n\n const reqOpts =\n ambassadorWixPremiumDomainsV1ConnectedDomainSetupInfo.getConnectedDomainSetupInfo(\n payload\n );\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)\n ?.connectedDomainSetupInfo!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: { connectedDomainId: '$[0]' },\n singleArgumentUnchanged: false,\n },\n ['connectedDomainId']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n","import { toURLSearchParams } from '@wix/sdk-runtime/rest-modules';\nimport { resolveUrl } from '@wix/sdk-runtime/rest-modules';\nimport { ResolveUrlOpts } from '@wix/sdk-runtime/rest-modules';\nimport { RequestOptionsFactory } from '@wix/sdk-types';\n\nfunction resolveComWixpressPremiumDomainConnectedConnectedDomainSetupInfoServiceUrl(\n opts: Omit<ResolveUrlOpts, 'domainToMappings'>\n) {\n const domainToMappings = {\n 'www.wixapis.com': [\n {\n srcPath: '/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/v1/domain-setup-info',\n destPath: '/v1/domain-setup-info',\n },\n {\n srcPath: '/premium/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/premium/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n ],\n 'manage._base_domain_': [\n {\n srcPath: '/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/v1/domain-setup-info',\n destPath: '/v1/domain-setup-info',\n },\n ],\n 'www._base_domain_': [\n {\n srcPath: '/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/v1/domain-setup-info',\n destPath: '/v1/domain-setup-info',\n },\n ],\n 'premium._base_domain_': [\n {\n srcPath: '/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/v1/domain-setup-info',\n destPath: '/v1/domain-setup-info',\n },\n ],\n '*.dev.wix-code.com': [\n {\n srcPath: '/premium/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/premium/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n ],\n _: [\n {\n srcPath: '/premium/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/premium/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n ],\n };\n\n return resolveUrl(Object.assign(opts, { domainToMappings }));\n}\n\nconst PACKAGE_NAME = '@wix/auto_sdk_domains_connected-domain-setup-info';\n\n/**\n * Retrieves information for the initial setup of a connected domain.\n *\n *\n * You must pass the relevant Wix account ID in the header of the call.\n *\n * > __Important:__ This call requires an account level API key and cannot be authenticated with the standard authorization header.\n */\nexport function getConnectedDomainSetupInfo(\n payload: object\n): RequestOptionsFactory<any> {\n function __getConnectedDomainSetupInfo({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.premium.domains.v1.connected_domain_setup_info',\n method: 'GET' as any,\n methodFqn:\n 'com.wixpress.premium.domain.connected.ConnectedDomainSetupInfoService.GetConnectedDomainSetupInfo',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveComWixpressPremiumDomainConnectedConnectedDomainSetupInfoServiceUrl(\n {\n protoPath: '/v1/connected-domain-setup-info/{connectedDomainId}',\n data: payload,\n host,\n }\n ),\n params: toURLSearchParams(payload),\n };\n\n return metadata;\n }\n\n return __getConnectedDomainSetupInfo;\n}\n","import { HttpClient, NonNullablePaths } from '@wix/sdk-types';\nimport {\n ConnectedDomainSetupInfo,\n getConnectedDomainSetupInfo as universalGetConnectedDomainSetupInfo,\n} from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js';\n\nexport const __metadata = { PACKAGE_NAME: '@wix/domains' };\n\nexport function getConnectedDomainSetupInfo(\n httpClient: HttpClient\n): GetConnectedDomainSetupInfoSignature {\n return (connectedDomainId: string) =>\n universalGetConnectedDomainSetupInfo(\n connectedDomainId,\n // @ts-ignore\n { httpClient }\n );\n}\n\ninterface GetConnectedDomainSetupInfoSignature {\n /**\n * Retrieves information for the initial setup of a connected domain.\n *\n *\n * You must pass the relevant Wix account ID in the header of the call.\n *\n * > __Important:__ This call requires an account level API key and cannot be authenticated with the standard authorization header.\n * @param - ID of the connected domain to retrieve setup information for.\n * Identical to the domain name including TLD.\n * @returns Retrieved setup information.\n */\n (connectedDomainId: string): Promise<\n NonNullablePaths<\n ConnectedDomainSetupInfo,\n | `nameserverRecord.nsRecord.hostName`\n | `nameserverRecord.nsRecord.ttl`\n | `nameserverRecord.nsRecord.values`\n | `pointingRecords.aRecord.hostName`\n | `pointingRecords.aRecord.ttl`\n | `pointingRecords.aRecord.values`\n | `pointingRecords.cnameRecord.hostName`\n | `pointingRecords.cnameRecord.ttl`\n | `pointingRecords.cnameRecord.value`\n | `subdomainRecords.cnameRecords`\n | `connectedDomainId`\n | `registrar.nameServers`,\n 4\n >\n >;\n}\n\nexport {\n ARecord,\n CanChangeDomainOwnerRequest,\n CanChangeDomainOwnerResponse,\n CnameRecord,\n ConnectedDomainSetupInfo,\n ConnectedDomainSetupInfoDnsRecordsOneOf,\n ConnectionType,\n GetConnectedDomainSetupInfoRequest,\n GetConnectedDomainSetupInfoResponse,\n GetMxRecordsRequest,\n GetMxRecordsResponse,\n GetSetupInfoRequest,\n GetSetupInfoResponse,\n MxRecord,\n NameserverRecord,\n NsRecord,\n PointingRecords,\n PreCreateConnectedDomainRequest,\n PreCreateConnectedDomainResponse,\n Registrar,\n SubdomainRecords,\n} from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js';\n","import { getConnectedDomainSetupInfo as publicGetConnectedDomainSetupInfo } from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.public.js';\nimport { createRESTModule } from '@wix/sdk-runtime/rest-modules';\nimport { BuildRESTFunction, MaybeContext } from '@wix/sdk-types';\n\nexport const getConnectedDomainSetupInfo: MaybeContext<\n BuildRESTFunction<typeof publicGetConnectedDomainSetupInfo> &\n typeof publicGetConnectedDomainSetupInfo\n> = /*#__PURE__*/ createRESTModule(publicGetConnectedDomainSetupInfo);\n\nexport { ConnectionType } from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js';\nexport {\n ConnectedDomainSetupInfo,\n ConnectedDomainSetupInfoDnsRecordsOneOf,\n Registrar,\n NameserverRecord,\n NsRecord,\n PointingRecords,\n ARecord,\n CnameRecord,\n SubdomainRecords,\n GetSetupInfoRequest,\n GetSetupInfoResponse,\n PreCreateConnectedDomainRequest,\n PreCreateConnectedDomainResponse,\n CanChangeDomainOwnerRequest,\n CanChangeDomainOwnerResponse,\n GetMxRecordsRequest,\n GetMxRecordsResponse,\n MxRecord,\n GetConnectedDomainSetupInfoRequest,\n GetConnectedDomainSetupInfoResponse,\n} from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js';\nexport { ConnectionTypeWithLiterals } from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js';\n"],"mappings":";AAAA,SAAS,kBAAkB,yBAAyB;AACpD;AAAA,EACE;AAAA,EACA;AAAA,OACK;;;ACJP,SAAS,yBAAyB;AAClC,SAAS,kBAAkB;AAI3B,SAAS,2EACP,MACA;AACA,QAAM,mBAAmB;AAAA,IACvB,mBAAmB;AAAA,MACjB;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,IACA,wBAAwB;AAAA,MACtB;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,IACA,qBAAqB;AAAA,MACnB;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,IACA,yBAAyB;AAAA,MACvB;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,IACA,sBAAsB;AAAA,MACpB;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,MACA;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,IACA,GAAG;AAAA,MACD;AAAA,QACE,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,MACA;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;AAUd,SAAS,4BACd,SAC4B;AAC5B,WAAS,8BAA8B,EAAE,KAAK,GAAQ;AACpD,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;AAAA,QACH;AAAA,UACE,WAAW;AAAA,UACX,MAAM;AAAA,UACN;AAAA,QACF;AAAA,MACF;AAAA,MACA,QAAQ,kBAAkB,OAAO;AAAA,IACnC;AAEA,WAAO;AAAA,EACT;AAEA,SAAO;AACT;;;ADmCO,IAAK,iBAAL,kBAAKA,oBAAL;AAEL,EAAAA,gBAAA,6BAA0B;AAE1B,EAAAA,gBAAA,cAAW;AAEX,EAAAA,gBAAA,iBAAc;AAEd,EAAAA,gBAAA,YAAS;AARC,SAAAA;AAAA,GAAA;AA4GZ,eAAsBC,6BACpB,mBAkBA;AAEA,QAAM,EAAE,YAAY,YAAY,IAAI,UAAU,CAAC;AAK/C,QAAM,UAAU,sCAAsC;AAAA,IACpD;AAAA,EACF,CAAC;AAED,QAAM,UACkD;AAAA,IACpD;AAAA,EACF;AAEF,eAAa,aAAa;AAC1B,MAAI;AACF,UAAM,SAAS,MAAM,WAAW,QAAQ,OAAO;AAC/C,iBAAa,YAAY,MAAM;AAE/B,WAAO,wCAAwC,OAAO,IAAI,GACtD;AAAA,EACN,SAAS,KAAU;AACjB,UAAM,mBAAmB;AAAA,MACvB;AAAA,MACA;AAAA,QACE,wBAAwB,CAAC;AAAA,QACzB,0BAA0B,EAAE,mBAAmB,OAAO;AAAA,QACtD,yBAAyB;AAAA,MAC3B;AAAA,MACA,CAAC,mBAAmB;AAAA,IACtB;AACA,iBAAa,UAAU,GAAG;AAE1B,UAAM;AAAA,EACR;AACF;;;AE9UO,SAASC,6BACd,YACsC;AACtC,SAAO,CAAC,sBACNA;AAAA,IACE;AAAA;AAAA,IAEA,EAAE,WAAW;AAAA,EACf;AACJ;;;AChBA,SAAS,wBAAwB;AAG1B,IAAMC,+BAGK,iCAAiBA,4BAAiC;","names":["ConnectionType","getConnectedDomainSetupInfo","getConnectedDomainSetupInfo","getConnectedDomainSetupInfo"]}
|
|
1
|
+
{"version":3,"sources":["../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.ts","../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.http.ts","../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.public.ts","../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.context.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 ambassadorWixPremiumDomainsV1ConnectedDomainSetupInfo from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.http.js';\n\n/**\n * A `connectedDomainSetupInfo` object holds information the connected domain's\n * external registrar and some DNS records. You can use this information to guide\n * the site owner through the domain's setup process.\n */\nexport interface ConnectedDomainSetupInfo\n extends ConnectedDomainSetupInfoDnsRecordsOneOf {\n /**\n * Information about domains connected using nameservers. Available only for\n * `{\"connectionType\": \"NAMESERVERS\"}`.\n */\n nameserverRecord?: NameserverRecord;\n /**\n * Information about domains connected by pointing. Available only for\n * `{\"connectionType\": \"POINTING\"}`.\n * @readonly\n */\n pointingRecords?: PointingRecords;\n /**\n * Information about subdomains. Available only for subdomains.\n * @readonly\n */\n subdomainRecords?: SubdomainRecords;\n /**\n * ID of the connected domain. Identical to the domain name including TLD.\n * @format HOSTNAME\n */\n connectedDomainId?: string;\n /**\n * Information about the external domain registrar including current name\n * servers.\n */\n registrar?: Registrar;\n}\n\n/** @oneof */\nexport interface ConnectedDomainSetupInfoDnsRecordsOneOf {\n /**\n * Information about domains connected using nameservers. Available only for\n * `{\"connectionType\": \"NAMESERVERS\"}`.\n */\n nameserverRecord?: NameserverRecord;\n /**\n * Information about domains connected by pointing. Available only for\n * `{\"connectionType\": \"POINTING\"}`.\n * @readonly\n */\n pointingRecords?: PointingRecords;\n /**\n * Information about subdomains. Available only for subdomains.\n * @readonly\n */\n subdomainRecords?: SubdomainRecords;\n}\n\nexport interface Registrar {\n /**\n * Name of the external domain registrar. For subdomains it's the registrar of the root domain.\n * @readonly\n */\n name?: string | null;\n /**\n * Values of the current name server records. In case you connect an external\n * domain using name servers, site owners must replace these current name servers\n * with the new name servers found in `connectedDomainSetupInfo.nameserverRecord.nsRecord.values`\n * during the initial domain setup.\n * The replacement can't be performed through Wix APIs, you must use the\n * infrastructure of the external domain registrar. Read more about\n * [connecting domains using nameservers](https://dev.wix.com/api/rest/account-level-apis/connected-domains/sample-flows#account-level-apis_connected-domains_sample-flows_connect-an-external-domain-using-nameservers).\n * @readonly\n */\n nameServers?: string[];\n}\n\n/** Information about domains connected by nameservers. */\nexport interface NameserverRecord {\n /**\n * Default [nameserver record](https://en.wikipedia.org/wiki/List_of_DNS_record_types#NS).\n * @readonly\n */\n nsRecord?: NsRecord;\n}\n\nexport interface NsRecord {\n /**\n * Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.\n * @format HOSTNAME\n */\n hostName?: string;\n /** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */\n ttl?: number;\n /**\n * DNS record values.\n * @minSize 1\n * @maxSize 10\n */\n values?: string[];\n}\n\n/** Information about domains connected by pointing. */\nexport interface PointingRecords {\n /**\n * [Address record](https://en.wikipedia.org/wiki/List_of_DNS_record_types#A).\n * @readonly\n */\n aRecord?: ARecord;\n /**\n * [Canonical Name record](https://en.wikipedia.org/wiki/CNAME_record).\n * @readonly\n */\n cnameRecord?: CnameRecord;\n}\n\nexport interface ARecord {\n /**\n * Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.\n * @format HOSTNAME\n */\n hostName?: string;\n /** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */\n ttl?: number;\n /**\n * DNS record values.\n * @minSize 1\n * @maxSize 10\n */\n values?: string[];\n}\n\nexport interface CnameRecord {\n /**\n * Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.\n * @format HOSTNAME\n */\n hostName?: string;\n /** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */\n ttl?: number;\n /** DNS record value. */\n value?: string;\n}\n\n/** Information about subdomains. */\nexport interface SubdomainRecords {\n /**\n * [Canonical Name records](https://en.wikipedia.org/wiki/CNAME_record).\n * @readonly\n * @maxSize 2\n */\n cnameRecords?: CnameRecord[];\n}\n\nexport interface GetConnectedDomainSetupInfoRequest {\n /**\n * ID of the connected domain to retrieve setup information for.\n * Identical to the domain name including TLD.\n * @format HOSTNAME\n */\n connectedDomainId: string;\n}\n\nexport interface GetConnectedDomainSetupInfoResponse {\n /** Retrieved setup information. */\n connectedDomainSetupInfo?: ConnectedDomainSetupInfo;\n}\n\nexport interface GetSetupInfoRequest {\n /**\n * Domain name including TLD\n * @format HOSTNAME\n */\n domain?: string;\n /**\n * How the domain should be to connected the Wix site.\n *\n * + `\"UNKNOWN_CONNECTION_TYPE\"`: supported only for subdomain.\n * + `\"POINTING\"`: Get domain or subdomain setup by pointing\n * + `\"NAMESERVERS\"`: Get domain setup by nameservers\n * + `\"HIDDEN\"`: supported only for subdomain.\n */\n connectionType?: ConnectionTypeWithLiterals;\n /** Whether to return registrar information or not. Default is false. */\n includeRegistrar?: boolean;\n}\n\nexport enum ConnectionType {\n /** There is no information about the connection type. */\n UNKNOWN_CONNECTION_TYPE = 'UNKNOWN_CONNECTION_TYPE',\n /** The domain is connected by pointing. Wix doesn't manage DNS information. */\n POINTING = 'POINTING',\n /** The domain is connected by nameservers. Wix manages DNS information. */\n NAMESERVERS = 'NAMESERVERS',\n /** The domain isn't visible to site visitors. */\n HIDDEN = 'HIDDEN',\n}\n\n/** @enumType */\nexport type ConnectionTypeWithLiterals =\n | ConnectionType\n | 'UNKNOWN_CONNECTION_TYPE'\n | 'POINTING'\n | 'NAMESERVERS'\n | 'HIDDEN';\n\nexport interface GetSetupInfoResponse {\n /** Retrieved setup information. */\n domainSetupInfo?: ConnectedDomainSetupInfo;\n}\n\nexport interface PreCreateConnectedDomainRequest {\n /**\n * Domain name including TLD\n * @format HOSTNAME\n */\n domain?: string;\n}\n\nexport interface PreCreateConnectedDomainResponse {}\n\nexport interface CanChangeDomainOwnerRequest {\n /**\n * Domain name including TLD\n * @format HOSTNAME\n */\n domain?: string;\n}\n\nexport interface CanChangeDomainOwnerResponse {\n /** Whether the domain owner can be changed. */\n canChangeOwner?: boolean;\n}\n\nexport interface GetMxRecordsRequest {\n /**\n * Domain name including TLD\n * @format HOSTNAME\n */\n domain?: string;\n}\n\nexport interface GetMxRecordsResponse {\n /**\n * MX records for the domain.\n * Domain can be either registered or connected.\n * The list will be empty if no MX records are found in the public DNS.\n */\n mxRecords?: MxRecord[];\n}\n\nexport interface MxRecord {\n /**\n * DNS record values. Wix limits DNS records to 50 values per type. External\n * providers may support a different maximum number of DNS records for a\n * specific type, Wix doesn't validate that you don't exceed these external\n * limits.\n *\n * Max: 50 records\n * @minSize 1\n * @maxSize 50\n * @maxLength 1000\n */\n values?: string[];\n}\n\n/**\n * Retrieves information for the initial setup of a connected domain.\n *\n *\n * You must pass the relevant Wix account ID in the header of the call.\n *\n * > __Important:__ This call requires an account level API key and cannot be authenticated with the standard authorization header.\n * @param connectedDomainId - ID of the connected domain to retrieve setup information for.\n * Identical to the domain name including TLD.\n * @public\n * @requiredField connectedDomainId\n * @permissionId DOMAINS.READ_CONNECTED_DOMAINS\n * @returns Retrieved setup information.\n * @fqn com.wixpress.premium.domain.connected.ConnectedDomainSetupInfoService.GetConnectedDomainSetupInfo\n */\nexport async function getConnectedDomainSetupInfo(\n connectedDomainId: string\n): Promise<\n NonNullablePaths<\n ConnectedDomainSetupInfo,\n | `nameserverRecord.nsRecord.hostName`\n | `nameserverRecord.nsRecord.ttl`\n | `nameserverRecord.nsRecord.values`\n | `pointingRecords.aRecord.hostName`\n | `pointingRecords.aRecord.ttl`\n | `pointingRecords.aRecord.values`\n | `pointingRecords.cnameRecord.hostName`\n | `pointingRecords.cnameRecord.ttl`\n | `pointingRecords.cnameRecord.value`\n | `subdomainRecords.cnameRecords`\n | `connectedDomainId`\n | `registrar.nameServers`,\n 4\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 connectedDomainId: connectedDomainId,\n });\n\n const reqOpts =\n ambassadorWixPremiumDomainsV1ConnectedDomainSetupInfo.getConnectedDomainSetupInfo(\n payload\n );\n\n sideEffects?.onSiteCall?.();\n try {\n const result = await httpClient.request(reqOpts);\n sideEffects?.onSuccess?.(result);\n\n return renameKeysFromRESTResponseToSDKResponse(result.data)\n ?.connectedDomainSetupInfo!;\n } catch (err: any) {\n const transformedError = sdkTransformError(\n err,\n {\n spreadPathsToArguments: {},\n explicitPathsToArguments: { connectedDomainId: '$[0]' },\n singleArgumentUnchanged: false,\n },\n ['connectedDomainId']\n );\n sideEffects?.onError?.(err);\n\n throw transformedError;\n }\n}\n","import { toURLSearchParams } from '@wix/sdk-runtime/rest-modules';\nimport { resolveUrl } from '@wix/sdk-runtime/rest-modules';\nimport { ResolveUrlOpts } from '@wix/sdk-runtime/rest-modules';\nimport { RequestOptionsFactory } from '@wix/sdk-types';\n\nfunction resolveComWixpressPremiumDomainConnectedConnectedDomainSetupInfoServiceUrl(\n opts: Omit<ResolveUrlOpts, 'domainToMappings'>\n) {\n const domainToMappings = {\n 'www.wixapis.com': [\n {\n srcPath: '/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/v1/domain-setup-info',\n destPath: '/v1/domain-setup-info',\n },\n {\n srcPath: '/premium/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/premium/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n ],\n 'manage._base_domain_': [\n {\n srcPath: '/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/v1/domain-setup-info',\n destPath: '/v1/domain-setup-info',\n },\n ],\n 'www._base_domain_': [\n {\n srcPath: '/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/v1/domain-setup-info',\n destPath: '/v1/domain-setup-info',\n },\n ],\n 'premium._base_domain_': [\n {\n srcPath: '/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/v1/domain-setup-info',\n destPath: '/v1/domain-setup-info',\n },\n ],\n '*.dev.wix-code.com': [\n {\n srcPath: '/premium/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/premium/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n {\n srcPath: '/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n ],\n _: [\n {\n srcPath: '/premium/domains/v1/connected-domains',\n destPath: '/v1/connected-domains',\n },\n {\n srcPath: '/premium/domains/v1/connected-domain-setup-info',\n destPath: '/v1/connected-domain-setup-info',\n },\n ],\n };\n\n return resolveUrl(Object.assign(opts, { domainToMappings }));\n}\n\nconst PACKAGE_NAME = '@wix/auto_sdk_domains_connected-domain-setup-info';\n\n/**\n * Retrieves information for the initial setup of a connected domain.\n *\n *\n * You must pass the relevant Wix account ID in the header of the call.\n *\n * > __Important:__ This call requires an account level API key and cannot be authenticated with the standard authorization header.\n */\nexport function getConnectedDomainSetupInfo(\n payload: object\n): RequestOptionsFactory<any> {\n function __getConnectedDomainSetupInfo({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.premium.domains.v1.connected_domain_setup_info',\n method: 'GET' as any,\n methodFqn:\n 'com.wixpress.premium.domain.connected.ConnectedDomainSetupInfoService.GetConnectedDomainSetupInfo',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveComWixpressPremiumDomainConnectedConnectedDomainSetupInfoServiceUrl(\n {\n protoPath: '/v1/connected-domain-setup-info/{connectedDomainId}',\n data: payload,\n host,\n }\n ),\n params: toURLSearchParams(payload),\n };\n\n return metadata;\n }\n\n return __getConnectedDomainSetupInfo;\n}\n","import { HttpClient, NonNullablePaths } from '@wix/sdk-types';\nimport {\n ConnectedDomainSetupInfo,\n getConnectedDomainSetupInfo as universalGetConnectedDomainSetupInfo,\n} from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js';\n\nexport const __metadata = { PACKAGE_NAME: '@wix/domains' };\n\nexport function getConnectedDomainSetupInfo(\n httpClient: HttpClient\n): GetConnectedDomainSetupInfoSignature {\n return (connectedDomainId: string) =>\n universalGetConnectedDomainSetupInfo(\n connectedDomainId,\n // @ts-ignore\n { httpClient }\n );\n}\n\ninterface GetConnectedDomainSetupInfoSignature {\n /**\n * Retrieves information for the initial setup of a connected domain.\n *\n *\n * You must pass the relevant Wix account ID in the header of the call.\n *\n * > __Important:__ This call requires an account level API key and cannot be authenticated with the standard authorization header.\n * @param - ID of the connected domain to retrieve setup information for.\n * Identical to the domain name including TLD.\n * @returns Retrieved setup information.\n */\n (connectedDomainId: string): Promise<\n NonNullablePaths<\n ConnectedDomainSetupInfo,\n | `nameserverRecord.nsRecord.hostName`\n | `nameserverRecord.nsRecord.ttl`\n | `nameserverRecord.nsRecord.values`\n | `pointingRecords.aRecord.hostName`\n | `pointingRecords.aRecord.ttl`\n | `pointingRecords.aRecord.values`\n | `pointingRecords.cnameRecord.hostName`\n | `pointingRecords.cnameRecord.ttl`\n | `pointingRecords.cnameRecord.value`\n | `subdomainRecords.cnameRecords`\n | `connectedDomainId`\n | `registrar.nameServers`,\n 4\n >\n >;\n}\n\nexport {\n ARecord,\n CanChangeDomainOwnerRequest,\n CanChangeDomainOwnerResponse,\n CnameRecord,\n ConnectedDomainSetupInfo,\n ConnectedDomainSetupInfoDnsRecordsOneOf,\n ConnectionType,\n GetConnectedDomainSetupInfoRequest,\n GetConnectedDomainSetupInfoResponse,\n GetMxRecordsRequest,\n GetMxRecordsResponse,\n GetSetupInfoRequest,\n GetSetupInfoResponse,\n MxRecord,\n NameserverRecord,\n NsRecord,\n PointingRecords,\n PreCreateConnectedDomainRequest,\n PreCreateConnectedDomainResponse,\n Registrar,\n SubdomainRecords,\n} from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js';\n","import { getConnectedDomainSetupInfo as publicGetConnectedDomainSetupInfo } from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.public.js';\nimport { createRESTModule } from '@wix/sdk-runtime/rest-modules';\nimport { BuildRESTFunction, MaybeContext } from '@wix/sdk-types';\n\nexport const getConnectedDomainSetupInfo: MaybeContext<\n BuildRESTFunction<typeof publicGetConnectedDomainSetupInfo> &\n typeof publicGetConnectedDomainSetupInfo\n> = /*#__PURE__*/ createRESTModule(publicGetConnectedDomainSetupInfo);\n\nexport { ConnectionType } from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js';\nexport {\n ConnectedDomainSetupInfo,\n ConnectedDomainSetupInfoDnsRecordsOneOf,\n Registrar,\n NameserverRecord,\n NsRecord,\n PointingRecords,\n ARecord,\n CnameRecord,\n SubdomainRecords,\n GetConnectedDomainSetupInfoRequest,\n GetConnectedDomainSetupInfoResponse,\n GetSetupInfoRequest,\n GetSetupInfoResponse,\n PreCreateConnectedDomainRequest,\n PreCreateConnectedDomainResponse,\n CanChangeDomainOwnerRequest,\n CanChangeDomainOwnerResponse,\n GetMxRecordsRequest,\n GetMxRecordsResponse,\n MxRecord,\n} from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js';\nexport { ConnectionTypeWithLiterals } from './premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js';\n"],"mappings":"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","names":["ConnectionType","getConnectedDomainSetupInfo","getConnectedDomainSetupInfo","getConnectedDomainSetupInfo"]}
|
|
@@ -141,6 +141,18 @@ interface SubdomainRecords {
|
|
|
141
141
|
*/
|
|
142
142
|
cnameRecords?: CnameRecord[];
|
|
143
143
|
}
|
|
144
|
+
interface GetConnectedDomainSetupInfoRequest {
|
|
145
|
+
/**
|
|
146
|
+
* ID of the connected domain to retrieve setup information for.
|
|
147
|
+
* Identical to the domain name including TLD.
|
|
148
|
+
* @format HOSTNAME
|
|
149
|
+
*/
|
|
150
|
+
connectedDomainId: string;
|
|
151
|
+
}
|
|
152
|
+
interface GetConnectedDomainSetupInfoResponse {
|
|
153
|
+
/** Retrieved setup information. */
|
|
154
|
+
connectedDomainSetupInfo?: ConnectedDomainSetupInfo;
|
|
155
|
+
}
|
|
144
156
|
interface GetSetupInfoRequest {
|
|
145
157
|
/**
|
|
146
158
|
* Domain name including TLD
|
|
@@ -224,18 +236,6 @@ interface MxRecord {
|
|
|
224
236
|
*/
|
|
225
237
|
values?: string[];
|
|
226
238
|
}
|
|
227
|
-
interface GetConnectedDomainSetupInfoRequest {
|
|
228
|
-
/**
|
|
229
|
-
* ID of the connected domain to retrieve setup information for.
|
|
230
|
-
* Identical to the domain name including TLD.
|
|
231
|
-
* @format HOSTNAME
|
|
232
|
-
*/
|
|
233
|
-
connectedDomainId: string;
|
|
234
|
-
}
|
|
235
|
-
interface GetConnectedDomainSetupInfoResponse {
|
|
236
|
-
/** Retrieved setup information. */
|
|
237
|
-
connectedDomainSetupInfo?: ConnectedDomainSetupInfo;
|
|
238
|
-
}
|
|
239
239
|
/**
|
|
240
240
|
* Retrieves information for the initial setup of a connected domain.
|
|
241
241
|
*
|