@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.
Files changed (105) hide show
  1. package/bin/mcp-server.js +3715 -927
  2. package/bin/mcp-server.js.map +20 -20
  3. package/esm/__tests__/accessgroups.test.js +6 -6
  4. package/esm/__tests__/accessgroups.test.js.map +1 -1
  5. package/esm/__tests__/domains.test.js +5 -6
  6. package/esm/__tests__/domains.test.js.map +1 -1
  7. package/esm/__tests__/edgeconfig.test.js +6 -6
  8. package/esm/__tests__/edgeconfig.test.js.map +1 -1
  9. package/esm/__tests__/integrations.test.js +1 -1
  10. package/esm/__tests__/rollingrelease.test.js +2 -2
  11. package/esm/__tests__/rollingrelease.test.js.map +1 -1
  12. package/esm/__tests__/security.test.js +11 -1
  13. package/esm/__tests__/security.test.js.map +1 -1
  14. package/esm/__tests__/teams.test.js +2 -2
  15. package/esm/__tests__/teams.test.js.map +1 -1
  16. package/esm/lib/config.d.ts +3 -3
  17. package/esm/lib/config.js +3 -3
  18. package/esm/mcp-server/mcp-server.js +1 -1
  19. package/esm/mcp-server/server.js +1 -1
  20. package/esm/models/canceldeploymentop.d.ts +41 -41
  21. package/esm/models/canceldeploymentop.d.ts.map +1 -1
  22. package/esm/models/canceldeploymentop.js +43 -41
  23. package/esm/models/canceldeploymentop.js.map +1 -1
  24. package/esm/models/createdeploymentop.d.ts +98 -98
  25. package/esm/models/createdeploymentop.d.ts.map +1 -1
  26. package/esm/models/createdeploymentop.js +113 -117
  27. package/esm/models/createdeploymentop.js.map +1 -1
  28. package/esm/models/createintegrationstoredirectop.d.ts +240 -240
  29. package/esm/models/createintegrationstoredirectop.js +294 -294
  30. package/esm/models/createprojectop.d.ts +1626 -281
  31. package/esm/models/createprojectop.d.ts.map +1 -1
  32. package/esm/models/createprojectop.js +1676 -298
  33. package/esm/models/createprojectop.js.map +1 -1
  34. package/esm/models/createwebhookop.d.ts +72 -66
  35. package/esm/models/createwebhookop.d.ts.map +1 -1
  36. package/esm/models/createwebhookop.js +24 -22
  37. package/esm/models/createwebhookop.js.map +1 -1
  38. package/esm/models/getconfigurationproductsop.d.ts +330 -330
  39. package/esm/models/getconfigurationproductsop.js +408 -408
  40. package/esm/models/getdeploymentop.d.ts +16 -16
  41. package/esm/models/getdeploymentop.d.ts.map +1 -1
  42. package/esm/models/getdeploymentop.js +24 -24
  43. package/esm/models/getdeploymentop.js.map +1 -1
  44. package/esm/models/getprojectsop.d.ts +1402 -57
  45. package/esm/models/getprojectsop.d.ts.map +1 -1
  46. package/esm/models/getprojectsop.js +1575 -202
  47. package/esm/models/getprojectsop.js.map +1 -1
  48. package/esm/models/getwebhookop.d.ts +36 -33
  49. package/esm/models/getwebhookop.d.ts.map +1 -1
  50. package/esm/models/getwebhookop.js +12 -11
  51. package/esm/models/getwebhookop.js.map +1 -1
  52. package/esm/models/getwebhooksop.d.ts +72 -66
  53. package/esm/models/getwebhooksop.d.ts.map +1 -1
  54. package/esm/models/getwebhooksop.js +24 -22
  55. package/esm/models/getwebhooksop.js.map +1 -1
  56. package/esm/models/listaccessgroupsop.d.ts +2 -5
  57. package/esm/models/listaccessgroupsop.d.ts.map +1 -1
  58. package/esm/models/listaccessgroupsop.js +2 -2
  59. package/esm/models/listaccessgroupsop.js.map +1 -1
  60. package/esm/models/readaccessgroupop.d.ts +48 -5
  61. package/esm/models/readaccessgroupop.d.ts.map +1 -1
  62. package/esm/models/readaccessgroupop.js +30 -2
  63. package/esm/models/readaccessgroupop.js.map +1 -1
  64. package/esm/models/team.d.ts +35 -18
  65. package/esm/models/team.d.ts.map +1 -1
  66. package/esm/models/team.js +15 -13
  67. package/esm/models/team.js.map +1 -1
  68. package/esm/models/updateprojectdatacacheop.d.ts +1402 -57
  69. package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
  70. package/esm/models/updateprojectdatacacheop.js +1584 -200
  71. package/esm/models/updateprojectdatacacheop.js.map +1 -1
  72. package/esm/models/updateprojectop.d.ts +1402 -57
  73. package/esm/models/updateprojectop.d.ts.map +1 -1
  74. package/esm/models/updateprojectop.js +1579 -202
  75. package/esm/models/updateprojectop.js.map +1 -1
  76. package/examples/package-lock.json +1 -1
  77. package/examples/projectsUpdateProject.example.ts +1 -1
  78. package/jsr.json +1 -1
  79. package/package.json +1 -1
  80. package/src/__tests__/accessgroups.test.ts +6 -6
  81. package/src/__tests__/domains.test.ts +5 -6
  82. package/src/__tests__/edgeconfig.test.ts +6 -6
  83. package/src/__tests__/integrations.test.ts +1 -1
  84. package/src/__tests__/rollingrelease.test.ts +2 -2
  85. package/src/__tests__/security.test.ts +11 -1
  86. package/src/__tests__/teams.test.ts +2 -2
  87. package/src/lib/config.ts +3 -3
  88. package/src/mcp-server/mcp-server.ts +1 -1
  89. package/src/mcp-server/server.ts +1 -1
  90. package/src/models/canceldeploymentop.ts +84 -64
  91. package/src/models/createdeploymentop.ts +239 -192
  92. package/src/models/createintegrationstoredirectop.ts +505 -505
  93. package/src/models/createprojectop.ts +3443 -466
  94. package/src/models/createwebhookop.ts +24 -22
  95. package/src/models/getconfigurationproductsop.ts +703 -703
  96. package/src/models/getdeploymentop.ts +34 -34
  97. package/src/models/getprojectsop.ts +3255 -300
  98. package/src/models/getwebhookop.ts +12 -11
  99. package/src/models/getwebhooksop.ts +24 -22
  100. package/src/models/listaccessgroupsop.ts +4 -7
  101. package/src/models/readaccessgroupop.ts +42 -7
  102. package/src/models/team.ts +47 -28
  103. package/src/models/updateprojectdatacacheop.ts +3184 -307
  104. package/src/models/updateprojectop.ts +3290 -298
  105. 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 GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640 = {};
