@vercel/sdk 1.10.8 → 1.11.0
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/bin/mcp-server.js +3715 -927
- package/bin/mcp-server.js.map +20 -20
- package/esm/__tests__/accessgroups.test.js +6 -6
- package/esm/__tests__/accessgroups.test.js.map +1 -1
- package/esm/__tests__/domains.test.js +5 -6
- 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__/rollingrelease.test.js +2 -2
- package/esm/__tests__/rollingrelease.test.js.map +1 -1
- package/esm/__tests__/security.test.js +11 -1
- package/esm/__tests__/security.test.js.map +1 -1
- package/esm/__tests__/teams.test.js +2 -2
- package/esm/__tests__/teams.test.js.map +1 -1
- package/esm/lib/config.d.ts +3 -3
- package/esm/lib/config.js +3 -3
- package/esm/mcp-server/mcp-server.js +1 -1
- package/esm/mcp-server/server.js +1 -1
- package/esm/models/canceldeploymentop.d.ts +41 -41
- package/esm/models/canceldeploymentop.d.ts.map +1 -1
- package/esm/models/canceldeploymentop.js +43 -41
- package/esm/models/canceldeploymentop.js.map +1 -1
- package/esm/models/createdeploymentop.d.ts +98 -98
- package/esm/models/createdeploymentop.d.ts.map +1 -1
- package/esm/models/createdeploymentop.js +113 -117
- package/esm/models/createdeploymentop.js.map +1 -1
- package/esm/models/createintegrationstoredirectop.d.ts +240 -240
- package/esm/models/createintegrationstoredirectop.js +294 -294
- package/esm/models/createprojectop.d.ts +1626 -281
- package/esm/models/createprojectop.d.ts.map +1 -1
- package/esm/models/createprojectop.js +1676 -298
- package/esm/models/createprojectop.js.map +1 -1
- package/esm/models/createwebhookop.d.ts +72 -66
- package/esm/models/createwebhookop.d.ts.map +1 -1
- package/esm/models/createwebhookop.js +24 -22
- package/esm/models/createwebhookop.js.map +1 -1
- package/esm/models/getconfigurationproductsop.d.ts +330 -330
- package/esm/models/getconfigurationproductsop.js +408 -408
- package/esm/models/getdeploymentop.d.ts +16 -16
- package/esm/models/getdeploymentop.d.ts.map +1 -1
- package/esm/models/getdeploymentop.js +24 -24
- package/esm/models/getdeploymentop.js.map +1 -1
- package/esm/models/getprojectsop.d.ts +1402 -57
- package/esm/models/getprojectsop.d.ts.map +1 -1
- package/esm/models/getprojectsop.js +1575 -202
- package/esm/models/getprojectsop.js.map +1 -1
- package/esm/models/getwebhookop.d.ts +36 -33
- package/esm/models/getwebhookop.d.ts.map +1 -1
- package/esm/models/getwebhookop.js +12 -11
- package/esm/models/getwebhookop.js.map +1 -1
- package/esm/models/getwebhooksop.d.ts +72 -66
- package/esm/models/getwebhooksop.d.ts.map +1 -1
- package/esm/models/getwebhooksop.js +24 -22
- package/esm/models/getwebhooksop.js.map +1 -1
- package/esm/models/listaccessgroupsop.d.ts +2 -5
- package/esm/models/listaccessgroupsop.d.ts.map +1 -1
- package/esm/models/listaccessgroupsop.js +2 -2
- package/esm/models/listaccessgroupsop.js.map +1 -1
- package/esm/models/readaccessgroupop.d.ts +48 -5
- package/esm/models/readaccessgroupop.d.ts.map +1 -1
- package/esm/models/readaccessgroupop.js +30 -2
- package/esm/models/readaccessgroupop.js.map +1 -1
- package/esm/models/team.d.ts +35 -18
- package/esm/models/team.d.ts.map +1 -1
- package/esm/models/team.js +15 -13
- package/esm/models/team.js.map +1 -1
- package/esm/models/updateprojectdatacacheop.d.ts +1402 -57
- package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
- package/esm/models/updateprojectdatacacheop.js +1584 -200
- package/esm/models/updateprojectdatacacheop.js.map +1 -1
- package/esm/models/updateprojectop.d.ts +1402 -57
- package/esm/models/updateprojectop.d.ts.map +1 -1
- package/esm/models/updateprojectop.js +1579 -202
- package/esm/models/updateprojectop.js.map +1 -1
- package/examples/package-lock.json +1 -1
- package/examples/projectsUpdateProject.example.ts +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/__tests__/accessgroups.test.ts +6 -6
- package/src/__tests__/domains.test.ts +5 -6
- package/src/__tests__/edgeconfig.test.ts +6 -6
- package/src/__tests__/integrations.test.ts +1 -1
- package/src/__tests__/rollingrelease.test.ts +2 -2
- package/src/__tests__/security.test.ts +11 -1
- package/src/__tests__/teams.test.ts +2 -2
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/canceldeploymentop.ts +84 -64
- package/src/models/createdeploymentop.ts +239 -192
- package/src/models/createintegrationstoredirectop.ts +505 -505
- package/src/models/createprojectop.ts +3443 -466
- package/src/models/createwebhookop.ts +24 -22
- package/src/models/getconfigurationproductsop.ts +703 -703
- package/src/models/getdeploymentop.ts +34 -34
- package/src/models/getprojectsop.ts +3255 -300
- package/src/models/getwebhookop.ts +12 -11
- package/src/models/getwebhooksop.ts +24 -22
- package/src/models/listaccessgroupsop.ts +4 -7
- package/src/models/readaccessgroupop.ts +42 -7
- package/src/models/team.ts +47 -28
- package/src/models/updateprojectdatacacheop.ts +3184 -307
- package/src/models/updateprojectop.ts +3290 -298
- package/vercel-spec.json +4895 -2034
|
@@ -152,9 +152,9 @@ export declare const GetConfigurationProductsType: {
|
|
|
152
152
|
readonly Object: "object";
|
|
153
153
|
};
|
|
154
154
|
export type GetConfigurationProductsType = ClosedEnum<typeof GetConfigurationProductsType>;
|
|
155
|
-
export type
|
|
155
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581 = {};
|
|
156
156
|
export type PropertiesValue = {
|
|
157
|
-
|
|
157
|
+
atBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581;
|
|
158
158
|
};
|
|
159
159
|
export declare const GetConfigurationProductsDisabled3: {
|
|
160
160
|
readonly Update: "update";
|
|
@@ -191,17 +191,17 @@ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200Ap
|
|
|
191
191
|
readonly String: "string";
|
|
192
192
|
};
|
|
193
193
|
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8Type = ClosedEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8Type>;
|
|
194
|
-
export type
|
|
194
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581 = {};
|
|
195
195
|
export type GetConfigurationProductsPropertiesIntegrationsResponseMinLength = {
|
|
196
|
-
|
|
196
|
+
atBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581;
|
|
197
197
|
};
|
|
198
|
-
export type
|
|
198
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581 = {};
|
|
199
199
|
export type GetConfigurationProductsPropertiesIntegrationsResponseMaxLength = {
|
|
200
|
-
|
|
200
|
+
atBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581;
|
|
201
201
|
};
|
|
202
|
-
export type
|
|
202
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581 = {};
|
|
203
203
|
export type GetConfigurationProductsPropertiesIntegrationsResponsePattern = {
|
|
204
|
-
|
|
204
|
+
atBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581;
|
|
205
205
|
};
|
|
206
206
|
export type GetConfigurationProductsPropertiesIntegrationsItems = {
|
|
207
207
|
type: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8Type;
|
|
@@ -212,9 +212,9 @@ export type GetConfigurationProductsPropertiesIntegrationsItems = {
|
|
|
212
212
|
default?: string | undefined;
|
|
213
213
|
enum?: Array<string> | undefined;
|
|
214
214
|
};
|
|
215
|
-
export type
|
|
215
|
+
export type GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581 = {};
|
|
216
216
|
export type GetConfigurationProductsUiOptionsValue = {
|
|
217
|
-
|
|
217
|
+
atBRANDAt508581: GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581;
|
|
218
218
|
};
|
|
219
219
|
export declare const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson3: {
|
|
220
220
|
readonly Update: "update";
|
|
@@ -239,9 +239,9 @@ export type GetConfigurationProductsUiOptions3 = {
|
|
|
239
239
|
disabled?: GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson2 | boolean | GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson3 | undefined;
|
|
240
240
|
hidden?: GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJson2 | boolean | GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJson3 | undefined;
|
|
241
241
|
};
|
|
242
|
-
export type
|
|
242
|
+
export type GetConfigurationProductsUiOptionsAtBRANDAt508581 = {};
|
|
243
243
|
export type GetConfigurationProductsUiOptions2 = {
|
|
244
|
-
|
|
244
|
+
atBRANDAt508581: GetConfigurationProductsUiOptionsAtBRANDAt508581;
|
|
245
245
|
};
|
|
246
246
|
export declare const GetConfigurationProductsDisabledIntegrationsResponse2003: {
|
|
247
247
|
readonly Update: "update";
|
|
@@ -302,13 +302,13 @@ export type GetConfigurationProductsPropertiesIntegrationsResponse200Application
|
|
|
302
302
|
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiFormattedValue = {
|
|
303
303
|
expr: string;
|
|
304
304
|
};
|
|
305
|
-
export type
|
|
305
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581 = {};
|
|
306
306
|
export type Default = {
|
|
307
|
-
|
|
307
|
+
atBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581;
|
|
308
308
|
};
|
|
309
|
-
export type
|
|
309
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581 = {};
|
|
310
310
|
export type Example = {
|
|
311
|
-
|
|
311
|
+
atBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581;
|
|
312
312
|
};
|
|
313
313
|
export type Properties8 = {
|
|
314
314
|
type: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsType;
|
|
@@ -336,9 +336,9 @@ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200Ap
|
|
|
336
336
|
readonly VercelRegion: "vercel-region";
|
|
337
337
|
};
|
|
338
338
|
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiControl = ClosedEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiControl>;
|
|
339
|
-
export type
|
|
339
|
+
export type GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581 = {};
|
|
340
340
|
export type UiOptionsValue = {
|
|
341
|
-
|
|
341
|
+
atBRANDAt508581: GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581;
|
|
342
342
|
};
|
|
343
343
|
export declare const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3: {
|
|
344
344
|
readonly Update: "update";
|
|
@@ -363,9 +363,9 @@ export type UiOptions3 = {
|
|
|
363
363
|
disabled?: GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2 | boolean | GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3 | undefined;
|
|
364
364
|
hidden?: GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2 | boolean | GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3 | undefined;
|
|
365
365
|
};
|
|
366
|
-
export type
|
|
366
|
+
export type UiOptionsAtBRANDAt508581 = {};
|
|
367
367
|
export type UiOptions2 = {
|
|
368
|
-
|
|
368
|
+
atBRANDAt508581: UiOptionsAtBRANDAt508581;
|
|
369
369
|
};
|
|
370
370
|
export declare const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3: {
|
|
371
371
|
readonly Update: "update";
|
|
@@ -392,17 +392,17 @@ export type UiOptions1 = {
|
|
|
392
392
|
hidden?: GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2 | boolean | GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3 | undefined;
|
|
393
393
|
};
|
|
394
394
|
export type GetConfigurationProductsPropertiesUiOptions = UiOptions1 | UiOptions2 | UiOptions3;
|
|
395
|
-
export type
|
|
395
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581 = {};
|
|
396
396
|
export type GetConfigurationProductsPropertiesMinLength = {
|
|
397
|
-
|
|
397
|
+
atBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581;
|
|
398
398
|
};
|
|
399
|
-
export type
|
|
399
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581 = {};
|
|
400
400
|
export type GetConfigurationProductsPropertiesMaxLength = {
|
|
401
|
-
|
|
401
|
+
atBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581;
|
|
402
402
|
};
|
|
403
|
-
export type
|
|
403
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581 = {};
|
|
404
404
|
export type GetConfigurationProductsPropertiesPattern = {
|
|
405
|
-
|
|
405
|
+
atBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581;
|
|
406
406
|
};
|
|
407
407
|
export declare const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBody3: {
|
|
408
408
|
readonly Update: "update";
|
|
@@ -468,17 +468,17 @@ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200Ap
|
|
|
468
468
|
readonly String: "string";
|
|
469
469
|
};
|
|
470
470
|
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6Type = ClosedEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6Type>;
|
|
471
|
-
export type
|
|
471
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581 = {};
|
|
472
472
|
export type GetConfigurationProductsPropertiesIntegrationsMinLength = {
|
|
473
|
-
|
|
473
|
+
atBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581;
|
|
474
474
|
};
|
|
475
|
-
export type
|
|
475
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581 = {};
|
|
476
476
|
export type GetConfigurationProductsPropertiesIntegrationsMaxLength = {
|
|
477
|
-
|
|
477
|
+
atBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581;
|
|
478
478
|
};
|
|
479
|
-
export type
|
|
479
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581 = {};
|
|
480
480
|
export type GetConfigurationProductsPropertiesIntegrationsPattern = {
|
|
481
|
-
|
|
481
|
+
atBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581;
|
|
482
482
|
};
|
|
483
483
|
export type GetConfigurationProductsPropertiesItems = {
|
|
484
484
|
type: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6Type;
|
|
@@ -597,17 +597,17 @@ export type UiOptions = {
|
|
|
597
597
|
disabled?: GetConfigurationProductsDisabledIntegrations2 | boolean | GetConfigurationProductsDisabledIntegrations3 | undefined;
|
|
598
598
|
hidden?: GetConfigurationProductsHiddenIntegrations2 | boolean | GetConfigurationProductsHiddenIntegrations3 | undefined;
|
|
599
599
|
};
|
|
600
|
-
export type
|
|
600
|
+
export type GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581 = {};
|
|
601
601
|
export type PropertiesMinLength = {
|
|
602
|
-
|
|
602
|
+
atBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581;
|
|
603
603
|
};
|
|
604
|
-
export type
|
|
604
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581 = {};
|
|
605
605
|
export type PropertiesMaxLength = {
|
|
606
|
-
|
|
606
|
+
atBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581;
|
|
607
607
|
};
|
|
608
|
-
export type
|
|
608
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581 = {};
|
|
609
609
|
export type PropertiesPattern = {
|
|
610
|
-
|
|
610
|
+
atBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581;
|
|
611
611
|
};
|
|
612
612
|
export declare const GetConfigurationProductsUiReadOnlyIntegrationsResponse2003: {
|
|
613
613
|
readonly Update: "update";
|
|
@@ -853,17 +853,17 @@ export declare const UiControl: {
|
|
|
853
853
|
readonly Input: "input";
|
|
854
854
|
};
|
|
855
855
|
export type UiControl = ClosedEnum<typeof UiControl>;
|
|
856
|
-
export type
|
|
856
|
+
export type AtBRANDAt508581 = {};
|
|
857
857
|
export type MinLength = {
|
|
858
|
-
|
|
858
|
+
atBRANDAt508581: AtBRANDAt508581;
|
|
859
859
|
};
|
|
860
|
-
export type
|
|
860
|
+
export type PropertiesAtBRANDAt508581 = {};
|
|
861
861
|
export type MaxLength = {
|
|
862
|
-
|
|
862
|
+
atBRANDAt508581: PropertiesAtBRANDAt508581;
|
|
863
863
|
};
|
|
864
|
-
export type
|
|
864
|
+
export type GetConfigurationProductsPropertiesAtBRANDAt508581 = {};
|
|
865
865
|
export type Pattern = {
|
|
866
|
-
|
|
866
|
+
atBRANDAt508581: GetConfigurationProductsPropertiesAtBRANDAt508581;
|
|
867
867
|
};
|
|
868
868
|
export declare const UiReadOnly3: {
|
|
869
869
|
readonly Update: "update";
|
|
@@ -1574,30 +1574,30 @@ export declare namespace GetConfigurationProductsType$ {
|
|
|
1574
1574
|
}>;
|
|
1575
1575
|
}
|
|
1576
1576
|
/** @internal */
|
|
1577
|
-
export declare const
|
|
1577
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
1578
1578
|
/** @internal */
|
|
1579
|
-
export type
|
|
1579
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581$Outbound = {};
|
|
1580
1580
|
/** @internal */
|
|
1581
|
-
export declare const
|
|
1581
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581>;
|
|
1582
1582
|
/**
|
|
1583
1583
|
* @internal
|
|
1584
1584
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1585
1585
|
*/
|
|
1586
|
-
export declare namespace
|
|
1587
|
-
/** @deprecated use `
|
|
1588
|
-
const inboundSchema: z.ZodType<
|
|
1589
|
-
/** @deprecated use `
|
|
1590
|
-
const outboundSchema: z.ZodType<
|
|
1591
|
-
/** @deprecated use `
|
|
1592
|
-
type Outbound =
|
|
1586
|
+
export declare namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581$ {
|
|
1587
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581$inboundSchema` instead. */
|
|
1588
|
+
const inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
1589
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581$outboundSchema` instead. */
|
|
1590
|
+
const outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581>;
|
|
1591
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581$Outbound` instead. */
|
|
1592
|
+
type Outbound = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581$Outbound;
|
|
1593
1593
|
}
|
|
1594
|
-
export declare function
|
|
1595
|
-
export declare function
|
|
1594
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581): string;
|
|
1595
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581, SDKValidationError>;
|
|
1596
1596
|
/** @internal */
|
|
1597
1597
|
export declare const PropertiesValue$inboundSchema: z.ZodType<PropertiesValue, z.ZodTypeDef, unknown>;
|
|
1598
1598
|
/** @internal */
|
|
1599
1599
|
export type PropertiesValue$Outbound = {
|
|
1600
|
-
"__@BRAND@
|
|
1600
|
+
"__@BRAND@508581": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581$Outbound;
|
|
1601
1601
|
};
|
|
1602
1602
|
/** @internal */
|
|
1603
1603
|
export declare const PropertiesValue$outboundSchema: z.ZodType<PropertiesValue$Outbound, z.ZodTypeDef, PropertiesValue>;
|
|
@@ -1818,30 +1818,30 @@ export declare namespace GetConfigurationProductsPropertiesIntegrationsResponse2
|
|
|
1818
1818
|
}>;
|
|
1819
1819
|
}
|
|
1820
1820
|
/** @internal */
|
|
1821
|
-
export declare const
|
|
1821
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
1822
1822
|
/** @internal */
|
|
1823
|
-
export type
|
|
1823
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581$Outbound = {};
|
|
1824
1824
|
/** @internal */
|
|
1825
|
-
export declare const
|
|
1825
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581>;
|
|
1826
1826
|
/**
|
|
1827
1827
|
* @internal
|
|
1828
1828
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1829
1829
|
*/
|
|
1830
|
-
export declare namespace
|
|
1831
|
-
/** @deprecated use `
|
|
1832
|
-
const inboundSchema: z.ZodType<
|
|
1833
|
-
/** @deprecated use `
|
|
1834
|
-
const outboundSchema: z.ZodType<
|
|
1835
|
-
/** @deprecated use `
|
|
1836
|
-
type Outbound =
|
|
1830
|
+
export declare namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581$ {
|
|
1831
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581$inboundSchema` instead. */
|
|
1832
|
+
const inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
1833
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581$outboundSchema` instead. */
|
|
1834
|
+
const outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581>;
|
|
1835
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581$Outbound` instead. */
|
|
1836
|
+
type Outbound = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581$Outbound;
|
|
1837
1837
|
}
|
|
1838
|
-
export declare function
|
|
1839
|
-
export declare function
|
|
1838
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581): string;
|
|
1839
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581, SDKValidationError>;
|
|
1840
1840
|
/** @internal */
|
|
1841
1841
|
export declare const GetConfigurationProductsPropertiesIntegrationsResponseMinLength$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponseMinLength, z.ZodTypeDef, unknown>;
|
|
1842
1842
|
/** @internal */
|
|
1843
1843
|
export type GetConfigurationProductsPropertiesIntegrationsResponseMinLength$Outbound = {
|
|
1844
|
-
"__@BRAND@
|
|
1844
|
+
"__@BRAND@508581": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581$Outbound;
|
|
1845
1845
|
};
|
|
1846
1846
|
/** @internal */
|
|
1847
1847
|
export declare const GetConfigurationProductsPropertiesIntegrationsResponseMinLength$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponseMinLength$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponseMinLength>;
|
|
@@ -1860,30 +1860,30 @@ export declare namespace GetConfigurationProductsPropertiesIntegrationsResponseM
|
|
|
1860
1860
|
export declare function getConfigurationProductsPropertiesIntegrationsResponseMinLengthToJSON(getConfigurationProductsPropertiesIntegrationsResponseMinLength: GetConfigurationProductsPropertiesIntegrationsResponseMinLength): string;
|
|
1861
1861
|
export declare function getConfigurationProductsPropertiesIntegrationsResponseMinLengthFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponseMinLength, SDKValidationError>;
|
|
1862
1862
|
/** @internal */
|
|
1863
|
-
export declare const
|
|
1863
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
1864
1864
|
/** @internal */
|
|
1865
|
-
export type
|
|
1865
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581$Outbound = {};
|
|
1866
1866
|
/** @internal */
|
|
1867
|
-
export declare const
|
|
1867
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581>;
|
|
1868
1868
|
/**
|
|
1869
1869
|
* @internal
|
|
1870
1870
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1871
1871
|
*/
|
|
1872
|
-
export declare namespace
|
|
1873
|
-
/** @deprecated use `
|
|
1874
|
-
const inboundSchema: z.ZodType<
|
|
1875
|
-
/** @deprecated use `
|
|
1876
|
-
const outboundSchema: z.ZodType<
|
|
1877
|
-
/** @deprecated use `
|
|
1878
|
-
type Outbound =
|
|
1872
|
+
export declare namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581$ {
|
|
1873
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581$inboundSchema` instead. */
|
|
1874
|
+
const inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
1875
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581$outboundSchema` instead. */
|
|
1876
|
+
const outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581>;
|
|
1877
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581$Outbound` instead. */
|
|
1878
|
+
type Outbound = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581$Outbound;
|
|
1879
1879
|
}
|
|
1880
|
-
export declare function
|
|
1881
|
-
export declare function
|
|
1880
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581): string;
|
|
1881
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581, SDKValidationError>;
|
|
1882
1882
|
/** @internal */
|
|
1883
1883
|
export declare const GetConfigurationProductsPropertiesIntegrationsResponseMaxLength$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponseMaxLength, z.ZodTypeDef, unknown>;
|
|
1884
1884
|
/** @internal */
|
|
1885
1885
|
export type GetConfigurationProductsPropertiesIntegrationsResponseMaxLength$Outbound = {
|
|
1886
|
-
"__@BRAND@
|
|
1886
|
+
"__@BRAND@508581": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581$Outbound;
|
|
1887
1887
|
};
|
|
1888
1888
|
/** @internal */
|
|
1889
1889
|
export declare const GetConfigurationProductsPropertiesIntegrationsResponseMaxLength$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponseMaxLength$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponseMaxLength>;
|
|
@@ -1902,30 +1902,30 @@ export declare namespace GetConfigurationProductsPropertiesIntegrationsResponseM
|
|
|
1902
1902
|
export declare function getConfigurationProductsPropertiesIntegrationsResponseMaxLengthToJSON(getConfigurationProductsPropertiesIntegrationsResponseMaxLength: GetConfigurationProductsPropertiesIntegrationsResponseMaxLength): string;
|
|
1903
1903
|
export declare function getConfigurationProductsPropertiesIntegrationsResponseMaxLengthFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponseMaxLength, SDKValidationError>;
|
|
1904
1904
|
/** @internal */
|
|
1905
|
-
export declare const
|
|
1905
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
1906
1906
|
/** @internal */
|
|
1907
|
-
export type
|
|
1907
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581$Outbound = {};
|
|
1908
1908
|
/** @internal */
|
|
1909
|
-
export declare const
|
|
1909
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581>;
|
|
1910
1910
|
/**
|
|
1911
1911
|
* @internal
|
|
1912
1912
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1913
1913
|
*/
|
|
1914
|
-
export declare namespace
|
|
1915
|
-
/** @deprecated use `
|
|
1916
|
-
const inboundSchema: z.ZodType<
|
|
1917
|
-
/** @deprecated use `
|
|
1918
|
-
const outboundSchema: z.ZodType<
|
|
1919
|
-
/** @deprecated use `
|
|
1920
|
-
type Outbound =
|
|
1914
|
+
export declare namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581$ {
|
|
1915
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581$inboundSchema` instead. */
|
|
1916
|
+
const inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
1917
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581$outboundSchema` instead. */
|
|
1918
|
+
const outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581>;
|
|
1919
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581$Outbound` instead. */
|
|
1920
|
+
type Outbound = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581$Outbound;
|
|
1921
1921
|
}
|
|
1922
|
-
export declare function
|
|
1923
|
-
export declare function
|
|
1922
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581): string;
|
|
1923
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581, SDKValidationError>;
|
|
1924
1924
|
/** @internal */
|
|
1925
1925
|
export declare const GetConfigurationProductsPropertiesIntegrationsResponsePattern$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponsePattern, z.ZodTypeDef, unknown>;
|
|
1926
1926
|
/** @internal */
|
|
1927
1927
|
export type GetConfigurationProductsPropertiesIntegrationsResponsePattern$Outbound = {
|
|
1928
|
-
"__@BRAND@
|
|
1928
|
+
"__@BRAND@508581": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581$Outbound;
|
|
1929
1929
|
};
|
|
1930
1930
|
/** @internal */
|
|
1931
1931
|
export declare const GetConfigurationProductsPropertiesIntegrationsResponsePattern$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponsePattern$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponsePattern>;
|
|
@@ -1972,30 +1972,30 @@ export declare namespace GetConfigurationProductsPropertiesIntegrationsItems$ {
|
|
|
1972
1972
|
export declare function getConfigurationProductsPropertiesIntegrationsItemsToJSON(getConfigurationProductsPropertiesIntegrationsItems: GetConfigurationProductsPropertiesIntegrationsItems): string;
|
|
1973
1973
|
export declare function getConfigurationProductsPropertiesIntegrationsItemsFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsItems, SDKValidationError>;
|
|
1974
1974
|
/** @internal */
|
|
1975
|
-
export declare const
|
|
1975
|
+
export declare const GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
1976
1976
|
/** @internal */
|
|
1977
|
-
export type
|
|
1977
|
+
export type GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581$Outbound = {};
|
|
1978
1978
|
/** @internal */
|
|
1979
|
-
export declare const
|
|
1979
|
+
export declare const GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581$outboundSchema: z.ZodType<GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581>;
|
|
1980
1980
|
/**
|
|
1981
1981
|
* @internal
|
|
1982
1982
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1983
1983
|
*/
|
|
1984
|
-
export declare namespace
|
|
1985
|
-
/** @deprecated use `
|
|
1986
|
-
const inboundSchema: z.ZodType<
|
|
1987
|
-
/** @deprecated use `
|
|
1988
|
-
const outboundSchema: z.ZodType<
|
|
1989
|
-
/** @deprecated use `
|
|
1990
|
-
type Outbound =
|
|
1984
|
+
export declare namespace GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581$ {
|
|
1985
|
+
/** @deprecated use `GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581$inboundSchema` instead. */
|
|
1986
|
+
const inboundSchema: z.ZodType<GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
1987
|
+
/** @deprecated use `GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581$outboundSchema` instead. */
|
|
1988
|
+
const outboundSchema: z.ZodType<GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581>;
|
|
1989
|
+
/** @deprecated use `GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581$Outbound` instead. */
|
|
1990
|
+
type Outbound = GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581$Outbound;
|
|
1991
1991
|
}
|
|
1992
|
-
export declare function
|
|
1993
|
-
export declare function
|
|
1992
|
+
export declare function getConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581ToJSON(getConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581: GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581): string;
|
|
1993
|
+
export declare function getConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581, SDKValidationError>;
|
|
1994
1994
|
/** @internal */
|
|
1995
1995
|
export declare const GetConfigurationProductsUiOptionsValue$inboundSchema: z.ZodType<GetConfigurationProductsUiOptionsValue, z.ZodTypeDef, unknown>;
|
|
1996
1996
|
/** @internal */
|
|
1997
1997
|
export type GetConfigurationProductsUiOptionsValue$Outbound = {
|
|
1998
|
-
"__@BRAND@
|
|
1998
|
+
"__@BRAND@508581": GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581$Outbound;
|
|
1999
1999
|
};
|
|
2000
2000
|
/** @internal */
|
|
2001
2001
|
export declare const GetConfigurationProductsUiOptionsValue$outboundSchema: z.ZodType<GetConfigurationProductsUiOptionsValue$Outbound, z.ZodTypeDef, GetConfigurationProductsUiOptionsValue>;
|
|
@@ -2162,30 +2162,30 @@ export declare namespace GetConfigurationProductsUiOptions3$ {
|
|
|
2162
2162
|
export declare function getConfigurationProductsUiOptions3ToJSON(getConfigurationProductsUiOptions3: GetConfigurationProductsUiOptions3): string;
|
|
2163
2163
|
export declare function getConfigurationProductsUiOptions3FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiOptions3, SDKValidationError>;
|
|
2164
2164
|
/** @internal */
|
|
2165
|
-
export declare const
|
|
2165
|
+
export declare const GetConfigurationProductsUiOptionsAtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsUiOptionsAtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
2166
2166
|
/** @internal */
|
|
2167
|
-
export type
|
|
2167
|
+
export type GetConfigurationProductsUiOptionsAtBRANDAt508581$Outbound = {};
|
|
2168
2168
|
/** @internal */
|
|
2169
|
-
export declare const
|
|
2169
|
+
export declare const GetConfigurationProductsUiOptionsAtBRANDAt508581$outboundSchema: z.ZodType<GetConfigurationProductsUiOptionsAtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsUiOptionsAtBRANDAt508581>;
|
|
2170
2170
|
/**
|
|
2171
2171
|
* @internal
|
|
2172
2172
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2173
2173
|
*/
|
|
2174
|
-
export declare namespace
|
|
2175
|
-
/** @deprecated use `
|
|
2176
|
-
const inboundSchema: z.ZodType<
|
|
2177
|
-
/** @deprecated use `
|
|
2178
|
-
const outboundSchema: z.ZodType<
|
|
2179
|
-
/** @deprecated use `
|
|
2180
|
-
type Outbound =
|
|
2174
|
+
export declare namespace GetConfigurationProductsUiOptionsAtBRANDAt508581$ {
|
|
2175
|
+
/** @deprecated use `GetConfigurationProductsUiOptionsAtBRANDAt508581$inboundSchema` instead. */
|
|
2176
|
+
const inboundSchema: z.ZodType<GetConfigurationProductsUiOptionsAtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
2177
|
+
/** @deprecated use `GetConfigurationProductsUiOptionsAtBRANDAt508581$outboundSchema` instead. */
|
|
2178
|
+
const outboundSchema: z.ZodType<GetConfigurationProductsUiOptionsAtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsUiOptionsAtBRANDAt508581>;
|
|
2179
|
+
/** @deprecated use `GetConfigurationProductsUiOptionsAtBRANDAt508581$Outbound` instead. */
|
|
2180
|
+
type Outbound = GetConfigurationProductsUiOptionsAtBRANDAt508581$Outbound;
|
|
2181
2181
|
}
|
|
2182
|
-
export declare function
|
|
2183
|
-
export declare function
|
|
2182
|
+
export declare function getConfigurationProductsUiOptionsAtBRANDAt508581ToJSON(getConfigurationProductsUiOptionsAtBRANDAt508581: GetConfigurationProductsUiOptionsAtBRANDAt508581): string;
|
|
2183
|
+
export declare function getConfigurationProductsUiOptionsAtBRANDAt508581FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiOptionsAtBRANDAt508581, SDKValidationError>;
|
|
2184
2184
|
/** @internal */
|
|
2185
2185
|
export declare const GetConfigurationProductsUiOptions2$inboundSchema: z.ZodType<GetConfigurationProductsUiOptions2, z.ZodTypeDef, unknown>;
|
|
2186
2186
|
/** @internal */
|
|
2187
2187
|
export type GetConfigurationProductsUiOptions2$Outbound = {
|
|
2188
|
-
"__@BRAND@
|
|
2188
|
+
"__@BRAND@508581": GetConfigurationProductsUiOptionsAtBRANDAt508581$Outbound;
|
|
2189
2189
|
};
|
|
2190
2190
|
/** @internal */
|
|
2191
2191
|
export declare const GetConfigurationProductsUiOptions2$outboundSchema: z.ZodType<GetConfigurationProductsUiOptions2$Outbound, z.ZodTypeDef, GetConfigurationProductsUiOptions2>;
|
|
@@ -2623,30 +2623,30 @@ export declare namespace GetConfigurationProductsPropertiesIntegrationsResponse2
|
|
|
2623
2623
|
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiFormattedValueToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiFormattedValue: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiFormattedValue): string;
|
|
2624
2624
|
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiFormattedValueFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiFormattedValue, SDKValidationError>;
|
|
2625
2625
|
/** @internal */
|
|
2626
|
-
export declare const
|
|
2626
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
2627
2627
|
/** @internal */
|
|
2628
|
-
export type
|
|
2628
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581$Outbound = {};
|
|
2629
2629
|
/** @internal */
|
|
2630
|
-
export declare const
|
|
2630
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581>;
|
|
2631
2631
|
/**
|
|
2632
2632
|
* @internal
|
|
2633
2633
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2634
2634
|
*/
|
|
2635
|
-
export declare namespace
|
|
2636
|
-
/** @deprecated use `
|
|
2637
|
-
const inboundSchema: z.ZodType<
|
|
2638
|
-
/** @deprecated use `
|
|
2639
|
-
const outboundSchema: z.ZodType<
|
|
2640
|
-
/** @deprecated use `
|
|
2641
|
-
type Outbound =
|
|
2635
|
+
export declare namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581$ {
|
|
2636
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581$inboundSchema` instead. */
|
|
2637
|
+
const inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
2638
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581$outboundSchema` instead. */
|
|
2639
|
+
const outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581>;
|
|
2640
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581$Outbound` instead. */
|
|
2641
|
+
type Outbound = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581$Outbound;
|
|
2642
2642
|
}
|
|
2643
|
-
export declare function
|
|
2644
|
-
export declare function
|
|
2643
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581): string;
|
|
2644
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581, SDKValidationError>;
|
|
2645
2645
|
/** @internal */
|
|
2646
2646
|
export declare const Default$inboundSchema: z.ZodType<Default, z.ZodTypeDef, unknown>;
|
|
2647
2647
|
/** @internal */
|
|
2648
2648
|
export type Default$Outbound = {
|
|
2649
|
-
"__@BRAND@
|
|
2649
|
+
"__@BRAND@508581": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581$Outbound;
|
|
2650
2650
|
};
|
|
2651
2651
|
/** @internal */
|
|
2652
2652
|
export declare const Default$outboundSchema: z.ZodType<Default$Outbound, z.ZodTypeDef, Default>;
|
|
@@ -2665,30 +2665,30 @@ export declare namespace Default$ {
|
|
|
2665
2665
|
export declare function defaultToJSON(value: Default): string;
|
|
2666
2666
|
export declare function defaultFromJSON(jsonString: string): SafeParseResult<Default, SDKValidationError>;
|
|
2667
2667
|
/** @internal */
|
|
2668
|
-
export declare const
|
|
2668
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
2669
2669
|
/** @internal */
|
|
2670
|
-
export type
|
|
2670
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581$Outbound = {};
|
|
2671
2671
|
/** @internal */
|
|
2672
|
-
export declare const
|
|
2672
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581>;
|
|
2673
2673
|
/**
|
|
2674
2674
|
* @internal
|
|
2675
2675
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2676
2676
|
*/
|
|
2677
|
-
export declare namespace
|
|
2678
|
-
/** @deprecated use `
|
|
2679
|
-
const inboundSchema: z.ZodType<
|
|
2680
|
-
/** @deprecated use `
|
|
2681
|
-
const outboundSchema: z.ZodType<
|
|
2682
|
-
/** @deprecated use `
|
|
2683
|
-
type Outbound =
|
|
2677
|
+
export declare namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581$ {
|
|
2678
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581$inboundSchema` instead. */
|
|
2679
|
+
const inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
2680
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581$outboundSchema` instead. */
|
|
2681
|
+
const outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581>;
|
|
2682
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581$Outbound` instead. */
|
|
2683
|
+
type Outbound = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581$Outbound;
|
|
2684
2684
|
}
|
|
2685
|
-
export declare function
|
|
2686
|
-
export declare function
|
|
2685
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581): string;
|
|
2686
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581, SDKValidationError>;
|
|
2687
2687
|
/** @internal */
|
|
2688
2688
|
export declare const Example$inboundSchema: z.ZodType<Example, z.ZodTypeDef, unknown>;
|
|
2689
2689
|
/** @internal */
|
|
2690
2690
|
export type Example$Outbound = {
|
|
2691
|
-
"__@BRAND@
|
|
2691
|
+
"__@BRAND@508581": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581$Outbound;
|
|
2692
2692
|
};
|
|
2693
2693
|
/** @internal */
|
|
2694
2694
|
export declare const Example$outboundSchema: z.ZodType<Example$Outbound, z.ZodTypeDef, Example>;
|
|
@@ -2780,30 +2780,30 @@ export declare namespace GetConfigurationProductsPropertiesIntegrationsResponse2
|
|
|
2780
2780
|
}>;
|
|
2781
2781
|
}
|
|
2782
2782
|
/** @internal */
|
|
2783
|
-
export declare const
|
|
2783
|
+
export declare const GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
2784
2784
|
/** @internal */
|
|
2785
|
-
export type
|
|
2785
|
+
export type GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581$Outbound = {};
|
|
2786
2786
|
/** @internal */
|
|
2787
|
-
export declare const
|
|
2787
|
+
export declare const GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581$outboundSchema: z.ZodType<GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581>;
|
|
2788
2788
|
/**
|
|
2789
2789
|
* @internal
|
|
2790
2790
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2791
2791
|
*/
|
|
2792
|
-
export declare namespace
|
|
2793
|
-
/** @deprecated use `
|
|
2794
|
-
const inboundSchema: z.ZodType<
|
|
2795
|
-
/** @deprecated use `
|
|
2796
|
-
const outboundSchema: z.ZodType<
|
|
2797
|
-
/** @deprecated use `
|
|
2798
|
-
type Outbound =
|
|
2792
|
+
export declare namespace GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581$ {
|
|
2793
|
+
/** @deprecated use `GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581$inboundSchema` instead. */
|
|
2794
|
+
const inboundSchema: z.ZodType<GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
2795
|
+
/** @deprecated use `GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581$outboundSchema` instead. */
|
|
2796
|
+
const outboundSchema: z.ZodType<GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581>;
|
|
2797
|
+
/** @deprecated use `GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581$Outbound` instead. */
|
|
2798
|
+
type Outbound = GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581$Outbound;
|
|
2799
2799
|
}
|
|
2800
|
-
export declare function
|
|
2801
|
-
export declare function
|
|
2800
|
+
export declare function getConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581ToJSON(getConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581: GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581): string;
|
|
2801
|
+
export declare function getConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581, SDKValidationError>;
|
|
2802
2802
|
/** @internal */
|
|
2803
2803
|
export declare const UiOptionsValue$inboundSchema: z.ZodType<UiOptionsValue, z.ZodTypeDef, unknown>;
|
|
2804
2804
|
/** @internal */
|
|
2805
2805
|
export type UiOptionsValue$Outbound = {
|
|
2806
|
-
"__@BRAND@
|
|
2806
|
+
"__@BRAND@508581": GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581$Outbound;
|
|
2807
2807
|
};
|
|
2808
2808
|
/** @internal */
|
|
2809
2809
|
export declare const UiOptionsValue$outboundSchema: z.ZodType<UiOptionsValue$Outbound, z.ZodTypeDef, UiOptionsValue>;
|
|
@@ -2970,30 +2970,30 @@ export declare namespace UiOptions3$ {
|
|
|
2970
2970
|
export declare function uiOptions3ToJSON(uiOptions3: UiOptions3): string;
|
|
2971
2971
|
export declare function uiOptions3FromJSON(jsonString: string): SafeParseResult<UiOptions3, SDKValidationError>;
|
|
2972
2972
|
/** @internal */
|
|
2973
|
-
export declare const
|
|
2973
|
+
export declare const UiOptionsAtBRANDAt508581$inboundSchema: z.ZodType<UiOptionsAtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
2974
2974
|
/** @internal */
|
|
2975
|
-
export type
|
|
2975
|
+
export type UiOptionsAtBRANDAt508581$Outbound = {};
|
|
2976
2976
|
/** @internal */
|
|
2977
|
-
export declare const
|
|
2977
|
+
export declare const UiOptionsAtBRANDAt508581$outboundSchema: z.ZodType<UiOptionsAtBRANDAt508581$Outbound, z.ZodTypeDef, UiOptionsAtBRANDAt508581>;
|
|
2978
2978
|
/**
|
|
2979
2979
|
* @internal
|
|
2980
2980
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2981
2981
|
*/
|
|
2982
|
-
export declare namespace
|
|
2983
|
-
/** @deprecated use `
|
|
2984
|
-
const inboundSchema: z.ZodType<
|
|
2985
|
-
/** @deprecated use `
|
|
2986
|
-
const outboundSchema: z.ZodType<
|
|
2987
|
-
/** @deprecated use `
|
|
2988
|
-
type Outbound =
|
|
2982
|
+
export declare namespace UiOptionsAtBRANDAt508581$ {
|
|
2983
|
+
/** @deprecated use `UiOptionsAtBRANDAt508581$inboundSchema` instead. */
|
|
2984
|
+
const inboundSchema: z.ZodType<UiOptionsAtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
2985
|
+
/** @deprecated use `UiOptionsAtBRANDAt508581$outboundSchema` instead. */
|
|
2986
|
+
const outboundSchema: z.ZodType<UiOptionsAtBRANDAt508581$Outbound, z.ZodTypeDef, UiOptionsAtBRANDAt508581>;
|
|
2987
|
+
/** @deprecated use `UiOptionsAtBRANDAt508581$Outbound` instead. */
|
|
2988
|
+
type Outbound = UiOptionsAtBRANDAt508581$Outbound;
|
|
2989
2989
|
}
|
|
2990
|
-
export declare function
|
|
2991
|
-
export declare function
|
|
2990
|
+
export declare function uiOptionsAtBRANDAt508581ToJSON(uiOptionsAtBRANDAt508581: UiOptionsAtBRANDAt508581): string;
|
|
2991
|
+
export declare function uiOptionsAtBRANDAt508581FromJSON(jsonString: string): SafeParseResult<UiOptionsAtBRANDAt508581, SDKValidationError>;
|
|
2992
2992
|
/** @internal */
|
|
2993
2993
|
export declare const UiOptions2$inboundSchema: z.ZodType<UiOptions2, z.ZodTypeDef, unknown>;
|
|
2994
2994
|
/** @internal */
|
|
2995
2995
|
export type UiOptions2$Outbound = {
|
|
2996
|
-
"__@BRAND@
|
|
2996
|
+
"__@BRAND@508581": UiOptionsAtBRANDAt508581$Outbound;
|
|
2997
2997
|
};
|
|
2998
2998
|
/** @internal */
|
|
2999
2999
|
export declare const UiOptions2$outboundSchema: z.ZodType<UiOptions2$Outbound, z.ZodTypeDef, UiOptions2>;
|
|
@@ -3181,30 +3181,30 @@ export declare namespace GetConfigurationProductsPropertiesUiOptions$ {
|
|
|
3181
3181
|
export declare function getConfigurationProductsPropertiesUiOptionsToJSON(getConfigurationProductsPropertiesUiOptions: GetConfigurationProductsPropertiesUiOptions): string;
|
|
3182
3182
|
export declare function getConfigurationProductsPropertiesUiOptionsFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesUiOptions, SDKValidationError>;
|
|
3183
3183
|
/** @internal */
|
|
3184
|
-
export declare const
|
|
3184
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
3185
3185
|
/** @internal */
|
|
3186
|
-
export type
|
|
3186
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581$Outbound = {};
|
|
3187
3187
|
/** @internal */
|
|
3188
|
-
export declare const
|
|
3188
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581>;
|
|
3189
3189
|
/**
|
|
3190
3190
|
* @internal
|
|
3191
3191
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3192
3192
|
*/
|
|
3193
|
-
export declare namespace
|
|
3194
|
-
/** @deprecated use `
|
|
3195
|
-
const inboundSchema: z.ZodType<
|
|
3196
|
-
/** @deprecated use `
|
|
3197
|
-
const outboundSchema: z.ZodType<
|
|
3198
|
-
/** @deprecated use `
|
|
3199
|
-
type Outbound =
|
|
3193
|
+
export declare namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581$ {
|
|
3194
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581$inboundSchema` instead. */
|
|
3195
|
+
const inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
3196
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581$outboundSchema` instead. */
|
|
3197
|
+
const outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581>;
|
|
3198
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581$Outbound` instead. */
|
|
3199
|
+
type Outbound = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581$Outbound;
|
|
3200
3200
|
}
|
|
3201
|
-
export declare function
|
|
3202
|
-
export declare function
|
|
3201
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581): string;
|
|
3202
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581, SDKValidationError>;
|
|
3203
3203
|
/** @internal */
|
|
3204
3204
|
export declare const GetConfigurationProductsPropertiesMinLength$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesMinLength, z.ZodTypeDef, unknown>;
|
|
3205
3205
|
/** @internal */
|
|
3206
3206
|
export type GetConfigurationProductsPropertiesMinLength$Outbound = {
|
|
3207
|
-
"__@BRAND@
|
|
3207
|
+
"__@BRAND@508581": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581$Outbound;
|
|
3208
3208
|
};
|
|
3209
3209
|
/** @internal */
|
|
3210
3210
|
export declare const GetConfigurationProductsPropertiesMinLength$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesMinLength$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesMinLength>;
|
|
@@ -3223,30 +3223,30 @@ export declare namespace GetConfigurationProductsPropertiesMinLength$ {
|
|
|
3223
3223
|
export declare function getConfigurationProductsPropertiesMinLengthToJSON(getConfigurationProductsPropertiesMinLength: GetConfigurationProductsPropertiesMinLength): string;
|
|
3224
3224
|
export declare function getConfigurationProductsPropertiesMinLengthFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesMinLength, SDKValidationError>;
|
|
3225
3225
|
/** @internal */
|
|
3226
|
-
export declare const
|
|
3226
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
3227
3227
|
/** @internal */
|
|
3228
|
-
export type
|
|
3228
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581$Outbound = {};
|
|
3229
3229
|
/** @internal */
|
|
3230
|
-
export declare const
|
|
3230
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581>;
|
|
3231
3231
|
/**
|
|
3232
3232
|
* @internal
|
|
3233
3233
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3234
3234
|
*/
|
|
3235
|
-
export declare namespace
|
|
3236
|
-
/** @deprecated use `
|
|
3237
|
-
const inboundSchema: z.ZodType<
|
|
3238
|
-
/** @deprecated use `
|
|
3239
|
-
const outboundSchema: z.ZodType<
|
|
3240
|
-
/** @deprecated use `
|
|
3241
|
-
type Outbound =
|
|
3235
|
+
export declare namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581$ {
|
|
3236
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581$inboundSchema` instead. */
|
|
3237
|
+
const inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
3238
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581$outboundSchema` instead. */
|
|
3239
|
+
const outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581>;
|
|
3240
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581$Outbound` instead. */
|
|
3241
|
+
type Outbound = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581$Outbound;
|
|
3242
3242
|
}
|
|
3243
|
-
export declare function
|
|
3244
|
-
export declare function
|
|
3243
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581): string;
|
|
3244
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581, SDKValidationError>;
|
|
3245
3245
|
/** @internal */
|
|
3246
3246
|
export declare const GetConfigurationProductsPropertiesMaxLength$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesMaxLength, z.ZodTypeDef, unknown>;
|
|
3247
3247
|
/** @internal */
|
|
3248
3248
|
export type GetConfigurationProductsPropertiesMaxLength$Outbound = {
|
|
3249
|
-
"__@BRAND@
|
|
3249
|
+
"__@BRAND@508581": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581$Outbound;
|
|
3250
3250
|
};
|
|
3251
3251
|
/** @internal */
|
|
3252
3252
|
export declare const GetConfigurationProductsPropertiesMaxLength$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesMaxLength$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesMaxLength>;
|
|
@@ -3265,30 +3265,30 @@ export declare namespace GetConfigurationProductsPropertiesMaxLength$ {
|
|
|
3265
3265
|
export declare function getConfigurationProductsPropertiesMaxLengthToJSON(getConfigurationProductsPropertiesMaxLength: GetConfigurationProductsPropertiesMaxLength): string;
|
|
3266
3266
|
export declare function getConfigurationProductsPropertiesMaxLengthFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesMaxLength, SDKValidationError>;
|
|
3267
3267
|
/** @internal */
|
|
3268
|
-
export declare const
|
|
3268
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
3269
3269
|
/** @internal */
|
|
3270
|
-
export type
|
|
3270
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581$Outbound = {};
|
|
3271
3271
|
/** @internal */
|
|
3272
|
-
export declare const
|
|
3272
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581>;
|
|
3273
3273
|
/**
|
|
3274
3274
|
* @internal
|
|
3275
3275
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3276
3276
|
*/
|
|
3277
|
-
export declare namespace
|
|
3278
|
-
/** @deprecated use `
|
|
3279
|
-
const inboundSchema: z.ZodType<
|
|
3280
|
-
/** @deprecated use `
|
|
3281
|
-
const outboundSchema: z.ZodType<
|
|
3282
|
-
/** @deprecated use `
|
|
3283
|
-
type Outbound =
|
|
3277
|
+
export declare namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581$ {
|
|
3278
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581$inboundSchema` instead. */
|
|
3279
|
+
const inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
3280
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581$outboundSchema` instead. */
|
|
3281
|
+
const outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581>;
|
|
3282
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581$Outbound` instead. */
|
|
3283
|
+
type Outbound = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581$Outbound;
|
|
3284
3284
|
}
|
|
3285
|
-
export declare function
|
|
3286
|
-
export declare function
|
|
3285
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581): string;
|
|
3286
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581, SDKValidationError>;
|
|
3287
3287
|
/** @internal */
|
|
3288
3288
|
export declare const GetConfigurationProductsPropertiesPattern$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesPattern, z.ZodTypeDef, unknown>;
|
|
3289
3289
|
/** @internal */
|
|
3290
3290
|
export type GetConfigurationProductsPropertiesPattern$Outbound = {
|
|
3291
|
-
"__@BRAND@
|
|
3291
|
+
"__@BRAND@508581": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581$Outbound;
|
|
3292
3292
|
};
|
|
3293
3293
|
/** @internal */
|
|
3294
3294
|
export declare const GetConfigurationProductsPropertiesPattern$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesPattern$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesPattern>;
|
|
@@ -3648,30 +3648,30 @@ export declare namespace GetConfigurationProductsPropertiesIntegrationsResponse2
|
|
|
3648
3648
|
}>;
|
|
3649
3649
|
}
|
|
3650
3650
|
/** @internal */
|
|
3651
|
-
export declare const
|
|
3651
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
3652
3652
|
/** @internal */
|
|
3653
|
-
export type
|
|
3653
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581$Outbound = {};
|
|
3654
3654
|
/** @internal */
|
|
3655
|
-
export declare const
|
|
3655
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581>;
|
|
3656
3656
|
/**
|
|
3657
3657
|
* @internal
|
|
3658
3658
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3659
3659
|
*/
|
|
3660
|
-
export declare namespace
|
|
3661
|
-
/** @deprecated use `
|
|
3662
|
-
const inboundSchema: z.ZodType<
|
|
3663
|
-
/** @deprecated use `
|
|
3664
|
-
const outboundSchema: z.ZodType<
|
|
3665
|
-
/** @deprecated use `
|
|
3666
|
-
type Outbound =
|
|
3660
|
+
export declare namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581$ {
|
|
3661
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581$inboundSchema` instead. */
|
|
3662
|
+
const inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
3663
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581$outboundSchema` instead. */
|
|
3664
|
+
const outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581>;
|
|
3665
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581$Outbound` instead. */
|
|
3666
|
+
type Outbound = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581$Outbound;
|
|
3667
3667
|
}
|
|
3668
|
-
export declare function
|
|
3669
|
-
export declare function
|
|
3668
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581): string;
|
|
3669
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581, SDKValidationError>;
|
|
3670
3670
|
/** @internal */
|
|
3671
3671
|
export declare const GetConfigurationProductsPropertiesIntegrationsMinLength$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsMinLength, z.ZodTypeDef, unknown>;
|
|
3672
3672
|
/** @internal */
|
|
3673
3673
|
export type GetConfigurationProductsPropertiesIntegrationsMinLength$Outbound = {
|
|
3674
|
-
"__@BRAND@
|
|
3674
|
+
"__@BRAND@508581": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581$Outbound;
|
|
3675
3675
|
};
|
|
3676
3676
|
/** @internal */
|
|
3677
3677
|
export declare const GetConfigurationProductsPropertiesIntegrationsMinLength$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsMinLength$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsMinLength>;
|
|
@@ -3690,30 +3690,30 @@ export declare namespace GetConfigurationProductsPropertiesIntegrationsMinLength
|
|
|
3690
3690
|
export declare function getConfigurationProductsPropertiesIntegrationsMinLengthToJSON(getConfigurationProductsPropertiesIntegrationsMinLength: GetConfigurationProductsPropertiesIntegrationsMinLength): string;
|
|
3691
3691
|
export declare function getConfigurationProductsPropertiesIntegrationsMinLengthFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsMinLength, SDKValidationError>;
|
|
3692
3692
|
/** @internal */
|
|
3693
|
-
export declare const
|
|
3693
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
3694
3694
|
/** @internal */
|
|
3695
|
-
export type
|
|
3695
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581$Outbound = {};
|
|
3696
3696
|
/** @internal */
|
|
3697
|
-
export declare const
|
|
3697
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581>;
|
|
3698
3698
|
/**
|
|
3699
3699
|
* @internal
|
|
3700
3700
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3701
3701
|
*/
|
|
3702
|
-
export declare namespace
|
|
3703
|
-
/** @deprecated use `
|
|
3704
|
-
const inboundSchema: z.ZodType<
|
|
3705
|
-
/** @deprecated use `
|
|
3706
|
-
const outboundSchema: z.ZodType<
|
|
3707
|
-
/** @deprecated use `
|
|
3708
|
-
type Outbound =
|
|
3702
|
+
export declare namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581$ {
|
|
3703
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581$inboundSchema` instead. */
|
|
3704
|
+
const inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
3705
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581$outboundSchema` instead. */
|
|
3706
|
+
const outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581>;
|
|
3707
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581$Outbound` instead. */
|
|
3708
|
+
type Outbound = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581$Outbound;
|
|
3709
3709
|
}
|
|
3710
|
-
export declare function
|
|
3711
|
-
export declare function
|
|
3710
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581): string;
|
|
3711
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581, SDKValidationError>;
|
|
3712
3712
|
/** @internal */
|
|
3713
3713
|
export declare const GetConfigurationProductsPropertiesIntegrationsMaxLength$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsMaxLength, z.ZodTypeDef, unknown>;
|
|
3714
3714
|
/** @internal */
|
|
3715
3715
|
export type GetConfigurationProductsPropertiesIntegrationsMaxLength$Outbound = {
|
|
3716
|
-
"__@BRAND@
|
|
3716
|
+
"__@BRAND@508581": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581$Outbound;
|
|
3717
3717
|
};
|
|
3718
3718
|
/** @internal */
|
|
3719
3719
|
export declare const GetConfigurationProductsPropertiesIntegrationsMaxLength$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsMaxLength$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsMaxLength>;
|
|
@@ -3732,30 +3732,30 @@ export declare namespace GetConfigurationProductsPropertiesIntegrationsMaxLength
|
|
|
3732
3732
|
export declare function getConfigurationProductsPropertiesIntegrationsMaxLengthToJSON(getConfigurationProductsPropertiesIntegrationsMaxLength: GetConfigurationProductsPropertiesIntegrationsMaxLength): string;
|
|
3733
3733
|
export declare function getConfigurationProductsPropertiesIntegrationsMaxLengthFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsMaxLength, SDKValidationError>;
|
|
3734
3734
|
/** @internal */
|
|
3735
|
-
export declare const
|
|
3735
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
3736
3736
|
/** @internal */
|
|
3737
|
-
export type
|
|
3737
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581$Outbound = {};
|
|
3738
3738
|
/** @internal */
|
|
3739
|
-
export declare const
|
|
3739
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581>;
|
|
3740
3740
|
/**
|
|
3741
3741
|
* @internal
|
|
3742
3742
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3743
3743
|
*/
|
|
3744
|
-
export declare namespace
|
|
3745
|
-
/** @deprecated use `
|
|
3746
|
-
const inboundSchema: z.ZodType<
|
|
3747
|
-
/** @deprecated use `
|
|
3748
|
-
const outboundSchema: z.ZodType<
|
|
3749
|
-
/** @deprecated use `
|
|
3750
|
-
type Outbound =
|
|
3744
|
+
export declare namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581$ {
|
|
3745
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581$inboundSchema` instead. */
|
|
3746
|
+
const inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
3747
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581$outboundSchema` instead. */
|
|
3748
|
+
const outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581>;
|
|
3749
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581$Outbound` instead. */
|
|
3750
|
+
type Outbound = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581$Outbound;
|
|
3751
3751
|
}
|
|
3752
|
-
export declare function
|
|
3753
|
-
export declare function
|
|
3752
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581): string;
|
|
3753
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581, SDKValidationError>;
|
|
3754
3754
|
/** @internal */
|
|
3755
3755
|
export declare const GetConfigurationProductsPropertiesIntegrationsPattern$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsPattern, z.ZodTypeDef, unknown>;
|
|
3756
3756
|
/** @internal */
|
|
3757
3757
|
export type GetConfigurationProductsPropertiesIntegrationsPattern$Outbound = {
|
|
3758
|
-
"__@BRAND@
|
|
3758
|
+
"__@BRAND@508581": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581$Outbound;
|
|
3759
3759
|
};
|
|
3760
3760
|
/** @internal */
|
|
3761
3761
|
export declare const GetConfigurationProductsPropertiesIntegrationsPattern$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsPattern$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsPattern>;
|
|
@@ -4423,30 +4423,30 @@ export declare namespace UiOptions$ {
|
|
|
4423
4423
|
export declare function uiOptionsToJSON(uiOptions: UiOptions): string;
|
|
4424
4424
|
export declare function uiOptionsFromJSON(jsonString: string): SafeParseResult<UiOptions, SDKValidationError>;
|
|
4425
4425
|
/** @internal */
|
|
4426
|
-
export declare const
|
|
4426
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
4427
4427
|
/** @internal */
|
|
4428
|
-
export type
|
|
4428
|
+
export type GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581$Outbound = {};
|
|
4429
4429
|
/** @internal */
|
|
4430
|
-
export declare const
|
|
4430
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581>;
|
|
4431
4431
|
/**
|
|
4432
4432
|
* @internal
|
|
4433
4433
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4434
4434
|
*/
|
|
4435
|
-
export declare namespace
|
|
4436
|
-
/** @deprecated use `
|
|
4437
|
-
const inboundSchema: z.ZodType<
|
|
4438
|
-
/** @deprecated use `
|
|
4439
|
-
const outboundSchema: z.ZodType<
|
|
4440
|
-
/** @deprecated use `
|
|
4441
|
-
type Outbound =
|
|
4435
|
+
export declare namespace GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581$ {
|
|
4436
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581$inboundSchema` instead. */
|
|
4437
|
+
const inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
4438
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581$outboundSchema` instead. */
|
|
4439
|
+
const outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581>;
|
|
4440
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581$Outbound` instead. */
|
|
4441
|
+
type Outbound = GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581$Outbound;
|
|
4442
4442
|
}
|
|
4443
|
-
export declare function
|
|
4444
|
-
export declare function
|
|
4443
|
+
export declare function getConfigurationProductsPropertiesIntegrationsAtBRANDAt508581ToJSON(getConfigurationProductsPropertiesIntegrationsAtBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581): string;
|
|
4444
|
+
export declare function getConfigurationProductsPropertiesIntegrationsAtBRANDAt508581FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581, SDKValidationError>;
|
|
4445
4445
|
/** @internal */
|
|
4446
4446
|
export declare const PropertiesMinLength$inboundSchema: z.ZodType<PropertiesMinLength, z.ZodTypeDef, unknown>;
|
|
4447
4447
|
/** @internal */
|
|
4448
4448
|
export type PropertiesMinLength$Outbound = {
|
|
4449
|
-
"__@BRAND@
|
|
4449
|
+
"__@BRAND@508581": GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581$Outbound;
|
|
4450
4450
|
};
|
|
4451
4451
|
/** @internal */
|
|
4452
4452
|
export declare const PropertiesMinLength$outboundSchema: z.ZodType<PropertiesMinLength$Outbound, z.ZodTypeDef, PropertiesMinLength>;
|
|
@@ -4465,30 +4465,30 @@ export declare namespace PropertiesMinLength$ {
|
|
|
4465
4465
|
export declare function propertiesMinLengthToJSON(propertiesMinLength: PropertiesMinLength): string;
|
|
4466
4466
|
export declare function propertiesMinLengthFromJSON(jsonString: string): SafeParseResult<PropertiesMinLength, SDKValidationError>;
|
|
4467
4467
|
/** @internal */
|
|
4468
|
-
export declare const
|
|
4468
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
4469
4469
|
/** @internal */
|
|
4470
|
-
export type
|
|
4470
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581$Outbound = {};
|
|
4471
4471
|
/** @internal */
|
|
4472
|
-
export declare const
|
|
4472
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581>;
|
|
4473
4473
|
/**
|
|
4474
4474
|
* @internal
|
|
4475
4475
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4476
4476
|
*/
|
|
4477
|
-
export declare namespace
|
|
4478
|
-
/** @deprecated use `
|
|
4479
|
-
const inboundSchema: z.ZodType<
|
|
4480
|
-
/** @deprecated use `
|
|
4481
|
-
const outboundSchema: z.ZodType<
|
|
4482
|
-
/** @deprecated use `
|
|
4483
|
-
type Outbound =
|
|
4477
|
+
export declare namespace GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581$ {
|
|
4478
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581$inboundSchema` instead. */
|
|
4479
|
+
const inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
4480
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581$outboundSchema` instead. */
|
|
4481
|
+
const outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581>;
|
|
4482
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581$Outbound` instead. */
|
|
4483
|
+
type Outbound = GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581$Outbound;
|
|
4484
4484
|
}
|
|
4485
|
-
export declare function
|
|
4486
|
-
export declare function
|
|
4485
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581ToJSON(getConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581): string;
|
|
4486
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581, SDKValidationError>;
|
|
4487
4487
|
/** @internal */
|
|
4488
4488
|
export declare const PropertiesMaxLength$inboundSchema: z.ZodType<PropertiesMaxLength, z.ZodTypeDef, unknown>;
|
|
4489
4489
|
/** @internal */
|
|
4490
4490
|
export type PropertiesMaxLength$Outbound = {
|
|
4491
|
-
"__@BRAND@
|
|
4491
|
+
"__@BRAND@508581": GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581$Outbound;
|
|
4492
4492
|
};
|
|
4493
4493
|
/** @internal */
|
|
4494
4494
|
export declare const PropertiesMaxLength$outboundSchema: z.ZodType<PropertiesMaxLength$Outbound, z.ZodTypeDef, PropertiesMaxLength>;
|
|
@@ -4507,30 +4507,30 @@ export declare namespace PropertiesMaxLength$ {
|
|
|
4507
4507
|
export declare function propertiesMaxLengthToJSON(propertiesMaxLength: PropertiesMaxLength): string;
|
|
4508
4508
|
export declare function propertiesMaxLengthFromJSON(jsonString: string): SafeParseResult<PropertiesMaxLength, SDKValidationError>;
|
|
4509
4509
|
/** @internal */
|
|
4510
|
-
export declare const
|
|
4510
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
4511
4511
|
/** @internal */
|
|
4512
|
-
export type
|
|
4512
|
+
export type GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581$Outbound = {};
|
|
4513
4513
|
/** @internal */
|
|
4514
|
-
export declare const
|
|
4514
|
+
export declare const GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581>;
|
|
4515
4515
|
/**
|
|
4516
4516
|
* @internal
|
|
4517
4517
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4518
4518
|
*/
|
|
4519
|
-
export declare namespace
|
|
4520
|
-
/** @deprecated use `
|
|
4521
|
-
const inboundSchema: z.ZodType<
|
|
4522
|
-
/** @deprecated use `
|
|
4523
|
-
const outboundSchema: z.ZodType<
|
|
4524
|
-
/** @deprecated use `
|
|
4525
|
-
type Outbound =
|
|
4519
|
+
export declare namespace GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581$ {
|
|
4520
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581$inboundSchema` instead. */
|
|
4521
|
+
const inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
4522
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581$outboundSchema` instead. */
|
|
4523
|
+
const outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581>;
|
|
4524
|
+
/** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581$Outbound` instead. */
|
|
4525
|
+
type Outbound = GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581$Outbound;
|
|
4526
4526
|
}
|
|
4527
|
-
export declare function
|
|
4528
|
-
export declare function
|
|
4527
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581): string;
|
|
4528
|
+
export declare function getConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581, SDKValidationError>;
|
|
4529
4529
|
/** @internal */
|
|
4530
4530
|
export declare const PropertiesPattern$inboundSchema: z.ZodType<PropertiesPattern, z.ZodTypeDef, unknown>;
|
|
4531
4531
|
/** @internal */
|
|
4532
4532
|
export type PropertiesPattern$Outbound = {
|
|
4533
|
-
"__@BRAND@
|
|
4533
|
+
"__@BRAND@508581": GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581$Outbound;
|
|
4534
4534
|
};
|
|
4535
4535
|
/** @internal */
|
|
4536
4536
|
export declare const PropertiesPattern$outboundSchema: z.ZodType<PropertiesPattern$Outbound, z.ZodTypeDef, PropertiesPattern>;
|
|
@@ -5878,30 +5878,30 @@ export declare namespace UiControl$ {
|
|
|
5878
5878
|
}>;
|
|
5879
5879
|
}
|
|
5880
5880
|
/** @internal */
|
|
5881
|
-
export declare const
|
|
5881
|
+
export declare const AtBRANDAt508581$inboundSchema: z.ZodType<AtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
5882
5882
|
/** @internal */
|
|
5883
|
-
export type
|
|
5883
|
+
export type AtBRANDAt508581$Outbound = {};
|
|
5884
5884
|
/** @internal */
|
|
5885
|
-
export declare const
|
|
5885
|
+
export declare const AtBRANDAt508581$outboundSchema: z.ZodType<AtBRANDAt508581$Outbound, z.ZodTypeDef, AtBRANDAt508581>;
|
|
5886
5886
|
/**
|
|
5887
5887
|
* @internal
|
|
5888
5888
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5889
5889
|
*/
|
|
5890
|
-
export declare namespace
|
|
5891
|
-
/** @deprecated use `
|
|
5892
|
-
const inboundSchema: z.ZodType<
|
|
5893
|
-
/** @deprecated use `
|
|
5894
|
-
const outboundSchema: z.ZodType<
|
|
5895
|
-
/** @deprecated use `
|
|
5896
|
-
type Outbound =
|
|
5890
|
+
export declare namespace AtBRANDAt508581$ {
|
|
5891
|
+
/** @deprecated use `AtBRANDAt508581$inboundSchema` instead. */
|
|
5892
|
+
const inboundSchema: z.ZodType<AtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
5893
|
+
/** @deprecated use `AtBRANDAt508581$outboundSchema` instead. */
|
|
5894
|
+
const outboundSchema: z.ZodType<AtBRANDAt508581$Outbound, z.ZodTypeDef, AtBRANDAt508581>;
|
|
5895
|
+
/** @deprecated use `AtBRANDAt508581$Outbound` instead. */
|
|
5896
|
+
type Outbound = AtBRANDAt508581$Outbound;
|
|
5897
5897
|
}
|
|
5898
|
-
export declare function
|
|
5899
|
-
export declare function
|
|
5898
|
+
export declare function atBRANDAt508581ToJSON(atBRANDAt508581: AtBRANDAt508581): string;
|
|
5899
|
+
export declare function atBRANDAt508581FromJSON(jsonString: string): SafeParseResult<AtBRANDAt508581, SDKValidationError>;
|
|
5900
5900
|
/** @internal */
|
|
5901
5901
|
export declare const MinLength$inboundSchema: z.ZodType<MinLength, z.ZodTypeDef, unknown>;
|
|
5902
5902
|
/** @internal */
|
|
5903
5903
|
export type MinLength$Outbound = {
|
|
5904
|
-
"__@BRAND@
|
|
5904
|
+
"__@BRAND@508581": AtBRANDAt508581$Outbound;
|
|
5905
5905
|
};
|
|
5906
5906
|
/** @internal */
|
|
5907
5907
|
export declare const MinLength$outboundSchema: z.ZodType<MinLength$Outbound, z.ZodTypeDef, MinLength>;
|
|
@@ -5920,30 +5920,30 @@ export declare namespace MinLength$ {
|
|
|
5920
5920
|
export declare function minLengthToJSON(minLength: MinLength): string;
|
|
5921
5921
|
export declare function minLengthFromJSON(jsonString: string): SafeParseResult<MinLength, SDKValidationError>;
|
|
5922
5922
|
/** @internal */
|
|
5923
|
-
export declare const
|
|
5923
|
+
export declare const PropertiesAtBRANDAt508581$inboundSchema: z.ZodType<PropertiesAtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
5924
5924
|
/** @internal */
|
|
5925
|
-
export type
|
|
5925
|
+
export type PropertiesAtBRANDAt508581$Outbound = {};
|
|
5926
5926
|
/** @internal */
|
|
5927
|
-
export declare const
|
|
5927
|
+
export declare const PropertiesAtBRANDAt508581$outboundSchema: z.ZodType<PropertiesAtBRANDAt508581$Outbound, z.ZodTypeDef, PropertiesAtBRANDAt508581>;
|
|
5928
5928
|
/**
|
|
5929
5929
|
* @internal
|
|
5930
5930
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5931
5931
|
*/
|
|
5932
|
-
export declare namespace
|
|
5933
|
-
/** @deprecated use `
|
|
5934
|
-
const inboundSchema: z.ZodType<
|
|
5935
|
-
/** @deprecated use `
|
|
5936
|
-
const outboundSchema: z.ZodType<
|
|
5937
|
-
/** @deprecated use `
|
|
5938
|
-
type Outbound =
|
|
5932
|
+
export declare namespace PropertiesAtBRANDAt508581$ {
|
|
5933
|
+
/** @deprecated use `PropertiesAtBRANDAt508581$inboundSchema` instead. */
|
|
5934
|
+
const inboundSchema: z.ZodType<PropertiesAtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
5935
|
+
/** @deprecated use `PropertiesAtBRANDAt508581$outboundSchema` instead. */
|
|
5936
|
+
const outboundSchema: z.ZodType<PropertiesAtBRANDAt508581$Outbound, z.ZodTypeDef, PropertiesAtBRANDAt508581>;
|
|
5937
|
+
/** @deprecated use `PropertiesAtBRANDAt508581$Outbound` instead. */
|
|
5938
|
+
type Outbound = PropertiesAtBRANDAt508581$Outbound;
|
|
5939
5939
|
}
|
|
5940
|
-
export declare function
|
|
5941
|
-
export declare function
|
|
5940
|
+
export declare function propertiesAtBRANDAt508581ToJSON(propertiesAtBRANDAt508581: PropertiesAtBRANDAt508581): string;
|
|
5941
|
+
export declare function propertiesAtBRANDAt508581FromJSON(jsonString: string): SafeParseResult<PropertiesAtBRANDAt508581, SDKValidationError>;
|
|
5942
5942
|
/** @internal */
|
|
5943
5943
|
export declare const MaxLength$inboundSchema: z.ZodType<MaxLength, z.ZodTypeDef, unknown>;
|
|
5944
5944
|
/** @internal */
|
|
5945
5945
|
export type MaxLength$Outbound = {
|
|
5946
|
-
"__@BRAND@
|
|
5946
|
+
"__@BRAND@508581": PropertiesAtBRANDAt508581$Outbound;
|
|
5947
5947
|
};
|
|
5948
5948
|
/** @internal */
|
|
5949
5949
|
export declare const MaxLength$outboundSchema: z.ZodType<MaxLength$Outbound, z.ZodTypeDef, MaxLength>;
|
|
@@ -5962,30 +5962,30 @@ export declare namespace MaxLength$ {
|
|
|
5962
5962
|
export declare function maxLengthToJSON(maxLength: MaxLength): string;
|
|
5963
5963
|
export declare function maxLengthFromJSON(jsonString: string): SafeParseResult<MaxLength, SDKValidationError>;
|
|
5964
5964
|
/** @internal */
|
|
5965
|
-
export declare const
|
|
5965
|
+
export declare const GetConfigurationProductsPropertiesAtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesAtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
5966
5966
|
/** @internal */
|
|
5967
|
-
export type
|
|
5967
|
+
export type GetConfigurationProductsPropertiesAtBRANDAt508581$Outbound = {};
|
|
5968
5968
|
/** @internal */
|
|
5969
|
-
export declare const
|
|
5969
|
+
export declare const GetConfigurationProductsPropertiesAtBRANDAt508581$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesAtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesAtBRANDAt508581>;
|
|
5970
5970
|
/**
|
|
5971
5971
|
* @internal
|
|
5972
5972
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5973
5973
|
*/
|
|
5974
|
-
export declare namespace
|
|
5975
|
-
/** @deprecated use `
|
|
5976
|
-
const inboundSchema: z.ZodType<
|
|
5977
|
-
/** @deprecated use `
|
|
5978
|
-
const outboundSchema: z.ZodType<
|
|
5979
|
-
/** @deprecated use `
|
|
5980
|
-
type Outbound =
|
|
5974
|
+
export declare namespace GetConfigurationProductsPropertiesAtBRANDAt508581$ {
|
|
5975
|
+
/** @deprecated use `GetConfigurationProductsPropertiesAtBRANDAt508581$inboundSchema` instead. */
|
|
5976
|
+
const inboundSchema: z.ZodType<GetConfigurationProductsPropertiesAtBRANDAt508581, z.ZodTypeDef, unknown>;
|
|
5977
|
+
/** @deprecated use `GetConfigurationProductsPropertiesAtBRANDAt508581$outboundSchema` instead. */
|
|
5978
|
+
const outboundSchema: z.ZodType<GetConfigurationProductsPropertiesAtBRANDAt508581$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesAtBRANDAt508581>;
|
|
5979
|
+
/** @deprecated use `GetConfigurationProductsPropertiesAtBRANDAt508581$Outbound` instead. */
|
|
5980
|
+
type Outbound = GetConfigurationProductsPropertiesAtBRANDAt508581$Outbound;
|
|
5981
5981
|
}
|
|
5982
|
-
export declare function
|
|
5983
|
-
export declare function
|
|
5982
|
+
export declare function getConfigurationProductsPropertiesAtBRANDAt508581ToJSON(getConfigurationProductsPropertiesAtBRANDAt508581: GetConfigurationProductsPropertiesAtBRANDAt508581): string;
|
|
5983
|
+
export declare function getConfigurationProductsPropertiesAtBRANDAt508581FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesAtBRANDAt508581, SDKValidationError>;
|
|
5984
5984
|
/** @internal */
|
|
5985
5985
|
export declare const Pattern$inboundSchema: z.ZodType<Pattern, z.ZodTypeDef, unknown>;
|
|
5986
5986
|
/** @internal */
|
|
5987
5987
|
export type Pattern$Outbound = {
|
|
5988
|
-
"__@BRAND@
|
|
5988
|
+
"__@BRAND@508581": GetConfigurationProductsPropertiesAtBRANDAt508581$Outbound;
|
|
5989
5989
|
};
|
|
5990
5990
|
/** @internal */
|
|
5991
5991
|
export declare const Pattern$outboundSchema: z.ZodType<Pattern$Outbound, z.ZodTypeDef, Pattern>;
|