@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
|
@@ -289,12 +289,12 @@ export type CreateIntegrationStoreDirectIntegrationsType = ClosedEnum<
|
|
|
289
289
|
typeof CreateIntegrationStoreDirectIntegrationsType
|
|
290
290
|
>;
|
|
291
291
|
|
|
292
|
-
export type
|
|
292
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8895 =
|
|
293
293
|
{};
|
|
294
294
|
|
|
295
295
|
export type CreateIntegrationStoreDirectPropertiesValue = {
|
|
296
|
-
|
|
297
|
-
|
|
296
|
+
atBRANDAt8895:
|
|
297
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8895;
|
|
298
298
|
};
|
|
299
299
|
|
|
300
300
|
export const CreateIntegrationStoreDirectDisabled3 = {
|
|
@@ -363,31 +363,31 @@ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applica
|
|
|
363
363
|
typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl
|
|
364
364
|
>;
|
|
365
365
|
|
|
366
|
-
export type
|
|
366
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8895 =
|
|
367
367
|
{};
|
|
368
368
|
|
|
369
369
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength =
|
|
370
370
|
{
|
|
371
|
-
|
|
372
|
-
|
|
371
|
+
atBRANDAt8895:
|
|
372
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8895;
|
|
373
373
|
};
|
|
374
374
|
|
|
375
|
-
export type
|
|
375
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8895 =
|
|
376
376
|
{};
|
|
377
377
|
|
|
378
378
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength =
|
|
379
379
|
{
|
|
380
|
-
|
|
381
|
-
|
|
380
|
+
atBRANDAt8895:
|
|
381
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8895;
|
|
382
382
|
};
|
|
383
383
|
|
|
384
|
-
export type
|
|
384
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8895 =
|
|
385
385
|
{};
|
|
386
386
|
|
|
387
387
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern =
|
|
388
388
|
{
|
|
389
|
-
|
|
390
|
-
|
|
389
|
+
atBRANDAt8895:
|
|
390
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8895;
|
|
391
391
|
};
|
|
392
392
|
|
|
393
393
|
export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3 =
|
|
@@ -525,10 +525,10 @@ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applica
|
|
|
525
525
|
typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl
|
|
526
526
|
>;
|
|
527
527
|
|
|
528
|
-
export type
|
|
528
|
+
export type CreateIntegrationStoreDirectUiOptionsAtBRANDAt8895 = {};
|
|
529
529
|
|
|
530
530
|
export type CreateIntegrationStoreDirectUiOptionsValue = {
|
|
531
|
-
|
|
531
|
+
atBRANDAt8895: CreateIntegrationStoreDirectUiOptionsAtBRANDAt8895;
|
|
532
532
|
};
|
|
533
533
|
|
|
534
534
|
export const CreateIntegrationStoreDirectDisabledIntegrationsResponse2003 = {
|
|
@@ -579,10 +579,10 @@ export type CreateIntegrationStoreDirectUiOptions3 = {
|
|
|
579
579
|
| undefined;
|
|
580
580
|
};
|
|
581
581
|
|
|
582
|
-
export type
|
|
582
|
+
export type UiOptionsAtBRANDAt8895 = {};
|
|
583
583
|
|
|
584
584
|
export type CreateIntegrationStoreDirectUiOptions2 = {
|
|
585
|
-
|
|
585
|
+
atBRANDAt8895: UiOptionsAtBRANDAt8895;
|
|
586
586
|
};
|
|
587
587
|
|
|
588
588
|
export const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3 =
|
|
@@ -645,31 +645,31 @@ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiOptions
|
|
|
645
645
|
| CreateIntegrationStoreDirectUiOptions2
|
|
646
646
|
| CreateIntegrationStoreDirectUiOptions3;
|
|
647
647
|
|
|
648
|
-
export type
|
|
648
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8895 =
|
|
649
649
|
{};
|
|
650
650
|
|
|
651
651
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength =
|
|
652
652
|
{
|
|
653
|
-
|
|
654
|
-
|
|
653
|
+
atBRANDAt8895:
|
|
654
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8895;
|
|
655
655
|
};
|
|
656
656
|
|
|
657
|
-
export type
|
|
657
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8895 =
|
|
658
658
|
{};
|
|
659
659
|
|
|
660
660
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength =
|
|
661
661
|
{
|
|
662
|
-
|
|
663
|
-
|
|
662
|
+
atBRANDAt8895:
|
|
663
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8895;
|
|
664
664
|
};
|
|
665
665
|
|
|
666
|
-
export type
|
|
666
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8895 =
|
|
667
667
|
{};
|
|
668
668
|
|
|
669
669
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern =
|
|
670
670
|
{
|
|
671
|
-
|
|
672
|
-
|
|
671
|
+
atBRANDAt8895:
|
|
672
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8895;
|
|
673
673
|
};
|
|
674
674
|
|
|
675
675
|
export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStore3 =
|
|
@@ -812,31 +812,31 @@ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applica
|
|
|
812
812
|
typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type
|
|
813
813
|
>;
|
|
814
814
|
|
|
815
|
-
export type
|
|
815
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8895 =
|
|
816
816
|
{};
|
|
817
817
|
|
|
818
818
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength =
|
|
819
819
|
{
|
|
820
|
-
|
|
821
|
-
|
|
820
|
+
atBRANDAt8895:
|
|
821
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8895;
|
|
822
822
|
};
|
|
823
823
|
|
|
824
|
-
export type
|
|
824
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8895 =
|
|
825
825
|
{};
|
|
826
826
|
|
|
827
827
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength =
|
|
828
828
|
{
|
|
829
|
-
|
|
830
|
-
|
|
829
|
+
atBRANDAt8895:
|
|
830
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8895;
|
|
831
831
|
};
|
|
832
832
|
|
|
833
|
-
export type
|
|
833
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8895 =
|
|
834
834
|
{};
|
|
835
835
|
|
|
836
836
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern =
|
|
837
837
|
{
|
|
838
|
-
|
|
839
|
-
|
|
838
|
+
atBRANDAt8895:
|
|
839
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8895;
|
|
840
840
|
};
|
|
841
841
|
|
|
842
842
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsItems = {
|
|
@@ -1091,28 +1091,28 @@ export type CreateIntegrationStoreDirectPropertiesUiOptions = {
|
|
|
1091
1091
|
| undefined;
|
|
1092
1092
|
};
|
|
1093
1093
|
|
|
1094
|
-
export type
|
|
1094
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8895 =
|
|
1095
1095
|
{};
|
|
1096
1096
|
|
|
1097
1097
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength = {
|
|
1098
|
-
|
|
1099
|
-
|
|
1098
|
+
atBRANDAt8895:
|
|
1099
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8895;
|
|
1100
1100
|
};
|
|
1101
1101
|
|
|
1102
|
-
export type
|
|
1102
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8895 =
|
|
1103
1103
|
{};
|
|
1104
1104
|
|
|
1105
1105
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsMinLength = {
|
|
1106
|
-
|
|
1107
|
-
|
|
1106
|
+
atBRANDAt8895:
|
|
1107
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8895;
|
|
1108
1108
|
};
|
|
1109
1109
|
|
|
1110
|
-
export type
|
|
1110
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8895 =
|
|
1111
1111
|
{};
|
|
1112
1112
|
|
|
1113
1113
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsPattern = {
|
|
1114
|
-
|
|
1115
|
-
|
|
1114
|
+
atBRANDAt8895:
|
|
1115
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8895;
|
|
1116
1116
|
};
|
|
1117
1117
|
|
|
1118
1118
|
export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJson3 =
|
|
@@ -1615,24 +1615,24 @@ export type CreateIntegrationStoreDirectPropertiesUiControl = ClosedEnum<
|
|
|
1615
1615
|
typeof CreateIntegrationStoreDirectPropertiesUiControl
|
|
1616
1616
|
>;
|
|
1617
1617
|
|
|
1618
|
-
export type
|
|
1618
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8895 =
|
|
1619
1619
|
{};
|
|
1620
1620
|
|
|
1621
1621
|
export type CreateIntegrationStoreDirectPropertiesMaxLength = {
|
|
1622
|
-
|
|
1623
|
-
|
|
1622
|
+
atBRANDAt8895:
|
|
1623
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8895;
|
|
1624
1624
|
};
|
|
1625
1625
|
|
|
1626
|
-
export type
|
|
1626
|
+
export type PropertiesAtBRANDAt8895 = {};
|
|
1627
1627
|
|
|
1628
1628
|
export type CreateIntegrationStoreDirectPropertiesMinLength = {
|
|
1629
|
-
|
|
1629
|
+
atBRANDAt8895: PropertiesAtBRANDAt8895;
|
|
1630
1630
|
};
|
|
1631
1631
|
|
|
1632
|
-
export type
|
|
1632
|
+
export type CreateIntegrationStoreDirectPropertiesAtBRANDAt8895 = {};
|
|
1633
1633
|
|
|
1634
1634
|
export type CreateIntegrationStoreDirectPropertiesPattern = {
|
|
1635
|
-
|
|
1635
|
+
atBRANDAt8895: CreateIntegrationStoreDirectPropertiesAtBRANDAt8895;
|
|
1636
1636
|
};
|
|
1637
1637
|
|
|
1638
1638
|
export const CreateIntegrationStoreDirectUiReadOnly3 = {
|
|
@@ -1873,10 +1873,10 @@ export type Guides = {
|
|
|
1873
1873
|
steps: Array<Steps>;
|
|
1874
1874
|
};
|
|
1875
1875
|
|
|
1876
|
-
export type
|
|
1876
|
+
export type AtBRANDAt8895 = {};
|
|
1877
1877
|
|
|
1878
1878
|
export type CreateIntegrationStoreDirectValue = {
|
|
1879
|
-
|
|
1879
|
+
atBRANDAt8895: AtBRANDAt8895;
|
|
1880
1880
|
};
|
|
1881
1881
|
|
|
1882
1882
|
export const Disabled3 = {
|
|
@@ -2020,6 +2020,7 @@ export type CreateIntegrationStoreDirectStore = {
|
|
|
2020
2020
|
} | undefined;
|
|
2021
2021
|
externalResourceId: string;
|
|
2022
2022
|
externalResourceStatus?: ExternalResourceStatus | null | undefined;
|
|
2023
|
+
directPartnerConsoleUrl?: string | undefined;
|
|
2023
2024
|
product: Product;
|
|
2024
2025
|
protocolSettings?: CreateIntegrationStoreDirectProtocolSettings | undefined;
|
|
2025
2026
|
notification?: CreateIntegrationStoreDirectNotification | undefined;
|
|
@@ -2983,47 +2984,47 @@ export const CreateIntegrationStoreDirectIntegrationsType$outboundSchema:
|
|
|
2983
2984
|
CreateIntegrationStoreDirectIntegrationsType$inboundSchema;
|
|
2984
2985
|
|
|
2985
2986
|
/** @internal */
|
|
2986
|
-
export const
|
|
2987
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8895$inboundSchema:
|
|
2987
2988
|
z.ZodType<
|
|
2988
|
-
|
|
2989
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8895,
|
|
2989
2990
|
z.ZodTypeDef,
|
|
2990
2991
|
unknown
|
|
2991
2992
|
> = z.object({});
|
|
2992
2993
|
/** @internal */
|
|
2993
|
-
export type
|
|
2994
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8895$Outbound =
|
|
2994
2995
|
{};
|
|
2995
2996
|
|
|
2996
2997
|
/** @internal */
|
|
2997
|
-
export const
|
|
2998
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8895$outboundSchema:
|
|
2998
2999
|
z.ZodType<
|
|
2999
|
-
|
|
3000
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8895$Outbound,
|
|
3000
3001
|
z.ZodTypeDef,
|
|
3001
|
-
|
|
3002
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8895
|
|
3002
3003
|
> = z.object({});
|
|
3003
3004
|
|
|
3004
|
-
export function
|
|
3005
|
-
|
|
3006
|
-
|
|
3005
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8895ToJSON(
|
|
3006
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8895:
|
|
3007
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8895,
|
|
3007
3008
|
): string {
|
|
3008
3009
|
return JSON.stringify(
|
|
3009
|
-
|
|
3010
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8895$outboundSchema
|
|
3010
3011
|
.parse(
|
|
3011
|
-
|
|
3012
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8895,
|
|
3012
3013
|
),
|
|
3013
3014
|
);
|
|
3014
3015
|
}
|
|
3015
|
-
export function
|
|
3016
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8895FromJSON(
|
|
3016
3017
|
jsonString: string,
|
|
3017
3018
|
): SafeParseResult<
|
|
3018
|
-
|
|
3019
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8895,
|
|
3019
3020
|
SDKValidationError
|
|
3020
3021
|
> {
|
|
3021
3022
|
return safeParse(
|
|
3022
3023
|
jsonString,
|
|
3023
3024
|
(x) =>
|
|
3024
|
-
|
|
3025
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8895$inboundSchema
|
|
3025
3026
|
.parse(JSON.parse(x)),
|
|
3026
|
-
`Failed to parse '
|
|
3027
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8895' from JSON`,
|
|
3027
3028
|
);
|
|
3028
3029
|
}
|
|
3029
3030
|
|
|
@@ -3034,18 +3035,18 @@ export const CreateIntegrationStoreDirectPropertiesValue$inboundSchema:
|
|
|
3034
3035
|
z.ZodTypeDef,
|
|
3035
3036
|
unknown
|
|
3036
3037
|
> = z.object({
|
|
3037
|
-
"__@BRAND@
|
|
3038
|
-
|
|
3038
|
+
"__@BRAND@8895": z.lazy(() =>
|
|
3039
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8895$inboundSchema
|
|
3039
3040
|
),
|
|
3040
3041
|
}).transform((v) => {
|
|
3041
3042
|
return remap$(v, {
|
|
3042
|
-
"__@BRAND@
|
|
3043
|
+
"__@BRAND@8895": "atBRANDAt8895",
|
|
3043
3044
|
});
|
|
3044
3045
|
});
|
|
3045
3046
|
/** @internal */
|
|
3046
3047
|
export type CreateIntegrationStoreDirectPropertiesValue$Outbound = {
|
|
3047
|
-
"__@BRAND@
|
|
3048
|
-
|
|
3048
|
+
"__@BRAND@8895":
|
|
3049
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8895$Outbound;
|
|
3049
3050
|
};
|
|
3050
3051
|
|
|
3051
3052
|
/** @internal */
|
|
@@ -3055,12 +3056,12 @@ export const CreateIntegrationStoreDirectPropertiesValue$outboundSchema:
|
|
|
3055
3056
|
z.ZodTypeDef,
|
|
3056
3057
|
CreateIntegrationStoreDirectPropertiesValue
|
|
3057
3058
|
> = z.object({
|
|
3058
|
-
|
|
3059
|
-
|
|
3059
|
+
atBRANDAt8895: z.lazy(() =>
|
|
3060
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8895$outboundSchema
|
|
3060
3061
|
),
|
|
3061
3062
|
}).transform((v) => {
|
|
3062
3063
|
return remap$(v, {
|
|
3063
|
-
|
|
3064
|
+
atBRANDAt8895: "__@BRAND@8895",
|
|
3064
3065
|
});
|
|
3065
3066
|
});
|
|
3066
3067
|
|
|
@@ -3414,47 +3415,47 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
|
|
|
3414
3415
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$inboundSchema;
|
|
3415
3416
|
|
|
3416
3417
|
/** @internal */
|
|
3417
|
-
export const
|
|
3418
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8895$inboundSchema:
|
|
3418
3419
|
z.ZodType<
|
|
3419
|
-
|
|
3420
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8895,
|
|
3420
3421
|
z.ZodTypeDef,
|
|
3421
3422
|
unknown
|
|
3422
3423
|
> = z.object({});
|
|
3423
3424
|
/** @internal */
|
|
3424
|
-
export type
|
|
3425
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8895$Outbound =
|
|
3425
3426
|
{};
|
|
3426
3427
|
|
|
3427
3428
|
/** @internal */
|
|
3428
|
-
export const
|
|
3429
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8895$outboundSchema:
|
|
3429
3430
|
z.ZodType<
|
|
3430
|
-
|
|
3431
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8895$Outbound,
|
|
3431
3432
|
z.ZodTypeDef,
|
|
3432
|
-
|
|
3433
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8895
|
|
3433
3434
|
> = z.object({});
|
|
3434
3435
|
|
|
3435
|
-
export function
|
|
3436
|
-
|
|
3437
|
-
|
|
3436
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8895ToJSON(
|
|
3437
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8895:
|
|
3438
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8895,
|
|
3438
3439
|
): string {
|
|
3439
3440
|
return JSON.stringify(
|
|
3440
|
-
|
|
3441
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8895$outboundSchema
|
|
3441
3442
|
.parse(
|
|
3442
|
-
|
|
3443
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8895,
|
|
3443
3444
|
),
|
|
3444
3445
|
);
|
|
3445
3446
|
}
|
|
3446
|
-
export function
|
|
3447
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8895FromJSON(
|
|
3447
3448
|
jsonString: string,
|
|
3448
3449
|
): SafeParseResult<
|
|
3449
|
-
|
|
3450
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8895,
|
|
3450
3451
|
SDKValidationError
|
|
3451
3452
|
> {
|
|
3452
3453
|
return safeParse(
|
|
3453
3454
|
jsonString,
|
|
3454
3455
|
(x) =>
|
|
3455
|
-
|
|
3456
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8895$inboundSchema
|
|
3456
3457
|
.parse(JSON.parse(x)),
|
|
3457
|
-
`Failed to parse '
|
|
3458
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8895' from JSON`,
|
|
3458
3459
|
);
|
|
3459
3460
|
}
|
|
3460
3461
|
|
|
@@ -3465,19 +3466,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLen
|
|
|
3465
3466
|
z.ZodTypeDef,
|
|
3466
3467
|
unknown
|
|
3467
3468
|
> = z.object({
|
|
3468
|
-
"__@BRAND@
|
|
3469
|
-
|
|
3469
|
+
"__@BRAND@8895": z.lazy(() =>
|
|
3470
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8895$inboundSchema
|
|
3470
3471
|
),
|
|
3471
3472
|
}).transform((v) => {
|
|
3472
3473
|
return remap$(v, {
|
|
3473
|
-
"__@BRAND@
|
|
3474
|
+
"__@BRAND@8895": "atBRANDAt8895",
|
|
3474
3475
|
});
|
|
3475
3476
|
});
|
|
3476
3477
|
/** @internal */
|
|
3477
3478
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$Outbound =
|
|
3478
3479
|
{
|
|
3479
|
-
"__@BRAND@
|
|
3480
|
-
|
|
3480
|
+
"__@BRAND@8895":
|
|
3481
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8895$Outbound;
|
|
3481
3482
|
};
|
|
3482
3483
|
|
|
3483
3484
|
/** @internal */
|
|
@@ -3487,12 +3488,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLen
|
|
|
3487
3488
|
z.ZodTypeDef,
|
|
3488
3489
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength
|
|
3489
3490
|
> = z.object({
|
|
3490
|
-
|
|
3491
|
-
|
|
3491
|
+
atBRANDAt8895: z.lazy(() =>
|
|
3492
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8895$outboundSchema
|
|
3492
3493
|
),
|
|
3493
3494
|
}).transform((v) => {
|
|
3494
3495
|
return remap$(v, {
|
|
3495
|
-
|
|
3496
|
+
atBRANDAt8895: "__@BRAND@8895",
|
|
3496
3497
|
});
|
|
3497
3498
|
});
|
|
3498
3499
|
|
|
@@ -3523,47 +3524,47 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200Max
|
|
|
3523
3524
|
}
|
|
3524
3525
|
|
|
3525
3526
|
/** @internal */
|
|
3526
|
-
export const
|
|
3527
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8895$inboundSchema:
|
|
3527
3528
|
z.ZodType<
|
|
3528
|
-
|
|
3529
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8895,
|
|
3529
3530
|
z.ZodTypeDef,
|
|
3530
3531
|
unknown
|
|
3531
3532
|
> = z.object({});
|
|
3532
3533
|
/** @internal */
|
|
3533
|
-
export type
|
|
3534
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8895$Outbound =
|
|
3534
3535
|
{};
|
|
3535
3536
|
|
|
3536
3537
|
/** @internal */
|
|
3537
|
-
export const
|
|
3538
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8895$outboundSchema:
|
|
3538
3539
|
z.ZodType<
|
|
3539
|
-
|
|
3540
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8895$Outbound,
|
|
3540
3541
|
z.ZodTypeDef,
|
|
3541
|
-
|
|
3542
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8895
|
|
3542
3543
|
> = z.object({});
|
|
3543
3544
|
|
|
3544
|
-
export function
|
|
3545
|
-
|
|
3546
|
-
|
|
3545
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8895ToJSON(
|
|
3546
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8895:
|
|
3547
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8895,
|
|
3547
3548
|
): string {
|
|
3548
3549
|
return JSON.stringify(
|
|
3549
|
-
|
|
3550
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8895$outboundSchema
|
|
3550
3551
|
.parse(
|
|
3551
|
-
|
|
3552
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8895,
|
|
3552
3553
|
),
|
|
3553
3554
|
);
|
|
3554
3555
|
}
|
|
3555
|
-
export function
|
|
3556
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8895FromJSON(
|
|
3556
3557
|
jsonString: string,
|
|
3557
3558
|
): SafeParseResult<
|
|
3558
|
-
|
|
3559
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8895,
|
|
3559
3560
|
SDKValidationError
|
|
3560
3561
|
> {
|
|
3561
3562
|
return safeParse(
|
|
3562
3563
|
jsonString,
|
|
3563
3564
|
(x) =>
|
|
3564
|
-
|
|
3565
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8895$inboundSchema
|
|
3565
3566
|
.parse(JSON.parse(x)),
|
|
3566
|
-
`Failed to parse '
|
|
3567
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8895' from JSON`,
|
|
3567
3568
|
);
|
|
3568
3569
|
}
|
|
3569
3570
|
|
|
@@ -3574,19 +3575,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLen
|
|
|
3574
3575
|
z.ZodTypeDef,
|
|
3575
3576
|
unknown
|
|
3576
3577
|
> = z.object({
|
|
3577
|
-
"__@BRAND@
|
|
3578
|
-
|
|
3578
|
+
"__@BRAND@8895": z.lazy(() =>
|
|
3579
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8895$inboundSchema
|
|
3579
3580
|
),
|
|
3580
3581
|
}).transform((v) => {
|
|
3581
3582
|
return remap$(v, {
|
|
3582
|
-
"__@BRAND@
|
|
3583
|
+
"__@BRAND@8895": "atBRANDAt8895",
|
|
3583
3584
|
});
|
|
3584
3585
|
});
|
|
3585
3586
|
/** @internal */
|
|
3586
3587
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$Outbound =
|
|
3587
3588
|
{
|
|
3588
|
-
"__@BRAND@
|
|
3589
|
-
|
|
3589
|
+
"__@BRAND@8895":
|
|
3590
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8895$Outbound;
|
|
3590
3591
|
};
|
|
3591
3592
|
|
|
3592
3593
|
/** @internal */
|
|
@@ -3596,12 +3597,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLen
|
|
|
3596
3597
|
z.ZodTypeDef,
|
|
3597
3598
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength
|
|
3598
3599
|
> = z.object({
|
|
3599
|
-
|
|
3600
|
-
|
|
3600
|
+
atBRANDAt8895: z.lazy(() =>
|
|
3601
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8895$outboundSchema
|
|
3601
3602
|
),
|
|
3602
3603
|
}).transform((v) => {
|
|
3603
3604
|
return remap$(v, {
|
|
3604
|
-
|
|
3605
|
+
atBRANDAt8895: "__@BRAND@8895",
|
|
3605
3606
|
});
|
|
3606
3607
|
});
|
|
3607
3608
|
|
|
@@ -3632,47 +3633,47 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200Min
|
|
|
3632
3633
|
}
|
|
3633
3634
|
|
|
3634
3635
|
/** @internal */
|
|
3635
|
-
export const
|
|
3636
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8895$inboundSchema:
|
|
3636
3637
|
z.ZodType<
|
|
3637
|
-
|
|
3638
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8895,
|
|
3638
3639
|
z.ZodTypeDef,
|
|
3639
3640
|
unknown
|
|
3640
3641
|
> = z.object({});
|
|
3641
3642
|
/** @internal */
|
|
3642
|
-
export type
|
|
3643
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8895$Outbound =
|
|
3643
3644
|
{};
|
|
3644
3645
|
|
|
3645
3646
|
/** @internal */
|
|
3646
|
-
export const
|
|
3647
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8895$outboundSchema:
|
|
3647
3648
|
z.ZodType<
|
|
3648
|
-
|
|
3649
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8895$Outbound,
|
|
3649
3650
|
z.ZodTypeDef,
|
|
3650
|
-
|
|
3651
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8895
|
|
3651
3652
|
> = z.object({});
|
|
3652
3653
|
|
|
3653
|
-
export function
|
|
3654
|
-
|
|
3655
|
-
|
|
3654
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8895ToJSON(
|
|
3655
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8895:
|
|
3656
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8895,
|
|
3656
3657
|
): string {
|
|
3657
3658
|
return JSON.stringify(
|
|
3658
|
-
|
|
3659
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8895$outboundSchema
|
|
3659
3660
|
.parse(
|
|
3660
|
-
|
|
3661
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8895,
|
|
3661
3662
|
),
|
|
3662
3663
|
);
|
|
3663
3664
|
}
|
|
3664
|
-
export function
|
|
3665
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8895FromJSON(
|
|
3665
3666
|
jsonString: string,
|
|
3666
3667
|
): SafeParseResult<
|
|
3667
|
-
|
|
3668
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8895,
|
|
3668
3669
|
SDKValidationError
|
|
3669
3670
|
> {
|
|
3670
3671
|
return safeParse(
|
|
3671
3672
|
jsonString,
|
|
3672
3673
|
(x) =>
|
|
3673
|
-
|
|
3674
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8895$inboundSchema
|
|
3674
3675
|
.parse(JSON.parse(x)),
|
|
3675
|
-
`Failed to parse '
|
|
3676
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8895' from JSON`,
|
|
3676
3677
|
);
|
|
3677
3678
|
}
|
|
3678
3679
|
|
|
@@ -3683,19 +3684,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Patter
|
|
|
3683
3684
|
z.ZodTypeDef,
|
|
3684
3685
|
unknown
|
|
3685
3686
|
> = z.object({
|
|
3686
|
-
"__@BRAND@
|
|
3687
|
-
|
|
3687
|
+
"__@BRAND@8895": z.lazy(() =>
|
|
3688
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8895$inboundSchema
|
|
3688
3689
|
),
|
|
3689
3690
|
}).transform((v) => {
|
|
3690
3691
|
return remap$(v, {
|
|
3691
|
-
"__@BRAND@
|
|
3692
|
+
"__@BRAND@8895": "atBRANDAt8895",
|
|
3692
3693
|
});
|
|
3693
3694
|
});
|
|
3694
3695
|
/** @internal */
|
|
3695
3696
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$Outbound =
|
|
3696
3697
|
{
|
|
3697
|
-
"__@BRAND@
|
|
3698
|
-
|
|
3698
|
+
"__@BRAND@8895":
|
|
3699
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8895$Outbound;
|
|
3699
3700
|
};
|
|
3700
3701
|
|
|
3701
3702
|
/** @internal */
|
|
@@ -3705,12 +3706,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Patter
|
|
|
3705
3706
|
z.ZodTypeDef,
|
|
3706
3707
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern
|
|
3707
3708
|
> = z.object({
|
|
3708
|
-
|
|
3709
|
-
|
|
3709
|
+
atBRANDAt8895: z.lazy(() =>
|
|
3710
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8895$outboundSchema
|
|
3710
3711
|
),
|
|
3711
3712
|
}).transform((v) => {
|
|
3712
3713
|
return remap$(v, {
|
|
3713
|
-
|
|
3714
|
+
atBRANDAt8895: "__@BRAND@8895",
|
|
3714
3715
|
});
|
|
3715
3716
|
});
|
|
3716
3717
|
|
|
@@ -4500,46 +4501,46 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
|
|
|
4500
4501
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl$inboundSchema;
|
|
4501
4502
|
|
|
4502
4503
|
/** @internal */
|
|
4503
|
-
export const
|
|
4504
|
+
export const CreateIntegrationStoreDirectUiOptionsAtBRANDAt8895$inboundSchema:
|
|
4504
4505
|
z.ZodType<
|
|
4505
|
-
|
|
4506
|
+
CreateIntegrationStoreDirectUiOptionsAtBRANDAt8895,
|
|
4506
4507
|
z.ZodTypeDef,
|
|
4507
4508
|
unknown
|
|
4508
4509
|
> = z.object({});
|
|
4509
4510
|
/** @internal */
|
|
4510
|
-
export type
|
|
4511
|
+
export type CreateIntegrationStoreDirectUiOptionsAtBRANDAt8895$Outbound = {};
|
|
4511
4512
|
|
|
4512
4513
|
/** @internal */
|
|
4513
|
-
export const
|
|
4514
|
+
export const CreateIntegrationStoreDirectUiOptionsAtBRANDAt8895$outboundSchema:
|
|
4514
4515
|
z.ZodType<
|
|
4515
|
-
|
|
4516
|
+
CreateIntegrationStoreDirectUiOptionsAtBRANDAt8895$Outbound,
|
|
4516
4517
|
z.ZodTypeDef,
|
|
4517
|
-
|
|
4518
|
+
CreateIntegrationStoreDirectUiOptionsAtBRANDAt8895
|
|
4518
4519
|
> = z.object({});
|
|
4519
4520
|
|
|
4520
|
-
export function
|
|
4521
|
-
|
|
4522
|
-
|
|
4521
|
+
export function createIntegrationStoreDirectUiOptionsAtBRANDAt8895ToJSON(
|
|
4522
|
+
createIntegrationStoreDirectUiOptionsAtBRANDAt8895:
|
|
4523
|
+
CreateIntegrationStoreDirectUiOptionsAtBRANDAt8895,
|
|
4523
4524
|
): string {
|
|
4524
4525
|
return JSON.stringify(
|
|
4525
|
-
|
|
4526
|
-
|
|
4526
|
+
CreateIntegrationStoreDirectUiOptionsAtBRANDAt8895$outboundSchema.parse(
|
|
4527
|
+
createIntegrationStoreDirectUiOptionsAtBRANDAt8895,
|
|
4527
4528
|
),
|
|
4528
4529
|
);
|
|
4529
4530
|
}
|
|
4530
|
-
export function
|
|
4531
|
+
export function createIntegrationStoreDirectUiOptionsAtBRANDAt8895FromJSON(
|
|
4531
4532
|
jsonString: string,
|
|
4532
4533
|
): SafeParseResult<
|
|
4533
|
-
|
|
4534
|
+
CreateIntegrationStoreDirectUiOptionsAtBRANDAt8895,
|
|
4534
4535
|
SDKValidationError
|
|
4535
4536
|
> {
|
|
4536
4537
|
return safeParse(
|
|
4537
4538
|
jsonString,
|
|
4538
4539
|
(x) =>
|
|
4539
|
-
|
|
4540
|
+
CreateIntegrationStoreDirectUiOptionsAtBRANDAt8895$inboundSchema.parse(
|
|
4540
4541
|
JSON.parse(x),
|
|
4541
4542
|
),
|
|
4542
|
-
`Failed to parse '
|
|
4543
|
+
`Failed to parse 'CreateIntegrationStoreDirectUiOptionsAtBRANDAt8895' from JSON`,
|
|
4543
4544
|
);
|
|
4544
4545
|
}
|
|
4545
4546
|
|
|
@@ -4547,17 +4548,17 @@ export function createIntegrationStoreDirectUiOptionsAtBRANDAt8845FromJSON(
|
|
|
4547
4548
|
export const CreateIntegrationStoreDirectUiOptionsValue$inboundSchema:
|
|
4548
4549
|
z.ZodType<CreateIntegrationStoreDirectUiOptionsValue, z.ZodTypeDef, unknown> =
|
|
4549
4550
|
z.object({
|
|
4550
|
-
"__@BRAND@
|
|
4551
|
-
|
|
4551
|
+
"__@BRAND@8895": z.lazy(() =>
|
|
4552
|
+
CreateIntegrationStoreDirectUiOptionsAtBRANDAt8895$inboundSchema
|
|
4552
4553
|
),
|
|
4553
4554
|
}).transform((v) => {
|
|
4554
4555
|
return remap$(v, {
|
|
4555
|
-
"__@BRAND@
|
|
4556
|
+
"__@BRAND@8895": "atBRANDAt8895",
|
|
4556
4557
|
});
|
|
4557
4558
|
});
|
|
4558
4559
|
/** @internal */
|
|
4559
4560
|
export type CreateIntegrationStoreDirectUiOptionsValue$Outbound = {
|
|
4560
|
-
"__@BRAND@
|
|
4561
|
+
"__@BRAND@8895": CreateIntegrationStoreDirectUiOptionsAtBRANDAt8895$Outbound;
|
|
4561
4562
|
};
|
|
4562
4563
|
|
|
4563
4564
|
/** @internal */
|
|
@@ -4567,12 +4568,12 @@ export const CreateIntegrationStoreDirectUiOptionsValue$outboundSchema:
|
|
|
4567
4568
|
z.ZodTypeDef,
|
|
4568
4569
|
CreateIntegrationStoreDirectUiOptionsValue
|
|
4569
4570
|
> = z.object({
|
|
4570
|
-
|
|
4571
|
-
|
|
4571
|
+
atBRANDAt8895: z.lazy(() =>
|
|
4572
|
+
CreateIntegrationStoreDirectUiOptionsAtBRANDAt8895$outboundSchema
|
|
4572
4573
|
),
|
|
4573
4574
|
}).transform((v) => {
|
|
4574
4575
|
return remap$(v, {
|
|
4575
|
-
|
|
4576
|
+
atBRANDAt8895: "__@BRAND@8895",
|
|
4576
4577
|
});
|
|
4577
4578
|
});
|
|
4578
4579
|
|
|
@@ -4923,35 +4924,35 @@ export function createIntegrationStoreDirectUiOptions3FromJSON(
|
|
|
4923
4924
|
}
|
|
4924
4925
|
|
|
4925
4926
|
/** @internal */
|
|
4926
|
-
export const
|
|
4927
|
-
|
|
4927
|
+
export const UiOptionsAtBRANDAt8895$inboundSchema: z.ZodType<
|
|
4928
|
+
UiOptionsAtBRANDAt8895,
|
|
4928
4929
|
z.ZodTypeDef,
|
|
4929
4930
|
unknown
|
|
4930
4931
|
> = z.object({});
|
|
4931
4932
|
/** @internal */
|
|
4932
|
-
export type
|
|
4933
|
+
export type UiOptionsAtBRANDAt8895$Outbound = {};
|
|
4933
4934
|
|
|
4934
4935
|
/** @internal */
|
|
4935
|
-
export const
|
|
4936
|
-
|
|
4936
|
+
export const UiOptionsAtBRANDAt8895$outboundSchema: z.ZodType<
|
|
4937
|
+
UiOptionsAtBRANDAt8895$Outbound,
|
|
4937
4938
|
z.ZodTypeDef,
|
|
4938
|
-
|
|
4939
|
+
UiOptionsAtBRANDAt8895
|
|
4939
4940
|
> = z.object({});
|
|
4940
4941
|
|
|
4941
|
-
export function
|
|
4942
|
-
|
|
4942
|
+
export function uiOptionsAtBRANDAt8895ToJSON(
|
|
4943
|
+
uiOptionsAtBRANDAt8895: UiOptionsAtBRANDAt8895,
|
|
4943
4944
|
): string {
|
|
4944
4945
|
return JSON.stringify(
|
|
4945
|
-
|
|
4946
|
+
UiOptionsAtBRANDAt8895$outboundSchema.parse(uiOptionsAtBRANDAt8895),
|
|
4946
4947
|
);
|
|
4947
4948
|
}
|
|
4948
|
-
export function
|
|
4949
|
+
export function uiOptionsAtBRANDAt8895FromJSON(
|
|
4949
4950
|
jsonString: string,
|
|
4950
|
-
): SafeParseResult<
|
|
4951
|
+
): SafeParseResult<UiOptionsAtBRANDAt8895, SDKValidationError> {
|
|
4951
4952
|
return safeParse(
|
|
4952
4953
|
jsonString,
|
|
4953
|
-
(x) =>
|
|
4954
|
-
`Failed to parse '
|
|
4954
|
+
(x) => UiOptionsAtBRANDAt8895$inboundSchema.parse(JSON.parse(x)),
|
|
4955
|
+
`Failed to parse 'UiOptionsAtBRANDAt8895' from JSON`,
|
|
4955
4956
|
);
|
|
4956
4957
|
}
|
|
4957
4958
|
|
|
@@ -4961,15 +4962,15 @@ export const CreateIntegrationStoreDirectUiOptions2$inboundSchema: z.ZodType<
|
|
|
4961
4962
|
z.ZodTypeDef,
|
|
4962
4963
|
unknown
|
|
4963
4964
|
> = z.object({
|
|
4964
|
-
"__@BRAND@
|
|
4965
|
+
"__@BRAND@8895": z.lazy(() => UiOptionsAtBRANDAt8895$inboundSchema),
|
|
4965
4966
|
}).transform((v) => {
|
|
4966
4967
|
return remap$(v, {
|
|
4967
|
-
"__@BRAND@
|
|
4968
|
+
"__@BRAND@8895": "atBRANDAt8895",
|
|
4968
4969
|
});
|
|
4969
4970
|
});
|
|
4970
4971
|
/** @internal */
|
|
4971
4972
|
export type CreateIntegrationStoreDirectUiOptions2$Outbound = {
|
|
4972
|
-
"__@BRAND@
|
|
4973
|
+
"__@BRAND@8895": UiOptionsAtBRANDAt8895$Outbound;
|
|
4973
4974
|
};
|
|
4974
4975
|
|
|
4975
4976
|
/** @internal */
|
|
@@ -4978,10 +4979,10 @@ export const CreateIntegrationStoreDirectUiOptions2$outboundSchema: z.ZodType<
|
|
|
4978
4979
|
z.ZodTypeDef,
|
|
4979
4980
|
CreateIntegrationStoreDirectUiOptions2
|
|
4980
4981
|
> = z.object({
|
|
4981
|
-
|
|
4982
|
+
atBRANDAt8895: z.lazy(() => UiOptionsAtBRANDAt8895$outboundSchema),
|
|
4982
4983
|
}).transform((v) => {
|
|
4983
4984
|
return remap$(v, {
|
|
4984
|
-
|
|
4985
|
+
atBRANDAt8895: "__@BRAND@8895",
|
|
4985
4986
|
});
|
|
4986
4987
|
});
|
|
4987
4988
|
|
|
@@ -5394,47 +5395,47 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponseUiOpti
|
|
|
5394
5395
|
}
|
|
5395
5396
|
|
|
5396
5397
|
/** @internal */
|
|
5397
|
-
export const
|
|
5398
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8895$inboundSchema:
|
|
5398
5399
|
z.ZodType<
|
|
5399
|
-
|
|
5400
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8895,
|
|
5400
5401
|
z.ZodTypeDef,
|
|
5401
5402
|
unknown
|
|
5402
5403
|
> = z.object({});
|
|
5403
5404
|
/** @internal */
|
|
5404
|
-
export type
|
|
5405
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8895$Outbound =
|
|
5405
5406
|
{};
|
|
5406
5407
|
|
|
5407
5408
|
/** @internal */
|
|
5408
|
-
export const
|
|
5409
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8895$outboundSchema:
|
|
5409
5410
|
z.ZodType<
|
|
5410
|
-
|
|
5411
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8895$Outbound,
|
|
5411
5412
|
z.ZodTypeDef,
|
|
5412
|
-
|
|
5413
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8895
|
|
5413
5414
|
> = z.object({});
|
|
5414
5415
|
|
|
5415
|
-
export function
|
|
5416
|
-
|
|
5417
|
-
|
|
5416
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8895ToJSON(
|
|
5417
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8895:
|
|
5418
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8895,
|
|
5418
5419
|
): string {
|
|
5419
5420
|
return JSON.stringify(
|
|
5420
|
-
|
|
5421
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8895$outboundSchema
|
|
5421
5422
|
.parse(
|
|
5422
|
-
|
|
5423
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8895,
|
|
5423
5424
|
),
|
|
5424
5425
|
);
|
|
5425
5426
|
}
|
|
5426
|
-
export function
|
|
5427
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8895FromJSON(
|
|
5427
5428
|
jsonString: string,
|
|
5428
5429
|
): SafeParseResult<
|
|
5429
|
-
|
|
5430
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8895,
|
|
5430
5431
|
SDKValidationError
|
|
5431
5432
|
> {
|
|
5432
5433
|
return safeParse(
|
|
5433
5434
|
jsonString,
|
|
5434
5435
|
(x) =>
|
|
5435
|
-
|
|
5436
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8895$inboundSchema
|
|
5436
5437
|
.parse(JSON.parse(x)),
|
|
5437
|
-
`Failed to parse '
|
|
5438
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8895' from JSON`,
|
|
5438
5439
|
);
|
|
5439
5440
|
}
|
|
5440
5441
|
|
|
@@ -5445,19 +5446,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength
|
|
|
5445
5446
|
z.ZodTypeDef,
|
|
5446
5447
|
unknown
|
|
5447
5448
|
> = z.object({
|
|
5448
|
-
"__@BRAND@
|
|
5449
|
-
|
|
5449
|
+
"__@BRAND@8895": z.lazy(() =>
|
|
5450
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8895$inboundSchema
|
|
5450
5451
|
),
|
|
5451
5452
|
}).transform((v) => {
|
|
5452
5453
|
return remap$(v, {
|
|
5453
|
-
"__@BRAND@
|
|
5454
|
+
"__@BRAND@8895": "atBRANDAt8895",
|
|
5454
5455
|
});
|
|
5455
5456
|
});
|
|
5456
5457
|
/** @internal */
|
|
5457
5458
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$Outbound =
|
|
5458
5459
|
{
|
|
5459
|
-
"__@BRAND@
|
|
5460
|
-
|
|
5460
|
+
"__@BRAND@8895":
|
|
5461
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8895$Outbound;
|
|
5461
5462
|
};
|
|
5462
5463
|
|
|
5463
5464
|
/** @internal */
|
|
@@ -5467,12 +5468,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength
|
|
|
5467
5468
|
z.ZodTypeDef,
|
|
5468
5469
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength
|
|
5469
5470
|
> = z.object({
|
|
5470
|
-
|
|
5471
|
-
|
|
5471
|
+
atBRANDAt8895: z.lazy(() =>
|
|
5472
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8895$outboundSchema
|
|
5472
5473
|
),
|
|
5473
5474
|
}).transform((v) => {
|
|
5474
5475
|
return remap$(v, {
|
|
5475
|
-
|
|
5476
|
+
atBRANDAt8895: "__@BRAND@8895",
|
|
5476
5477
|
});
|
|
5477
5478
|
});
|
|
5478
5479
|
|
|
@@ -5503,47 +5504,47 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponseMaxLen
|
|
|
5503
5504
|
}
|
|
5504
5505
|
|
|
5505
5506
|
/** @internal */
|
|
5506
|
-
export const
|
|
5507
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8895$inboundSchema:
|
|
5507
5508
|
z.ZodType<
|
|
5508
|
-
|
|
5509
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8895,
|
|
5509
5510
|
z.ZodTypeDef,
|
|
5510
5511
|
unknown
|
|
5511
5512
|
> = z.object({});
|
|
5512
5513
|
/** @internal */
|
|
5513
|
-
export type
|
|
5514
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8895$Outbound =
|
|
5514
5515
|
{};
|
|
5515
5516
|
|
|
5516
5517
|
/** @internal */
|
|
5517
|
-
export const
|
|
5518
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8895$outboundSchema:
|
|
5518
5519
|
z.ZodType<
|
|
5519
|
-
|
|
5520
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8895$Outbound,
|
|
5520
5521
|
z.ZodTypeDef,
|
|
5521
|
-
|
|
5522
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8895
|
|
5522
5523
|
> = z.object({});
|
|
5523
5524
|
|
|
5524
|
-
export function
|
|
5525
|
-
|
|
5526
|
-
|
|
5525
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8895ToJSON(
|
|
5526
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8895:
|
|
5527
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8895,
|
|
5527
5528
|
): string {
|
|
5528
5529
|
return JSON.stringify(
|
|
5529
|
-
|
|
5530
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8895$outboundSchema
|
|
5530
5531
|
.parse(
|
|
5531
|
-
|
|
5532
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8895,
|
|
5532
5533
|
),
|
|
5533
5534
|
);
|
|
5534
5535
|
}
|
|
5535
|
-
export function
|
|
5536
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8895FromJSON(
|
|
5536
5537
|
jsonString: string,
|
|
5537
5538
|
): SafeParseResult<
|
|
5538
|
-
|
|
5539
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8895,
|
|
5539
5540
|
SDKValidationError
|
|
5540
5541
|
> {
|
|
5541
5542
|
return safeParse(
|
|
5542
5543
|
jsonString,
|
|
5543
5544
|
(x) =>
|
|
5544
|
-
|
|
5545
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8895$inboundSchema
|
|
5545
5546
|
.parse(JSON.parse(x)),
|
|
5546
|
-
`Failed to parse '
|
|
5547
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8895' from JSON`,
|
|
5547
5548
|
);
|
|
5548
5549
|
}
|
|
5549
5550
|
|
|
@@ -5554,19 +5555,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength
|
|
|
5554
5555
|
z.ZodTypeDef,
|
|
5555
5556
|
unknown
|
|
5556
5557
|
> = z.object({
|
|
5557
|
-
"__@BRAND@
|
|
5558
|
-
|
|
5558
|
+
"__@BRAND@8895": z.lazy(() =>
|
|
5559
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8895$inboundSchema
|
|
5559
5560
|
),
|
|
5560
5561
|
}).transform((v) => {
|
|
5561
5562
|
return remap$(v, {
|
|
5562
|
-
"__@BRAND@
|
|
5563
|
+
"__@BRAND@8895": "atBRANDAt8895",
|
|
5563
5564
|
});
|
|
5564
5565
|
});
|
|
5565
5566
|
/** @internal */
|
|
5566
5567
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$Outbound =
|
|
5567
5568
|
{
|
|
5568
|
-
"__@BRAND@
|
|
5569
|
-
|
|
5569
|
+
"__@BRAND@8895":
|
|
5570
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8895$Outbound;
|
|
5570
5571
|
};
|
|
5571
5572
|
|
|
5572
5573
|
/** @internal */
|
|
@@ -5576,12 +5577,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength
|
|
|
5576
5577
|
z.ZodTypeDef,
|
|
5577
5578
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength
|
|
5578
5579
|
> = z.object({
|
|
5579
|
-
|
|
5580
|
-
|
|
5580
|
+
atBRANDAt8895: z.lazy(() =>
|
|
5581
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8895$outboundSchema
|
|
5581
5582
|
),
|
|
5582
5583
|
}).transform((v) => {
|
|
5583
5584
|
return remap$(v, {
|
|
5584
|
-
|
|
5585
|
+
atBRANDAt8895: "__@BRAND@8895",
|
|
5585
5586
|
});
|
|
5586
5587
|
});
|
|
5587
5588
|
|
|
@@ -5612,47 +5613,47 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponseMinLen
|
|
|
5612
5613
|
}
|
|
5613
5614
|
|
|
5614
5615
|
/** @internal */
|
|
5615
|
-
export const
|
|
5616
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8895$inboundSchema:
|
|
5616
5617
|
z.ZodType<
|
|
5617
|
-
|
|
5618
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8895,
|
|
5618
5619
|
z.ZodTypeDef,
|
|
5619
5620
|
unknown
|
|
5620
5621
|
> = z.object({});
|
|
5621
5622
|
/** @internal */
|
|
5622
|
-
export type
|
|
5623
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8895$Outbound =
|
|
5623
5624
|
{};
|
|
5624
5625
|
|
|
5625
5626
|
/** @internal */
|
|
5626
|
-
export const
|
|
5627
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8895$outboundSchema:
|
|
5627
5628
|
z.ZodType<
|
|
5628
|
-
|
|
5629
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8895$Outbound,
|
|
5629
5630
|
z.ZodTypeDef,
|
|
5630
|
-
|
|
5631
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8895
|
|
5631
5632
|
> = z.object({});
|
|
5632
5633
|
|
|
5633
|
-
export function
|
|
5634
|
-
|
|
5635
|
-
|
|
5634
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8895ToJSON(
|
|
5635
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8895:
|
|
5636
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8895,
|
|
5636
5637
|
): string {
|
|
5637
5638
|
return JSON.stringify(
|
|
5638
|
-
|
|
5639
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8895$outboundSchema
|
|
5639
5640
|
.parse(
|
|
5640
|
-
|
|
5641
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8895,
|
|
5641
5642
|
),
|
|
5642
5643
|
);
|
|
5643
5644
|
}
|
|
5644
|
-
export function
|
|
5645
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8895FromJSON(
|
|
5645
5646
|
jsonString: string,
|
|
5646
5647
|
): SafeParseResult<
|
|
5647
|
-
|
|
5648
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8895,
|
|
5648
5649
|
SDKValidationError
|
|
5649
5650
|
> {
|
|
5650
5651
|
return safeParse(
|
|
5651
5652
|
jsonString,
|
|
5652
5653
|
(x) =>
|
|
5653
|
-
|
|
5654
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8895$inboundSchema
|
|
5654
5655
|
.parse(JSON.parse(x)),
|
|
5655
|
-
`Failed to parse '
|
|
5656
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8895' from JSON`,
|
|
5656
5657
|
);
|
|
5657
5658
|
}
|
|
5658
5659
|
|
|
@@ -5663,19 +5664,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$i
|
|
|
5663
5664
|
z.ZodTypeDef,
|
|
5664
5665
|
unknown
|
|
5665
5666
|
> = z.object({
|
|
5666
|
-
"__@BRAND@
|
|
5667
|
-
|
|
5667
|
+
"__@BRAND@8895": z.lazy(() =>
|
|
5668
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8895$inboundSchema
|
|
5668
5669
|
),
|
|
5669
5670
|
}).transform((v) => {
|
|
5670
5671
|
return remap$(v, {
|
|
5671
|
-
"__@BRAND@
|
|
5672
|
+
"__@BRAND@8895": "atBRANDAt8895",
|
|
5672
5673
|
});
|
|
5673
5674
|
});
|
|
5674
5675
|
/** @internal */
|
|
5675
5676
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$Outbound =
|
|
5676
5677
|
{
|
|
5677
|
-
"__@BRAND@
|
|
5678
|
-
|
|
5678
|
+
"__@BRAND@8895":
|
|
5679
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8895$Outbound;
|
|
5679
5680
|
};
|
|
5680
5681
|
|
|
5681
5682
|
/** @internal */
|
|
@@ -5685,12 +5686,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$o
|
|
|
5685
5686
|
z.ZodTypeDef,
|
|
5686
5687
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern
|
|
5687
5688
|
> = z.object({
|
|
5688
|
-
|
|
5689
|
-
|
|
5689
|
+
atBRANDAt8895: z.lazy(() =>
|
|
5690
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8895$outboundSchema
|
|
5690
5691
|
),
|
|
5691
5692
|
}).transform((v) => {
|
|
5692
5693
|
return remap$(v, {
|
|
5693
|
-
|
|
5694
|
+
atBRANDAt8895: "__@BRAND@8895",
|
|
5694
5695
|
});
|
|
5695
5696
|
});
|
|
5696
5697
|
|
|
@@ -6499,47 +6500,47 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
|
|
|
6499
6500
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type$inboundSchema;
|
|
6500
6501
|
|
|
6501
6502
|
/** @internal */
|
|
6502
|
-
export const
|
|
6503
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8895$inboundSchema:
|
|
6503
6504
|
z.ZodType<
|
|
6504
|
-
|
|
6505
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8895,
|
|
6505
6506
|
z.ZodTypeDef,
|
|
6506
6507
|
unknown
|
|
6507
6508
|
> = z.object({});
|
|
6508
6509
|
/** @internal */
|
|
6509
|
-
export type
|
|
6510
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8895$Outbound =
|
|
6510
6511
|
{};
|
|
6511
6512
|
|
|
6512
6513
|
/** @internal */
|
|
6513
|
-
export const
|
|
6514
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8895$outboundSchema:
|
|
6514
6515
|
z.ZodType<
|
|
6515
|
-
|
|
6516
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8895$Outbound,
|
|
6516
6517
|
z.ZodTypeDef,
|
|
6517
|
-
|
|
6518
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8895
|
|
6518
6519
|
> = z.object({});
|
|
6519
6520
|
|
|
6520
|
-
export function
|
|
6521
|
-
|
|
6522
|
-
|
|
6521
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8895ToJSON(
|
|
6522
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8895:
|
|
6523
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8895,
|
|
6523
6524
|
): string {
|
|
6524
6525
|
return JSON.stringify(
|
|
6525
|
-
|
|
6526
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8895$outboundSchema
|
|
6526
6527
|
.parse(
|
|
6527
|
-
|
|
6528
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8895,
|
|
6528
6529
|
),
|
|
6529
6530
|
);
|
|
6530
6531
|
}
|
|
6531
|
-
export function
|
|
6532
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8895FromJSON(
|
|
6532
6533
|
jsonString: string,
|
|
6533
6534
|
): SafeParseResult<
|
|
6534
|
-
|
|
6535
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8895,
|
|
6535
6536
|
SDKValidationError
|
|
6536
6537
|
> {
|
|
6537
6538
|
return safeParse(
|
|
6538
6539
|
jsonString,
|
|
6539
6540
|
(x) =>
|
|
6540
|
-
|
|
6541
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8895$inboundSchema
|
|
6541
6542
|
.parse(JSON.parse(x)),
|
|
6542
|
-
`Failed to parse '
|
|
6543
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8895' from JSON`,
|
|
6543
6544
|
);
|
|
6544
6545
|
}
|
|
6545
6546
|
|
|
@@ -6550,19 +6551,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
|
|
|
6550
6551
|
z.ZodTypeDef,
|
|
6551
6552
|
unknown
|
|
6552
6553
|
> = z.object({
|
|
6553
|
-
"__@BRAND@
|
|
6554
|
-
|
|
6554
|
+
"__@BRAND@8895": z.lazy(() =>
|
|
6555
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8895$inboundSchema
|
|
6555
6556
|
),
|
|
6556
6557
|
}).transform((v) => {
|
|
6557
6558
|
return remap$(v, {
|
|
6558
|
-
"__@BRAND@
|
|
6559
|
+
"__@BRAND@8895": "atBRANDAt8895",
|
|
6559
6560
|
});
|
|
6560
6561
|
});
|
|
6561
6562
|
/** @internal */
|
|
6562
6563
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength$Outbound =
|
|
6563
6564
|
{
|
|
6564
|
-
"__@BRAND@
|
|
6565
|
-
|
|
6565
|
+
"__@BRAND@8895":
|
|
6566
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8895$Outbound;
|
|
6566
6567
|
};
|
|
6567
6568
|
|
|
6568
6569
|
/** @internal */
|
|
@@ -6572,12 +6573,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
|
|
|
6572
6573
|
z.ZodTypeDef,
|
|
6573
6574
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength
|
|
6574
6575
|
> = z.object({
|
|
6575
|
-
|
|
6576
|
-
|
|
6576
|
+
atBRANDAt8895: z.lazy(() =>
|
|
6577
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8895$outboundSchema
|
|
6577
6578
|
),
|
|
6578
6579
|
}).transform((v) => {
|
|
6579
6580
|
return remap$(v, {
|
|
6580
|
-
|
|
6581
|
+
atBRANDAt8895: "__@BRAND@8895",
|
|
6581
6582
|
});
|
|
6582
6583
|
});
|
|
6583
6584
|
|
|
@@ -6608,47 +6609,47 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200App
|
|
|
6608
6609
|
}
|
|
6609
6610
|
|
|
6610
6611
|
/** @internal */
|
|
6611
|
-
export const
|
|
6612
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8895$inboundSchema:
|
|
6612
6613
|
z.ZodType<
|
|
6613
|
-
|
|
6614
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8895,
|
|
6614
6615
|
z.ZodTypeDef,
|
|
6615
6616
|
unknown
|
|
6616
6617
|
> = z.object({});
|
|
6617
6618
|
/** @internal */
|
|
6618
|
-
export type
|
|
6619
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8895$Outbound =
|
|
6619
6620
|
{};
|
|
6620
6621
|
|
|
6621
6622
|
/** @internal */
|
|
6622
|
-
export const
|
|
6623
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8895$outboundSchema:
|
|
6623
6624
|
z.ZodType<
|
|
6624
|
-
|
|
6625
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8895$Outbound,
|
|
6625
6626
|
z.ZodTypeDef,
|
|
6626
|
-
|
|
6627
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8895
|
|
6627
6628
|
> = z.object({});
|
|
6628
6629
|
|
|
6629
|
-
export function
|
|
6630
|
-
|
|
6631
|
-
|
|
6630
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8895ToJSON(
|
|
6631
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8895:
|
|
6632
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8895,
|
|
6632
6633
|
): string {
|
|
6633
6634
|
return JSON.stringify(
|
|
6634
|
-
|
|
6635
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8895$outboundSchema
|
|
6635
6636
|
.parse(
|
|
6636
|
-
|
|
6637
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8895,
|
|
6637
6638
|
),
|
|
6638
6639
|
);
|
|
6639
6640
|
}
|
|
6640
|
-
export function
|
|
6641
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8895FromJSON(
|
|
6641
6642
|
jsonString: string,
|
|
6642
6643
|
): SafeParseResult<
|
|
6643
|
-
|
|
6644
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8895,
|
|
6644
6645
|
SDKValidationError
|
|
6645
6646
|
> {
|
|
6646
6647
|
return safeParse(
|
|
6647
6648
|
jsonString,
|
|
6648
6649
|
(x) =>
|
|
6649
|
-
|
|
6650
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8895$inboundSchema
|
|
6650
6651
|
.parse(JSON.parse(x)),
|
|
6651
|
-
`Failed to parse '
|
|
6652
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8895' from JSON`,
|
|
6652
6653
|
);
|
|
6653
6654
|
}
|
|
6654
6655
|
|
|
@@ -6659,19 +6660,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
|
|
|
6659
6660
|
z.ZodTypeDef,
|
|
6660
6661
|
unknown
|
|
6661
6662
|
> = z.object({
|
|
6662
|
-
"__@BRAND@
|
|
6663
|
-
|
|
6663
|
+
"__@BRAND@8895": z.lazy(() =>
|
|
6664
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8895$inboundSchema
|
|
6664
6665
|
),
|
|
6665
6666
|
}).transform((v) => {
|
|
6666
6667
|
return remap$(v, {
|
|
6667
|
-
"__@BRAND@
|
|
6668
|
+
"__@BRAND@8895": "atBRANDAt8895",
|
|
6668
6669
|
});
|
|
6669
6670
|
});
|
|
6670
6671
|
/** @internal */
|
|
6671
6672
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength$Outbound =
|
|
6672
6673
|
{
|
|
6673
|
-
"__@BRAND@
|
|
6674
|
-
|
|
6674
|
+
"__@BRAND@8895":
|
|
6675
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8895$Outbound;
|
|
6675
6676
|
};
|
|
6676
6677
|
|
|
6677
6678
|
/** @internal */
|
|
@@ -6681,12 +6682,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
|
|
|
6681
6682
|
z.ZodTypeDef,
|
|
6682
6683
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength
|
|
6683
6684
|
> = z.object({
|
|
6684
|
-
|
|
6685
|
-
|
|
6685
|
+
atBRANDAt8895: z.lazy(() =>
|
|
6686
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8895$outboundSchema
|
|
6686
6687
|
),
|
|
6687
6688
|
}).transform((v) => {
|
|
6688
6689
|
return remap$(v, {
|
|
6689
|
-
|
|
6690
|
+
atBRANDAt8895: "__@BRAND@8895",
|
|
6690
6691
|
});
|
|
6691
6692
|
});
|
|
6692
6693
|
|
|
@@ -6717,47 +6718,47 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200App
|
|
|
6717
6718
|
}
|
|
6718
6719
|
|
|
6719
6720
|
/** @internal */
|
|
6720
|
-
export const
|
|
6721
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8895$inboundSchema:
|
|
6721
6722
|
z.ZodType<
|
|
6722
|
-
|
|
6723
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8895,
|
|
6723
6724
|
z.ZodTypeDef,
|
|
6724
6725
|
unknown
|
|
6725
6726
|
> = z.object({});
|
|
6726
6727
|
/** @internal */
|
|
6727
|
-
export type
|
|
6728
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8895$Outbound =
|
|
6728
6729
|
{};
|
|
6729
6730
|
|
|
6730
6731
|
/** @internal */
|
|
6731
|
-
export const
|
|
6732
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8895$outboundSchema:
|
|
6732
6733
|
z.ZodType<
|
|
6733
|
-
|
|
6734
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8895$Outbound,
|
|
6734
6735
|
z.ZodTypeDef,
|
|
6735
|
-
|
|
6736
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8895
|
|
6736
6737
|
> = z.object({});
|
|
6737
6738
|
|
|
6738
|
-
export function
|
|
6739
|
-
|
|
6740
|
-
|
|
6739
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8895ToJSON(
|
|
6740
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8895:
|
|
6741
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8895,
|
|
6741
6742
|
): string {
|
|
6742
6743
|
return JSON.stringify(
|
|
6743
|
-
|
|
6744
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8895$outboundSchema
|
|
6744
6745
|
.parse(
|
|
6745
|
-
|
|
6746
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8895,
|
|
6746
6747
|
),
|
|
6747
6748
|
);
|
|
6748
6749
|
}
|
|
6749
|
-
export function
|
|
6750
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8895FromJSON(
|
|
6750
6751
|
jsonString: string,
|
|
6751
6752
|
): SafeParseResult<
|
|
6752
|
-
|
|
6753
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8895,
|
|
6753
6754
|
SDKValidationError
|
|
6754
6755
|
> {
|
|
6755
6756
|
return safeParse(
|
|
6756
6757
|
jsonString,
|
|
6757
6758
|
(x) =>
|
|
6758
|
-
|
|
6759
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8895$inboundSchema
|
|
6759
6760
|
.parse(JSON.parse(x)),
|
|
6760
|
-
`Failed to parse '
|
|
6761
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8895' from JSON`,
|
|
6761
6762
|
);
|
|
6762
6763
|
}
|
|
6763
6764
|
|
|
@@ -6768,19 +6769,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
|
|
|
6768
6769
|
z.ZodTypeDef,
|
|
6769
6770
|
unknown
|
|
6770
6771
|
> = z.object({
|
|
6771
|
-
"__@BRAND@
|
|
6772
|
-
|
|
6772
|
+
"__@BRAND@8895": z.lazy(() =>
|
|
6773
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8895$inboundSchema
|
|
6773
6774
|
),
|
|
6774
6775
|
}).transform((v) => {
|
|
6775
6776
|
return remap$(v, {
|
|
6776
|
-
"__@BRAND@
|
|
6777
|
+
"__@BRAND@8895": "atBRANDAt8895",
|
|
6777
6778
|
});
|
|
6778
6779
|
});
|
|
6779
6780
|
/** @internal */
|
|
6780
6781
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern$Outbound =
|
|
6781
6782
|
{
|
|
6782
|
-
"__@BRAND@
|
|
6783
|
-
|
|
6783
|
+
"__@BRAND@8895":
|
|
6784
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8895$Outbound;
|
|
6784
6785
|
};
|
|
6785
6786
|
|
|
6786
6787
|
/** @internal */
|
|
@@ -6790,12 +6791,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
|
|
|
6790
6791
|
z.ZodTypeDef,
|
|
6791
6792
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern
|
|
6792
6793
|
> = z.object({
|
|
6793
|
-
|
|
6794
|
-
|
|
6794
|
+
atBRANDAt8895: z.lazy(() =>
|
|
6795
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8895$outboundSchema
|
|
6795
6796
|
),
|
|
6796
6797
|
}).transform((v) => {
|
|
6797
6798
|
return remap$(v, {
|
|
6798
|
-
|
|
6799
|
+
atBRANDAt8895: "__@BRAND@8895",
|
|
6799
6800
|
});
|
|
6800
6801
|
});
|
|
6801
6802
|
|
|
@@ -8332,45 +8333,45 @@ export function createIntegrationStoreDirectPropertiesUiOptionsFromJSON(
|
|
|
8332
8333
|
}
|
|
8333
8334
|
|
|
8334
8335
|
/** @internal */
|
|
8335
|
-
export const
|
|
8336
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8895$inboundSchema:
|
|
8336
8337
|
z.ZodType<
|
|
8337
|
-
|
|
8338
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8895,
|
|
8338
8339
|
z.ZodTypeDef,
|
|
8339
8340
|
unknown
|
|
8340
8341
|
> = z.object({});
|
|
8341
8342
|
/** @internal */
|
|
8342
|
-
export type
|
|
8343
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8895$Outbound =
|
|
8343
8344
|
{};
|
|
8344
8345
|
|
|
8345
8346
|
/** @internal */
|
|
8346
|
-
export const
|
|
8347
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8895$outboundSchema:
|
|
8347
8348
|
z.ZodType<
|
|
8348
|
-
|
|
8349
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8895$Outbound,
|
|
8349
8350
|
z.ZodTypeDef,
|
|
8350
|
-
|
|
8351
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8895
|
|
8351
8352
|
> = z.object({});
|
|
8352
8353
|
|
|
8353
|
-
export function
|
|
8354
|
-
|
|
8355
|
-
|
|
8354
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8895ToJSON(
|
|
8355
|
+
createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8895:
|
|
8356
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8895,
|
|
8356
8357
|
): string {
|
|
8357
8358
|
return JSON.stringify(
|
|
8358
|
-
|
|
8359
|
-
.parse(
|
|
8359
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8895$outboundSchema
|
|
8360
|
+
.parse(createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8895),
|
|
8360
8361
|
);
|
|
8361
8362
|
}
|
|
8362
|
-
export function
|
|
8363
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8895FromJSON(
|
|
8363
8364
|
jsonString: string,
|
|
8364
8365
|
): SafeParseResult<
|
|
8365
|
-
|
|
8366
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8895,
|
|
8366
8367
|
SDKValidationError
|
|
8367
8368
|
> {
|
|
8368
8369
|
return safeParse(
|
|
8369
8370
|
jsonString,
|
|
8370
8371
|
(x) =>
|
|
8371
|
-
|
|
8372
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8895$inboundSchema
|
|
8372
8373
|
.parse(JSON.parse(x)),
|
|
8373
|
-
`Failed to parse '
|
|
8374
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8895' from JSON`,
|
|
8374
8375
|
);
|
|
8375
8376
|
}
|
|
8376
8377
|
|
|
@@ -8381,19 +8382,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$inbound
|
|
|
8381
8382
|
z.ZodTypeDef,
|
|
8382
8383
|
unknown
|
|
8383
8384
|
> = z.object({
|
|
8384
|
-
"__@BRAND@
|
|
8385
|
-
|
|
8385
|
+
"__@BRAND@8895": z.lazy(() =>
|
|
8386
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8895$inboundSchema
|
|
8386
8387
|
),
|
|
8387
8388
|
}).transform((v) => {
|
|
8388
8389
|
return remap$(v, {
|
|
8389
|
-
"__@BRAND@
|
|
8390
|
+
"__@BRAND@8895": "atBRANDAt8895",
|
|
8390
8391
|
});
|
|
8391
8392
|
});
|
|
8392
8393
|
/** @internal */
|
|
8393
8394
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$Outbound =
|
|
8394
8395
|
{
|
|
8395
|
-
"__@BRAND@
|
|
8396
|
-
|
|
8396
|
+
"__@BRAND@8895":
|
|
8397
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8895$Outbound;
|
|
8397
8398
|
};
|
|
8398
8399
|
|
|
8399
8400
|
/** @internal */
|
|
@@ -8403,12 +8404,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$outboun
|
|
|
8403
8404
|
z.ZodTypeDef,
|
|
8404
8405
|
CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength
|
|
8405
8406
|
> = z.object({
|
|
8406
|
-
|
|
8407
|
-
|
|
8407
|
+
atBRANDAt8895: z.lazy(() =>
|
|
8408
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8895$outboundSchema
|
|
8408
8409
|
),
|
|
8409
8410
|
}).transform((v) => {
|
|
8410
8411
|
return remap$(v, {
|
|
8411
|
-
|
|
8412
|
+
atBRANDAt8895: "__@BRAND@8895",
|
|
8412
8413
|
});
|
|
8413
8414
|
});
|
|
8414
8415
|
|
|
@@ -8437,47 +8438,47 @@ export function createIntegrationStoreDirectPropertiesIntegrationsMaxLengthFromJ
|
|
|
8437
8438
|
}
|
|
8438
8439
|
|
|
8439
8440
|
/** @internal */
|
|
8440
|
-
export const
|
|
8441
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8895$inboundSchema:
|
|
8441
8442
|
z.ZodType<
|
|
8442
|
-
|
|
8443
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8895,
|
|
8443
8444
|
z.ZodTypeDef,
|
|
8444
8445
|
unknown
|
|
8445
8446
|
> = z.object({});
|
|
8446
8447
|
/** @internal */
|
|
8447
|
-
export type
|
|
8448
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8895$Outbound =
|
|
8448
8449
|
{};
|
|
8449
8450
|
|
|
8450
8451
|
/** @internal */
|
|
8451
|
-
export const
|
|
8452
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8895$outboundSchema:
|
|
8452
8453
|
z.ZodType<
|
|
8453
|
-
|
|
8454
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8895$Outbound,
|
|
8454
8455
|
z.ZodTypeDef,
|
|
8455
|
-
|
|
8456
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8895
|
|
8456
8457
|
> = z.object({});
|
|
8457
8458
|
|
|
8458
|
-
export function
|
|
8459
|
-
|
|
8460
|
-
|
|
8459
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8895ToJSON(
|
|
8460
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8895:
|
|
8461
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8895,
|
|
8461
8462
|
): string {
|
|
8462
8463
|
return JSON.stringify(
|
|
8463
|
-
|
|
8464
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8895$outboundSchema
|
|
8464
8465
|
.parse(
|
|
8465
|
-
|
|
8466
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8895,
|
|
8466
8467
|
),
|
|
8467
8468
|
);
|
|
8468
8469
|
}
|
|
8469
|
-
export function
|
|
8470
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8895FromJSON(
|
|
8470
8471
|
jsonString: string,
|
|
8471
8472
|
): SafeParseResult<
|
|
8472
|
-
|
|
8473
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8895,
|
|
8473
8474
|
SDKValidationError
|
|
8474
8475
|
> {
|
|
8475
8476
|
return safeParse(
|
|
8476
8477
|
jsonString,
|
|
8477
8478
|
(x) =>
|
|
8478
|
-
|
|
8479
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8895$inboundSchema
|
|
8479
8480
|
.parse(JSON.parse(x)),
|
|
8480
|
-
`Failed to parse '
|
|
8481
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8895' from JSON`,
|
|
8481
8482
|
);
|
|
8482
8483
|
}
|
|
8483
8484
|
|
|
@@ -8488,19 +8489,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$inbound
|
|
|
8488
8489
|
z.ZodTypeDef,
|
|
8489
8490
|
unknown
|
|
8490
8491
|
> = z.object({
|
|
8491
|
-
"__@BRAND@
|
|
8492
|
-
|
|
8492
|
+
"__@BRAND@8895": z.lazy(() =>
|
|
8493
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8895$inboundSchema
|
|
8493
8494
|
),
|
|
8494
8495
|
}).transform((v) => {
|
|
8495
8496
|
return remap$(v, {
|
|
8496
|
-
"__@BRAND@
|
|
8497
|
+
"__@BRAND@8895": "atBRANDAt8895",
|
|
8497
8498
|
});
|
|
8498
8499
|
});
|
|
8499
8500
|
/** @internal */
|
|
8500
8501
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$Outbound =
|
|
8501
8502
|
{
|
|
8502
|
-
"__@BRAND@
|
|
8503
|
-
|
|
8503
|
+
"__@BRAND@8895":
|
|
8504
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8895$Outbound;
|
|
8504
8505
|
};
|
|
8505
8506
|
|
|
8506
8507
|
/** @internal */
|
|
@@ -8510,12 +8511,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$outboun
|
|
|
8510
8511
|
z.ZodTypeDef,
|
|
8511
8512
|
CreateIntegrationStoreDirectPropertiesIntegrationsMinLength
|
|
8512
8513
|
> = z.object({
|
|
8513
|
-
|
|
8514
|
-
|
|
8514
|
+
atBRANDAt8895: z.lazy(() =>
|
|
8515
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8895$outboundSchema
|
|
8515
8516
|
),
|
|
8516
8517
|
}).transform((v) => {
|
|
8517
8518
|
return remap$(v, {
|
|
8518
|
-
|
|
8519
|
+
atBRANDAt8895: "__@BRAND@8895",
|
|
8519
8520
|
});
|
|
8520
8521
|
});
|
|
8521
8522
|
|
|
@@ -8544,47 +8545,47 @@ export function createIntegrationStoreDirectPropertiesIntegrationsMinLengthFromJ
|
|
|
8544
8545
|
}
|
|
8545
8546
|
|
|
8546
8547
|
/** @internal */
|
|
8547
|
-
export const
|
|
8548
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8895$inboundSchema:
|
|
8548
8549
|
z.ZodType<
|
|
8549
|
-
|
|
8550
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8895,
|
|
8550
8551
|
z.ZodTypeDef,
|
|
8551
8552
|
unknown
|
|
8552
8553
|
> = z.object({});
|
|
8553
8554
|
/** @internal */
|
|
8554
|
-
export type
|
|
8555
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8895$Outbound =
|
|
8555
8556
|
{};
|
|
8556
8557
|
|
|
8557
8558
|
/** @internal */
|
|
8558
|
-
export const
|
|
8559
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8895$outboundSchema:
|
|
8559
8560
|
z.ZodType<
|
|
8560
|
-
|
|
8561
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8895$Outbound,
|
|
8561
8562
|
z.ZodTypeDef,
|
|
8562
|
-
|
|
8563
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8895
|
|
8563
8564
|
> = z.object({});
|
|
8564
8565
|
|
|
8565
|
-
export function
|
|
8566
|
-
|
|
8567
|
-
|
|
8566
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8895ToJSON(
|
|
8567
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8895:
|
|
8568
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8895,
|
|
8568
8569
|
): string {
|
|
8569
8570
|
return JSON.stringify(
|
|
8570
|
-
|
|
8571
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8895$outboundSchema
|
|
8571
8572
|
.parse(
|
|
8572
|
-
|
|
8573
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8895,
|
|
8573
8574
|
),
|
|
8574
8575
|
);
|
|
8575
8576
|
}
|
|
8576
|
-
export function
|
|
8577
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8895FromJSON(
|
|
8577
8578
|
jsonString: string,
|
|
8578
8579
|
): SafeParseResult<
|
|
8579
|
-
|
|
8580
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8895,
|
|
8580
8581
|
SDKValidationError
|
|
8581
8582
|
> {
|
|
8582
8583
|
return safeParse(
|
|
8583
8584
|
jsonString,
|
|
8584
8585
|
(x) =>
|
|
8585
|
-
|
|
8586
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8895$inboundSchema
|
|
8586
8587
|
.parse(JSON.parse(x)),
|
|
8587
|
-
`Failed to parse '
|
|
8588
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8895' from JSON`,
|
|
8588
8589
|
);
|
|
8589
8590
|
}
|
|
8590
8591
|
|
|
@@ -8595,19 +8596,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsPattern$inboundSc
|
|
|
8595
8596
|
z.ZodTypeDef,
|
|
8596
8597
|
unknown
|
|
8597
8598
|
> = z.object({
|
|
8598
|
-
"__@BRAND@
|
|
8599
|
-
|
|
8599
|
+
"__@BRAND@8895": z.lazy(() =>
|
|
8600
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8895$inboundSchema
|
|
8600
8601
|
),
|
|
8601
8602
|
}).transform((v) => {
|
|
8602
8603
|
return remap$(v, {
|
|
8603
|
-
"__@BRAND@
|
|
8604
|
+
"__@BRAND@8895": "atBRANDAt8895",
|
|
8604
8605
|
});
|
|
8605
8606
|
});
|
|
8606
8607
|
/** @internal */
|
|
8607
8608
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsPattern$Outbound =
|
|
8608
8609
|
{
|
|
8609
|
-
"__@BRAND@
|
|
8610
|
-
|
|
8610
|
+
"__@BRAND@8895":
|
|
8611
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8895$Outbound;
|
|
8611
8612
|
};
|
|
8612
8613
|
|
|
8613
8614
|
/** @internal */
|
|
@@ -8617,12 +8618,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsPattern$outboundS
|
|
|
8617
8618
|
z.ZodTypeDef,
|
|
8618
8619
|
CreateIntegrationStoreDirectPropertiesIntegrationsPattern
|
|
8619
8620
|
> = z.object({
|
|
8620
|
-
|
|
8621
|
-
|
|
8621
|
+
atBRANDAt8895: z.lazy(() =>
|
|
8622
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8895$outboundSchema
|
|
8622
8623
|
),
|
|
8623
8624
|
}).transform((v) => {
|
|
8624
8625
|
return remap$(v, {
|
|
8625
|
-
|
|
8626
|
+
atBRANDAt8895: "__@BRAND@8895",
|
|
8626
8627
|
});
|
|
8627
8628
|
});
|
|
8628
8629
|
|
|
@@ -11641,47 +11642,47 @@ export const CreateIntegrationStoreDirectPropertiesUiControl$outboundSchema:
|
|
|
11641
11642
|
CreateIntegrationStoreDirectPropertiesUiControl$inboundSchema;
|
|
11642
11643
|
|
|
11643
11644
|
/** @internal */
|
|
11644
|
-
export const
|
|
11645
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8895$inboundSchema:
|
|
11645
11646
|
z.ZodType<
|
|
11646
|
-
|
|
11647
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8895,
|
|
11647
11648
|
z.ZodTypeDef,
|
|
11648
11649
|
unknown
|
|
11649
11650
|
> = z.object({});
|
|
11650
11651
|
/** @internal */
|
|
11651
|
-
export type
|
|
11652
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8895$Outbound =
|
|
11652
11653
|
{};
|
|
11653
11654
|
|
|
11654
11655
|
/** @internal */
|
|
11655
|
-
export const
|
|
11656
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8895$outboundSchema:
|
|
11656
11657
|
z.ZodType<
|
|
11657
|
-
|
|
11658
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8895$Outbound,
|
|
11658
11659
|
z.ZodTypeDef,
|
|
11659
|
-
|
|
11660
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8895
|
|
11660
11661
|
> = z.object({});
|
|
11661
11662
|
|
|
11662
|
-
export function
|
|
11663
|
-
|
|
11664
|
-
|
|
11663
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8895ToJSON(
|
|
11664
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8895:
|
|
11665
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8895,
|
|
11665
11666
|
): string {
|
|
11666
11667
|
return JSON.stringify(
|
|
11667
|
-
|
|
11668
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8895$outboundSchema
|
|
11668
11669
|
.parse(
|
|
11669
|
-
|
|
11670
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8895,
|
|
11670
11671
|
),
|
|
11671
11672
|
);
|
|
11672
11673
|
}
|
|
11673
|
-
export function
|
|
11674
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8895FromJSON(
|
|
11674
11675
|
jsonString: string,
|
|
11675
11676
|
): SafeParseResult<
|
|
11676
|
-
|
|
11677
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8895,
|
|
11677
11678
|
SDKValidationError
|
|
11678
11679
|
> {
|
|
11679
11680
|
return safeParse(
|
|
11680
11681
|
jsonString,
|
|
11681
11682
|
(x) =>
|
|
11682
|
-
|
|
11683
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8895$inboundSchema
|
|
11683
11684
|
.parse(JSON.parse(x)),
|
|
11684
|
-
`Failed to parse '
|
|
11685
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8895' from JSON`,
|
|
11685
11686
|
);
|
|
11686
11687
|
}
|
|
11687
11688
|
|
|
@@ -11692,18 +11693,18 @@ export const CreateIntegrationStoreDirectPropertiesMaxLength$inboundSchema:
|
|
|
11692
11693
|
z.ZodTypeDef,
|
|
11693
11694
|
unknown
|
|
11694
11695
|
> = z.object({
|
|
11695
|
-
"__@BRAND@
|
|
11696
|
-
|
|
11696
|
+
"__@BRAND@8895": z.lazy(() =>
|
|
11697
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8895$inboundSchema
|
|
11697
11698
|
),
|
|
11698
11699
|
}).transform((v) => {
|
|
11699
11700
|
return remap$(v, {
|
|
11700
|
-
"__@BRAND@
|
|
11701
|
+
"__@BRAND@8895": "atBRANDAt8895",
|
|
11701
11702
|
});
|
|
11702
11703
|
});
|
|
11703
11704
|
/** @internal */
|
|
11704
11705
|
export type CreateIntegrationStoreDirectPropertiesMaxLength$Outbound = {
|
|
11705
|
-
"__@BRAND@
|
|
11706
|
-
|
|
11706
|
+
"__@BRAND@8895":
|
|
11707
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8895$Outbound;
|
|
11707
11708
|
};
|
|
11708
11709
|
|
|
11709
11710
|
/** @internal */
|
|
@@ -11713,12 +11714,12 @@ export const CreateIntegrationStoreDirectPropertiesMaxLength$outboundSchema:
|
|
|
11713
11714
|
z.ZodTypeDef,
|
|
11714
11715
|
CreateIntegrationStoreDirectPropertiesMaxLength
|
|
11715
11716
|
> = z.object({
|
|
11716
|
-
|
|
11717
|
-
|
|
11717
|
+
atBRANDAt8895: z.lazy(() =>
|
|
11718
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8895$outboundSchema
|
|
11718
11719
|
),
|
|
11719
11720
|
}).transform((v) => {
|
|
11720
11721
|
return remap$(v, {
|
|
11721
|
-
|
|
11722
|
+
atBRANDAt8895: "__@BRAND@8895",
|
|
11722
11723
|
});
|
|
11723
11724
|
});
|
|
11724
11725
|
|
|
@@ -11749,35 +11750,35 @@ export function createIntegrationStoreDirectPropertiesMaxLengthFromJSON(
|
|
|
11749
11750
|
}
|
|
11750
11751
|
|
|
11751
11752
|
/** @internal */
|
|
11752
|
-
export const
|
|
11753
|
-
|
|
11753
|
+
export const PropertiesAtBRANDAt8895$inboundSchema: z.ZodType<
|
|
11754
|
+
PropertiesAtBRANDAt8895,
|
|
11754
11755
|
z.ZodTypeDef,
|
|
11755
11756
|
unknown
|
|
11756
11757
|
> = z.object({});
|
|
11757
11758
|
/** @internal */
|
|
11758
|
-
export type
|
|
11759
|
+
export type PropertiesAtBRANDAt8895$Outbound = {};
|
|
11759
11760
|
|
|
11760
11761
|
/** @internal */
|
|
11761
|
-
export const
|
|
11762
|
-
|
|
11762
|
+
export const PropertiesAtBRANDAt8895$outboundSchema: z.ZodType<
|
|
11763
|
+
PropertiesAtBRANDAt8895$Outbound,
|
|
11763
11764
|
z.ZodTypeDef,
|
|
11764
|
-
|
|
11765
|
+
PropertiesAtBRANDAt8895
|
|
11765
11766
|
> = z.object({});
|
|
11766
11767
|
|
|
11767
|
-
export function
|
|
11768
|
-
|
|
11768
|
+
export function propertiesAtBRANDAt8895ToJSON(
|
|
11769
|
+
propertiesAtBRANDAt8895: PropertiesAtBRANDAt8895,
|
|
11769
11770
|
): string {
|
|
11770
11771
|
return JSON.stringify(
|
|
11771
|
-
|
|
11772
|
+
PropertiesAtBRANDAt8895$outboundSchema.parse(propertiesAtBRANDAt8895),
|
|
11772
11773
|
);
|
|
11773
11774
|
}
|
|
11774
|
-
export function
|
|
11775
|
+
export function propertiesAtBRANDAt8895FromJSON(
|
|
11775
11776
|
jsonString: string,
|
|
11776
|
-
): SafeParseResult<
|
|
11777
|
+
): SafeParseResult<PropertiesAtBRANDAt8895, SDKValidationError> {
|
|
11777
11778
|
return safeParse(
|
|
11778
11779
|
jsonString,
|
|
11779
|
-
(x) =>
|
|
11780
|
-
`Failed to parse '
|
|
11780
|
+
(x) => PropertiesAtBRANDAt8895$inboundSchema.parse(JSON.parse(x)),
|
|
11781
|
+
`Failed to parse 'PropertiesAtBRANDAt8895' from JSON`,
|
|
11781
11782
|
);
|
|
11782
11783
|
}
|
|
11783
11784
|
|
|
@@ -11788,15 +11789,15 @@ export const CreateIntegrationStoreDirectPropertiesMinLength$inboundSchema:
|
|
|
11788
11789
|
z.ZodTypeDef,
|
|
11789
11790
|
unknown
|
|
11790
11791
|
> = z.object({
|
|
11791
|
-
"__@BRAND@
|
|
11792
|
+
"__@BRAND@8895": z.lazy(() => PropertiesAtBRANDAt8895$inboundSchema),
|
|
11792
11793
|
}).transform((v) => {
|
|
11793
11794
|
return remap$(v, {
|
|
11794
|
-
"__@BRAND@
|
|
11795
|
+
"__@BRAND@8895": "atBRANDAt8895",
|
|
11795
11796
|
});
|
|
11796
11797
|
});
|
|
11797
11798
|
/** @internal */
|
|
11798
11799
|
export type CreateIntegrationStoreDirectPropertiesMinLength$Outbound = {
|
|
11799
|
-
"__@BRAND@
|
|
11800
|
+
"__@BRAND@8895": PropertiesAtBRANDAt8895$Outbound;
|
|
11800
11801
|
};
|
|
11801
11802
|
|
|
11802
11803
|
/** @internal */
|
|
@@ -11806,10 +11807,10 @@ export const CreateIntegrationStoreDirectPropertiesMinLength$outboundSchema:
|
|
|
11806
11807
|
z.ZodTypeDef,
|
|
11807
11808
|
CreateIntegrationStoreDirectPropertiesMinLength
|
|
11808
11809
|
> = z.object({
|
|
11809
|
-
|
|
11810
|
+
atBRANDAt8895: z.lazy(() => PropertiesAtBRANDAt8895$outboundSchema),
|
|
11810
11811
|
}).transform((v) => {
|
|
11811
11812
|
return remap$(v, {
|
|
11812
|
-
|
|
11813
|
+
atBRANDAt8895: "__@BRAND@8895",
|
|
11813
11814
|
});
|
|
11814
11815
|
});
|
|
11815
11816
|
|
|
@@ -11840,46 +11841,46 @@ export function createIntegrationStoreDirectPropertiesMinLengthFromJSON(
|
|
|
11840
11841
|
}
|
|
11841
11842
|
|
|
11842
11843
|
/** @internal */
|
|
11843
|
-
export const
|
|
11844
|
+
export const CreateIntegrationStoreDirectPropertiesAtBRANDAt8895$inboundSchema:
|
|
11844
11845
|
z.ZodType<
|
|
11845
|
-
|
|
11846
|
+
CreateIntegrationStoreDirectPropertiesAtBRANDAt8895,
|
|
11846
11847
|
z.ZodTypeDef,
|
|
11847
11848
|
unknown
|
|
11848
11849
|
> = z.object({});
|
|
11849
11850
|
/** @internal */
|
|
11850
|
-
export type
|
|
11851
|
+
export type CreateIntegrationStoreDirectPropertiesAtBRANDAt8895$Outbound = {};
|
|
11851
11852
|
|
|
11852
11853
|
/** @internal */
|
|
11853
|
-
export const
|
|
11854
|
+
export const CreateIntegrationStoreDirectPropertiesAtBRANDAt8895$outboundSchema:
|
|
11854
11855
|
z.ZodType<
|
|
11855
|
-
|
|
11856
|
+
CreateIntegrationStoreDirectPropertiesAtBRANDAt8895$Outbound,
|
|
11856
11857
|
z.ZodTypeDef,
|
|
11857
|
-
|
|
11858
|
+
CreateIntegrationStoreDirectPropertiesAtBRANDAt8895
|
|
11858
11859
|
> = z.object({});
|
|
11859
11860
|
|
|
11860
|
-
export function
|
|
11861
|
-
|
|
11862
|
-
|
|
11861
|
+
export function createIntegrationStoreDirectPropertiesAtBRANDAt8895ToJSON(
|
|
11862
|
+
createIntegrationStoreDirectPropertiesAtBRANDAt8895:
|
|
11863
|
+
CreateIntegrationStoreDirectPropertiesAtBRANDAt8895,
|
|
11863
11864
|
): string {
|
|
11864
11865
|
return JSON.stringify(
|
|
11865
|
-
|
|
11866
|
-
|
|
11866
|
+
CreateIntegrationStoreDirectPropertiesAtBRANDAt8895$outboundSchema.parse(
|
|
11867
|
+
createIntegrationStoreDirectPropertiesAtBRANDAt8895,
|
|
11867
11868
|
),
|
|
11868
11869
|
);
|
|
11869
11870
|
}
|
|
11870
|
-
export function
|
|
11871
|
+
export function createIntegrationStoreDirectPropertiesAtBRANDAt8895FromJSON(
|
|
11871
11872
|
jsonString: string,
|
|
11872
11873
|
): SafeParseResult<
|
|
11873
|
-
|
|
11874
|
+
CreateIntegrationStoreDirectPropertiesAtBRANDAt8895,
|
|
11874
11875
|
SDKValidationError
|
|
11875
11876
|
> {
|
|
11876
11877
|
return safeParse(
|
|
11877
11878
|
jsonString,
|
|
11878
11879
|
(x) =>
|
|
11879
|
-
|
|
11880
|
+
CreateIntegrationStoreDirectPropertiesAtBRANDAt8895$inboundSchema.parse(
|
|
11880
11881
|
JSON.parse(x),
|
|
11881
11882
|
),
|
|
11882
|
-
`Failed to parse '
|
|
11883
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesAtBRANDAt8895' from JSON`,
|
|
11883
11884
|
);
|
|
11884
11885
|
}
|
|
11885
11886
|
|
|
@@ -11890,17 +11891,17 @@ export const CreateIntegrationStoreDirectPropertiesPattern$inboundSchema:
|
|
|
11890
11891
|
z.ZodTypeDef,
|
|
11891
11892
|
unknown
|
|
11892
11893
|
> = z.object({
|
|
11893
|
-
"__@BRAND@
|
|
11894
|
-
|
|
11894
|
+
"__@BRAND@8895": z.lazy(() =>
|
|
11895
|
+
CreateIntegrationStoreDirectPropertiesAtBRANDAt8895$inboundSchema
|
|
11895
11896
|
),
|
|
11896
11897
|
}).transform((v) => {
|
|
11897
11898
|
return remap$(v, {
|
|
11898
|
-
"__@BRAND@
|
|
11899
|
+
"__@BRAND@8895": "atBRANDAt8895",
|
|
11899
11900
|
});
|
|
11900
11901
|
});
|
|
11901
11902
|
/** @internal */
|
|
11902
11903
|
export type CreateIntegrationStoreDirectPropertiesPattern$Outbound = {
|
|
11903
|
-
"__@BRAND@
|
|
11904
|
+
"__@BRAND@8895": CreateIntegrationStoreDirectPropertiesAtBRANDAt8895$Outbound;
|
|
11904
11905
|
};
|
|
11905
11906
|
|
|
11906
11907
|
/** @internal */
|
|
@@ -11910,12 +11911,12 @@ export const CreateIntegrationStoreDirectPropertiesPattern$outboundSchema:
|
|
|
11910
11911
|
z.ZodTypeDef,
|
|
11911
11912
|
CreateIntegrationStoreDirectPropertiesPattern
|
|
11912
11913
|
> = z.object({
|
|
11913
|
-
|
|
11914
|
-
|
|
11914
|
+
atBRANDAt8895: z.lazy(() =>
|
|
11915
|
+
CreateIntegrationStoreDirectPropertiesAtBRANDAt8895$outboundSchema
|
|
11915
11916
|
),
|
|
11916
11917
|
}).transform((v) => {
|
|
11917
11918
|
return remap$(v, {
|
|
11918
|
-
|
|
11919
|
+
atBRANDAt8895: "__@BRAND@8895",
|
|
11919
11920
|
});
|
|
11920
11921
|
});
|
|
11921
11922
|
|
|
@@ -12994,31 +12995,31 @@ export function guidesFromJSON(
|
|
|
12994
12995
|
}
|
|
12995
12996
|
|
|
12996
12997
|
/** @internal */
|
|
12997
|
-
export const
|
|
12998
|
-
|
|
12998
|
+
export const AtBRANDAt8895$inboundSchema: z.ZodType<
|
|
12999
|
+
AtBRANDAt8895,
|
|
12999
13000
|
z.ZodTypeDef,
|
|
13000
13001
|
unknown
|
|
13001
13002
|
> = z.object({});
|
|
13002
13003
|
/** @internal */
|
|
13003
|
-
export type
|
|
13004
|
+
export type AtBRANDAt8895$Outbound = {};
|
|
13004
13005
|
|
|
13005
13006
|
/** @internal */
|
|
13006
|
-
export const
|
|
13007
|
-
|
|
13007
|
+
export const AtBRANDAt8895$outboundSchema: z.ZodType<
|
|
13008
|
+
AtBRANDAt8895$Outbound,
|
|
13008
13009
|
z.ZodTypeDef,
|
|
13009
|
-
|
|
13010
|
+
AtBRANDAt8895
|
|
13010
13011
|
> = z.object({});
|
|
13011
13012
|
|
|
13012
|
-
export function
|
|
13013
|
-
return JSON.stringify(
|
|
13013
|
+
export function atBRANDAt8895ToJSON(atBRANDAt8895: AtBRANDAt8895): string {
|
|
13014
|
+
return JSON.stringify(AtBRANDAt8895$outboundSchema.parse(atBRANDAt8895));
|
|
13014
13015
|
}
|
|
13015
|
-
export function
|
|
13016
|
+
export function atBRANDAt8895FromJSON(
|
|
13016
13017
|
jsonString: string,
|
|
13017
|
-
): SafeParseResult<
|
|
13018
|
+
): SafeParseResult<AtBRANDAt8895, SDKValidationError> {
|
|
13018
13019
|
return safeParse(
|
|
13019
13020
|
jsonString,
|
|
13020
|
-
(x) =>
|
|
13021
|
-
`Failed to parse '
|
|
13021
|
+
(x) => AtBRANDAt8895$inboundSchema.parse(JSON.parse(x)),
|
|
13022
|
+
`Failed to parse 'AtBRANDAt8895' from JSON`,
|
|
13022
13023
|
);
|
|
13023
13024
|
}
|
|
13024
13025
|
|
|
@@ -13028,15 +13029,15 @@ export const CreateIntegrationStoreDirectValue$inboundSchema: z.ZodType<
|
|
|
13028
13029
|
z.ZodTypeDef,
|
|
13029
13030
|
unknown
|
|
13030
13031
|
> = z.object({
|
|
13031
|
-
"__@BRAND@
|
|
13032
|
+
"__@BRAND@8895": z.lazy(() => AtBRANDAt8895$inboundSchema),
|
|
13032
13033
|
}).transform((v) => {
|
|
13033
13034
|
return remap$(v, {
|
|
13034
|
-
"__@BRAND@
|
|
13035
|
+
"__@BRAND@8895": "atBRANDAt8895",
|
|
13035
13036
|
});
|
|
13036
13037
|
});
|
|
13037
13038
|
/** @internal */
|
|
13038
13039
|
export type CreateIntegrationStoreDirectValue$Outbound = {
|
|
13039
|
-
"__@BRAND@
|
|
13040
|
+
"__@BRAND@8895": AtBRANDAt8895$Outbound;
|
|
13040
13041
|
};
|
|
13041
13042
|
|
|
13042
13043
|
/** @internal */
|
|
@@ -13045,10 +13046,10 @@ export const CreateIntegrationStoreDirectValue$outboundSchema: z.ZodType<
|
|
|
13045
13046
|
z.ZodTypeDef,
|
|
13046
13047
|
CreateIntegrationStoreDirectValue
|
|
13047
13048
|
> = z.object({
|
|
13048
|
-
|
|
13049
|
+
atBRANDAt8895: z.lazy(() => AtBRANDAt8895$outboundSchema),
|
|
13049
13050
|
}).transform((v) => {
|
|
13050
13051
|
return remap$(v, {
|
|
13051
|
-
|
|
13052
|
+
atBRANDAt8895: "__@BRAND@8895",
|
|
13052
13053
|
});
|
|
13053
13054
|
});
|
|
13054
13055
|
|
|
@@ -13850,6 +13851,7 @@ export const CreateIntegrationStoreDirectStore$inboundSchema: z.ZodType<
|
|
|
13850
13851
|
externalResourceId: z.string(),
|
|
13851
13852
|
externalResourceStatus: z.nullable(ExternalResourceStatus$inboundSchema)
|
|
13852
13853
|
.optional(),
|
|
13854
|
+
directPartnerConsoleUrl: z.string().optional(),
|
|
13853
13855
|
product: z.lazy(() => Product$inboundSchema),
|
|
13854
13856
|
protocolSettings: z.lazy(() =>
|
|
13855
13857
|
CreateIntegrationStoreDirectProtocolSettings$inboundSchema
|
|
@@ -13884,6 +13886,7 @@ export type CreateIntegrationStoreDirectStore$Outbound = {
|
|
|
13884
13886
|
} | undefined;
|
|
13885
13887
|
externalResourceId: string;
|
|
13886
13888
|
externalResourceStatus?: string | null | undefined;
|
|
13889
|
+
directPartnerConsoleUrl?: string | undefined;
|
|
13887
13890
|
product: Product$Outbound;
|
|
13888
13891
|
protocolSettings?:
|
|
13889
13892
|
| CreateIntegrationStoreDirectProtocolSettings$Outbound
|
|
@@ -13924,6 +13927,7 @@ export const CreateIntegrationStoreDirectStore$outboundSchema: z.ZodType<
|
|
|
13924
13927
|
externalResourceId: z.string(),
|
|
13925
13928
|
externalResourceStatus: z.nullable(ExternalResourceStatus$outboundSchema)
|
|
13926
13929
|
.optional(),
|
|
13930
|
+
directPartnerConsoleUrl: z.string().optional(),
|
|
13927
13931
|
product: z.lazy(() => Product$outboundSchema),
|
|
13928
13932
|
protocolSettings: z.lazy(() =>
|
|
13929
13933
|
CreateIntegrationStoreDirectProtocolSettings$outboundSchema
|