155
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581 = {};
156
156
  export type PropertiesValue = {
157
- atBRANDAt502640: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640;
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 GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640 = {};
194
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581 = {};
195
195
  export type GetConfigurationProductsPropertiesIntegrationsResponseMinLength = {
196
- atBRANDAt502640: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640;
196
+ atBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581;
197
197
  };
198
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640 = {};
198
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581 = {};
199
199
  export type GetConfigurationProductsPropertiesIntegrationsResponseMaxLength = {
200
- atBRANDAt502640: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640;
200
+ atBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581;
201
201
  };
202
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640 = {};
202
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581 = {};
203
203
  export type GetConfigurationProductsPropertiesIntegrationsResponsePattern = {
204
- atBRANDAt502640: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640;
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 GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640 = {};
215
+ export type GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581 = {};
216
216
  export type GetConfigurationProductsUiOptionsValue = {
217
- atBRANDAt502640: GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640;
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 GetConfigurationProductsUiOptionsAtBRANDAt502640 = {};
242
+ export type GetConfigurationProductsUiOptionsAtBRANDAt508581 = {};
243
243
  export type GetConfigurationProductsUiOptions2 = {
244
- atBRANDAt502640: GetConfigurationProductsUiOptionsAtBRANDAt502640;
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 GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640 = {};
305
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581 = {};
306
306
  export type Default = {
307
- atBRANDAt502640: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640;
307
+ atBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581;
308
308
  };
309
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640 = {};
309
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581 = {};
310
310
  export type Example = {
311
- atBRANDAt502640: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640;
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 GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640 = {};
339
+ export type GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581 = {};
340
340
  export type UiOptionsValue = {
341
- atBRANDAt502640: GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640;
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 UiOptionsAtBRANDAt502640 = {};
366
+ export type UiOptionsAtBRANDAt508581 = {};
367
367
  export type UiOptions2 = {
368
- atBRANDAt502640: UiOptionsAtBRANDAt502640;
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 GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640 = {};
395
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581 = {};
396
396
  export type GetConfigurationProductsPropertiesMinLength = {
397
- atBRANDAt502640: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640;
397
+ atBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581;
398
398
  };
399
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640 = {};
399
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581 = {};
400
400
  export type GetConfigurationProductsPropertiesMaxLength = {
401
- atBRANDAt502640: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640;
401
+ atBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581;
402
402
  };
403
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640 = {};
403
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581 = {};
404
404
  export type GetConfigurationProductsPropertiesPattern = {
405
- atBRANDAt502640: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640;
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 GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640 = {};
471
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581 = {};
472
472
  export type GetConfigurationProductsPropertiesIntegrationsMinLength = {
473
- atBRANDAt502640: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640;
473
+ atBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581;
474
474
  };
475
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640 = {};
475
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581 = {};
476
476
  export type GetConfigurationProductsPropertiesIntegrationsMaxLength = {
477
- atBRANDAt502640: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640;
477
+ atBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581;
478
478
  };
479
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640 = {};
479
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581 = {};
480
480
  export type GetConfigurationProductsPropertiesIntegrationsPattern = {
481
- atBRANDAt502640: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640;
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 GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640 = {};
600
+ export type GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581 = {};
601
601
  export type PropertiesMinLength = {
602
- atBRANDAt502640: GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640;
602
+ atBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581;
603
603
  };
604
- export type GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640 = {};
604
+ export type GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581 = {};
605
605
  export type PropertiesMaxLength = {
606
- atBRANDAt502640: GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640;
606
+ atBRANDAt508581: GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581;
607
607
  };
608
- export type GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640 = {};
608
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581 = {};
609
609
  export type PropertiesPattern = {
610
- atBRANDAt502640: GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640;
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 AtBRANDAt502640 = {};
856
+ export type AtBRANDAt508581 = {};
857
857
  export type MinLength = {
858
- atBRANDAt502640: AtBRANDAt502640;
858
+ atBRANDAt508581: AtBRANDAt508581;
859
859
  };
860
- export type PropertiesAtBRANDAt502640 = {};
860
+ export type PropertiesAtBRANDAt508581 = {};
861
861
  export type MaxLength = {
862
- atBRANDAt502640: PropertiesAtBRANDAt502640;
862
+ atBRANDAt508581: PropertiesAtBRANDAt508581;
863
863
  };
864
- export type GetConfigurationProductsPropertiesAtBRANDAt502640 = {};
864
+ export type GetConfigurationProductsPropertiesAtBRANDAt508581 = {};
865
865
  export type Pattern = {
866
- atBRANDAt502640: GetConfigurationProductsPropertiesAtBRANDAt502640;
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 GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640, z.ZodTypeDef, unknown>;
1577
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581, z.ZodTypeDef, unknown>;
1578
1578
  /** @internal */
1579
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640$Outbound = {};
1579
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581$Outbound = {};
1580
1580
  /** @internal */
1581
- export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640>;
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 GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640$ {
1587
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640$inboundSchema` instead. */
1588
- const inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640, z.ZodTypeDef, unknown>;
1589
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640$outboundSchema` instead. */
1590
- const outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640>;
1591
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640$Outbound` instead. */
1592
- type Outbound = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640$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 getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640): string;
1595
- export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640, SDKValidationError>;
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@502640": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640$Outbound;
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 GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640, z.ZodTypeDef, unknown>;
1821
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581, z.ZodTypeDef, unknown>;
1822
1822
  /** @internal */
1823
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640$Outbound = {};
1823
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581$Outbound = {};
1824
1824
  /** @internal */
1825
- export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640>;
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 GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640$ {
1831
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640$inboundSchema` instead. */
1832
- const inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640, z.ZodTypeDef, unknown>;
1833
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640$outboundSchema` instead. */
1834
- const outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640>;
1835
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640$Outbound` instead. */
1836
- type Outbound = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640$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 getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640): string;
1839
- export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640, SDKValidationError>;
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@502640": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640$Outbound;
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 GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640, z.ZodTypeDef, unknown>;
1863
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581, z.ZodTypeDef, unknown>;
1864
1864
  /** @internal */
1865
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640$Outbound = {};
1865
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581$Outbound = {};
1866
1866
  /** @internal */
1867
- export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640>;
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 GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640$ {
1873
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640$inboundSchema` instead. */
1874
- const inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640, z.ZodTypeDef, unknown>;
1875
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640$outboundSchema` instead. */
1876
- const outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640>;
1877
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640$Outbound` instead. */
1878
- type Outbound = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640$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 getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640): string;
1881
- export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640, SDKValidationError>;
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@502640": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640$Outbound;
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 GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640, z.ZodTypeDef, unknown>;
1905
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581, z.ZodTypeDef, unknown>;
1906
1906
  /** @internal */
1907
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640$Outbound = {};
1907
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581$Outbound = {};
1908
1908
  /** @internal */
1909
- export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640>;
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 GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640$ {
1915
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640$inboundSchema` instead. */
1916
- const inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640, z.ZodTypeDef, unknown>;
1917
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640$outboundSchema` instead. */
1918
- const outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640>;
1919
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640$Outbound` instead. */
1920
- type Outbound = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640$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 getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640): string;
1923
- export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640, SDKValidationError>;
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@502640": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640$Outbound;
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 GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640$inboundSchema: z.ZodType<GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640, z.ZodTypeDef, unknown>;
1975
+ export declare const GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581, z.ZodTypeDef, unknown>;
1976
1976
  /** @internal */
1977
- export type GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640$Outbound = {};
1977
+ export type GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581$Outbound = {};
1978
1978
  /** @internal */
1979
- export declare const GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640$outboundSchema: z.ZodType<GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640>;
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 GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640$ {
1985
- /** @deprecated use `GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640$inboundSchema` instead. */
1986
- const inboundSchema: z.ZodType<GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640, z.ZodTypeDef, unknown>;
1987
- /** @deprecated use `GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640$outboundSchema` instead. */
1988
- const outboundSchema: z.ZodType<GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640>;
1989
- /** @deprecated use `GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640$Outbound` instead. */
1990
- type Outbound = GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640$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 getConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640ToJSON(getConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640: GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640): string;
1993
- export declare function getConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640, SDKValidationError>;
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@502640": GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640$Outbound;
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 GetConfigurationProductsUiOptionsAtBRANDAt502640$inboundSchema: z.ZodType<GetConfigurationProductsUiOptionsAtBRANDAt502640, z.ZodTypeDef, unknown>;
2165
+ export declare const GetConfigurationProductsUiOptionsAtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsUiOptionsAtBRANDAt508581, z.ZodTypeDef, unknown>;
2166
2166
  /** @internal */
2167
- export type GetConfigurationProductsUiOptionsAtBRANDAt502640$Outbound = {};
2167
+ export type GetConfigurationProductsUiOptionsAtBRANDAt508581$Outbound = {};
2168
2168
  /** @internal */
2169
- export declare const GetConfigurationProductsUiOptionsAtBRANDAt502640$outboundSchema: z.ZodType<GetConfigurationProductsUiOptionsAtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsUiOptionsAtBRANDAt502640>;
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 GetConfigurationProductsUiOptionsAtBRANDAt502640$ {
2175
- /** @deprecated use `GetConfigurationProductsUiOptionsAtBRANDAt502640$inboundSchema` instead. */
2176
- const inboundSchema: z.ZodType<GetConfigurationProductsUiOptionsAtBRANDAt502640, z.ZodTypeDef, unknown>;
2177
- /** @deprecated use `GetConfigurationProductsUiOptionsAtBRANDAt502640$outboundSchema` instead. */
2178
- const outboundSchema: z.ZodType<GetConfigurationProductsUiOptionsAtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsUiOptionsAtBRANDAt502640>;
2179
- /** @deprecated use `GetConfigurationProductsUiOptionsAtBRANDAt502640$Outbound` instead. */
2180
- type Outbound = GetConfigurationProductsUiOptionsAtBRANDAt502640$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 getConfigurationProductsUiOptionsAtBRANDAt502640ToJSON(getConfigurationProductsUiOptionsAtBRANDAt502640: GetConfigurationProductsUiOptionsAtBRANDAt502640): string;
2183
- export declare function getConfigurationProductsUiOptionsAtBRANDAt502640FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiOptionsAtBRANDAt502640, SDKValidationError>;
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@502640": GetConfigurationProductsUiOptionsAtBRANDAt502640$Outbound;
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 GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640, z.ZodTypeDef, unknown>;
2626
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581, z.ZodTypeDef, unknown>;
2627
2627
  /** @internal */
2628
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640$Outbound = {};
2628
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581$Outbound = {};
2629
2629
  /** @internal */
2630
- export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640>;
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 GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640$ {
2636
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640$inboundSchema` instead. */
2637
- const inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640, z.ZodTypeDef, unknown>;
2638
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640$outboundSchema` instead. */
2639
- const outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640>;
2640
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640$Outbound` instead. */
2641
- type Outbound = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640$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 getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640): string;
2644
- export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640, SDKValidationError>;
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@502640": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640$Outbound;
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 GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640, z.ZodTypeDef, unknown>;
2668
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581, z.ZodTypeDef, unknown>;
2669
2669
  /** @internal */
2670
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640$Outbound = {};
2670
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581$Outbound = {};
2671
2671
  /** @internal */
2672
- export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640>;
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 GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640$ {
2678
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640$inboundSchema` instead. */
2679
- const inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640, z.ZodTypeDef, unknown>;
2680
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640$outboundSchema` instead. */
2681
- const outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640>;
2682
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640$Outbound` instead. */
2683
- type Outbound = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640$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 getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640): string;
2686
- export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640, SDKValidationError>;
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@502640": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640$Outbound;
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 GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640$inboundSchema: z.ZodType<GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640, z.ZodTypeDef, unknown>;
2783
+ export declare const GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581, z.ZodTypeDef, unknown>;
2784
2784
  /** @internal */
2785
- export type GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640$Outbound = {};
2785
+ export type GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581$Outbound = {};
2786
2786
  /** @internal */
2787
- export declare const GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640$outboundSchema: z.ZodType<GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640>;
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 GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640$ {
2793
- /** @deprecated use `GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640$inboundSchema` instead. */
2794
- const inboundSchema: z.ZodType<GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640, z.ZodTypeDef, unknown>;
2795
- /** @deprecated use `GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640$outboundSchema` instead. */
2796
- const outboundSchema: z.ZodType<GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640>;
2797
- /** @deprecated use `GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640$Outbound` instead. */
2798
- type Outbound = GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640$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 getConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640ToJSON(getConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640: GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640): string;
2801
- export declare function getConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640, SDKValidationError>;
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@502640": GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640$Outbound;
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 UiOptionsAtBRANDAt502640$inboundSchema: z.ZodType<UiOptionsAtBRANDAt502640, z.ZodTypeDef, unknown>;
2973
+ export declare const UiOptionsAtBRANDAt508581$inboundSchema: z.ZodType<UiOptionsAtBRANDAt508581, z.ZodTypeDef, unknown>;
2974
2974
  /** @internal */
2975
- export type UiOptionsAtBRANDAt502640$Outbound = {};
2975
+ export type UiOptionsAtBRANDAt508581$Outbound = {};
2976
2976
  /** @internal */
2977
- export declare const UiOptionsAtBRANDAt502640$outboundSchema: z.ZodType<UiOptionsAtBRANDAt502640$Outbound, z.ZodTypeDef, UiOptionsAtBRANDAt502640>;
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 UiOptionsAtBRANDAt502640$ {
2983
- /** @deprecated use `UiOptionsAtBRANDAt502640$inboundSchema` instead. */
2984
- const inboundSchema: z.ZodType<UiOptionsAtBRANDAt502640, z.ZodTypeDef, unknown>;
2985
- /** @deprecated use `UiOptionsAtBRANDAt502640$outboundSchema` instead. */
2986
- const outboundSchema: z.ZodType<UiOptionsAtBRANDAt502640$Outbound, z.ZodTypeDef, UiOptionsAtBRANDAt502640>;
2987
- /** @deprecated use `UiOptionsAtBRANDAt502640$Outbound` instead. */
2988
- type Outbound = UiOptionsAtBRANDAt502640$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 uiOptionsAtBRANDAt502640ToJSON(uiOptionsAtBRANDAt502640: UiOptionsAtBRANDAt502640): string;
2991
- export declare function uiOptionsAtBRANDAt502640FromJSON(jsonString: string): SafeParseResult<UiOptionsAtBRANDAt502640, SDKValidationError>;
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@502640": UiOptionsAtBRANDAt502640$Outbound;
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 GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640, z.ZodTypeDef, unknown>;
3184
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581, z.ZodTypeDef, unknown>;
3185
3185
  /** @internal */
3186
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640$Outbound = {};
3186
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581$Outbound = {};
3187
3187
  /** @internal */
3188
- export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640>;
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 GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640$ {
3194
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640$inboundSchema` instead. */
3195
- const inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640, z.ZodTypeDef, unknown>;
3196
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640$outboundSchema` instead. */
3197
- const outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640>;
3198
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640$Outbound` instead. */
3199
- type Outbound = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640$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 getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640): string;
3202
- export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640, SDKValidationError>;
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@502640": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640$Outbound;
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 GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640, z.ZodTypeDef, unknown>;
3226
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581, z.ZodTypeDef, unknown>;
3227
3227
  /** @internal */
3228
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640$Outbound = {};
3228
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581$Outbound = {};
3229
3229
  /** @internal */
3230
- export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640>;
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 GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640$ {
3236
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640$inboundSchema` instead. */
3237
- const inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640, z.ZodTypeDef, unknown>;
3238
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640$outboundSchema` instead. */
3239
- const outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640>;
3240
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640$Outbound` instead. */
3241
- type Outbound = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640$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 getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640): string;
3244
- export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640, SDKValidationError>;
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@502640": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640$Outbound;
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 GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640, z.ZodTypeDef, unknown>;
3268
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581, z.ZodTypeDef, unknown>;
3269
3269
  /** @internal */
3270
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640$Outbound = {};
3270
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581$Outbound = {};
3271
3271
  /** @internal */
3272
- export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640>;
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 GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640$ {
3278
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640$inboundSchema` instead. */
3279
- const inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640, z.ZodTypeDef, unknown>;
3280
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640$outboundSchema` instead. */
3281
- const outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640>;
3282
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640$Outbound` instead. */
3283
- type Outbound = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640$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 getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640): string;
3286
- export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640, SDKValidationError>;
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@502640": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640$Outbound;
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 GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640, z.ZodTypeDef, unknown>;
3651
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581, z.ZodTypeDef, unknown>;
3652
3652
  /** @internal */
3653
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640$Outbound = {};
3653
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581$Outbound = {};
3654
3654
  /** @internal */
3655
- export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640>;
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 GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640$ {
3661
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640$inboundSchema` instead. */
3662
- const inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640, z.ZodTypeDef, unknown>;
3663
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640$outboundSchema` instead. */
3664
- const outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640>;
3665
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640$Outbound` instead. */
3666
- type Outbound = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640$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 getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640): string;
3669
- export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640, SDKValidationError>;
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@502640": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640$Outbound;
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 GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640, z.ZodTypeDef, unknown>;
3693
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581, z.ZodTypeDef, unknown>;
3694
3694
  /** @internal */
3695
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640$Outbound = {};
3695
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581$Outbound = {};
3696
3696
  /** @internal */
3697
- export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640>;
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 GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640$ {
3703
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640$inboundSchema` instead. */
3704
- const inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640, z.ZodTypeDef, unknown>;
3705
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640$outboundSchema` instead. */
3706
- const outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640>;
3707
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640$Outbound` instead. */
3708
- type Outbound = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640$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 getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640): string;
3711
- export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640, SDKValidationError>;
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@502640": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640$Outbound;
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 GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640, z.ZodTypeDef, unknown>;
3735
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581, z.ZodTypeDef, unknown>;
3736
3736
  /** @internal */
3737
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640$Outbound = {};
3737
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581$Outbound = {};
3738
3738
  /** @internal */
3739
- export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640>;
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 GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640$ {
3745
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640$inboundSchema` instead. */
3746
- const inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640, z.ZodTypeDef, unknown>;
3747
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640$outboundSchema` instead. */
3748
- const outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640>;
3749
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640$Outbound` instead. */
3750
- type Outbound = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640$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 getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640): string;
3753
- export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640, SDKValidationError>;
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@502640": GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640$Outbound;
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 GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640, z.ZodTypeDef, unknown>;
4426
+ export declare const GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581, z.ZodTypeDef, unknown>;
4427
4427
  /** @internal */
4428
- export type GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640$Outbound = {};
4428
+ export type GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581$Outbound = {};
4429
4429
  /** @internal */
4430
- export declare const GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640>;
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 GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640$ {
4436
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640$inboundSchema` instead. */
4437
- const inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640, z.ZodTypeDef, unknown>;
4438
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640$outboundSchema` instead. */
4439
- const outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640>;
4440
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640$Outbound` instead. */
4441
- type Outbound = GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640$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 getConfigurationProductsPropertiesIntegrationsAtBRANDAt502640ToJSON(getConfigurationProductsPropertiesIntegrationsAtBRANDAt502640: GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640): string;
4444
- export declare function getConfigurationProductsPropertiesIntegrationsAtBRANDAt502640FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640, SDKValidationError>;
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@502640": GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640$Outbound;
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 GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640, z.ZodTypeDef, unknown>;
4468
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581, z.ZodTypeDef, unknown>;
4469
4469
  /** @internal */
4470
- export type GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640$Outbound = {};
4470
+ export type GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581$Outbound = {};
4471
4471
  /** @internal */
4472
- export declare const GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640>;
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 GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640$ {
4478
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640$inboundSchema` instead. */
4479
- const inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640, z.ZodTypeDef, unknown>;
4480
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640$outboundSchema` instead. */
4481
- const outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640>;
4482
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640$Outbound` instead. */
4483
- type Outbound = GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640$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 getConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640ToJSON(getConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640: GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640): string;
4486
- export declare function getConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640, SDKValidationError>;
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@502640": GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640$Outbound;
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 GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640, z.ZodTypeDef, unknown>;
4510
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581, z.ZodTypeDef, unknown>;
4511
4511
  /** @internal */
4512
- export type GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640$Outbound = {};
4512
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581$Outbound = {};
4513
4513
  /** @internal */
4514
- export declare const GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640>;
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 GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640$ {
4520
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640$inboundSchema` instead. */
4521
- const inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640, z.ZodTypeDef, unknown>;
4522
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640$outboundSchema` instead. */
4523
- const outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640>;
4524
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640$Outbound` instead. */
4525
- type Outbound = GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640$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 getConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640: GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640): string;
4528
- export declare function getConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640, SDKValidationError>;
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@502640": GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640$Outbound;
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 AtBRANDAt502640$inboundSchema: z.ZodType<AtBRANDAt502640, z.ZodTypeDef, unknown>;
5881
+ export declare const AtBRANDAt508581$inboundSchema: z.ZodType<AtBRANDAt508581, z.ZodTypeDef, unknown>;
5882
5882
  /** @internal */
5883
- export type AtBRANDAt502640$Outbound = {};
5883
+ export type AtBRANDAt508581$Outbound = {};
5884
5884
  /** @internal */
5885
- export declare const AtBRANDAt502640$outboundSchema: z.ZodType<AtBRANDAt502640$Outbound, z.ZodTypeDef, AtBRANDAt502640>;
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 AtBRANDAt502640$ {
5891
- /** @deprecated use `AtBRANDAt502640$inboundSchema` instead. */
5892
- const inboundSchema: z.ZodType<AtBRANDAt502640, z.ZodTypeDef, unknown>;
5893
- /** @deprecated use `AtBRANDAt502640$outboundSchema` instead. */
5894
- const outboundSchema: z.ZodType<AtBRANDAt502640$Outbound, z.ZodTypeDef, AtBRANDAt502640>;
5895
- /** @deprecated use `AtBRANDAt502640$Outbound` instead. */
5896
- type Outbound = AtBRANDAt502640$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 atBRANDAt502640ToJSON(atBRANDAt502640: AtBRANDAt502640): string;
5899
- export declare function atBRANDAt502640FromJSON(jsonString: string): SafeParseResult<AtBRANDAt502640, SDKValidationError>;
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@502640": AtBRANDAt502640$Outbound;
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 PropertiesAtBRANDAt502640$inboundSchema: z.ZodType<PropertiesAtBRANDAt502640, z.ZodTypeDef, unknown>;
5923
+ export declare const PropertiesAtBRANDAt508581$inboundSchema: z.ZodType<PropertiesAtBRANDAt508581, z.ZodTypeDef, unknown>;
5924
5924
  /** @internal */
5925
- export type PropertiesAtBRANDAt502640$Outbound = {};
5925
+ export type PropertiesAtBRANDAt508581$Outbound = {};
5926
5926
  /** @internal */
5927
- export declare const PropertiesAtBRANDAt502640$outboundSchema: z.ZodType<PropertiesAtBRANDAt502640$Outbound, z.ZodTypeDef, PropertiesAtBRANDAt502640>;
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 PropertiesAtBRANDAt502640$ {
5933
- /** @deprecated use `PropertiesAtBRANDAt502640$inboundSchema` instead. */
5934
- const inboundSchema: z.ZodType<PropertiesAtBRANDAt502640, z.ZodTypeDef, unknown>;
5935
- /** @deprecated use `PropertiesAtBRANDAt502640$outboundSchema` instead. */
5936
- const outboundSchema: z.ZodType<PropertiesAtBRANDAt502640$Outbound, z.ZodTypeDef, PropertiesAtBRANDAt502640>;
5937
- /** @deprecated use `PropertiesAtBRANDAt502640$Outbound` instead. */
5938
- type Outbound = PropertiesAtBRANDAt502640$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 propertiesAtBRANDAt502640ToJSON(propertiesAtBRANDAt502640: PropertiesAtBRANDAt502640): string;
5941
- export declare function propertiesAtBRANDAt502640FromJSON(jsonString: string): SafeParseResult<PropertiesAtBRANDAt502640, SDKValidationError>;
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@502640": PropertiesAtBRANDAt502640$Outbound;
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 GetConfigurationProductsPropertiesAtBRANDAt502640$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesAtBRANDAt502640, z.ZodTypeDef, unknown>;
5965
+ export declare const GetConfigurationProductsPropertiesAtBRANDAt508581$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesAtBRANDAt508581, z.ZodTypeDef, unknown>;
5966
5966
  /** @internal */
5967
- export type GetConfigurationProductsPropertiesAtBRANDAt502640$Outbound = {};
5967
+ export type GetConfigurationProductsPropertiesAtBRANDAt508581$Outbound = {};
5968
5968
  /** @internal */
5969
- export declare const GetConfigurationProductsPropertiesAtBRANDAt502640$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesAtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesAtBRANDAt502640>;
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 GetConfigurationProductsPropertiesAtBRANDAt502640$ {
5975
- /** @deprecated use `GetConfigurationProductsPropertiesAtBRANDAt502640$inboundSchema` instead. */
5976
- const inboundSchema: z.ZodType<GetConfigurationProductsPropertiesAtBRANDAt502640, z.ZodTypeDef, unknown>;
5977
- /** @deprecated use `GetConfigurationProductsPropertiesAtBRANDAt502640$outboundSchema` instead. */
5978
- const outboundSchema: z.ZodType<GetConfigurationProductsPropertiesAtBRANDAt502640$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesAtBRANDAt502640>;
5979
- /** @deprecated use `GetConfigurationProductsPropertiesAtBRANDAt502640$Outbound` instead. */
5980
- type Outbound = GetConfigurationProductsPropertiesAtBRANDAt502640$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 getConfigurationProductsPropertiesAtBRANDAt502640ToJSON(getConfigurationProductsPropertiesAtBRANDAt502640: GetConfigurationProductsPropertiesAtBRANDAt502640): string;
5983
- export declare function getConfigurationProductsPropertiesAtBRANDAt502640FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesAtBRANDAt502640, SDKValidationError>;
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@502640": GetConfigurationProductsPropertiesAtBRANDAt502640$Outbound;
5988
+ "__@BRAND@508581": GetConfigurationProductsPropertiesAtBRANDAt508581$Outbound;
5989
5989
  };
5990
5990
  /** @internal */
5991
5991
  export declare const Pattern$outboundSchema: z.ZodType<Pattern$Outbound, z.ZodTypeDef, Pattern>;