@vercel/sdk 1.18.3 → 1.18.5
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 +42 -22
- package/_speakeasy/.github/action-inputs-config.json +53 -0
- package/_speakeasy/.github/action-security-config.json +88 -0
- package/bin/mcp-server.js +45798 -27507
- package/bin/mcp-server.js.map +232 -65
- package/esm/__tests__/accessgroups.test.js +1 -3
- package/esm/__tests__/accessgroups.test.js.map +1 -1
- package/esm/__tests__/bulkredirects.test.d.ts +2 -0
- package/esm/__tests__/bulkredirects.test.d.ts.map +1 -0
- package/esm/__tests__/bulkredirects.test.js +171 -0
- package/esm/__tests__/bulkredirects.test.js.map +1 -0
- package/esm/__tests__/domains.test.js +5 -5
- package/esm/__tests__/domains.test.js.map +1 -1
- package/esm/__tests__/edgeconfig.test.js +6 -6
- package/esm/__tests__/edgeconfig.test.js.map +1 -1
- package/esm/__tests__/integrations.test.js +1 -1
- package/esm/__tests__/logdrains.test.js +1 -3
- package/esm/__tests__/logdrains.test.js.map +1 -1
- package/esm/__tests__/security.test.js +23 -14
- package/esm/__tests__/security.test.js.map +1 -1
- package/esm/__tests__/vercel.test.js +15 -143
- package/esm/__tests__/vercel.test.js.map +1 -1
- package/esm/funcs/{deleteV1BulkRedirects.d.ts → bulkRedirectsDeleteRedirects.d.ts} +6 -3
- package/esm/funcs/bulkRedirectsDeleteRedirects.d.ts.map +1 -0
- package/esm/funcs/{deleteV1BulkRedirects.js → bulkRedirectsDeleteRedirects.js} +18 -8
- package/esm/funcs/bulkRedirectsDeleteRedirects.js.map +1 -0
- package/esm/funcs/{patchV1BulkRedirects.d.ts → bulkRedirectsEditRedirect.d.ts} +6 -3
- package/esm/funcs/bulkRedirectsEditRedirect.d.ts.map +1 -0
- package/esm/funcs/{patchV1BulkRedirects.js → bulkRedirectsEditRedirect.js} +18 -8
- package/esm/funcs/bulkRedirectsEditRedirect.js.map +1 -0
- package/esm/funcs/{getV1BulkRedirects.d.ts → bulkRedirectsGetRedirects.d.ts} +6 -3
- package/esm/funcs/bulkRedirectsGetRedirects.d.ts.map +1 -0
- package/esm/funcs/{getV1BulkRedirects.js → bulkRedirectsGetRedirects.js} +18 -8
- package/esm/funcs/bulkRedirectsGetRedirects.js.map +1 -0
- package/esm/funcs/{getV1BulkRedirectsVersions.d.ts → bulkRedirectsGetVersions.d.ts} +6 -3
- package/esm/funcs/bulkRedirectsGetVersions.d.ts.map +1 -0
- package/esm/funcs/{getV1BulkRedirectsVersions.js → bulkRedirectsGetVersions.js} +18 -8
- package/esm/funcs/bulkRedirectsGetVersions.js.map +1 -0
- package/esm/funcs/{postV1BulkRedirectsRestore.d.ts → bulkRedirectsRestoreRedirects.d.ts} +6 -3
- package/esm/funcs/bulkRedirectsRestoreRedirects.d.ts.map +1 -0
- package/esm/funcs/{postV1BulkRedirectsRestore.js → bulkRedirectsRestoreRedirects.js} +18 -8
- package/esm/funcs/bulkRedirectsRestoreRedirects.js.map +1 -0
- package/esm/funcs/bulkRedirectsStageRedirects.d.ts +17 -0
- package/esm/funcs/bulkRedirectsStageRedirects.d.ts.map +1 -0
- package/esm/funcs/bulkRedirectsStageRedirects.js +83 -0
- package/esm/funcs/bulkRedirectsStageRedirects.js.map +1 -0
- package/esm/funcs/{postV1BulkRedirectsVersions.d.ts → bulkRedirectsUpdateVersion.d.ts} +6 -3
- package/esm/funcs/bulkRedirectsUpdateVersion.d.ts.map +1 -0
- package/esm/funcs/{postV1BulkRedirectsVersions.js → bulkRedirectsUpdateVersion.js} +18 -8
- package/esm/funcs/bulkRedirectsUpdateVersion.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/prompts.d.ts +3 -3
- package/esm/mcp-server/prompts.d.ts.map +1 -1
- package/esm/mcp-server/prompts.js.map +1 -1
- package/esm/mcp-server/resources.d.ts +3 -3
- package/esm/mcp-server/resources.d.ts.map +1 -1
- package/esm/mcp-server/resources.js.map +1 -1
- package/esm/mcp-server/server.js +15 -15
- package/esm/mcp-server/server.js.map +1 -1
- package/esm/mcp-server/tools/bulkRedirectsDeleteRedirects.d.ts +7 -0
- package/esm/mcp-server/tools/bulkRedirectsDeleteRedirects.d.ts.map +1 -0
- package/esm/mcp-server/tools/bulkRedirectsDeleteRedirects.js +28 -0
- package/esm/mcp-server/tools/bulkRedirectsDeleteRedirects.js.map +1 -0
- package/esm/mcp-server/tools/bulkRedirectsEditRedirect.d.ts +7 -0
- package/esm/mcp-server/tools/bulkRedirectsEditRedirect.d.ts.map +1 -0
- package/esm/mcp-server/tools/bulkRedirectsEditRedirect.js +28 -0
- package/esm/mcp-server/tools/bulkRedirectsEditRedirect.js.map +1 -0
- package/esm/mcp-server/tools/bulkRedirectsGetRedirects.d.ts +7 -0
- package/esm/mcp-server/tools/bulkRedirectsGetRedirects.d.ts.map +1 -0
- package/esm/mcp-server/tools/bulkRedirectsGetRedirects.js +28 -0
- package/esm/mcp-server/tools/bulkRedirectsGetRedirects.js.map +1 -0
- package/esm/mcp-server/tools/bulkRedirectsGetVersions.d.ts +7 -0
- package/esm/mcp-server/tools/bulkRedirectsGetVersions.d.ts.map +1 -0
- package/esm/mcp-server/tools/bulkRedirectsGetVersions.js +28 -0
- package/esm/mcp-server/tools/bulkRedirectsGetVersions.js.map +1 -0
- package/esm/mcp-server/tools/bulkRedirectsRestoreRedirects.d.ts +7 -0
- package/esm/mcp-server/tools/bulkRedirectsRestoreRedirects.d.ts.map +1 -0
- package/esm/mcp-server/tools/bulkRedirectsRestoreRedirects.js +28 -0
- package/esm/mcp-server/tools/bulkRedirectsRestoreRedirects.js.map +1 -0
- package/esm/mcp-server/tools/bulkRedirectsStageRedirects.d.ts +7 -0
- package/esm/mcp-server/tools/bulkRedirectsStageRedirects.d.ts.map +1 -0
- package/esm/mcp-server/tools/bulkRedirectsStageRedirects.js +28 -0
- package/esm/mcp-server/tools/bulkRedirectsStageRedirects.js.map +1 -0
- package/esm/mcp-server/tools/bulkRedirectsUpdateVersion.d.ts +7 -0
- package/esm/mcp-server/tools/bulkRedirectsUpdateVersion.d.ts.map +1 -0
- package/esm/mcp-server/tools/bulkRedirectsUpdateVersion.js +28 -0
- package/esm/mcp-server/tools/bulkRedirectsUpdateVersion.js.map +1 -0
- package/esm/mcp-server/tools.d.ts +3 -3
- package/esm/mcp-server/tools.d.ts.map +1 -1
- package/esm/mcp-server/tools.js.map +1 -1
- 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/createintegrationstoredirectop.d.ts +152 -152
- package/esm/models/createintegrationstoredirectop.js +218 -218
- package/esm/models/createwebhookop.d.ts +0 -2
- package/esm/models/createwebhookop.d.ts.map +1 -1
- package/esm/models/createwebhookop.js +0 -2
- package/esm/models/createwebhookop.js.map +1 -1
- package/esm/models/deleteredirectsop.d.ts +112 -0
- package/esm/models/deleteredirectsop.d.ts.map +1 -0
- package/esm/models/deleteredirectsop.js +99 -0
- package/esm/models/deleteredirectsop.js.map +1 -0
- package/esm/models/{patchv1bulkredirectsop.d.ts → editredirectop.d.ts} +39 -29
- package/esm/models/editredirectop.d.ts.map +1 -0
- package/esm/models/editredirectop.js +123 -0
- package/esm/models/editredirectop.js.map +1 -0
- package/esm/models/getconfigurationproductsop.d.ts +200 -200
- package/esm/models/getconfigurationproductsop.js +290 -290
- package/esm/models/getfirewallconfigop.d.ts +8 -8
- package/esm/models/getfirewallconfigop.d.ts.map +1 -1
- package/esm/models/getfirewallconfigop.js +10 -8
- package/esm/models/getfirewallconfigop.js.map +1 -1
- package/esm/models/{getv1bulkredirectsop.d.ts → getredirectsop.d.ts} +37 -27
- package/esm/models/getredirectsop.d.ts.map +1 -0
- package/esm/models/{getv1bulkredirectsop.js → getredirectsop.js} +38 -28
- package/esm/models/getredirectsop.js.map +1 -0
- package/esm/models/{getv1bulkredirectsversionsop.d.ts → getversionsop.d.ts} +23 -13
- package/esm/models/getversionsop.d.ts.map +1 -0
- package/esm/models/{getv1bulkredirectsversionsop.js → getversionsop.js} +17 -13
- package/esm/models/getversionsop.js.map +1 -0
- package/esm/models/getwebhookop.d.ts +0 -1
- package/esm/models/getwebhookop.d.ts.map +1 -1
- package/esm/models/getwebhookop.js +0 -1
- package/esm/models/getwebhookop.js.map +1 -1
- package/esm/models/getwebhooksop.d.ts +0 -2
- package/esm/models/getwebhooksop.d.ts.map +1 -1
- package/esm/models/getwebhooksop.js +0 -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/putfirewallconfigop.d.ts +11 -6
- package/esm/models/putfirewallconfigop.d.ts.map +1 -1
- package/esm/models/putfirewallconfigop.js +12 -2
- package/esm/models/putfirewallconfigop.js.map +1 -1
- package/esm/models/restoreredirectsop.d.ts +114 -0
- package/esm/models/restoreredirectsop.d.ts.map +1 -0
- package/esm/models/restoreredirectsop.js +101 -0
- package/esm/models/restoreredirectsop.js.map +1 -0
- package/esm/models/{putv1bulkredirectsop.d.ts → stageredirectsop.d.ts} +44 -21
- package/esm/models/stageredirectsop.d.ts.map +1 -0
- package/esm/models/stageredirectsop.js +136 -0
- package/esm/models/stageredirectsop.js.map +1 -0
- package/esm/models/team.d.ts +6 -6
- package/esm/models/team.d.ts.map +1 -1
- package/esm/models/team.js +6 -4
- package/esm/models/team.js.map +1 -1
- package/esm/models/updateversionop.d.ts +120 -0
- package/esm/models/updateversionop.d.ts.map +1 -0
- package/esm/models/updateversionop.js +106 -0
- package/esm/models/updateversionop.js.map +1 -0
- package/esm/sdk/bulkredirects.d.ts +60 -0
- package/esm/sdk/bulkredirects.d.ts.map +1 -0
- package/esm/sdk/bulkredirects.js +78 -0
- package/esm/sdk/bulkredirects.js.map +1 -0
- package/esm/sdk/sdk.d.ts +4 -33
- package/esm/sdk/sdk.d.ts.map +1 -1
- package/esm/sdk/sdk.js +4 -47
- package/esm/sdk/sdk.js.map +1 -1
- package/examples/package-lock.json +2 -2
- package/jsr.json +1 -1
- package/package.json +2 -2
- package/src/__tests__/accessgroups.test.ts +1 -3
- package/src/__tests__/bulkredirects.test.ts +192 -0
- package/src/__tests__/domains.test.ts +5 -5
- package/src/__tests__/edgeconfig.test.ts +6 -6
- package/src/__tests__/integrations.test.ts +1 -1
- package/src/__tests__/logdrains.test.ts +1 -3
- package/src/__tests__/security.test.ts +23 -14
- package/src/__tests__/vercel.test.ts +26 -160
- package/src/funcs/{deleteV1BulkRedirects.ts → bulkRedirectsDeleteRedirects.ts} +27 -16
- package/src/funcs/{patchV1BulkRedirects.ts → bulkRedirectsEditRedirect.ts} +28 -17
- package/src/funcs/{getV1BulkRedirects.ts → bulkRedirectsGetRedirects.ts} +27 -16
- package/src/funcs/{getV1BulkRedirectsVersions.ts → bulkRedirectsGetVersions.ts} +27 -16
- package/src/funcs/{postV1BulkRedirectsRestore.ts → bulkRedirectsRestoreRedirects.ts} +28 -17
- package/src/funcs/bulkRedirectsStageRedirects.ts +171 -0
- package/src/funcs/{postV1BulkRedirectsVersions.ts → bulkRedirectsUpdateVersion.ts} +28 -17
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/prompts.ts +7 -3
- package/src/mcp-server/resources.ts +7 -3
- package/src/mcp-server/server.ts +15 -15
- package/src/mcp-server/tools/bulkRedirectsDeleteRedirects.ts +37 -0
- package/src/mcp-server/tools/bulkRedirectsEditRedirect.ts +37 -0
- package/src/mcp-server/tools/{getV1BulkRedirects.ts → bulkRedirectsGetRedirects.ts} +9 -7
- package/src/mcp-server/tools/{putV1BulkRedirects.ts → bulkRedirectsGetVersions.ts} +9 -7
- package/src/mcp-server/tools/bulkRedirectsRestoreRedirects.ts +38 -0
- package/src/mcp-server/tools/bulkRedirectsStageRedirects.ts +37 -0
- package/src/mcp-server/tools/bulkRedirectsUpdateVersion.ts +38 -0
- package/src/mcp-server/tools.ts +7 -3
- package/src/models/artifactqueryop.ts +17 -21
- package/src/models/createintegrationstoredirectop.ts +471 -471
- package/src/models/createwebhookop.ts +0 -2
- package/src/models/deleteredirectsop.ts +275 -0
- package/src/models/{patchv1bulkredirectsop.ts → editredirectop.ts} +78 -74
- package/src/models/getconfigurationproductsop.ts +627 -627
- package/src/models/getfirewallconfigop.ts +25 -17
- package/src/models/{getv1bulkredirectsop.ts → getredirectsop.ts} +91 -66
- package/src/models/{getv1bulkredirectsversionsop.ts → getversionsop.ts} +42 -34
- package/src/models/getwebhookop.ts +0 -1
- package/src/models/getwebhooksop.ts +0 -2
- package/src/models/listaccessgroupsop.ts +18 -26
- package/src/models/putfirewallconfigop.ts +35 -4
- package/src/models/restoreredirectsop.ts +281 -0
- package/src/models/{putv1bulkredirectsop.ts → stageredirectsop.ts} +113 -50
- package/src/models/team.ts +14 -10
- package/src/models/updateversionop.ts +285 -0
- package/src/sdk/bulkredirects.ts +162 -0
- package/src/sdk/sdk.ts +7 -132
- package/vercel-spec.json +297 -131
- package/esm/funcs/deleteV1BulkRedirects.d.ts.map +0 -1
- package/esm/funcs/deleteV1BulkRedirects.js.map +0 -1
- package/esm/funcs/getV1BulkRedirects.d.ts.map +0 -1
- package/esm/funcs/getV1BulkRedirects.js.map +0 -1
- package/esm/funcs/getV1BulkRedirectsVersions.d.ts.map +0 -1
- package/esm/funcs/getV1BulkRedirectsVersions.js.map +0 -1
- package/esm/funcs/patchV1BulkRedirects.d.ts.map +0 -1
- package/esm/funcs/patchV1BulkRedirects.js.map +0 -1
- package/esm/funcs/postV1BulkRedirectsRestore.d.ts.map +0 -1
- package/esm/funcs/postV1BulkRedirectsRestore.js.map +0 -1
- package/esm/funcs/postV1BulkRedirectsVersions.d.ts.map +0 -1
- package/esm/funcs/postV1BulkRedirectsVersions.js.map +0 -1
- package/esm/funcs/putV1BulkRedirects.d.ts +0 -11
- package/esm/funcs/putV1BulkRedirects.d.ts.map +0 -1
- package/esm/funcs/putV1BulkRedirects.js +0 -69
- package/esm/funcs/putV1BulkRedirects.js.map +0 -1
- package/esm/mcp-server/tools/deleteV1BulkRedirects.d.ts +0 -7
- package/esm/mcp-server/tools/deleteV1BulkRedirects.d.ts.map +0 -1
- package/esm/mcp-server/tools/deleteV1BulkRedirects.js +0 -26
- package/esm/mcp-server/tools/deleteV1BulkRedirects.js.map +0 -1
- package/esm/mcp-server/tools/getV1BulkRedirects.d.ts +0 -7
- package/esm/mcp-server/tools/getV1BulkRedirects.d.ts.map +0 -1
- package/esm/mcp-server/tools/getV1BulkRedirects.js +0 -26
- package/esm/mcp-server/tools/getV1BulkRedirects.js.map +0 -1
- package/esm/mcp-server/tools/getV1BulkRedirectsVersions.d.ts +0 -7
- package/esm/mcp-server/tools/getV1BulkRedirectsVersions.d.ts.map +0 -1
- package/esm/mcp-server/tools/getV1BulkRedirectsVersions.js +0 -26
- package/esm/mcp-server/tools/getV1BulkRedirectsVersions.js.map +0 -1
- package/esm/mcp-server/tools/patchV1BulkRedirects.d.ts +0 -7
- package/esm/mcp-server/tools/patchV1BulkRedirects.d.ts.map +0 -1
- package/esm/mcp-server/tools/patchV1BulkRedirects.js +0 -26
- package/esm/mcp-server/tools/patchV1BulkRedirects.js.map +0 -1
- package/esm/mcp-server/tools/postV1BulkRedirectsRestore.d.ts +0 -7
- package/esm/mcp-server/tools/postV1BulkRedirectsRestore.d.ts.map +0 -1
- package/esm/mcp-server/tools/postV1BulkRedirectsRestore.js +0 -26
- package/esm/mcp-server/tools/postV1BulkRedirectsRestore.js.map +0 -1
- package/esm/mcp-server/tools/postV1BulkRedirectsVersions.d.ts +0 -7
- package/esm/mcp-server/tools/postV1BulkRedirectsVersions.d.ts.map +0 -1
- package/esm/mcp-server/tools/postV1BulkRedirectsVersions.js +0 -26
- package/esm/mcp-server/tools/postV1BulkRedirectsVersions.js.map +0 -1
- package/esm/mcp-server/tools/putV1BulkRedirects.d.ts +0 -7
- package/esm/mcp-server/tools/putV1BulkRedirects.d.ts.map +0 -1
- package/esm/mcp-server/tools/putV1BulkRedirects.js +0 -26
- package/esm/mcp-server/tools/putV1BulkRedirects.js.map +0 -1
- package/esm/models/deletev1bulkredirectsop.d.ts +0 -102
- package/esm/models/deletev1bulkredirectsop.d.ts.map +0 -1
- package/esm/models/deletev1bulkredirectsop.js +0 -95
- package/esm/models/deletev1bulkredirectsop.js.map +0 -1
- package/esm/models/getv1bulkredirectsop.d.ts.map +0 -1
- package/esm/models/getv1bulkredirectsop.js.map +0 -1
- package/esm/models/getv1bulkredirectsversionsop.d.ts.map +0 -1
- package/esm/models/getv1bulkredirectsversionsop.js.map +0 -1
- package/esm/models/patchv1bulkredirectsop.d.ts.map +0 -1
- package/esm/models/patchv1bulkredirectsop.js +0 -121
- package/esm/models/patchv1bulkredirectsop.js.map +0 -1
- package/esm/models/postv1bulkredirectsrestoreop.d.ts +0 -104
- package/esm/models/postv1bulkredirectsrestoreop.d.ts.map +0 -1
- package/esm/models/postv1bulkredirectsrestoreop.js +0 -96
- package/esm/models/postv1bulkredirectsrestoreop.js.map +0 -1
- package/esm/models/postv1bulkredirectsversionsop.d.ts +0 -110
- package/esm/models/postv1bulkredirectsversionsop.d.ts.map +0 -1
- package/esm/models/postv1bulkredirectsversionsop.js +0 -102
- package/esm/models/postv1bulkredirectsversionsop.js.map +0 -1
- package/esm/models/putv1bulkredirectsop.d.ts.map +0 -1
- package/esm/models/putv1bulkredirectsop.js +0 -108
- package/esm/models/putv1bulkredirectsop.js.map +0 -1
- package/src/funcs/putV1BulkRedirects.ts +0 -156
- package/src/mcp-server/tools/deleteV1BulkRedirects.ts +0 -36
- package/src/mcp-server/tools/getV1BulkRedirectsVersions.ts +0 -35
- package/src/mcp-server/tools/patchV1BulkRedirects.ts +0 -36
- package/src/mcp-server/tools/postV1BulkRedirectsRestore.ts +0 -36
- package/src/mcp-server/tools/postV1BulkRedirectsVersions.ts +0 -36
- package/src/models/deletev1bulkredirectsop.ts +0 -267
- package/src/models/postv1bulkredirectsrestoreop.ts +0 -275
- package/src/models/postv1bulkredirectsversionsop.ts +0 -296
|
@@ -289,12 +289,12 @@ export type CreateIntegrationStoreDirectIntegrationsType = ClosedEnum<
|
|
|
289
289
|
typeof CreateIntegrationStoreDirectIntegrationsType
|
|
290
290
|
>;
|
|
291
291
|
|
|
292
|
-
export type
|
|
292
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8897 =
|
|
293
293
|
{};
|
|
294
294
|
|
|
295
295
|
export type CreateIntegrationStoreDirectPropertiesValue = {
|
|
296
|
-
|
|
297
|
-
|
|
296
|
+
atBRANDAt8897:
|
|
297
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8897;
|
|
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 CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8897 =
|
|
367
367
|
{};
|
|
368
368
|
|
|
369
369
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength =
|
|
370
370
|
{
|
|
371
|
-
|
|
372
|
-
|
|
371
|
+
atBRANDAt8897:
|
|
372
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8897;
|
|
373
373
|
};
|
|
374
374
|
|
|
375
|
-
export type
|
|
375
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8897 =
|
|
376
376
|
{};
|
|
377
377
|
|
|
378
378
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength =
|
|
379
379
|
{
|
|
380
|
-
|
|
381
|
-
|
|
380
|
+
atBRANDAt8897:
|
|
381
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8897;
|
|
382
382
|
};
|
|
383
383
|
|
|
384
|
-
export type
|
|
384
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8897 =
|
|
385
385
|
{};
|
|
386
386
|
|
|
387
387
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern =
|
|
388
388
|
{
|
|
389
|
-
|
|
390
|
-
|
|
389
|
+
atBRANDAt8897:
|
|
390
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8897;
|
|
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 CreateIntegrationStoreDirectUiOptionsAtBRANDAt8897 = {};
|
|
529
529
|
|
|
530
530
|
export type CreateIntegrationStoreDirectUiOptionsValue = {
|
|
531
|
-
|
|
531
|
+
atBRANDAt8897: CreateIntegrationStoreDirectUiOptionsAtBRANDAt8897;
|
|
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 UiOptionsAtBRANDAt8897 = {};
|
|
583
583
|
|
|
584
584
|
export type CreateIntegrationStoreDirectUiOptions2 = {
|
|
585
|
-
|
|
585
|
+
atBRANDAt8897: UiOptionsAtBRANDAt8897;
|
|
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 CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8897 =
|
|
649
649
|
{};
|
|
650
650
|
|
|
651
651
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength =
|
|
652
652
|
{
|
|
653
|
-
|
|
654
|
-
|
|
653
|
+
atBRANDAt8897:
|
|
654
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8897;
|
|
655
655
|
};
|
|
656
656
|
|
|
657
|
-
export type
|
|
657
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8897 =
|
|
658
658
|
{};
|
|
659
659
|
|
|
660
660
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength =
|
|
661
661
|
{
|
|
662
|
-
|
|
663
|
-
|
|
662
|
+
atBRANDAt8897:
|
|
663
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8897;
|
|
664
664
|
};
|
|
665
665
|
|
|
666
|
-
export type
|
|
666
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8897 =
|
|
667
667
|
{};
|
|
668
668
|
|
|
669
669
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern =
|
|
670
670
|
{
|
|
671
|
-
|
|
672
|
-
|
|
671
|
+
atBRANDAt8897:
|
|
672
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8897;
|
|
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 CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8897 =
|
|
816
816
|
{};
|
|
817
817
|
|
|
818
818
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength =
|
|
819
819
|
{
|
|
820
|
-
|
|
821
|
-
|
|
820
|
+
atBRANDAt8897:
|
|
821
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8897;
|
|
822
822
|
};
|
|
823
823
|
|
|
824
|
-
export type
|
|
824
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8897 =
|
|
825
825
|
{};
|
|
826
826
|
|
|
827
827
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength =
|
|
828
828
|
{
|
|
829
|
-
|
|
830
|
-
|
|
829
|
+
atBRANDAt8897:
|
|
830
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8897;
|
|
831
831
|
};
|
|
832
832
|
|
|
833
|
-
export type
|
|
833
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8897 =
|
|
834
834
|
{};
|
|
835
835
|
|
|
836
836
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern =
|
|
837
837
|
{
|
|
838
|
-
|
|
839
|
-
|
|
838
|
+
atBRANDAt8897:
|
|
839
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8897;
|
|
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 CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8897 =
|
|
1095
1095
|
{};
|
|
1096
1096
|
|
|
1097
1097
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength = {
|
|
1098
|
-
|
|
1099
|
-
|
|
1098
|
+
atBRANDAt8897:
|
|
1099
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8897;
|
|
1100
1100
|
};
|
|
1101
1101
|
|
|
1102
|
-
export type
|
|
1102
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8897 =
|
|
1103
1103
|
{};
|
|
1104
1104
|
|
|
1105
1105
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsMinLength = {
|
|
1106
|
-
|
|
1107
|
-
|
|
1106
|
+
atBRANDAt8897:
|
|
1107
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8897;
|
|
1108
1108
|
};
|
|
1109
1109
|
|
|
1110
|
-
export type
|
|
1110
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8897 =
|
|
1111
1111
|
{};
|
|
1112
1112
|
|
|
1113
1113
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsPattern = {
|
|
1114
|
-
|
|
1115
|
-
|
|
1114
|
+
atBRANDAt8897:
|
|
1115
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8897;
|
|
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 CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8897 =
|
|
1619
1619
|
{};
|
|
1620
1620
|
|
|
1621
1621
|
export type CreateIntegrationStoreDirectPropertiesMaxLength = {
|
|
1622
|
-
|
|
1623
|
-
|
|
1622
|
+
atBRANDAt8897:
|
|
1623
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8897;
|
|
1624
1624
|
};
|
|
1625
1625
|
|
|
1626
|
-
export type
|
|
1626
|
+
export type PropertiesAtBRANDAt8897 = {};
|
|
1627
1627
|
|
|
1628
1628
|
export type CreateIntegrationStoreDirectPropertiesMinLength = {
|
|
1629
|
-
|
|
1629
|
+
atBRANDAt8897: PropertiesAtBRANDAt8897;
|
|
1630
1630
|
};
|
|
1631
1631
|
|
|
1632
|
-
export type
|
|
1632
|
+
export type CreateIntegrationStoreDirectPropertiesAtBRANDAt8897 = {};
|
|
1633
1633
|
|
|
1634
1634
|
export type CreateIntegrationStoreDirectPropertiesPattern = {
|
|
1635
|
-
|
|
1635
|
+
atBRANDAt8897: CreateIntegrationStoreDirectPropertiesAtBRANDAt8897;
|
|
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 AtBRANDAt8897 = {};
|
|
1877
1877
|
|
|
1878
1878
|
export type CreateIntegrationStoreDirectValue = {
|
|
1879
|
-
|
|
1879
|
+
atBRANDAt8897: AtBRANDAt8897;
|
|
1880
1880
|
};
|
|
1881
1881
|
|
|
1882
1882
|
export const Disabled3 = {
|
|
@@ -2984,47 +2984,47 @@ export const CreateIntegrationStoreDirectIntegrationsType$outboundSchema:
|
|
|
2984
2984
|
CreateIntegrationStoreDirectIntegrationsType$inboundSchema;
|
|
2985
2985
|
|
|
2986
2986
|
/** @internal */
|
|
2987
|
-
export const
|
|
2987
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8897$inboundSchema:
|
|
2988
2988
|
z.ZodType<
|
|
2989
|
-
|
|
2989
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8897,
|
|
2990
2990
|
z.ZodTypeDef,
|
|
2991
2991
|
unknown
|
|
2992
2992
|
> = z.object({});
|
|
2993
2993
|
/** @internal */
|
|
2994
|
-
export type
|
|
2994
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8897$Outbound =
|
|
2995
2995
|
{};
|
|
2996
2996
|
|
|
2997
2997
|
/** @internal */
|
|
2998
|
-
export const
|
|
2998
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8897$outboundSchema:
|
|
2999
2999
|
z.ZodType<
|
|
3000
|
-
|
|
3000
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8897$Outbound,
|
|
3001
3001
|
z.ZodTypeDef,
|
|
3002
|
-
|
|
3002
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8897
|
|
3003
3003
|
> = z.object({});
|
|
3004
3004
|
|
|
3005
|
-
export function
|
|
3006
|
-
|
|
3007
|
-
|
|
3005
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8897ToJSON(
|
|
3006
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8897:
|
|
3007
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8897,
|
|
3008
3008
|
): string {
|
|
3009
3009
|
return JSON.stringify(
|
|
3010
|
-
|
|
3010
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8897$outboundSchema
|
|
3011
3011
|
.parse(
|
|
3012
|
-
|
|
3012
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8897,
|
|
3013
3013
|
),
|
|
3014
3014
|
);
|
|
3015
3015
|
}
|
|
3016
|
-
export function
|
|
3016
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8897FromJSON(
|
|
3017
3017
|
jsonString: string,
|
|
3018
3018
|
): SafeParseResult<
|
|
3019
|
-
|
|
3019
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8897,
|
|
3020
3020
|
SDKValidationError
|
|
3021
3021
|
> {
|
|
3022
3022
|
return safeParse(
|
|
3023
3023
|
jsonString,
|
|
3024
3024
|
(x) =>
|
|
3025
|
-
|
|
3025
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8897$inboundSchema
|
|
3026
3026
|
.parse(JSON.parse(x)),
|
|
3027
|
-
`Failed to parse '
|
|
3027
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8897' from JSON`,
|
|
3028
3028
|
);
|
|
3029
3029
|
}
|
|
3030
3030
|
|
|
@@ -3035,18 +3035,18 @@ export const CreateIntegrationStoreDirectPropertiesValue$inboundSchema:
|
|
|
3035
3035
|
z.ZodTypeDef,
|
|
3036
3036
|
unknown
|
|
3037
3037
|
> = z.object({
|
|
3038
|
-
"__@BRAND@
|
|
3039
|
-
|
|
3038
|
+
"__@BRAND@8897": z.lazy(() =>
|
|
3039
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8897$inboundSchema
|
|
3040
3040
|
),
|
|
3041
3041
|
}).transform((v) => {
|
|
3042
3042
|
return remap$(v, {
|
|
3043
|
-
"__@BRAND@
|
|
3043
|
+
"__@BRAND@8897": "atBRANDAt8897",
|
|
3044
3044
|
});
|
|
3045
3045
|
});
|
|
3046
3046
|
/** @internal */
|
|
3047
3047
|
export type CreateIntegrationStoreDirectPropertiesValue$Outbound = {
|
|
3048
|
-
"__@BRAND@
|
|
3049
|
-
|
|
3048
|
+
"__@BRAND@8897":
|
|
3049
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8897$Outbound;
|
|
3050
3050
|
};
|
|
3051
3051
|
|
|
3052
3052
|
/** @internal */
|
|
@@ -3056,12 +3056,12 @@ export const CreateIntegrationStoreDirectPropertiesValue$outboundSchema:
|
|
|
3056
3056
|
z.ZodTypeDef,
|
|
3057
3057
|
CreateIntegrationStoreDirectPropertiesValue
|
|
3058
3058
|
> = z.object({
|
|
3059
|
-
|
|
3060
|
-
|
|
3059
|
+
atBRANDAt8897: z.lazy(() =>
|
|
3060
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8897$outboundSchema
|
|
3061
3061
|
),
|
|
3062
3062
|
}).transform((v) => {
|
|
3063
3063
|
return remap$(v, {
|
|
3064
|
-
|
|
3064
|
+
atBRANDAt8897: "__@BRAND@8897",
|
|
3065
3065
|
});
|
|
3066
3066
|
});
|
|
3067
3067
|
|
|
@@ -3415,47 +3415,47 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
|
|
|
3415
3415
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$inboundSchema;
|
|
3416
3416
|
|
|
3417
3417
|
/** @internal */
|
|
3418
|
-
export const
|
|
3418
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8897$inboundSchema:
|
|
3419
3419
|
z.ZodType<
|
|
3420
|
-
|
|
3420
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8897,
|
|
3421
3421
|
z.ZodTypeDef,
|
|
3422
3422
|
unknown
|
|
3423
3423
|
> = z.object({});
|
|
3424
3424
|
/** @internal */
|
|
3425
|
-
export type
|
|
3425
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8897$Outbound =
|
|
3426
3426
|
{};
|
|
3427
3427
|
|
|
3428
3428
|
/** @internal */
|
|
3429
|
-
export const
|
|
3429
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8897$outboundSchema:
|
|
3430
3430
|
z.ZodType<
|
|
3431
|
-
|
|
3431
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8897$Outbound,
|
|
3432
3432
|
z.ZodTypeDef,
|
|
3433
|
-
|
|
3433
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8897
|
|
3434
3434
|
> = z.object({});
|
|
3435
3435
|
|
|
3436
|
-
export function
|
|
3437
|
-
|
|
3438
|
-
|
|
3436
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8897ToJSON(
|
|
3437
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8897:
|
|
3438
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8897,
|
|
3439
3439
|
): string {
|
|
3440
3440
|
return JSON.stringify(
|
|
3441
|
-
|
|
3441
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8897$outboundSchema
|
|
3442
3442
|
.parse(
|
|
3443
|
-
|
|
3443
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8897,
|
|
3444
3444
|
),
|
|
3445
3445
|
);
|
|
3446
3446
|
}
|
|
3447
|
-
export function
|
|
3447
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8897FromJSON(
|
|
3448
3448
|
jsonString: string,
|
|
3449
3449
|
): SafeParseResult<
|
|
3450
|
-
|
|
3450
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8897,
|
|
3451
3451
|
SDKValidationError
|
|
3452
3452
|
> {
|
|
3453
3453
|
return safeParse(
|
|
3454
3454
|
jsonString,
|
|
3455
3455
|
(x) =>
|
|
3456
|
-
|
|
3456
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8897$inboundSchema
|
|
3457
3457
|
.parse(JSON.parse(x)),
|
|
3458
|
-
`Failed to parse '
|
|
3458
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8897' from JSON`,
|
|
3459
3459
|
);
|
|
3460
3460
|
}
|
|
3461
3461
|
|
|
@@ -3466,19 +3466,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLen
|
|
|
3466
3466
|
z.ZodTypeDef,
|
|
3467
3467
|
unknown
|
|
3468
3468
|
> = z.object({
|
|
3469
|
-
"__@BRAND@
|
|
3470
|
-
|
|
3469
|
+
"__@BRAND@8897": z.lazy(() =>
|
|
3470
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8897$inboundSchema
|
|
3471
3471
|
),
|
|
3472
3472
|
}).transform((v) => {
|
|
3473
3473
|
return remap$(v, {
|
|
3474
|
-
"__@BRAND@
|
|
3474
|
+
"__@BRAND@8897": "atBRANDAt8897",
|
|
3475
3475
|
});
|
|
3476
3476
|
});
|
|
3477
3477
|
/** @internal */
|
|
3478
3478
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$Outbound =
|
|
3479
3479
|
{
|
|
3480
|
-
"__@BRAND@
|
|
3481
|
-
|
|
3480
|
+
"__@BRAND@8897":
|
|
3481
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8897$Outbound;
|
|
3482
3482
|
};
|
|
3483
3483
|
|
|
3484
3484
|
/** @internal */
|
|
@@ -3488,12 +3488,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLen
|
|
|
3488
3488
|
z.ZodTypeDef,
|
|
3489
3489
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength
|
|
3490
3490
|
> = z.object({
|
|
3491
|
-
|
|
3492
|
-
|
|
3491
|
+
atBRANDAt8897: z.lazy(() =>
|
|
3492
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8897$outboundSchema
|
|
3493
3493
|
),
|
|
3494
3494
|
}).transform((v) => {
|
|
3495
3495
|
return remap$(v, {
|
|
3496
|
-
|
|
3496
|
+
atBRANDAt8897: "__@BRAND@8897",
|
|
3497
3497
|
});
|
|
3498
3498
|
});
|
|
3499
3499
|
|
|
@@ -3524,47 +3524,47 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200Max
|
|
|
3524
3524
|
}
|
|
3525
3525
|
|
|
3526
3526
|
/** @internal */
|
|
3527
|
-
export const
|
|
3527
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8897$inboundSchema:
|
|
3528
3528
|
z.ZodType<
|
|
3529
|
-
|
|
3529
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8897,
|
|
3530
3530
|
z.ZodTypeDef,
|
|
3531
3531
|
unknown
|
|
3532
3532
|
> = z.object({});
|
|
3533
3533
|
/** @internal */
|
|
3534
|
-
export type
|
|
3534
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8897$Outbound =
|
|
3535
3535
|
{};
|
|
3536
3536
|
|
|
3537
3537
|
/** @internal */
|
|
3538
|
-
export const
|
|
3538
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8897$outboundSchema:
|
|
3539
3539
|
z.ZodType<
|
|
3540
|
-
|
|
3540
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8897$Outbound,
|
|
3541
3541
|
z.ZodTypeDef,
|
|
3542
|
-
|
|
3542
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8897
|
|
3543
3543
|
> = z.object({});
|
|
3544
3544
|
|
|
3545
|
-
export function
|
|
3546
|
-
|
|
3547
|
-
|
|
3545
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8897ToJSON(
|
|
3546
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8897:
|
|
3547
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8897,
|
|
3548
3548
|
): string {
|
|
3549
3549
|
return JSON.stringify(
|
|
3550
|
-
|
|
3550
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8897$outboundSchema
|
|
3551
3551
|
.parse(
|
|
3552
|
-
|
|
3552
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8897,
|
|
3553
3553
|
),
|
|
3554
3554
|
);
|
|
3555
3555
|
}
|
|
3556
|
-
export function
|
|
3556
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8897FromJSON(
|
|
3557
3557
|
jsonString: string,
|
|
3558
3558
|
): SafeParseResult<
|
|
3559
|
-
|
|
3559
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8897,
|
|
3560
3560
|
SDKValidationError
|
|
3561
3561
|
> {
|
|
3562
3562
|
return safeParse(
|
|
3563
3563
|
jsonString,
|
|
3564
3564
|
(x) =>
|
|
3565
|
-
|
|
3565
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8897$inboundSchema
|
|
3566
3566
|
.parse(JSON.parse(x)),
|
|
3567
|
-
`Failed to parse '
|
|
3567
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8897' from JSON`,
|
|
3568
3568
|
);
|
|
3569
3569
|
}
|
|
3570
3570
|
|
|
@@ -3575,19 +3575,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLen
|
|
|
3575
3575
|
z.ZodTypeDef,
|
|
3576
3576
|
unknown
|
|
3577
3577
|
> = z.object({
|
|
3578
|
-
"__@BRAND@
|
|
3579
|
-
|
|
3578
|
+
"__@BRAND@8897": z.lazy(() =>
|
|
3579
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8897$inboundSchema
|
|
3580
3580
|
),
|
|
3581
3581
|
}).transform((v) => {
|
|
3582
3582
|
return remap$(v, {
|
|
3583
|
-
"__@BRAND@
|
|
3583
|
+
"__@BRAND@8897": "atBRANDAt8897",
|
|
3584
3584
|
});
|
|
3585
3585
|
});
|
|
3586
3586
|
/** @internal */
|
|
3587
3587
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$Outbound =
|
|
3588
3588
|
{
|
|
3589
|
-
"__@BRAND@
|
|
3590
|
-
|
|
3589
|
+
"__@BRAND@8897":
|
|
3590
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8897$Outbound;
|
|
3591
3591
|
};
|
|
3592
3592
|
|
|
3593
3593
|
/** @internal */
|
|
@@ -3597,12 +3597,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLen
|
|
|
3597
3597
|
z.ZodTypeDef,
|
|
3598
3598
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength
|
|
3599
3599
|
> = z.object({
|
|
3600
|
-
|
|
3601
|
-
|
|
3600
|
+
atBRANDAt8897: z.lazy(() =>
|
|
3601
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8897$outboundSchema
|
|
3602
3602
|
),
|
|
3603
3603
|
}).transform((v) => {
|
|
3604
3604
|
return remap$(v, {
|
|
3605
|
-
|
|
3605
|
+
atBRANDAt8897: "__@BRAND@8897",
|
|
3606
3606
|
});
|
|
3607
3607
|
});
|
|
3608
3608
|
|
|
@@ -3633,47 +3633,47 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200Min
|
|
|
3633
3633
|
}
|
|
3634
3634
|
|
|
3635
3635
|
/** @internal */
|
|
3636
|
-
export const
|
|
3636
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8897$inboundSchema:
|
|
3637
3637
|
z.ZodType<
|
|
3638
|
-
|
|
3638
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8897,
|
|
3639
3639
|
z.ZodTypeDef,
|
|
3640
3640
|
unknown
|
|
3641
3641
|
> = z.object({});
|
|
3642
3642
|
/** @internal */
|
|
3643
|
-
export type
|
|
3643
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8897$Outbound =
|
|
3644
3644
|
{};
|
|
3645
3645
|
|
|
3646
3646
|
/** @internal */
|
|
3647
|
-
export const
|
|
3647
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8897$outboundSchema:
|
|
3648
3648
|
z.ZodType<
|
|
3649
|
-
|
|
3649
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8897$Outbound,
|
|
3650
3650
|
z.ZodTypeDef,
|
|
3651
|
-
|
|
3651
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8897
|
|
3652
3652
|
> = z.object({});
|
|
3653
3653
|
|
|
3654
|
-
export function
|
|
3655
|
-
|
|
3656
|
-
|
|
3654
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8897ToJSON(
|
|
3655
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8897:
|
|
3656
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8897,
|
|
3657
3657
|
): string {
|
|
3658
3658
|
return JSON.stringify(
|
|
3659
|
-
|
|
3659
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8897$outboundSchema
|
|
3660
3660
|
.parse(
|
|
3661
|
-
|
|
3661
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8897,
|
|
3662
3662
|
),
|
|
3663
3663
|
);
|
|
3664
3664
|
}
|
|
3665
|
-
export function
|
|
3665
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8897FromJSON(
|
|
3666
3666
|
jsonString: string,
|
|
3667
3667
|
): SafeParseResult<
|
|
3668
|
-
|
|
3668
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8897,
|
|
3669
3669
|
SDKValidationError
|
|
3670
3670
|
> {
|
|
3671
3671
|
return safeParse(
|
|
3672
3672
|
jsonString,
|
|
3673
3673
|
(x) =>
|
|
3674
|
-
|
|
3674
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8897$inboundSchema
|
|
3675
3675
|
.parse(JSON.parse(x)),
|
|
3676
|
-
`Failed to parse '
|
|
3676
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8897' from JSON`,
|
|
3677
3677
|
);
|
|
3678
3678
|
}
|
|
3679
3679
|
|
|
@@ -3684,19 +3684,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Patter
|
|
|
3684
3684
|
z.ZodTypeDef,
|
|
3685
3685
|
unknown
|
|
3686
3686
|
> = z.object({
|
|
3687
|
-
"__@BRAND@
|
|
3688
|
-
|
|
3687
|
+
"__@BRAND@8897": z.lazy(() =>
|
|
3688
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8897$inboundSchema
|
|
3689
3689
|
),
|
|
3690
3690
|
}).transform((v) => {
|
|
3691
3691
|
return remap$(v, {
|
|
3692
|
-
"__@BRAND@
|
|
3692
|
+
"__@BRAND@8897": "atBRANDAt8897",
|
|
3693
3693
|
});
|
|
3694
3694
|
});
|
|
3695
3695
|
/** @internal */
|
|
3696
3696
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$Outbound =
|
|
3697
3697
|
{
|
|
3698
|
-
"__@BRAND@
|
|
3699
|
-
|
|
3698
|
+
"__@BRAND@8897":
|
|
3699
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8897$Outbound;
|
|
3700
3700
|
};
|
|
3701
3701
|
|
|
3702
3702
|
/** @internal */
|
|
@@ -3706,12 +3706,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Patter
|
|
|
3706
3706
|
z.ZodTypeDef,
|
|
3707
3707
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern
|
|
3708
3708
|
> = z.object({
|
|
3709
|
-
|
|
3710
|
-
|
|
3709
|
+
atBRANDAt8897: z.lazy(() =>
|
|
3710
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8897$outboundSchema
|
|
3711
3711
|
),
|
|
3712
3712
|
}).transform((v) => {
|
|
3713
3713
|
return remap$(v, {
|
|
3714
|
-
|
|
3714
|
+
atBRANDAt8897: "__@BRAND@8897",
|
|
3715
3715
|
});
|
|
3716
3716
|
});
|
|
3717
3717
|
|
|
@@ -4501,46 +4501,46 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
|
|
|
4501
4501
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl$inboundSchema;
|
|
4502
4502
|
|
|
4503
4503
|
/** @internal */
|
|
4504
|
-
export const
|
|
4504
|
+
export const CreateIntegrationStoreDirectUiOptionsAtBRANDAt8897$inboundSchema:
|
|
4505
4505
|
z.ZodType<
|
|
4506
|
-
|
|
4506
|
+
CreateIntegrationStoreDirectUiOptionsAtBRANDAt8897,
|
|
4507
4507
|
z.ZodTypeDef,
|
|
4508
4508
|
unknown
|
|
4509
4509
|
> = z.object({});
|
|
4510
4510
|
/** @internal */
|
|
4511
|
-
export type
|
|
4511
|
+
export type CreateIntegrationStoreDirectUiOptionsAtBRANDAt8897$Outbound = {};
|
|
4512
4512
|
|
|
4513
4513
|
/** @internal */
|
|
4514
|
-
export const
|
|
4514
|
+
export const CreateIntegrationStoreDirectUiOptionsAtBRANDAt8897$outboundSchema:
|
|
4515
4515
|
z.ZodType<
|
|
4516
|
-
|
|
4516
|
+
CreateIntegrationStoreDirectUiOptionsAtBRANDAt8897$Outbound,
|
|
4517
4517
|
z.ZodTypeDef,
|
|
4518
|
-
|
|
4518
|
+
CreateIntegrationStoreDirectUiOptionsAtBRANDAt8897
|
|
4519
4519
|
> = z.object({});
|
|
4520
4520
|
|
|
4521
|
-
export function
|
|
4522
|
-
|
|
4523
|
-
|
|
4521
|
+
export function createIntegrationStoreDirectUiOptionsAtBRANDAt8897ToJSON(
|
|
4522
|
+
createIntegrationStoreDirectUiOptionsAtBRANDAt8897:
|
|
4523
|
+
CreateIntegrationStoreDirectUiOptionsAtBRANDAt8897,
|
|
4524
4524
|
): string {
|
|
4525
4525
|
return JSON.stringify(
|
|
4526
|
-
|
|
4527
|
-
|
|
4526
|
+
CreateIntegrationStoreDirectUiOptionsAtBRANDAt8897$outboundSchema.parse(
|
|
4527
|
+
createIntegrationStoreDirectUiOptionsAtBRANDAt8897,
|
|
4528
4528
|
),
|
|
4529
4529
|
);
|
|
4530
4530
|
}
|
|
4531
|
-
export function
|
|
4531
|
+
export function createIntegrationStoreDirectUiOptionsAtBRANDAt8897FromJSON(
|
|
4532
4532
|
jsonString: string,
|
|
4533
4533
|
): SafeParseResult<
|
|
4534
|
-
|
|
4534
|
+
CreateIntegrationStoreDirectUiOptionsAtBRANDAt8897,
|
|
4535
4535
|
SDKValidationError
|
|
4536
4536
|
> {
|
|
4537
4537
|
return safeParse(
|
|
4538
4538
|
jsonString,
|
|
4539
4539
|
(x) =>
|
|
4540
|
-
|
|
4540
|
+
CreateIntegrationStoreDirectUiOptionsAtBRANDAt8897$inboundSchema.parse(
|
|
4541
4541
|
JSON.parse(x),
|
|
4542
4542
|
),
|
|
4543
|
-
`Failed to parse '
|
|
4543
|
+
`Failed to parse 'CreateIntegrationStoreDirectUiOptionsAtBRANDAt8897' from JSON`,
|
|
4544
4544
|
);
|
|
4545
4545
|
}
|
|
4546
4546
|
|
|
@@ -4548,17 +4548,17 @@ export function createIntegrationStoreDirectUiOptionsAtBRANDAt8895FromJSON(
|
|
|
4548
4548
|
export const CreateIntegrationStoreDirectUiOptionsValue$inboundSchema:
|
|
4549
4549
|
z.ZodType<CreateIntegrationStoreDirectUiOptionsValue, z.ZodTypeDef, unknown> =
|
|
4550
4550
|
z.object({
|
|
4551
|
-
"__@BRAND@
|
|
4552
|
-
|
|
4551
|
+
"__@BRAND@8897": z.lazy(() =>
|
|
4552
|
+
CreateIntegrationStoreDirectUiOptionsAtBRANDAt8897$inboundSchema
|
|
4553
4553
|
),
|
|
4554
4554
|
}).transform((v) => {
|
|
4555
4555
|
return remap$(v, {
|
|
4556
|
-
"__@BRAND@
|
|
4556
|
+
"__@BRAND@8897": "atBRANDAt8897",
|
|
4557
4557
|
});
|
|
4558
4558
|
});
|
|
4559
4559
|
/** @internal */
|
|
4560
4560
|
export type CreateIntegrationStoreDirectUiOptionsValue$Outbound = {
|
|
4561
|
-
"__@BRAND@
|
|
4561
|
+
"__@BRAND@8897": CreateIntegrationStoreDirectUiOptionsAtBRANDAt8897$Outbound;
|
|
4562
4562
|
};
|
|
4563
4563
|
|
|
4564
4564
|
/** @internal */
|
|
@@ -4568,12 +4568,12 @@ export const CreateIntegrationStoreDirectUiOptionsValue$outboundSchema:
|
|
|
4568
4568
|
z.ZodTypeDef,
|
|
4569
4569
|
CreateIntegrationStoreDirectUiOptionsValue
|
|
4570
4570
|
> = z.object({
|
|
4571
|
-
|
|
4572
|
-
|
|
4571
|
+
atBRANDAt8897: z.lazy(() =>
|
|
4572
|
+
CreateIntegrationStoreDirectUiOptionsAtBRANDAt8897$outboundSchema
|
|
4573
4573
|
),
|
|
4574
4574
|
}).transform((v) => {
|
|
4575
4575
|
return remap$(v, {
|
|
4576
|
-
|
|
4576
|
+
atBRANDAt8897: "__@BRAND@8897",
|
|
4577
4577
|
});
|
|
4578
4578
|
});
|
|
4579
4579
|
|
|
@@ -4924,35 +4924,35 @@ export function createIntegrationStoreDirectUiOptions3FromJSON(
|
|
|
4924
4924
|
}
|
|
4925
4925
|
|
|
4926
4926
|
/** @internal */
|
|
4927
|
-
export const
|
|
4928
|
-
|
|
4927
|
+
export const UiOptionsAtBRANDAt8897$inboundSchema: z.ZodType<
|
|
4928
|
+
UiOptionsAtBRANDAt8897,
|
|
4929
4929
|
z.ZodTypeDef,
|
|
4930
4930
|
unknown
|
|
4931
4931
|
> = z.object({});
|
|
4932
4932
|
/** @internal */
|
|
4933
|
-
export type
|
|
4933
|
+
export type UiOptionsAtBRANDAt8897$Outbound = {};
|
|
4934
4934
|
|
|
4935
4935
|
/** @internal */
|
|
4936
|
-
export const
|
|
4937
|
-
|
|
4936
|
+
export const UiOptionsAtBRANDAt8897$outboundSchema: z.ZodType<
|
|
4937
|
+
UiOptionsAtBRANDAt8897$Outbound,
|
|
4938
4938
|
z.ZodTypeDef,
|
|
4939
|
-
|
|
4939
|
+
UiOptionsAtBRANDAt8897
|
|
4940
4940
|
> = z.object({});
|
|
4941
4941
|
|
|
4942
|
-
export function
|
|
4943
|
-
|
|
4942
|
+
export function uiOptionsAtBRANDAt8897ToJSON(
|
|
4943
|
+
uiOptionsAtBRANDAt8897: UiOptionsAtBRANDAt8897,
|
|
4944
4944
|
): string {
|
|
4945
4945
|
return JSON.stringify(
|
|
4946
|
-
|
|
4946
|
+
UiOptionsAtBRANDAt8897$outboundSchema.parse(uiOptionsAtBRANDAt8897),
|
|
4947
4947
|
);
|
|
4948
4948
|
}
|
|
4949
|
-
export function
|
|
4949
|
+
export function uiOptionsAtBRANDAt8897FromJSON(
|
|
4950
4950
|
jsonString: string,
|
|
4951
|
-
): SafeParseResult<
|
|
4951
|
+
): SafeParseResult<UiOptionsAtBRANDAt8897, SDKValidationError> {
|
|
4952
4952
|
return safeParse(
|
|
4953
4953
|
jsonString,
|
|
4954
|
-
(x) =>
|
|
4955
|
-
`Failed to parse '
|
|
4954
|
+
(x) => UiOptionsAtBRANDAt8897$inboundSchema.parse(JSON.parse(x)),
|
|
4955
|
+
`Failed to parse 'UiOptionsAtBRANDAt8897' from JSON`,
|
|
4956
4956
|
);
|
|
4957
4957
|
}
|
|
4958
4958
|
|
|
@@ -4962,15 +4962,15 @@ export const CreateIntegrationStoreDirectUiOptions2$inboundSchema: z.ZodType<
|
|
|
4962
4962
|
z.ZodTypeDef,
|
|
4963
4963
|
unknown
|
|
4964
4964
|
> = z.object({
|
|
4965
|
-
"__@BRAND@
|
|
4965
|
+
"__@BRAND@8897": z.lazy(() => UiOptionsAtBRANDAt8897$inboundSchema),
|
|
4966
4966
|
}).transform((v) => {
|
|
4967
4967
|
return remap$(v, {
|
|
4968
|
-
"__@BRAND@
|
|
4968
|
+
"__@BRAND@8897": "atBRANDAt8897",
|
|
4969
4969
|
});
|
|
4970
4970
|
});
|
|
4971
4971
|
/** @internal */
|
|
4972
4972
|
export type CreateIntegrationStoreDirectUiOptions2$Outbound = {
|
|
4973
|
-
"__@BRAND@
|
|
4973
|
+
"__@BRAND@8897": UiOptionsAtBRANDAt8897$Outbound;
|
|
4974
4974
|
};
|
|
4975
4975
|
|
|
4976
4976
|
/** @internal */
|
|
@@ -4979,10 +4979,10 @@ export const CreateIntegrationStoreDirectUiOptions2$outboundSchema: z.ZodType<
|
|
|
4979
4979
|
z.ZodTypeDef,
|
|
4980
4980
|
CreateIntegrationStoreDirectUiOptions2
|
|
4981
4981
|
> = z.object({
|
|
4982
|
-
|
|
4982
|
+
atBRANDAt8897: z.lazy(() => UiOptionsAtBRANDAt8897$outboundSchema),
|
|
4983
4983
|
}).transform((v) => {
|
|
4984
4984
|
return remap$(v, {
|
|
4985
|
-
|
|
4985
|
+
atBRANDAt8897: "__@BRAND@8897",
|
|
4986
4986
|
});
|
|
4987
4987
|
});
|
|
4988
4988
|
|
|
@@ -5395,47 +5395,47 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponseUiOpti
|
|
|
5395
5395
|
}
|
|
5396
5396
|
|
|
5397
5397
|
/** @internal */
|
|
5398
|
-
export const
|
|
5398
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8897$inboundSchema:
|
|
5399
5399
|
z.ZodType<
|
|
5400
|
-
|
|
5400
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8897,
|
|
5401
5401
|
z.ZodTypeDef,
|
|
5402
5402
|
unknown
|
|
5403
5403
|
> = z.object({});
|
|
5404
5404
|
/** @internal */
|
|
5405
|
-
export type
|
|
5405
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8897$Outbound =
|
|
5406
5406
|
{};
|
|
5407
5407
|
|
|
5408
5408
|
/** @internal */
|
|
5409
|
-
export const
|
|
5409
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8897$outboundSchema:
|
|
5410
5410
|
z.ZodType<
|
|
5411
|
-
|
|
5411
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8897$Outbound,
|
|
5412
5412
|
z.ZodTypeDef,
|
|
5413
|
-
|
|
5413
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8897
|
|
5414
5414
|
> = z.object({});
|
|
5415
5415
|
|
|
5416
|
-
export function
|
|
5417
|
-
|
|
5418
|
-
|
|
5416
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8897ToJSON(
|
|
5417
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8897:
|
|
5418
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8897,
|
|
5419
5419
|
): string {
|
|
5420
5420
|
return JSON.stringify(
|
|
5421
|
-
|
|
5421
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8897$outboundSchema
|
|
5422
5422
|
.parse(
|
|
5423
|
-
|
|
5423
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8897,
|
|
5424
5424
|
),
|
|
5425
5425
|
);
|
|
5426
5426
|
}
|
|
5427
|
-
export function
|
|
5427
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8897FromJSON(
|
|
5428
5428
|
jsonString: string,
|
|
5429
5429
|
): SafeParseResult<
|
|
5430
|
-
|
|
5430
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8897,
|
|
5431
5431
|
SDKValidationError
|
|
5432
5432
|
> {
|
|
5433
5433
|
return safeParse(
|
|
5434
5434
|
jsonString,
|
|
5435
5435
|
(x) =>
|
|
5436
|
-
|
|
5436
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8897$inboundSchema
|
|
5437
5437
|
.parse(JSON.parse(x)),
|
|
5438
|
-
`Failed to parse '
|
|
5438
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8897' from JSON`,
|
|
5439
5439
|
);
|
|
5440
5440
|
}
|
|
5441
5441
|
|
|
@@ -5446,19 +5446,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength
|
|
|
5446
5446
|
z.ZodTypeDef,
|
|
5447
5447
|
unknown
|
|
5448
5448
|
> = z.object({
|
|
5449
|
-
"__@BRAND@
|
|
5450
|
-
|
|
5449
|
+
"__@BRAND@8897": z.lazy(() =>
|
|
5450
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8897$inboundSchema
|
|
5451
5451
|
),
|
|
5452
5452
|
}).transform((v) => {
|
|
5453
5453
|
return remap$(v, {
|
|
5454
|
-
"__@BRAND@
|
|
5454
|
+
"__@BRAND@8897": "atBRANDAt8897",
|
|
5455
5455
|
});
|
|
5456
5456
|
});
|
|
5457
5457
|
/** @internal */
|
|
5458
5458
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$Outbound =
|
|
5459
5459
|
{
|
|
5460
|
-
"__@BRAND@
|
|
5461
|
-
|
|
5460
|
+
"__@BRAND@8897":
|
|
5461
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8897$Outbound;
|
|
5462
5462
|
};
|
|
5463
5463
|
|
|
5464
5464
|
/** @internal */
|
|
@@ -5468,12 +5468,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength
|
|
|
5468
5468
|
z.ZodTypeDef,
|
|
5469
5469
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength
|
|
5470
5470
|
> = z.object({
|
|
5471
|
-
|
|
5472
|
-
|
|
5471
|
+
atBRANDAt8897: z.lazy(() =>
|
|
5472
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8897$outboundSchema
|
|
5473
5473
|
),
|
|
5474
5474
|
}).transform((v) => {
|
|
5475
5475
|
return remap$(v, {
|
|
5476
|
-
|
|
5476
|
+
atBRANDAt8897: "__@BRAND@8897",
|
|
5477
5477
|
});
|
|
5478
5478
|
});
|
|
5479
5479
|
|
|
@@ -5504,47 +5504,47 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponseMaxLen
|
|
|
5504
5504
|
}
|
|
5505
5505
|
|
|
5506
5506
|
/** @internal */
|
|
5507
|
-
export const
|
|
5507
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8897$inboundSchema:
|
|
5508
5508
|
z.ZodType<
|
|
5509
|
-
|
|
5509
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8897,
|
|
5510
5510
|
z.ZodTypeDef,
|
|
5511
5511
|
unknown
|
|
5512
5512
|
> = z.object({});
|
|
5513
5513
|
/** @internal */
|
|
5514
|
-
export type
|
|
5514
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8897$Outbound =
|
|
5515
5515
|
{};
|
|
5516
5516
|
|
|
5517
5517
|
/** @internal */
|
|
5518
|
-
export const
|
|
5518
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8897$outboundSchema:
|
|
5519
5519
|
z.ZodType<
|
|
5520
|
-
|
|
5520
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8897$Outbound,
|
|
5521
5521
|
z.ZodTypeDef,
|
|
5522
|
-
|
|
5522
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8897
|
|
5523
5523
|
> = z.object({});
|
|
5524
5524
|
|
|
5525
|
-
export function
|
|
5526
|
-
|
|
5527
|
-
|
|
5525
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8897ToJSON(
|
|
5526
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8897:
|
|
5527
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8897,
|
|
5528
5528
|
): string {
|
|
5529
5529
|
return JSON.stringify(
|
|
5530
|
-
|
|
5530
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8897$outboundSchema
|
|
5531
5531
|
.parse(
|
|
5532
|
-
|
|
5532
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8897,
|
|
5533
5533
|
),
|
|
5534
5534
|
);
|
|
5535
5535
|
}
|
|
5536
|
-
export function
|
|
5536
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8897FromJSON(
|
|
5537
5537
|
jsonString: string,
|
|
5538
5538
|
): SafeParseResult<
|
|
5539
|
-
|
|
5539
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8897,
|
|
5540
5540
|
SDKValidationError
|
|
5541
5541
|
> {
|
|
5542
5542
|
return safeParse(
|
|
5543
5543
|
jsonString,
|
|
5544
5544
|
(x) =>
|
|
5545
|
-
|
|
5545
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8897$inboundSchema
|
|
5546
5546
|
.parse(JSON.parse(x)),
|
|
5547
|
-
`Failed to parse '
|
|
5547
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8897' from JSON`,
|
|
5548
5548
|
);
|
|
5549
5549
|
}
|
|
5550
5550
|
|
|
@@ -5555,19 +5555,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength
|
|
|
5555
5555
|
z.ZodTypeDef,
|
|
5556
5556
|
unknown
|
|
5557
5557
|
> = z.object({
|
|
5558
|
-
"__@BRAND@
|
|
5559
|
-
|
|
5558
|
+
"__@BRAND@8897": z.lazy(() =>
|
|
5559
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8897$inboundSchema
|
|
5560
5560
|
),
|
|
5561
5561
|
}).transform((v) => {
|
|
5562
5562
|
return remap$(v, {
|
|
5563
|
-
"__@BRAND@
|
|
5563
|
+
"__@BRAND@8897": "atBRANDAt8897",
|
|
5564
5564
|
});
|
|
5565
5565
|
});
|
|
5566
5566
|
/** @internal */
|
|
5567
5567
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$Outbound =
|
|
5568
5568
|
{
|
|
5569
|
-
"__@BRAND@
|
|
5570
|
-
|
|
5569
|
+
"__@BRAND@8897":
|
|
5570
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8897$Outbound;
|
|
5571
5571
|
};
|
|
5572
5572
|
|
|
5573
5573
|
/** @internal */
|
|
@@ -5577,12 +5577,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength
|
|
|
5577
5577
|
z.ZodTypeDef,
|
|
5578
5578
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength
|
|
5579
5579
|
> = z.object({
|
|
5580
|
-
|
|
5581
|
-
|
|
5580
|
+
atBRANDAt8897: z.lazy(() =>
|
|
5581
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8897$outboundSchema
|
|
5582
5582
|
),
|
|
5583
5583
|
}).transform((v) => {
|
|
5584
5584
|
return remap$(v, {
|
|
5585
|
-
|
|
5585
|
+
atBRANDAt8897: "__@BRAND@8897",
|
|
5586
5586
|
});
|
|
5587
5587
|
});
|
|
5588
5588
|
|
|
@@ -5613,47 +5613,47 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponseMinLen
|
|
|
5613
5613
|
}
|
|
5614
5614
|
|
|
5615
5615
|
/** @internal */
|
|
5616
|
-
export const
|
|
5616
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8897$inboundSchema:
|
|
5617
5617
|
z.ZodType<
|
|
5618
|
-
|
|
5618
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8897,
|
|
5619
5619
|
z.ZodTypeDef,
|
|
5620
5620
|
unknown
|
|
5621
5621
|
> = z.object({});
|
|
5622
5622
|
/** @internal */
|
|
5623
|
-
export type
|
|
5623
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8897$Outbound =
|
|
5624
5624
|
{};
|
|
5625
5625
|
|
|
5626
5626
|
/** @internal */
|
|
5627
|
-
export const
|
|
5627
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8897$outboundSchema:
|
|
5628
5628
|
z.ZodType<
|
|
5629
|
-
|
|
5629
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8897$Outbound,
|
|
5630
5630
|
z.ZodTypeDef,
|
|
5631
|
-
|
|
5631
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8897
|
|
5632
5632
|
> = z.object({});
|
|
5633
5633
|
|
|
5634
|
-
export function
|
|
5635
|
-
|
|
5636
|
-
|
|
5634
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8897ToJSON(
|
|
5635
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8897:
|
|
5636
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8897,
|
|
5637
5637
|
): string {
|
|
5638
5638
|
return JSON.stringify(
|
|
5639
|
-
|
|
5639
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8897$outboundSchema
|
|
5640
5640
|
.parse(
|
|
5641
|
-
|
|
5641
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8897,
|
|
5642
5642
|
),
|
|
5643
5643
|
);
|
|
5644
5644
|
}
|
|
5645
|
-
export function
|
|
5645
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8897FromJSON(
|
|
5646
5646
|
jsonString: string,
|
|
5647
5647
|
): SafeParseResult<
|
|
5648
|
-
|
|
5648
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8897,
|
|
5649
5649
|
SDKValidationError
|
|
5650
5650
|
> {
|
|
5651
5651
|
return safeParse(
|
|
5652
5652
|
jsonString,
|
|
5653
5653
|
(x) =>
|
|
5654
|
-
|
|
5654
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8897$inboundSchema
|
|
5655
5655
|
.parse(JSON.parse(x)),
|
|
5656
|
-
`Failed to parse '
|
|
5656
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8897' from JSON`,
|
|
5657
5657
|
);
|
|
5658
5658
|
}
|
|
5659
5659
|
|
|
@@ -5664,19 +5664,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$i
|
|
|
5664
5664
|
z.ZodTypeDef,
|
|
5665
5665
|
unknown
|
|
5666
5666
|
> = z.object({
|
|
5667
|
-
"__@BRAND@
|
|
5668
|
-
|
|
5667
|
+
"__@BRAND@8897": z.lazy(() =>
|
|
5668
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8897$inboundSchema
|
|
5669
5669
|
),
|
|
5670
5670
|
}).transform((v) => {
|
|
5671
5671
|
return remap$(v, {
|
|
5672
|
-
"__@BRAND@
|
|
5672
|
+
"__@BRAND@8897": "atBRANDAt8897",
|
|
5673
5673
|
});
|
|
5674
5674
|
});
|
|
5675
5675
|
/** @internal */
|
|
5676
5676
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$Outbound =
|
|
5677
5677
|
{
|
|
5678
|
-
"__@BRAND@
|
|
5679
|
-
|
|
5678
|
+
"__@BRAND@8897":
|
|
5679
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8897$Outbound;
|
|
5680
5680
|
};
|
|
5681
5681
|
|
|
5682
5682
|
/** @internal */
|
|
@@ -5686,12 +5686,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$o
|
|
|
5686
5686
|
z.ZodTypeDef,
|
|
5687
5687
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern
|
|
5688
5688
|
> = z.object({
|
|
5689
|
-
|
|
5690
|
-
|
|
5689
|
+
atBRANDAt8897: z.lazy(() =>
|
|
5690
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8897$outboundSchema
|
|
5691
5691
|
),
|
|
5692
5692
|
}).transform((v) => {
|
|
5693
5693
|
return remap$(v, {
|
|
5694
|
-
|
|
5694
|
+
atBRANDAt8897: "__@BRAND@8897",
|
|
5695
5695
|
});
|
|
5696
5696
|
});
|
|
5697
5697
|
|
|
@@ -6500,47 +6500,47 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
|
|
|
6500
6500
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type$inboundSchema;
|
|
6501
6501
|
|
|
6502
6502
|
/** @internal */
|
|
6503
|
-
export const
|
|
6503
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8897$inboundSchema:
|
|
6504
6504
|
z.ZodType<
|
|
6505
|
-
|
|
6505
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8897,
|
|
6506
6506
|
z.ZodTypeDef,
|
|
6507
6507
|
unknown
|
|
6508
6508
|
> = z.object({});
|
|
6509
6509
|
/** @internal */
|
|
6510
|
-
export type
|
|
6510
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8897$Outbound =
|
|
6511
6511
|
{};
|
|
6512
6512
|
|
|
6513
6513
|
/** @internal */
|
|
6514
|
-
export const
|
|
6514
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8897$outboundSchema:
|
|
6515
6515
|
z.ZodType<
|
|
6516
|
-
|
|
6516
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8897$Outbound,
|
|
6517
6517
|
z.ZodTypeDef,
|
|
6518
|
-
|
|
6518
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8897
|
|
6519
6519
|
> = z.object({});
|
|
6520
6520
|
|
|
6521
|
-
export function
|
|
6522
|
-
|
|
6523
|
-
|
|
6521
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8897ToJSON(
|
|
6522
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8897:
|
|
6523
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8897,
|
|
6524
6524
|
): string {
|
|
6525
6525
|
return JSON.stringify(
|
|
6526
|
-
|
|
6526
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8897$outboundSchema
|
|
6527
6527
|
.parse(
|
|
6528
|
-
|
|
6528
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8897,
|
|
6529
6529
|
),
|
|
6530
6530
|
);
|
|
6531
6531
|
}
|
|
6532
|
-
export function
|
|
6532
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8897FromJSON(
|
|
6533
6533
|
jsonString: string,
|
|
6534
6534
|
): SafeParseResult<
|
|
6535
|
-
|
|
6535
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8897,
|
|
6536
6536
|
SDKValidationError
|
|
6537
6537
|
> {
|
|
6538
6538
|
return safeParse(
|
|
6539
6539
|
jsonString,
|
|
6540
6540
|
(x) =>
|
|
6541
|
-
|
|
6541
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8897$inboundSchema
|
|
6542
6542
|
.parse(JSON.parse(x)),
|
|
6543
|
-
`Failed to parse '
|
|
6543
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8897' from JSON`,
|
|
6544
6544
|
);
|
|
6545
6545
|
}
|
|
6546
6546
|
|
|
@@ -6551,19 +6551,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
|
|
|
6551
6551
|
z.ZodTypeDef,
|
|
6552
6552
|
unknown
|
|
6553
6553
|
> = z.object({
|
|
6554
|
-
"__@BRAND@
|
|
6555
|
-
|
|
6554
|
+
"__@BRAND@8897": z.lazy(() =>
|
|
6555
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8897$inboundSchema
|
|
6556
6556
|
),
|
|
6557
6557
|
}).transform((v) => {
|
|
6558
6558
|
return remap$(v, {
|
|
6559
|
-
"__@BRAND@
|
|
6559
|
+
"__@BRAND@8897": "atBRANDAt8897",
|
|
6560
6560
|
});
|
|
6561
6561
|
});
|
|
6562
6562
|
/** @internal */
|
|
6563
6563
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength$Outbound =
|
|
6564
6564
|
{
|
|
6565
|
-
"__@BRAND@
|
|
6566
|
-
|
|
6565
|
+
"__@BRAND@8897":
|
|
6566
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8897$Outbound;
|
|
6567
6567
|
};
|
|
6568
6568
|
|
|
6569
6569
|
/** @internal */
|
|
@@ -6573,12 +6573,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
|
|
|
6573
6573
|
z.ZodTypeDef,
|
|
6574
6574
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength
|
|
6575
6575
|
> = z.object({
|
|
6576
|
-
|
|
6577
|
-
|
|
6576
|
+
atBRANDAt8897: z.lazy(() =>
|
|
6577
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8897$outboundSchema
|
|
6578
6578
|
),
|
|
6579
6579
|
}).transform((v) => {
|
|
6580
6580
|
return remap$(v, {
|
|
6581
|
-
|
|
6581
|
+
atBRANDAt8897: "__@BRAND@8897",
|
|
6582
6582
|
});
|
|
6583
6583
|
});
|
|
6584
6584
|
|
|
@@ -6609,47 +6609,47 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200App
|
|
|
6609
6609
|
}
|
|
6610
6610
|
|
|
6611
6611
|
/** @internal */
|
|
6612
|
-
export const
|
|
6612
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8897$inboundSchema:
|
|
6613
6613
|
z.ZodType<
|
|
6614
|
-
|
|
6614
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8897,
|
|
6615
6615
|
z.ZodTypeDef,
|
|
6616
6616
|
unknown
|
|
6617
6617
|
> = z.object({});
|
|
6618
6618
|
/** @internal */
|
|
6619
|
-
export type
|
|
6619
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8897$Outbound =
|
|
6620
6620
|
{};
|
|
6621
6621
|
|
|
6622
6622
|
/** @internal */
|
|
6623
|
-
export const
|
|
6623
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8897$outboundSchema:
|
|
6624
6624
|
z.ZodType<
|
|
6625
|
-
|
|
6625
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8897$Outbound,
|
|
6626
6626
|
z.ZodTypeDef,
|
|
6627
|
-
|
|
6627
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8897
|
|
6628
6628
|
> = z.object({});
|
|
6629
6629
|
|
|
6630
|
-
export function
|
|
6631
|
-
|
|
6632
|
-
|
|
6630
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8897ToJSON(
|
|
6631
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8897:
|
|
6632
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8897,
|
|
6633
6633
|
): string {
|
|
6634
6634
|
return JSON.stringify(
|
|
6635
|
-
|
|
6635
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8897$outboundSchema
|
|
6636
6636
|
.parse(
|
|
6637
|
-
|
|
6637
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8897,
|
|
6638
6638
|
),
|
|
6639
6639
|
);
|
|
6640
6640
|
}
|
|
6641
|
-
export function
|
|
6641
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8897FromJSON(
|
|
6642
6642
|
jsonString: string,
|
|
6643
6643
|
): SafeParseResult<
|
|
6644
|
-
|
|
6644
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8897,
|
|
6645
6645
|
SDKValidationError
|
|
6646
6646
|
> {
|
|
6647
6647
|
return safeParse(
|
|
6648
6648
|
jsonString,
|
|
6649
6649
|
(x) =>
|
|
6650
|
-
|
|
6650
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8897$inboundSchema
|
|
6651
6651
|
.parse(JSON.parse(x)),
|
|
6652
|
-
`Failed to parse '
|
|
6652
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8897' from JSON`,
|
|
6653
6653
|
);
|
|
6654
6654
|
}
|
|
6655
6655
|
|
|
@@ -6660,19 +6660,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
|
|
|
6660
6660
|
z.ZodTypeDef,
|
|
6661
6661
|
unknown
|
|
6662
6662
|
> = z.object({
|
|
6663
|
-
"__@BRAND@
|
|
6664
|
-
|
|
6663
|
+
"__@BRAND@8897": z.lazy(() =>
|
|
6664
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8897$inboundSchema
|
|
6665
6665
|
),
|
|
6666
6666
|
}).transform((v) => {
|
|
6667
6667
|
return remap$(v, {
|
|
6668
|
-
"__@BRAND@
|
|
6668
|
+
"__@BRAND@8897": "atBRANDAt8897",
|
|
6669
6669
|
});
|
|
6670
6670
|
});
|
|
6671
6671
|
/** @internal */
|
|
6672
6672
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength$Outbound =
|
|
6673
6673
|
{
|
|
6674
|
-
"__@BRAND@
|
|
6675
|
-
|
|
6674
|
+
"__@BRAND@8897":
|
|
6675
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8897$Outbound;
|
|
6676
6676
|
};
|
|
6677
6677
|
|
|
6678
6678
|
/** @internal */
|
|
@@ -6682,12 +6682,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
|
|
|
6682
6682
|
z.ZodTypeDef,
|
|
6683
6683
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength
|
|
6684
6684
|
> = z.object({
|
|
6685
|
-
|
|
6686
|
-
|
|
6685
|
+
atBRANDAt8897: z.lazy(() =>
|
|
6686
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8897$outboundSchema
|
|
6687
6687
|
),
|
|
6688
6688
|
}).transform((v) => {
|
|
6689
6689
|
return remap$(v, {
|
|
6690
|
-
|
|
6690
|
+
atBRANDAt8897: "__@BRAND@8897",
|
|
6691
6691
|
});
|
|
6692
6692
|
});
|
|
6693
6693
|
|
|
@@ -6718,47 +6718,47 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200App
|
|
|
6718
6718
|
}
|
|
6719
6719
|
|
|
6720
6720
|
/** @internal */
|
|
6721
|
-
export const
|
|
6721
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8897$inboundSchema:
|
|
6722
6722
|
z.ZodType<
|
|
6723
|
-
|
|
6723
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8897,
|
|
6724
6724
|
z.ZodTypeDef,
|
|
6725
6725
|
unknown
|
|
6726
6726
|
> = z.object({});
|
|
6727
6727
|
/** @internal */
|
|
6728
|
-
export type
|
|
6728
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8897$Outbound =
|
|
6729
6729
|
{};
|
|
6730
6730
|
|
|
6731
6731
|
/** @internal */
|
|
6732
|
-
export const
|
|
6732
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8897$outboundSchema:
|
|
6733
6733
|
z.ZodType<
|
|
6734
|
-
|
|
6734
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8897$Outbound,
|
|
6735
6735
|
z.ZodTypeDef,
|
|
6736
|
-
|
|
6736
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8897
|
|
6737
6737
|
> = z.object({});
|
|
6738
6738
|
|
|
6739
|
-
export function
|
|
6740
|
-
|
|
6741
|
-
|
|
6739
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8897ToJSON(
|
|
6740
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8897:
|
|
6741
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8897,
|
|
6742
6742
|
): string {
|
|
6743
6743
|
return JSON.stringify(
|
|
6744
|
-
|
|
6744
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8897$outboundSchema
|
|
6745
6745
|
.parse(
|
|
6746
|
-
|
|
6746
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8897,
|
|
6747
6747
|
),
|
|
6748
6748
|
);
|
|
6749
6749
|
}
|
|
6750
|
-
export function
|
|
6750
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8897FromJSON(
|
|
6751
6751
|
jsonString: string,
|
|
6752
6752
|
): SafeParseResult<
|
|
6753
|
-
|
|
6753
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8897,
|
|
6754
6754
|
SDKValidationError
|
|
6755
6755
|
> {
|
|
6756
6756
|
return safeParse(
|
|
6757
6757
|
jsonString,
|
|
6758
6758
|
(x) =>
|
|
6759
|
-
|
|
6759
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8897$inboundSchema
|
|
6760
6760
|
.parse(JSON.parse(x)),
|
|
6761
|
-
`Failed to parse '
|
|
6761
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8897' from JSON`,
|
|
6762
6762
|
);
|
|
6763
6763
|
}
|
|
6764
6764
|
|
|
@@ -6769,19 +6769,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
|
|
|
6769
6769
|
z.ZodTypeDef,
|
|
6770
6770
|
unknown
|
|
6771
6771
|
> = z.object({
|
|
6772
|
-
"__@BRAND@
|
|
6773
|
-
|
|
6772
|
+
"__@BRAND@8897": z.lazy(() =>
|
|
6773
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8897$inboundSchema
|
|
6774
6774
|
),
|
|
6775
6775
|
}).transform((v) => {
|
|
6776
6776
|
return remap$(v, {
|
|
6777
|
-
"__@BRAND@
|
|
6777
|
+
"__@BRAND@8897": "atBRANDAt8897",
|
|
6778
6778
|
});
|
|
6779
6779
|
});
|
|
6780
6780
|
/** @internal */
|
|
6781
6781
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern$Outbound =
|
|
6782
6782
|
{
|
|
6783
|
-
"__@BRAND@
|
|
6784
|
-
|
|
6783
|
+
"__@BRAND@8897":
|
|
6784
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8897$Outbound;
|
|
6785
6785
|
};
|
|
6786
6786
|
|
|
6787
6787
|
/** @internal */
|
|
@@ -6791,12 +6791,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
|
|
|
6791
6791
|
z.ZodTypeDef,
|
|
6792
6792
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern
|
|
6793
6793
|
> = z.object({
|
|
6794
|
-
|
|
6795
|
-
|
|
6794
|
+
atBRANDAt8897: z.lazy(() =>
|
|
6795
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8897$outboundSchema
|
|
6796
6796
|
),
|
|
6797
6797
|
}).transform((v) => {
|
|
6798
6798
|
return remap$(v, {
|
|
6799
|
-
|
|
6799
|
+
atBRANDAt8897: "__@BRAND@8897",
|
|
6800
6800
|
});
|
|
6801
6801
|
});
|
|
6802
6802
|
|
|
@@ -8333,45 +8333,45 @@ export function createIntegrationStoreDirectPropertiesUiOptionsFromJSON(
|
|
|
8333
8333
|
}
|
|
8334
8334
|
|
|
8335
8335
|
/** @internal */
|
|
8336
|
-
export const
|
|
8336
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8897$inboundSchema:
|
|
8337
8337
|
z.ZodType<
|
|
8338
|
-
|
|
8338
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8897,
|
|
8339
8339
|
z.ZodTypeDef,
|
|
8340
8340
|
unknown
|
|
8341
8341
|
> = z.object({});
|
|
8342
8342
|
/** @internal */
|
|
8343
|
-
export type
|
|
8343
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8897$Outbound =
|
|
8344
8344
|
{};
|
|
8345
8345
|
|
|
8346
8346
|
/** @internal */
|
|
8347
|
-
export const
|
|
8347
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8897$outboundSchema:
|
|
8348
8348
|
z.ZodType<
|
|
8349
|
-
|
|
8349
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8897$Outbound,
|
|
8350
8350
|
z.ZodTypeDef,
|
|
8351
|
-
|
|
8351
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8897
|
|
8352
8352
|
> = z.object({});
|
|
8353
8353
|
|
|
8354
|
-
export function
|
|
8355
|
-
|
|
8356
|
-
|
|
8354
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8897ToJSON(
|
|
8355
|
+
createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8897:
|
|
8356
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8897,
|
|
8357
8357
|
): string {
|
|
8358
8358
|
return JSON.stringify(
|
|
8359
|
-
|
|
8360
|
-
.parse(
|
|
8359
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8897$outboundSchema
|
|
8360
|
+
.parse(createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8897),
|
|
8361
8361
|
);
|
|
8362
8362
|
}
|
|
8363
|
-
export function
|
|
8363
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8897FromJSON(
|
|
8364
8364
|
jsonString: string,
|
|
8365
8365
|
): SafeParseResult<
|
|
8366
|
-
|
|
8366
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8897,
|
|
8367
8367
|
SDKValidationError
|
|
8368
8368
|
> {
|
|
8369
8369
|
return safeParse(
|
|
8370
8370
|
jsonString,
|
|
8371
8371
|
(x) =>
|
|
8372
|
-
|
|
8372
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8897$inboundSchema
|
|
8373
8373
|
.parse(JSON.parse(x)),
|
|
8374
|
-
`Failed to parse '
|
|
8374
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8897' from JSON`,
|
|
8375
8375
|
);
|
|
8376
8376
|
}
|
|
8377
8377
|
|
|
@@ -8382,19 +8382,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$inbound
|
|
|
8382
8382
|
z.ZodTypeDef,
|
|
8383
8383
|
unknown
|
|
8384
8384
|
> = z.object({
|
|
8385
|
-
"__@BRAND@
|
|
8386
|
-
|
|
8385
|
+
"__@BRAND@8897": z.lazy(() =>
|
|
8386
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8897$inboundSchema
|
|
8387
8387
|
),
|
|
8388
8388
|
}).transform((v) => {
|
|
8389
8389
|
return remap$(v, {
|
|
8390
|
-
"__@BRAND@
|
|
8390
|
+
"__@BRAND@8897": "atBRANDAt8897",
|
|
8391
8391
|
});
|
|
8392
8392
|
});
|
|
8393
8393
|
/** @internal */
|
|
8394
8394
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$Outbound =
|
|
8395
8395
|
{
|
|
8396
|
-
"__@BRAND@
|
|
8397
|
-
|
|
8396
|
+
"__@BRAND@8897":
|
|
8397
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8897$Outbound;
|
|
8398
8398
|
};
|
|
8399
8399
|
|
|
8400
8400
|
/** @internal */
|
|
@@ -8404,12 +8404,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$outboun
|
|
|
8404
8404
|
z.ZodTypeDef,
|
|
8405
8405
|
CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength
|
|
8406
8406
|
> = z.object({
|
|
8407
|
-
|
|
8408
|
-
|
|
8407
|
+
atBRANDAt8897: z.lazy(() =>
|
|
8408
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8897$outboundSchema
|
|
8409
8409
|
),
|
|
8410
8410
|
}).transform((v) => {
|
|
8411
8411
|
return remap$(v, {
|
|
8412
|
-
|
|
8412
|
+
atBRANDAt8897: "__@BRAND@8897",
|
|
8413
8413
|
});
|
|
8414
8414
|
});
|
|
8415
8415
|
|
|
@@ -8438,47 +8438,47 @@ export function createIntegrationStoreDirectPropertiesIntegrationsMaxLengthFromJ
|
|
|
8438
8438
|
}
|
|
8439
8439
|
|
|
8440
8440
|
/** @internal */
|
|
8441
|
-
export const
|
|
8441
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8897$inboundSchema:
|
|
8442
8442
|
z.ZodType<
|
|
8443
|
-
|
|
8443
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8897,
|
|
8444
8444
|
z.ZodTypeDef,
|
|
8445
8445
|
unknown
|
|
8446
8446
|
> = z.object({});
|
|
8447
8447
|
/** @internal */
|
|
8448
|
-
export type
|
|
8448
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8897$Outbound =
|
|
8449
8449
|
{};
|
|
8450
8450
|
|
|
8451
8451
|
/** @internal */
|
|
8452
|
-
export const
|
|
8452
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8897$outboundSchema:
|
|
8453
8453
|
z.ZodType<
|
|
8454
|
-
|
|
8454
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8897$Outbound,
|
|
8455
8455
|
z.ZodTypeDef,
|
|
8456
|
-
|
|
8456
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8897
|
|
8457
8457
|
> = z.object({});
|
|
8458
8458
|
|
|
8459
|
-
export function
|
|
8460
|
-
|
|
8461
|
-
|
|
8459
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8897ToJSON(
|
|
8460
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8897:
|
|
8461
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8897,
|
|
8462
8462
|
): string {
|
|
8463
8463
|
return JSON.stringify(
|
|
8464
|
-
|
|
8464
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8897$outboundSchema
|
|
8465
8465
|
.parse(
|
|
8466
|
-
|
|
8466
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8897,
|
|
8467
8467
|
),
|
|
8468
8468
|
);
|
|
8469
8469
|
}
|
|
8470
|
-
export function
|
|
8470
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8897FromJSON(
|
|
8471
8471
|
jsonString: string,
|
|
8472
8472
|
): SafeParseResult<
|
|
8473
|
-
|
|
8473
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8897,
|
|
8474
8474
|
SDKValidationError
|
|
8475
8475
|
> {
|
|
8476
8476
|
return safeParse(
|
|
8477
8477
|
jsonString,
|
|
8478
8478
|
(x) =>
|
|
8479
|
-
|
|
8479
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8897$inboundSchema
|
|
8480
8480
|
.parse(JSON.parse(x)),
|
|
8481
|
-
`Failed to parse '
|
|
8481
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8897' from JSON`,
|
|
8482
8482
|
);
|
|
8483
8483
|
}
|
|
8484
8484
|
|
|
@@ -8489,19 +8489,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$inbound
|
|
|
8489
8489
|
z.ZodTypeDef,
|
|
8490
8490
|
unknown
|
|
8491
8491
|
> = z.object({
|
|
8492
|
-
"__@BRAND@
|
|
8493
|
-
|
|
8492
|
+
"__@BRAND@8897": z.lazy(() =>
|
|
8493
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8897$inboundSchema
|
|
8494
8494
|
),
|
|
8495
8495
|
}).transform((v) => {
|
|
8496
8496
|
return remap$(v, {
|
|
8497
|
-
"__@BRAND@
|
|
8497
|
+
"__@BRAND@8897": "atBRANDAt8897",
|
|
8498
8498
|
});
|
|
8499
8499
|
});
|
|
8500
8500
|
/** @internal */
|
|
8501
8501
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$Outbound =
|
|
8502
8502
|
{
|
|
8503
|
-
"__@BRAND@
|
|
8504
|
-
|
|
8503
|
+
"__@BRAND@8897":
|
|
8504
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8897$Outbound;
|
|
8505
8505
|
};
|
|
8506
8506
|
|
|
8507
8507
|
/** @internal */
|
|
@@ -8511,12 +8511,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$outboun
|
|
|
8511
8511
|
z.ZodTypeDef,
|
|
8512
8512
|
CreateIntegrationStoreDirectPropertiesIntegrationsMinLength
|
|
8513
8513
|
> = z.object({
|
|
8514
|
-
|
|
8515
|
-
|
|
8514
|
+
atBRANDAt8897: z.lazy(() =>
|
|
8515
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8897$outboundSchema
|
|
8516
8516
|
),
|
|
8517
8517
|
}).transform((v) => {
|
|
8518
8518
|
return remap$(v, {
|
|
8519
|
-
|
|
8519
|
+
atBRANDAt8897: "__@BRAND@8897",
|
|
8520
8520
|
});
|
|
8521
8521
|
});
|
|
8522
8522
|
|
|
@@ -8545,47 +8545,47 @@ export function createIntegrationStoreDirectPropertiesIntegrationsMinLengthFromJ
|
|
|
8545
8545
|
}
|
|
8546
8546
|
|
|
8547
8547
|
/** @internal */
|
|
8548
|
-
export const
|
|
8548
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8897$inboundSchema:
|
|
8549
8549
|
z.ZodType<
|
|
8550
|
-
|
|
8550
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8897,
|
|
8551
8551
|
z.ZodTypeDef,
|
|
8552
8552
|
unknown
|
|
8553
8553
|
> = z.object({});
|
|
8554
8554
|
/** @internal */
|
|
8555
|
-
export type
|
|
8555
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8897$Outbound =
|
|
8556
8556
|
{};
|
|
8557
8557
|
|
|
8558
8558
|
/** @internal */
|
|
8559
|
-
export const
|
|
8559
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8897$outboundSchema:
|
|
8560
8560
|
z.ZodType<
|
|
8561
|
-
|
|
8561
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8897$Outbound,
|
|
8562
8562
|
z.ZodTypeDef,
|
|
8563
|
-
|
|
8563
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8897
|
|
8564
8564
|
> = z.object({});
|
|
8565
8565
|
|
|
8566
|
-
export function
|
|
8567
|
-
|
|
8568
|
-
|
|
8566
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8897ToJSON(
|
|
8567
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8897:
|
|
8568
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8897,
|
|
8569
8569
|
): string {
|
|
8570
8570
|
return JSON.stringify(
|
|
8571
|
-
|
|
8571
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8897$outboundSchema
|
|
8572
8572
|
.parse(
|
|
8573
|
-
|
|
8573
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8897,
|
|
8574
8574
|
),
|
|
8575
8575
|
);
|
|
8576
8576
|
}
|
|
8577
|
-
export function
|
|
8577
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8897FromJSON(
|
|
8578
8578
|
jsonString: string,
|
|
8579
8579
|
): SafeParseResult<
|
|
8580
|
-
|
|
8580
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8897,
|
|
8581
8581
|
SDKValidationError
|
|
8582
8582
|
> {
|
|
8583
8583
|
return safeParse(
|
|
8584
8584
|
jsonString,
|
|
8585
8585
|
(x) =>
|
|
8586
|
-
|
|
8586
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8897$inboundSchema
|
|
8587
8587
|
.parse(JSON.parse(x)),
|
|
8588
|
-
`Failed to parse '
|
|
8588
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8897' from JSON`,
|
|
8589
8589
|
);
|
|
8590
8590
|
}
|
|
8591
8591
|
|
|
@@ -8596,19 +8596,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsPattern$inboundSc
|
|
|
8596
8596
|
z.ZodTypeDef,
|
|
8597
8597
|
unknown
|
|
8598
8598
|
> = z.object({
|
|
8599
|
-
"__@BRAND@
|
|
8600
|
-
|
|
8599
|
+
"__@BRAND@8897": z.lazy(() =>
|
|
8600
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8897$inboundSchema
|
|
8601
8601
|
),
|
|
8602
8602
|
}).transform((v) => {
|
|
8603
8603
|
return remap$(v, {
|
|
8604
|
-
"__@BRAND@
|
|
8604
|
+
"__@BRAND@8897": "atBRANDAt8897",
|
|
8605
8605
|
});
|
|
8606
8606
|
});
|
|
8607
8607
|
/** @internal */
|
|
8608
8608
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsPattern$Outbound =
|
|
8609
8609
|
{
|
|
8610
|
-
"__@BRAND@
|
|
8611
|
-
|
|
8610
|
+
"__@BRAND@8897":
|
|
8611
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8897$Outbound;
|
|
8612
8612
|
};
|
|
8613
8613
|
|
|
8614
8614
|
/** @internal */
|
|
@@ -8618,12 +8618,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsPattern$outboundS
|
|
|
8618
8618
|
z.ZodTypeDef,
|
|
8619
8619
|
CreateIntegrationStoreDirectPropertiesIntegrationsPattern
|
|
8620
8620
|
> = z.object({
|
|
8621
|
-
|
|
8622
|
-
|
|
8621
|
+
atBRANDAt8897: z.lazy(() =>
|
|
8622
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8897$outboundSchema
|
|
8623
8623
|
),
|
|
8624
8624
|
}).transform((v) => {
|
|
8625
8625
|
return remap$(v, {
|
|
8626
|
-
|
|
8626
|
+
atBRANDAt8897: "__@BRAND@8897",
|
|
8627
8627
|
});
|
|
8628
8628
|
});
|
|
8629
8629
|
|
|
@@ -11642,47 +11642,47 @@ export const CreateIntegrationStoreDirectPropertiesUiControl$outboundSchema:
|
|
|
11642
11642
|
CreateIntegrationStoreDirectPropertiesUiControl$inboundSchema;
|
|
11643
11643
|
|
|
11644
11644
|
/** @internal */
|
|
11645
|
-
export const
|
|
11645
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8897$inboundSchema:
|
|
11646
11646
|
z.ZodType<
|
|
11647
|
-
|
|
11647
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8897,
|
|
11648
11648
|
z.ZodTypeDef,
|
|
11649
11649
|
unknown
|
|
11650
11650
|
> = z.object({});
|
|
11651
11651
|
/** @internal */
|
|
11652
|
-
export type
|
|
11652
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8897$Outbound =
|
|
11653
11653
|
{};
|
|
11654
11654
|
|
|
11655
11655
|
/** @internal */
|
|
11656
|
-
export const
|
|
11656
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8897$outboundSchema:
|
|
11657
11657
|
z.ZodType<
|
|
11658
|
-
|
|
11658
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8897$Outbound,
|
|
11659
11659
|
z.ZodTypeDef,
|
|
11660
|
-
|
|
11660
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8897
|
|
11661
11661
|
> = z.object({});
|
|
11662
11662
|
|
|
11663
|
-
export function
|
|
11664
|
-
|
|
11665
|
-
|
|
11663
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8897ToJSON(
|
|
11664
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8897:
|
|
11665
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8897,
|
|
11666
11666
|
): string {
|
|
11667
11667
|
return JSON.stringify(
|
|
11668
|
-
|
|
11668
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8897$outboundSchema
|
|
11669
11669
|
.parse(
|
|
11670
|
-
|
|
11670
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8897,
|
|
11671
11671
|
),
|
|
11672
11672
|
);
|
|
11673
11673
|
}
|
|
11674
|
-
export function
|
|
11674
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8897FromJSON(
|
|
11675
11675
|
jsonString: string,
|
|
11676
11676
|
): SafeParseResult<
|
|
11677
|
-
|
|
11677
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8897,
|
|
11678
11678
|
SDKValidationError
|
|
11679
11679
|
> {
|
|
11680
11680
|
return safeParse(
|
|
11681
11681
|
jsonString,
|
|
11682
11682
|
(x) =>
|
|
11683
|
-
|
|
11683
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8897$inboundSchema
|
|
11684
11684
|
.parse(JSON.parse(x)),
|
|
11685
|
-
`Failed to parse '
|
|
11685
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8897' from JSON`,
|
|
11686
11686
|
);
|
|
11687
11687
|
}
|
|
11688
11688
|
|
|
@@ -11693,18 +11693,18 @@ export const CreateIntegrationStoreDirectPropertiesMaxLength$inboundSchema:
|
|
|
11693
11693
|
z.ZodTypeDef,
|
|
11694
11694
|
unknown
|
|
11695
11695
|
> = z.object({
|
|
11696
|
-
"__@BRAND@
|
|
11697
|
-
|
|
11696
|
+
"__@BRAND@8897": z.lazy(() =>
|
|
11697
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8897$inboundSchema
|
|
11698
11698
|
),
|
|
11699
11699
|
}).transform((v) => {
|
|
11700
11700
|
return remap$(v, {
|
|
11701
|
-
"__@BRAND@
|
|
11701
|
+
"__@BRAND@8897": "atBRANDAt8897",
|
|
11702
11702
|
});
|
|
11703
11703
|
});
|
|
11704
11704
|
/** @internal */
|
|
11705
11705
|
export type CreateIntegrationStoreDirectPropertiesMaxLength$Outbound = {
|
|
11706
|
-
"__@BRAND@
|
|
11707
|
-
|
|
11706
|
+
"__@BRAND@8897":
|
|
11707
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8897$Outbound;
|
|
11708
11708
|
};
|
|
11709
11709
|
|
|
11710
11710
|
/** @internal */
|
|
@@ -11714,12 +11714,12 @@ export const CreateIntegrationStoreDirectPropertiesMaxLength$outboundSchema:
|
|
|
11714
11714
|
z.ZodTypeDef,
|
|
11715
11715
|
CreateIntegrationStoreDirectPropertiesMaxLength
|
|
11716
11716
|
> = z.object({
|
|
11717
|
-
|
|
11718
|
-
|
|
11717
|
+
atBRANDAt8897: z.lazy(() =>
|
|
11718
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8897$outboundSchema
|
|
11719
11719
|
),
|
|
11720
11720
|
}).transform((v) => {
|
|
11721
11721
|
return remap$(v, {
|
|
11722
|
-
|
|
11722
|
+
atBRANDAt8897: "__@BRAND@8897",
|
|
11723
11723
|
});
|
|
11724
11724
|
});
|
|
11725
11725
|
|
|
@@ -11750,35 +11750,35 @@ export function createIntegrationStoreDirectPropertiesMaxLengthFromJSON(
|
|
|
11750
11750
|
}
|
|
11751
11751
|
|
|
11752
11752
|
/** @internal */
|
|
11753
|
-
export const
|
|
11754
|
-
|
|
11753
|
+
export const PropertiesAtBRANDAt8897$inboundSchema: z.ZodType<
|
|
11754
|
+
PropertiesAtBRANDAt8897,
|
|
11755
11755
|
z.ZodTypeDef,
|
|
11756
11756
|
unknown
|
|
11757
11757
|
> = z.object({});
|
|
11758
11758
|
/** @internal */
|
|
11759
|
-
export type
|
|
11759
|
+
export type PropertiesAtBRANDAt8897$Outbound = {};
|
|
11760
11760
|
|
|
11761
11761
|
/** @internal */
|
|
11762
|
-
export const
|
|
11763
|
-
|
|
11762
|
+
export const PropertiesAtBRANDAt8897$outboundSchema: z.ZodType<
|
|
11763
|
+
PropertiesAtBRANDAt8897$Outbound,
|
|
11764
11764
|
z.ZodTypeDef,
|
|
11765
|
-
|
|
11765
|
+
PropertiesAtBRANDAt8897
|
|
11766
11766
|
> = z.object({});
|
|
11767
11767
|
|
|
11768
|
-
export function
|
|
11769
|
-
|
|
11768
|
+
export function propertiesAtBRANDAt8897ToJSON(
|
|
11769
|
+
propertiesAtBRANDAt8897: PropertiesAtBRANDAt8897,
|
|
11770
11770
|
): string {
|
|
11771
11771
|
return JSON.stringify(
|
|
11772
|
-
|
|
11772
|
+
PropertiesAtBRANDAt8897$outboundSchema.parse(propertiesAtBRANDAt8897),
|
|
11773
11773
|
);
|
|
11774
11774
|
}
|
|
11775
|
-
export function
|
|
11775
|
+
export function propertiesAtBRANDAt8897FromJSON(
|
|
11776
11776
|
jsonString: string,
|
|
11777
|
-
): SafeParseResult<
|
|
11777
|
+
): SafeParseResult<PropertiesAtBRANDAt8897, SDKValidationError> {
|
|
11778
11778
|
return safeParse(
|
|
11779
11779
|
jsonString,
|
|
11780
|
-
(x) =>
|
|
11781
|
-
`Failed to parse '
|
|
11780
|
+
(x) => PropertiesAtBRANDAt8897$inboundSchema.parse(JSON.parse(x)),
|
|
11781
|
+
`Failed to parse 'PropertiesAtBRANDAt8897' from JSON`,
|
|
11782
11782
|
);
|
|
11783
11783
|
}
|
|
11784
11784
|
|
|
@@ -11789,15 +11789,15 @@ export const CreateIntegrationStoreDirectPropertiesMinLength$inboundSchema:
|
|
|
11789
11789
|
z.ZodTypeDef,
|
|
11790
11790
|
unknown
|
|
11791
11791
|
> = z.object({
|
|
11792
|
-
"__@BRAND@
|
|
11792
|
+
"__@BRAND@8897": z.lazy(() => PropertiesAtBRANDAt8897$inboundSchema),
|
|
11793
11793
|
}).transform((v) => {
|
|
11794
11794
|
return remap$(v, {
|
|
11795
|
-
"__@BRAND@
|
|
11795
|
+
"__@BRAND@8897": "atBRANDAt8897",
|
|
11796
11796
|
});
|
|
11797
11797
|
});
|
|
11798
11798
|
/** @internal */
|
|
11799
11799
|
export type CreateIntegrationStoreDirectPropertiesMinLength$Outbound = {
|
|
11800
|
-
"__@BRAND@
|
|
11800
|
+
"__@BRAND@8897": PropertiesAtBRANDAt8897$Outbound;
|
|
11801
11801
|
};
|
|
11802
11802
|
|
|
11803
11803
|
/** @internal */
|
|
@@ -11807,10 +11807,10 @@ export const CreateIntegrationStoreDirectPropertiesMinLength$outboundSchema:
|
|
|
11807
11807
|
z.ZodTypeDef,
|
|
11808
11808
|
CreateIntegrationStoreDirectPropertiesMinLength
|
|
11809
11809
|
> = z.object({
|
|
11810
|
-
|
|
11810
|
+
atBRANDAt8897: z.lazy(() => PropertiesAtBRANDAt8897$outboundSchema),
|
|
11811
11811
|
}).transform((v) => {
|
|
11812
11812
|
return remap$(v, {
|
|
11813
|
-
|
|
11813
|
+
atBRANDAt8897: "__@BRAND@8897",
|
|
11814
11814
|
});
|
|
11815
11815
|
});
|
|
11816
11816
|
|
|
@@ -11841,46 +11841,46 @@ export function createIntegrationStoreDirectPropertiesMinLengthFromJSON(
|
|
|
11841
11841
|
}
|
|
11842
11842
|
|
|
11843
11843
|
/** @internal */
|
|
11844
|
-
export const
|
|
11844
|
+
export const CreateIntegrationStoreDirectPropertiesAtBRANDAt8897$inboundSchema:
|
|
11845
11845
|
z.ZodType<
|
|
11846
|
-
|
|
11846
|
+
CreateIntegrationStoreDirectPropertiesAtBRANDAt8897,
|
|
11847
11847
|
z.ZodTypeDef,
|
|
11848
11848
|
unknown
|
|
11849
11849
|
> = z.object({});
|
|
11850
11850
|
/** @internal */
|
|
11851
|
-
export type
|
|
11851
|
+
export type CreateIntegrationStoreDirectPropertiesAtBRANDAt8897$Outbound = {};
|
|
11852
11852
|
|
|
11853
11853
|
/** @internal */
|
|
11854
|
-
export const
|
|
11854
|
+
export const CreateIntegrationStoreDirectPropertiesAtBRANDAt8897$outboundSchema:
|
|
11855
11855
|
z.ZodType<
|
|
11856
|
-
|
|
11856
|
+
CreateIntegrationStoreDirectPropertiesAtBRANDAt8897$Outbound,
|
|
11857
11857
|
z.ZodTypeDef,
|
|
11858
|
-
|
|
11858
|
+
CreateIntegrationStoreDirectPropertiesAtBRANDAt8897
|
|
11859
11859
|
> = z.object({});
|
|
11860
11860
|
|
|
11861
|
-
export function
|
|
11862
|
-
|
|
11863
|
-
|
|
11861
|
+
export function createIntegrationStoreDirectPropertiesAtBRANDAt8897ToJSON(
|
|
11862
|
+
createIntegrationStoreDirectPropertiesAtBRANDAt8897:
|
|
11863
|
+
CreateIntegrationStoreDirectPropertiesAtBRANDAt8897,
|
|
11864
11864
|
): string {
|
|
11865
11865
|
return JSON.stringify(
|
|
11866
|
-
|
|
11867
|
-
|
|
11866
|
+
CreateIntegrationStoreDirectPropertiesAtBRANDAt8897$outboundSchema.parse(
|
|
11867
|
+
createIntegrationStoreDirectPropertiesAtBRANDAt8897,
|
|
11868
11868
|
),
|
|
11869
11869
|
);
|
|
11870
11870
|
}
|
|
11871
|
-
export function
|
|
11871
|
+
export function createIntegrationStoreDirectPropertiesAtBRANDAt8897FromJSON(
|
|
11872
11872
|
jsonString: string,
|
|
11873
11873
|
): SafeParseResult<
|
|
11874
|
-
|
|
11874
|
+
CreateIntegrationStoreDirectPropertiesAtBRANDAt8897,
|
|
11875
11875
|
SDKValidationError
|
|
11876
11876
|
> {
|
|
11877
11877
|
return safeParse(
|
|
11878
11878
|
jsonString,
|
|
11879
11879
|
(x) =>
|
|
11880
|
-
|
|
11880
|
+
CreateIntegrationStoreDirectPropertiesAtBRANDAt8897$inboundSchema.parse(
|
|
11881
11881
|
JSON.parse(x),
|
|
11882
11882
|
),
|
|
11883
|
-
`Failed to parse '
|
|
11883
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesAtBRANDAt8897' from JSON`,
|
|
11884
11884
|
);
|
|
11885
11885
|
}
|
|
11886
11886
|
|
|
@@ -11891,17 +11891,17 @@ export const CreateIntegrationStoreDirectPropertiesPattern$inboundSchema:
|
|
|
11891
11891
|
z.ZodTypeDef,
|
|
11892
11892
|
unknown
|
|
11893
11893
|
> = z.object({
|
|
11894
|
-
"__@BRAND@
|
|
11895
|
-
|
|
11894
|
+
"__@BRAND@8897": z.lazy(() =>
|
|
11895
|
+
CreateIntegrationStoreDirectPropertiesAtBRANDAt8897$inboundSchema
|
|
11896
11896
|
),
|
|
11897
11897
|
}).transform((v) => {
|
|
11898
11898
|
return remap$(v, {
|
|
11899
|
-
"__@BRAND@
|
|
11899
|
+
"__@BRAND@8897": "atBRANDAt8897",
|
|
11900
11900
|
});
|
|
11901
11901
|
});
|
|
11902
11902
|
/** @internal */
|
|
11903
11903
|
export type CreateIntegrationStoreDirectPropertiesPattern$Outbound = {
|
|
11904
|
-
"__@BRAND@
|
|
11904
|
+
"__@BRAND@8897": CreateIntegrationStoreDirectPropertiesAtBRANDAt8897$Outbound;
|
|
11905
11905
|
};
|
|
11906
11906
|
|
|
11907
11907
|
/** @internal */
|
|
@@ -11911,12 +11911,12 @@ export const CreateIntegrationStoreDirectPropertiesPattern$outboundSchema:
|
|
|
11911
11911
|
z.ZodTypeDef,
|
|
11912
11912
|
CreateIntegrationStoreDirectPropertiesPattern
|
|
11913
11913
|
> = z.object({
|
|
11914
|
-
|
|
11915
|
-
|
|
11914
|
+
atBRANDAt8897: z.lazy(() =>
|
|
11915
|
+
CreateIntegrationStoreDirectPropertiesAtBRANDAt8897$outboundSchema
|
|
11916
11916
|
),
|
|
11917
11917
|
}).transform((v) => {
|
|
11918
11918
|
return remap$(v, {
|
|
11919
|
-
|
|
11919
|
+
atBRANDAt8897: "__@BRAND@8897",
|
|
11920
11920
|
});
|
|
11921
11921
|
});
|
|
11922
11922
|
|
|
@@ -12995,31 +12995,31 @@ export function guidesFromJSON(
|
|
|
12995
12995
|
}
|
|
12996
12996
|
|
|
12997
12997
|
/** @internal */
|
|
12998
|
-
export const
|
|
12999
|
-
|
|
12998
|
+
export const AtBRANDAt8897$inboundSchema: z.ZodType<
|
|
12999
|
+
AtBRANDAt8897,
|
|
13000
13000
|
z.ZodTypeDef,
|
|
13001
13001
|
unknown
|
|
13002
13002
|
> = z.object({});
|
|
13003
13003
|
/** @internal */
|
|
13004
|
-
export type
|
|
13004
|
+
export type AtBRANDAt8897$Outbound = {};
|
|
13005
13005
|
|
|
13006
13006
|
/** @internal */
|
|
13007
|
-
export const
|
|
13008
|
-
|
|
13007
|
+
export const AtBRANDAt8897$outboundSchema: z.ZodType<
|
|
13008
|
+
AtBRANDAt8897$Outbound,
|
|
13009
13009
|
z.ZodTypeDef,
|
|
13010
|
-
|
|
13010
|
+
AtBRANDAt8897
|
|
13011
13011
|
> = z.object({});
|
|
13012
13012
|
|
|
13013
|
-
export function
|
|
13014
|
-
return JSON.stringify(
|
|
13013
|
+
export function atBRANDAt8897ToJSON(atBRANDAt8897: AtBRANDAt8897): string {
|
|
13014
|
+
return JSON.stringify(AtBRANDAt8897$outboundSchema.parse(atBRANDAt8897));
|
|
13015
13015
|
}
|
|
13016
|
-
export function
|
|
13016
|
+
export function atBRANDAt8897FromJSON(
|
|
13017
13017
|
jsonString: string,
|
|
13018
|
-
): SafeParseResult<
|
|
13018
|
+
): SafeParseResult<AtBRANDAt8897, SDKValidationError> {
|
|
13019
13019
|
return safeParse(
|
|
13020
13020
|
jsonString,
|
|
13021
|
-
(x) =>
|
|
13022
|
-
`Failed to parse '
|
|
13021
|
+
(x) => AtBRANDAt8897$inboundSchema.parse(JSON.parse(x)),
|
|
13022
|
+
`Failed to parse 'AtBRANDAt8897' from JSON`,
|
|
13023
13023
|
);
|
|
13024
13024
|
}
|
|
13025
13025
|
|
|
@@ -13029,15 +13029,15 @@ export const CreateIntegrationStoreDirectValue$inboundSchema: z.ZodType<
|
|
|
13029
13029
|
z.ZodTypeDef,
|
|
13030
13030
|
unknown
|
|
13031
13031
|
> = z.object({
|
|
13032
|
-
"__@BRAND@
|
|
13032
|
+
"__@BRAND@8897": z.lazy(() => AtBRANDAt8897$inboundSchema),
|
|
13033
13033
|
}).transform((v) => {
|
|
13034
13034
|
return remap$(v, {
|
|
13035
|
-
"__@BRAND@
|
|
13035
|
+
"__@BRAND@8897": "atBRANDAt8897",
|
|
13036
13036
|
});
|
|
13037
13037
|
});
|
|
13038
13038
|
/** @internal */
|
|
13039
13039
|
export type CreateIntegrationStoreDirectValue$Outbound = {
|
|
13040
|
-
"__@BRAND@
|
|
13040
|
+
"__@BRAND@8897": AtBRANDAt8897$Outbound;
|
|
13041
13041
|
};
|
|
13042
13042
|
|
|
13043
13043
|
/** @internal */
|
|
@@ -13046,10 +13046,10 @@ export const CreateIntegrationStoreDirectValue$outboundSchema: z.ZodType<
|
|
|
13046
13046
|
z.ZodTypeDef,
|
|
13047
13047
|
CreateIntegrationStoreDirectValue
|
|
13048
13048
|
> = z.object({
|
|
13049
|
-
|
|
13049
|
+
atBRANDAt8897: z.lazy(() => AtBRANDAt8897$outboundSchema),
|
|
13050
13050
|
}).transform((v) => {
|
|
13051
13051
|
return remap$(v, {
|
|
13052
|
-
|
|
13052
|
+
atBRANDAt8897: "__@BRAND@8897",
|
|
13053
13053
|
});
|
|
13054
13054
|
});
|
|
13055
13055
|
|