@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
|
@@ -257,12 +257,12 @@ export type GetConfigurationProductsType = ClosedEnum<
|
|
|
257
257
|
typeof GetConfigurationProductsType
|
|
258
258
|
>;
|
|
259
259
|
|
|
260
|
-
export type
|
|
260
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt524028 =
|
|
261
261
|
{};
|
|
262
262
|
|
|
263
263
|
export type PropertiesValue = {
|
|
264
|
-
|
|
265
|
-
|
|
264
|
+
atBRANDAt524028:
|
|
265
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt524028;
|
|
266
266
|
};
|
|
267
267
|
|
|
268
268
|
export const GetConfigurationProductsDisabled3 = {
|
|
@@ -331,28 +331,28 @@ export type GetConfigurationProductsPropertiesIntegrationsResponse200Application
|
|
|
331
331
|
typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl
|
|
332
332
|
>;
|
|
333
333
|
|
|
334
|
-
export type
|
|
334
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt524028 =
|
|
335
335
|
{};
|
|
336
336
|
|
|
337
337
|
export type GetConfigurationProductsPropertiesIntegrationsMinLength = {
|
|
338
|
-
|
|
339
|
-
|
|
338
|
+
atBRANDAt524028:
|
|
339
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt524028;
|
|
340
340
|
};
|
|
341
341
|
|
|
342
|
-
export type
|
|
342
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt524028 =
|
|
343
343
|
{};
|
|
344
344
|
|
|
345
345
|
export type GetConfigurationProductsPropertiesIntegrationsMaxLength = {
|
|
346
|
-
|
|
347
|
-
|
|
346
|
+
atBRANDAt524028:
|
|
347
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt524028;
|
|
348
348
|
};
|
|
349
349
|
|
|
350
|
-
export type
|
|
350
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt524028 =
|
|
351
351
|
{};
|
|
352
352
|
|
|
353
353
|
export type GetConfigurationProductsPropertiesIntegrationsPattern = {
|
|
354
|
-
|
|
355
|
-
|
|
354
|
+
atBRANDAt524028:
|
|
355
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt524028;
|
|
356
356
|
};
|
|
357
357
|
|
|
358
358
|
export const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3 =
|
|
@@ -497,28 +497,28 @@ export type GetConfigurationProductsPropertiesIntegrationsResponse200Application
|
|
|
497
497
|
typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8Type
|
|
498
498
|
>;
|
|
499
499
|
|
|
500
|
-
export type
|
|
500
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt524028 =
|
|
501
501
|
{};
|
|
502
502
|
|
|
503
503
|
export type GetConfigurationProductsPropertiesIntegrationsResponseMinLength = {
|
|
504
|
-
|
|
505
|
-
|
|
504
|
+
atBRANDAt524028:
|
|
505
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt524028;
|
|
506
506
|
};
|
|
507
507
|
|
|
508
|
-
export type
|
|
508
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt524028 =
|
|
509
509
|
{};
|
|
510
510
|
|
|
511
511
|
export type GetConfigurationProductsPropertiesIntegrationsResponseMaxLength = {
|
|
512
|
-
|
|
513
|
-
|
|
512
|
+
atBRANDAt524028:
|
|
513
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt524028;
|
|
514
514
|
};
|
|
515
515
|
|
|
516
|
-
export type
|
|
516
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt524028 =
|
|
517
517
|
{};
|
|
518
518
|
|
|
519
519
|
export type GetConfigurationProductsPropertiesIntegrationsResponsePattern = {
|
|
520
|
-
|
|
521
|
-
|
|
520
|
+
atBRANDAt524028:
|
|
521
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt524028;
|
|
522
522
|
};
|
|
523
523
|
|
|
524
524
|
export type GetConfigurationProductsPropertiesIntegrationsItems = {
|
|
@@ -538,12 +538,12 @@ export type GetConfigurationProductsPropertiesIntegrationsItems = {
|
|
|
538
538
|
enum?: Array<string> | undefined;
|
|
539
539
|
};
|
|
540
540
|
|
|
541
|
-
export type
|
|
541
|
+
export type GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt524028 =
|
|
542
542
|
{};
|
|
543
543
|
|
|
544
544
|
export type GetConfigurationProductsUiOptionsValue = {
|
|
545
|
-
|
|
546
|
-
|
|
545
|
+
atBRANDAt524028:
|
|
546
|
+
GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt524028;
|
|
547
547
|
};
|
|
548
548
|
|
|
549
549
|
export const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson3 =
|
|
@@ -600,10 +600,10 @@ export type GetConfigurationProductsUiOptions3 = {
|
|
|
600
600
|
| undefined;
|
|
601
601
|
};
|
|
602
602
|
|
|
603
|
-
export type
|
|
603
|
+
export type GetConfigurationProductsUiOptionsAtBRANDAt524028 = {};
|
|
604
604
|
|
|
605
605
|
export type GetConfigurationProductsUiOptions2 = {
|
|
606
|
-
|
|
606
|
+
atBRANDAt524028: GetConfigurationProductsUiOptionsAtBRANDAt524028;
|
|
607
607
|
};
|
|
608
608
|
|
|
609
609
|
export const GetConfigurationProductsDisabledIntegrationsResponse2003 = {
|
|
@@ -733,20 +733,20 @@ export type GetConfigurationProductsPropertiesIntegrationsResponse200Application
|
|
|
733
733
|
expr: string;
|
|
734
734
|
};
|
|
735
735
|
|
|
736
|
-
export type
|
|
736
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt524028 =
|
|
737
737
|
{};
|
|
738
738
|
|
|
739
739
|
export type Default = {
|
|
740
|
-
|
|
741
|
-
|
|
740
|
+
atBRANDAt524028:
|
|
741
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt524028;
|
|
742
742
|
};
|
|
743
743
|
|
|
744
|
-
export type
|
|
744
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt524028 =
|
|
745
745
|
{};
|
|
746
746
|
|
|
747
747
|
export type Example = {
|
|
748
|
-
|
|
749
|
-
|
|
748
|
+
atBRANDAt524028:
|
|
749
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt524028;
|
|
750
750
|
};
|
|
751
751
|
|
|
752
752
|
export type Properties8 = {
|
|
@@ -809,10 +809,10 @@ export type GetConfigurationProductsPropertiesIntegrationsResponse200Application
|
|
|
809
809
|
typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiControl
|
|
810
810
|
>;
|
|
811
811
|
|
|
812
|
-
export type
|
|
812
|
+
export type GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt524028 = {};
|
|
813
813
|
|
|
814
814
|
export type UiOptionsValue = {
|
|
815
|
-
|
|
815
|
+
atBRANDAt524028: GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt524028;
|
|
816
816
|
};
|
|
817
817
|
|
|
818
818
|
export const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3 =
|
|
@@ -869,10 +869,10 @@ export type UiOptions3 = {
|
|
|
869
869
|
| undefined;
|
|
870
870
|
};
|
|
871
871
|
|
|
872
|
-
export type
|
|
872
|
+
export type UiOptionsAtBRANDAt524028 = {};
|
|
873
873
|
|
|
874
874
|
export type UiOptions2 = {
|
|
875
|
-
|
|
875
|
+
atBRANDAt524028: UiOptionsAtBRANDAt524028;
|
|
876
876
|
};
|
|
877
877
|
|
|
878
878
|
export const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3 =
|
|
@@ -935,28 +935,28 @@ export type GetConfigurationProductsPropertiesUiOptions =
|
|
|
935
935
|
| UiOptions2
|
|
936
936
|
| UiOptions3;
|
|
937
937
|
|
|
938
|
-
export type
|
|
938
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt524028 =
|
|
939
939
|
{};
|
|
940
940
|
|
|
941
941
|
export type GetConfigurationProductsPropertiesMinLength = {
|
|
942
|
-
|
|
943
|
-
|
|
942
|
+
atBRANDAt524028:
|
|
943
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt524028;
|
|
944
944
|
};
|
|
945
945
|
|
|
946
|
-
export type
|
|
946
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt524028 =
|
|
947
947
|
{};
|
|
948
948
|
|
|
949
949
|
export type GetConfigurationProductsPropertiesMaxLength = {
|
|
950
|
-
|
|
951
|
-
|
|
950
|
+
atBRANDAt524028:
|
|
951
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt524028;
|
|
952
952
|
};
|
|
953
953
|
|
|
954
|
-
export type
|
|
954
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt524028 =
|
|
955
955
|
{};
|
|
956
956
|
|
|
957
957
|
export type GetConfigurationProductsPropertiesPattern = {
|
|
958
|
-
|
|
959
|
-
|
|
958
|
+
atBRANDAt524028:
|
|
959
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt524028;
|
|
960
960
|
};
|
|
961
961
|
|
|
962
962
|
export const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBody3 =
|
|
@@ -1098,30 +1098,30 @@ export type GetConfigurationProductsPropertiesIntegrationsResponse200Application
|
|
|
1098
1098
|
typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6Type
|
|
1099
1099
|
>;
|
|
1100
1100
|
|
|
1101
|
-
export type
|
|
1101
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt524028 =
|
|
1102
1102
|
{};
|
|
1103
1103
|
|
|
1104
1104
|
export type GetConfigurationProductsPropertiesIntegrationsResponse200MinLength =
|
|
1105
1105
|
{
|
|
1106
|
-
|
|
1107
|
-
|
|
1106
|
+
atBRANDAt524028:
|
|
1107
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt524028;
|
|
1108
1108
|
};
|
|
1109
1109
|
|
|
1110
|
-
export type
|
|
1110
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt524028 =
|
|
1111
1111
|
{};
|
|
1112
1112
|
|
|
1113
1113
|
export type GetConfigurationProductsPropertiesIntegrationsResponse200MaxLength =
|
|
1114
1114
|
{
|
|
1115
|
-
|
|
1116
|
-
|
|
1115
|
+
atBRANDAt524028:
|
|
1116
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt524028;
|
|
1117
1117
|
};
|
|
1118
1118
|
|
|
1119
|
-
export type
|
|
1119
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt524028 =
|
|
1120
1120
|
{};
|
|
1121
1121
|
|
|
1122
1122
|
export type GetConfigurationProductsPropertiesIntegrationsResponse200Pattern = {
|
|
1123
|
-
|
|
1124
|
-
|
|
1123
|
+
atBRANDAt524028:
|
|
1124
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt524028;
|
|
1125
1125
|
};
|
|
1126
1126
|
|
|
1127
1127
|
export type GetConfigurationProductsPropertiesItems = {
|
|
@@ -1366,27 +1366,27 @@ export type UiOptions = {
|
|
|
1366
1366
|
| undefined;
|
|
1367
1367
|
};
|
|
1368
1368
|
|
|
1369
|
-
export type
|
|
1369
|
+
export type GetConfigurationProductsPropertiesIntegrationsAtBRANDAt524028 = {};
|
|
1370
1370
|
|
|
1371
1371
|
export type PropertiesMinLength = {
|
|
1372
|
-
|
|
1373
|
-
|
|
1372
|
+
atBRANDAt524028:
|
|
1373
|
+
GetConfigurationProductsPropertiesIntegrationsAtBRANDAt524028;
|
|
1374
1374
|
};
|
|
1375
1375
|
|
|
1376
|
-
export type
|
|
1376
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt524028 =
|
|
1377
1377
|
{};
|
|
1378
1378
|
|
|
1379
1379
|
export type PropertiesMaxLength = {
|
|
1380
|
-
|
|
1381
|
-
|
|
1380
|
+
atBRANDAt524028:
|
|
1381
|
+
GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt524028;
|
|
1382
1382
|
};
|
|
1383
1383
|
|
|
1384
|
-
export type
|
|
1384
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt524028 =
|
|
1385
1385
|
{};
|
|
1386
1386
|
|
|
1387
1387
|
export type PropertiesPattern = {
|
|
1388
|
-
|
|
1389
|
-
|
|
1388
|
+
atBRANDAt524028:
|
|
1389
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt524028;
|
|
1390
1390
|
};
|
|
1391
1391
|
|
|
1392
1392
|
export const GetConfigurationProductsUiReadOnlyIntegrationsResponse2003 = {
|
|
@@ -1835,22 +1835,22 @@ export const UiControl = {
|
|
|
1835
1835
|
} as const;
|
|
1836
1836
|
export type UiControl = ClosedEnum<typeof UiControl>;
|
|
1837
1837
|
|
|
1838
|
-
export type
|
|
1838
|
+
export type AtBRANDAt524028 = {};
|
|
1839
1839
|
|
|
1840
1840
|
export type MinLength = {
|
|
1841
|
-
|
|
1841
|
+
atBRANDAt524028: AtBRANDAt524028;
|
|
1842
1842
|
};
|
|
1843
1843
|
|
|
1844
|
-
export type
|
|
1844
|
+
export type PropertiesAtBRANDAt524028 = {};
|
|
1845
1845
|
|
|
1846
1846
|
export type MaxLength = {
|
|
1847
|
-
|
|
1847
|
+
atBRANDAt524028: PropertiesAtBRANDAt524028;
|
|
1848
1848
|
};
|
|
1849
1849
|
|
|
1850
|
-
export type
|
|
1850
|
+
export type GetConfigurationProductsPropertiesAtBRANDAt524028 = {};
|
|
1851
1851
|
|
|
1852
1852
|
export type Pattern = {
|
|
1853
|
-
|
|
1853
|
+
atBRANDAt524028: GetConfigurationProductsPropertiesAtBRANDAt524028;
|
|
1854
1854
|
};
|
|
1855
1855
|
|
|
1856
1856
|
export const UiReadOnly3 = {
|
|
@@ -2792,47 +2792,47 @@ export const GetConfigurationProductsType$outboundSchema: z.ZodNativeEnum<
|
|
|
2792
2792
|
> = GetConfigurationProductsType$inboundSchema;
|
|
2793
2793
|
|
|
2794
2794
|
/** @internal */
|
|
2795
|
-
export const
|
|
2795
|
+
export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt524028$inboundSchema:
|
|
2796
2796
|
z.ZodType<
|
|
2797
|
-
|
|
2797
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt524028,
|
|
2798
2798
|
z.ZodTypeDef,
|
|
2799
2799
|
unknown
|
|
2800
2800
|
> = z.object({});
|
|
2801
2801
|
/** @internal */
|
|
2802
|
-
export type
|
|
2802
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt524028$Outbound =
|
|
2803
2803
|
{};
|
|
2804
2804
|
|
|
2805
2805
|
/** @internal */
|
|
2806
|
-
export const
|
|
2806
|
+
export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt524028$outboundSchema:
|
|
2807
2807
|
z.ZodType<
|
|
2808
|
-
|
|
2808
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt524028$Outbound,
|
|
2809
2809
|
z.ZodTypeDef,
|
|
2810
|
-
|
|
2810
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt524028
|
|
2811
2811
|
> = z.object({});
|
|
2812
2812
|
|
|
2813
|
-
export function
|
|
2814
|
-
|
|
2815
|
-
|
|
2813
|
+
export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt524028ToJSON(
|
|
2814
|
+
getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt524028:
|
|
2815
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt524028,
|
|
2816
2816
|
): string {
|
|
2817
2817
|
return JSON.stringify(
|
|
2818
|
-
|
|
2818
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt524028$outboundSchema
|
|
2819
2819
|
.parse(
|
|
2820
|
-
|
|
2820
|
+
getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt524028,
|
|
2821
2821
|
),
|
|
2822
2822
|
);
|
|
2823
2823
|
}
|
|
2824
|
-
export function
|
|
2824
|
+
export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt524028FromJSON(
|
|
2825
2825
|
jsonString: string,
|
|
2826
2826
|
): SafeParseResult<
|
|
2827
|
-
|
|
2827
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt524028,
|
|
2828
2828
|
SDKValidationError
|
|
2829
2829
|
> {
|
|
2830
2830
|
return safeParse(
|
|
2831
2831
|
jsonString,
|
|
2832
2832
|
(x) =>
|
|
2833
|
-
|
|
2833
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt524028$inboundSchema
|
|
2834
2834
|
.parse(JSON.parse(x)),
|
|
2835
|
-
`Failed to parse '
|
|
2835
|
+
`Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt524028' from JSON`,
|
|
2836
2836
|
);
|
|
2837
2837
|
}
|
|
2838
2838
|
|
|
@@ -2842,18 +2842,18 @@ export const PropertiesValue$inboundSchema: z.ZodType<
|
|
|
2842
2842
|
z.ZodTypeDef,
|
|
2843
2843
|
unknown
|
|
2844
2844
|
> = z.object({
|
|
2845
|
-
"__@BRAND@
|
|
2846
|
-
|
|
2845
|
+
"__@BRAND@524028": z.lazy(() =>
|
|
2846
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt524028$inboundSchema
|
|
2847
2847
|
),
|
|
2848
2848
|
}).transform((v) => {
|
|
2849
2849
|
return remap$(v, {
|
|
2850
|
-
"__@BRAND@
|
|
2850
|
+
"__@BRAND@524028": "atBRANDAt524028",
|
|
2851
2851
|
});
|
|
2852
2852
|
});
|
|
2853
2853
|
/** @internal */
|
|
2854
2854
|
export type PropertiesValue$Outbound = {
|
|
2855
|
-
"__@BRAND@
|
|
2856
|
-
|
|
2855
|
+
"__@BRAND@524028":
|
|
2856
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt524028$Outbound;
|
|
2857
2857
|
};
|
|
2858
2858
|
|
|
2859
2859
|
/** @internal */
|
|
@@ -2862,12 +2862,12 @@ export const PropertiesValue$outboundSchema: z.ZodType<
|
|
|
2862
2862
|
z.ZodTypeDef,
|
|
2863
2863
|
PropertiesValue
|
|
2864
2864
|
> = z.object({
|
|
2865
|
-
|
|
2866
|
-
|
|
2865
|
+
atBRANDAt524028: z.lazy(() =>
|
|
2866
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt524028$outboundSchema
|
|
2867
2867
|
),
|
|
2868
2868
|
}).transform((v) => {
|
|
2869
2869
|
return remap$(v, {
|
|
2870
|
-
|
|
2870
|
+
atBRANDAt524028: "__@BRAND@524028",
|
|
2871
2871
|
});
|
|
2872
2872
|
});
|
|
2873
2873
|
|
|
@@ -3168,47 +3168,47 @@ export const GetConfigurationProductsPropertiesIntegrationsResponse200Applicatio
|
|
|
3168
3168
|
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl$inboundSchema;
|
|
3169
3169
|
|
|
3170
3170
|
/** @internal */
|
|
3171
|
-
export const
|
|
3171
|
+
export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt524028$inboundSchema:
|
|
3172
3172
|
z.ZodType<
|
|
3173
|
-
|
|
3173
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt524028,
|
|
3174
3174
|
z.ZodTypeDef,
|
|
3175
3175
|
unknown
|
|
3176
3176
|
> = z.object({});
|
|
3177
3177
|
/** @internal */
|
|
3178
|
-
export type
|
|
3178
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt524028$Outbound =
|
|
3179
3179
|
{};
|
|
3180
3180
|
|
|
3181
3181
|
/** @internal */
|
|
3182
|
-
export const
|
|
3182
|
+
export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt524028$outboundSchema:
|
|
3183
3183
|
z.ZodType<
|
|
3184
|
-
|
|
3184
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt524028$Outbound,
|
|
3185
3185
|
z.ZodTypeDef,
|
|
3186
|
-
|
|
3186
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt524028
|
|
3187
3187
|
> = z.object({});
|
|
3188
3188
|
|
|
3189
|
-
export function
|
|
3190
|
-
|
|
3191
|
-
|
|
3189
|
+
export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt524028ToJSON(
|
|
3190
|
+
getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt524028:
|
|
3191
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt524028,
|
|
3192
3192
|
): string {
|
|
3193
3193
|
return JSON.stringify(
|
|
3194
|
-
|
|
3194
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt524028$outboundSchema
|
|
3195
3195
|
.parse(
|
|
3196
|
-
|
|
3196
|
+
getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt524028,
|
|
3197
3197
|
),
|
|
3198
3198
|
);
|
|
3199
3199
|
}
|
|
3200
|
-
export function
|
|
3200
|
+
export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt524028FromJSON(
|
|
3201
3201
|
jsonString: string,
|
|
3202
3202
|
): SafeParseResult<
|
|
3203
|
-
|
|
3203
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt524028,
|
|
3204
3204
|
SDKValidationError
|
|
3205
3205
|
> {
|
|
3206
3206
|
return safeParse(
|
|
3207
3207
|
jsonString,
|
|
3208
3208
|
(x) =>
|
|
3209
|
-
|
|
3209
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt524028$inboundSchema
|
|
3210
3210
|
.parse(JSON.parse(x)),
|
|
3211
|
-
`Failed to parse '
|
|
3211
|
+
`Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt524028' from JSON`,
|
|
3212
3212
|
);
|
|
3213
3213
|
}
|
|
3214
3214
|
|
|
@@ -3219,18 +3219,18 @@ export const GetConfigurationProductsPropertiesIntegrationsMinLength$inboundSche
|
|
|
3219
3219
|
z.ZodTypeDef,
|
|
3220
3220
|
unknown
|
|
3221
3221
|
> = z.object({
|
|
3222
|
-
"__@BRAND@
|
|
3223
|
-
|
|
3222
|
+
"__@BRAND@524028": z.lazy(() =>
|
|
3223
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt524028$inboundSchema
|
|
3224
3224
|
),
|
|
3225
3225
|
}).transform((v) => {
|
|
3226
3226
|
return remap$(v, {
|
|
3227
|
-
"__@BRAND@
|
|
3227
|
+
"__@BRAND@524028": "atBRANDAt524028",
|
|
3228
3228
|
});
|
|
3229
3229
|
});
|
|
3230
3230
|
/** @internal */
|
|
3231
3231
|
export type GetConfigurationProductsPropertiesIntegrationsMinLength$Outbound = {
|
|
3232
|
-
"__@BRAND@
|
|
3233
|
-
|
|
3232
|
+
"__@BRAND@524028":
|
|
3233
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt524028$Outbound;
|
|
3234
3234
|
};
|
|
3235
3235
|
|
|
3236
3236
|
/** @internal */
|
|
@@ -3240,12 +3240,12 @@ export const GetConfigurationProductsPropertiesIntegrationsMinLength$outboundSch
|
|
|
3240
3240
|
z.ZodTypeDef,
|
|
3241
3241
|
GetConfigurationProductsPropertiesIntegrationsMinLength
|
|
3242
3242
|
> = z.object({
|
|
3243
|
-
|
|
3244
|
-
|
|
3243
|
+
atBRANDAt524028: z.lazy(() =>
|
|
3244
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt524028$outboundSchema
|
|
3245
3245
|
),
|
|
3246
3246
|
}).transform((v) => {
|
|
3247
3247
|
return remap$(v, {
|
|
3248
|
-
|
|
3248
|
+
atBRANDAt524028: "__@BRAND@524028",
|
|
3249
3249
|
});
|
|
3250
3250
|
});
|
|
3251
3251
|
|
|
@@ -3274,47 +3274,47 @@ export function getConfigurationProductsPropertiesIntegrationsMinLengthFromJSON(
|
|
|
3274
3274
|
}
|
|
3275
3275
|
|
|
3276
3276
|
/** @internal */
|
|
3277
|
-
export const
|
|
3277
|
+
export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt524028$inboundSchema:
|
|
3278
3278
|
z.ZodType<
|
|
3279
|
-
|
|
3279
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt524028,
|
|
3280
3280
|
z.ZodTypeDef,
|
|
3281
3281
|
unknown
|
|
3282
3282
|
> = z.object({});
|
|
3283
3283
|
/** @internal */
|
|
3284
|
-
export type
|
|
3284
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt524028$Outbound =
|
|
3285
3285
|
{};
|
|
3286
3286
|
|
|
3287
3287
|
/** @internal */
|
|
3288
|
-
export const
|
|
3288
|
+
export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt524028$outboundSchema:
|
|
3289
3289
|
z.ZodType<
|
|
3290
|
-
|
|
3290
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt524028$Outbound,
|
|
3291
3291
|
z.ZodTypeDef,
|
|
3292
|
-
|
|
3292
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt524028
|
|
3293
3293
|
> = z.object({});
|
|
3294
3294
|
|
|
3295
|
-
export function
|
|
3296
|
-
|
|
3297
|
-
|
|
3295
|
+
export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt524028ToJSON(
|
|
3296
|
+
getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt524028:
|
|
3297
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt524028,
|
|
3298
3298
|
): string {
|
|
3299
3299
|
return JSON.stringify(
|
|
3300
|
-
|
|
3300
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt524028$outboundSchema
|
|
3301
3301
|
.parse(
|
|
3302
|
-
|
|
3302
|
+
getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt524028,
|
|
3303
3303
|
),
|
|
3304
3304
|
);
|
|
3305
3305
|
}
|
|
3306
|
-
export function
|
|
3306
|
+
export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt524028FromJSON(
|
|
3307
3307
|
jsonString: string,
|
|
3308
3308
|
): SafeParseResult<
|
|
3309
|
-
|
|
3309
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt524028,
|
|
3310
3310
|
SDKValidationError
|
|
3311
3311
|
> {
|
|
3312
3312
|
return safeParse(
|
|
3313
3313
|
jsonString,
|
|
3314
3314
|
(x) =>
|
|
3315
|
-
|
|
3315
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt524028$inboundSchema
|
|
3316
3316
|
.parse(JSON.parse(x)),
|
|
3317
|
-
`Failed to parse '
|
|
3317
|
+
`Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt524028' from JSON`,
|
|
3318
3318
|
);
|
|
3319
3319
|
}
|
|
3320
3320
|
|
|
@@ -3325,18 +3325,18 @@ export const GetConfigurationProductsPropertiesIntegrationsMaxLength$inboundSche
|
|
|
3325
3325
|
z.ZodTypeDef,
|
|
3326
3326
|
unknown
|
|
3327
3327
|
> = z.object({
|
|
3328
|
-
"__@BRAND@
|
|
3329
|
-
|
|
3328
|
+
"__@BRAND@524028": z.lazy(() =>
|
|
3329
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt524028$inboundSchema
|
|
3330
3330
|
),
|
|
3331
3331
|
}).transform((v) => {
|
|
3332
3332
|
return remap$(v, {
|
|
3333
|
-
"__@BRAND@
|
|
3333
|
+
"__@BRAND@524028": "atBRANDAt524028",
|
|
3334
3334
|
});
|
|
3335
3335
|
});
|
|
3336
3336
|
/** @internal */
|
|
3337
3337
|
export type GetConfigurationProductsPropertiesIntegrationsMaxLength$Outbound = {
|
|
3338
|
-
"__@BRAND@
|
|
3339
|
-
|
|
3338
|
+
"__@BRAND@524028":
|
|
3339
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt524028$Outbound;
|
|
3340
3340
|
};
|
|
3341
3341
|
|
|
3342
3342
|
/** @internal */
|
|
@@ -3346,12 +3346,12 @@ export const GetConfigurationProductsPropertiesIntegrationsMaxLength$outboundSch
|
|
|
3346
3346
|
z.ZodTypeDef,
|
|
3347
3347
|
GetConfigurationProductsPropertiesIntegrationsMaxLength
|
|
3348
3348
|
> = z.object({
|
|
3349
|
-
|
|
3350
|
-
|
|
3349
|
+
atBRANDAt524028: z.lazy(() =>
|
|
3350
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt524028$outboundSchema
|
|
3351
3351
|
),
|
|
3352
3352
|
}).transform((v) => {
|
|
3353
3353
|
return remap$(v, {
|
|
3354
|
-
|
|
3354
|
+
atBRANDAt524028: "__@BRAND@524028",
|
|
3355
3355
|
});
|
|
3356
3356
|
});
|
|
3357
3357
|
|
|
@@ -3380,47 +3380,47 @@ export function getConfigurationProductsPropertiesIntegrationsMaxLengthFromJSON(
|
|
|
3380
3380
|
}
|
|
3381
3381
|
|
|
3382
3382
|
/** @internal */
|
|
3383
|
-
export const
|
|
3383
|
+
export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt524028$inboundSchema:
|
|
3384
3384
|
z.ZodType<
|
|
3385
|
-
|
|
3385
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt524028,
|
|
3386
3386
|
z.ZodTypeDef,
|
|
3387
3387
|
unknown
|
|
3388
3388
|
> = z.object({});
|
|
3389
3389
|
/** @internal */
|
|
3390
|
-
export type
|
|
3390
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt524028$Outbound =
|
|
3391
3391
|
{};
|
|
3392
3392
|
|
|
3393
3393
|
/** @internal */
|
|
3394
|
-
export const
|
|
3394
|
+
export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt524028$outboundSchema:
|
|
3395
3395
|
z.ZodType<
|
|
3396
|
-
|
|
3396
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt524028$Outbound,
|
|
3397
3397
|
z.ZodTypeDef,
|
|
3398
|
-
|
|
3398
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt524028
|
|
3399
3399
|
> = z.object({});
|
|
3400
3400
|
|
|
3401
|
-
export function
|
|
3402
|
-
|
|
3403
|
-
|
|
3401
|
+
export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt524028ToJSON(
|
|
3402
|
+
getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt524028:
|
|
3403
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt524028,
|
|
3404
3404
|
): string {
|
|
3405
3405
|
return JSON.stringify(
|
|
3406
|
-
|
|
3406
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt524028$outboundSchema
|
|
3407
3407
|
.parse(
|
|
3408
|
-
|
|
3408
|
+
getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt524028,
|
|
3409
3409
|
),
|
|
3410
3410
|
);
|
|
3411
3411
|
}
|
|
3412
|
-
export function
|
|
3412
|
+
export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt524028FromJSON(
|
|
3413
3413
|
jsonString: string,
|
|
3414
3414
|
): SafeParseResult<
|
|
3415
|
-
|
|
3415
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt524028,
|
|
3416
3416
|
SDKValidationError
|
|
3417
3417
|
> {
|
|
3418
3418
|
return safeParse(
|
|
3419
3419
|
jsonString,
|
|
3420
3420
|
(x) =>
|
|
3421
|
-
|
|
3421
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt524028$inboundSchema
|
|
3422
3422
|
.parse(JSON.parse(x)),
|
|
3423
|
-
`Failed to parse '
|
|
3423
|
+
`Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt524028' from JSON`,
|
|
3424
3424
|
);
|
|
3425
3425
|
}
|
|
3426
3426
|
|
|
@@ -3431,18 +3431,18 @@ export const GetConfigurationProductsPropertiesIntegrationsPattern$inboundSchema
|
|
|
3431
3431
|
z.ZodTypeDef,
|
|
3432
3432
|
unknown
|
|
3433
3433
|
> = z.object({
|
|
3434
|
-
"__@BRAND@
|
|
3435
|
-
|
|
3434
|
+
"__@BRAND@524028": z.lazy(() =>
|
|
3435
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt524028$inboundSchema
|
|
3436
3436
|
),
|
|
3437
3437
|
}).transform((v) => {
|
|
3438
3438
|
return remap$(v, {
|
|
3439
|
-
"__@BRAND@
|
|
3439
|
+
"__@BRAND@524028": "atBRANDAt524028",
|
|
3440
3440
|
});
|
|
3441
3441
|
});
|
|
3442
3442
|
/** @internal */
|
|
3443
3443
|
export type GetConfigurationProductsPropertiesIntegrationsPattern$Outbound = {
|
|
3444
|
-
"__@BRAND@
|
|
3445
|
-
|
|
3444
|
+
"__@BRAND@524028":
|
|
3445
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt524028$Outbound;
|
|
3446
3446
|
};
|
|
3447
3447
|
|
|
3448
3448
|
/** @internal */
|
|
@@ -3452,12 +3452,12 @@ export const GetConfigurationProductsPropertiesIntegrationsPattern$outboundSchem
|
|
|
3452
3452
|
z.ZodTypeDef,
|
|
3453
3453
|
GetConfigurationProductsPropertiesIntegrationsPattern
|
|
3454
3454
|
> = z.object({
|
|
3455
|
-
|
|
3456
|
-
|
|
3455
|
+
atBRANDAt524028: z.lazy(() =>
|
|
3456
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt524028$outboundSchema
|
|
3457
3457
|
),
|
|
3458
3458
|
}).transform((v) => {
|
|
3459
3459
|
return remap$(v, {
|
|
3460
|
-
|
|
3460
|
+
atBRANDAt524028: "__@BRAND@524028",
|
|
3461
3461
|
});
|
|
3462
3462
|
});
|
|
3463
3463
|
|
|
@@ -4248,47 +4248,47 @@ export const GetConfigurationProductsPropertiesIntegrationsResponse200Applicatio
|
|
|
4248
4248
|
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8Type$inboundSchema;
|
|
4249
4249
|
|
|
4250
4250
|
/** @internal */
|
|
4251
|
-
export const
|
|
4251
|
+
export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt524028$inboundSchema:
|
|
4252
4252
|
z.ZodType<
|
|
4253
|
-
|
|
4253
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt524028,
|
|
4254
4254
|
z.ZodTypeDef,
|
|
4255
4255
|
unknown
|
|
4256
4256
|
> = z.object({});
|
|
4257
4257
|
/** @internal */
|
|
4258
|
-
export type
|
|
4258
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt524028$Outbound =
|
|
4259
4259
|
{};
|
|
4260
4260
|
|
|
4261
4261
|
/** @internal */
|
|
4262
|
-
export const
|
|
4262
|
+
export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt524028$outboundSchema:
|
|
4263
4263
|
z.ZodType<
|
|
4264
|
-
|
|
4264
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt524028$Outbound,
|
|
4265
4265
|
z.ZodTypeDef,
|
|
4266
|
-
|
|
4266
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt524028
|
|
4267
4267
|
> = z.object({});
|
|
4268
4268
|
|
|
4269
|
-
export function
|
|
4270
|
-
|
|
4271
|
-
|
|
4269
|
+
export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt524028ToJSON(
|
|
4270
|
+
getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt524028:
|
|
4271
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt524028,
|
|
4272
4272
|
): string {
|
|
4273
4273
|
return JSON.stringify(
|
|
4274
|
-
|
|
4274
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt524028$outboundSchema
|
|
4275
4275
|
.parse(
|
|
4276
|
-
|
|
4276
|
+
getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt524028,
|
|
4277
4277
|
),
|
|
4278
4278
|
);
|
|
4279
4279
|
}
|
|
4280
|
-
export function
|
|
4280
|
+
export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt524028FromJSON(
|
|
4281
4281
|
jsonString: string,
|
|
4282
4282
|
): SafeParseResult<
|
|
4283
|
-
|
|
4283
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt524028,
|
|
4284
4284
|
SDKValidationError
|
|
4285
4285
|
> {
|
|
4286
4286
|
return safeParse(
|
|
4287
4287
|
jsonString,
|
|
4288
4288
|
(x) =>
|
|
4289
|
-
|
|
4289
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt524028$inboundSchema
|
|
4290
4290
|
.parse(JSON.parse(x)),
|
|
4291
|
-
`Failed to parse '
|
|
4291
|
+
`Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt524028' from JSON`,
|
|
4292
4292
|
);
|
|
4293
4293
|
}
|
|
4294
4294
|
|
|
@@ -4299,19 +4299,19 @@ export const GetConfigurationProductsPropertiesIntegrationsResponseMinLength$inb
|
|
|
4299
4299
|
z.ZodTypeDef,
|
|
4300
4300
|
unknown
|
|
4301
4301
|
> = z.object({
|
|
4302
|
-
"__@BRAND@
|
|
4303
|
-
|
|
4302
|
+
"__@BRAND@524028": z.lazy(() =>
|
|
4303
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt524028$inboundSchema
|
|
4304
4304
|
),
|
|
4305
4305
|
}).transform((v) => {
|
|
4306
4306
|
return remap$(v, {
|
|
4307
|
-
"__@BRAND@
|
|
4307
|
+
"__@BRAND@524028": "atBRANDAt524028",
|
|
4308
4308
|
});
|
|
4309
4309
|
});
|
|
4310
4310
|
/** @internal */
|
|
4311
4311
|
export type GetConfigurationProductsPropertiesIntegrationsResponseMinLength$Outbound =
|
|
4312
4312
|
{
|
|
4313
|
-
"__@BRAND@
|
|
4314
|
-
|
|
4313
|
+
"__@BRAND@524028":
|
|
4314
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt524028$Outbound;
|
|
4315
4315
|
};
|
|
4316
4316
|
|
|
4317
4317
|
/** @internal */
|
|
@@ -4321,12 +4321,12 @@ export const GetConfigurationProductsPropertiesIntegrationsResponseMinLength$out
|
|
|
4321
4321
|
z.ZodTypeDef,
|
|
4322
4322
|
GetConfigurationProductsPropertiesIntegrationsResponseMinLength
|
|
4323
4323
|
> = z.object({
|
|
4324
|
-
|
|
4325
|
-
|
|
4324
|
+
atBRANDAt524028: z.lazy(() =>
|
|
4325
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt524028$outboundSchema
|
|
4326
4326
|
),
|
|
4327
4327
|
}).transform((v) => {
|
|
4328
4328
|
return remap$(v, {
|
|
4329
|
-
|
|
4329
|
+
atBRANDAt524028: "__@BRAND@524028",
|
|
4330
4330
|
});
|
|
4331
4331
|
});
|
|
4332
4332
|
|
|
@@ -4355,47 +4355,47 @@ export function getConfigurationProductsPropertiesIntegrationsResponseMinLengthF
|
|
|
4355
4355
|
}
|
|
4356
4356
|
|
|
4357
4357
|
/** @internal */
|
|
4358
|
-
export const
|
|
4358
|
+
export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt524028$inboundSchema:
|
|
4359
4359
|
z.ZodType<
|
|
4360
|
-
|
|
4360
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt524028,
|
|
4361
4361
|
z.ZodTypeDef,
|
|
4362
4362
|
unknown
|
|
4363
4363
|
> = z.object({});
|
|
4364
4364
|
/** @internal */
|
|
4365
|
-
export type
|
|
4365
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt524028$Outbound =
|
|
4366
4366
|
{};
|
|
4367
4367
|
|
|
4368
4368
|
/** @internal */
|
|
4369
|
-
export const
|
|
4369
|
+
export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt524028$outboundSchema:
|
|
4370
4370
|
z.ZodType<
|
|
4371
|
-
|
|
4371
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt524028$Outbound,
|
|
4372
4372
|
z.ZodTypeDef,
|
|
4373
|
-
|
|
4373
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt524028
|
|
4374
4374
|
> = z.object({});
|
|
4375
4375
|
|
|
4376
|
-
export function
|
|
4377
|
-
|
|
4378
|
-
|
|
4376
|
+
export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt524028ToJSON(
|
|
4377
|
+
getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt524028:
|
|
4378
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt524028,
|
|
4379
4379
|
): string {
|
|
4380
4380
|
return JSON.stringify(
|
|
4381
|
-
|
|
4381
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt524028$outboundSchema
|
|
4382
4382
|
.parse(
|
|
4383
|
-
|
|
4383
|
+
getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt524028,
|
|
4384
4384
|
),
|
|
4385
4385
|
);
|
|
4386
4386
|
}
|
|
4387
|
-
export function
|
|
4387
|
+
export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt524028FromJSON(
|
|
4388
4388
|
jsonString: string,
|
|
4389
4389
|
): SafeParseResult<
|
|
4390
|
-
|
|
4390
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt524028,
|
|
4391
4391
|
SDKValidationError
|
|
4392
4392
|
> {
|
|
4393
4393
|
return safeParse(
|
|
4394
4394
|
jsonString,
|
|
4395
4395
|
(x) =>
|
|
4396
|
-
|
|
4396
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt524028$inboundSchema
|
|
4397
4397
|
.parse(JSON.parse(x)),
|
|
4398
|
-
`Failed to parse '
|
|
4398
|
+
`Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt524028' from JSON`,
|
|
4399
4399
|
);
|
|
4400
4400
|
}
|
|
4401
4401
|
|
|
@@ -4406,19 +4406,19 @@ export const GetConfigurationProductsPropertiesIntegrationsResponseMaxLength$inb
|
|
|
4406
4406
|
z.ZodTypeDef,
|
|
4407
4407
|
unknown
|
|
4408
4408
|
> = z.object({
|
|
4409
|
-
"__@BRAND@
|
|
4410
|
-
|
|
4409
|
+
"__@BRAND@524028": z.lazy(() =>
|
|
4410
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt524028$inboundSchema
|
|
4411
4411
|
),
|
|
4412
4412
|
}).transform((v) => {
|
|
4413
4413
|
return remap$(v, {
|
|
4414
|
-
"__@BRAND@
|
|
4414
|
+
"__@BRAND@524028": "atBRANDAt524028",
|
|
4415
4415
|
});
|
|
4416
4416
|
});
|
|
4417
4417
|
/** @internal */
|
|
4418
4418
|
export type GetConfigurationProductsPropertiesIntegrationsResponseMaxLength$Outbound =
|
|
4419
4419
|
{
|
|
4420
|
-
"__@BRAND@
|
|
4421
|
-
|
|
4420
|
+
"__@BRAND@524028":
|
|
4421
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt524028$Outbound;
|
|
4422
4422
|
};
|
|
4423
4423
|
|
|
4424
4424
|
/** @internal */
|
|
@@ -4428,12 +4428,12 @@ export const GetConfigurationProductsPropertiesIntegrationsResponseMaxLength$out
|
|
|
4428
4428
|
z.ZodTypeDef,
|
|
4429
4429
|
GetConfigurationProductsPropertiesIntegrationsResponseMaxLength
|
|
4430
4430
|
> = z.object({
|
|
4431
|
-
|
|
4432
|
-
|
|
4431
|
+
atBRANDAt524028: z.lazy(() =>
|
|
4432
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt524028$outboundSchema
|
|
4433
4433
|
),
|
|
4434
4434
|
}).transform((v) => {
|
|
4435
4435
|
return remap$(v, {
|
|
4436
|
-
|
|
4436
|
+
atBRANDAt524028: "__@BRAND@524028",
|
|
4437
4437
|
});
|
|
4438
4438
|
});
|
|
4439
4439
|
|
|
@@ -4462,47 +4462,47 @@ export function getConfigurationProductsPropertiesIntegrationsResponseMaxLengthF
|
|
|
4462
4462
|
}
|
|
4463
4463
|
|
|
4464
4464
|
/** @internal */
|
|
4465
|
-
export const
|
|
4465
|
+
export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt524028$inboundSchema:
|
|
4466
4466
|
z.ZodType<
|
|
4467
|
-
|
|
4467
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt524028,
|
|
4468
4468
|
z.ZodTypeDef,
|
|
4469
4469
|
unknown
|
|
4470
4470
|
> = z.object({});
|
|
4471
4471
|
/** @internal */
|
|
4472
|
-
export type
|
|
4472
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt524028$Outbound =
|
|
4473
4473
|
{};
|
|
4474
4474
|
|
|
4475
4475
|
/** @internal */
|
|
4476
|
-
export const
|
|
4476
|
+
export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt524028$outboundSchema:
|
|
4477
4477
|
z.ZodType<
|
|
4478
|
-
|
|
4478
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt524028$Outbound,
|
|
4479
4479
|
z.ZodTypeDef,
|
|
4480
|
-
|
|
4480
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt524028
|
|
4481
4481
|
> = z.object({});
|
|
4482
4482
|
|
|
4483
|
-
export function
|
|
4484
|
-
|
|
4485
|
-
|
|
4483
|
+
export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt524028ToJSON(
|
|
4484
|
+
getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt524028:
|
|
4485
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt524028,
|
|
4486
4486
|
): string {
|
|
4487
4487
|
return JSON.stringify(
|
|
4488
|
-
|
|
4488
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt524028$outboundSchema
|
|
4489
4489
|
.parse(
|
|
4490
|
-
|
|
4490
|
+
getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt524028,
|
|
4491
4491
|
),
|
|
4492
4492
|
);
|
|
4493
4493
|
}
|
|
4494
|
-
export function
|
|
4494
|
+
export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt524028FromJSON(
|
|
4495
4495
|
jsonString: string,
|
|
4496
4496
|
): SafeParseResult<
|
|
4497
|
-
|
|
4497
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt524028,
|
|
4498
4498
|
SDKValidationError
|
|
4499
4499
|
> {
|
|
4500
4500
|
return safeParse(
|
|
4501
4501
|
jsonString,
|
|
4502
4502
|
(x) =>
|
|
4503
|
-
|
|
4503
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt524028$inboundSchema
|
|
4504
4504
|
.parse(JSON.parse(x)),
|
|
4505
|
-
`Failed to parse '
|
|
4505
|
+
`Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt524028' from JSON`,
|
|
4506
4506
|
);
|
|
4507
4507
|
}
|
|
4508
4508
|
|
|
@@ -4513,19 +4513,19 @@ export const GetConfigurationProductsPropertiesIntegrationsResponsePattern$inbou
|
|
|
4513
4513
|
z.ZodTypeDef,
|
|
4514
4514
|
unknown
|
|
4515
4515
|
> = z.object({
|
|
4516
|
-
"__@BRAND@
|
|
4517
|
-
|
|
4516
|
+
"__@BRAND@524028": z.lazy(() =>
|
|
4517
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt524028$inboundSchema
|
|
4518
4518
|
),
|
|
4519
4519
|
}).transform((v) => {
|
|
4520
4520
|
return remap$(v, {
|
|
4521
|
-
"__@BRAND@
|
|
4521
|
+
"__@BRAND@524028": "atBRANDAt524028",
|
|
4522
4522
|
});
|
|
4523
4523
|
});
|
|
4524
4524
|
/** @internal */
|
|
4525
4525
|
export type GetConfigurationProductsPropertiesIntegrationsResponsePattern$Outbound =
|
|
4526
4526
|
{
|
|
4527
|
-
"__@BRAND@
|
|
4528
|
-
|
|
4527
|
+
"__@BRAND@524028":
|
|
4528
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt524028$Outbound;
|
|
4529
4529
|
};
|
|
4530
4530
|
|
|
4531
4531
|
/** @internal */
|
|
@@ -4535,12 +4535,12 @@ export const GetConfigurationProductsPropertiesIntegrationsResponsePattern$outbo
|
|
|
4535
4535
|
z.ZodTypeDef,
|
|
4536
4536
|
GetConfigurationProductsPropertiesIntegrationsResponsePattern
|
|
4537
4537
|
> = z.object({
|
|
4538
|
-
|
|
4539
|
-
|
|
4538
|
+
atBRANDAt524028: z.lazy(() =>
|
|
4539
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt524028$outboundSchema
|
|
4540
4540
|
),
|
|
4541
4541
|
}).transform((v) => {
|
|
4542
4542
|
return remap$(v, {
|
|
4543
|
-
|
|
4543
|
+
atBRANDAt524028: "__@BRAND@524028",
|
|
4544
4544
|
});
|
|
4545
4545
|
});
|
|
4546
4546
|
|
|
@@ -4657,47 +4657,47 @@ export function getConfigurationProductsPropertiesIntegrationsItemsFromJSON(
|
|
|
4657
4657
|
}
|
|
4658
4658
|
|
|
4659
4659
|
/** @internal */
|
|
4660
|
-
export const
|
|
4660
|
+
export const GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt524028$inboundSchema:
|
|
4661
4661
|
z.ZodType<
|
|
4662
|
-
|
|
4662
|
+
GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt524028,
|
|
4663
4663
|
z.ZodTypeDef,
|
|
4664
4664
|
unknown
|
|
4665
4665
|
> = z.object({});
|
|
4666
4666
|
/** @internal */
|
|
4667
|
-
export type
|
|
4667
|
+
export type GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt524028$Outbound =
|
|
4668
4668
|
{};
|
|
4669
4669
|
|
|
4670
4670
|
/** @internal */
|
|
4671
|
-
export const
|
|
4671
|
+
export const GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt524028$outboundSchema:
|
|
4672
4672
|
z.ZodType<
|
|
4673
|
-
|
|
4673
|
+
GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt524028$Outbound,
|
|
4674
4674
|
z.ZodTypeDef,
|
|
4675
|
-
|
|
4675
|
+
GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt524028
|
|
4676
4676
|
> = z.object({});
|
|
4677
4677
|
|
|
4678
|
-
export function
|
|
4679
|
-
|
|
4680
|
-
|
|
4678
|
+
export function getConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt524028ToJSON(
|
|
4679
|
+
getConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt524028:
|
|
4680
|
+
GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt524028,
|
|
4681
4681
|
): string {
|
|
4682
4682
|
return JSON.stringify(
|
|
4683
|
-
|
|
4683
|
+
GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt524028$outboundSchema
|
|
4684
4684
|
.parse(
|
|
4685
|
-
|
|
4685
|
+
getConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt524028,
|
|
4686
4686
|
),
|
|
4687
4687
|
);
|
|
4688
4688
|
}
|
|
4689
|
-
export function
|
|
4689
|
+
export function getConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt524028FromJSON(
|
|
4690
4690
|
jsonString: string,
|
|
4691
4691
|
): SafeParseResult<
|
|
4692
|
-
|
|
4692
|
+
GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt524028,
|
|
4693
4693
|
SDKValidationError
|
|
4694
4694
|
> {
|
|
4695
4695
|
return safeParse(
|
|
4696
4696
|
jsonString,
|
|
4697
4697
|
(x) =>
|
|
4698
|
-
|
|
4698
|
+
GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt524028$inboundSchema
|
|
4699
4699
|
.parse(JSON.parse(x)),
|
|
4700
|
-
`Failed to parse '
|
|
4700
|
+
`Failed to parse 'GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt524028' from JSON`,
|
|
4701
4701
|
);
|
|
4702
4702
|
}
|
|
4703
4703
|
|
|
@@ -4707,18 +4707,18 @@ export const GetConfigurationProductsUiOptionsValue$inboundSchema: z.ZodType<
|
|
|
4707
4707
|
z.ZodTypeDef,
|
|
4708
4708
|
unknown
|
|
4709
4709
|
> = z.object({
|
|
4710
|
-
"__@BRAND@
|
|
4711
|
-
|
|
4710
|
+
"__@BRAND@524028": z.lazy(() =>
|
|
4711
|
+
GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt524028$inboundSchema
|
|
4712
4712
|
),
|
|
4713
4713
|
}).transform((v) => {
|
|
4714
4714
|
return remap$(v, {
|
|
4715
|
-
"__@BRAND@
|
|
4715
|
+
"__@BRAND@524028": "atBRANDAt524028",
|
|
4716
4716
|
});
|
|
4717
4717
|
});
|
|
4718
4718
|
/** @internal */
|
|
4719
4719
|
export type GetConfigurationProductsUiOptionsValue$Outbound = {
|
|
4720
|
-
"__@BRAND@
|
|
4721
|
-
|
|
4720
|
+
"__@BRAND@524028":
|
|
4721
|
+
GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt524028$Outbound;
|
|
4722
4722
|
};
|
|
4723
4723
|
|
|
4724
4724
|
/** @internal */
|
|
@@ -4727,12 +4727,12 @@ export const GetConfigurationProductsUiOptionsValue$outboundSchema: z.ZodType<
|
|
|
4727
4727
|
z.ZodTypeDef,
|
|
4728
4728
|
GetConfigurationProductsUiOptionsValue
|
|
4729
4729
|
> = z.object({
|
|
4730
|
-
|
|
4731
|
-
|
|
4730
|
+
atBRANDAt524028: z.lazy(() =>
|
|
4731
|
+
GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt524028$outboundSchema
|
|
4732
4732
|
),
|
|
4733
4733
|
}).transform((v) => {
|
|
4734
4734
|
return remap$(v, {
|
|
4735
|
-
|
|
4735
|
+
atBRANDAt524028: "__@BRAND@524028",
|
|
4736
4736
|
});
|
|
4737
4737
|
});
|
|
4738
4738
|
|
|
@@ -5082,46 +5082,46 @@ export function getConfigurationProductsUiOptions3FromJSON(
|
|
|
5082
5082
|
}
|
|
5083
5083
|
|
|
5084
5084
|
/** @internal */
|
|
5085
|
-
export const
|
|
5085
|
+
export const GetConfigurationProductsUiOptionsAtBRANDAt524028$inboundSchema:
|
|
5086
5086
|
z.ZodType<
|
|
5087
|
-
|
|
5087
|
+
GetConfigurationProductsUiOptionsAtBRANDAt524028,
|
|
5088
5088
|
z.ZodTypeDef,
|
|
5089
5089
|
unknown
|
|
5090
5090
|
> = z.object({});
|
|
5091
5091
|
/** @internal */
|
|
5092
|
-
export type
|
|
5092
|
+
export type GetConfigurationProductsUiOptionsAtBRANDAt524028$Outbound = {};
|
|
5093
5093
|
|
|
5094
5094
|
/** @internal */
|
|
5095
|
-
export const
|
|
5095
|
+
export const GetConfigurationProductsUiOptionsAtBRANDAt524028$outboundSchema:
|
|
5096
5096
|
z.ZodType<
|
|
5097
|
-
|
|
5097
|
+
GetConfigurationProductsUiOptionsAtBRANDAt524028$Outbound,
|
|
5098
5098
|
z.ZodTypeDef,
|
|
5099
|
-
|
|
5099
|
+
GetConfigurationProductsUiOptionsAtBRANDAt524028
|
|
5100
5100
|
> = z.object({});
|
|
5101
5101
|
|
|
5102
|
-
export function
|
|
5103
|
-
|
|
5104
|
-
|
|
5102
|
+
export function getConfigurationProductsUiOptionsAtBRANDAt524028ToJSON(
|
|
5103
|
+
getConfigurationProductsUiOptionsAtBRANDAt524028:
|
|
5104
|
+
GetConfigurationProductsUiOptionsAtBRANDAt524028,
|
|
5105
5105
|
): string {
|
|
5106
5106
|
return JSON.stringify(
|
|
5107
|
-
|
|
5108
|
-
|
|
5107
|
+
GetConfigurationProductsUiOptionsAtBRANDAt524028$outboundSchema.parse(
|
|
5108
|
+
getConfigurationProductsUiOptionsAtBRANDAt524028,
|
|
5109
5109
|
),
|
|
5110
5110
|
);
|
|
5111
5111
|
}
|
|
5112
|
-
export function
|
|
5112
|
+
export function getConfigurationProductsUiOptionsAtBRANDAt524028FromJSON(
|
|
5113
5113
|
jsonString: string,
|
|
5114
5114
|
): SafeParseResult<
|
|
5115
|
-
|
|
5115
|
+
GetConfigurationProductsUiOptionsAtBRANDAt524028,
|
|
5116
5116
|
SDKValidationError
|
|
5117
5117
|
> {
|
|
5118
5118
|
return safeParse(
|
|
5119
5119
|
jsonString,
|
|
5120
5120
|
(x) =>
|
|
5121
|
-
|
|
5121
|
+
GetConfigurationProductsUiOptionsAtBRANDAt524028$inboundSchema.parse(
|
|
5122
5122
|
JSON.parse(x),
|
|
5123
5123
|
),
|
|
5124
|
-
`Failed to parse '
|
|
5124
|
+
`Failed to parse 'GetConfigurationProductsUiOptionsAtBRANDAt524028' from JSON`,
|
|
5125
5125
|
);
|
|
5126
5126
|
}
|
|
5127
5127
|
|
|
@@ -5131,17 +5131,17 @@ export const GetConfigurationProductsUiOptions2$inboundSchema: z.ZodType<
|
|
|
5131
5131
|
z.ZodTypeDef,
|
|
5132
5132
|
unknown
|
|
5133
5133
|
> = z.object({
|
|
5134
|
-
"__@BRAND@
|
|
5135
|
-
|
|
5134
|
+
"__@BRAND@524028": z.lazy(() =>
|
|
5135
|
+
GetConfigurationProductsUiOptionsAtBRANDAt524028$inboundSchema
|
|
5136
5136
|
),
|
|
5137
5137
|
}).transform((v) => {
|
|
5138
5138
|
return remap$(v, {
|
|
5139
|
-
"__@BRAND@
|
|
5139
|
+
"__@BRAND@524028": "atBRANDAt524028",
|
|
5140
5140
|
});
|
|
5141
5141
|
});
|
|
5142
5142
|
/** @internal */
|
|
5143
5143
|
export type GetConfigurationProductsUiOptions2$Outbound = {
|
|
5144
|
-
"__@BRAND@
|
|
5144
|
+
"__@BRAND@524028": GetConfigurationProductsUiOptionsAtBRANDAt524028$Outbound;
|
|
5145
5145
|
};
|
|
5146
5146
|
|
|
5147
5147
|
/** @internal */
|
|
@@ -5150,12 +5150,12 @@ export const GetConfigurationProductsUiOptions2$outboundSchema: z.ZodType<
|
|
|
5150
5150
|
z.ZodTypeDef,
|
|
5151
5151
|
GetConfigurationProductsUiOptions2
|
|
5152
5152
|
> = z.object({
|
|
5153
|
-
|
|
5154
|
-
|
|
5153
|
+
atBRANDAt524028: z.lazy(() =>
|
|
5154
|
+
GetConfigurationProductsUiOptionsAtBRANDAt524028$outboundSchema
|
|
5155
5155
|
),
|
|
5156
5156
|
}).transform((v) => {
|
|
5157
5157
|
return remap$(v, {
|
|
5158
|
-
|
|
5158
|
+
atBRANDAt524028: "__@BRAND@524028",
|
|
5159
5159
|
});
|
|
5160
5160
|
});
|
|
5161
5161
|
|
|
@@ -6084,65 +6084,65 @@ export function getConfigurationProductsPropertiesIntegrationsResponse200Applica
|
|
|
6084
6084
|
}
|
|
6085
6085
|
|
|
6086
6086
|
/** @internal */
|
|
6087
|
-
export const
|
|
6087
|
+
export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt524028$inboundSchema:
|
|
6088
6088
|
z.ZodType<
|
|
6089
|
-
|
|
6089
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt524028,
|
|
6090
6090
|
z.ZodTypeDef,
|
|
6091
6091
|
unknown
|
|
6092
6092
|
> = z.object({});
|
|
6093
6093
|
/** @internal */
|
|
6094
|
-
export type
|
|
6094
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt524028$Outbound =
|
|
6095
6095
|
{};
|
|
6096
6096
|
|
|
6097
6097
|
/** @internal */
|
|
6098
|
-
export const
|
|
6098
|
+
export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt524028$outboundSchema:
|
|
6099
6099
|
z.ZodType<
|
|
6100
|
-
|
|
6100
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt524028$Outbound,
|
|
6101
6101
|
z.ZodTypeDef,
|
|
6102
|
-
|
|
6102
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt524028
|
|
6103
6103
|
> = z.object({});
|
|
6104
6104
|
|
|
6105
|
-
export function
|
|
6106
|
-
|
|
6107
|
-
|
|
6105
|
+
export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt524028ToJSON(
|
|
6106
|
+
getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt524028:
|
|
6107
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt524028,
|
|
6108
6108
|
): string {
|
|
6109
6109
|
return JSON.stringify(
|
|
6110
|
-
|
|
6110
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt524028$outboundSchema
|
|
6111
6111
|
.parse(
|
|
6112
|
-
|
|
6112
|
+
getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt524028,
|
|
6113
6113
|
),
|
|
6114
6114
|
);
|
|
6115
6115
|
}
|
|
6116
|
-
export function
|
|
6116
|
+
export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt524028FromJSON(
|
|
6117
6117
|
jsonString: string,
|
|
6118
6118
|
): SafeParseResult<
|
|
6119
|
-
|
|
6119
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt524028,
|
|
6120
6120
|
SDKValidationError
|
|
6121
6121
|
> {
|
|
6122
6122
|
return safeParse(
|
|
6123
6123
|
jsonString,
|
|
6124
6124
|
(x) =>
|
|
6125
|
-
|
|
6125
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt524028$inboundSchema
|
|
6126
6126
|
.parse(JSON.parse(x)),
|
|
6127
|
-
`Failed to parse '
|
|
6127
|
+
`Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt524028' from JSON`,
|
|
6128
6128
|
);
|
|
6129
6129
|
}
|
|
6130
6130
|
|
|
6131
6131
|
/** @internal */
|
|
6132
6132
|
export const Default$inboundSchema: z.ZodType<Default, z.ZodTypeDef, unknown> =
|
|
6133
6133
|
z.object({
|
|
6134
|
-
"__@BRAND@
|
|
6135
|
-
|
|
6134
|
+
"__@BRAND@524028": z.lazy(() =>
|
|
6135
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt524028$inboundSchema
|
|
6136
6136
|
),
|
|
6137
6137
|
}).transform((v) => {
|
|
6138
6138
|
return remap$(v, {
|
|
6139
|
-
"__@BRAND@
|
|
6139
|
+
"__@BRAND@524028": "atBRANDAt524028",
|
|
6140
6140
|
});
|
|
6141
6141
|
});
|
|
6142
6142
|
/** @internal */
|
|
6143
6143
|
export type Default$Outbound = {
|
|
6144
|
-
"__@BRAND@
|
|
6145
|
-
|
|
6144
|
+
"__@BRAND@524028":
|
|
6145
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt524028$Outbound;
|
|
6146
6146
|
};
|
|
6147
6147
|
|
|
6148
6148
|
/** @internal */
|
|
@@ -6151,12 +6151,12 @@ export const Default$outboundSchema: z.ZodType<
|
|
|
6151
6151
|
z.ZodTypeDef,
|
|
6152
6152
|
Default
|
|
6153
6153
|
> = z.object({
|
|
6154
|
-
|
|
6155
|
-
|
|
6154
|
+
atBRANDAt524028: z.lazy(() =>
|
|
6155
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt524028$outboundSchema
|
|
6156
6156
|
),
|
|
6157
6157
|
}).transform((v) => {
|
|
6158
6158
|
return remap$(v, {
|
|
6159
|
-
|
|
6159
|
+
atBRANDAt524028: "__@BRAND@524028",
|
|
6160
6160
|
});
|
|
6161
6161
|
});
|
|
6162
6162
|
|
|
@@ -6174,65 +6174,65 @@ export function defaultFromJSON(
|
|
|
6174
6174
|
}
|
|
6175
6175
|
|
|
6176
6176
|
/** @internal */
|
|
6177
|
-
export const
|
|
6177
|
+
export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt524028$inboundSchema:
|
|
6178
6178
|
z.ZodType<
|
|
6179
|
-
|
|
6179
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt524028,
|
|
6180
6180
|
z.ZodTypeDef,
|
|
6181
6181
|
unknown
|
|
6182
6182
|
> = z.object({});
|
|
6183
6183
|
/** @internal */
|
|
6184
|
-
export type
|
|
6184
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt524028$Outbound =
|
|
6185
6185
|
{};
|
|
6186
6186
|
|
|
6187
6187
|
/** @internal */
|
|
6188
|
-
export const
|
|
6188
|
+
export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt524028$outboundSchema:
|
|
6189
6189
|
z.ZodType<
|
|
6190
|
-
|
|
6190
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt524028$Outbound,
|
|
6191
6191
|
z.ZodTypeDef,
|
|
6192
|
-
|
|
6192
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt524028
|
|
6193
6193
|
> = z.object({});
|
|
6194
6194
|
|
|
6195
|
-
export function
|
|
6196
|
-
|
|
6197
|
-
|
|
6195
|
+
export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt524028ToJSON(
|
|
6196
|
+
getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt524028:
|
|
6197
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt524028,
|
|
6198
6198
|
): string {
|
|
6199
6199
|
return JSON.stringify(
|
|
6200
|
-
|
|
6200
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt524028$outboundSchema
|
|
6201
6201
|
.parse(
|
|
6202
|
-
|
|
6202
|
+
getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt524028,
|
|
6203
6203
|
),
|
|
6204
6204
|
);
|
|
6205
6205
|
}
|
|
6206
|
-
export function
|
|
6206
|
+
export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt524028FromJSON(
|
|
6207
6207
|
jsonString: string,
|
|
6208
6208
|
): SafeParseResult<
|
|
6209
|
-
|
|
6209
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt524028,
|
|
6210
6210
|
SDKValidationError
|
|
6211
6211
|
> {
|
|
6212
6212
|
return safeParse(
|
|
6213
6213
|
jsonString,
|
|
6214
6214
|
(x) =>
|
|
6215
|
-
|
|
6215
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt524028$inboundSchema
|
|
6216
6216
|
.parse(JSON.parse(x)),
|
|
6217
|
-
`Failed to parse '
|
|
6217
|
+
`Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt524028' from JSON`,
|
|
6218
6218
|
);
|
|
6219
6219
|
}
|
|
6220
6220
|
|
|
6221
6221
|
/** @internal */
|
|
6222
6222
|
export const Example$inboundSchema: z.ZodType<Example, z.ZodTypeDef, unknown> =
|
|
6223
6223
|
z.object({
|
|
6224
|
-
"__@BRAND@
|
|
6225
|
-
|
|
6224
|
+
"__@BRAND@524028": z.lazy(() =>
|
|
6225
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt524028$inboundSchema
|
|
6226
6226
|
),
|
|
6227
6227
|
}).transform((v) => {
|
|
6228
6228
|
return remap$(v, {
|
|
6229
|
-
"__@BRAND@
|
|
6229
|
+
"__@BRAND@524028": "atBRANDAt524028",
|
|
6230
6230
|
});
|
|
6231
6231
|
});
|
|
6232
6232
|
/** @internal */
|
|
6233
6233
|
export type Example$Outbound = {
|
|
6234
|
-
"__@BRAND@
|
|
6235
|
-
|
|
6234
|
+
"__@BRAND@524028":
|
|
6235
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt524028$Outbound;
|
|
6236
6236
|
};
|
|
6237
6237
|
|
|
6238
6238
|
/** @internal */
|
|
@@ -6241,12 +6241,12 @@ export const Example$outboundSchema: z.ZodType<
|
|
|
6241
6241
|
z.ZodTypeDef,
|
|
6242
6242
|
Example
|
|
6243
6243
|
> = z.object({
|
|
6244
|
-
|
|
6245
|
-
|
|
6244
|
+
atBRANDAt524028: z.lazy(() =>
|
|
6245
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt524028$outboundSchema
|
|
6246
6246
|
),
|
|
6247
6247
|
}).transform((v) => {
|
|
6248
6248
|
return remap$(v, {
|
|
6249
|
-
|
|
6249
|
+
atBRANDAt524028: "__@BRAND@524028",
|
|
6250
6250
|
});
|
|
6251
6251
|
});
|
|
6252
6252
|
|
|
@@ -6487,45 +6487,45 @@ export const GetConfigurationProductsPropertiesIntegrationsResponse200Applicatio
|
|
|
6487
6487
|
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiControl$inboundSchema;
|
|
6488
6488
|
|
|
6489
6489
|
/** @internal */
|
|
6490
|
-
export const
|
|
6490
|
+
export const GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt524028$inboundSchema:
|
|
6491
6491
|
z.ZodType<
|
|
6492
|
-
|
|
6492
|
+
GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt524028,
|
|
6493
6493
|
z.ZodTypeDef,
|
|
6494
6494
|
unknown
|
|
6495
6495
|
> = z.object({});
|
|
6496
6496
|
/** @internal */
|
|
6497
|
-
export type
|
|
6497
|
+
export type GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt524028$Outbound =
|
|
6498
6498
|
{};
|
|
6499
6499
|
|
|
6500
6500
|
/** @internal */
|
|
6501
|
-
export const
|
|
6501
|
+
export const GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt524028$outboundSchema:
|
|
6502
6502
|
z.ZodType<
|
|
6503
|
-
|
|
6503
|
+
GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt524028$Outbound,
|
|
6504
6504
|
z.ZodTypeDef,
|
|
6505
|
-
|
|
6505
|
+
GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt524028
|
|
6506
6506
|
> = z.object({});
|
|
6507
6507
|
|
|
6508
|
-
export function
|
|
6509
|
-
|
|
6510
|
-
|
|
6508
|
+
export function getConfigurationProductsUiOptionsIntegrationsAtBRANDAt524028ToJSON(
|
|
6509
|
+
getConfigurationProductsUiOptionsIntegrationsAtBRANDAt524028:
|
|
6510
|
+
GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt524028,
|
|
6511
6511
|
): string {
|
|
6512
6512
|
return JSON.stringify(
|
|
6513
|
-
|
|
6514
|
-
.parse(
|
|
6513
|
+
GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt524028$outboundSchema
|
|
6514
|
+
.parse(getConfigurationProductsUiOptionsIntegrationsAtBRANDAt524028),
|
|
6515
6515
|
);
|
|
6516
6516
|
}
|
|
6517
|
-
export function
|
|
6517
|
+
export function getConfigurationProductsUiOptionsIntegrationsAtBRANDAt524028FromJSON(
|
|
6518
6518
|
jsonString: string,
|
|
6519
6519
|
): SafeParseResult<
|
|
6520
|
-
|
|
6520
|
+
GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt524028,
|
|
6521
6521
|
SDKValidationError
|
|
6522
6522
|
> {
|
|
6523
6523
|
return safeParse(
|
|
6524
6524
|
jsonString,
|
|
6525
6525
|
(x) =>
|
|
6526
|
-
|
|
6526
|
+
GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt524028$inboundSchema
|
|
6527
6527
|
.parse(JSON.parse(x)),
|
|
6528
|
-
`Failed to parse '
|
|
6528
|
+
`Failed to parse 'GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt524028' from JSON`,
|
|
6529
6529
|
);
|
|
6530
6530
|
}
|
|
6531
6531
|
|
|
@@ -6535,18 +6535,18 @@ export const UiOptionsValue$inboundSchema: z.ZodType<
|
|
|
6535
6535
|
z.ZodTypeDef,
|
|
6536
6536
|
unknown
|
|
6537
6537
|
> = z.object({
|
|
6538
|
-
"__@BRAND@
|
|
6539
|
-
|
|
6538
|
+
"__@BRAND@524028": z.lazy(() =>
|
|
6539
|
+
GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt524028$inboundSchema
|
|
6540
6540
|
),
|
|
6541
6541
|
}).transform((v) => {
|
|
6542
6542
|
return remap$(v, {
|
|
6543
|
-
"__@BRAND@
|
|
6543
|
+
"__@BRAND@524028": "atBRANDAt524028",
|
|
6544
6544
|
});
|
|
6545
6545
|
});
|
|
6546
6546
|
/** @internal */
|
|
6547
6547
|
export type UiOptionsValue$Outbound = {
|
|
6548
|
-
"__@BRAND@
|
|
6549
|
-
|
|
6548
|
+
"__@BRAND@524028":
|
|
6549
|
+
GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt524028$Outbound;
|
|
6550
6550
|
};
|
|
6551
6551
|
|
|
6552
6552
|
/** @internal */
|
|
@@ -6555,12 +6555,12 @@ export const UiOptionsValue$outboundSchema: z.ZodType<
|
|
|
6555
6555
|
z.ZodTypeDef,
|
|
6556
6556
|
UiOptionsValue
|
|
6557
6557
|
> = z.object({
|
|
6558
|
-
|
|
6559
|
-
|
|
6558
|
+
atBRANDAt524028: z.lazy(() =>
|
|
6559
|
+
GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt524028$outboundSchema
|
|
6560
6560
|
),
|
|
6561
6561
|
}).transform((v) => {
|
|
6562
6562
|
return remap$(v, {
|
|
6563
|
-
|
|
6563
|
+
atBRANDAt524028: "__@BRAND@524028",
|
|
6564
6564
|
});
|
|
6565
6565
|
});
|
|
6566
6566
|
|
|
@@ -6896,35 +6896,35 @@ export function uiOptions3FromJSON(
|
|
|
6896
6896
|
}
|
|
6897
6897
|
|
|
6898
6898
|
/** @internal */
|
|
6899
|
-
export const
|
|
6900
|
-
|
|
6899
|
+
export const UiOptionsAtBRANDAt524028$inboundSchema: z.ZodType<
|
|
6900
|
+
UiOptionsAtBRANDAt524028,
|
|
6901
6901
|
z.ZodTypeDef,
|
|
6902
6902
|
unknown
|
|
6903
6903
|
> = z.object({});
|
|
6904
6904
|
/** @internal */
|
|
6905
|
-
export type
|
|
6905
|
+
export type UiOptionsAtBRANDAt524028$Outbound = {};
|
|
6906
6906
|
|
|
6907
6907
|
/** @internal */
|
|
6908
|
-
export const
|
|
6909
|
-
|
|
6908
|
+
export const UiOptionsAtBRANDAt524028$outboundSchema: z.ZodType<
|
|
6909
|
+
UiOptionsAtBRANDAt524028$Outbound,
|
|
6910
6910
|
z.ZodTypeDef,
|
|
6911
|
-
|
|
6911
|
+
UiOptionsAtBRANDAt524028
|
|
6912
6912
|
> = z.object({});
|
|
6913
6913
|
|
|
6914
|
-
export function
|
|
6915
|
-
|
|
6914
|
+
export function uiOptionsAtBRANDAt524028ToJSON(
|
|
6915
|
+
uiOptionsAtBRANDAt524028: UiOptionsAtBRANDAt524028,
|
|
6916
6916
|
): string {
|
|
6917
6917
|
return JSON.stringify(
|
|
6918
|
-
|
|
6918
|
+
UiOptionsAtBRANDAt524028$outboundSchema.parse(uiOptionsAtBRANDAt524028),
|
|
6919
6919
|
);
|
|
6920
6920
|
}
|
|
6921
|
-
export function
|
|
6921
|
+
export function uiOptionsAtBRANDAt524028FromJSON(
|
|
6922
6922
|
jsonString: string,
|
|
6923
|
-
): SafeParseResult<
|
|
6923
|
+
): SafeParseResult<UiOptionsAtBRANDAt524028, SDKValidationError> {
|
|
6924
6924
|
return safeParse(
|
|
6925
6925
|
jsonString,
|
|
6926
|
-
(x) =>
|
|
6927
|
-
`Failed to parse '
|
|
6926
|
+
(x) => UiOptionsAtBRANDAt524028$inboundSchema.parse(JSON.parse(x)),
|
|
6927
|
+
`Failed to parse 'UiOptionsAtBRANDAt524028' from JSON`,
|
|
6928
6928
|
);
|
|
6929
6929
|
}
|
|
6930
6930
|
|
|
@@ -6934,15 +6934,15 @@ export const UiOptions2$inboundSchema: z.ZodType<
|
|
|
6934
6934
|
z.ZodTypeDef,
|
|
6935
6935
|
unknown
|
|
6936
6936
|
> = z.object({
|
|
6937
|
-
"__@BRAND@
|
|
6937
|
+
"__@BRAND@524028": z.lazy(() => UiOptionsAtBRANDAt524028$inboundSchema),
|
|
6938
6938
|
}).transform((v) => {
|
|
6939
6939
|
return remap$(v, {
|
|
6940
|
-
"__@BRAND@
|
|
6940
|
+
"__@BRAND@524028": "atBRANDAt524028",
|
|
6941
6941
|
});
|
|
6942
6942
|
});
|
|
6943
6943
|
/** @internal */
|
|
6944
6944
|
export type UiOptions2$Outbound = {
|
|
6945
|
-
"__@BRAND@
|
|
6945
|
+
"__@BRAND@524028": UiOptionsAtBRANDAt524028$Outbound;
|
|
6946
6946
|
};
|
|
6947
6947
|
|
|
6948
6948
|
/** @internal */
|
|
@@ -6951,10 +6951,10 @@ export const UiOptions2$outboundSchema: z.ZodType<
|
|
|
6951
6951
|
z.ZodTypeDef,
|
|
6952
6952
|
UiOptions2
|
|
6953
6953
|
> = z.object({
|
|
6954
|
-
|
|
6954
|
+
atBRANDAt524028: z.lazy(() => UiOptionsAtBRANDAt524028$outboundSchema),
|
|
6955
6955
|
}).transform((v) => {
|
|
6956
6956
|
return remap$(v, {
|
|
6957
|
-
|
|
6957
|
+
atBRANDAt524028: "__@BRAND@524028",
|
|
6958
6958
|
});
|
|
6959
6959
|
});
|
|
6960
6960
|
|
|
@@ -7327,47 +7327,47 @@ export function getConfigurationProductsPropertiesUiOptionsFromJSON(
|
|
|
7327
7327
|
}
|
|
7328
7328
|
|
|
7329
7329
|
/** @internal */
|
|
7330
|
-
export const
|
|
7330
|
+
export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt524028$inboundSchema:
|
|
7331
7331
|
z.ZodType<
|
|
7332
|
-
|
|
7332
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt524028,
|
|
7333
7333
|
z.ZodTypeDef,
|
|
7334
7334
|
unknown
|
|
7335
7335
|
> = z.object({});
|
|
7336
7336
|
/** @internal */
|
|
7337
|
-
export type
|
|
7337
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt524028$Outbound =
|
|
7338
7338
|
{};
|
|
7339
7339
|
|
|
7340
7340
|
/** @internal */
|
|
7341
|
-
export const
|
|
7341
|
+
export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt524028$outboundSchema:
|
|
7342
7342
|
z.ZodType<
|
|
7343
|
-
|
|
7343
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt524028$Outbound,
|
|
7344
7344
|
z.ZodTypeDef,
|
|
7345
|
-
|
|
7345
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt524028
|
|
7346
7346
|
> = z.object({});
|
|
7347
7347
|
|
|
7348
|
-
export function
|
|
7349
|
-
|
|
7350
|
-
|
|
7348
|
+
export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt524028ToJSON(
|
|
7349
|
+
getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt524028:
|
|
7350
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt524028,
|
|
7351
7351
|
): string {
|
|
7352
7352
|
return JSON.stringify(
|
|
7353
|
-
|
|
7353
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt524028$outboundSchema
|
|
7354
7354
|
.parse(
|
|
7355
|
-
|
|
7355
|
+
getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt524028,
|
|
7356
7356
|
),
|
|
7357
7357
|
);
|
|
7358
7358
|
}
|
|
7359
|
-
export function
|
|
7359
|
+
export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt524028FromJSON(
|
|
7360
7360
|
jsonString: string,
|
|
7361
7361
|
): SafeParseResult<
|
|
7362
|
-
|
|
7362
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt524028,
|
|
7363
7363
|
SDKValidationError
|
|
7364
7364
|
> {
|
|
7365
7365
|
return safeParse(
|
|
7366
7366
|
jsonString,
|
|
7367
7367
|
(x) =>
|
|
7368
|
-
|
|
7368
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt524028$inboundSchema
|
|
7369
7369
|
.parse(JSON.parse(x)),
|
|
7370
|
-
`Failed to parse '
|
|
7370
|
+
`Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt524028' from JSON`,
|
|
7371
7371
|
);
|
|
7372
7372
|
}
|
|
7373
7373
|
|
|
@@ -7378,18 +7378,18 @@ export const GetConfigurationProductsPropertiesMinLength$inboundSchema:
|
|
|
7378
7378
|
z.ZodTypeDef,
|
|
7379
7379
|
unknown
|
|
7380
7380
|
> = z.object({
|
|
7381
|
-
"__@BRAND@
|
|
7382
|
-
|
|
7381
|
+
"__@BRAND@524028": z.lazy(() =>
|
|
7382
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt524028$inboundSchema
|
|
7383
7383
|
),
|
|
7384
7384
|
}).transform((v) => {
|
|
7385
7385
|
return remap$(v, {
|
|
7386
|
-
"__@BRAND@
|
|
7386
|
+
"__@BRAND@524028": "atBRANDAt524028",
|
|
7387
7387
|
});
|
|
7388
7388
|
});
|
|
7389
7389
|
/** @internal */
|
|
7390
7390
|
export type GetConfigurationProductsPropertiesMinLength$Outbound = {
|
|
7391
|
-
"__@BRAND@
|
|
7392
|
-
|
|
7391
|
+
"__@BRAND@524028":
|
|
7392
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt524028$Outbound;
|
|
7393
7393
|
};
|
|
7394
7394
|
|
|
7395
7395
|
/** @internal */
|
|
@@ -7399,12 +7399,12 @@ export const GetConfigurationProductsPropertiesMinLength$outboundSchema:
|
|
|
7399
7399
|
z.ZodTypeDef,
|
|
7400
7400
|
GetConfigurationProductsPropertiesMinLength
|
|
7401
7401
|
> = z.object({
|
|
7402
|
-
|
|
7403
|
-
|
|
7402
|
+
atBRANDAt524028: z.lazy(() =>
|
|
7403
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt524028$outboundSchema
|
|
7404
7404
|
),
|
|
7405
7405
|
}).transform((v) => {
|
|
7406
7406
|
return remap$(v, {
|
|
7407
|
-
|
|
7407
|
+
atBRANDAt524028: "__@BRAND@524028",
|
|
7408
7408
|
});
|
|
7409
7409
|
});
|
|
7410
7410
|
|
|
@@ -7435,47 +7435,47 @@ export function getConfigurationProductsPropertiesMinLengthFromJSON(
|
|
|
7435
7435
|
}
|
|
7436
7436
|
|
|
7437
7437
|
/** @internal */
|
|
7438
|
-
export const
|
|
7438
|
+
export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt524028$inboundSchema:
|
|
7439
7439
|
z.ZodType<
|
|
7440
|
-
|
|
7440
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt524028,
|
|
7441
7441
|
z.ZodTypeDef,
|
|
7442
7442
|
unknown
|
|
7443
7443
|
> = z.object({});
|
|
7444
7444
|
/** @internal */
|
|
7445
|
-
export type
|
|
7445
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt524028$Outbound =
|
|
7446
7446
|
{};
|
|
7447
7447
|
|
|
7448
7448
|
/** @internal */
|
|
7449
|
-
export const
|
|
7449
|
+
export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt524028$outboundSchema:
|
|
7450
7450
|
z.ZodType<
|
|
7451
|
-
|
|
7451
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt524028$Outbound,
|
|
7452
7452
|
z.ZodTypeDef,
|
|
7453
|
-
|
|
7453
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt524028
|
|
7454
7454
|
> = z.object({});
|
|
7455
7455
|
|
|
7456
|
-
export function
|
|
7457
|
-
|
|
7458
|
-
|
|
7456
|
+
export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt524028ToJSON(
|
|
7457
|
+
getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt524028:
|
|
7458
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt524028,
|
|
7459
7459
|
): string {
|
|
7460
7460
|
return JSON.stringify(
|
|
7461
|
-
|
|
7461
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt524028$outboundSchema
|
|
7462
7462
|
.parse(
|
|
7463
|
-
|
|
7463
|
+
getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt524028,
|
|
7464
7464
|
),
|
|
7465
7465
|
);
|
|
7466
7466
|
}
|
|
7467
|
-
export function
|
|
7467
|
+
export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt524028FromJSON(
|
|
7468
7468
|
jsonString: string,
|
|
7469
7469
|
): SafeParseResult<
|
|
7470
|
-
|
|
7470
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt524028,
|
|
7471
7471
|
SDKValidationError
|
|
7472
7472
|
> {
|
|
7473
7473
|
return safeParse(
|
|
7474
7474
|
jsonString,
|
|
7475
7475
|
(x) =>
|
|
7476
|
-
|
|
7476
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt524028$inboundSchema
|
|
7477
7477
|
.parse(JSON.parse(x)),
|
|
7478
|
-
`Failed to parse '
|
|
7478
|
+
`Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt524028' from JSON`,
|
|
7479
7479
|
);
|
|
7480
7480
|
}
|
|
7481
7481
|
|
|
@@ -7486,18 +7486,18 @@ export const GetConfigurationProductsPropertiesMaxLength$inboundSchema:
|
|
|
7486
7486
|
z.ZodTypeDef,
|
|
7487
7487
|
unknown
|
|
7488
7488
|
> = z.object({
|
|
7489
|
-
"__@BRAND@
|
|
7490
|
-
|
|
7489
|
+
"__@BRAND@524028": z.lazy(() =>
|
|
7490
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt524028$inboundSchema
|
|
7491
7491
|
),
|
|
7492
7492
|
}).transform((v) => {
|
|
7493
7493
|
return remap$(v, {
|
|
7494
|
-
"__@BRAND@
|
|
7494
|
+
"__@BRAND@524028": "atBRANDAt524028",
|
|
7495
7495
|
});
|
|
7496
7496
|
});
|
|
7497
7497
|
/** @internal */
|
|
7498
7498
|
export type GetConfigurationProductsPropertiesMaxLength$Outbound = {
|
|
7499
|
-
"__@BRAND@
|
|
7500
|
-
|
|
7499
|
+
"__@BRAND@524028":
|
|
7500
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt524028$Outbound;
|
|
7501
7501
|
};
|
|
7502
7502
|
|
|
7503
7503
|
/** @internal */
|
|
@@ -7507,12 +7507,12 @@ export const GetConfigurationProductsPropertiesMaxLength$outboundSchema:
|
|
|
7507
7507
|
z.ZodTypeDef,
|
|
7508
7508
|
GetConfigurationProductsPropertiesMaxLength
|
|
7509
7509
|
> = z.object({
|
|
7510
|
-
|
|
7511
|
-
|
|
7510
|
+
atBRANDAt524028: z.lazy(() =>
|
|
7511
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt524028$outboundSchema
|
|
7512
7512
|
),
|
|
7513
7513
|
}).transform((v) => {
|
|
7514
7514
|
return remap$(v, {
|
|
7515
|
-
|
|
7515
|
+
atBRANDAt524028: "__@BRAND@524028",
|
|
7516
7516
|
});
|
|
7517
7517
|
});
|
|
7518
7518
|
|
|
@@ -7543,47 +7543,47 @@ export function getConfigurationProductsPropertiesMaxLengthFromJSON(
|
|
|
7543
7543
|
}
|
|
7544
7544
|
|
|
7545
7545
|
/** @internal */
|
|
7546
|
-
export const
|
|
7546
|
+
export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt524028$inboundSchema:
|
|
7547
7547
|
z.ZodType<
|
|
7548
|
-
|
|
7548
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt524028,
|
|
7549
7549
|
z.ZodTypeDef,
|
|
7550
7550
|
unknown
|
|
7551
7551
|
> = z.object({});
|
|
7552
7552
|
/** @internal */
|
|
7553
|
-
export type
|
|
7553
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt524028$Outbound =
|
|
7554
7554
|
{};
|
|
7555
7555
|
|
|
7556
7556
|
/** @internal */
|
|
7557
|
-
export const
|
|
7557
|
+
export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt524028$outboundSchema:
|
|
7558
7558
|
z.ZodType<
|
|
7559
|
-
|
|
7559
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt524028$Outbound,
|
|
7560
7560
|
z.ZodTypeDef,
|
|
7561
|
-
|
|
7561
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt524028
|
|
7562
7562
|
> = z.object({});
|
|
7563
7563
|
|
|
7564
|
-
export function
|
|
7565
|
-
|
|
7566
|
-
|
|
7564
|
+
export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt524028ToJSON(
|
|
7565
|
+
getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt524028:
|
|
7566
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt524028,
|
|
7567
7567
|
): string {
|
|
7568
7568
|
return JSON.stringify(
|
|
7569
|
-
|
|
7569
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt524028$outboundSchema
|
|
7570
7570
|
.parse(
|
|
7571
|
-
|
|
7571
|
+
getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt524028,
|
|
7572
7572
|
),
|
|
7573
7573
|
);
|
|
7574
7574
|
}
|
|
7575
|
-
export function
|
|
7575
|
+
export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt524028FromJSON(
|
|
7576
7576
|
jsonString: string,
|
|
7577
7577
|
): SafeParseResult<
|
|
7578
|
-
|
|
7578
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt524028,
|
|
7579
7579
|
SDKValidationError
|
|
7580
7580
|
> {
|
|
7581
7581
|
return safeParse(
|
|
7582
7582
|
jsonString,
|
|
7583
7583
|
(x) =>
|
|
7584
|
-
|
|
7584
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt524028$inboundSchema
|
|
7585
7585
|
.parse(JSON.parse(x)),
|
|
7586
|
-
`Failed to parse '
|
|
7586
|
+
`Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt524028' from JSON`,
|
|
7587
7587
|
);
|
|
7588
7588
|
}
|
|
7589
7589
|
|
|
@@ -7593,18 +7593,18 @@ export const GetConfigurationProductsPropertiesPattern$inboundSchema: z.ZodType<
|
|
|
7593
7593
|
z.ZodTypeDef,
|
|
7594
7594
|
unknown
|
|
7595
7595
|
> = z.object({
|
|
7596
|
-
"__@BRAND@
|
|
7597
|
-
|
|
7596
|
+
"__@BRAND@524028": z.lazy(() =>
|
|
7597
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt524028$inboundSchema
|
|
7598
7598
|
),
|
|
7599
7599
|
}).transform((v) => {
|
|
7600
7600
|
return remap$(v, {
|
|
7601
|
-
"__@BRAND@
|
|
7601
|
+
"__@BRAND@524028": "atBRANDAt524028",
|
|
7602
7602
|
});
|
|
7603
7603
|
});
|
|
7604
7604
|
/** @internal */
|
|
7605
7605
|
export type GetConfigurationProductsPropertiesPattern$Outbound = {
|
|
7606
|
-
"__@BRAND@
|
|
7607
|
-
|
|
7606
|
+
"__@BRAND@524028":
|
|
7607
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt524028$Outbound;
|
|
7608
7608
|
};
|
|
7609
7609
|
|
|
7610
7610
|
/** @internal */
|
|
@@ -7614,12 +7614,12 @@ export const GetConfigurationProductsPropertiesPattern$outboundSchema:
|
|
|
7614
7614
|
z.ZodTypeDef,
|
|
7615
7615
|
GetConfigurationProductsPropertiesPattern
|
|
7616
7616
|
> = z.object({
|
|
7617
|
-
|
|
7618
|
-
|
|
7617
|
+
atBRANDAt524028: z.lazy(() =>
|
|
7618
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt524028$outboundSchema
|
|
7619
7619
|
),
|
|
7620
7620
|
}).transform((v) => {
|
|
7621
7621
|
return remap$(v, {
|
|
7622
|
-
|
|
7622
|
+
atBRANDAt524028: "__@BRAND@524028",
|
|
7623
7623
|
});
|
|
7624
7624
|
});
|
|
7625
7625
|
|
|
@@ -8422,47 +8422,47 @@ export const GetConfigurationProductsPropertiesIntegrationsResponse200Applicatio
|
|
|
8422
8422
|
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6Type$inboundSchema;
|
|
8423
8423
|
|
|
8424
8424
|
/** @internal */
|
|
8425
|
-
export const
|
|
8425
|
+
export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt524028$inboundSchema:
|
|
8426
8426
|
z.ZodType<
|
|
8427
|
-
|
|
8427
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt524028,
|
|
8428
8428
|
z.ZodTypeDef,
|
|
8429
8429
|
unknown
|
|
8430
8430
|
> = z.object({});
|
|
8431
8431
|
/** @internal */
|
|
8432
|
-
export type
|
|
8432
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt524028$Outbound =
|
|
8433
8433
|
{};
|
|
8434
8434
|
|
|
8435
8435
|
/** @internal */
|
|
8436
|
-
export const
|
|
8436
|
+
export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt524028$outboundSchema:
|
|
8437
8437
|
z.ZodType<
|
|
8438
|
-
|
|
8438
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt524028$Outbound,
|
|
8439
8439
|
z.ZodTypeDef,
|
|
8440
|
-
|
|
8440
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt524028
|
|
8441
8441
|
> = z.object({});
|
|
8442
8442
|
|
|
8443
|
-
export function
|
|
8444
|
-
|
|
8445
|
-
|
|
8443
|
+
export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt524028ToJSON(
|
|
8444
|
+
getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt524028:
|
|
8445
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt524028,
|
|
8446
8446
|
): string {
|
|
8447
8447
|
return JSON.stringify(
|
|
8448
|
-
|
|
8448
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt524028$outboundSchema
|
|
8449
8449
|
.parse(
|
|
8450
|
-
|
|
8450
|
+
getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt524028,
|
|
8451
8451
|
),
|
|
8452
8452
|
);
|
|
8453
8453
|
}
|
|
8454
|
-
export function
|
|
8454
|
+
export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt524028FromJSON(
|
|
8455
8455
|
jsonString: string,
|
|
8456
8456
|
): SafeParseResult<
|
|
8457
|
-
|
|
8457
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt524028,
|
|
8458
8458
|
SDKValidationError
|
|
8459
8459
|
> {
|
|
8460
8460
|
return safeParse(
|
|
8461
8461
|
jsonString,
|
|
8462
8462
|
(x) =>
|
|
8463
|
-
|
|
8463
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt524028$inboundSchema
|
|
8464
8464
|
.parse(JSON.parse(x)),
|
|
8465
|
-
`Failed to parse '
|
|
8465
|
+
`Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt524028' from JSON`,
|
|
8466
8466
|
);
|
|
8467
8467
|
}
|
|
8468
8468
|
|
|
@@ -8473,19 +8473,19 @@ export const GetConfigurationProductsPropertiesIntegrationsResponse200MinLength$
|
|
|
8473
8473
|
z.ZodTypeDef,
|
|
8474
8474
|
unknown
|
|
8475
8475
|
> = z.object({
|
|
8476
|
-
"__@BRAND@
|
|
8477
|
-
|
|
8476
|
+
"__@BRAND@524028": z.lazy(() =>
|
|
8477
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt524028$inboundSchema
|
|
8478
8478
|
),
|
|
8479
8479
|
}).transform((v) => {
|
|
8480
8480
|
return remap$(v, {
|
|
8481
|
-
"__@BRAND@
|
|
8481
|
+
"__@BRAND@524028": "atBRANDAt524028",
|
|
8482
8482
|
});
|
|
8483
8483
|
});
|
|
8484
8484
|
/** @internal */
|
|
8485
8485
|
export type GetConfigurationProductsPropertiesIntegrationsResponse200MinLength$Outbound =
|
|
8486
8486
|
{
|
|
8487
|
-
"__@BRAND@
|
|
8488
|
-
|
|
8487
|
+
"__@BRAND@524028":
|
|
8488
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt524028$Outbound;
|
|
8489
8489
|
};
|
|
8490
8490
|
|
|
8491
8491
|
/** @internal */
|
|
@@ -8495,12 +8495,12 @@ export const GetConfigurationProductsPropertiesIntegrationsResponse200MinLength$
|
|
|
8495
8495
|
z.ZodTypeDef,
|
|
8496
8496
|
GetConfigurationProductsPropertiesIntegrationsResponse200MinLength
|
|
8497
8497
|
> = z.object({
|
|
8498
|
-
|
|
8499
|
-
|
|
8498
|
+
atBRANDAt524028: z.lazy(() =>
|
|
8499
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt524028$outboundSchema
|
|
8500
8500
|
),
|
|
8501
8501
|
}).transform((v) => {
|
|
8502
8502
|
return remap$(v, {
|
|
8503
|
-
|
|
8503
|
+
atBRANDAt524028: "__@BRAND@524028",
|
|
8504
8504
|
});
|
|
8505
8505
|
});
|
|
8506
8506
|
|
|
@@ -8531,47 +8531,47 @@ export function getConfigurationProductsPropertiesIntegrationsResponse200MinLeng
|
|
|
8531
8531
|
}
|
|
8532
8532
|
|
|
8533
8533
|
/** @internal */
|
|
8534
|
-
export const
|
|
8534
|
+
export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt524028$inboundSchema:
|
|
8535
8535
|
z.ZodType<
|
|
8536
|
-
|
|
8536
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt524028,
|
|
8537
8537
|
z.ZodTypeDef,
|
|
8538
8538
|
unknown
|
|
8539
8539
|
> = z.object({});
|
|
8540
8540
|
/** @internal */
|
|
8541
|
-
export type
|
|
8541
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt524028$Outbound =
|
|
8542
8542
|
{};
|
|
8543
8543
|
|
|
8544
8544
|
/** @internal */
|
|
8545
|
-
export const
|
|
8545
|
+
export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt524028$outboundSchema:
|
|
8546
8546
|
z.ZodType<
|
|
8547
|
-
|
|
8547
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt524028$Outbound,
|
|
8548
8548
|
z.ZodTypeDef,
|
|
8549
|
-
|
|
8549
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt524028
|
|
8550
8550
|
> = z.object({});
|
|
8551
8551
|
|
|
8552
|
-
export function
|
|
8553
|
-
|
|
8554
|
-
|
|
8552
|
+
export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt524028ToJSON(
|
|
8553
|
+
getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt524028:
|
|
8554
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt524028,
|
|
8555
8555
|
): string {
|
|
8556
8556
|
return JSON.stringify(
|
|
8557
|
-
|
|
8557
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt524028$outboundSchema
|
|
8558
8558
|
.parse(
|
|
8559
|
-
|
|
8559
|
+
getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt524028,
|
|
8560
8560
|
),
|
|
8561
8561
|
);
|
|
8562
8562
|
}
|
|
8563
|
-
export function
|
|
8563
|
+
export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt524028FromJSON(
|
|
8564
8564
|
jsonString: string,
|
|
8565
8565
|
): SafeParseResult<
|
|
8566
|
-
|
|
8566
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt524028,
|
|
8567
8567
|
SDKValidationError
|
|
8568
8568
|
> {
|
|
8569
8569
|
return safeParse(
|
|
8570
8570
|
jsonString,
|
|
8571
8571
|
(x) =>
|
|
8572
|
-
|
|
8572
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt524028$inboundSchema
|
|
8573
8573
|
.parse(JSON.parse(x)),
|
|
8574
|
-
`Failed to parse '
|
|
8574
|
+
`Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt524028' from JSON`,
|
|
8575
8575
|
);
|
|
8576
8576
|
}
|
|
8577
8577
|
|
|
@@ -8582,19 +8582,19 @@ export const GetConfigurationProductsPropertiesIntegrationsResponse200MaxLength$
|
|
|
8582
8582
|
z.ZodTypeDef,
|
|
8583
8583
|
unknown
|
|
8584
8584
|
> = z.object({
|
|
8585
|
-
"__@BRAND@
|
|
8586
|
-
|
|
8585
|
+
"__@BRAND@524028": z.lazy(() =>
|
|
8586
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt524028$inboundSchema
|
|
8587
8587
|
),
|
|
8588
8588
|
}).transform((v) => {
|
|
8589
8589
|
return remap$(v, {
|
|
8590
|
-
"__@BRAND@
|
|
8590
|
+
"__@BRAND@524028": "atBRANDAt524028",
|
|
8591
8591
|
});
|
|
8592
8592
|
});
|
|
8593
8593
|
/** @internal */
|
|
8594
8594
|
export type GetConfigurationProductsPropertiesIntegrationsResponse200MaxLength$Outbound =
|
|
8595
8595
|
{
|
|
8596
|
-
"__@BRAND@
|
|
8597
|
-
|
|
8596
|
+
"__@BRAND@524028":
|
|
8597
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt524028$Outbound;
|
|
8598
8598
|
};
|
|
8599
8599
|
|
|
8600
8600
|
/** @internal */
|
|
@@ -8604,12 +8604,12 @@ export const GetConfigurationProductsPropertiesIntegrationsResponse200MaxLength$
|
|
|
8604
8604
|
z.ZodTypeDef,
|
|
8605
8605
|
GetConfigurationProductsPropertiesIntegrationsResponse200MaxLength
|
|
8606
8606
|
> = z.object({
|
|
8607
|
-
|
|
8608
|
-
|
|
8607
|
+
atBRANDAt524028: z.lazy(() =>
|
|
8608
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt524028$outboundSchema
|
|
8609
8609
|
),
|
|
8610
8610
|
}).transform((v) => {
|
|
8611
8611
|
return remap$(v, {
|
|
8612
|
-
|
|
8612
|
+
atBRANDAt524028: "__@BRAND@524028",
|
|
8613
8613
|
});
|
|
8614
8614
|
});
|
|
8615
8615
|
|
|
@@ -8640,47 +8640,47 @@ export function getConfigurationProductsPropertiesIntegrationsResponse200MaxLeng
|
|
|
8640
8640
|
}
|
|
8641
8641
|
|
|
8642
8642
|
/** @internal */
|
|
8643
|
-
export const
|
|
8643
|
+
export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt524028$inboundSchema:
|
|
8644
8644
|
z.ZodType<
|
|
8645
|
-
|
|
8645
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt524028,
|
|
8646
8646
|
z.ZodTypeDef,
|
|
8647
8647
|
unknown
|
|
8648
8648
|
> = z.object({});
|
|
8649
8649
|
/** @internal */
|
|
8650
|
-
export type
|
|
8650
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt524028$Outbound =
|
|
8651
8651
|
{};
|
|
8652
8652
|
|
|
8653
8653
|
/** @internal */
|
|
8654
|
-
export const
|
|
8654
|
+
export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt524028$outboundSchema:
|
|
8655
8655
|
z.ZodType<
|
|
8656
|
-
|
|
8656
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt524028$Outbound,
|
|
8657
8657
|
z.ZodTypeDef,
|
|
8658
|
-
|
|
8658
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt524028
|
|
8659
8659
|
> = z.object({});
|
|
8660
8660
|
|
|
8661
|
-
export function
|
|
8662
|
-
|
|
8663
|
-
|
|
8661
|
+
export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt524028ToJSON(
|
|
8662
|
+
getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt524028:
|
|
8663
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt524028,
|
|
8664
8664
|
): string {
|
|
8665
8665
|
return JSON.stringify(
|
|
8666
|
-
|
|
8666
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt524028$outboundSchema
|
|
8667
8667
|
.parse(
|
|
8668
|
-
|
|
8668
|
+
getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt524028,
|
|
8669
8669
|
),
|
|
8670
8670
|
);
|
|
8671
8671
|
}
|
|
8672
|
-
export function
|
|
8672
|
+
export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt524028FromJSON(
|
|
8673
8673
|
jsonString: string,
|
|
8674
8674
|
): SafeParseResult<
|
|
8675
|
-
|
|
8675
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt524028,
|
|
8676
8676
|
SDKValidationError
|
|
8677
8677
|
> {
|
|
8678
8678
|
return safeParse(
|
|
8679
8679
|
jsonString,
|
|
8680
8680
|
(x) =>
|
|
8681
|
-
|
|
8681
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt524028$inboundSchema
|
|
8682
8682
|
.parse(JSON.parse(x)),
|
|
8683
|
-
`Failed to parse '
|
|
8683
|
+
`Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt524028' from JSON`,
|
|
8684
8684
|
);
|
|
8685
8685
|
}
|
|
8686
8686
|
|
|
@@ -8691,19 +8691,19 @@ export const GetConfigurationProductsPropertiesIntegrationsResponse200Pattern$in
|
|
|
8691
8691
|
z.ZodTypeDef,
|
|
8692
8692
|
unknown
|
|
8693
8693
|
> = z.object({
|
|
8694
|
-
"__@BRAND@
|
|
8695
|
-
|
|
8694
|
+
"__@BRAND@524028": z.lazy(() =>
|
|
8695
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt524028$inboundSchema
|
|
8696
8696
|
),
|
|
8697
8697
|
}).transform((v) => {
|
|
8698
8698
|
return remap$(v, {
|
|
8699
|
-
"__@BRAND@
|
|
8699
|
+
"__@BRAND@524028": "atBRANDAt524028",
|
|
8700
8700
|
});
|
|
8701
8701
|
});
|
|
8702
8702
|
/** @internal */
|
|
8703
8703
|
export type GetConfigurationProductsPropertiesIntegrationsResponse200Pattern$Outbound =
|
|
8704
8704
|
{
|
|
8705
|
-
"__@BRAND@
|
|
8706
|
-
|
|
8705
|
+
"__@BRAND@524028":
|
|
8706
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt524028$Outbound;
|
|
8707
8707
|
};
|
|
8708
8708
|
|
|
8709
8709
|
/** @internal */
|
|
@@ -8713,12 +8713,12 @@ export const GetConfigurationProductsPropertiesIntegrationsResponse200Pattern$ou
|
|
|
8713
8713
|
z.ZodTypeDef,
|
|
8714
8714
|
GetConfigurationProductsPropertiesIntegrationsResponse200Pattern
|
|
8715
8715
|
> = z.object({
|
|
8716
|
-
|
|
8717
|
-
|
|
8716
|
+
atBRANDAt524028: z.lazy(() =>
|
|
8717
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt524028$outboundSchema
|
|
8718
8718
|
),
|
|
8719
8719
|
}).transform((v) => {
|
|
8720
8720
|
return remap$(v, {
|
|
8721
|
-
|
|
8721
|
+
atBRANDAt524028: "__@BRAND@524028",
|
|
8722
8722
|
});
|
|
8723
8723
|
});
|
|
8724
8724
|
|
|
@@ -10172,45 +10172,45 @@ export function uiOptionsFromJSON(
|
|
|
10172
10172
|
}
|
|
10173
10173
|
|
|
10174
10174
|
/** @internal */
|
|
10175
|
-
export const
|
|
10175
|
+
export const GetConfigurationProductsPropertiesIntegrationsAtBRANDAt524028$inboundSchema:
|
|
10176
10176
|
z.ZodType<
|
|
10177
|
-
|
|
10177
|
+
GetConfigurationProductsPropertiesIntegrationsAtBRANDAt524028,
|
|
10178
10178
|
z.ZodTypeDef,
|
|
10179
10179
|
unknown
|
|
10180
10180
|
> = z.object({});
|
|
10181
10181
|
/** @internal */
|
|
10182
|
-
export type
|
|
10182
|
+
export type GetConfigurationProductsPropertiesIntegrationsAtBRANDAt524028$Outbound =
|
|
10183
10183
|
{};
|
|
10184
10184
|
|
|
10185
10185
|
/** @internal */
|
|
10186
|
-
export const
|
|
10186
|
+
export const GetConfigurationProductsPropertiesIntegrationsAtBRANDAt524028$outboundSchema:
|
|
10187
10187
|
z.ZodType<
|
|
10188
|
-
|
|
10188
|
+
GetConfigurationProductsPropertiesIntegrationsAtBRANDAt524028$Outbound,
|
|
10189
10189
|
z.ZodTypeDef,
|
|
10190
|
-
|
|
10190
|
+
GetConfigurationProductsPropertiesIntegrationsAtBRANDAt524028
|
|
10191
10191
|
> = z.object({});
|
|
10192
10192
|
|
|
10193
|
-
export function
|
|
10194
|
-
|
|
10195
|
-
|
|
10193
|
+
export function getConfigurationProductsPropertiesIntegrationsAtBRANDAt524028ToJSON(
|
|
10194
|
+
getConfigurationProductsPropertiesIntegrationsAtBRANDAt524028:
|
|
10195
|
+
GetConfigurationProductsPropertiesIntegrationsAtBRANDAt524028,
|
|
10196
10196
|
): string {
|
|
10197
10197
|
return JSON.stringify(
|
|
10198
|
-
|
|
10199
|
-
.parse(
|
|
10198
|
+
GetConfigurationProductsPropertiesIntegrationsAtBRANDAt524028$outboundSchema
|
|
10199
|
+
.parse(getConfigurationProductsPropertiesIntegrationsAtBRANDAt524028),
|
|
10200
10200
|
);
|
|
10201
10201
|
}
|
|
10202
|
-
export function
|
|
10202
|
+
export function getConfigurationProductsPropertiesIntegrationsAtBRANDAt524028FromJSON(
|
|
10203
10203
|
jsonString: string,
|
|
10204
10204
|
): SafeParseResult<
|
|
10205
|
-
|
|
10205
|
+
GetConfigurationProductsPropertiesIntegrationsAtBRANDAt524028,
|
|
10206
10206
|
SDKValidationError
|
|
10207
10207
|
> {
|
|
10208
10208
|
return safeParse(
|
|
10209
10209
|
jsonString,
|
|
10210
10210
|
(x) =>
|
|
10211
|
-
|
|
10211
|
+
GetConfigurationProductsPropertiesIntegrationsAtBRANDAt524028$inboundSchema
|
|
10212
10212
|
.parse(JSON.parse(x)),
|
|
10213
|
-
`Failed to parse '
|
|
10213
|
+
`Failed to parse 'GetConfigurationProductsPropertiesIntegrationsAtBRANDAt524028' from JSON`,
|
|
10214
10214
|
);
|
|
10215
10215
|
}
|
|
10216
10216
|
|
|
@@ -10220,18 +10220,18 @@ export const PropertiesMinLength$inboundSchema: z.ZodType<
|
|
|
10220
10220
|
z.ZodTypeDef,
|
|
10221
10221
|
unknown
|
|
10222
10222
|
> = z.object({
|
|
10223
|
-
"__@BRAND@
|
|
10224
|
-
|
|
10223
|
+
"__@BRAND@524028": z.lazy(() =>
|
|
10224
|
+
GetConfigurationProductsPropertiesIntegrationsAtBRANDAt524028$inboundSchema
|
|
10225
10225
|
),
|
|
10226
10226
|
}).transform((v) => {
|
|
10227
10227
|
return remap$(v, {
|
|
10228
|
-
"__@BRAND@
|
|
10228
|
+
"__@BRAND@524028": "atBRANDAt524028",
|
|
10229
10229
|
});
|
|
10230
10230
|
});
|
|
10231
10231
|
/** @internal */
|
|
10232
10232
|
export type PropertiesMinLength$Outbound = {
|
|
10233
|
-
"__@BRAND@
|
|
10234
|
-
|
|
10233
|
+
"__@BRAND@524028":
|
|
10234
|
+
GetConfigurationProductsPropertiesIntegrationsAtBRANDAt524028$Outbound;
|
|
10235
10235
|
};
|
|
10236
10236
|
|
|
10237
10237
|
/** @internal */
|
|
@@ -10240,12 +10240,12 @@ export const PropertiesMinLength$outboundSchema: z.ZodType<
|
|
|
10240
10240
|
z.ZodTypeDef,
|
|
10241
10241
|
PropertiesMinLength
|
|
10242
10242
|
> = z.object({
|
|
10243
|
-
|
|
10244
|
-
|
|
10243
|
+
atBRANDAt524028: z.lazy(() =>
|
|
10244
|
+
GetConfigurationProductsPropertiesIntegrationsAtBRANDAt524028$outboundSchema
|
|
10245
10245
|
),
|
|
10246
10246
|
}).transform((v) => {
|
|
10247
10247
|
return remap$(v, {
|
|
10248
|
-
|
|
10248
|
+
atBRANDAt524028: "__@BRAND@524028",
|
|
10249
10249
|
});
|
|
10250
10250
|
});
|
|
10251
10251
|
|
|
@@ -10267,47 +10267,47 @@ export function propertiesMinLengthFromJSON(
|
|
|
10267
10267
|
}
|
|
10268
10268
|
|
|
10269
10269
|
/** @internal */
|
|
10270
|
-
export const
|
|
10270
|
+
export const GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt524028$inboundSchema:
|
|
10271
10271
|
z.ZodType<
|
|
10272
|
-
|
|
10272
|
+
GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt524028,
|
|
10273
10273
|
z.ZodTypeDef,
|
|
10274
10274
|
unknown
|
|
10275
10275
|
> = z.object({});
|
|
10276
10276
|
/** @internal */
|
|
10277
|
-
export type
|
|
10277
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt524028$Outbound =
|
|
10278
10278
|
{};
|
|
10279
10279
|
|
|
10280
10280
|
/** @internal */
|
|
10281
|
-
export const
|
|
10281
|
+
export const GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt524028$outboundSchema:
|
|
10282
10282
|
z.ZodType<
|
|
10283
|
-
|
|
10283
|
+
GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt524028$Outbound,
|
|
10284
10284
|
z.ZodTypeDef,
|
|
10285
|
-
|
|
10285
|
+
GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt524028
|
|
10286
10286
|
> = z.object({});
|
|
10287
10287
|
|
|
10288
|
-
export function
|
|
10289
|
-
|
|
10290
|
-
|
|
10288
|
+
export function getConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt524028ToJSON(
|
|
10289
|
+
getConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt524028:
|
|
10290
|
+
GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt524028,
|
|
10291
10291
|
): string {
|
|
10292
10292
|
return JSON.stringify(
|
|
10293
|
-
|
|
10293
|
+
GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt524028$outboundSchema
|
|
10294
10294
|
.parse(
|
|
10295
|
-
|
|
10295
|
+
getConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt524028,
|
|
10296
10296
|
),
|
|
10297
10297
|
);
|
|
10298
10298
|
}
|
|
10299
|
-
export function
|
|
10299
|
+
export function getConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt524028FromJSON(
|
|
10300
10300
|
jsonString: string,
|
|
10301
10301
|
): SafeParseResult<
|
|
10302
|
-
|
|
10302
|
+
GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt524028,
|
|
10303
10303
|
SDKValidationError
|
|
10304
10304
|
> {
|
|
10305
10305
|
return safeParse(
|
|
10306
10306
|
jsonString,
|
|
10307
10307
|
(x) =>
|
|
10308
|
-
|
|
10308
|
+
GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt524028$inboundSchema
|
|
10309
10309
|
.parse(JSON.parse(x)),
|
|
10310
|
-
`Failed to parse '
|
|
10310
|
+
`Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt524028' from JSON`,
|
|
10311
10311
|
);
|
|
10312
10312
|
}
|
|
10313
10313
|
|
|
@@ -10317,18 +10317,18 @@ export const PropertiesMaxLength$inboundSchema: z.ZodType<
|
|
|
10317
10317
|
z.ZodTypeDef,
|
|
10318
10318
|
unknown
|
|
10319
10319
|
> = z.object({
|
|
10320
|
-
"__@BRAND@
|
|
10321
|
-
|
|
10320
|
+
"__@BRAND@524028": z.lazy(() =>
|
|
10321
|
+
GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt524028$inboundSchema
|
|
10322
10322
|
),
|
|
10323
10323
|
}).transform((v) => {
|
|
10324
10324
|
return remap$(v, {
|
|
10325
|
-
"__@BRAND@
|
|
10325
|
+
"__@BRAND@524028": "atBRANDAt524028",
|
|
10326
10326
|
});
|
|
10327
10327
|
});
|
|
10328
10328
|
/** @internal */
|
|
10329
10329
|
export type PropertiesMaxLength$Outbound = {
|
|
10330
|
-
"__@BRAND@
|
|
10331
|
-
|
|
10330
|
+
"__@BRAND@524028":
|
|
10331
|
+
GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt524028$Outbound;
|
|
10332
10332
|
};
|
|
10333
10333
|
|
|
10334
10334
|
/** @internal */
|
|
@@ -10337,12 +10337,12 @@ export const PropertiesMaxLength$outboundSchema: z.ZodType<
|
|
|
10337
10337
|
z.ZodTypeDef,
|
|
10338
10338
|
PropertiesMaxLength
|
|
10339
10339
|
> = z.object({
|
|
10340
|
-
|
|
10341
|
-
|
|
10340
|
+
atBRANDAt524028: z.lazy(() =>
|
|
10341
|
+
GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt524028$outboundSchema
|
|
10342
10342
|
),
|
|
10343
10343
|
}).transform((v) => {
|
|
10344
10344
|
return remap$(v, {
|
|
10345
|
-
|
|
10345
|
+
atBRANDAt524028: "__@BRAND@524028",
|
|
10346
10346
|
});
|
|
10347
10347
|
});
|
|
10348
10348
|
|
|
@@ -10364,47 +10364,47 @@ export function propertiesMaxLengthFromJSON(
|
|
|
10364
10364
|
}
|
|
10365
10365
|
|
|
10366
10366
|
/** @internal */
|
|
10367
|
-
export const
|
|
10367
|
+
export const GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt524028$inboundSchema:
|
|
10368
10368
|
z.ZodType<
|
|
10369
|
-
|
|
10369
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt524028,
|
|
10370
10370
|
z.ZodTypeDef,
|
|
10371
10371
|
unknown
|
|
10372
10372
|
> = z.object({});
|
|
10373
10373
|
/** @internal */
|
|
10374
|
-
export type
|
|
10374
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt524028$Outbound =
|
|
10375
10375
|
{};
|
|
10376
10376
|
|
|
10377
10377
|
/** @internal */
|
|
10378
|
-
export const
|
|
10378
|
+
export const GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt524028$outboundSchema:
|
|
10379
10379
|
z.ZodType<
|
|
10380
|
-
|
|
10380
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt524028$Outbound,
|
|
10381
10381
|
z.ZodTypeDef,
|
|
10382
|
-
|
|
10382
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt524028
|
|
10383
10383
|
> = z.object({});
|
|
10384
10384
|
|
|
10385
|
-
export function
|
|
10386
|
-
|
|
10387
|
-
|
|
10385
|
+
export function getConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt524028ToJSON(
|
|
10386
|
+
getConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt524028:
|
|
10387
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt524028,
|
|
10388
10388
|
): string {
|
|
10389
10389
|
return JSON.stringify(
|
|
10390
|
-
|
|
10390
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt524028$outboundSchema
|
|
10391
10391
|
.parse(
|
|
10392
|
-
|
|
10392
|
+
getConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt524028,
|
|
10393
10393
|
),
|
|
10394
10394
|
);
|
|
10395
10395
|
}
|
|
10396
|
-
export function
|
|
10396
|
+
export function getConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt524028FromJSON(
|
|
10397
10397
|
jsonString: string,
|
|
10398
10398
|
): SafeParseResult<
|
|
10399
|
-
|
|
10399
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt524028,
|
|
10400
10400
|
SDKValidationError
|
|
10401
10401
|
> {
|
|
10402
10402
|
return safeParse(
|
|
10403
10403
|
jsonString,
|
|
10404
10404
|
(x) =>
|
|
10405
|
-
|
|
10405
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt524028$inboundSchema
|
|
10406
10406
|
.parse(JSON.parse(x)),
|
|
10407
|
-
`Failed to parse '
|
|
10407
|
+
`Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt524028' from JSON`,
|
|
10408
10408
|
);
|
|
10409
10409
|
}
|
|
10410
10410
|
|
|
@@ -10414,18 +10414,18 @@ export const PropertiesPattern$inboundSchema: z.ZodType<
|
|
|
10414
10414
|
z.ZodTypeDef,
|
|
10415
10415
|
unknown
|
|
10416
10416
|
> = z.object({
|
|
10417
|
-
"__@BRAND@
|
|
10418
|
-
|
|
10417
|
+
"__@BRAND@524028": z.lazy(() =>
|
|
10418
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt524028$inboundSchema
|
|
10419
10419
|
),
|
|
10420
10420
|
}).transform((v) => {
|
|
10421
10421
|
return remap$(v, {
|
|
10422
|
-
"__@BRAND@
|
|
10422
|
+
"__@BRAND@524028": "atBRANDAt524028",
|
|
10423
10423
|
});
|
|
10424
10424
|
});
|
|
10425
10425
|
/** @internal */
|
|
10426
10426
|
export type PropertiesPattern$Outbound = {
|
|
10427
|
-
"__@BRAND@
|
|
10428
|
-
|
|
10427
|
+
"__@BRAND@524028":
|
|
10428
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt524028$Outbound;
|
|
10429
10429
|
};
|
|
10430
10430
|
|
|
10431
10431
|
/** @internal */
|
|
@@ -10434,12 +10434,12 @@ export const PropertiesPattern$outboundSchema: z.ZodType<
|
|
|
10434
10434
|
z.ZodTypeDef,
|
|
10435
10435
|
PropertiesPattern
|
|
10436
10436
|
> = z.object({
|
|
10437
|
-
|
|
10438
|
-
|
|
10437
|
+
atBRANDAt524028: z.lazy(() =>
|
|
10438
|
+
GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt524028$outboundSchema
|
|
10439
10439
|
),
|
|
10440
10440
|
}).transform((v) => {
|
|
10441
10441
|
return remap$(v, {
|
|
10442
|
-
|
|
10442
|
+
atBRANDAt524028: "__@BRAND@524028",
|
|
10443
10443
|
});
|
|
10444
10444
|
});
|
|
10445
10445
|
|
|
@@ -13152,33 +13152,33 @@ export const UiControl$outboundSchema: z.ZodNativeEnum<typeof UiControl> =
|
|
|
13152
13152
|
UiControl$inboundSchema;
|
|
13153
13153
|
|
|
13154
13154
|
/** @internal */
|
|
13155
|
-
export const
|
|
13156
|
-
|
|
13155
|
+
export const AtBRANDAt524028$inboundSchema: z.ZodType<
|
|
13156
|
+
AtBRANDAt524028,
|
|
13157
13157
|
z.ZodTypeDef,
|
|
13158
13158
|
unknown
|
|
13159
13159
|
> = z.object({});
|
|
13160
13160
|
/** @internal */
|
|
13161
|
-
export type
|
|
13161
|
+
export type AtBRANDAt524028$Outbound = {};
|
|
13162
13162
|
|
|
13163
13163
|
/** @internal */
|
|
13164
|
-
export const
|
|
13165
|
-
|
|
13164
|
+
export const AtBRANDAt524028$outboundSchema: z.ZodType<
|
|
13165
|
+
AtBRANDAt524028$Outbound,
|
|
13166
13166
|
z.ZodTypeDef,
|
|
13167
|
-
|
|
13167
|
+
AtBRANDAt524028
|
|
13168
13168
|
> = z.object({});
|
|
13169
13169
|
|
|
13170
|
-
export function
|
|
13171
|
-
|
|
13170
|
+
export function atBRANDAt524028ToJSON(
|
|
13171
|
+
atBRANDAt524028: AtBRANDAt524028,
|
|
13172
13172
|
): string {
|
|
13173
|
-
return JSON.stringify(
|
|
13173
|
+
return JSON.stringify(AtBRANDAt524028$outboundSchema.parse(atBRANDAt524028));
|
|
13174
13174
|
}
|
|
13175
|
-
export function
|
|
13175
|
+
export function atBRANDAt524028FromJSON(
|
|
13176
13176
|
jsonString: string,
|
|
13177
|
-
): SafeParseResult<
|
|
13177
|
+
): SafeParseResult<AtBRANDAt524028, SDKValidationError> {
|
|
13178
13178
|
return safeParse(
|
|
13179
13179
|
jsonString,
|
|
13180
|
-
(x) =>
|
|
13181
|
-
`Failed to parse '
|
|
13180
|
+
(x) => AtBRANDAt524028$inboundSchema.parse(JSON.parse(x)),
|
|
13181
|
+
`Failed to parse 'AtBRANDAt524028' from JSON`,
|
|
13182
13182
|
);
|
|
13183
13183
|
}
|
|
13184
13184
|
|
|
@@ -13188,15 +13188,15 @@ export const MinLength$inboundSchema: z.ZodType<
|
|
|
13188
13188
|
z.ZodTypeDef,
|
|
13189
13189
|
unknown
|
|
13190
13190
|
> = z.object({
|
|
13191
|
-
"__@BRAND@
|
|
13191
|
+
"__@BRAND@524028": z.lazy(() => AtBRANDAt524028$inboundSchema),
|
|
13192
13192
|
}).transform((v) => {
|
|
13193
13193
|
return remap$(v, {
|
|
13194
|
-
"__@BRAND@
|
|
13194
|
+
"__@BRAND@524028": "atBRANDAt524028",
|
|
13195
13195
|
});
|
|
13196
13196
|
});
|
|
13197
13197
|
/** @internal */
|
|
13198
13198
|
export type MinLength$Outbound = {
|
|
13199
|
-
"__@BRAND@
|
|
13199
|
+
"__@BRAND@524028": AtBRANDAt524028$Outbound;
|
|
13200
13200
|
};
|
|
13201
13201
|
|
|
13202
13202
|
/** @internal */
|
|
@@ -13205,10 +13205,10 @@ export const MinLength$outboundSchema: z.ZodType<
|
|
|
13205
13205
|
z.ZodTypeDef,
|
|
13206
13206
|
MinLength
|
|
13207
13207
|
> = z.object({
|
|
13208
|
-
|
|
13208
|
+
atBRANDAt524028: z.lazy(() => AtBRANDAt524028$outboundSchema),
|
|
13209
13209
|
}).transform((v) => {
|
|
13210
13210
|
return remap$(v, {
|
|
13211
|
-
|
|
13211
|
+
atBRANDAt524028: "__@BRAND@524028",
|
|
13212
13212
|
});
|
|
13213
13213
|
});
|
|
13214
13214
|
|
|
@@ -13226,35 +13226,35 @@ export function minLengthFromJSON(
|
|
|
13226
13226
|
}
|
|
13227
13227
|
|
|
13228
13228
|
/** @internal */
|
|
13229
|
-
export const
|
|
13230
|
-
|
|
13229
|
+
export const PropertiesAtBRANDAt524028$inboundSchema: z.ZodType<
|
|
13230
|
+
PropertiesAtBRANDAt524028,
|
|
13231
13231
|
z.ZodTypeDef,
|
|
13232
13232
|
unknown
|
|
13233
13233
|
> = z.object({});
|
|
13234
13234
|
/** @internal */
|
|
13235
|
-
export type
|
|
13235
|
+
export type PropertiesAtBRANDAt524028$Outbound = {};
|
|
13236
13236
|
|
|
13237
13237
|
/** @internal */
|
|
13238
|
-
export const
|
|
13239
|
-
|
|
13238
|
+
export const PropertiesAtBRANDAt524028$outboundSchema: z.ZodType<
|
|
13239
|
+
PropertiesAtBRANDAt524028$Outbound,
|
|
13240
13240
|
z.ZodTypeDef,
|
|
13241
|
-
|
|
13241
|
+
PropertiesAtBRANDAt524028
|
|
13242
13242
|
> = z.object({});
|
|
13243
13243
|
|
|
13244
|
-
export function
|
|
13245
|
-
|
|
13244
|
+
export function propertiesAtBRANDAt524028ToJSON(
|
|
13245
|
+
propertiesAtBRANDAt524028: PropertiesAtBRANDAt524028,
|
|
13246
13246
|
): string {
|
|
13247
13247
|
return JSON.stringify(
|
|
13248
|
-
|
|
13248
|
+
PropertiesAtBRANDAt524028$outboundSchema.parse(propertiesAtBRANDAt524028),
|
|
13249
13249
|
);
|
|
13250
13250
|
}
|
|
13251
|
-
export function
|
|
13251
|
+
export function propertiesAtBRANDAt524028FromJSON(
|
|
13252
13252
|
jsonString: string,
|
|
13253
|
-
): SafeParseResult<
|
|
13253
|
+
): SafeParseResult<PropertiesAtBRANDAt524028, SDKValidationError> {
|
|
13254
13254
|
return safeParse(
|
|
13255
13255
|
jsonString,
|
|
13256
|
-
(x) =>
|
|
13257
|
-
`Failed to parse '
|
|
13256
|
+
(x) => PropertiesAtBRANDAt524028$inboundSchema.parse(JSON.parse(x)),
|
|
13257
|
+
`Failed to parse 'PropertiesAtBRANDAt524028' from JSON`,
|
|
13258
13258
|
);
|
|
13259
13259
|
}
|
|
13260
13260
|
|
|
@@ -13264,15 +13264,15 @@ export const MaxLength$inboundSchema: z.ZodType<
|
|
|
13264
13264
|
z.ZodTypeDef,
|
|
13265
13265
|
unknown
|
|
13266
13266
|
> = z.object({
|
|
13267
|
-
"__@BRAND@
|
|
13267
|
+
"__@BRAND@524028": z.lazy(() => PropertiesAtBRANDAt524028$inboundSchema),
|
|
13268
13268
|
}).transform((v) => {
|
|
13269
13269
|
return remap$(v, {
|
|
13270
|
-
"__@BRAND@
|
|
13270
|
+
"__@BRAND@524028": "atBRANDAt524028",
|
|
13271
13271
|
});
|
|
13272
13272
|
});
|
|
13273
13273
|
/** @internal */
|
|
13274
13274
|
export type MaxLength$Outbound = {
|
|
13275
|
-
"__@BRAND@
|
|
13275
|
+
"__@BRAND@524028": PropertiesAtBRANDAt524028$Outbound;
|
|
13276
13276
|
};
|
|
13277
13277
|
|
|
13278
13278
|
/** @internal */
|
|
@@ -13281,10 +13281,10 @@ export const MaxLength$outboundSchema: z.ZodType<
|
|
|
13281
13281
|
z.ZodTypeDef,
|
|
13282
13282
|
MaxLength
|
|
13283
13283
|
> = z.object({
|
|
13284
|
-
|
|
13284
|
+
atBRANDAt524028: z.lazy(() => PropertiesAtBRANDAt524028$outboundSchema),
|
|
13285
13285
|
}).transform((v) => {
|
|
13286
13286
|
return remap$(v, {
|
|
13287
|
-
|
|
13287
|
+
atBRANDAt524028: "__@BRAND@524028",
|
|
13288
13288
|
});
|
|
13289
13289
|
});
|
|
13290
13290
|
|
|
@@ -13302,63 +13302,63 @@ export function maxLengthFromJSON(
|
|
|
13302
13302
|
}
|
|
13303
13303
|
|
|
13304
13304
|
/** @internal */
|
|
13305
|
-
export const
|
|
13305
|
+
export const GetConfigurationProductsPropertiesAtBRANDAt524028$inboundSchema:
|
|
13306
13306
|
z.ZodType<
|
|
13307
|
-
|
|
13307
|
+
GetConfigurationProductsPropertiesAtBRANDAt524028,
|
|
13308
13308
|
z.ZodTypeDef,
|
|
13309
13309
|
unknown
|
|
13310
13310
|
> = z.object({});
|
|
13311
13311
|
/** @internal */
|
|
13312
|
-
export type
|
|
13312
|
+
export type GetConfigurationProductsPropertiesAtBRANDAt524028$Outbound = {};
|
|
13313
13313
|
|
|
13314
13314
|
/** @internal */
|
|
13315
|
-
export const
|
|
13315
|
+
export const GetConfigurationProductsPropertiesAtBRANDAt524028$outboundSchema:
|
|
13316
13316
|
z.ZodType<
|
|
13317
|
-
|
|
13317
|
+
GetConfigurationProductsPropertiesAtBRANDAt524028$Outbound,
|
|
13318
13318
|
z.ZodTypeDef,
|
|
13319
|
-
|
|
13319
|
+
GetConfigurationProductsPropertiesAtBRANDAt524028
|
|
13320
13320
|
> = z.object({});
|
|
13321
13321
|
|
|
13322
|
-
export function
|
|
13323
|
-
|
|
13324
|
-
|
|
13322
|
+
export function getConfigurationProductsPropertiesAtBRANDAt524028ToJSON(
|
|
13323
|
+
getConfigurationProductsPropertiesAtBRANDAt524028:
|
|
13324
|
+
GetConfigurationProductsPropertiesAtBRANDAt524028,
|
|
13325
13325
|
): string {
|
|
13326
13326
|
return JSON.stringify(
|
|
13327
|
-
|
|
13328
|
-
|
|
13327
|
+
GetConfigurationProductsPropertiesAtBRANDAt524028$outboundSchema.parse(
|
|
13328
|
+
getConfigurationProductsPropertiesAtBRANDAt524028,
|
|
13329
13329
|
),
|
|
13330
13330
|
);
|
|
13331
13331
|
}
|
|
13332
|
-
export function
|
|
13332
|
+
export function getConfigurationProductsPropertiesAtBRANDAt524028FromJSON(
|
|
13333
13333
|
jsonString: string,
|
|
13334
13334
|
): SafeParseResult<
|
|
13335
|
-
|
|
13335
|
+
GetConfigurationProductsPropertiesAtBRANDAt524028,
|
|
13336
13336
|
SDKValidationError
|
|
13337
13337
|
> {
|
|
13338
13338
|
return safeParse(
|
|
13339
13339
|
jsonString,
|
|
13340
13340
|
(x) =>
|
|
13341
|
-
|
|
13341
|
+
GetConfigurationProductsPropertiesAtBRANDAt524028$inboundSchema.parse(
|
|
13342
13342
|
JSON.parse(x),
|
|
13343
13343
|
),
|
|
13344
|
-
`Failed to parse '
|
|
13344
|
+
`Failed to parse 'GetConfigurationProductsPropertiesAtBRANDAt524028' from JSON`,
|
|
13345
13345
|
);
|
|
13346
13346
|
}
|
|
13347
13347
|
|
|
13348
13348
|
/** @internal */
|
|
13349
13349
|
export const Pattern$inboundSchema: z.ZodType<Pattern, z.ZodTypeDef, unknown> =
|
|
13350
13350
|
z.object({
|
|
13351
|
-
"__@BRAND@
|
|
13352
|
-
|
|
13351
|
+
"__@BRAND@524028": z.lazy(() =>
|
|
13352
|
+
GetConfigurationProductsPropertiesAtBRANDAt524028$inboundSchema
|
|
13353
13353
|
),
|
|
13354
13354
|
}).transform((v) => {
|
|
13355
13355
|
return remap$(v, {
|
|
13356
|
-
"__@BRAND@
|
|
13356
|
+
"__@BRAND@524028": "atBRANDAt524028",
|
|
13357
13357
|
});
|
|
13358
13358
|
});
|
|
13359
13359
|
/** @internal */
|
|
13360
13360
|
export type Pattern$Outbound = {
|
|
13361
|
-
"__@BRAND@
|
|
13361
|
+
"__@BRAND@524028": GetConfigurationProductsPropertiesAtBRANDAt524028$Outbound;
|
|
13362
13362
|
};
|
|
13363
13363
|
|
|
13364
13364
|
/** @internal */
|
|
@@ -13367,12 +13367,12 @@ export const Pattern$outboundSchema: z.ZodType<
|
|
|
13367
13367
|
z.ZodTypeDef,
|
|
13368
13368
|
Pattern
|
|
13369
13369
|
> = z.object({
|
|
13370
|
-
|
|
13371
|
-
|
|
13370
|
+
atBRANDAt524028: z.lazy(() =>
|
|
13371
|
+
GetConfigurationProductsPropertiesAtBRANDAt524028$outboundSchema
|
|
13372
13372
|
),
|
|
13373
13373
|
}).transform((v) => {
|
|
13374
13374
|
return remap$(v, {
|
|
13375
|
-
|
|
13375
|
+
atBRANDAt524028: "__@BRAND@524028",
|
|
13376
13376
|
});
|
|
13377
13377
|
});
|
|
13378
13378
|
|