@vercel/sdk 1.18.2 → 1.18.3
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/README.md +48 -51
- package/bin/mcp-server.js +4061 -2335
- package/bin/mcp-server.js.map +57 -36
- package/esm/__tests__/domains.test.js +2 -38
- package/esm/__tests__/domains.test.js.map +1 -1
- package/esm/__tests__/edgeconfig.test.js +6 -6
- package/esm/__tests__/integrations.test.js +1 -1
- package/esm/__tests__/logdrains.test.js +6 -2
- package/esm/__tests__/logdrains.test.js.map +1 -1
- package/esm/__tests__/security.test.js +20 -35
- package/esm/__tests__/security.test.js.map +1 -1
- package/esm/__tests__/teams.test.js +16 -0
- package/esm/__tests__/teams.test.js.map +1 -1
- package/esm/__tests__/vercel.test.js +150 -1
- package/esm/__tests__/vercel.test.js.map +1 -1
- package/esm/funcs/deleteV1BulkRedirects.d.ts +14 -0
- package/esm/funcs/deleteV1BulkRedirects.d.ts.map +1 -0
- package/esm/funcs/deleteV1BulkRedirects.js +74 -0
- package/esm/funcs/deleteV1BulkRedirects.js.map +1 -0
- package/esm/funcs/domainsCreateOrTransferDomain.js +2 -2
- package/esm/funcs/domainsCreateOrTransferDomain.js.map +1 -1
- package/esm/funcs/getV1BulkRedirects.d.ts +14 -0
- package/esm/funcs/getV1BulkRedirects.d.ts.map +1 -0
- package/esm/funcs/getV1BulkRedirects.js +80 -0
- package/esm/funcs/getV1BulkRedirects.js.map +1 -0
- package/esm/funcs/getV1BulkRedirectsVersions.d.ts +14 -0
- package/esm/funcs/getV1BulkRedirectsVersions.d.ts.map +1 -0
- package/esm/funcs/getV1BulkRedirectsVersions.js +73 -0
- package/esm/funcs/getV1BulkRedirectsVersions.js.map +1 -0
- package/esm/funcs/patchV1BulkRedirects.d.ts +14 -0
- package/esm/funcs/patchV1BulkRedirects.d.ts.map +1 -0
- package/esm/funcs/patchV1BulkRedirects.js +74 -0
- package/esm/funcs/patchV1BulkRedirects.js.map +1 -0
- package/esm/funcs/postV1BulkRedirectsRestore.d.ts +14 -0
- package/esm/funcs/postV1BulkRedirectsRestore.d.ts.map +1 -0
- package/esm/funcs/postV1BulkRedirectsRestore.js +74 -0
- package/esm/funcs/postV1BulkRedirectsRestore.js.map +1 -0
- package/esm/funcs/postV1BulkRedirectsVersions.d.ts +14 -0
- package/esm/funcs/postV1BulkRedirectsVersions.d.ts.map +1 -0
- package/esm/funcs/postV1BulkRedirectsVersions.js +74 -0
- package/esm/funcs/postV1BulkRedirectsVersions.js.map +1 -0
- package/esm/funcs/putV1BulkRedirects.d.ts +11 -0
- package/esm/funcs/putV1BulkRedirects.d.ts.map +1 -0
- package/esm/funcs/putV1BulkRedirects.js +69 -0
- package/esm/funcs/putV1BulkRedirects.js.map +1 -0
- package/esm/funcs/teamsPostTeamDsyncRoles.d.ts +17 -0
- package/esm/funcs/teamsPostTeamDsyncRoles.d.ts.map +1 -0
- package/esm/funcs/{domainsBuyDomain.js → teamsPostTeamDsyncRoles.js} +17 -12
- package/esm/funcs/teamsPostTeamDsyncRoles.js.map +1 -0
- package/esm/lib/config.d.ts +3 -3
- package/esm/lib/config.js +3 -3
- package/esm/mcp-server/mcp-server.js +1 -1
- package/esm/mcp-server/server.d.ts.map +1 -1
- package/esm/mcp-server/server.js +17 -3
- package/esm/mcp-server/server.js.map +1 -1
- package/esm/mcp-server/tools/deleteV1BulkRedirects.d.ts +7 -0
- package/esm/mcp-server/tools/deleteV1BulkRedirects.d.ts.map +1 -0
- package/esm/mcp-server/tools/deleteV1BulkRedirects.js +26 -0
- package/esm/mcp-server/tools/deleteV1BulkRedirects.js.map +1 -0
- package/esm/mcp-server/tools/getV1BulkRedirects.d.ts +7 -0
- package/esm/mcp-server/tools/getV1BulkRedirects.d.ts.map +1 -0
- package/esm/mcp-server/tools/getV1BulkRedirects.js +26 -0
- package/esm/mcp-server/tools/getV1BulkRedirects.js.map +1 -0
- package/esm/mcp-server/tools/getV1BulkRedirectsVersions.d.ts +7 -0
- package/esm/mcp-server/tools/getV1BulkRedirectsVersions.d.ts.map +1 -0
- package/esm/mcp-server/tools/getV1BulkRedirectsVersions.js +26 -0
- package/esm/mcp-server/tools/getV1BulkRedirectsVersions.js.map +1 -0
- package/esm/mcp-server/tools/patchV1BulkRedirects.d.ts +7 -0
- package/esm/mcp-server/tools/patchV1BulkRedirects.d.ts.map +1 -0
- package/esm/mcp-server/tools/patchV1BulkRedirects.js +26 -0
- package/esm/mcp-server/tools/patchV1BulkRedirects.js.map +1 -0
- package/esm/mcp-server/tools/postV1BulkRedirectsRestore.d.ts +7 -0
- package/esm/mcp-server/tools/postV1BulkRedirectsRestore.d.ts.map +1 -0
- package/esm/mcp-server/tools/postV1BulkRedirectsRestore.js +26 -0
- package/esm/mcp-server/tools/postV1BulkRedirectsRestore.js.map +1 -0
- package/esm/mcp-server/tools/postV1BulkRedirectsVersions.d.ts +7 -0
- package/esm/mcp-server/tools/postV1BulkRedirectsVersions.d.ts.map +1 -0
- package/esm/mcp-server/tools/postV1BulkRedirectsVersions.js +26 -0
- package/esm/mcp-server/tools/postV1BulkRedirectsVersions.js.map +1 -0
- package/esm/mcp-server/tools/putV1BulkRedirects.d.ts +7 -0
- package/esm/mcp-server/tools/putV1BulkRedirects.d.ts.map +1 -0
- package/esm/mcp-server/tools/putV1BulkRedirects.js +26 -0
- package/esm/mcp-server/tools/putV1BulkRedirects.js.map +1 -0
- package/esm/mcp-server/tools/teamsPostTeamDsyncRoles.d.ts +7 -0
- package/esm/mcp-server/tools/teamsPostTeamDsyncRoles.d.ts.map +1 -0
- package/esm/mcp-server/tools/teamsPostTeamDsyncRoles.js +28 -0
- package/esm/mcp-server/tools/teamsPostTeamDsyncRoles.js.map +1 -0
- package/esm/models/artifactqueryop.d.ts +8 -8
- package/esm/models/artifactqueryop.d.ts.map +1 -1
- package/esm/models/artifactqueryop.js +8 -8
- package/esm/models/artifactqueryop.js.map +1 -1
- package/esm/models/canceldeploymentop.d.ts +46 -0
- package/esm/models/canceldeploymentop.d.ts.map +1 -1
- package/esm/models/canceldeploymentop.js +42 -0
- package/esm/models/canceldeploymentop.js.map +1 -1
- package/esm/models/createdeploymentop.d.ts +46 -0
- package/esm/models/createdeploymentop.d.ts.map +1 -1
- package/esm/models/createdeploymentop.js +46 -0
- package/esm/models/createdeploymentop.js.map +1 -1
- package/esm/models/createedgeconfigop.d.ts +5 -0
- package/esm/models/createedgeconfigop.d.ts.map +1 -1
- package/esm/models/createedgeconfigop.js +2 -0
- package/esm/models/createedgeconfigop.js.map +1 -1
- package/esm/models/createintegrationstoredirectop.d.ts +154 -152
- package/esm/models/createintegrationstoredirectop.d.ts.map +1 -1
- package/esm/models/createintegrationstoredirectop.js +220 -218
- package/esm/models/createintegrationstoredirectop.js.map +1 -1
- package/esm/models/createortransferdomainop.d.ts +4 -40
- package/esm/models/createortransferdomainop.d.ts.map +1 -1
- package/esm/models/createortransferdomainop.js +0 -24
- package/esm/models/createortransferdomainop.js.map +1 -1
- package/esm/models/createprojectop.d.ts +112 -2
- package/esm/models/createprojectop.d.ts.map +1 -1
- package/esm/models/createprojectop.js +103 -2
- package/esm/models/createprojectop.js.map +1 -1
- package/esm/models/createwebhookop.d.ts +4 -2
- package/esm/models/createwebhookop.d.ts.map +1 -1
- package/esm/models/createwebhookop.js +4 -2
- package/esm/models/createwebhookop.js.map +1 -1
- package/esm/models/deletev1bulkredirectsop.d.ts +102 -0
- package/esm/models/deletev1bulkredirectsop.d.ts.map +1 -0
- package/esm/models/deletev1bulkredirectsop.js +95 -0
- package/esm/models/deletev1bulkredirectsop.js.map +1 -0
- package/esm/models/getconfigurationproductsop.d.ts +200 -200
- package/esm/models/getconfigurationproductsop.js +290 -290
- package/esm/models/getconfigurationsop.d.ts +1 -0
- package/esm/models/getconfigurationsop.d.ts.map +1 -1
- package/esm/models/getconfigurationsop.js +1 -0
- package/esm/models/getconfigurationsop.js.map +1 -1
- package/esm/models/getdeploymenteventsop.d.ts +6 -6
- package/esm/models/getdeploymenteventsop.d.ts.map +1 -1
- package/esm/models/getdeploymenteventsop.js +6 -6
- package/esm/models/getdeploymenteventsop.js.map +1 -1
- package/esm/models/getdeploymentop.d.ts +90 -0
- package/esm/models/getdeploymentop.d.ts.map +1 -1
- package/esm/models/getdeploymentop.js +82 -0
- package/esm/models/getdeploymentop.js.map +1 -1
- package/esm/models/getedgeconfigop.d.ts +5 -0
- package/esm/models/getedgeconfigop.d.ts.map +1 -1
- package/esm/models/getedgeconfigop.js +2 -0
- package/esm/models/getedgeconfigop.js.map +1 -1
- package/esm/models/getfirewallconfigop.d.ts +336 -103
- package/esm/models/getfirewallconfigop.d.ts.map +1 -1
- package/esm/models/getfirewallconfigop.js +358 -98
- package/esm/models/getfirewallconfigop.js.map +1 -1
- package/esm/models/getprojectdomainsop.d.ts +5 -5
- package/esm/models/getprojectdomainsop.d.ts.map +1 -1
- package/esm/models/getprojectdomainsop.js +5 -6
- package/esm/models/getprojectdomainsop.js.map +1 -1
- package/esm/models/getprojectsop.d.ts +88 -2
- package/esm/models/getprojectsop.d.ts.map +1 -1
- package/esm/models/getprojectsop.js +76 -2
- package/esm/models/getprojectsop.js.map +1 -1
- package/esm/models/getv1bulkredirectsop.d.ts +190 -0
- package/esm/models/getv1bulkredirectsop.d.ts.map +1 -0
- package/esm/models/getv1bulkredirectsop.js +195 -0
- package/esm/models/getv1bulkredirectsop.js.map +1 -0
- package/esm/models/getv1bulkredirectsversionsop.d.ts +80 -0
- package/esm/models/getv1bulkredirectsversionsop.d.ts.map +1 -0
- package/esm/models/getv1bulkredirectsversionsop.js +64 -0
- package/esm/models/getv1bulkredirectsversionsop.js.map +1 -0
- package/esm/models/getwebhookop.d.ts +2 -1
- package/esm/models/getwebhookop.d.ts.map +1 -1
- package/esm/models/getwebhookop.js +2 -1
- package/esm/models/getwebhookop.js.map +1 -1
- package/esm/models/getwebhooksop.d.ts +4 -2
- package/esm/models/getwebhooksop.d.ts.map +1 -1
- package/esm/models/getwebhooksop.js +4 -2
- package/esm/models/getwebhooksop.js.map +1 -1
- package/esm/models/listaccessgroupsop.d.ts +8 -8
- package/esm/models/listaccessgroupsop.d.ts.map +1 -1
- package/esm/models/listaccessgroupsop.js +8 -8
- package/esm/models/listaccessgroupsop.js.map +1 -1
- package/esm/models/patchv1bulkredirectsop.d.ts +133 -0
- package/esm/models/patchv1bulkredirectsop.d.ts.map +1 -0
- package/esm/models/patchv1bulkredirectsop.js +121 -0
- package/esm/models/patchv1bulkredirectsop.js.map +1 -0
- package/esm/models/postteamdsyncrolesop.d.ts +98 -0
- package/esm/models/postteamdsyncrolesop.d.ts.map +1 -0
- package/esm/models/postteamdsyncrolesop.js +113 -0
- package/esm/models/postteamdsyncrolesop.js.map +1 -0
- package/esm/models/postv1bulkredirectsrestoreop.d.ts +104 -0
- package/esm/models/postv1bulkredirectsrestoreop.d.ts.map +1 -0
- package/esm/models/postv1bulkredirectsrestoreop.js +96 -0
- package/esm/models/postv1bulkredirectsrestoreop.js.map +1 -0
- package/esm/models/postv1bulkredirectsversionsop.d.ts +110 -0
- package/esm/models/postv1bulkredirectsversionsop.d.ts.map +1 -0
- package/esm/models/postv1bulkredirectsversionsop.js +102 -0
- package/esm/models/postv1bulkredirectsversionsop.js.map +1 -0
- package/esm/models/putfirewallconfigop.d.ts +357 -100
- package/esm/models/putfirewallconfigop.d.ts.map +1 -1
- package/esm/models/putfirewallconfigop.js +379 -102
- package/esm/models/putfirewallconfigop.js.map +1 -1
- package/esm/models/putv1bulkredirectsop.d.ts +122 -0
- package/esm/models/putv1bulkredirectsop.d.ts.map +1 -0
- package/esm/models/putv1bulkredirectsop.js +108 -0
- package/esm/models/putv1bulkredirectsop.js.map +1 -0
- package/esm/models/updateedgeconfigop.d.ts +5 -0
- package/esm/models/updateedgeconfigop.d.ts.map +1 -1
- package/esm/models/updateedgeconfigop.js +2 -0
- package/esm/models/updateedgeconfigop.js.map +1 -1
- package/esm/models/updatefirewallconfigop.d.ts +30 -0
- package/esm/models/updatefirewallconfigop.d.ts.map +1 -1
- package/esm/models/updatefirewallconfigop.js +32 -0
- package/esm/models/updatefirewallconfigop.js.map +1 -1
- package/esm/models/updateprojectdatacacheop.d.ts +103 -17
- package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
- package/esm/models/updateprojectdatacacheop.js +97 -20
- package/esm/models/updateprojectdatacacheop.js.map +1 -1
- package/esm/models/updateprojectop.d.ts +112 -2
- package/esm/models/updateprojectop.d.ts.map +1 -1
- package/esm/models/updateprojectop.js +103 -2
- package/esm/models/updateprojectop.js.map +1 -1
- package/esm/models/updateprojectprotectionbypassop.d.ts +49 -0
- package/esm/models/updateprojectprotectionbypassop.d.ts.map +1 -1
- package/esm/models/updateprojectprotectionbypassop.js +27 -0
- package/esm/models/updateprojectprotectionbypassop.js.map +1 -1
- package/esm/models/userevent.d.ts +756 -968
- package/esm/models/userevent.d.ts.map +1 -1
- package/esm/models/userevent.js +1012 -1247
- package/esm/models/userevent.js.map +1 -1
- package/esm/sdk/domains.d.ts +0 -8
- package/esm/sdk/domains.d.ts.map +1 -1
- package/esm/sdk/domains.js +0 -10
- package/esm/sdk/domains.js.map +1 -1
- package/esm/sdk/sdk.d.ts +33 -1
- package/esm/sdk/sdk.d.ts.map +1 -1
- package/esm/sdk/sdk.js +47 -0
- package/esm/sdk/sdk.js.map +1 -1
- package/esm/sdk/teams.d.ts +8 -0
- package/esm/sdk/teams.d.ts.map +1 -1
- package/esm/sdk/teams.js +10 -0
- package/esm/sdk/teams.js.map +1 -1
- package/examples/package-lock.json +2 -2
- package/jsr.json +1 -1
- package/package.json +2 -2
- package/src/__tests__/domains.test.ts +4 -41
- package/src/__tests__/edgeconfig.test.ts +6 -6
- package/src/__tests__/integrations.test.ts +1 -1
- package/src/__tests__/logdrains.test.ts +6 -2
- package/src/__tests__/security.test.ts +20 -35
- package/src/__tests__/teams.test.ts +19 -0
- package/src/__tests__/vercel.test.ts +177 -1
- package/src/funcs/deleteV1BulkRedirects.ts +161 -0
- package/src/funcs/domainsCreateOrTransferDomain.ts +2 -2
- package/src/funcs/getV1BulkRedirects.ts +167 -0
- package/src/funcs/getV1BulkRedirectsVersions.ts +160 -0
- package/src/funcs/patchV1BulkRedirects.ts +161 -0
- package/src/funcs/postV1BulkRedirectsRestore.ts +161 -0
- package/src/funcs/postV1BulkRedirectsVersions.ts +161 -0
- package/src/funcs/putV1BulkRedirects.ts +156 -0
- package/src/funcs/{domainsBuyDomain.ts → teamsPostTeamDsyncRoles.ts} +29 -24
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +17 -3
- package/src/mcp-server/tools/deleteV1BulkRedirects.ts +36 -0
- package/src/mcp-server/tools/getV1BulkRedirects.ts +35 -0
- package/src/mcp-server/tools/getV1BulkRedirectsVersions.ts +35 -0
- package/src/mcp-server/tools/patchV1BulkRedirects.ts +36 -0
- package/src/mcp-server/tools/postV1BulkRedirectsRestore.ts +36 -0
- package/src/mcp-server/tools/postV1BulkRedirectsVersions.ts +36 -0
- package/src/mcp-server/tools/putV1BulkRedirects.ts +35 -0
- package/src/mcp-server/tools/teamsPostTeamDsyncRoles.ts +37 -0
- package/src/models/artifactqueryop.ts +21 -17
- package/src/models/canceldeploymentop.ts +129 -0
- package/src/models/createdeploymentop.ts +112 -0
- package/src/models/createedgeconfigop.ts +7 -0
- package/src/models/createintegrationstoredirectop.ts +475 -471
- package/src/models/createortransferdomainop.ts +0 -83
- package/src/models/createprojectop.ts +293 -4
- package/src/models/createwebhookop.ts +4 -2
- package/src/models/deletev1bulkredirectsop.ts +267 -0
- package/src/models/getconfigurationproductsop.ts +627 -627
- package/src/models/getconfigurationsop.ts +1 -0
- package/src/models/getdeploymenteventsop.ts +17 -13
- package/src/models/getdeploymentop.ts +263 -0
- package/src/models/getedgeconfigop.ts +7 -0
- package/src/models/getfirewallconfigop.ts +835 -274
- package/src/models/getprojectdomainsop.ts +11 -9
- package/src/models/getprojectsop.ts +214 -4
- package/src/models/getv1bulkredirectsop.ts +467 -0
- package/src/models/getv1bulkredirectsversionsop.ts +192 -0
- package/src/models/getwebhookop.ts +2 -1
- package/src/models/getwebhooksop.ts +4 -2
- package/src/models/listaccessgroupsop.ts +26 -18
- package/src/models/patchv1bulkredirectsop.ts +336 -0
- package/src/models/postteamdsyncrolesop.ts +291 -0
- package/src/models/postv1bulkredirectsrestoreop.ts +275 -0
- package/src/models/postv1bulkredirectsversionsop.ts +296 -0
- package/src/models/putfirewallconfigop.ts +1025 -284
- package/src/models/putv1bulkredirectsop.ts +304 -0
- package/src/models/updateedgeconfigop.ts +7 -0
- package/src/models/updatefirewallconfigop.ts +107 -0
- package/src/models/updateprojectdatacacheop.ts +276 -55
- package/src/models/updateprojectop.ts +293 -4
- package/src/models/updateprojectprotectionbypassop.ts +84 -0
- package/src/models/userevent.ts +2357 -2909
- package/src/sdk/domains.ts +0 -19
- package/src/sdk/sdk.ts +132 -1
- package/src/sdk/teams.ts +22 -0
- package/vercel-spec.json +3003 -1259
- package/esm/funcs/domainsBuyDomain.d.ts +0 -17
- package/esm/funcs/domainsBuyDomain.d.ts.map +0 -1
- package/esm/funcs/domainsBuyDomain.js.map +0 -1
- package/esm/mcp-server/tools/domainsBuyDomain.d.ts +0 -7
- package/esm/mcp-server/tools/domainsBuyDomain.d.ts.map +0 -1
- package/esm/mcp-server/tools/domainsBuyDomain.js +0 -28
- package/esm/mcp-server/tools/domainsBuyDomain.js.map +0 -1
- package/esm/models/buydomainop.d.ts +0 -180
- package/esm/models/buydomainop.d.ts.map +0 -1
- package/esm/models/buydomainop.js +0 -159
- package/esm/models/buydomainop.js.map +0 -1
- package/src/mcp-server/tools/domainsBuyDomain.ts +0 -37
- package/src/models/buydomainop.ts +0 -453
|
@@ -232,9 +232,9 @@ export declare const CreateIntegrationStoreDirectIntegrationsType: {
|
|
|
232
232
|
readonly Object: "object";
|
|
233
233
|
};
|
|
234
234
|
export type CreateIntegrationStoreDirectIntegrationsType = ClosedEnum<typeof CreateIntegrationStoreDirectIntegrationsType>;
|
|
235
|
-
export type
|
|
235
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8895 = {};
|
|
236
236
|
export type CreateIntegrationStoreDirectPropertiesValue = {
|
|
237
|
-
|
|
237
|
+
atBRANDAt8895: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8895;
|
|
238
238
|
};
|
|
239
239
|
export declare const CreateIntegrationStoreDirectDisabled3: {
|
|
240
240
|
readonly Update: "update";
|
|
@@ -267,17 +267,17 @@ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse2
|
|
|
267
267
|
readonly Domain: "domain";
|
|
268
268
|
};
|
|
269
269
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl>;
|
|
270
|
-
export type
|
|
270
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8895 = {};
|
|
271
271
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength = {
|
|
272
|
-
|
|
272
|
+
atBRANDAt8895: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8895;
|
|
273
273
|
};
|
|
274
|
-
export type
|
|
274
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8895 = {};
|
|
275
275
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength = {
|
|
276
|
-
|
|
276
|
+
atBRANDAt8895: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8895;
|
|
277
277
|
};
|
|
278
|
-
export type
|
|
278
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8895 = {};
|
|
279
279
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern = {
|
|
280
|
-
|
|
280
|
+
atBRANDAt8895: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8895;
|
|
281
281
|
};
|
|
282
282
|
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3: {
|
|
283
283
|
readonly Update: "update";
|
|
@@ -338,9 +338,9 @@ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse2
|
|
|
338
338
|
readonly VercelRegion: "vercel-region";
|
|
339
339
|
};
|
|
340
340
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl>;
|
|
341
|
-
export type
|
|
341
|
+
export type CreateIntegrationStoreDirectUiOptionsAtBRANDAt8895 = {};
|
|
342
342
|
export type CreateIntegrationStoreDirectUiOptionsValue = {
|
|
343
|
-
|
|
343
|
+
atBRANDAt8895: CreateIntegrationStoreDirectUiOptionsAtBRANDAt8895;
|
|
344
344
|
};
|
|
345
345
|
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse2003: {
|
|
346
346
|
readonly Update: "update";
|
|
@@ -365,9 +365,9 @@ export type CreateIntegrationStoreDirectUiOptions3 = {
|
|
|
365
365
|
disabled?: CreateIntegrationStoreDirectDisabledIntegrationsResponse2002 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse2003 | undefined;
|
|
366
366
|
hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse2002 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse2003 | undefined;
|
|
367
367
|
};
|
|
368
|
-
export type
|
|
368
|
+
export type UiOptionsAtBRANDAt8895 = {};
|
|
369
369
|
export type CreateIntegrationStoreDirectUiOptions2 = {
|
|
370
|
-
|
|
370
|
+
atBRANDAt8895: UiOptionsAtBRANDAt8895;
|
|
371
371
|
};
|
|
372
372
|
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3: {
|
|
373
373
|
readonly Update: "update";
|
|
@@ -394,17 +394,17 @@ export type CreateIntegrationStoreDirectUiOptions1 = {
|
|
|
394
394
|
hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3 | undefined;
|
|
395
395
|
};
|
|
396
396
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiOptions = CreateIntegrationStoreDirectUiOptions1 | CreateIntegrationStoreDirectUiOptions2 | CreateIntegrationStoreDirectUiOptions3;
|
|
397
|
-
export type
|
|
397
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8895 = {};
|
|
398
398
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength = {
|
|
399
|
-
|
|
399
|
+
atBRANDAt8895: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8895;
|
|
400
400
|
};
|
|
401
|
-
export type
|
|
401
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8895 = {};
|
|
402
402
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength = {
|
|
403
|
-
|
|
403
|
+
atBRANDAt8895: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8895;
|
|
404
404
|
};
|
|
405
|
-
export type
|
|
405
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8895 = {};
|
|
406
406
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern = {
|
|
407
|
-
|
|
407
|
+
atBRANDAt8895: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8895;
|
|
408
408
|
};
|
|
409
409
|
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStore3: {
|
|
410
410
|
readonly Update: "update";
|
|
@@ -466,17 +466,17 @@ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse2
|
|
|
466
466
|
readonly String: "string";
|
|
467
467
|
};
|
|
468
468
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type>;
|
|
469
|
-
export type
|
|
469
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8895 = {};
|
|
470
470
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength = {
|
|
471
|
-
|
|
471
|
+
atBRANDAt8895: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8895;
|
|
472
472
|
};
|
|
473
|
-
export type
|
|
473
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8895 = {};
|
|
474
474
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength = {
|
|
475
|
-
|
|
475
|
+
atBRANDAt8895: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8895;
|
|
476
476
|
};
|
|
477
|
-
export type
|
|
477
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8895 = {};
|
|
478
478
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern = {
|
|
479
|
-
|
|
479
|
+
atBRANDAt8895: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8895;
|
|
480
480
|
};
|
|
481
481
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsItems = {
|
|
482
482
|
type: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type;
|
|
@@ -599,17 +599,17 @@ export type CreateIntegrationStoreDirectPropertiesUiOptions = {
|
|
|
599
599
|
disabled?: CreateIntegrationStoreDirectDisabledIntegrationsResponse2 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse3 | undefined;
|
|
600
600
|
hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse2 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse3 | undefined;
|
|
601
601
|
};
|
|
602
|
-
export type
|
|
602
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8895 = {};
|
|
603
603
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength = {
|
|
604
|
-
|
|
604
|
+
atBRANDAt8895: CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8895;
|
|
605
605
|
};
|
|
606
|
-
export type
|
|
606
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8895 = {};
|
|
607
607
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsMinLength = {
|
|
608
|
-
|
|
608
|
+
atBRANDAt8895: CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8895;
|
|
609
609
|
};
|
|
610
|
-
export type
|
|
610
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8895 = {};
|
|
611
611
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsPattern = {
|
|
612
|
-
|
|
612
|
+
atBRANDAt8895: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8895;
|
|
613
613
|
};
|
|
614
614
|
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJson3: {
|
|
615
615
|
readonly Update: "update";
|
|
@@ -855,17 +855,17 @@ export declare const CreateIntegrationStoreDirectPropertiesUiControl: {
|
|
|
855
855
|
readonly Input: "input";
|
|
856
856
|
};
|
|
857
857
|
export type CreateIntegrationStoreDirectPropertiesUiControl = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesUiControl>;
|
|
858
|
-
export type
|
|
858
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8895 = {};
|
|
859
859
|
export type CreateIntegrationStoreDirectPropertiesMaxLength = {
|
|
860
|
-
|
|
860
|
+
atBRANDAt8895: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8895;
|
|
861
861
|
};
|
|
862
|
-
export type
|
|
862
|
+
export type PropertiesAtBRANDAt8895 = {};
|
|
863
863
|
export type CreateIntegrationStoreDirectPropertiesMinLength = {
|
|
864
|
-
|
|
864
|
+
atBRANDAt8895: PropertiesAtBRANDAt8895;
|
|
865
865
|
};
|
|
866
|
-
export type
|
|
866
|
+
export type CreateIntegrationStoreDirectPropertiesAtBRANDAt8895 = {};
|
|
867
867
|
export type CreateIntegrationStoreDirectPropertiesPattern = {
|
|
868
|
-
|
|
868
|
+
atBRANDAt8895: CreateIntegrationStoreDirectPropertiesAtBRANDAt8895;
|
|
869
869
|
};
|
|
870
870
|
export declare const CreateIntegrationStoreDirectUiReadOnly3: {
|
|
871
871
|
readonly Update: "update";
|
|
@@ -1023,9 +1023,9 @@ export type Guides = {
|
|
|
1023
1023
|
title: string;
|
|
1024
1024
|
steps: Array<Steps>;
|
|
1025
1025
|
};
|
|
1026
|
-
export type
|
|
1026
|
+
export type AtBRANDAt8895 = {};
|
|
1027
1027
|
export type CreateIntegrationStoreDirectValue = {
|
|
1028
|
-
|
|
1028
|
+
atBRANDAt8895: AtBRANDAt8895;
|
|
1029
1029
|
};
|
|
1030
1030
|
export declare const Disabled3: {
|
|
1031
1031
|
readonly Update: "update";
|
|
@@ -1142,6 +1142,7 @@ export type CreateIntegrationStoreDirectStore = {
|
|
|
1142
1142
|
} | undefined;
|
|
1143
1143
|
externalResourceId: string;
|
|
1144
1144
|
externalResourceStatus?: ExternalResourceStatus | null | undefined;
|
|
1145
|
+
directPartnerConsoleUrl?: string | undefined;
|
|
1145
1146
|
product: Product;
|
|
1146
1147
|
protocolSettings?: CreateIntegrationStoreDirectProtocolSettings | undefined;
|
|
1147
1148
|
notification?: CreateIntegrationStoreDirectNotification | undefined;
|
|
@@ -1397,18 +1398,18 @@ export declare const CreateIntegrationStoreDirectIntegrationsType$inboundSchema:
|
|
|
1397
1398
|
/** @internal */
|
|
1398
1399
|
export declare const CreateIntegrationStoreDirectIntegrationsType$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectIntegrationsType>;
|
|
1399
1400
|
/** @internal */
|
|
1400
|
-
export declare const
|
|
1401
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8895$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8895, z.ZodTypeDef, unknown>;
|
|
1401
1402
|
/** @internal */
|
|
1402
|
-
export type
|
|
1403
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8895$Outbound = {};
|
|
1403
1404
|
/** @internal */
|
|
1404
|
-
export declare const
|
|
1405
|
-
export declare function
|
|
1406
|
-
export declare function
|
|
1405
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8895$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8895$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8895>;
|
|
1406
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8895ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8895: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8895): string;
|
|
1407
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8895FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8895, SDKValidationError>;
|
|
1407
1408
|
/** @internal */
|
|
1408
1409
|
export declare const CreateIntegrationStoreDirectPropertiesValue$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesValue, z.ZodTypeDef, unknown>;
|
|
1409
1410
|
/** @internal */
|
|
1410
1411
|
export type CreateIntegrationStoreDirectPropertiesValue$Outbound = {
|
|
1411
|
-
"__@BRAND@
|
|
1412
|
+
"__@BRAND@8895": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8895$Outbound;
|
|
1412
1413
|
};
|
|
1413
1414
|
/** @internal */
|
|
1414
1415
|
export declare const CreateIntegrationStoreDirectPropertiesValue$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesValue$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesValue>;
|
|
@@ -1479,54 +1480,54 @@ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse2
|
|
|
1479
1480
|
/** @internal */
|
|
1480
1481
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl>;
|
|
1481
1482
|
/** @internal */
|
|
1482
|
-
export declare const
|
|
1483
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8895$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8895, z.ZodTypeDef, unknown>;
|
|
1483
1484
|
/** @internal */
|
|
1484
|
-
export type
|
|
1485
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8895$Outbound = {};
|
|
1485
1486
|
/** @internal */
|
|
1486
|
-
export declare const
|
|
1487
|
-
export declare function
|
|
1488
|
-
export declare function
|
|
1487
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8895$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8895$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8895>;
|
|
1488
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8895ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8895: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8895): string;
|
|
1489
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8895FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8895, SDKValidationError>;
|
|
1489
1490
|
/** @internal */
|
|
1490
1491
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength, z.ZodTypeDef, unknown>;
|
|
1491
1492
|
/** @internal */
|
|
1492
1493
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$Outbound = {
|
|
1493
|
-
"__@BRAND@
|
|
1494
|
+
"__@BRAND@8895": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8895$Outbound;
|
|
1494
1495
|
};
|
|
1495
1496
|
/** @internal */
|
|
1496
1497
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength>;
|
|
1497
1498
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLengthToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength): string;
|
|
1498
1499
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength, SDKValidationError>;
|
|
1499
1500
|
/** @internal */
|
|
1500
|
-
export declare const
|
|
1501
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8895$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8895, z.ZodTypeDef, unknown>;
|
|
1501
1502
|
/** @internal */
|
|
1502
|
-
export type
|
|
1503
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8895$Outbound = {};
|
|
1503
1504
|
/** @internal */
|
|
1504
|
-
export declare const
|
|
1505
|
-
export declare function
|
|
1506
|
-
export declare function
|
|
1505
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8895$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8895$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8895>;
|
|
1506
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8895ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8895: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8895): string;
|
|
1507
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8895FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8895, SDKValidationError>;
|
|
1507
1508
|
/** @internal */
|
|
1508
1509
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength, z.ZodTypeDef, unknown>;
|
|
1509
1510
|
/** @internal */
|
|
1510
1511
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$Outbound = {
|
|
1511
|
-
"__@BRAND@
|
|
1512
|
+
"__@BRAND@8895": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8895$Outbound;
|
|
1512
1513
|
};
|
|
1513
1514
|
/** @internal */
|
|
1514
1515
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength>;
|
|
1515
1516
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200MinLengthToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength): string;
|
|
1516
1517
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200MinLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength, SDKValidationError>;
|
|
1517
1518
|
/** @internal */
|
|
1518
|
-
export declare const
|
|
1519
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8895$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8895, z.ZodTypeDef, unknown>;
|
|
1519
1520
|
/** @internal */
|
|
1520
|
-
export type
|
|
1521
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8895$Outbound = {};
|
|
1521
1522
|
/** @internal */
|
|
1522
|
-
export declare const
|
|
1523
|
-
export declare function
|
|
1524
|
-
export declare function
|
|
1523
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8895$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8895$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8895>;
|
|
1524
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8895ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8895: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8895): string;
|
|
1525
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8895FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8895, SDKValidationError>;
|
|
1525
1526
|
/** @internal */
|
|
1526
1527
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern, z.ZodTypeDef, unknown>;
|
|
1527
1528
|
/** @internal */
|
|
1528
1529
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$Outbound = {
|
|
1529
|
-
"__@BRAND@
|
|
1530
|
+
"__@BRAND@8895": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8895$Outbound;
|
|
1530
1531
|
};
|
|
1531
1532
|
/** @internal */
|
|
1532
1533
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern>;
|
|
@@ -1659,18 +1660,18 @@ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse2
|
|
|
1659
1660
|
/** @internal */
|
|
1660
1661
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl>;
|
|
1661
1662
|
/** @internal */
|
|
1662
|
-
export declare const
|
|
1663
|
+
export declare const CreateIntegrationStoreDirectUiOptionsAtBRANDAt8895$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsAtBRANDAt8895, z.ZodTypeDef, unknown>;
|
|
1663
1664
|
/** @internal */
|
|
1664
|
-
export type
|
|
1665
|
+
export type CreateIntegrationStoreDirectUiOptionsAtBRANDAt8895$Outbound = {};
|
|
1665
1666
|
/** @internal */
|
|
1666
|
-
export declare const
|
|
1667
|
-
export declare function
|
|
1668
|
-
export declare function
|
|
1667
|
+
export declare const CreateIntegrationStoreDirectUiOptionsAtBRANDAt8895$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsAtBRANDAt8895$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptionsAtBRANDAt8895>;
|
|
1668
|
+
export declare function createIntegrationStoreDirectUiOptionsAtBRANDAt8895ToJSON(createIntegrationStoreDirectUiOptionsAtBRANDAt8895: CreateIntegrationStoreDirectUiOptionsAtBRANDAt8895): string;
|
|
1669
|
+
export declare function createIntegrationStoreDirectUiOptionsAtBRANDAt8895FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsAtBRANDAt8895, SDKValidationError>;
|
|
1669
1670
|
/** @internal */
|
|
1670
1671
|
export declare const CreateIntegrationStoreDirectUiOptionsValue$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsValue, z.ZodTypeDef, unknown>;
|
|
1671
1672
|
/** @internal */
|
|
1672
1673
|
export type CreateIntegrationStoreDirectUiOptionsValue$Outbound = {
|
|
1673
|
-
"__@BRAND@
|
|
1674
|
+
"__@BRAND@8895": CreateIntegrationStoreDirectUiOptionsAtBRANDAt8895$Outbound;
|
|
1674
1675
|
};
|
|
1675
1676
|
/** @internal */
|
|
1676
1677
|
export declare const CreateIntegrationStoreDirectUiOptionsValue$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsValue$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptionsValue>;
|
|
@@ -1733,18 +1734,18 @@ export declare const CreateIntegrationStoreDirectUiOptions3$outboundSchema: z.Zo
|
|
|
1733
1734
|
export declare function createIntegrationStoreDirectUiOptions3ToJSON(createIntegrationStoreDirectUiOptions3: CreateIntegrationStoreDirectUiOptions3): string;
|
|
1734
1735
|
export declare function createIntegrationStoreDirectUiOptions3FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptions3, SDKValidationError>;
|
|
1735
1736
|
/** @internal */
|
|
1736
|
-
export declare const
|
|
1737
|
+
export declare const UiOptionsAtBRANDAt8895$inboundSchema: z.ZodType<UiOptionsAtBRANDAt8895, z.ZodTypeDef, unknown>;
|
|
1737
1738
|
/** @internal */
|
|
1738
|
-
export type
|
|
1739
|
+
export type UiOptionsAtBRANDAt8895$Outbound = {};
|
|
1739
1740
|
/** @internal */
|
|
1740
|
-
export declare const
|
|
1741
|
-
export declare function
|
|
1742
|
-
export declare function
|
|
1741
|
+
export declare const UiOptionsAtBRANDAt8895$outboundSchema: z.ZodType<UiOptionsAtBRANDAt8895$Outbound, z.ZodTypeDef, UiOptionsAtBRANDAt8895>;
|
|
1742
|
+
export declare function uiOptionsAtBRANDAt8895ToJSON(uiOptionsAtBRANDAt8895: UiOptionsAtBRANDAt8895): string;
|
|
1743
|
+
export declare function uiOptionsAtBRANDAt8895FromJSON(jsonString: string): SafeParseResult<UiOptionsAtBRANDAt8895, SDKValidationError>;
|
|
1743
1744
|
/** @internal */
|
|
1744
1745
|
export declare const CreateIntegrationStoreDirectUiOptions2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptions2, z.ZodTypeDef, unknown>;
|
|
1745
1746
|
/** @internal */
|
|
1746
1747
|
export type CreateIntegrationStoreDirectUiOptions2$Outbound = {
|
|
1747
|
-
"__@BRAND@
|
|
1748
|
+
"__@BRAND@8895": UiOptionsAtBRANDAt8895$Outbound;
|
|
1748
1749
|
};
|
|
1749
1750
|
/** @internal */
|
|
1750
1751
|
export declare const CreateIntegrationStoreDirectUiOptions2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptions2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptions2>;
|
|
@@ -1816,54 +1817,54 @@ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseU
|
|
|
1816
1817
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseUiOptionsToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponseUiOptions: CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiOptions): string;
|
|
1817
1818
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseUiOptionsFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiOptions, SDKValidationError>;
|
|
1818
1819
|
/** @internal */
|
|
1819
|
-
export declare const
|
|
1820
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8895$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8895, z.ZodTypeDef, unknown>;
|
|
1820
1821
|
/** @internal */
|
|
1821
|
-
export type
|
|
1822
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8895$Outbound = {};
|
|
1822
1823
|
/** @internal */
|
|
1823
|
-
export declare const
|
|
1824
|
-
export declare function
|
|
1825
|
-
export declare function
|
|
1824
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8895$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8895$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8895>;
|
|
1825
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8895ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8895: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8895): string;
|
|
1826
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8895FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8895, SDKValidationError>;
|
|
1826
1827
|
/** @internal */
|
|
1827
1828
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength, z.ZodTypeDef, unknown>;
|
|
1828
1829
|
/** @internal */
|
|
1829
1830
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$Outbound = {
|
|
1830
|
-
"__@BRAND@
|
|
1831
|
+
"__@BRAND@8895": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8895$Outbound;
|
|
1831
1832
|
};
|
|
1832
1833
|
/** @internal */
|
|
1833
1834
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength>;
|
|
1834
1835
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseMaxLengthToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength: CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength): string;
|
|
1835
1836
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseMaxLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength, SDKValidationError>;
|
|
1836
1837
|
/** @internal */
|
|
1837
|
-
export declare const
|
|
1838
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8895$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8895, z.ZodTypeDef, unknown>;
|
|
1838
1839
|
/** @internal */
|
|
1839
|
-
export type
|
|
1840
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8895$Outbound = {};
|
|
1840
1841
|
/** @internal */
|
|
1841
|
-
export declare const
|
|
1842
|
-
export declare function
|
|
1843
|
-
export declare function
|
|
1842
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8895$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8895$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8895>;
|
|
1843
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8895ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8895: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8895): string;
|
|
1844
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8895FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8895, SDKValidationError>;
|
|
1844
1845
|
/** @internal */
|
|
1845
1846
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength, z.ZodTypeDef, unknown>;
|
|
1846
1847
|
/** @internal */
|
|
1847
1848
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$Outbound = {
|
|
1848
|
-
"__@BRAND@
|
|
1849
|
+
"__@BRAND@8895": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8895$Outbound;
|
|
1849
1850
|
};
|
|
1850
1851
|
/** @internal */
|
|
1851
1852
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength>;
|
|
1852
1853
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseMinLengthToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponseMinLength: CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength): string;
|
|
1853
1854
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseMinLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength, SDKValidationError>;
|
|
1854
1855
|
/** @internal */
|
|
1855
|
-
export declare const
|
|
1856
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8895$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8895, z.ZodTypeDef, unknown>;
|
|
1856
1857
|
/** @internal */
|
|
1857
|
-
export type
|
|
1858
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8895$Outbound = {};
|
|
1858
1859
|
/** @internal */
|
|
1859
|
-
export declare const
|
|
1860
|
-
export declare function
|
|
1861
|
-
export declare function
|
|
1860
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8895$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8895$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8895>;
|
|
1861
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8895ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8895: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8895): string;
|
|
1862
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8895FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8895, SDKValidationError>;
|
|
1862
1863
|
/** @internal */
|
|
1863
1864
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern, z.ZodTypeDef, unknown>;
|
|
1864
1865
|
/** @internal */
|
|
1865
1866
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$Outbound = {
|
|
1866
|
-
"__@BRAND@
|
|
1867
|
+
"__@BRAND@8895": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8895$Outbound;
|
|
1867
1868
|
};
|
|
1868
1869
|
/** @internal */
|
|
1869
1870
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern>;
|
|
@@ -1997,54 +1998,54 @@ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse2
|
|
|
1997
1998
|
/** @internal */
|
|
1998
1999
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type>;
|
|
1999
2000
|
/** @internal */
|
|
2000
|
-
export declare const
|
|
2001
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8895$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8895, z.ZodTypeDef, unknown>;
|
|
2001
2002
|
/** @internal */
|
|
2002
|
-
export type
|
|
2003
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8895$Outbound = {};
|
|
2003
2004
|
/** @internal */
|
|
2004
|
-
export declare const
|
|
2005
|
-
export declare function
|
|
2006
|
-
export declare function
|
|
2005
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8895$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8895$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8895>;
|
|
2006
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8895ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8895: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8895): string;
|
|
2007
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8895FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8895, SDKValidationError>;
|
|
2007
2008
|
/** @internal */
|
|
2008
2009
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength, z.ZodTypeDef, unknown>;
|
|
2009
2010
|
/** @internal */
|
|
2010
2011
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength$Outbound = {
|
|
2011
|
-
"__@BRAND@
|
|
2012
|
+
"__@BRAND@8895": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8895$Outbound;
|
|
2012
2013
|
};
|
|
2013
2014
|
/** @internal */
|
|
2014
2015
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength>;
|
|
2015
2016
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLengthToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength): string;
|
|
2016
2017
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength, SDKValidationError>;
|
|
2017
2018
|
/** @internal */
|
|
2018
|
-
export declare const
|
|
2019
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8895$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8895, z.ZodTypeDef, unknown>;
|
|
2019
2020
|
/** @internal */
|
|
2020
|
-
export type
|
|
2021
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8895$Outbound = {};
|
|
2021
2022
|
/** @internal */
|
|
2022
|
-
export declare const
|
|
2023
|
-
export declare function
|
|
2024
|
-
export declare function
|
|
2023
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8895$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8895$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8895>;
|
|
2024
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8895ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8895: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8895): string;
|
|
2025
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8895FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8895, SDKValidationError>;
|
|
2025
2026
|
/** @internal */
|
|
2026
2027
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength, z.ZodTypeDef, unknown>;
|
|
2027
2028
|
/** @internal */
|
|
2028
2029
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength$Outbound = {
|
|
2029
|
-
"__@BRAND@
|
|
2030
|
+
"__@BRAND@8895": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8895$Outbound;
|
|
2030
2031
|
};
|
|
2031
2032
|
/** @internal */
|
|
2032
2033
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength>;
|
|
2033
2034
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLengthToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength): string;
|
|
2034
2035
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength, SDKValidationError>;
|
|
2035
2036
|
/** @internal */
|
|
2036
|
-
export declare const
|
|
2037
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8895$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8895, z.ZodTypeDef, unknown>;
|
|
2037
2038
|
/** @internal */
|
|
2038
|
-
export type
|
|
2039
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8895$Outbound = {};
|
|
2039
2040
|
/** @internal */
|
|
2040
|
-
export declare const
|
|
2041
|
-
export declare function
|
|
2042
|
-
export declare function
|
|
2041
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8895$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8895$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8895>;
|
|
2042
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8895ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8895: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8895): string;
|
|
2043
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8895FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8895, SDKValidationError>;
|
|
2043
2044
|
/** @internal */
|
|
2044
2045
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern, z.ZodTypeDef, unknown>;
|
|
2045
2046
|
/** @internal */
|
|
2046
2047
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern$Outbound = {
|
|
2047
|
-
"__@BRAND@
|
|
2048
|
+
"__@BRAND@8895": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8895$Outbound;
|
|
2048
2049
|
};
|
|
2049
2050
|
/** @internal */
|
|
2050
2051
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern>;
|
|
@@ -2312,54 +2313,54 @@ export declare const CreateIntegrationStoreDirectPropertiesUiOptions$outboundSch
|
|
|
2312
2313
|
export declare function createIntegrationStoreDirectPropertiesUiOptionsToJSON(createIntegrationStoreDirectPropertiesUiOptions: CreateIntegrationStoreDirectPropertiesUiOptions): string;
|
|
2313
2314
|
export declare function createIntegrationStoreDirectPropertiesUiOptionsFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesUiOptions, SDKValidationError>;
|
|
2314
2315
|
/** @internal */
|
|
2315
|
-
export declare const
|
|
2316
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8895$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8895, z.ZodTypeDef, unknown>;
|
|
2316
2317
|
/** @internal */
|
|
2317
|
-
export type
|
|
2318
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8895$Outbound = {};
|
|
2318
2319
|
/** @internal */
|
|
2319
|
-
export declare const
|
|
2320
|
-
export declare function
|
|
2321
|
-
export declare function
|
|
2320
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8895$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8895$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8895>;
|
|
2321
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8895ToJSON(createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8895: CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8895): string;
|
|
2322
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8895FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8895, SDKValidationError>;
|
|
2322
2323
|
/** @internal */
|
|
2323
2324
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength, z.ZodTypeDef, unknown>;
|
|
2324
2325
|
/** @internal */
|
|
2325
2326
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$Outbound = {
|
|
2326
|
-
"__@BRAND@
|
|
2327
|
+
"__@BRAND@8895": CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8895$Outbound;
|
|
2327
2328
|
};
|
|
2328
2329
|
/** @internal */
|
|
2329
2330
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength>;
|
|
2330
2331
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsMaxLengthToJSON(createIntegrationStoreDirectPropertiesIntegrationsMaxLength: CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength): string;
|
|
2331
2332
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsMaxLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength, SDKValidationError>;
|
|
2332
2333
|
/** @internal */
|
|
2333
|
-
export declare const
|
|
2334
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8895$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8895, z.ZodTypeDef, unknown>;
|
|
2334
2335
|
/** @internal */
|
|
2335
|
-
export type
|
|
2336
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8895$Outbound = {};
|
|
2336
2337
|
/** @internal */
|
|
2337
|
-
export declare const
|
|
2338
|
-
export declare function
|
|
2339
|
-
export declare function
|
|
2338
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8895$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8895$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8895>;
|
|
2339
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8895ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8895: CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8895): string;
|
|
2340
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8895FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8895, SDKValidationError>;
|
|
2340
2341
|
/** @internal */
|
|
2341
2342
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsMinLength, z.ZodTypeDef, unknown>;
|
|
2342
2343
|
/** @internal */
|
|
2343
2344
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$Outbound = {
|
|
2344
|
-
"__@BRAND@
|
|
2345
|
+
"__@BRAND@8895": CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8895$Outbound;
|
|
2345
2346
|
};
|
|
2346
2347
|
/** @internal */
|
|
2347
2348
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsMinLength>;
|
|
2348
2349
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsMinLengthToJSON(createIntegrationStoreDirectPropertiesIntegrationsMinLength: CreateIntegrationStoreDirectPropertiesIntegrationsMinLength): string;
|
|
2349
2350
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsMinLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsMinLength, SDKValidationError>;
|
|
2350
2351
|
/** @internal */
|
|
2351
|
-
export declare const
|
|
2352
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8895$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8895, z.ZodTypeDef, unknown>;
|
|
2352
2353
|
/** @internal */
|
|
2353
|
-
export type
|
|
2354
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8895$Outbound = {};
|
|
2354
2355
|
/** @internal */
|
|
2355
|
-
export declare const
|
|
2356
|
-
export declare function
|
|
2357
|
-
export declare function
|
|
2356
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8895$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8895$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8895>;
|
|
2357
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8895ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8895: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8895): string;
|
|
2358
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8895FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8895, SDKValidationError>;
|
|
2358
2359
|
/** @internal */
|
|
2359
2360
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsPattern$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsPattern, z.ZodTypeDef, unknown>;
|
|
2360
2361
|
/** @internal */
|
|
2361
2362
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsPattern$Outbound = {
|
|
2362
|
-
"__@BRAND@
|
|
2363
|
+
"__@BRAND@8895": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8895$Outbound;
|
|
2363
2364
|
};
|
|
2364
2365
|
/** @internal */
|
|
2365
2366
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsPattern$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsPattern$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsPattern>;
|
|
@@ -2885,54 +2886,54 @@ export declare const CreateIntegrationStoreDirectPropertiesUiControl$inboundSche
|
|
|
2885
2886
|
/** @internal */
|
|
2886
2887
|
export declare const CreateIntegrationStoreDirectPropertiesUiControl$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesUiControl>;
|
|
2887
2888
|
/** @internal */
|
|
2888
|
-
export declare const
|
|
2889
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8895$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8895, z.ZodTypeDef, unknown>;
|
|
2889
2890
|
/** @internal */
|
|
2890
|
-
export type
|
|
2891
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8895$Outbound = {};
|
|
2891
2892
|
/** @internal */
|
|
2892
|
-
export declare const
|
|
2893
|
-
export declare function
|
|
2894
|
-
export declare function
|
|
2893
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8895$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8895$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8895>;
|
|
2894
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8895ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8895: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8895): string;
|
|
2895
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8895FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8895, SDKValidationError>;
|
|
2895
2896
|
/** @internal */
|
|
2896
2897
|
export declare const CreateIntegrationStoreDirectPropertiesMaxLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesMaxLength, z.ZodTypeDef, unknown>;
|
|
2897
2898
|
/** @internal */
|
|
2898
2899
|
export type CreateIntegrationStoreDirectPropertiesMaxLength$Outbound = {
|
|
2899
|
-
"__@BRAND@
|
|
2900
|
+
"__@BRAND@8895": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8895$Outbound;
|
|
2900
2901
|
};
|
|
2901
2902
|
/** @internal */
|
|
2902
2903
|
export declare const CreateIntegrationStoreDirectPropertiesMaxLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesMaxLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesMaxLength>;
|
|
2903
2904
|
export declare function createIntegrationStoreDirectPropertiesMaxLengthToJSON(createIntegrationStoreDirectPropertiesMaxLength: CreateIntegrationStoreDirectPropertiesMaxLength): string;
|
|
2904
2905
|
export declare function createIntegrationStoreDirectPropertiesMaxLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesMaxLength, SDKValidationError>;
|
|
2905
2906
|
/** @internal */
|
|
2906
|
-
export declare const
|
|
2907
|
+
export declare const PropertiesAtBRANDAt8895$inboundSchema: z.ZodType<PropertiesAtBRANDAt8895, z.ZodTypeDef, unknown>;
|
|
2907
2908
|
/** @internal */
|
|
2908
|
-
export type
|
|
2909
|
+
export type PropertiesAtBRANDAt8895$Outbound = {};
|
|
2909
2910
|
/** @internal */
|
|
2910
|
-
export declare const
|
|
2911
|
-
export declare function
|
|
2912
|
-
export declare function
|
|
2911
|
+
export declare const PropertiesAtBRANDAt8895$outboundSchema: z.ZodType<PropertiesAtBRANDAt8895$Outbound, z.ZodTypeDef, PropertiesAtBRANDAt8895>;
|
|
2912
|
+
export declare function propertiesAtBRANDAt8895ToJSON(propertiesAtBRANDAt8895: PropertiesAtBRANDAt8895): string;
|
|
2913
|
+
export declare function propertiesAtBRANDAt8895FromJSON(jsonString: string): SafeParseResult<PropertiesAtBRANDAt8895, SDKValidationError>;
|
|
2913
2914
|
/** @internal */
|
|
2914
2915
|
export declare const CreateIntegrationStoreDirectPropertiesMinLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesMinLength, z.ZodTypeDef, unknown>;
|
|
2915
2916
|
/** @internal */
|
|
2916
2917
|
export type CreateIntegrationStoreDirectPropertiesMinLength$Outbound = {
|
|
2917
|
-
"__@BRAND@
|
|
2918
|
+
"__@BRAND@8895": PropertiesAtBRANDAt8895$Outbound;
|
|
2918
2919
|
};
|
|
2919
2920
|
/** @internal */
|
|
2920
2921
|
export declare const CreateIntegrationStoreDirectPropertiesMinLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesMinLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesMinLength>;
|
|
2921
2922
|
export declare function createIntegrationStoreDirectPropertiesMinLengthToJSON(createIntegrationStoreDirectPropertiesMinLength: CreateIntegrationStoreDirectPropertiesMinLength): string;
|
|
2922
2923
|
export declare function createIntegrationStoreDirectPropertiesMinLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesMinLength, SDKValidationError>;
|
|
2923
2924
|
/** @internal */
|
|
2924
|
-
export declare const
|
|
2925
|
+
export declare const CreateIntegrationStoreDirectPropertiesAtBRANDAt8895$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesAtBRANDAt8895, z.ZodTypeDef, unknown>;
|
|
2925
2926
|
/** @internal */
|
|
2926
|
-
export type
|
|
2927
|
+
export type CreateIntegrationStoreDirectPropertiesAtBRANDAt8895$Outbound = {};
|
|
2927
2928
|
/** @internal */
|
|
2928
|
-
export declare const
|
|
2929
|
-
export declare function
|
|
2930
|
-
export declare function
|
|
2929
|
+
export declare const CreateIntegrationStoreDirectPropertiesAtBRANDAt8895$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesAtBRANDAt8895$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesAtBRANDAt8895>;
|
|
2930
|
+
export declare function createIntegrationStoreDirectPropertiesAtBRANDAt8895ToJSON(createIntegrationStoreDirectPropertiesAtBRANDAt8895: CreateIntegrationStoreDirectPropertiesAtBRANDAt8895): string;
|
|
2931
|
+
export declare function createIntegrationStoreDirectPropertiesAtBRANDAt8895FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesAtBRANDAt8895, SDKValidationError>;
|
|
2931
2932
|
/** @internal */
|
|
2932
2933
|
export declare const CreateIntegrationStoreDirectPropertiesPattern$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesPattern, z.ZodTypeDef, unknown>;
|
|
2933
2934
|
/** @internal */
|
|
2934
2935
|
export type CreateIntegrationStoreDirectPropertiesPattern$Outbound = {
|
|
2935
|
-
"__@BRAND@
|
|
2936
|
+
"__@BRAND@8895": CreateIntegrationStoreDirectPropertiesAtBRANDAt8895$Outbound;
|
|
2936
2937
|
};
|
|
2937
2938
|
/** @internal */
|
|
2938
2939
|
export declare const CreateIntegrationStoreDirectPropertiesPattern$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesPattern$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesPattern>;
|
|
@@ -3148,18 +3149,18 @@ export declare const Guides$outboundSchema: z.ZodType<Guides$Outbound, z.ZodType
|
|
|
3148
3149
|
export declare function guidesToJSON(guides: Guides): string;
|
|
3149
3150
|
export declare function guidesFromJSON(jsonString: string): SafeParseResult<Guides, SDKValidationError>;
|
|
3150
3151
|
/** @internal */
|
|
3151
|
-
export declare const
|
|
3152
|
+
export declare const AtBRANDAt8895$inboundSchema: z.ZodType<AtBRANDAt8895, z.ZodTypeDef, unknown>;
|
|
3152
3153
|
/** @internal */
|
|
3153
|
-
export type
|
|
3154
|
+
export type AtBRANDAt8895$Outbound = {};
|
|
3154
3155
|
/** @internal */
|
|
3155
|
-
export declare const
|
|
3156
|
-
export declare function
|
|
3157
|
-
export declare function
|
|
3156
|
+
export declare const AtBRANDAt8895$outboundSchema: z.ZodType<AtBRANDAt8895$Outbound, z.ZodTypeDef, AtBRANDAt8895>;
|
|
3157
|
+
export declare function atBRANDAt8895ToJSON(atBRANDAt8895: AtBRANDAt8895): string;
|
|
3158
|
+
export declare function atBRANDAt8895FromJSON(jsonString: string): SafeParseResult<AtBRANDAt8895, SDKValidationError>;
|
|
3158
3159
|
/** @internal */
|
|
3159
3160
|
export declare const CreateIntegrationStoreDirectValue$inboundSchema: z.ZodType<CreateIntegrationStoreDirectValue, z.ZodTypeDef, unknown>;
|
|
3160
3161
|
/** @internal */
|
|
3161
3162
|
export type CreateIntegrationStoreDirectValue$Outbound = {
|
|
3162
|
-
"__@BRAND@
|
|
3163
|
+
"__@BRAND@8895": AtBRANDAt8895$Outbound;
|
|
3163
3164
|
};
|
|
3164
3165
|
/** @internal */
|
|
3165
3166
|
export declare const CreateIntegrationStoreDirectValue$outboundSchema: z.ZodType<CreateIntegrationStoreDirectValue$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectValue>;
|
|
@@ -3368,6 +3369,7 @@ export type CreateIntegrationStoreDirectStore$Outbound = {
|
|
|
3368
3369
|
} | undefined;
|
|
3369
3370
|
externalResourceId: string;
|
|
3370
3371
|
externalResourceStatus?: string | null | undefined;
|
|
3372
|
+
directPartnerConsoleUrl?: string | undefined;
|
|
3371
3373
|
product: Product$Outbound;
|
|
3372
3374
|
protocolSettings?: CreateIntegrationStoreDirectProtocolSettings$Outbound | undefined;
|
|
3373
3375
|
notification?: CreateIntegrationStoreDirectNotification$Outbound | undefined;
|