@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
|
@@ -232,9 +232,9 @@ export declare const CreateIntegrationStoreDirectIntegrationsType: {
|
|
|
232
232
|
readonly Object: "object";
|
|
233
233
|
};
|
|
234
234
|
export type CreateIntegrationStoreDirectIntegrationsType = ClosedEnum<typeof CreateIntegrationStoreDirectIntegrationsType>;
|
|
235
|
-
export type
|
|
235
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8897 = {};
|
|
236
236
|
export type CreateIntegrationStoreDirectPropertiesValue = {
|
|
237
|
-
|
|
237
|
+
atBRANDAt8897: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8897;
|
|
238
238
|
};
|
|
239
239
|
export declare const CreateIntegrationStoreDirectDisabled3: {
|
|
240
240
|
readonly Update: "update";
|
|
@@ -267,17 +267,17 @@ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse2
|
|
|
267
267
|
readonly Domain: "domain";
|
|
268
268
|
};
|
|
269
269
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl>;
|
|
270
|
-
export type
|
|
270
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8897 = {};
|
|
271
271
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength = {
|
|
272
|
-
|
|
272
|
+
atBRANDAt8897: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8897;
|
|
273
273
|
};
|
|
274
|
-
export type
|
|
274
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8897 = {};
|
|
275
275
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength = {
|
|
276
|
-
|
|
276
|
+
atBRANDAt8897: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8897;
|
|
277
277
|
};
|
|
278
|
-
export type
|
|
278
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8897 = {};
|
|
279
279
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern = {
|
|
280
|
-
|
|
280
|
+
atBRANDAt8897: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8897;
|
|
281
281
|
};
|
|
282
282
|
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3: {
|
|
283
283
|
readonly Update: "update";
|
|
@@ -338,9 +338,9 @@ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse2
|
|
|
338
338
|
readonly VercelRegion: "vercel-region";
|
|
339
339
|
};
|
|
340
340
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl>;
|
|
341
|
-
export type
|
|
341
|
+
export type CreateIntegrationStoreDirectUiOptionsAtBRANDAt8897 = {};
|
|
342
342
|
export type CreateIntegrationStoreDirectUiOptionsValue = {
|
|
343
|
-
|
|
343
|
+
atBRANDAt8897: CreateIntegrationStoreDirectUiOptionsAtBRANDAt8897;
|
|
344
344
|
};
|
|
345
345
|
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse2003: {
|
|
346
346
|
readonly Update: "update";
|
|
@@ -365,9 +365,9 @@ export type CreateIntegrationStoreDirectUiOptions3 = {
|
|
|
365
365
|
disabled?: CreateIntegrationStoreDirectDisabledIntegrationsResponse2002 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse2003 | undefined;
|
|
366
366
|
hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse2002 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse2003 | undefined;
|
|
367
367
|
};
|
|
368
|
-
export type
|
|
368
|
+
export type UiOptionsAtBRANDAt8897 = {};
|
|
369
369
|
export type CreateIntegrationStoreDirectUiOptions2 = {
|
|
370
|
-
|
|
370
|
+
atBRANDAt8897: UiOptionsAtBRANDAt8897;
|
|
371
371
|
};
|
|
372
372
|
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3: {
|
|
373
373
|
readonly Update: "update";
|
|
@@ -394,17 +394,17 @@ export type CreateIntegrationStoreDirectUiOptions1 = {
|
|
|
394
394
|
hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3 | undefined;
|
|
395
395
|
};
|
|
396
396
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiOptions = CreateIntegrationStoreDirectUiOptions1 | CreateIntegrationStoreDirectUiOptions2 | CreateIntegrationStoreDirectUiOptions3;
|
|
397
|
-
export type
|
|
397
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8897 = {};
|
|
398
398
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength = {
|
|
399
|
-
|
|
399
|
+
atBRANDAt8897: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8897;
|
|
400
400
|
};
|
|
401
|
-
export type
|
|
401
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8897 = {};
|
|
402
402
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength = {
|
|
403
|
-
|
|
403
|
+
atBRANDAt8897: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8897;
|
|
404
404
|
};
|
|
405
|
-
export type
|
|
405
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8897 = {};
|
|
406
406
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern = {
|
|
407
|
-
|
|
407
|
+
atBRANDAt8897: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8897;
|
|
408
408
|
};
|
|
409
409
|
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStore3: {
|
|
410
410
|
readonly Update: "update";
|
|
@@ -466,17 +466,17 @@ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse2
|
|
|
466
466
|
readonly String: "string";
|
|
467
467
|
};
|
|
468
468
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type>;
|
|
469
|
-
export type
|
|
469
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8897 = {};
|
|
470
470
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength = {
|
|
471
|
-
|
|
471
|
+
atBRANDAt8897: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8897;
|
|
472
472
|
};
|
|
473
|
-
export type
|
|
473
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8897 = {};
|
|
474
474
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength = {
|
|
475
|
-
|
|
475
|
+
atBRANDAt8897: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8897;
|
|
476
476
|
};
|
|
477
|
-
export type
|
|
477
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8897 = {};
|
|
478
478
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern = {
|
|
479
|
-
|
|
479
|
+
atBRANDAt8897: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8897;
|
|
480
480
|
};
|
|
481
481
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsItems = {
|
|
482
482
|
type: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type;
|
|
@@ -599,17 +599,17 @@ export type CreateIntegrationStoreDirectPropertiesUiOptions = {
|
|
|
599
599
|
disabled?: CreateIntegrationStoreDirectDisabledIntegrationsResponse2 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse3 | undefined;
|
|
600
600
|
hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse2 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse3 | undefined;
|
|
601
601
|
};
|
|
602
|
-
export type
|
|
602
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8897 = {};
|
|
603
603
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength = {
|
|
604
|
-
|
|
604
|
+
atBRANDAt8897: CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8897;
|
|
605
605
|
};
|
|
606
|
-
export type
|
|
606
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8897 = {};
|
|
607
607
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsMinLength = {
|
|
608
|
-
|
|
608
|
+
atBRANDAt8897: CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8897;
|
|
609
609
|
};
|
|
610
|
-
export type
|
|
610
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8897 = {};
|
|
611
611
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsPattern = {
|
|
612
|
-
|
|
612
|
+
atBRANDAt8897: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8897;
|
|
613
613
|
};
|
|
614
614
|
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJson3: {
|
|
615
615
|
readonly Update: "update";
|
|
@@ -855,17 +855,17 @@ export declare const CreateIntegrationStoreDirectPropertiesUiControl: {
|
|
|
855
855
|
readonly Input: "input";
|
|
856
856
|
};
|
|
857
857
|
export type CreateIntegrationStoreDirectPropertiesUiControl = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesUiControl>;
|
|
858
|
-
export type
|
|
858
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8897 = {};
|
|
859
859
|
export type CreateIntegrationStoreDirectPropertiesMaxLength = {
|
|
860
|
-
|
|
860
|
+
atBRANDAt8897: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8897;
|
|
861
861
|
};
|
|
862
|
-
export type
|
|
862
|
+
export type PropertiesAtBRANDAt8897 = {};
|
|
863
863
|
export type CreateIntegrationStoreDirectPropertiesMinLength = {
|
|
864
|
-
|
|
864
|
+
atBRANDAt8897: PropertiesAtBRANDAt8897;
|
|
865
865
|
};
|
|
866
|
-
export type
|
|
866
|
+
export type CreateIntegrationStoreDirectPropertiesAtBRANDAt8897 = {};
|
|
867
867
|
export type CreateIntegrationStoreDirectPropertiesPattern = {
|
|
868
|
-
|
|
868
|
+
atBRANDAt8897: CreateIntegrationStoreDirectPropertiesAtBRANDAt8897;
|
|
869
869
|
};
|
|
870
870
|
export declare const CreateIntegrationStoreDirectUiReadOnly3: {
|
|
871
871
|
readonly Update: "update";
|
|
@@ -1023,9 +1023,9 @@ export type Guides = {
|
|
|
1023
1023
|
title: string;
|
|
1024
1024
|
steps: Array<Steps>;
|
|
1025
1025
|
};
|
|
1026
|
-
export type
|
|
1026
|
+
export type AtBRANDAt8897 = {};
|
|
1027
1027
|
export type CreateIntegrationStoreDirectValue = {
|
|
1028
|
-
|
|
1028
|
+
atBRANDAt8897: AtBRANDAt8897;
|
|
1029
1029
|
};
|
|
1030
1030
|
export declare const Disabled3: {
|
|
1031
1031
|
readonly Update: "update";
|
|
@@ -1398,18 +1398,18 @@ export declare const CreateIntegrationStoreDirectIntegrationsType$inboundSchema:
|
|
|
1398
1398
|
/** @internal */
|
|
1399
1399
|
export declare const CreateIntegrationStoreDirectIntegrationsType$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectIntegrationsType>;
|
|
1400
1400
|
/** @internal */
|
|
1401
|
-
export declare const
|
|
1401
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8897$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8897, z.ZodTypeDef, unknown>;
|
|
1402
1402
|
/** @internal */
|
|
1403
|
-
export type
|
|
1403
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8897$Outbound = {};
|
|
1404
1404
|
/** @internal */
|
|
1405
|
-
export declare const
|
|
1406
|
-
export declare function
|
|
1407
|
-
export declare function
|
|
1405
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8897$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8897$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8897>;
|
|
1406
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8897ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8897: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8897): string;
|
|
1407
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8897FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8897, SDKValidationError>;
|
|
1408
1408
|
/** @internal */
|
|
1409
1409
|
export declare const CreateIntegrationStoreDirectPropertiesValue$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesValue, z.ZodTypeDef, unknown>;
|
|
1410
1410
|
/** @internal */
|
|
1411
1411
|
export type CreateIntegrationStoreDirectPropertiesValue$Outbound = {
|
|
1412
|
-
"__@BRAND@
|
|
1412
|
+
"__@BRAND@8897": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8897$Outbound;
|
|
1413
1413
|
};
|
|
1414
1414
|
/** @internal */
|
|
1415
1415
|
export declare const CreateIntegrationStoreDirectPropertiesValue$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesValue$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesValue>;
|
|
@@ -1480,54 +1480,54 @@ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse2
|
|
|
1480
1480
|
/** @internal */
|
|
1481
1481
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl>;
|
|
1482
1482
|
/** @internal */
|
|
1483
|
-
export declare const
|
|
1483
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8897$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8897, z.ZodTypeDef, unknown>;
|
|
1484
1484
|
/** @internal */
|
|
1485
|
-
export type
|
|
1485
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8897$Outbound = {};
|
|
1486
1486
|
/** @internal */
|
|
1487
|
-
export declare const
|
|
1488
|
-
export declare function
|
|
1489
|
-
export declare function
|
|
1487
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8897$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8897$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8897>;
|
|
1488
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8897ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8897: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8897): string;
|
|
1489
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8897FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8897, SDKValidationError>;
|
|
1490
1490
|
/** @internal */
|
|
1491
1491
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength, z.ZodTypeDef, unknown>;
|
|
1492
1492
|
/** @internal */
|
|
1493
1493
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$Outbound = {
|
|
1494
|
-
"__@BRAND@
|
|
1494
|
+
"__@BRAND@8897": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8897$Outbound;
|
|
1495
1495
|
};
|
|
1496
1496
|
/** @internal */
|
|
1497
1497
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength>;
|
|
1498
1498
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLengthToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength): string;
|
|
1499
1499
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength, SDKValidationError>;
|
|
1500
1500
|
/** @internal */
|
|
1501
|
-
export declare const
|
|
1501
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8897$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8897, z.ZodTypeDef, unknown>;
|
|
1502
1502
|
/** @internal */
|
|
1503
|
-
export type
|
|
1503
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8897$Outbound = {};
|
|
1504
1504
|
/** @internal */
|
|
1505
|
-
export declare const
|
|
1506
|
-
export declare function
|
|
1507
|
-
export declare function
|
|
1505
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8897$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8897$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8897>;
|
|
1506
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8897ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8897: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8897): string;
|
|
1507
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8897FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8897, SDKValidationError>;
|
|
1508
1508
|
/** @internal */
|
|
1509
1509
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength, z.ZodTypeDef, unknown>;
|
|
1510
1510
|
/** @internal */
|
|
1511
1511
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$Outbound = {
|
|
1512
|
-
"__@BRAND@
|
|
1512
|
+
"__@BRAND@8897": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8897$Outbound;
|
|
1513
1513
|
};
|
|
1514
1514
|
/** @internal */
|
|
1515
1515
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength>;
|
|
1516
1516
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200MinLengthToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength): string;
|
|
1517
1517
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200MinLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength, SDKValidationError>;
|
|
1518
1518
|
/** @internal */
|
|
1519
|
-
export declare const
|
|
1519
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8897$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8897, z.ZodTypeDef, unknown>;
|
|
1520
1520
|
/** @internal */
|
|
1521
|
-
export type
|
|
1521
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8897$Outbound = {};
|
|
1522
1522
|
/** @internal */
|
|
1523
|
-
export declare const
|
|
1524
|
-
export declare function
|
|
1525
|
-
export declare function
|
|
1523
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8897$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8897$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8897>;
|
|
1524
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8897ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8897: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8897): string;
|
|
1525
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8897FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8897, SDKValidationError>;
|
|
1526
1526
|
/** @internal */
|
|
1527
1527
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern, z.ZodTypeDef, unknown>;
|
|
1528
1528
|
/** @internal */
|
|
1529
1529
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$Outbound = {
|
|
1530
|
-
"__@BRAND@
|
|
1530
|
+
"__@BRAND@8897": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8897$Outbound;
|
|
1531
1531
|
};
|
|
1532
1532
|
/** @internal */
|
|
1533
1533
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern>;
|
|
@@ -1660,18 +1660,18 @@ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse2
|
|
|
1660
1660
|
/** @internal */
|
|
1661
1661
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl>;
|
|
1662
1662
|
/** @internal */
|
|
1663
|
-
export declare const
|
|
1663
|
+
export declare const CreateIntegrationStoreDirectUiOptionsAtBRANDAt8897$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsAtBRANDAt8897, z.ZodTypeDef, unknown>;
|
|
1664
1664
|
/** @internal */
|
|
1665
|
-
export type
|
|
1665
|
+
export type CreateIntegrationStoreDirectUiOptionsAtBRANDAt8897$Outbound = {};
|
|
1666
1666
|
/** @internal */
|
|
1667
|
-
export declare const
|
|
1668
|
-
export declare function
|
|
1669
|
-
export declare function
|
|
1667
|
+
export declare const CreateIntegrationStoreDirectUiOptionsAtBRANDAt8897$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsAtBRANDAt8897$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptionsAtBRANDAt8897>;
|
|
1668
|
+
export declare function createIntegrationStoreDirectUiOptionsAtBRANDAt8897ToJSON(createIntegrationStoreDirectUiOptionsAtBRANDAt8897: CreateIntegrationStoreDirectUiOptionsAtBRANDAt8897): string;
|
|
1669
|
+
export declare function createIntegrationStoreDirectUiOptionsAtBRANDAt8897FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsAtBRANDAt8897, SDKValidationError>;
|
|
1670
1670
|
/** @internal */
|
|
1671
1671
|
export declare const CreateIntegrationStoreDirectUiOptionsValue$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsValue, z.ZodTypeDef, unknown>;
|
|
1672
1672
|
/** @internal */
|
|
1673
1673
|
export type CreateIntegrationStoreDirectUiOptionsValue$Outbound = {
|
|
1674
|
-
"__@BRAND@
|
|
1674
|
+
"__@BRAND@8897": CreateIntegrationStoreDirectUiOptionsAtBRANDAt8897$Outbound;
|
|
1675
1675
|
};
|
|
1676
1676
|
/** @internal */
|
|
1677
1677
|
export declare const CreateIntegrationStoreDirectUiOptionsValue$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsValue$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptionsValue>;
|
|
@@ -1734,18 +1734,18 @@ export declare const CreateIntegrationStoreDirectUiOptions3$outboundSchema: z.Zo
|
|
|
1734
1734
|
export declare function createIntegrationStoreDirectUiOptions3ToJSON(createIntegrationStoreDirectUiOptions3: CreateIntegrationStoreDirectUiOptions3): string;
|
|
1735
1735
|
export declare function createIntegrationStoreDirectUiOptions3FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptions3, SDKValidationError>;
|
|
1736
1736
|
/** @internal */
|
|
1737
|
-
export declare const
|
|
1737
|
+
export declare const UiOptionsAtBRANDAt8897$inboundSchema: z.ZodType<UiOptionsAtBRANDAt8897, z.ZodTypeDef, unknown>;
|
|
1738
1738
|
/** @internal */
|
|
1739
|
-
export type
|
|
1739
|
+
export type UiOptionsAtBRANDAt8897$Outbound = {};
|
|
1740
1740
|
/** @internal */
|
|
1741
|
-
export declare const
|
|
1742
|
-
export declare function
|
|
1743
|
-
export declare function
|
|
1741
|
+
export declare const UiOptionsAtBRANDAt8897$outboundSchema: z.ZodType<UiOptionsAtBRANDAt8897$Outbound, z.ZodTypeDef, UiOptionsAtBRANDAt8897>;
|
|
1742
|
+
export declare function uiOptionsAtBRANDAt8897ToJSON(uiOptionsAtBRANDAt8897: UiOptionsAtBRANDAt8897): string;
|
|
1743
|
+
export declare function uiOptionsAtBRANDAt8897FromJSON(jsonString: string): SafeParseResult<UiOptionsAtBRANDAt8897, SDKValidationError>;
|
|
1744
1744
|
/** @internal */
|
|
1745
1745
|
export declare const CreateIntegrationStoreDirectUiOptions2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptions2, z.ZodTypeDef, unknown>;
|
|
1746
1746
|
/** @internal */
|
|
1747
1747
|
export type CreateIntegrationStoreDirectUiOptions2$Outbound = {
|
|
1748
|
-
"__@BRAND@
|
|
1748
|
+
"__@BRAND@8897": UiOptionsAtBRANDAt8897$Outbound;
|
|
1749
1749
|
};
|
|
1750
1750
|
/** @internal */
|
|
1751
1751
|
export declare const CreateIntegrationStoreDirectUiOptions2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptions2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptions2>;
|
|
@@ -1817,54 +1817,54 @@ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseU
|
|
|
1817
1817
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseUiOptionsToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponseUiOptions: CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiOptions): string;
|
|
1818
1818
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseUiOptionsFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiOptions, SDKValidationError>;
|
|
1819
1819
|
/** @internal */
|
|
1820
|
-
export declare const
|
|
1820
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8897$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8897, z.ZodTypeDef, unknown>;
|
|
1821
1821
|
/** @internal */
|
|
1822
|
-
export type
|
|
1822
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8897$Outbound = {};
|
|
1823
1823
|
/** @internal */
|
|
1824
|
-
export declare const
|
|
1825
|
-
export declare function
|
|
1826
|
-
export declare function
|
|
1824
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8897$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8897$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8897>;
|
|
1825
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8897ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8897: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8897): string;
|
|
1826
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8897FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8897, SDKValidationError>;
|
|
1827
1827
|
/** @internal */
|
|
1828
1828
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength, z.ZodTypeDef, unknown>;
|
|
1829
1829
|
/** @internal */
|
|
1830
1830
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$Outbound = {
|
|
1831
|
-
"__@BRAND@
|
|
1831
|
+
"__@BRAND@8897": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8897$Outbound;
|
|
1832
1832
|
};
|
|
1833
1833
|
/** @internal */
|
|
1834
1834
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength>;
|
|
1835
1835
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseMaxLengthToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength: CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength): string;
|
|
1836
1836
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseMaxLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength, SDKValidationError>;
|
|
1837
1837
|
/** @internal */
|
|
1838
|
-
export declare const
|
|
1838
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8897$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8897, z.ZodTypeDef, unknown>;
|
|
1839
1839
|
/** @internal */
|
|
1840
|
-
export type
|
|
1840
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8897$Outbound = {};
|
|
1841
1841
|
/** @internal */
|
|
1842
|
-
export declare const
|
|
1843
|
-
export declare function
|
|
1844
|
-
export declare function
|
|
1842
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8897$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8897$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8897>;
|
|
1843
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8897ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8897: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8897): string;
|
|
1844
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8897FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8897, SDKValidationError>;
|
|
1845
1845
|
/** @internal */
|
|
1846
1846
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength, z.ZodTypeDef, unknown>;
|
|
1847
1847
|
/** @internal */
|
|
1848
1848
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$Outbound = {
|
|
1849
|
-
"__@BRAND@
|
|
1849
|
+
"__@BRAND@8897": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8897$Outbound;
|
|
1850
1850
|
};
|
|
1851
1851
|
/** @internal */
|
|
1852
1852
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength>;
|
|
1853
1853
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseMinLengthToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponseMinLength: CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength): string;
|
|
1854
1854
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseMinLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength, SDKValidationError>;
|
|
1855
1855
|
/** @internal */
|
|
1856
|
-
export declare const
|
|
1856
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8897$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8897, z.ZodTypeDef, unknown>;
|
|
1857
1857
|
/** @internal */
|
|
1858
|
-
export type
|
|
1858
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8897$Outbound = {};
|
|
1859
1859
|
/** @internal */
|
|
1860
|
-
export declare const
|
|
1861
|
-
export declare function
|
|
1862
|
-
export declare function
|
|
1860
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8897$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8897$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8897>;
|
|
1861
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8897ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8897: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8897): string;
|
|
1862
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8897FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8897, SDKValidationError>;
|
|
1863
1863
|
/** @internal */
|
|
1864
1864
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern, z.ZodTypeDef, unknown>;
|
|
1865
1865
|
/** @internal */
|
|
1866
1866
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$Outbound = {
|
|
1867
|
-
"__@BRAND@
|
|
1867
|
+
"__@BRAND@8897": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8897$Outbound;
|
|
1868
1868
|
};
|
|
1869
1869
|
/** @internal */
|
|
1870
1870
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern>;
|
|
@@ -1998,54 +1998,54 @@ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse2
|
|
|
1998
1998
|
/** @internal */
|
|
1999
1999
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type>;
|
|
2000
2000
|
/** @internal */
|
|
2001
|
-
export declare const
|
|
2001
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8897$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8897, z.ZodTypeDef, unknown>;
|
|
2002
2002
|
/** @internal */
|
|
2003
|
-
export type
|
|
2003
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8897$Outbound = {};
|
|
2004
2004
|
/** @internal */
|
|
2005
|
-
export declare const
|
|
2006
|
-
export declare function
|
|
2007
|
-
export declare function
|
|
2005
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8897$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8897$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8897>;
|
|
2006
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8897ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8897: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8897): string;
|
|
2007
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8897FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8897, SDKValidationError>;
|
|
2008
2008
|
/** @internal */
|
|
2009
2009
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength, z.ZodTypeDef, unknown>;
|
|
2010
2010
|
/** @internal */
|
|
2011
2011
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength$Outbound = {
|
|
2012
|
-
"__@BRAND@
|
|
2012
|
+
"__@BRAND@8897": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8897$Outbound;
|
|
2013
2013
|
};
|
|
2014
2014
|
/** @internal */
|
|
2015
2015
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength>;
|
|
2016
2016
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLengthToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength): string;
|
|
2017
2017
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength, SDKValidationError>;
|
|
2018
2018
|
/** @internal */
|
|
2019
|
-
export declare const
|
|
2019
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8897$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8897, z.ZodTypeDef, unknown>;
|
|
2020
2020
|
/** @internal */
|
|
2021
|
-
export type
|
|
2021
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8897$Outbound = {};
|
|
2022
2022
|
/** @internal */
|
|
2023
|
-
export declare const
|
|
2024
|
-
export declare function
|
|
2025
|
-
export declare function
|
|
2023
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8897$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8897$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8897>;
|
|
2024
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8897ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8897: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8897): string;
|
|
2025
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8897FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8897, SDKValidationError>;
|
|
2026
2026
|
/** @internal */
|
|
2027
2027
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength, z.ZodTypeDef, unknown>;
|
|
2028
2028
|
/** @internal */
|
|
2029
2029
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength$Outbound = {
|
|
2030
|
-
"__@BRAND@
|
|
2030
|
+
"__@BRAND@8897": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8897$Outbound;
|
|
2031
2031
|
};
|
|
2032
2032
|
/** @internal */
|
|
2033
2033
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength>;
|
|
2034
2034
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLengthToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength): string;
|
|
2035
2035
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength, SDKValidationError>;
|
|
2036
2036
|
/** @internal */
|
|
2037
|
-
export declare const
|
|
2037
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8897$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8897, z.ZodTypeDef, unknown>;
|
|
2038
2038
|
/** @internal */
|
|
2039
|
-
export type
|
|
2039
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8897$Outbound = {};
|
|
2040
2040
|
/** @internal */
|
|
2041
|
-
export declare const
|
|
2042
|
-
export declare function
|
|
2043
|
-
export declare function
|
|
2041
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8897$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8897$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8897>;
|
|
2042
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8897ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8897: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8897): string;
|
|
2043
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8897FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8897, SDKValidationError>;
|
|
2044
2044
|
/** @internal */
|
|
2045
2045
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern, z.ZodTypeDef, unknown>;
|
|
2046
2046
|
/** @internal */
|
|
2047
2047
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern$Outbound = {
|
|
2048
|
-
"__@BRAND@
|
|
2048
|
+
"__@BRAND@8897": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8897$Outbound;
|
|
2049
2049
|
};
|
|
2050
2050
|
/** @internal */
|
|
2051
2051
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern>;
|
|
@@ -2313,54 +2313,54 @@ export declare const CreateIntegrationStoreDirectPropertiesUiOptions$outboundSch
|
|
|
2313
2313
|
export declare function createIntegrationStoreDirectPropertiesUiOptionsToJSON(createIntegrationStoreDirectPropertiesUiOptions: CreateIntegrationStoreDirectPropertiesUiOptions): string;
|
|
2314
2314
|
export declare function createIntegrationStoreDirectPropertiesUiOptionsFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesUiOptions, SDKValidationError>;
|
|
2315
2315
|
/** @internal */
|
|
2316
|
-
export declare const
|
|
2316
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8897$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8897, z.ZodTypeDef, unknown>;
|
|
2317
2317
|
/** @internal */
|
|
2318
|
-
export type
|
|
2318
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8897$Outbound = {};
|
|
2319
2319
|
/** @internal */
|
|
2320
|
-
export declare const
|
|
2321
|
-
export declare function
|
|
2322
|
-
export declare function
|
|
2320
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8897$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8897$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8897>;
|
|
2321
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8897ToJSON(createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8897: CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8897): string;
|
|
2322
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8897FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8897, SDKValidationError>;
|
|
2323
2323
|
/** @internal */
|
|
2324
2324
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength, z.ZodTypeDef, unknown>;
|
|
2325
2325
|
/** @internal */
|
|
2326
2326
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$Outbound = {
|
|
2327
|
-
"__@BRAND@
|
|
2327
|
+
"__@BRAND@8897": CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8897$Outbound;
|
|
2328
2328
|
};
|
|
2329
2329
|
/** @internal */
|
|
2330
2330
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength>;
|
|
2331
2331
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsMaxLengthToJSON(createIntegrationStoreDirectPropertiesIntegrationsMaxLength: CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength): string;
|
|
2332
2332
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsMaxLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength, SDKValidationError>;
|
|
2333
2333
|
/** @internal */
|
|
2334
|
-
export declare const
|
|
2334
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8897$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8897, z.ZodTypeDef, unknown>;
|
|
2335
2335
|
/** @internal */
|
|
2336
|
-
export type
|
|
2336
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8897$Outbound = {};
|
|
2337
2337
|
/** @internal */
|
|
2338
|
-
export declare const
|
|
2339
|
-
export declare function
|
|
2340
|
-
export declare function
|
|
2338
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8897$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8897$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8897>;
|
|
2339
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8897ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8897: CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8897): string;
|
|
2340
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8897FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8897, SDKValidationError>;
|
|
2341
2341
|
/** @internal */
|
|
2342
2342
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsMinLength, z.ZodTypeDef, unknown>;
|
|
2343
2343
|
/** @internal */
|
|
2344
2344
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$Outbound = {
|
|
2345
|
-
"__@BRAND@
|
|
2345
|
+
"__@BRAND@8897": CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8897$Outbound;
|
|
2346
2346
|
};
|
|
2347
2347
|
/** @internal */
|
|
2348
2348
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsMinLength>;
|
|
2349
2349
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsMinLengthToJSON(createIntegrationStoreDirectPropertiesIntegrationsMinLength: CreateIntegrationStoreDirectPropertiesIntegrationsMinLength): string;
|
|
2350
2350
|
export declare function createIntegrationStoreDirectPropertiesIntegrationsMinLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsMinLength, SDKValidationError>;
|
|
2351
2351
|
/** @internal */
|
|
2352
|
-
export declare const
|
|
2352
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8897$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8897, z.ZodTypeDef, unknown>;
|
|
2353
2353
|
/** @internal */
|
|
2354
|
-
export type
|
|
2354
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8897$Outbound = {};
|
|
2355
2355
|
/** @internal */
|
|
2356
|
-
export declare const
|
|
2357
|
-
export declare function
|
|
2358
|
-
export declare function
|
|
2356
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8897$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8897$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8897>;
|
|
2357
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8897ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8897: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8897): string;
|
|
2358
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8897FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8897, SDKValidationError>;
|
|
2359
2359
|
/** @internal */
|
|
2360
2360
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsPattern$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsPattern, z.ZodTypeDef, unknown>;
|
|
2361
2361
|
/** @internal */
|
|
2362
2362
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsPattern$Outbound = {
|
|
2363
|
-
"__@BRAND@
|
|
2363
|
+
"__@BRAND@8897": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8897$Outbound;
|
|
2364
2364
|
};
|
|
2365
2365
|
/** @internal */
|
|
2366
2366
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsPattern$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsPattern$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsPattern>;
|
|
@@ -2886,54 +2886,54 @@ export declare const CreateIntegrationStoreDirectPropertiesUiControl$inboundSche
|
|
|
2886
2886
|
/** @internal */
|
|
2887
2887
|
export declare const CreateIntegrationStoreDirectPropertiesUiControl$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesUiControl>;
|
|
2888
2888
|
/** @internal */
|
|
2889
|
-
export declare const
|
|
2889
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8897$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8897, z.ZodTypeDef, unknown>;
|
|
2890
2890
|
/** @internal */
|
|
2891
|
-
export type
|
|
2891
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8897$Outbound = {};
|
|
2892
2892
|
/** @internal */
|
|
2893
|
-
export declare const
|
|
2894
|
-
export declare function
|
|
2895
|
-
export declare function
|
|
2893
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8897$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8897$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8897>;
|
|
2894
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8897ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8897: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8897): string;
|
|
2895
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8897FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8897, SDKValidationError>;
|
|
2896
2896
|
/** @internal */
|
|
2897
2897
|
export declare const CreateIntegrationStoreDirectPropertiesMaxLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesMaxLength, z.ZodTypeDef, unknown>;
|
|
2898
2898
|
/** @internal */
|
|
2899
2899
|
export type CreateIntegrationStoreDirectPropertiesMaxLength$Outbound = {
|
|
2900
|
-
"__@BRAND@
|
|
2900
|
+
"__@BRAND@8897": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8897$Outbound;
|
|
2901
2901
|
};
|
|
2902
2902
|
/** @internal */
|
|
2903
2903
|
export declare const CreateIntegrationStoreDirectPropertiesMaxLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesMaxLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesMaxLength>;
|
|
2904
2904
|
export declare function createIntegrationStoreDirectPropertiesMaxLengthToJSON(createIntegrationStoreDirectPropertiesMaxLength: CreateIntegrationStoreDirectPropertiesMaxLength): string;
|
|
2905
2905
|
export declare function createIntegrationStoreDirectPropertiesMaxLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesMaxLength, SDKValidationError>;
|
|
2906
2906
|
/** @internal */
|
|
2907
|
-
export declare const
|
|
2907
|
+
export declare const PropertiesAtBRANDAt8897$inboundSchema: z.ZodType<PropertiesAtBRANDAt8897, z.ZodTypeDef, unknown>;
|
|
2908
2908
|
/** @internal */
|
|
2909
|
-
export type
|
|
2909
|
+
export type PropertiesAtBRANDAt8897$Outbound = {};
|
|
2910
2910
|
/** @internal */
|
|
2911
|
-
export declare const
|
|
2912
|
-
export declare function
|
|
2913
|
-
export declare function
|
|
2911
|
+
export declare const PropertiesAtBRANDAt8897$outboundSchema: z.ZodType<PropertiesAtBRANDAt8897$Outbound, z.ZodTypeDef, PropertiesAtBRANDAt8897>;
|
|
2912
|
+
export declare function propertiesAtBRANDAt8897ToJSON(propertiesAtBRANDAt8897: PropertiesAtBRANDAt8897): string;
|
|
2913
|
+
export declare function propertiesAtBRANDAt8897FromJSON(jsonString: string): SafeParseResult<PropertiesAtBRANDAt8897, SDKValidationError>;
|
|
2914
2914
|
/** @internal */
|
|
2915
2915
|
export declare const CreateIntegrationStoreDirectPropertiesMinLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesMinLength, z.ZodTypeDef, unknown>;
|
|
2916
2916
|
/** @internal */
|
|
2917
2917
|
export type CreateIntegrationStoreDirectPropertiesMinLength$Outbound = {
|
|
2918
|
-
"__@BRAND@
|
|
2918
|
+
"__@BRAND@8897": PropertiesAtBRANDAt8897$Outbound;
|
|
2919
2919
|
};
|
|
2920
2920
|
/** @internal */
|
|
2921
2921
|
export declare const CreateIntegrationStoreDirectPropertiesMinLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesMinLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesMinLength>;
|
|
2922
2922
|
export declare function createIntegrationStoreDirectPropertiesMinLengthToJSON(createIntegrationStoreDirectPropertiesMinLength: CreateIntegrationStoreDirectPropertiesMinLength): string;
|
|
2923
2923
|
export declare function createIntegrationStoreDirectPropertiesMinLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesMinLength, SDKValidationError>;
|
|
2924
2924
|
/** @internal */
|
|
2925
|
-
export declare const
|
|
2925
|
+
export declare const CreateIntegrationStoreDirectPropertiesAtBRANDAt8897$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesAtBRANDAt8897, z.ZodTypeDef, unknown>;
|
|
2926
2926
|
/** @internal */
|
|
2927
|
-
export type
|
|
2927
|
+
export type CreateIntegrationStoreDirectPropertiesAtBRANDAt8897$Outbound = {};
|
|
2928
2928
|
/** @internal */
|
|
2929
|
-
export declare const
|
|
2930
|
-
export declare function
|
|
2931
|
-
export declare function
|
|
2929
|
+
export declare const CreateIntegrationStoreDirectPropertiesAtBRANDAt8897$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesAtBRANDAt8897$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesAtBRANDAt8897>;
|
|
2930
|
+
export declare function createIntegrationStoreDirectPropertiesAtBRANDAt8897ToJSON(createIntegrationStoreDirectPropertiesAtBRANDAt8897: CreateIntegrationStoreDirectPropertiesAtBRANDAt8897): string;
|
|
2931
|
+
export declare function createIntegrationStoreDirectPropertiesAtBRANDAt8897FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesAtBRANDAt8897, SDKValidationError>;
|
|
2932
2932
|
/** @internal */
|
|
2933
2933
|
export declare const CreateIntegrationStoreDirectPropertiesPattern$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesPattern, z.ZodTypeDef, unknown>;
|
|
2934
2934
|
/** @internal */
|
|
2935
2935
|
export type CreateIntegrationStoreDirectPropertiesPattern$Outbound = {
|
|
2936
|
-
"__@BRAND@
|
|
2936
|
+
"__@BRAND@8897": CreateIntegrationStoreDirectPropertiesAtBRANDAt8897$Outbound;
|
|
2937
2937
|
};
|
|
2938
2938
|
/** @internal */
|
|
2939
2939
|
export declare const CreateIntegrationStoreDirectPropertiesPattern$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesPattern$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesPattern>;
|
|
@@ -3149,18 +3149,18 @@ export declare const Guides$outboundSchema: z.ZodType<Guides$Outbound, z.ZodType
|
|
|
3149
3149
|
export declare function guidesToJSON(guides: Guides): string;
|
|
3150
3150
|
export declare function guidesFromJSON(jsonString: string): SafeParseResult<Guides, SDKValidationError>;
|
|
3151
3151
|
/** @internal */
|
|
3152
|
-
export declare const
|
|
3152
|
+
export declare const AtBRANDAt8897$inboundSchema: z.ZodType<AtBRANDAt8897, z.ZodTypeDef, unknown>;
|
|
3153
3153
|
/** @internal */
|
|
3154
|
-
export type
|
|
3154
|
+
export type AtBRANDAt8897$Outbound = {};
|
|
3155
3155
|
/** @internal */
|
|
3156
|
-
export declare const
|
|
3157
|
-
export declare function
|
|
3158
|
-
export declare function
|
|
3156
|
+
export declare const AtBRANDAt8897$outboundSchema: z.ZodType<AtBRANDAt8897$Outbound, z.ZodTypeDef, AtBRANDAt8897>;
|
|
3157
|
+
export declare function atBRANDAt8897ToJSON(atBRANDAt8897: AtBRANDAt8897): string;
|
|
3158
|
+
export declare function atBRANDAt8897FromJSON(jsonString: string): SafeParseResult<AtBRANDAt8897, SDKValidationError>;
|
|
3159
3159
|
/** @internal */
|
|
3160
3160
|
export declare const CreateIntegrationStoreDirectValue$inboundSchema: z.ZodType<CreateIntegrationStoreDirectValue, z.ZodTypeDef, unknown>;
|
|
3161
3161
|
/** @internal */
|
|
3162
3162
|
export type CreateIntegrationStoreDirectValue$Outbound = {
|
|
3163
|
-
"__@BRAND@
|
|
3163
|
+
"__@BRAND@8897": AtBRANDAt8897$Outbound;
|
|
3164
3164
|
};
|
|
3165
3165
|
/** @internal */
|
|
3166
3166
|
export declare const CreateIntegrationStoreDirectValue$outboundSchema: z.ZodType<CreateIntegrationStoreDirectValue$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectValue>;
|