@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
|
@@ -172,9 +172,9 @@ export declare const GetConfigurationProductsType: {
|
|
|
172
172
|
readonly Object: "object";
|
|
173
173
|
};
|
|
174
174
|
export type GetConfigurationProductsType = ClosedEnum<typeof GetConfigurationProductsType>;
|
|
175
|
-
export type
|
|
175
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt524028 = {};
|
|
176
176
|
export type PropertiesValue = {
|
|
177
|
-
|
|
177
|
+
atBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt524028;
|
|
178
178
|
};
|
|
179
179
|
export declare const GetConfigurationProductsDisabled3: {
|
|
180
180
|
readonly Update: "update";
|
|
@@ -207,17 +207,17 @@ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200Ap
|
|
|
207
207
|
readonly Domain: "domain";
|
|
208
208
|
};
|
|
209
209
|
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl = ClosedEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl>;
|
|
210
|
-
export type
|
|
210
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt524028 = {};
|
|
211
211
|
export type GetConfigurationProductsPropertiesIntegrationsMinLength = {
|
|
212
|
-
|
|
212
|
+
atBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt524028;
|
|
213
213
|
};
|
|
214
|
-
export type
|
|
214
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt524028 = {};
|
|
215
215
|
export type GetConfigurationProductsPropertiesIntegrationsMaxLength = {
|
|
216
|
-
|
|
216
|
+
atBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt524028;
|
|
217
217
|
};
|
|
218
|
-
export type
|
|
218
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt524028 = {};
|
|
219
219
|
export type GetConfigurationProductsPropertiesIntegrationsPattern = {
|
|
220
|
-
|
|
220
|
+
atBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt524028;
|
|
221
221
|
};
|
|
222
222
|
export declare const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3: {
|
|
223
223
|
readonly Update: "update";
|
|
@@ -282,17 +282,17 @@ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200Ap
|
|
|
282
282
|
readonly String: "string";
|
|
283
283
|
};
|
|
284
284
|
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8Type = ClosedEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8Type>;
|
|
285
|
-
export type
|
|
285
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt524028 = {};
|
|
286
286
|
export type GetConfigurationProductsPropertiesIntegrationsResponseMinLength = {
|
|
287
|
-
|
|
287
|
+
atBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt524028;
|
|
288
288
|
};
|
|
289
|
-
export type
|
|
289
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt524028 = {};
|
|
290
290
|
export type GetConfigurationProductsPropertiesIntegrationsResponseMaxLength = {
|
|
291
|
-
|
|
291
|
+
atBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt524028;
|
|
292
292
|
};
|
|
293
|
-
export type
|
|
293
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt524028 = {};
|
|
294
294
|
export type GetConfigurationProductsPropertiesIntegrationsResponsePattern = {
|
|
295
|
-
|
|
295
|
+
atBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt524028;
|
|
296
296
|
};
|
|
297
297
|
export type GetConfigurationProductsPropertiesIntegrationsItems = {
|
|
298
298
|
type: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8Type;
|
|
@@ -303,9 +303,9 @@ export type GetConfigurationProductsPropertiesIntegrationsItems = {
|
|
|
303
303
|
default?: string | undefined;
|
|
304
304
|
enum?: Array<string> | undefined;
|
|
305
305
|
};
|
|
306
|
-
export type
|
|
306
|
+
export type GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt524028 = {};
|
|
307
307
|
export type GetConfigurationProductsUiOptionsValue = {
|
|
308
|
-
|
|
308
|
+
atBRANDAt524028: GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt524028;
|
|
309
309
|
};
|
|
310
310
|
export declare const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson3: {
|
|
311
311
|
readonly Update: "update";
|
|
@@ -330,9 +330,9 @@ export type GetConfigurationProductsUiOptions3 = {
|
|
|
330
330
|
disabled?: GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson2 | boolean | GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson3 | undefined;
|
|
331
331
|
hidden?: GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJson2 | boolean | GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJson3 | undefined;
|
|
332
332
|
};
|
|
333
|
-
export type
|
|
333
|
+
export type GetConfigurationProductsUiOptionsAtBRANDAt524028 = {};
|
|
334
334
|
export type GetConfigurationProductsUiOptions2 = {
|
|
335
|
-
|
|
335
|
+
atBRANDAt524028: GetConfigurationProductsUiOptionsAtBRANDAt524028;
|
|
336
336
|
};
|
|
337
337
|
export declare const GetConfigurationProductsDisabledIntegrationsResponse2003: {
|
|
338
338
|
readonly Update: "update";
|
|
@@ -393,13 +393,13 @@ export type GetConfigurationProductsPropertiesIntegrationsResponse200Application
|
|
|
393
393
|
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiFormattedValue = {
|
|
394
394
|
expr: string;
|
|
395
395
|
};
|
|
396
|
-
export type
|
|
396
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt524028 = {};
|
|
397
397
|
export type Default = {
|
|
398
|
-
|
|
398
|
+
atBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt524028;
|
|
399
399
|
};
|
|
400
|
-
export type
|
|
400
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt524028 = {};
|
|
401
401
|
export type Example = {
|
|
402
|
-
|
|
402
|
+
atBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt524028;
|
|
403
403
|
};
|
|
404
404
|
export type Properties8 = {
|
|
405
405
|
type: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsType;
|
|
@@ -427,9 +427,9 @@ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200Ap
|
|
|
427
427
|
readonly VercelRegion: "vercel-region";
|
|
428
428
|
};
|
|
429
429
|
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiControl = ClosedEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiControl>;
|
|
430
|
-
export type
|
|
430
|
+
export type GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt524028 = {};
|
|
431
431
|
export type UiOptionsValue = {
|
|
432
|
-
|
|
432
|
+
atBRANDAt524028: GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt524028;
|
|
433
433
|
};
|
|
434
434
|
export declare const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3: {
|
|
435
435
|
readonly Update: "update";
|
|
@@ -454,9 +454,9 @@ export type UiOptions3 = {
|
|
|
454
454
|
disabled?: GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2 | boolean | GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3 | undefined;
|
|
455
455
|
hidden?: GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2 | boolean | GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3 | undefined;
|
|
456
456
|
};
|
|
457
|
-
export type
|
|
457
|
+
export type UiOptionsAtBRANDAt524028 = {};
|
|
458
458
|
export type UiOptions2 = {
|
|
459
|
-
|
|
459
|
+
atBRANDAt524028: UiOptionsAtBRANDAt524028;
|
|
460
460
|
};
|
|
461
461
|
export declare const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3: {
|
|
462
462
|
readonly Update: "update";
|
|
@@ -483,17 +483,17 @@ export type UiOptions1 = {
|
|
|
483
483
|
hidden?: GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2 | boolean | GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3 | undefined;
|
|
484
484
|
};
|
|
485
485
|
export type GetConfigurationProductsPropertiesUiOptions = UiOptions1 | UiOptions2 | UiOptions3;
|
|
486
|
-
export type
|
|
486
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt524028 = {};
|
|
487
487
|
export type GetConfigurationProductsPropertiesMinLength = {
|
|
488
|
-
|
|
488
|
+
atBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt524028;
|
|
489
489
|
};
|
|
490
|
-
export type
|
|
490
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt524028 = {};
|
|
491
491
|
export type GetConfigurationProductsPropertiesMaxLength = {
|
|
492
|
-
|
|
492
|
+
atBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt524028;
|
|
493
493
|
};
|
|
494
|
-
export type
|
|
494
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt524028 = {};
|
|
495
495
|
export type GetConfigurationProductsPropertiesPattern = {
|
|
496
|
-
|
|
496
|
+
atBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt524028;
|
|
497
497
|
};
|
|
498
498
|
export declare const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBody3: {
|
|
499
499
|
readonly Update: "update";
|
|
@@ -559,17 +559,17 @@ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200Ap
|
|
|
559
559
|
readonly String: "string";
|
|
560
560
|
};
|
|
561
561
|
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6Type = ClosedEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6Type>;
|
|
562
|
-
export type
|
|
562
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt524028 = {};
|
|
563
563
|
export type GetConfigurationProductsPropertiesIntegrationsResponse200MinLength = {
|
|
564
|
-
|
|
564
|
+
atBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt524028;
|
|
565
565
|
};
|
|
566
|
-
export type
|
|
566
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt524028 = {};
|
|
567
567
|
export type GetConfigurationProductsPropertiesIntegrationsResponse200MaxLength = {
|
|
568
|
-
|
|
568
|
+
atBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt524028;
|
|
569
569
|
};
|
|
570
|
-
export type
|
|
570
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt524028 = {};
|
|
571
571
|
export type GetConfigurationProductsPropertiesIntegrationsResponse200Pattern = {
|
|
572
|
-
|
|
572
|
+
atBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt524028;
|
|
573
573
|
};
|
|
574
574
|
export type GetConfigurationProductsPropertiesItems = {
|
|
575
575
|
type: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6Type;
|
|
@@ -688,17 +688,17 @@ export type UiOptions = {
|
|
|
688
688
|
disabled?: GetConfigurationProductsDisabledIntegrations2 | boolean | GetConfigurationProductsDisabledIntegrations3 | undefined;
|
|
689
689
|
hidden?: GetConfigurationProductsHiddenIntegrations2 | boolean | GetConfigurationProductsHiddenIntegrations3 | undefined;
|
|
690
690
|
};
|
|
691
|
-
export type
|
|
691
|
+
export type GetConfigurationProductsPropertiesIntegrationsAtBRANDAt524028 = {};
|
|
692
692
|
export type PropertiesMinLength = {
|
|
693
|
-
|
|
693
|
+
atBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsAtBRANDAt524028;
|
|
694
694
|
};
|
|
695
|
-
export type
|
|
695
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt524028 = {};
|
|
696
696
|
export type PropertiesMaxLength = {
|
|
697
|
-
|
|
697
|
+
atBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt524028;
|
|
698
698
|
};
|
|
699
|
-
export type
|
|
699
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt524028 = {};
|
|
700
700
|
export type PropertiesPattern = {
|
|
701
|
-
|
|
701
|
+
atBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt524028;
|
|
702
702
|
};
|
|
703
703
|
export declare const GetConfigurationProductsUiReadOnlyIntegrationsResponse2003: {
|
|
704
704
|
readonly Update: "update";
|
|
@@ -944,17 +944,17 @@ export declare const UiControl: {
|
|
|
944
944
|
readonly Input: "input";
|
|
945
945
|
};
|
|
946
946
|
export type UiControl = ClosedEnum<typeof UiControl>;
|
|
947
|
-
export type
|
|
947
|
+
export type AtBRANDAt524028 = {};
|
|
948
948
|
export type MinLength = {
|
|
949
|
-
|
|
949
|
+
atBRANDAt524028: AtBRANDAt524028;
|
|
950
950
|
};
|
|
951
|
-
export type
|
|
951
|
+
export type PropertiesAtBRANDAt524028 = {};
|
|
952
952
|
export type MaxLength = {
|
|
953
|
-
|
|
953
|
+
atBRANDAt524028: PropertiesAtBRANDAt524028;
|
|
954
954
|
};
|
|
955
|
-
export type
|
|
955
|
+
export type GetConfigurationProductsPropertiesAtBRANDAt524028 = {};
|
|
956
956
|
export type Pattern = {
|
|
957
|
-
|
|
957
|
+
atBRANDAt524028: GetConfigurationProductsPropertiesAtBRANDAt524028;
|
|
958
958
|
};
|
|
959
959
|
export declare const UiReadOnly3: {
|
|
960
960
|
readonly Update: "update";
|
|
@@ -1281,18 +1281,18 @@ export declare const GetConfigurationProductsType$inboundSchema: z.ZodNativeEnum
|
|
|
1281
1281
|
/** @internal */
|
|
1282
1282
|
export declare const GetConfigurationProductsType$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsType>;
|
|
1283
1283
|
/** @internal */
|
|
1284
|
-
export declare const
|
|
1284
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt524028$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt524028, z.ZodTypeDef, unknown>;
|
|
1285
1285
|
/** @internal */
|
|
1286
|
-
export type
|
|
1286
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt524028$Outbound = {};
|
|
1287
1287
|
/** @internal */
|
|
1288
|
-
export declare const
|
|
1289
|
-
export declare function
|
|
1290
|
-
export declare function
|
|
1288
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt524028$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt524028$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt524028>;
|
|
1289
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt524028ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt524028): string;
|
|
1290
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt524028FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt524028, SDKValidationError>;
|
|
1291
1291
|
/** @internal */
|
|
1292
1292
|
export declare const PropertiesValue$inboundSchema: z.ZodType<PropertiesValue, z.ZodTypeDef, unknown>;
|
|
1293
1293
|
/** @internal */
|
|
1294
1294
|
export type PropertiesValue$Outbound = {
|
|
1295
|
-
"__@BRAND@
|
|
1295
|
+
"__@BRAND@524028": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt524028$Outbound;
|
|
1296
1296
|
};
|
|
1297
1297
|
/** @internal */
|
|
1298
1298
|
export declare const PropertiesValue$outboundSchema: z.ZodType<PropertiesValue$Outbound, z.ZodTypeDef, PropertiesValue>;
|
|
@@ -1363,54 +1363,54 @@ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200Ap
|
|
|
1363
1363
|
/** @internal */
|
|
1364
1364
|
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl>;
|
|
1365
1365
|
/** @internal */
|
|
1366
|
-
export declare const
|
|
1366
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt524028$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt524028, z.ZodTypeDef, unknown>;
|
|
1367
1367
|
/** @internal */
|
|
1368
|
-
export type
|
|
1368
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt524028$Outbound = {};
|
|
1369
1369
|
/** @internal */
|
|
1370
|
-
export declare const
|
|
1371
|
-
export declare function
|
|
1372
|
-
export declare function
|
|
1370
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt524028$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt524028$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt524028>;
|
|
1371
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt524028ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt524028): string;
|
|
1372
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt524028FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt524028, SDKValidationError>;
|
|
1373
1373
|
/** @internal */
|
|
1374
1374
|
export declare const GetConfigurationProductsPropertiesIntegrationsMinLength$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsMinLength, z.ZodTypeDef, unknown>;
|
|
1375
1375
|
/** @internal */
|
|
1376
1376
|
export type GetConfigurationProductsPropertiesIntegrationsMinLength$Outbound = {
|
|
1377
|
-
"__@BRAND@
|
|
1377
|
+
"__@BRAND@524028": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt524028$Outbound;
|
|
1378
1378
|
};
|
|
1379
1379
|
/** @internal */
|
|
1380
1380
|
export declare const GetConfigurationProductsPropertiesIntegrationsMinLength$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsMinLength$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsMinLength>;
|
|
1381
1381
|
export declare function getConfigurationProductsPropertiesIntegrationsMinLengthToJSON(getConfigurationProductsPropertiesIntegrationsMinLength: GetConfigurationProductsPropertiesIntegrationsMinLength): string;
|
|
1382
1382
|
export declare function getConfigurationProductsPropertiesIntegrationsMinLengthFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsMinLength, SDKValidationError>;
|
|
1383
1383
|
/** @internal */
|
|
1384
|
-
export declare const
|
|
1384
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt524028$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt524028, z.ZodTypeDef, unknown>;
|
|
1385
1385
|
/** @internal */
|
|
1386
|
-
export type
|
|
1386
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt524028$Outbound = {};
|
|
1387
1387
|
/** @internal */
|
|
1388
|
-
export declare const
|
|
1389
|
-
export declare function
|
|
1390
|
-
export declare function
|
|
1388
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt524028$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt524028$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt524028>;
|
|
1389
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt524028ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt524028): string;
|
|
1390
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt524028FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt524028, SDKValidationError>;
|
|
1391
1391
|
/** @internal */
|
|
1392
1392
|
export declare const GetConfigurationProductsPropertiesIntegrationsMaxLength$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsMaxLength, z.ZodTypeDef, unknown>;
|
|
1393
1393
|
/** @internal */
|
|
1394
1394
|
export type GetConfigurationProductsPropertiesIntegrationsMaxLength$Outbound = {
|
|
1395
|
-
"__@BRAND@
|
|
1395
|
+
"__@BRAND@524028": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt524028$Outbound;
|
|
1396
1396
|
};
|
|
1397
1397
|
/** @internal */
|
|
1398
1398
|
export declare const GetConfigurationProductsPropertiesIntegrationsMaxLength$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsMaxLength$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsMaxLength>;
|
|
1399
1399
|
export declare function getConfigurationProductsPropertiesIntegrationsMaxLengthToJSON(getConfigurationProductsPropertiesIntegrationsMaxLength: GetConfigurationProductsPropertiesIntegrationsMaxLength): string;
|
|
1400
1400
|
export declare function getConfigurationProductsPropertiesIntegrationsMaxLengthFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsMaxLength, SDKValidationError>;
|
|
1401
1401
|
/** @internal */
|
|
1402
|
-
export declare const
|
|
1402
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt524028$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt524028, z.ZodTypeDef, unknown>;
|
|
1403
1403
|
/** @internal */
|
|
1404
|
-
export type
|
|
1404
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt524028$Outbound = {};
|
|
1405
1405
|
/** @internal */
|
|
1406
|
-
export declare const
|
|
1407
|
-
export declare function
|
|
1408
|
-
export declare function
|
|
1406
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt524028$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt524028$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt524028>;
|
|
1407
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt524028ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt524028): string;
|
|
1408
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt524028FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt524028, SDKValidationError>;
|
|
1409
1409
|
/** @internal */
|
|
1410
1410
|
export declare const GetConfigurationProductsPropertiesIntegrationsPattern$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsPattern, z.ZodTypeDef, unknown>;
|
|
1411
1411
|
/** @internal */
|
|
1412
1412
|
export type GetConfigurationProductsPropertiesIntegrationsPattern$Outbound = {
|
|
1413
|
-
"__@BRAND@
|
|
1413
|
+
"__@BRAND@524028": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt524028$Outbound;
|
|
1414
1414
|
};
|
|
1415
1415
|
/** @internal */
|
|
1416
1416
|
export declare const GetConfigurationProductsPropertiesIntegrationsPattern$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsPattern$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsPattern>;
|
|
@@ -1547,54 +1547,54 @@ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200Ap
|
|
|
1547
1547
|
/** @internal */
|
|
1548
1548
|
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8Type$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8Type>;
|
|
1549
1549
|
/** @internal */
|
|
1550
|
-
export declare const
|
|
1550
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt524028$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt524028, z.ZodTypeDef, unknown>;
|
|
1551
1551
|
/** @internal */
|
|
1552
|
-
export type
|
|
1552
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt524028$Outbound = {};
|
|
1553
1553
|
/** @internal */
|
|
1554
|
-
export declare const
|
|
1555
|
-
export declare function
|
|
1556
|
-
export declare function
|
|
1554
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt524028$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt524028$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt524028>;
|
|
1555
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt524028ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt524028): string;
|
|
1556
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt524028FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt524028, SDKValidationError>;
|
|
1557
1557
|
/** @internal */
|
|
1558
1558
|
export declare const GetConfigurationProductsPropertiesIntegrationsResponseMinLength$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponseMinLength, z.ZodTypeDef, unknown>;
|
|
1559
1559
|
/** @internal */
|
|
1560
1560
|
export type GetConfigurationProductsPropertiesIntegrationsResponseMinLength$Outbound = {
|
|
1561
|
-
"__@BRAND@
|
|
1561
|
+
"__@BRAND@524028": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt524028$Outbound;
|
|
1562
1562
|
};
|
|
1563
1563
|
/** @internal */
|
|
1564
1564
|
export declare const GetConfigurationProductsPropertiesIntegrationsResponseMinLength$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponseMinLength$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponseMinLength>;
|
|
1565
1565
|
export declare function getConfigurationProductsPropertiesIntegrationsResponseMinLengthToJSON(getConfigurationProductsPropertiesIntegrationsResponseMinLength: GetConfigurationProductsPropertiesIntegrationsResponseMinLength): string;
|
|
1566
1566
|
export declare function getConfigurationProductsPropertiesIntegrationsResponseMinLengthFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponseMinLength, SDKValidationError>;
|
|
1567
1567
|
/** @internal */
|
|
1568
|
-
export declare const
|
|
1568
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt524028$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt524028, z.ZodTypeDef, unknown>;
|
|
1569
1569
|
/** @internal */
|
|
1570
|
-
export type
|
|
1570
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt524028$Outbound = {};
|
|
1571
1571
|
/** @internal */
|
|
1572
|
-
export declare const
|
|
1573
|
-
export declare function
|
|
1574
|
-
export declare function
|
|
1572
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt524028$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt524028$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt524028>;
|
|
1573
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt524028ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt524028): string;
|
|
1574
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt524028FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt524028, SDKValidationError>;
|
|
1575
1575
|
/** @internal */
|
|
1576
1576
|
export declare const GetConfigurationProductsPropertiesIntegrationsResponseMaxLength$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponseMaxLength, z.ZodTypeDef, unknown>;
|
|
1577
1577
|
/** @internal */
|
|
1578
1578
|
export type GetConfigurationProductsPropertiesIntegrationsResponseMaxLength$Outbound = {
|
|
1579
|
-
"__@BRAND@
|
|
1579
|
+
"__@BRAND@524028": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt524028$Outbound;
|
|
1580
1580
|
};
|
|
1581
1581
|
/** @internal */
|
|
1582
1582
|
export declare const GetConfigurationProductsPropertiesIntegrationsResponseMaxLength$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponseMaxLength$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponseMaxLength>;
|
|
1583
1583
|
export declare function getConfigurationProductsPropertiesIntegrationsResponseMaxLengthToJSON(getConfigurationProductsPropertiesIntegrationsResponseMaxLength: GetConfigurationProductsPropertiesIntegrationsResponseMaxLength): string;
|
|
1584
1584
|
export declare function getConfigurationProductsPropertiesIntegrationsResponseMaxLengthFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponseMaxLength, SDKValidationError>;
|
|
1585
1585
|
/** @internal */
|
|
1586
|
-
export declare const
|
|
1586
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt524028$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt524028, z.ZodTypeDef, unknown>;
|
|
1587
1587
|
/** @internal */
|
|
1588
|
-
export type
|
|
1588
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt524028$Outbound = {};
|
|
1589
1589
|
/** @internal */
|
|
1590
|
-
export declare const
|
|
1591
|
-
export declare function
|
|
1592
|
-
export declare function
|
|
1590
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt524028$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt524028$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt524028>;
|
|
1591
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt524028ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt524028): string;
|
|
1592
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt524028FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt524028, SDKValidationError>;
|
|
1593
1593
|
/** @internal */
|
|
1594
1594
|
export declare const GetConfigurationProductsPropertiesIntegrationsResponsePattern$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponsePattern, z.ZodTypeDef, unknown>;
|
|
1595
1595
|
/** @internal */
|
|
1596
1596
|
export type GetConfigurationProductsPropertiesIntegrationsResponsePattern$Outbound = {
|
|
1597
|
-
"__@BRAND@
|
|
1597
|
+
"__@BRAND@524028": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt524028$Outbound;
|
|
1598
1598
|
};
|
|
1599
1599
|
/** @internal */
|
|
1600
1600
|
export declare const GetConfigurationProductsPropertiesIntegrationsResponsePattern$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponsePattern$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponsePattern>;
|
|
@@ -1617,18 +1617,18 @@ export declare const GetConfigurationProductsPropertiesIntegrationsItems$outboun
|
|
|
1617
1617
|
export declare function getConfigurationProductsPropertiesIntegrationsItemsToJSON(getConfigurationProductsPropertiesIntegrationsItems: GetConfigurationProductsPropertiesIntegrationsItems): string;
|
|
1618
1618
|
export declare function getConfigurationProductsPropertiesIntegrationsItemsFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsItems, SDKValidationError>;
|
|
1619
1619
|
/** @internal */
|
|
1620
|
-
export declare const
|
|
1620
|
+
export declare const GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt524028$inboundSchema: z.ZodType<GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt524028, z.ZodTypeDef, unknown>;
|
|
1621
1621
|
/** @internal */
|
|
1622
|
-
export type
|
|
1622
|
+
export type GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt524028$Outbound = {};
|
|
1623
1623
|
/** @internal */
|
|
1624
|
-
export declare const
|
|
1625
|
-
export declare function
|
|
1626
|
-
export declare function
|
|
1624
|
+
export declare const GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt524028$outboundSchema: z.ZodType<GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt524028$Outbound, z.ZodTypeDef, GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt524028>;
|
|
1625
|
+
export declare function getConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt524028ToJSON(getConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt524028: GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt524028): string;
|
|
1626
|
+
export declare function getConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt524028FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt524028, SDKValidationError>;
|
|
1627
1627
|
/** @internal */
|
|
1628
1628
|
export declare const GetConfigurationProductsUiOptionsValue$inboundSchema: z.ZodType<GetConfigurationProductsUiOptionsValue, z.ZodTypeDef, unknown>;
|
|
1629
1629
|
/** @internal */
|
|
1630
1630
|
export type GetConfigurationProductsUiOptionsValue$Outbound = {
|
|
1631
|
-
"__@BRAND@
|
|
1631
|
+
"__@BRAND@524028": GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt524028$Outbound;
|
|
1632
1632
|
};
|
|
1633
1633
|
/** @internal */
|
|
1634
1634
|
export declare const GetConfigurationProductsUiOptionsValue$outboundSchema: z.ZodType<GetConfigurationProductsUiOptionsValue$Outbound, z.ZodTypeDef, GetConfigurationProductsUiOptionsValue>;
|
|
@@ -1691,18 +1691,18 @@ export declare const GetConfigurationProductsUiOptions3$outboundSchema: z.ZodTyp
|
|
|
1691
1691
|
export declare function getConfigurationProductsUiOptions3ToJSON(getConfigurationProductsUiOptions3: GetConfigurationProductsUiOptions3): string;
|
|
1692
1692
|
export declare function getConfigurationProductsUiOptions3FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiOptions3, SDKValidationError>;
|
|
1693
1693
|
/** @internal */
|
|
1694
|
-
export declare const
|
|
1694
|
+
export declare const GetConfigurationProductsUiOptionsAtBRANDAt524028$inboundSchema: z.ZodType<GetConfigurationProductsUiOptionsAtBRANDAt524028, z.ZodTypeDef, unknown>;
|
|
1695
1695
|
/** @internal */
|
|
1696
|
-
export type
|
|
1696
|
+
export type GetConfigurationProductsUiOptionsAtBRANDAt524028$Outbound = {};
|
|
1697
1697
|
/** @internal */
|
|
1698
|
-
export declare const
|
|
1699
|
-
export declare function
|
|
1700
|
-
export declare function
|
|
1698
|
+
export declare const GetConfigurationProductsUiOptionsAtBRANDAt524028$outboundSchema: z.ZodType<GetConfigurationProductsUiOptionsAtBRANDAt524028$Outbound, z.ZodTypeDef, GetConfigurationProductsUiOptionsAtBRANDAt524028>;
|
|
1699
|
+
export declare function getConfigurationProductsUiOptionsAtBRANDAt524028ToJSON(getConfigurationProductsUiOptionsAtBRANDAt524028: GetConfigurationProductsUiOptionsAtBRANDAt524028): string;
|
|
1700
|
+
export declare function getConfigurationProductsUiOptionsAtBRANDAt524028FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiOptionsAtBRANDAt524028, SDKValidationError>;
|
|
1701
1701
|
/** @internal */
|
|
1702
1702
|
export declare const GetConfigurationProductsUiOptions2$inboundSchema: z.ZodType<GetConfigurationProductsUiOptions2, z.ZodTypeDef, unknown>;
|
|
1703
1703
|
/** @internal */
|
|
1704
1704
|
export type GetConfigurationProductsUiOptions2$Outbound = {
|
|
1705
|
-
"__@BRAND@
|
|
1705
|
+
"__@BRAND@524028": GetConfigurationProductsUiOptionsAtBRANDAt524028$Outbound;
|
|
1706
1706
|
};
|
|
1707
1707
|
/** @internal */
|
|
1708
1708
|
export declare const GetConfigurationProductsUiOptions2$outboundSchema: z.ZodType<GetConfigurationProductsUiOptions2$Outbound, z.ZodTypeDef, GetConfigurationProductsUiOptions2>;
|
|
@@ -1868,36 +1868,36 @@ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200Ap
|
|
|
1868
1868
|
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiFormattedValueToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiFormattedValue: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiFormattedValue): string;
|
|
1869
1869
|
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiFormattedValueFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiFormattedValue, SDKValidationError>;
|
|
1870
1870
|
/** @internal */
|
|
1871
|
-
export declare const
|
|
1871
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt524028$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt524028, z.ZodTypeDef, unknown>;
|
|
1872
1872
|
/** @internal */
|
|
1873
|
-
export type
|
|
1873
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt524028$Outbound = {};
|
|
1874
1874
|
/** @internal */
|
|
1875
|
-
export declare const
|
|
1876
|
-
export declare function
|
|
1877
|
-
export declare function
|
|
1875
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt524028$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt524028$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt524028>;
|
|
1876
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt524028ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt524028): string;
|
|
1877
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt524028FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt524028, SDKValidationError>;
|
|
1878
1878
|
/** @internal */
|
|
1879
1879
|
export declare const Default$inboundSchema: z.ZodType<Default, z.ZodTypeDef, unknown>;
|
|
1880
1880
|
/** @internal */
|
|
1881
1881
|
export type Default$Outbound = {
|
|
1882
|
-
"__@BRAND@
|
|
1882
|
+
"__@BRAND@524028": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt524028$Outbound;
|
|
1883
1883
|
};
|
|
1884
1884
|
/** @internal */
|
|
1885
1885
|
export declare const Default$outboundSchema: z.ZodType<Default$Outbound, z.ZodTypeDef, Default>;
|
|
1886
1886
|
export declare function defaultToJSON(value: Default): string;
|
|
1887
1887
|
export declare function defaultFromJSON(jsonString: string): SafeParseResult<Default, SDKValidationError>;
|
|
1888
1888
|
/** @internal */
|
|
1889
|
-
export declare const
|
|
1889
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt524028$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt524028, z.ZodTypeDef, unknown>;
|
|
1890
1890
|
/** @internal */
|
|
1891
|
-
export type
|
|
1891
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt524028$Outbound = {};
|
|
1892
1892
|
/** @internal */
|
|
1893
|
-
export declare const
|
|
1894
|
-
export declare function
|
|
1895
|
-
export declare function
|
|
1893
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt524028$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt524028$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt524028>;
|
|
1894
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt524028ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt524028): string;
|
|
1895
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt524028FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt524028, SDKValidationError>;
|
|
1896
1896
|
/** @internal */
|
|
1897
1897
|
export declare const Example$inboundSchema: z.ZodType<Example, z.ZodTypeDef, unknown>;
|
|
1898
1898
|
/** @internal */
|
|
1899
1899
|
export type Example$Outbound = {
|
|
1900
|
-
"__@BRAND@
|
|
1900
|
+
"__@BRAND@524028": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt524028$Outbound;
|
|
1901
1901
|
};
|
|
1902
1902
|
/** @internal */
|
|
1903
1903
|
export declare const Example$outboundSchema: z.ZodType<Example$Outbound, z.ZodTypeDef, Example>;
|
|
@@ -1937,18 +1937,18 @@ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200Ap
|
|
|
1937
1937
|
/** @internal */
|
|
1938
1938
|
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiControl$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiControl>;
|
|
1939
1939
|
/** @internal */
|
|
1940
|
-
export declare const
|
|
1940
|
+
export declare const GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt524028$inboundSchema: z.ZodType<GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt524028, z.ZodTypeDef, unknown>;
|
|
1941
1941
|
/** @internal */
|
|
1942
|
-
export type
|
|
1942
|
+
export type GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt524028$Outbound = {};
|
|
1943
1943
|
/** @internal */
|
|
1944
|
-
export declare const
|
|
1945
|
-
export declare function
|
|
1946
|
-
export declare function
|
|
1944
|
+
export declare const GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt524028$outboundSchema: z.ZodType<GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt524028$Outbound, z.ZodTypeDef, GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt524028>;
|
|
1945
|
+
export declare function getConfigurationProductsUiOptionsIntegrationsAtBRANDAt524028ToJSON(getConfigurationProductsUiOptionsIntegrationsAtBRANDAt524028: GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt524028): string;
|
|
1946
|
+
export declare function getConfigurationProductsUiOptionsIntegrationsAtBRANDAt524028FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt524028, SDKValidationError>;
|
|
1947
1947
|
/** @internal */
|
|
1948
1948
|
export declare const UiOptionsValue$inboundSchema: z.ZodType<UiOptionsValue, z.ZodTypeDef, unknown>;
|
|
1949
1949
|
/** @internal */
|
|
1950
1950
|
export type UiOptionsValue$Outbound = {
|
|
1951
|
-
"__@BRAND@
|
|
1951
|
+
"__@BRAND@524028": GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt524028$Outbound;
|
|
1952
1952
|
};
|
|
1953
1953
|
/** @internal */
|
|
1954
1954
|
export declare const UiOptionsValue$outboundSchema: z.ZodType<UiOptionsValue$Outbound, z.ZodTypeDef, UiOptionsValue>;
|
|
@@ -2011,18 +2011,18 @@ export declare const UiOptions3$outboundSchema: z.ZodType<UiOptions3$Outbound, z
|
|
|
2011
2011
|
export declare function uiOptions3ToJSON(uiOptions3: UiOptions3): string;
|
|
2012
2012
|
export declare function uiOptions3FromJSON(jsonString: string): SafeParseResult<UiOptions3, SDKValidationError>;
|
|
2013
2013
|
/** @internal */
|
|
2014
|
-
export declare const
|
|
2014
|
+
export declare const UiOptionsAtBRANDAt524028$inboundSchema: z.ZodType<UiOptionsAtBRANDAt524028, z.ZodTypeDef, unknown>;
|
|
2015
2015
|
/** @internal */
|
|
2016
|
-
export type
|
|
2016
|
+
export type UiOptionsAtBRANDAt524028$Outbound = {};
|
|
2017
2017
|
/** @internal */
|
|
2018
|
-
export declare const
|
|
2019
|
-
export declare function
|
|
2020
|
-
export declare function
|
|
2018
|
+
export declare const UiOptionsAtBRANDAt524028$outboundSchema: z.ZodType<UiOptionsAtBRANDAt524028$Outbound, z.ZodTypeDef, UiOptionsAtBRANDAt524028>;
|
|
2019
|
+
export declare function uiOptionsAtBRANDAt524028ToJSON(uiOptionsAtBRANDAt524028: UiOptionsAtBRANDAt524028): string;
|
|
2020
|
+
export declare function uiOptionsAtBRANDAt524028FromJSON(jsonString: string): SafeParseResult<UiOptionsAtBRANDAt524028, SDKValidationError>;
|
|
2021
2021
|
/** @internal */
|
|
2022
2022
|
export declare const UiOptions2$inboundSchema: z.ZodType<UiOptions2, z.ZodTypeDef, unknown>;
|
|
2023
2023
|
/** @internal */
|
|
2024
2024
|
export type UiOptions2$Outbound = {
|
|
2025
|
-
"__@BRAND@
|
|
2025
|
+
"__@BRAND@524028": UiOptionsAtBRANDAt524028$Outbound;
|
|
2026
2026
|
};
|
|
2027
2027
|
/** @internal */
|
|
2028
2028
|
export declare const UiOptions2$outboundSchema: z.ZodType<UiOptions2$Outbound, z.ZodTypeDef, UiOptions2>;
|
|
@@ -2094,54 +2094,54 @@ export declare const GetConfigurationProductsPropertiesUiOptions$outboundSchema:
|
|
|
2094
2094
|
export declare function getConfigurationProductsPropertiesUiOptionsToJSON(getConfigurationProductsPropertiesUiOptions: GetConfigurationProductsPropertiesUiOptions): string;
|
|
2095
2095
|
export declare function getConfigurationProductsPropertiesUiOptionsFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesUiOptions, SDKValidationError>;
|
|
2096
2096
|
/** @internal */
|
|
2097
|
-
export declare const
|
|
2097
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt524028$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt524028, z.ZodTypeDef, unknown>;
|
|
2098
2098
|
/** @internal */
|
|
2099
|
-
export type
|
|
2099
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt524028$Outbound = {};
|
|
2100
2100
|
/** @internal */
|
|
2101
|
-
export declare const
|
|
2102
|
-
export declare function
|
|
2103
|
-
export declare function
|
|
2101
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt524028$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt524028$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt524028>;
|
|
2102
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt524028ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt524028): string;
|
|
2103
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt524028FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt524028, SDKValidationError>;
|
|
2104
2104
|
/** @internal */
|
|
2105
2105
|
export declare const GetConfigurationProductsPropertiesMinLength$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesMinLength, z.ZodTypeDef, unknown>;
|
|
2106
2106
|
/** @internal */
|
|
2107
2107
|
export type GetConfigurationProductsPropertiesMinLength$Outbound = {
|
|
2108
|
-
"__@BRAND@
|
|
2108
|
+
"__@BRAND@524028": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt524028$Outbound;
|
|
2109
2109
|
};
|
|
2110
2110
|
/** @internal */
|
|
2111
2111
|
export declare const GetConfigurationProductsPropertiesMinLength$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesMinLength$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesMinLength>;
|
|
2112
2112
|
export declare function getConfigurationProductsPropertiesMinLengthToJSON(getConfigurationProductsPropertiesMinLength: GetConfigurationProductsPropertiesMinLength): string;
|
|
2113
2113
|
export declare function getConfigurationProductsPropertiesMinLengthFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesMinLength, SDKValidationError>;
|
|
2114
2114
|
/** @internal */
|
|
2115
|
-
export declare const
|
|
2115
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt524028$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt524028, z.ZodTypeDef, unknown>;
|
|
2116
2116
|
/** @internal */
|
|
2117
|
-
export type
|
|
2117
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt524028$Outbound = {};
|
|
2118
2118
|
/** @internal */
|
|
2119
|
-
export declare const
|
|
2120
|
-
export declare function
|
|
2121
|
-
export declare function
|
|
2119
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt524028$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt524028$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt524028>;
|
|
2120
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt524028ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt524028): string;
|
|
2121
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt524028FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt524028, SDKValidationError>;
|
|
2122
2122
|
/** @internal */
|
|
2123
2123
|
export declare const GetConfigurationProductsPropertiesMaxLength$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesMaxLength, z.ZodTypeDef, unknown>;
|
|
2124
2124
|
/** @internal */
|
|
2125
2125
|
export type GetConfigurationProductsPropertiesMaxLength$Outbound = {
|
|
2126
|
-
"__@BRAND@
|
|
2126
|
+
"__@BRAND@524028": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt524028$Outbound;
|
|
2127
2127
|
};
|
|
2128
2128
|
/** @internal */
|
|
2129
2129
|
export declare const GetConfigurationProductsPropertiesMaxLength$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesMaxLength$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesMaxLength>;
|
|
2130
2130
|
export declare function getConfigurationProductsPropertiesMaxLengthToJSON(getConfigurationProductsPropertiesMaxLength: GetConfigurationProductsPropertiesMaxLength): string;
|
|
2131
2131
|
export declare function getConfigurationProductsPropertiesMaxLengthFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesMaxLength, SDKValidationError>;
|
|
2132
2132
|
/** @internal */
|
|
2133
|
-
export declare const
|
|
2133
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt524028$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt524028, z.ZodTypeDef, unknown>;
|
|
2134
2134
|
/** @internal */
|
|
2135
|
-
export type
|
|
2135
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt524028$Outbound = {};
|
|
2136
2136
|
/** @internal */
|
|
2137
|
-
export declare const
|
|
2138
|
-
export declare function
|
|
2139
|
-
export declare function
|
|
2137
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt524028$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt524028$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt524028>;
|
|
2138
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt524028ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt524028): string;
|
|
2139
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt524028FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt524028, SDKValidationError>;
|
|
2140
2140
|
/** @internal */
|
|
2141
2141
|
export declare const GetConfigurationProductsPropertiesPattern$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesPattern, z.ZodTypeDef, unknown>;
|
|
2142
2142
|
/** @internal */
|
|
2143
2143
|
export type GetConfigurationProductsPropertiesPattern$Outbound = {
|
|
2144
|
-
"__@BRAND@
|
|
2144
|
+
"__@BRAND@524028": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt524028$Outbound;
|
|
2145
2145
|
};
|
|
2146
2146
|
/** @internal */
|
|
2147
2147
|
export declare const GetConfigurationProductsPropertiesPattern$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesPattern$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesPattern>;
|
|
@@ -2279,54 +2279,54 @@ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200Ap
|
|
|
2279
2279
|
/** @internal */
|
|
2280
2280
|
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6Type$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6Type>;
|
|
2281
2281
|
/** @internal */
|
|
2282
|
-
export declare const
|
|
2282
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt524028$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt524028, z.ZodTypeDef, unknown>;
|
|
2283
2283
|
/** @internal */
|
|
2284
|
-
export type
|
|
2284
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt524028$Outbound = {};
|
|
2285
2285
|
/** @internal */
|
|
2286
|
-
export declare const
|
|
2287
|
-
export declare function
|
|
2288
|
-
export declare function
|
|
2286
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt524028$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt524028$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt524028>;
|
|
2287
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt524028ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt524028): string;
|
|
2288
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt524028FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt524028, SDKValidationError>;
|
|
2289
2289
|
/** @internal */
|
|
2290
2290
|
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200MinLength$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200MinLength, z.ZodTypeDef, unknown>;
|
|
2291
2291
|
/** @internal */
|
|
2292
2292
|
export type GetConfigurationProductsPropertiesIntegrationsResponse200MinLength$Outbound = {
|
|
2293
|
-
"__@BRAND@
|
|
2293
|
+
"__@BRAND@524028": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt524028$Outbound;
|
|
2294
2294
|
};
|
|
2295
2295
|
/** @internal */
|
|
2296
2296
|
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200MinLength$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200MinLength$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200MinLength>;
|
|
2297
2297
|
export declare function getConfigurationProductsPropertiesIntegrationsResponse200MinLengthToJSON(getConfigurationProductsPropertiesIntegrationsResponse200MinLength: GetConfigurationProductsPropertiesIntegrationsResponse200MinLength): string;
|
|
2298
2298
|
export declare function getConfigurationProductsPropertiesIntegrationsResponse200MinLengthFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200MinLength, SDKValidationError>;
|
|
2299
2299
|
/** @internal */
|
|
2300
|
-
export declare const
|
|
2300
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt524028$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt524028, z.ZodTypeDef, unknown>;
|
|
2301
2301
|
/** @internal */
|
|
2302
|
-
export type
|
|
2302
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt524028$Outbound = {};
|
|
2303
2303
|
/** @internal */
|
|
2304
|
-
export declare const
|
|
2305
|
-
export declare function
|
|
2306
|
-
export declare function
|
|
2304
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt524028$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt524028$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt524028>;
|
|
2305
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt524028ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt524028): string;
|
|
2306
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt524028FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt524028, SDKValidationError>;
|
|
2307
2307
|
/** @internal */
|
|
2308
2308
|
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200MaxLength$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200MaxLength, z.ZodTypeDef, unknown>;
|
|
2309
2309
|
/** @internal */
|
|
2310
2310
|
export type GetConfigurationProductsPropertiesIntegrationsResponse200MaxLength$Outbound = {
|
|
2311
|
-
"__@BRAND@
|
|
2311
|
+
"__@BRAND@524028": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt524028$Outbound;
|
|
2312
2312
|
};
|
|
2313
2313
|
/** @internal */
|
|
2314
2314
|
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200MaxLength$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200MaxLength$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200MaxLength>;
|
|
2315
2315
|
export declare function getConfigurationProductsPropertiesIntegrationsResponse200MaxLengthToJSON(getConfigurationProductsPropertiesIntegrationsResponse200MaxLength: GetConfigurationProductsPropertiesIntegrationsResponse200MaxLength): string;
|
|
2316
2316
|
export declare function getConfigurationProductsPropertiesIntegrationsResponse200MaxLengthFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200MaxLength, SDKValidationError>;
|
|
2317
2317
|
/** @internal */
|
|
2318
|
-
export declare const
|
|
2318
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt524028$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt524028, z.ZodTypeDef, unknown>;
|
|
2319
2319
|
/** @internal */
|
|
2320
|
-
export type
|
|
2320
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt524028$Outbound = {};
|
|
2321
2321
|
/** @internal */
|
|
2322
|
-
export declare const
|
|
2323
|
-
export declare function
|
|
2324
|
-
export declare function
|
|
2322
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt524028$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt524028$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt524028>;
|
|
2323
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt524028ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt524028): string;
|
|
2324
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt524028FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt524028, SDKValidationError>;
|
|
2325
2325
|
/** @internal */
|
|
2326
2326
|
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200Pattern$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200Pattern, z.ZodTypeDef, unknown>;
|
|
2327
2327
|
/** @internal */
|
|
2328
2328
|
export type GetConfigurationProductsPropertiesIntegrationsResponse200Pattern$Outbound = {
|
|
2329
|
-
"__@BRAND@
|
|
2329
|
+
"__@BRAND@524028": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt524028$Outbound;
|
|
2330
2330
|
};
|
|
2331
2331
|
/** @internal */
|
|
2332
2332
|
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200Pattern$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200Pattern$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200Pattern>;
|
|
@@ -2590,54 +2590,54 @@ export declare const UiOptions$outboundSchema: z.ZodType<UiOptions$Outbound, z.Z
|
|
|
2590
2590
|
export declare function uiOptionsToJSON(uiOptions: UiOptions): string;
|
|
2591
2591
|
export declare function uiOptionsFromJSON(jsonString: string): SafeParseResult<UiOptions, SDKValidationError>;
|
|
2592
2592
|
/** @internal */
|
|
2593
|
-
export declare const
|
|
2593
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsAtBRANDAt524028$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsAtBRANDAt524028, z.ZodTypeDef, unknown>;
|
|
2594
2594
|
/** @internal */
|
|
2595
|
-
export type
|
|
2595
|
+
export type GetConfigurationProductsPropertiesIntegrationsAtBRANDAt524028$Outbound = {};
|
|
2596
2596
|
/** @internal */
|
|
2597
|
-
export declare const
|
|
2598
|
-
export declare function
|
|
2599
|
-
export declare function
|
|
2597
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsAtBRANDAt524028$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsAtBRANDAt524028$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsAtBRANDAt524028>;
|
|
2598
|
+
export declare function getConfigurationProductsPropertiesIntegrationsAtBRANDAt524028ToJSON(getConfigurationProductsPropertiesIntegrationsAtBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsAtBRANDAt524028): string;
|
|
2599
|
+
export declare function getConfigurationProductsPropertiesIntegrationsAtBRANDAt524028FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsAtBRANDAt524028, SDKValidationError>;
|
|
2600
2600
|
/** @internal */
|
|
2601
2601
|
export declare const PropertiesMinLength$inboundSchema: z.ZodType<PropertiesMinLength, z.ZodTypeDef, unknown>;
|
|
2602
2602
|
/** @internal */
|
|
2603
2603
|
export type PropertiesMinLength$Outbound = {
|
|
2604
|
-
"__@BRAND@
|
|
2604
|
+
"__@BRAND@524028": GetConfigurationProductsPropertiesIntegrationsAtBRANDAt524028$Outbound;
|
|
2605
2605
|
};
|
|
2606
2606
|
/** @internal */
|
|
2607
2607
|
export declare const PropertiesMinLength$outboundSchema: z.ZodType<PropertiesMinLength$Outbound, z.ZodTypeDef, PropertiesMinLength>;
|
|
2608
2608
|
export declare function propertiesMinLengthToJSON(propertiesMinLength: PropertiesMinLength): string;
|
|
2609
2609
|
export declare function propertiesMinLengthFromJSON(jsonString: string): SafeParseResult<PropertiesMinLength, SDKValidationError>;
|
|
2610
2610
|
/** @internal */
|
|
2611
|
-
export declare const
|
|
2611
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt524028$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt524028, z.ZodTypeDef, unknown>;
|
|
2612
2612
|
/** @internal */
|
|
2613
|
-
export type
|
|
2613
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt524028$Outbound = {};
|
|
2614
2614
|
/** @internal */
|
|
2615
|
-
export declare const
|
|
2616
|
-
export declare function
|
|
2617
|
-
export declare function
|
|
2615
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt524028$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt524028$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt524028>;
|
|
2616
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt524028ToJSON(getConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt524028): string;
|
|
2617
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt524028FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt524028, SDKValidationError>;
|
|
2618
2618
|
/** @internal */
|
|
2619
2619
|
export declare const PropertiesMaxLength$inboundSchema: z.ZodType<PropertiesMaxLength, z.ZodTypeDef, unknown>;
|
|
2620
2620
|
/** @internal */
|
|
2621
2621
|
export type PropertiesMaxLength$Outbound = {
|
|
2622
|
-
"__@BRAND@
|
|
2622
|
+
"__@BRAND@524028": GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt524028$Outbound;
|
|
2623
2623
|
};
|
|
2624
2624
|
/** @internal */
|
|
2625
2625
|
export declare const PropertiesMaxLength$outboundSchema: z.ZodType<PropertiesMaxLength$Outbound, z.ZodTypeDef, PropertiesMaxLength>;
|
|
2626
2626
|
export declare function propertiesMaxLengthToJSON(propertiesMaxLength: PropertiesMaxLength): string;
|
|
2627
2627
|
export declare function propertiesMaxLengthFromJSON(jsonString: string): SafeParseResult<PropertiesMaxLength, SDKValidationError>;
|
|
2628
2628
|
/** @internal */
|
|
2629
|
-
export declare const
|
|
2629
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt524028$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt524028, z.ZodTypeDef, unknown>;
|
|
2630
2630
|
/** @internal */
|
|
2631
|
-
export type
|
|
2631
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt524028$Outbound = {};
|
|
2632
2632
|
/** @internal */
|
|
2633
|
-
export declare const
|
|
2634
|
-
export declare function
|
|
2635
|
-
export declare function
|
|
2633
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt524028$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt524028$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt524028>;
|
|
2634
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt524028ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt524028: GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt524028): string;
|
|
2635
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt524028FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt524028, SDKValidationError>;
|
|
2636
2636
|
/** @internal */
|
|
2637
2637
|
export declare const PropertiesPattern$inboundSchema: z.ZodType<PropertiesPattern, z.ZodTypeDef, unknown>;
|
|
2638
2638
|
/** @internal */
|
|
2639
2639
|
export type PropertiesPattern$Outbound = {
|
|
2640
|
-
"__@BRAND@
|
|
2640
|
+
"__@BRAND@524028": GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt524028$Outbound;
|
|
2641
2641
|
};
|
|
2642
2642
|
/** @internal */
|
|
2643
2643
|
export declare const PropertiesPattern$outboundSchema: z.ZodType<PropertiesPattern$Outbound, z.ZodTypeDef, PropertiesPattern>;
|
|
@@ -3163,54 +3163,54 @@ export declare const UiControl$inboundSchema: z.ZodNativeEnum<typeof UiControl>;
|
|
|
3163
3163
|
/** @internal */
|
|
3164
3164
|
export declare const UiControl$outboundSchema: z.ZodNativeEnum<typeof UiControl>;
|
|
3165
3165
|
/** @internal */
|
|
3166
|
-
export declare const
|
|
3166
|
+
export declare const AtBRANDAt524028$inboundSchema: z.ZodType<AtBRANDAt524028, z.ZodTypeDef, unknown>;
|
|
3167
3167
|
/** @internal */
|
|
3168
|
-
export type
|
|
3168
|
+
export type AtBRANDAt524028$Outbound = {};
|
|
3169
3169
|
/** @internal */
|
|
3170
|
-
export declare const
|
|
3171
|
-
export declare function
|
|
3172
|
-
export declare function
|
|
3170
|
+
export declare const AtBRANDAt524028$outboundSchema: z.ZodType<AtBRANDAt524028$Outbound, z.ZodTypeDef, AtBRANDAt524028>;
|
|
3171
|
+
export declare function atBRANDAt524028ToJSON(atBRANDAt524028: AtBRANDAt524028): string;
|
|
3172
|
+
export declare function atBRANDAt524028FromJSON(jsonString: string): SafeParseResult<AtBRANDAt524028, SDKValidationError>;
|
|
3173
3173
|
/** @internal */
|
|
3174
3174
|
export declare const MinLength$inboundSchema: z.ZodType<MinLength, z.ZodTypeDef, unknown>;
|
|
3175
3175
|
/** @internal */
|
|
3176
3176
|
export type MinLength$Outbound = {
|
|
3177
|
-
"__@BRAND@
|
|
3177
|
+
"__@BRAND@524028": AtBRANDAt524028$Outbound;
|
|
3178
3178
|
};
|
|
3179
3179
|
/** @internal */
|
|
3180
3180
|
export declare const MinLength$outboundSchema: z.ZodType<MinLength$Outbound, z.ZodTypeDef, MinLength>;
|
|
3181
3181
|
export declare function minLengthToJSON(minLength: MinLength): string;
|
|
3182
3182
|
export declare function minLengthFromJSON(jsonString: string): SafeParseResult<MinLength, SDKValidationError>;
|
|
3183
3183
|
/** @internal */
|
|
3184
|
-
export declare const
|
|
3184
|
+
export declare const PropertiesAtBRANDAt524028$inboundSchema: z.ZodType<PropertiesAtBRANDAt524028, z.ZodTypeDef, unknown>;
|
|
3185
3185
|
/** @internal */
|
|
3186
|
-
export type
|
|
3186
|
+
export type PropertiesAtBRANDAt524028$Outbound = {};
|
|
3187
3187
|
/** @internal */
|
|
3188
|
-
export declare const
|
|
3189
|
-
export declare function
|
|
3190
|
-
export declare function
|
|
3188
|
+
export declare const PropertiesAtBRANDAt524028$outboundSchema: z.ZodType<PropertiesAtBRANDAt524028$Outbound, z.ZodTypeDef, PropertiesAtBRANDAt524028>;
|
|
3189
|
+
export declare function propertiesAtBRANDAt524028ToJSON(propertiesAtBRANDAt524028: PropertiesAtBRANDAt524028): string;
|
|
3190
|
+
export declare function propertiesAtBRANDAt524028FromJSON(jsonString: string): SafeParseResult<PropertiesAtBRANDAt524028, SDKValidationError>;
|
|
3191
3191
|
/** @internal */
|
|
3192
3192
|
export declare const MaxLength$inboundSchema: z.ZodType<MaxLength, z.ZodTypeDef, unknown>;
|
|
3193
3193
|
/** @internal */
|
|
3194
3194
|
export type MaxLength$Outbound = {
|
|
3195
|
-
"__@BRAND@
|
|
3195
|
+
"__@BRAND@524028": PropertiesAtBRANDAt524028$Outbound;
|
|
3196
3196
|
};
|
|
3197
3197
|
/** @internal */
|
|
3198
3198
|
export declare const MaxLength$outboundSchema: z.ZodType<MaxLength$Outbound, z.ZodTypeDef, MaxLength>;
|
|
3199
3199
|
export declare function maxLengthToJSON(maxLength: MaxLength): string;
|
|
3200
3200
|
export declare function maxLengthFromJSON(jsonString: string): SafeParseResult<MaxLength, SDKValidationError>;
|
|
3201
3201
|
/** @internal */
|
|
3202
|
-
export declare const
|
|
3202
|
+
export declare const GetConfigurationProductsPropertiesAtBRANDAt524028$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesAtBRANDAt524028, z.ZodTypeDef, unknown>;
|
|
3203
3203
|
/** @internal */
|
|
3204
|
-
export type
|
|
3204
|
+
export type GetConfigurationProductsPropertiesAtBRANDAt524028$Outbound = {};
|
|
3205
3205
|
/** @internal */
|
|
3206
|
-
export declare const
|
|
3207
|
-
export declare function
|
|
3208
|
-
export declare function
|
|
3206
|
+
export declare const GetConfigurationProductsPropertiesAtBRANDAt524028$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesAtBRANDAt524028$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesAtBRANDAt524028>;
|
|
3207
|
+
export declare function getConfigurationProductsPropertiesAtBRANDAt524028ToJSON(getConfigurationProductsPropertiesAtBRANDAt524028: GetConfigurationProductsPropertiesAtBRANDAt524028): string;
|
|
3208
|
+
export declare function getConfigurationProductsPropertiesAtBRANDAt524028FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesAtBRANDAt524028, SDKValidationError>;
|
|
3209
3209
|
/** @internal */
|
|
3210
3210
|
export declare const Pattern$inboundSchema: z.ZodType<Pattern, z.ZodTypeDef, unknown>;
|
|
3211
3211
|
/** @internal */
|
|
3212
3212
|
export type Pattern$Outbound = {
|
|
3213
|
-
"__@BRAND@
|
|
3213
|
+
"__@BRAND@524028": GetConfigurationProductsPropertiesAtBRANDAt524028$Outbound;
|
|
3214
3214
|
};
|
|
3215
3215
|
/** @internal */
|
|
3216
3216
|
export declare const Pattern$outboundSchema: z.ZodType<Pattern$Outbound, z.ZodTypeDef, Pattern>;
|