@vercel/sdk 1.11.1 → 1.11.2

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 (97) hide show
  1. package/bin/mcp-server.js +1329 -1215
  2. package/bin/mcp-server.js.map +21 -21
  3. package/esm/__tests__/accessgroups.test.js +1 -3
  4. package/esm/__tests__/accessgroups.test.js.map +1 -1
  5. package/esm/__tests__/domains.test.js +12 -3
  6. package/esm/__tests__/domains.test.js.map +1 -1
  7. package/esm/__tests__/integrations.test.js +1 -1
  8. package/esm/__tests__/rollingrelease.test.js +6 -2
  9. package/esm/__tests__/rollingrelease.test.js.map +1 -1
  10. package/esm/__tests__/security.test.js +11 -1
  11. package/esm/__tests__/security.test.js.map +1 -1
  12. package/esm/funcs/deploymentsUploadFile.js +0 -1
  13. package/esm/funcs/deploymentsUploadFile.js.map +1 -1
  14. package/esm/funcs/domainsGetDomainTransfer.js +2 -2
  15. package/esm/funcs/domainsGetDomainTransfer.js.map +1 -1
  16. package/esm/funcs/marketplaceUpdateResourceSecrets.js +2 -2
  17. package/esm/funcs/marketplaceUpdateResourceSecrets.js.map +1 -1
  18. package/esm/lib/config.d.ts +3 -3
  19. package/esm/lib/config.js +3 -3
  20. package/esm/mcp-server/mcp-server.js +1 -1
  21. package/esm/mcp-server/server.js +1 -1
  22. package/esm/models/canceldeploymentop.d.ts +6 -6
  23. package/esm/models/canceldeploymentop.js +2 -2
  24. package/esm/models/canceldeploymentop.js.map +1 -1
  25. package/esm/models/createdeploymentop.d.ts +41 -41
  26. package/esm/models/createdeploymentop.d.ts.map +1 -1
  27. package/esm/models/createdeploymentop.js +15 -15
  28. package/esm/models/createdeploymentop.js.map +1 -1
  29. package/esm/models/createintegrationstoredirectop.d.ts +273 -246
  30. package/esm/models/createintegrationstoredirectop.d.ts.map +1 -1
  31. package/esm/models/createintegrationstoredirectop.js +317 -296
  32. package/esm/models/createintegrationstoredirectop.js.map +1 -1
  33. package/esm/models/createprojectop.d.ts +162 -164
  34. package/esm/models/createprojectop.d.ts.map +1 -1
  35. package/esm/models/createprojectop.js +154 -156
  36. package/esm/models/createprojectop.js.map +1 -1
  37. package/esm/models/getconfigurationproductsop.d.ts +330 -330
  38. package/esm/models/getconfigurationproductsop.js +408 -408
  39. package/esm/models/getdeploymentop.d.ts +6 -6
  40. package/esm/models/getdeploymentop.js +2 -2
  41. package/esm/models/getdeploymentop.js.map +1 -1
  42. package/esm/models/getdomaintransferop.d.ts +99 -25
  43. package/esm/models/getdomaintransferop.d.ts.map +1 -1
  44. package/esm/models/getdomaintransferop.js +101 -25
  45. package/esm/models/getdomaintransferop.js.map +1 -1
  46. package/esm/models/getprojectsop.d.ts +0 -2
  47. package/esm/models/getprojectsop.d.ts.map +1 -1
  48. package/esm/models/getprojectsop.js +0 -2
  49. package/esm/models/getprojectsop.js.map +1 -1
  50. package/esm/models/patchteamop.d.ts +12 -0
  51. package/esm/models/patchteamop.d.ts.map +1 -1
  52. package/esm/models/patchteamop.js +4 -0
  53. package/esm/models/patchteamop.js.map +1 -1
  54. package/esm/models/updateprojectdatacacheop.d.ts +0 -2
  55. package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
  56. package/esm/models/updateprojectdatacacheop.js +0 -2
  57. package/esm/models/updateprojectdatacacheop.js.map +1 -1
  58. package/esm/models/updateprojectop.d.ts +0 -2
  59. package/esm/models/updateprojectop.d.ts.map +1 -1
  60. package/esm/models/updateprojectop.js +0 -2
  61. package/esm/models/updateprojectop.js.map +1 -1
  62. package/esm/models/uploadfileop.d.ts +0 -5
  63. package/esm/models/uploadfileop.d.ts.map +1 -1
  64. package/esm/models/uploadfileop.js +0 -4
  65. package/esm/models/uploadfileop.js.map +1 -1
  66. package/esm/models/userevent.d.ts +960 -770
  67. package/esm/models/userevent.d.ts.map +1 -1
  68. package/esm/models/userevent.js +1102 -974
  69. package/esm/models/userevent.js.map +1 -1
  70. package/examples/package-lock.json +1 -1
  71. package/jsr.json +1 -1
  72. package/package.json +1 -1
  73. package/src/__tests__/accessgroups.test.ts +1 -3
  74. package/src/__tests__/domains.test.ts +12 -3
  75. package/src/__tests__/integrations.test.ts +1 -1
  76. package/src/__tests__/rollingrelease.test.ts +6 -2
  77. package/src/__tests__/security.test.ts +11 -1
  78. package/src/funcs/deploymentsUploadFile.ts +0 -5
  79. package/src/funcs/domainsGetDomainTransfer.ts +2 -2
  80. package/src/funcs/marketplaceUpdateResourceSecrets.ts +2 -2
  81. package/src/lib/config.ts +3 -3
  82. package/src/mcp-server/mcp-server.ts +1 -1
  83. package/src/mcp-server/server.ts +1 -1
  84. package/src/models/canceldeploymentop.ts +4 -4
  85. package/src/models/createdeploymentop.ts +19 -19
  86. package/src/models/createintegrationstoredirectop.ts +543 -507
  87. package/src/models/createprojectop.ts +299 -303
  88. package/src/models/getconfigurationproductsop.ts +703 -703
  89. package/src/models/getdeploymentop.ts +4 -4
  90. package/src/models/getdomaintransferop.ts +203 -39
  91. package/src/models/getprojectsop.ts +0 -4
  92. package/src/models/patchteamop.ts +4 -0
  93. package/src/models/updateprojectdatacacheop.ts +0 -4
  94. package/src/models/updateprojectop.ts +0 -4
  95. package/src/models/uploadfileop.ts +0 -9
  96. package/src/models/userevent.ts +2219 -1917
  97. package/vercel-spec.json +613 -503
@@ -257,12 +257,12 @@ export type GetConfigurationProductsType = ClosedEnum<
257
257
  typeof GetConfigurationProductsType
258
258
  >;
259
259
 
260
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt510349 =
260
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt513164 =
261
261
  {};
262
262
 
263
263
  export type PropertiesValue = {
264
- atBRANDAt510349:
265
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt510349;
264
+ atBRANDAt513164:
265
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt513164;
266
266
  };
267
267
 
268
268
  export const GetConfigurationProductsDisabled3 = {
@@ -340,28 +340,28 @@ export type GetConfigurationProductsPropertiesIntegrationsResponse200Application
340
340
  typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8Type
341
341
  >;
342
342
 
343
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt510349 =
343
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt513164 =
344
344
  {};
345
345
 
346
346
  export type GetConfigurationProductsPropertiesIntegrationsResponseMinLength = {
347
- atBRANDAt510349:
348
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt510349;
347
+ atBRANDAt513164:
348
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt513164;
349
349
  };
350
350
 
351
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt510349 =
351
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt513164 =
352
352
  {};
353
353
 
354
354
  export type GetConfigurationProductsPropertiesIntegrationsResponseMaxLength = {
355
- atBRANDAt510349:
356
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt510349;
355
+ atBRANDAt513164:
356
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt513164;
357
357
  };
358
358
 
359
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt510349 =
359
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt513164 =
360
360
  {};
361
361
 
362
362
  export type GetConfigurationProductsPropertiesIntegrationsResponsePattern = {
363
- atBRANDAt510349:
364
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt510349;
363
+ atBRANDAt513164:
364
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt513164;
365
365
  };
366
366
 
367
367
  export type GetConfigurationProductsPropertiesIntegrationsItems = {
@@ -381,12 +381,12 @@ export type GetConfigurationProductsPropertiesIntegrationsItems = {
381
381
  enum?: Array<string> | undefined;
382
382
  };
383
383
 
384
- export type GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt510349 =
384
+ export type GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt513164 =
385
385
  {};
386
386
 
387
387
  export type GetConfigurationProductsUiOptionsValue = {
388
- atBRANDAt510349:
389
- GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt510349;
388
+ atBRANDAt513164:
389
+ GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt513164;
390
390
  };
391
391
 
392
392
  export const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson3 =
@@ -443,10 +443,10 @@ export type GetConfigurationProductsUiOptions3 = {
443
443
  | undefined;
444
444
  };
445
445
 
446
- export type GetConfigurationProductsUiOptionsAtBRANDAt510349 = {};
446
+ export type GetConfigurationProductsUiOptionsAtBRANDAt513164 = {};
447
447
 
448
448
  export type GetConfigurationProductsUiOptions2 = {
449
- atBRANDAt510349: GetConfigurationProductsUiOptionsAtBRANDAt510349;
449
+ atBRANDAt513164: GetConfigurationProductsUiOptionsAtBRANDAt513164;
450
450
  };
451
451
 
452
452
  export const GetConfigurationProductsDisabledIntegrationsResponse2003 = {
@@ -576,20 +576,20 @@ export type GetConfigurationProductsPropertiesIntegrationsResponse200Application
576
576
  expr: string;
577
577
  };
578
578
 
579
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt510349 =
579
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt513164 =
580
580
  {};
581
581
 
582
582
  export type Default = {
583
- atBRANDAt510349:
584
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt510349;
583
+ atBRANDAt513164:
584
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt513164;
585
585
  };
586
586
 
587
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt510349 =
587
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt513164 =
588
588
  {};
589
589
 
590
590
  export type Example = {
591
- atBRANDAt510349:
592
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt510349;
591
+ atBRANDAt513164:
592
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt513164;
593
593
  };
594
594
 
595
595
  export type Properties8 = {
@@ -652,10 +652,10 @@ export type GetConfigurationProductsPropertiesIntegrationsResponse200Application
652
652
  typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiControl
653
653
  >;
654
654
 
655
- export type GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt510349 = {};
655
+ export type GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt513164 = {};
656
656
 
657
657
  export type UiOptionsValue = {
658
- atBRANDAt510349: GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt510349;
658
+ atBRANDAt513164: GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt513164;
659
659
  };
660
660
 
661
661
  export const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3 =
@@ -712,10 +712,10 @@ export type UiOptions3 = {
712
712
  | undefined;
713
713
  };
714
714
 
715
- export type UiOptionsAtBRANDAt510349 = {};
715
+ export type UiOptionsAtBRANDAt513164 = {};
716
716
 
717
717
  export type UiOptions2 = {
718
- atBRANDAt510349: UiOptionsAtBRANDAt510349;
718
+ atBRANDAt513164: UiOptionsAtBRANDAt513164;
719
719
  };
720
720
 
721
721
  export const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3 =
@@ -778,28 +778,28 @@ export type GetConfigurationProductsPropertiesUiOptions =
778
778
  | UiOptions2
779
779
  | UiOptions3;
780
780
 
781
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt510349 =
781
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt513164 =
782
782
  {};
783
783
 
784
784
  export type GetConfigurationProductsPropertiesMinLength = {
785
- atBRANDAt510349:
786
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt510349;
785
+ atBRANDAt513164:
786
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt513164;
787
787
  };
788
788
 
789
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt510349 =
789
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt513164 =
790
790
  {};
791
791
 
792
792
  export type GetConfigurationProductsPropertiesMaxLength = {
793
- atBRANDAt510349:
794
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt510349;
793
+ atBRANDAt513164:
794
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt513164;
795
795
  };
796
796
 
797
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt510349 =
797
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt513164 =
798
798
  {};
799
799
 
800
800
  export type GetConfigurationProductsPropertiesPattern = {
801
- atBRANDAt510349:
802
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt510349;
801
+ atBRANDAt513164:
802
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt513164;
803
803
  };
804
804
 
805
805
  export const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBody3 =
@@ -941,28 +941,28 @@ export type GetConfigurationProductsPropertiesIntegrationsResponse200Application
941
941
  typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6Type
942
942
  >;
943
943
 
944
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt510349 =
944
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt513164 =
945
945
  {};
946
946
 
947
947
  export type GetConfigurationProductsPropertiesIntegrationsMinLength = {
948
- atBRANDAt510349:
949
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt510349;
948
+ atBRANDAt513164:
949
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt513164;
950
950
  };
951
951
 
952
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt510349 =
952
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt513164 =
953
953
  {};
954
954
 
955
955
  export type GetConfigurationProductsPropertiesIntegrationsMaxLength = {
956
- atBRANDAt510349:
957
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt510349;
956
+ atBRANDAt513164:
957
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt513164;
958
958
  };
959
959
 
960
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt510349 =
960
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt513164 =
961
961
  {};
962
962
 
963
963
  export type GetConfigurationProductsPropertiesIntegrationsPattern = {
964
- atBRANDAt510349:
965
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt510349;
964
+ atBRANDAt513164:
965
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt513164;
966
966
  };
967
967
 
968
968
  export type GetConfigurationProductsPropertiesItems = {
@@ -1205,27 +1205,27 @@ export type UiOptions = {
1205
1205
  | undefined;
1206
1206
  };
1207
1207
 
1208
- export type GetConfigurationProductsPropertiesIntegrationsAtBRANDAt510349 = {};
1208
+ export type GetConfigurationProductsPropertiesIntegrationsAtBRANDAt513164 = {};
1209
1209
 
1210
1210
  export type PropertiesMinLength = {
1211
- atBRANDAt510349:
1212
- GetConfigurationProductsPropertiesIntegrationsAtBRANDAt510349;
1211
+ atBRANDAt513164:
1212
+ GetConfigurationProductsPropertiesIntegrationsAtBRANDAt513164;
1213
1213
  };
1214
1214
 
1215
- export type GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt510349 =
1215
+ export type GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt513164 =
1216
1216
  {};
1217
1217
 
1218
1218
  export type PropertiesMaxLength = {
1219
- atBRANDAt510349:
1220
- GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt510349;
1219
+ atBRANDAt513164:
1220
+ GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt513164;
1221
1221
  };
1222
1222
 
1223
- export type GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt510349 =
1223
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt513164 =
1224
1224
  {};
1225
1225
 
1226
1226
  export type PropertiesPattern = {
1227
- atBRANDAt510349:
1228
- GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt510349;
1227
+ atBRANDAt513164:
1228
+ GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt513164;
1229
1229
  };
1230
1230
 
1231
1231
  export const GetConfigurationProductsUiReadOnlyIntegrationsResponse2003 = {
@@ -1674,22 +1674,22 @@ export const UiControl = {
1674
1674
  } as const;
1675
1675
  export type UiControl = ClosedEnum<typeof UiControl>;
1676
1676
 
1677
- export type AtBRANDAt510349 = {};
1677
+ export type AtBRANDAt513164 = {};
1678
1678
 
1679
1679
  export type MinLength = {
1680
- atBRANDAt510349: AtBRANDAt510349;
1680
+ atBRANDAt513164: AtBRANDAt513164;
1681
1681
  };
1682
1682
 
1683
- export type PropertiesAtBRANDAt510349 = {};
1683
+ export type PropertiesAtBRANDAt513164 = {};
1684
1684
 
1685
1685
  export type MaxLength = {
1686
- atBRANDAt510349: PropertiesAtBRANDAt510349;
1686
+ atBRANDAt513164: PropertiesAtBRANDAt513164;
1687
1687
  };
1688
1688
 
1689
- export type GetConfigurationProductsPropertiesAtBRANDAt510349 = {};
1689
+ export type GetConfigurationProductsPropertiesAtBRANDAt513164 = {};
1690
1690
 
1691
1691
  export type Pattern = {
1692
- atBRANDAt510349: GetConfigurationProductsPropertiesAtBRANDAt510349;
1692
+ atBRANDAt513164: GetConfigurationProductsPropertiesAtBRANDAt513164;
1693
1693
  };
1694
1694
 
1695
1695
  export const UiReadOnly3 = {
@@ -3070,65 +3070,65 @@ export namespace GetConfigurationProductsType$ {
3070
3070
  }
3071
3071
 
3072
3072
  /** @internal */
3073
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt510349$inboundSchema:
3073
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt513164$inboundSchema:
3074
3074
  z.ZodType<
3075
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt510349,
3075
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt513164,
3076
3076
  z.ZodTypeDef,
3077
3077
  unknown
3078
3078
  > = z.object({});
3079
3079
 
3080
3080
  /** @internal */
3081
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt510349$Outbound =
3081
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt513164$Outbound =
3082
3082
  {};
3083
3083
 
3084
3084
  /** @internal */
3085
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt510349$outboundSchema:
3085
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt513164$outboundSchema:
3086
3086
  z.ZodType<
3087
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt510349$Outbound,
3087
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt513164$Outbound,
3088
3088
  z.ZodTypeDef,
3089
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt510349
3089
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt513164
3090
3090
  > = z.object({});
3091
3091
 
3092
3092
  /**
3093
3093
  * @internal
3094
3094
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3095
3095
  */
3096
- export namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt510349$ {
3097
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt510349$inboundSchema` instead. */
3096
+ export namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt513164$ {
3097
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt513164$inboundSchema` instead. */
3098
3098
  export const inboundSchema =
3099
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt510349$inboundSchema;
3100
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt510349$outboundSchema` instead. */
3099
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt513164$inboundSchema;
3100
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt513164$outboundSchema` instead. */
3101
3101
  export const outboundSchema =
3102
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt510349$outboundSchema;
3103
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt510349$Outbound` instead. */
3102
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt513164$outboundSchema;
3103
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt513164$Outbound` instead. */
3104
3104
  export type Outbound =
3105
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt510349$Outbound;
3105
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt513164$Outbound;
3106
3106
  }
3107
3107
 
3108
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt510349ToJSON(
3109
- getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt510349:
3110
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt510349,
3108
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt513164ToJSON(
3109
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt513164:
3110
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt513164,
3111
3111
  ): string {
3112
3112
  return JSON.stringify(
3113
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt510349$outboundSchema
3113
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt513164$outboundSchema
3114
3114
  .parse(
3115
- getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt510349,
3115
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt513164,
3116
3116
  ),
3117
3117
  );
3118
3118
  }
3119
3119
 
3120
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt510349FromJSON(
3120
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt513164FromJSON(
3121
3121
  jsonString: string,
3122
3122
  ): SafeParseResult<
3123
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt510349,
3123
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt513164,
3124
3124
  SDKValidationError
3125
3125
  > {
3126
3126
  return safeParse(
3127
3127
  jsonString,
3128
3128
  (x) =>
3129
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt510349$inboundSchema
3129
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt513164$inboundSchema
3130
3130
  .parse(JSON.parse(x)),
3131
- `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt510349' from JSON`,
3131
+ `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt513164' from JSON`,
3132
3132
  );
3133
3133
  }
3134
3134
 
@@ -3138,19 +3138,19 @@ export const PropertiesValue$inboundSchema: z.ZodType<
3138
3138
  z.ZodTypeDef,
3139
3139
  unknown
3140
3140
  > = z.object({
3141
- "__@BRAND@510349": z.lazy(() =>
3142
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt510349$inboundSchema
3141
+ "__@BRAND@513164": z.lazy(() =>
3142
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt513164$inboundSchema
3143
3143
  ),
3144
3144
  }).transform((v) => {
3145
3145
  return remap$(v, {
3146
- "__@BRAND@510349": "atBRANDAt510349",
3146
+ "__@BRAND@513164": "atBRANDAt513164",
3147
3147
  });
3148
3148
  });
3149
3149
 
3150
3150
  /** @internal */
3151
3151
  export type PropertiesValue$Outbound = {
3152
- "__@BRAND@510349":
3153
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt510349$Outbound;
3152
+ "__@BRAND@513164":
3153
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt513164$Outbound;
3154
3154
  };
3155
3155
 
3156
3156
  /** @internal */
@@ -3159,12 +3159,12 @@ export const PropertiesValue$outboundSchema: z.ZodType<
3159
3159
  z.ZodTypeDef,
3160
3160
  PropertiesValue
3161
3161
  > = z.object({
3162
- atBRANDAt510349: z.lazy(() =>
3163
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt510349$outboundSchema
3162
+ atBRANDAt513164: z.lazy(() =>
3163
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt513164$outboundSchema
3164
3164
  ),
3165
3165
  }).transform((v) => {
3166
3166
  return remap$(v, {
3167
- atBRANDAt510349: "__@BRAND@510349",
3167
+ atBRANDAt513164: "__@BRAND@513164",
3168
3168
  });
3169
3169
  });
3170
3170
 
@@ -3636,65 +3636,65 @@ export namespace GetConfigurationProductsPropertiesIntegrationsResponse200Applic
3636
3636
  }
3637
3637
 
3638
3638
  /** @internal */
3639
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt510349$inboundSchema:
3639
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt513164$inboundSchema:
3640
3640
  z.ZodType<
3641
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt510349,
3641
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt513164,
3642
3642
  z.ZodTypeDef,
3643
3643
  unknown
3644
3644
  > = z.object({});
3645
3645
 
3646
3646
  /** @internal */
3647
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt510349$Outbound =
3647
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt513164$Outbound =
3648
3648
  {};
3649
3649
 
3650
3650
  /** @internal */
3651
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt510349$outboundSchema:
3651
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt513164$outboundSchema:
3652
3652
  z.ZodType<
3653
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt510349$Outbound,
3653
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt513164$Outbound,
3654
3654
  z.ZodTypeDef,
3655
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt510349
3655
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt513164
3656
3656
  > = z.object({});
3657
3657
 
3658
3658
  /**
3659
3659
  * @internal
3660
3660
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3661
3661
  */
3662
- export namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt510349$ {
3663
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt510349$inboundSchema` instead. */
3662
+ export namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt513164$ {
3663
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt513164$inboundSchema` instead. */
3664
3664
  export const inboundSchema =
3665
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt510349$inboundSchema;
3666
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt510349$outboundSchema` instead. */
3665
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt513164$inboundSchema;
3666
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt513164$outboundSchema` instead. */
3667
3667
  export const outboundSchema =
3668
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt510349$outboundSchema;
3669
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt510349$Outbound` instead. */
3668
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt513164$outboundSchema;
3669
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt513164$Outbound` instead. */
3670
3670
  export type Outbound =
3671
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt510349$Outbound;
3671
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt513164$Outbound;
3672
3672
  }
3673
3673
 
3674
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt510349ToJSON(
3675
- getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt510349:
3676
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt510349,
3674
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt513164ToJSON(
3675
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt513164:
3676
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt513164,
3677
3677
  ): string {
3678
3678
  return JSON.stringify(
3679
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt510349$outboundSchema
3679
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt513164$outboundSchema
3680
3680
  .parse(
3681
- getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt510349,
3681
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt513164,
3682
3682
  ),
3683
3683
  );
3684
3684
  }
3685
3685
 
3686
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt510349FromJSON(
3686
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt513164FromJSON(
3687
3687
  jsonString: string,
3688
3688
  ): SafeParseResult<
3689
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt510349,
3689
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt513164,
3690
3690
  SDKValidationError
3691
3691
  > {
3692
3692
  return safeParse(
3693
3693
  jsonString,
3694
3694
  (x) =>
3695
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt510349$inboundSchema
3695
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt513164$inboundSchema
3696
3696
  .parse(JSON.parse(x)),
3697
- `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt510349' from JSON`,
3697
+ `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt513164' from JSON`,
3698
3698
  );
3699
3699
  }
3700
3700
 
@@ -3705,20 +3705,20 @@ export const GetConfigurationProductsPropertiesIntegrationsResponseMinLength$inb
3705
3705
  z.ZodTypeDef,
3706
3706
  unknown
3707
3707
  > = z.object({
3708
- "__@BRAND@510349": z.lazy(() =>
3709
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt510349$inboundSchema
3708
+ "__@BRAND@513164": z.lazy(() =>
3709
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt513164$inboundSchema
3710
3710
  ),
3711
3711
  }).transform((v) => {
3712
3712
  return remap$(v, {
3713
- "__@BRAND@510349": "atBRANDAt510349",
3713
+ "__@BRAND@513164": "atBRANDAt513164",
3714
3714
  });
3715
3715
  });
3716
3716
 
3717
3717
  /** @internal */
3718
3718
  export type GetConfigurationProductsPropertiesIntegrationsResponseMinLength$Outbound =
3719
3719
  {
3720
- "__@BRAND@510349":
3721
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt510349$Outbound;
3720
+ "__@BRAND@513164":
3721
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt513164$Outbound;
3722
3722
  };
3723
3723
 
3724
3724
  /** @internal */
@@ -3728,12 +3728,12 @@ export const GetConfigurationProductsPropertiesIntegrationsResponseMinLength$out
3728
3728
  z.ZodTypeDef,
3729
3729
  GetConfigurationProductsPropertiesIntegrationsResponseMinLength
3730
3730
  > = z.object({
3731
- atBRANDAt510349: z.lazy(() =>
3732
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt510349$outboundSchema
3731
+ atBRANDAt513164: z.lazy(() =>
3732
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt513164$outboundSchema
3733
3733
  ),
3734
3734
  }).transform((v) => {
3735
3735
  return remap$(v, {
3736
- atBRANDAt510349: "__@BRAND@510349",
3736
+ atBRANDAt513164: "__@BRAND@513164",
3737
3737
  });
3738
3738
  });
3739
3739
 
@@ -3779,65 +3779,65 @@ export function getConfigurationProductsPropertiesIntegrationsResponseMinLengthF
3779
3779
  }
3780
3780
 
3781
3781
  /** @internal */
3782
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt510349$inboundSchema:
3782
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt513164$inboundSchema:
3783
3783
  z.ZodType<
3784
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt510349,
3784
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt513164,
3785
3785
  z.ZodTypeDef,
3786
3786
  unknown
3787
3787
  > = z.object({});
3788
3788
 
3789
3789
  /** @internal */
3790
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt510349$Outbound =
3790
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt513164$Outbound =
3791
3791
  {};
3792
3792
 
3793
3793
  /** @internal */
3794
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt510349$outboundSchema:
3794
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt513164$outboundSchema:
3795
3795
  z.ZodType<
3796
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt510349$Outbound,
3796
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt513164$Outbound,
3797
3797
  z.ZodTypeDef,
3798
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt510349
3798
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt513164
3799
3799
  > = z.object({});
3800
3800
 
3801
3801
  /**
3802
3802
  * @internal
3803
3803
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3804
3804
  */
3805
- export namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt510349$ {
3806
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt510349$inboundSchema` instead. */
3805
+ export namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt513164$ {
3806
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt513164$inboundSchema` instead. */
3807
3807
  export const inboundSchema =
3808
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt510349$inboundSchema;
3809
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt510349$outboundSchema` instead. */
3808
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt513164$inboundSchema;
3809
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt513164$outboundSchema` instead. */
3810
3810
  export const outboundSchema =
3811
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt510349$outboundSchema;
3812
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt510349$Outbound` instead. */
3811
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt513164$outboundSchema;
3812
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt513164$Outbound` instead. */
3813
3813
  export type Outbound =
3814
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt510349$Outbound;
3814
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt513164$Outbound;
3815
3815
  }
3816
3816
 
3817
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt510349ToJSON(
3818
- getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt510349:
3819
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt510349,
3817
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt513164ToJSON(
3818
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt513164:
3819
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt513164,
3820
3820
  ): string {
3821
3821
  return JSON.stringify(
3822
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt510349$outboundSchema
3822
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt513164$outboundSchema
3823
3823
  .parse(
3824
- getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt510349,
3824
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt513164,
3825
3825
  ),
3826
3826
  );
3827
3827
  }
3828
3828
 
3829
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt510349FromJSON(
3829
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt513164FromJSON(
3830
3830
  jsonString: string,
3831
3831
  ): SafeParseResult<
3832
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt510349,
3832
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt513164,
3833
3833
  SDKValidationError
3834
3834
  > {
3835
3835
  return safeParse(
3836
3836
  jsonString,
3837
3837
  (x) =>
3838
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt510349$inboundSchema
3838
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt513164$inboundSchema
3839
3839
  .parse(JSON.parse(x)),
3840
- `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt510349' from JSON`,
3840
+ `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt513164' from JSON`,
3841
3841
  );
3842
3842
  }
3843
3843
 
@@ -3848,20 +3848,20 @@ export const GetConfigurationProductsPropertiesIntegrationsResponseMaxLength$inb
3848
3848
  z.ZodTypeDef,
3849
3849
  unknown
3850
3850
  > = z.object({
3851
- "__@BRAND@510349": z.lazy(() =>
3852
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt510349$inboundSchema
3851
+ "__@BRAND@513164": z.lazy(() =>
3852
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt513164$inboundSchema
3853
3853
  ),
3854
3854
  }).transform((v) => {
3855
3855
  return remap$(v, {
3856
- "__@BRAND@510349": "atBRANDAt510349",
3856
+ "__@BRAND@513164": "atBRANDAt513164",
3857
3857
  });
3858
3858
  });
3859
3859
 
3860
3860
  /** @internal */
3861
3861
  export type GetConfigurationProductsPropertiesIntegrationsResponseMaxLength$Outbound =
3862
3862
  {
3863
- "__@BRAND@510349":
3864
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt510349$Outbound;
3863
+ "__@BRAND@513164":
3864
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt513164$Outbound;
3865
3865
  };
3866
3866
 
3867
3867
  /** @internal */
@@ -3871,12 +3871,12 @@ export const GetConfigurationProductsPropertiesIntegrationsResponseMaxLength$out
3871
3871
  z.ZodTypeDef,
3872
3872
  GetConfigurationProductsPropertiesIntegrationsResponseMaxLength
3873
3873
  > = z.object({
3874
- atBRANDAt510349: z.lazy(() =>
3875
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt510349$outboundSchema
3874
+ atBRANDAt513164: z.lazy(() =>
3875
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt513164$outboundSchema
3876
3876
  ),
3877
3877
  }).transform((v) => {
3878
3878
  return remap$(v, {
3879
- atBRANDAt510349: "__@BRAND@510349",
3879
+ atBRANDAt513164: "__@BRAND@513164",
3880
3880
  });
3881
3881
  });
3882
3882
 
@@ -3922,65 +3922,65 @@ export function getConfigurationProductsPropertiesIntegrationsResponseMaxLengthF
3922
3922
  }
3923
3923
 
3924
3924
  /** @internal */
3925
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt510349$inboundSchema:
3925
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt513164$inboundSchema:
3926
3926
  z.ZodType<
3927
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt510349,
3927
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt513164,
3928
3928
  z.ZodTypeDef,
3929
3929
  unknown
3930
3930
  > = z.object({});
3931
3931
 
3932
3932
  /** @internal */
3933
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt510349$Outbound =
3933
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt513164$Outbound =
3934
3934
  {};
3935
3935
 
3936
3936
  /** @internal */
3937
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt510349$outboundSchema:
3937
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt513164$outboundSchema:
3938
3938
  z.ZodType<
3939
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt510349$Outbound,
3939
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt513164$Outbound,
3940
3940
  z.ZodTypeDef,
3941
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt510349
3941
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt513164
3942
3942
  > = z.object({});
3943
3943
 
3944
3944
  /**
3945
3945
  * @internal
3946
3946
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3947
3947
  */
3948
- export namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt510349$ {
3949
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt510349$inboundSchema` instead. */
3948
+ export namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt513164$ {
3949
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt513164$inboundSchema` instead. */
3950
3950
  export const inboundSchema =
3951
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt510349$inboundSchema;
3952
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt510349$outboundSchema` instead. */
3951
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt513164$inboundSchema;
3952
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt513164$outboundSchema` instead. */
3953
3953
  export const outboundSchema =
3954
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt510349$outboundSchema;
3955
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt510349$Outbound` instead. */
3954
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt513164$outboundSchema;
3955
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt513164$Outbound` instead. */
3956
3956
  export type Outbound =
3957
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt510349$Outbound;
3957
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt513164$Outbound;
3958
3958
  }
3959
3959
 
3960
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt510349ToJSON(
3961
- getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt510349:
3962
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt510349,
3960
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt513164ToJSON(
3961
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt513164:
3962
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt513164,
3963
3963
  ): string {
3964
3964
  return JSON.stringify(
3965
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt510349$outboundSchema
3965
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt513164$outboundSchema
3966
3966
  .parse(
3967
- getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt510349,
3967
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt513164,
3968
3968
  ),
3969
3969
  );
3970
3970
  }
3971
3971
 
3972
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt510349FromJSON(
3972
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt513164FromJSON(
3973
3973
  jsonString: string,
3974
3974
  ): SafeParseResult<
3975
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt510349,
3975
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt513164,
3976
3976
  SDKValidationError
3977
3977
  > {
3978
3978
  return safeParse(
3979
3979
  jsonString,
3980
3980
  (x) =>
3981
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt510349$inboundSchema
3981
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt513164$inboundSchema
3982
3982
  .parse(JSON.parse(x)),
3983
- `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt510349' from JSON`,
3983
+ `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt513164' from JSON`,
3984
3984
  );
3985
3985
  }
3986
3986
 
@@ -3991,20 +3991,20 @@ export const GetConfigurationProductsPropertiesIntegrationsResponsePattern$inbou
3991
3991
  z.ZodTypeDef,
3992
3992
  unknown
3993
3993
  > = z.object({
3994
- "__@BRAND@510349": z.lazy(() =>
3995
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt510349$inboundSchema
3994
+ "__@BRAND@513164": z.lazy(() =>
3995
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt513164$inboundSchema
3996
3996
  ),
3997
3997
  }).transform((v) => {
3998
3998
  return remap$(v, {
3999
- "__@BRAND@510349": "atBRANDAt510349",
3999
+ "__@BRAND@513164": "atBRANDAt513164",
4000
4000
  });
4001
4001
  });
4002
4002
 
4003
4003
  /** @internal */
4004
4004
  export type GetConfigurationProductsPropertiesIntegrationsResponsePattern$Outbound =
4005
4005
  {
4006
- "__@BRAND@510349":
4007
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt510349$Outbound;
4006
+ "__@BRAND@513164":
4007
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt513164$Outbound;
4008
4008
  };
4009
4009
 
4010
4010
  /** @internal */
@@ -4014,12 +4014,12 @@ export const GetConfigurationProductsPropertiesIntegrationsResponsePattern$outbo
4014
4014
  z.ZodTypeDef,
4015
4015
  GetConfigurationProductsPropertiesIntegrationsResponsePattern
4016
4016
  > = z.object({
4017
- atBRANDAt510349: z.lazy(() =>
4018
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt510349$outboundSchema
4017
+ atBRANDAt513164: z.lazy(() =>
4018
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt513164$outboundSchema
4019
4019
  ),
4020
4020
  }).transform((v) => {
4021
4021
  return remap$(v, {
4022
- atBRANDAt510349: "__@BRAND@510349",
4022
+ atBRANDAt513164: "__@BRAND@513164",
4023
4023
  });
4024
4024
  });
4025
4025
 
@@ -4171,65 +4171,65 @@ export function getConfigurationProductsPropertiesIntegrationsItemsFromJSON(
4171
4171
  }
4172
4172
 
4173
4173
  /** @internal */
4174
- export const GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt510349$inboundSchema:
4174
+ export const GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt513164$inboundSchema:
4175
4175
  z.ZodType<
4176
- GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt510349,
4176
+ GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt513164,
4177
4177
  z.ZodTypeDef,
4178
4178
  unknown
4179
4179
  > = z.object({});
4180
4180
 
4181
4181
  /** @internal */
4182
- export type GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt510349$Outbound =
4182
+ export type GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt513164$Outbound =
4183
4183
  {};
4184
4184
 
4185
4185
  /** @internal */
4186
- export const GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt510349$outboundSchema:
4186
+ export const GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt513164$outboundSchema:
4187
4187
  z.ZodType<
4188
- GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt510349$Outbound,
4188
+ GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt513164$Outbound,
4189
4189
  z.ZodTypeDef,
4190
- GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt510349
4190
+ GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt513164
4191
4191
  > = z.object({});
4192
4192
 
4193
4193
  /**
4194
4194
  * @internal
4195
4195
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4196
4196
  */
4197
- export namespace GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt510349$ {
4198
- /** @deprecated use `GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt510349$inboundSchema` instead. */
4197
+ export namespace GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt513164$ {
4198
+ /** @deprecated use `GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt513164$inboundSchema` instead. */
4199
4199
  export const inboundSchema =
4200
- GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt510349$inboundSchema;
4201
- /** @deprecated use `GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt510349$outboundSchema` instead. */
4200
+ GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt513164$inboundSchema;
4201
+ /** @deprecated use `GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt513164$outboundSchema` instead. */
4202
4202
  export const outboundSchema =
4203
- GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt510349$outboundSchema;
4204
- /** @deprecated use `GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt510349$Outbound` instead. */
4203
+ GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt513164$outboundSchema;
4204
+ /** @deprecated use `GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt513164$Outbound` instead. */
4205
4205
  export type Outbound =
4206
- GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt510349$Outbound;
4206
+ GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt513164$Outbound;
4207
4207
  }
4208
4208
 
4209
- export function getConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt510349ToJSON(
4210
- getConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt510349:
4211
- GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt510349,
4209
+ export function getConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt513164ToJSON(
4210
+ getConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt513164:
4211
+ GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt513164,
4212
4212
  ): string {
4213
4213
  return JSON.stringify(
4214
- GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt510349$outboundSchema
4214
+ GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt513164$outboundSchema
4215
4215
  .parse(
4216
- getConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt510349,
4216
+ getConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt513164,
4217
4217
  ),
4218
4218
  );
4219
4219
  }
4220
4220
 
4221
- export function getConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt510349FromJSON(
4221
+ export function getConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt513164FromJSON(
4222
4222
  jsonString: string,
4223
4223
  ): SafeParseResult<
4224
- GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt510349,
4224
+ GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt513164,
4225
4225
  SDKValidationError
4226
4226
  > {
4227
4227
  return safeParse(
4228
4228
  jsonString,
4229
4229
  (x) =>
4230
- GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt510349$inboundSchema
4230
+ GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt513164$inboundSchema
4231
4231
  .parse(JSON.parse(x)),
4232
- `Failed to parse 'GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt510349' from JSON`,
4232
+ `Failed to parse 'GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt513164' from JSON`,
4233
4233
  );
4234
4234
  }
4235
4235
 
@@ -4239,19 +4239,19 @@ export const GetConfigurationProductsUiOptionsValue$inboundSchema: z.ZodType<
4239
4239
  z.ZodTypeDef,
4240
4240
  unknown
4241
4241
  > = z.object({
4242
- "__@BRAND@510349": z.lazy(() =>
4243
- GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt510349$inboundSchema
4242
+ "__@BRAND@513164": z.lazy(() =>
4243
+ GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt513164$inboundSchema
4244
4244
  ),
4245
4245
  }).transform((v) => {
4246
4246
  return remap$(v, {
4247
- "__@BRAND@510349": "atBRANDAt510349",
4247
+ "__@BRAND@513164": "atBRANDAt513164",
4248
4248
  });
4249
4249
  });
4250
4250
 
4251
4251
  /** @internal */
4252
4252
  export type GetConfigurationProductsUiOptionsValue$Outbound = {
4253
- "__@BRAND@510349":
4254
- GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt510349$Outbound;
4253
+ "__@BRAND@513164":
4254
+ GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt513164$Outbound;
4255
4255
  };
4256
4256
 
4257
4257
  /** @internal */
@@ -4260,12 +4260,12 @@ export const GetConfigurationProductsUiOptionsValue$outboundSchema: z.ZodType<
4260
4260
  z.ZodTypeDef,
4261
4261
  GetConfigurationProductsUiOptionsValue
4262
4262
  > = z.object({
4263
- atBRANDAt510349: z.lazy(() =>
4264
- GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt510349$outboundSchema
4263
+ atBRANDAt513164: z.lazy(() =>
4264
+ GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt513164$outboundSchema
4265
4265
  ),
4266
4266
  }).transform((v) => {
4267
4267
  return remap$(v, {
4268
- atBRANDAt510349: "__@BRAND@510349",
4268
+ atBRANDAt513164: "__@BRAND@513164",
4269
4269
  });
4270
4270
  });
4271
4271
 
@@ -4747,64 +4747,64 @@ export function getConfigurationProductsUiOptions3FromJSON(
4747
4747
  }
4748
4748
 
4749
4749
  /** @internal */
4750
- export const GetConfigurationProductsUiOptionsAtBRANDAt510349$inboundSchema:
4750
+ export const GetConfigurationProductsUiOptionsAtBRANDAt513164$inboundSchema:
4751
4751
  z.ZodType<
4752
- GetConfigurationProductsUiOptionsAtBRANDAt510349,
4752
+ GetConfigurationProductsUiOptionsAtBRANDAt513164,
4753
4753
  z.ZodTypeDef,
4754
4754
  unknown
4755
4755
  > = z.object({});
4756
4756
 
4757
4757
  /** @internal */
4758
- export type GetConfigurationProductsUiOptionsAtBRANDAt510349$Outbound = {};
4758
+ export type GetConfigurationProductsUiOptionsAtBRANDAt513164$Outbound = {};
4759
4759
 
4760
4760
  /** @internal */
4761
- export const GetConfigurationProductsUiOptionsAtBRANDAt510349$outboundSchema:
4761
+ export const GetConfigurationProductsUiOptionsAtBRANDAt513164$outboundSchema:
4762
4762
  z.ZodType<
4763
- GetConfigurationProductsUiOptionsAtBRANDAt510349$Outbound,
4763
+ GetConfigurationProductsUiOptionsAtBRANDAt513164$Outbound,
4764
4764
  z.ZodTypeDef,
4765
- GetConfigurationProductsUiOptionsAtBRANDAt510349
4765
+ GetConfigurationProductsUiOptionsAtBRANDAt513164
4766
4766
  > = z.object({});
4767
4767
 
4768
4768
  /**
4769
4769
  * @internal
4770
4770
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4771
4771
  */
4772
- export namespace GetConfigurationProductsUiOptionsAtBRANDAt510349$ {
4773
- /** @deprecated use `GetConfigurationProductsUiOptionsAtBRANDAt510349$inboundSchema` instead. */
4772
+ export namespace GetConfigurationProductsUiOptionsAtBRANDAt513164$ {
4773
+ /** @deprecated use `GetConfigurationProductsUiOptionsAtBRANDAt513164$inboundSchema` instead. */
4774
4774
  export const inboundSchema =
4775
- GetConfigurationProductsUiOptionsAtBRANDAt510349$inboundSchema;
4776
- /** @deprecated use `GetConfigurationProductsUiOptionsAtBRANDAt510349$outboundSchema` instead. */
4775
+ GetConfigurationProductsUiOptionsAtBRANDAt513164$inboundSchema;
4776
+ /** @deprecated use `GetConfigurationProductsUiOptionsAtBRANDAt513164$outboundSchema` instead. */
4777
4777
  export const outboundSchema =
4778
- GetConfigurationProductsUiOptionsAtBRANDAt510349$outboundSchema;
4779
- /** @deprecated use `GetConfigurationProductsUiOptionsAtBRANDAt510349$Outbound` instead. */
4778
+ GetConfigurationProductsUiOptionsAtBRANDAt513164$outboundSchema;
4779
+ /** @deprecated use `GetConfigurationProductsUiOptionsAtBRANDAt513164$Outbound` instead. */
4780
4780
  export type Outbound =
4781
- GetConfigurationProductsUiOptionsAtBRANDAt510349$Outbound;
4781
+ GetConfigurationProductsUiOptionsAtBRANDAt513164$Outbound;
4782
4782
  }
4783
4783
 
4784
- export function getConfigurationProductsUiOptionsAtBRANDAt510349ToJSON(
4785
- getConfigurationProductsUiOptionsAtBRANDAt510349:
4786
- GetConfigurationProductsUiOptionsAtBRANDAt510349,
4784
+ export function getConfigurationProductsUiOptionsAtBRANDAt513164ToJSON(
4785
+ getConfigurationProductsUiOptionsAtBRANDAt513164:
4786
+ GetConfigurationProductsUiOptionsAtBRANDAt513164,
4787
4787
  ): string {
4788
4788
  return JSON.stringify(
4789
- GetConfigurationProductsUiOptionsAtBRANDAt510349$outboundSchema.parse(
4790
- getConfigurationProductsUiOptionsAtBRANDAt510349,
4789
+ GetConfigurationProductsUiOptionsAtBRANDAt513164$outboundSchema.parse(
4790
+ getConfigurationProductsUiOptionsAtBRANDAt513164,
4791
4791
  ),
4792
4792
  );
4793
4793
  }
4794
4794
 
4795
- export function getConfigurationProductsUiOptionsAtBRANDAt510349FromJSON(
4795
+ export function getConfigurationProductsUiOptionsAtBRANDAt513164FromJSON(
4796
4796
  jsonString: string,
4797
4797
  ): SafeParseResult<
4798
- GetConfigurationProductsUiOptionsAtBRANDAt510349,
4798
+ GetConfigurationProductsUiOptionsAtBRANDAt513164,
4799
4799
  SDKValidationError
4800
4800
  > {
4801
4801
  return safeParse(
4802
4802
  jsonString,
4803
4803
  (x) =>
4804
- GetConfigurationProductsUiOptionsAtBRANDAt510349$inboundSchema.parse(
4804
+ GetConfigurationProductsUiOptionsAtBRANDAt513164$inboundSchema.parse(
4805
4805
  JSON.parse(x),
4806
4806
  ),
4807
- `Failed to parse 'GetConfigurationProductsUiOptionsAtBRANDAt510349' from JSON`,
4807
+ `Failed to parse 'GetConfigurationProductsUiOptionsAtBRANDAt513164' from JSON`,
4808
4808
  );
4809
4809
  }
4810
4810
 
@@ -4814,18 +4814,18 @@ export const GetConfigurationProductsUiOptions2$inboundSchema: z.ZodType<
4814
4814
  z.ZodTypeDef,
4815
4815
  unknown
4816
4816
  > = z.object({
4817
- "__@BRAND@510349": z.lazy(() =>
4818
- GetConfigurationProductsUiOptionsAtBRANDAt510349$inboundSchema
4817
+ "__@BRAND@513164": z.lazy(() =>
4818
+ GetConfigurationProductsUiOptionsAtBRANDAt513164$inboundSchema
4819
4819
  ),
4820
4820
  }).transform((v) => {
4821
4821
  return remap$(v, {
4822
- "__@BRAND@510349": "atBRANDAt510349",
4822
+ "__@BRAND@513164": "atBRANDAt513164",
4823
4823
  });
4824
4824
  });
4825
4825
 
4826
4826
  /** @internal */
4827
4827
  export type GetConfigurationProductsUiOptions2$Outbound = {
4828
- "__@BRAND@510349": GetConfigurationProductsUiOptionsAtBRANDAt510349$Outbound;
4828
+ "__@BRAND@513164": GetConfigurationProductsUiOptionsAtBRANDAt513164$Outbound;
4829
4829
  };
4830
4830
 
4831
4831
  /** @internal */
@@ -4834,12 +4834,12 @@ export const GetConfigurationProductsUiOptions2$outboundSchema: z.ZodType<
4834
4834
  z.ZodTypeDef,
4835
4835
  GetConfigurationProductsUiOptions2
4836
4836
  > = z.object({
4837
- atBRANDAt510349: z.lazy(() =>
4838
- GetConfigurationProductsUiOptionsAtBRANDAt510349$outboundSchema
4837
+ atBRANDAt513164: z.lazy(() =>
4838
+ GetConfigurationProductsUiOptionsAtBRANDAt513164$outboundSchema
4839
4839
  ),
4840
4840
  }).transform((v) => {
4841
4841
  return remap$(v, {
4842
- atBRANDAt510349: "__@BRAND@510349",
4842
+ atBRANDAt513164: "__@BRAND@513164",
4843
4843
  });
4844
4844
  });
4845
4845
 
@@ -6121,84 +6121,84 @@ export function getConfigurationProductsPropertiesIntegrationsResponse200Applica
6121
6121
  }
6122
6122
 
6123
6123
  /** @internal */
6124
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt510349$inboundSchema:
6124
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt513164$inboundSchema:
6125
6125
  z.ZodType<
6126
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt510349,
6126
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt513164,
6127
6127
  z.ZodTypeDef,
6128
6128
  unknown
6129
6129
  > = z.object({});
6130
6130
 
6131
6131
  /** @internal */
6132
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt510349$Outbound =
6132
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt513164$Outbound =
6133
6133
  {};
6134
6134
 
6135
6135
  /** @internal */
6136
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt510349$outboundSchema:
6136
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt513164$outboundSchema:
6137
6137
  z.ZodType<
6138
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt510349$Outbound,
6138
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt513164$Outbound,
6139
6139
  z.ZodTypeDef,
6140
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt510349
6140
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt513164
6141
6141
  > = z.object({});
6142
6142
 
6143
6143
  /**
6144
6144
  * @internal
6145
6145
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6146
6146
  */
6147
- export namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt510349$ {
6148
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt510349$inboundSchema` instead. */
6147
+ export namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt513164$ {
6148
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt513164$inboundSchema` instead. */
6149
6149
  export const inboundSchema =
6150
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt510349$inboundSchema;
6151
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt510349$outboundSchema` instead. */
6150
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt513164$inboundSchema;
6151
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt513164$outboundSchema` instead. */
6152
6152
  export const outboundSchema =
6153
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt510349$outboundSchema;
6154
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt510349$Outbound` instead. */
6153
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt513164$outboundSchema;
6154
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt513164$Outbound` instead. */
6155
6155
  export type Outbound =
6156
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt510349$Outbound;
6156
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt513164$Outbound;
6157
6157
  }
6158
6158
 
6159
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt510349ToJSON(
6160
- getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt510349:
6161
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt510349,
6159
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt513164ToJSON(
6160
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt513164:
6161
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt513164,
6162
6162
  ): string {
6163
6163
  return JSON.stringify(
6164
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt510349$outboundSchema
6164
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt513164$outboundSchema
6165
6165
  .parse(
6166
- getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt510349,
6166
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt513164,
6167
6167
  ),
6168
6168
  );
6169
6169
  }
6170
6170
 
6171
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt510349FromJSON(
6171
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt513164FromJSON(
6172
6172
  jsonString: string,
6173
6173
  ): SafeParseResult<
6174
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt510349,
6174
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt513164,
6175
6175
  SDKValidationError
6176
6176
  > {
6177
6177
  return safeParse(
6178
6178
  jsonString,
6179
6179
  (x) =>
6180
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt510349$inboundSchema
6180
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt513164$inboundSchema
6181
6181
  .parse(JSON.parse(x)),
6182
- `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt510349' from JSON`,
6182
+ `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt513164' from JSON`,
6183
6183
  );
6184
6184
  }
6185
6185
 
6186
6186
  /** @internal */
6187
6187
  export const Default$inboundSchema: z.ZodType<Default, z.ZodTypeDef, unknown> =
6188
6188
  z.object({
6189
- "__@BRAND@510349": z.lazy(() =>
6190
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt510349$inboundSchema
6189
+ "__@BRAND@513164": z.lazy(() =>
6190
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt513164$inboundSchema
6191
6191
  ),
6192
6192
  }).transform((v) => {
6193
6193
  return remap$(v, {
6194
- "__@BRAND@510349": "atBRANDAt510349",
6194
+ "__@BRAND@513164": "atBRANDAt513164",
6195
6195
  });
6196
6196
  });
6197
6197
 
6198
6198
  /** @internal */
6199
6199
  export type Default$Outbound = {
6200
- "__@BRAND@510349":
6201
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt510349$Outbound;
6200
+ "__@BRAND@513164":
6201
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt513164$Outbound;
6202
6202
  };
6203
6203
 
6204
6204
  /** @internal */
@@ -6207,12 +6207,12 @@ export const Default$outboundSchema: z.ZodType<
6207
6207
  z.ZodTypeDef,
6208
6208
  Default
6209
6209
  > = z.object({
6210
- atBRANDAt510349: z.lazy(() =>
6211
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt510349$outboundSchema
6210
+ atBRANDAt513164: z.lazy(() =>
6211
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt513164$outboundSchema
6212
6212
  ),
6213
6213
  }).transform((v) => {
6214
6214
  return remap$(v, {
6215
- atBRANDAt510349: "__@BRAND@510349",
6215
+ atBRANDAt513164: "__@BRAND@513164",
6216
6216
  });
6217
6217
  });
6218
6218
 
@@ -6244,84 +6244,84 @@ export function defaultFromJSON(
6244
6244
  }
6245
6245
 
6246
6246
  /** @internal */
6247
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt510349$inboundSchema:
6247
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt513164$inboundSchema:
6248
6248
  z.ZodType<
6249
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt510349,
6249
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt513164,
6250
6250
  z.ZodTypeDef,
6251
6251
  unknown
6252
6252
  > = z.object({});
6253
6253
 
6254
6254
  /** @internal */
6255
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt510349$Outbound =
6255
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt513164$Outbound =
6256
6256
  {};
6257
6257
 
6258
6258
  /** @internal */
6259
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt510349$outboundSchema:
6259
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt513164$outboundSchema:
6260
6260
  z.ZodType<
6261
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt510349$Outbound,
6261
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt513164$Outbound,
6262
6262
  z.ZodTypeDef,
6263
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt510349
6263
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt513164
6264
6264
  > = z.object({});
6265
6265
 
6266
6266
  /**
6267
6267
  * @internal
6268
6268
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6269
6269
  */
6270
- export namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt510349$ {
6271
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt510349$inboundSchema` instead. */
6270
+ export namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt513164$ {
6271
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt513164$inboundSchema` instead. */
6272
6272
  export const inboundSchema =
6273
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt510349$inboundSchema;
6274
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt510349$outboundSchema` instead. */
6273
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt513164$inboundSchema;
6274
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt513164$outboundSchema` instead. */
6275
6275
  export const outboundSchema =
6276
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt510349$outboundSchema;
6277
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt510349$Outbound` instead. */
6276
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt513164$outboundSchema;
6277
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt513164$Outbound` instead. */
6278
6278
  export type Outbound =
6279
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt510349$Outbound;
6279
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt513164$Outbound;
6280
6280
  }
6281
6281
 
6282
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt510349ToJSON(
6283
- getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt510349:
6284
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt510349,
6282
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt513164ToJSON(
6283
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt513164:
6284
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt513164,
6285
6285
  ): string {
6286
6286
  return JSON.stringify(
6287
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt510349$outboundSchema
6287
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt513164$outboundSchema
6288
6288
  .parse(
6289
- getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt510349,
6289
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt513164,
6290
6290
  ),
6291
6291
  );
6292
6292
  }
6293
6293
 
6294
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt510349FromJSON(
6294
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt513164FromJSON(
6295
6295
  jsonString: string,
6296
6296
  ): SafeParseResult<
6297
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt510349,
6297
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt513164,
6298
6298
  SDKValidationError
6299
6299
  > {
6300
6300
  return safeParse(
6301
6301
  jsonString,
6302
6302
  (x) =>
6303
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt510349$inboundSchema
6303
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt513164$inboundSchema
6304
6304
  .parse(JSON.parse(x)),
6305
- `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt510349' from JSON`,
6305
+ `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt513164' from JSON`,
6306
6306
  );
6307
6307
  }
6308
6308
 
6309
6309
  /** @internal */
6310
6310
  export const Example$inboundSchema: z.ZodType<Example, z.ZodTypeDef, unknown> =
6311
6311
  z.object({
6312
- "__@BRAND@510349": z.lazy(() =>
6313
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt510349$inboundSchema
6312
+ "__@BRAND@513164": z.lazy(() =>
6313
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt513164$inboundSchema
6314
6314
  ),
6315
6315
  }).transform((v) => {
6316
6316
  return remap$(v, {
6317
- "__@BRAND@510349": "atBRANDAt510349",
6317
+ "__@BRAND@513164": "atBRANDAt513164",
6318
6318
  });
6319
6319
  });
6320
6320
 
6321
6321
  /** @internal */
6322
6322
  export type Example$Outbound = {
6323
- "__@BRAND@510349":
6324
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt510349$Outbound;
6323
+ "__@BRAND@513164":
6324
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt513164$Outbound;
6325
6325
  };
6326
6326
 
6327
6327
  /** @internal */
@@ -6330,12 +6330,12 @@ export const Example$outboundSchema: z.ZodType<
6330
6330
  z.ZodTypeDef,
6331
6331
  Example
6332
6332
  > = z.object({
6333
- atBRANDAt510349: z.lazy(() =>
6334
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt510349$outboundSchema
6333
+ atBRANDAt513164: z.lazy(() =>
6334
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt513164$outboundSchema
6335
6335
  ),
6336
6336
  }).transform((v) => {
6337
6337
  return remap$(v, {
6338
- atBRANDAt510349: "__@BRAND@510349",
6338
+ atBRANDAt513164: "__@BRAND@513164",
6339
6339
  });
6340
6340
  });
6341
6341
 
@@ -6633,63 +6633,63 @@ export namespace GetConfigurationProductsPropertiesIntegrationsResponse200Applic
6633
6633
  }
6634
6634
 
6635
6635
  /** @internal */
6636
- export const GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt510349$inboundSchema:
6636
+ export const GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt513164$inboundSchema:
6637
6637
  z.ZodType<
6638
- GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt510349,
6638
+ GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt513164,
6639
6639
  z.ZodTypeDef,
6640
6640
  unknown
6641
6641
  > = z.object({});
6642
6642
 
6643
6643
  /** @internal */
6644
- export type GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt510349$Outbound =
6644
+ export type GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt513164$Outbound =
6645
6645
  {};
6646
6646
 
6647
6647
  /** @internal */
6648
- export const GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt510349$outboundSchema:
6648
+ export const GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt513164$outboundSchema:
6649
6649
  z.ZodType<
6650
- GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt510349$Outbound,
6650
+ GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt513164$Outbound,
6651
6651
  z.ZodTypeDef,
6652
- GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt510349
6652
+ GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt513164
6653
6653
  > = z.object({});
6654
6654
 
6655
6655
  /**
6656
6656
  * @internal
6657
6657
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6658
6658
  */
6659
- export namespace GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt510349$ {
6660
- /** @deprecated use `GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt510349$inboundSchema` instead. */
6659
+ export namespace GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt513164$ {
6660
+ /** @deprecated use `GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt513164$inboundSchema` instead. */
6661
6661
  export const inboundSchema =
6662
- GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt510349$inboundSchema;
6663
- /** @deprecated use `GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt510349$outboundSchema` instead. */
6662
+ GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt513164$inboundSchema;
6663
+ /** @deprecated use `GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt513164$outboundSchema` instead. */
6664
6664
  export const outboundSchema =
6665
- GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt510349$outboundSchema;
6666
- /** @deprecated use `GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt510349$Outbound` instead. */
6665
+ GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt513164$outboundSchema;
6666
+ /** @deprecated use `GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt513164$Outbound` instead. */
6667
6667
  export type Outbound =
6668
- GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt510349$Outbound;
6668
+ GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt513164$Outbound;
6669
6669
  }
6670
6670
 
6671
- export function getConfigurationProductsUiOptionsIntegrationsAtBRANDAt510349ToJSON(
6672
- getConfigurationProductsUiOptionsIntegrationsAtBRANDAt510349:
6673
- GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt510349,
6671
+ export function getConfigurationProductsUiOptionsIntegrationsAtBRANDAt513164ToJSON(
6672
+ getConfigurationProductsUiOptionsIntegrationsAtBRANDAt513164:
6673
+ GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt513164,
6674
6674
  ): string {
6675
6675
  return JSON.stringify(
6676
- GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt510349$outboundSchema
6677
- .parse(getConfigurationProductsUiOptionsIntegrationsAtBRANDAt510349),
6676
+ GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt513164$outboundSchema
6677
+ .parse(getConfigurationProductsUiOptionsIntegrationsAtBRANDAt513164),
6678
6678
  );
6679
6679
  }
6680
6680
 
6681
- export function getConfigurationProductsUiOptionsIntegrationsAtBRANDAt510349FromJSON(
6681
+ export function getConfigurationProductsUiOptionsIntegrationsAtBRANDAt513164FromJSON(
6682
6682
  jsonString: string,
6683
6683
  ): SafeParseResult<
6684
- GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt510349,
6684
+ GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt513164,
6685
6685
  SDKValidationError
6686
6686
  > {
6687
6687
  return safeParse(
6688
6688
  jsonString,
6689
6689
  (x) =>
6690
- GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt510349$inboundSchema
6690
+ GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt513164$inboundSchema
6691
6691
  .parse(JSON.parse(x)),
6692
- `Failed to parse 'GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt510349' from JSON`,
6692
+ `Failed to parse 'GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt513164' from JSON`,
6693
6693
  );
6694
6694
  }
6695
6695
 
@@ -6699,19 +6699,19 @@ export const UiOptionsValue$inboundSchema: z.ZodType<
6699
6699
  z.ZodTypeDef,
6700
6700
  unknown
6701
6701
  > = z.object({
6702
- "__@BRAND@510349": z.lazy(() =>
6703
- GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt510349$inboundSchema
6702
+ "__@BRAND@513164": z.lazy(() =>
6703
+ GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt513164$inboundSchema
6704
6704
  ),
6705
6705
  }).transform((v) => {
6706
6706
  return remap$(v, {
6707
- "__@BRAND@510349": "atBRANDAt510349",
6707
+ "__@BRAND@513164": "atBRANDAt513164",
6708
6708
  });
6709
6709
  });
6710
6710
 
6711
6711
  /** @internal */
6712
6712
  export type UiOptionsValue$Outbound = {
6713
- "__@BRAND@510349":
6714
- GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt510349$Outbound;
6713
+ "__@BRAND@513164":
6714
+ GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt513164$Outbound;
6715
6715
  };
6716
6716
 
6717
6717
  /** @internal */
@@ -6720,12 +6720,12 @@ export const UiOptionsValue$outboundSchema: z.ZodType<
6720
6720
  z.ZodTypeDef,
6721
6721
  UiOptionsValue
6722
6722
  > = z.object({
6723
- atBRANDAt510349: z.lazy(() =>
6724
- GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt510349$outboundSchema
6723
+ atBRANDAt513164: z.lazy(() =>
6724
+ GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt513164$outboundSchema
6725
6725
  ),
6726
6726
  }).transform((v) => {
6727
6727
  return remap$(v, {
6728
- atBRANDAt510349: "__@BRAND@510349",
6728
+ atBRANDAt513164: "__@BRAND@513164",
6729
6729
  });
6730
6730
  });
6731
6731
 
@@ -7188,50 +7188,50 @@ export function uiOptions3FromJSON(
7188
7188
  }
7189
7189
 
7190
7190
  /** @internal */
7191
- export const UiOptionsAtBRANDAt510349$inboundSchema: z.ZodType<
7192
- UiOptionsAtBRANDAt510349,
7191
+ export const UiOptionsAtBRANDAt513164$inboundSchema: z.ZodType<
7192
+ UiOptionsAtBRANDAt513164,
7193
7193
  z.ZodTypeDef,
7194
7194
  unknown
7195
7195
  > = z.object({});
7196
7196
 
7197
7197
  /** @internal */
7198
- export type UiOptionsAtBRANDAt510349$Outbound = {};
7198
+ export type UiOptionsAtBRANDAt513164$Outbound = {};
7199
7199
 
7200
7200
  /** @internal */
7201
- export const UiOptionsAtBRANDAt510349$outboundSchema: z.ZodType<
7202
- UiOptionsAtBRANDAt510349$Outbound,
7201
+ export const UiOptionsAtBRANDAt513164$outboundSchema: z.ZodType<
7202
+ UiOptionsAtBRANDAt513164$Outbound,
7203
7203
  z.ZodTypeDef,
7204
- UiOptionsAtBRANDAt510349
7204
+ UiOptionsAtBRANDAt513164
7205
7205
  > = z.object({});
7206
7206
 
7207
7207
  /**
7208
7208
  * @internal
7209
7209
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7210
7210
  */
7211
- export namespace UiOptionsAtBRANDAt510349$ {
7212
- /** @deprecated use `UiOptionsAtBRANDAt510349$inboundSchema` instead. */
7213
- export const inboundSchema = UiOptionsAtBRANDAt510349$inboundSchema;
7214
- /** @deprecated use `UiOptionsAtBRANDAt510349$outboundSchema` instead. */
7215
- export const outboundSchema = UiOptionsAtBRANDAt510349$outboundSchema;
7216
- /** @deprecated use `UiOptionsAtBRANDAt510349$Outbound` instead. */
7217
- export type Outbound = UiOptionsAtBRANDAt510349$Outbound;
7211
+ export namespace UiOptionsAtBRANDAt513164$ {
7212
+ /** @deprecated use `UiOptionsAtBRANDAt513164$inboundSchema` instead. */
7213
+ export const inboundSchema = UiOptionsAtBRANDAt513164$inboundSchema;
7214
+ /** @deprecated use `UiOptionsAtBRANDAt513164$outboundSchema` instead. */
7215
+ export const outboundSchema = UiOptionsAtBRANDAt513164$outboundSchema;
7216
+ /** @deprecated use `UiOptionsAtBRANDAt513164$Outbound` instead. */
7217
+ export type Outbound = UiOptionsAtBRANDAt513164$Outbound;
7218
7218
  }
7219
7219
 
7220
- export function uiOptionsAtBRANDAt510349ToJSON(
7221
- uiOptionsAtBRANDAt510349: UiOptionsAtBRANDAt510349,
7220
+ export function uiOptionsAtBRANDAt513164ToJSON(
7221
+ uiOptionsAtBRANDAt513164: UiOptionsAtBRANDAt513164,
7222
7222
  ): string {
7223
7223
  return JSON.stringify(
7224
- UiOptionsAtBRANDAt510349$outboundSchema.parse(uiOptionsAtBRANDAt510349),
7224
+ UiOptionsAtBRANDAt513164$outboundSchema.parse(uiOptionsAtBRANDAt513164),
7225
7225
  );
7226
7226
  }
7227
7227
 
7228
- export function uiOptionsAtBRANDAt510349FromJSON(
7228
+ export function uiOptionsAtBRANDAt513164FromJSON(
7229
7229
  jsonString: string,
7230
- ): SafeParseResult<UiOptionsAtBRANDAt510349, SDKValidationError> {
7230
+ ): SafeParseResult<UiOptionsAtBRANDAt513164, SDKValidationError> {
7231
7231
  return safeParse(
7232
7232
  jsonString,
7233
- (x) => UiOptionsAtBRANDAt510349$inboundSchema.parse(JSON.parse(x)),
7234
- `Failed to parse 'UiOptionsAtBRANDAt510349' from JSON`,
7233
+ (x) => UiOptionsAtBRANDAt513164$inboundSchema.parse(JSON.parse(x)),
7234
+ `Failed to parse 'UiOptionsAtBRANDAt513164' from JSON`,
7235
7235
  );
7236
7236
  }
7237
7237
 
@@ -7241,16 +7241,16 @@ export const UiOptions2$inboundSchema: z.ZodType<
7241
7241
  z.ZodTypeDef,
7242
7242
  unknown
7243
7243
  > = z.object({
7244
- "__@BRAND@510349": z.lazy(() => UiOptionsAtBRANDAt510349$inboundSchema),
7244
+ "__@BRAND@513164": z.lazy(() => UiOptionsAtBRANDAt513164$inboundSchema),
7245
7245
  }).transform((v) => {
7246
7246
  return remap$(v, {
7247
- "__@BRAND@510349": "atBRANDAt510349",
7247
+ "__@BRAND@513164": "atBRANDAt513164",
7248
7248
  });
7249
7249
  });
7250
7250
 
7251
7251
  /** @internal */
7252
7252
  export type UiOptions2$Outbound = {
7253
- "__@BRAND@510349": UiOptionsAtBRANDAt510349$Outbound;
7253
+ "__@BRAND@513164": UiOptionsAtBRANDAt513164$Outbound;
7254
7254
  };
7255
7255
 
7256
7256
  /** @internal */
@@ -7259,10 +7259,10 @@ export const UiOptions2$outboundSchema: z.ZodType<
7259
7259
  z.ZodTypeDef,
7260
7260
  UiOptions2
7261
7261
  > = z.object({
7262
- atBRANDAt510349: z.lazy(() => UiOptionsAtBRANDAt510349$outboundSchema),
7262
+ atBRANDAt513164: z.lazy(() => UiOptionsAtBRANDAt513164$outboundSchema),
7263
7263
  }).transform((v) => {
7264
7264
  return remap$(v, {
7265
- atBRANDAt510349: "__@BRAND@510349",
7265
+ atBRANDAt513164: "__@BRAND@513164",
7266
7266
  });
7267
7267
  });
7268
7268
 
@@ -7775,65 +7775,65 @@ export function getConfigurationProductsPropertiesUiOptionsFromJSON(
7775
7775
  }
7776
7776
 
7777
7777
  /** @internal */
7778
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt510349$inboundSchema:
7778
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt513164$inboundSchema:
7779
7779
  z.ZodType<
7780
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt510349,
7780
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt513164,
7781
7781
  z.ZodTypeDef,
7782
7782
  unknown
7783
7783
  > = z.object({});
7784
7784
 
7785
7785
  /** @internal */
7786
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt510349$Outbound =
7786
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt513164$Outbound =
7787
7787
  {};
7788
7788
 
7789
7789
  /** @internal */
7790
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt510349$outboundSchema:
7790
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt513164$outboundSchema:
7791
7791
  z.ZodType<
7792
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt510349$Outbound,
7792
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt513164$Outbound,
7793
7793
  z.ZodTypeDef,
7794
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt510349
7794
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt513164
7795
7795
  > = z.object({});
7796
7796
 
7797
7797
  /**
7798
7798
  * @internal
7799
7799
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7800
7800
  */
7801
- export namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt510349$ {
7802
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt510349$inboundSchema` instead. */
7801
+ export namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt513164$ {
7802
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt513164$inboundSchema` instead. */
7803
7803
  export const inboundSchema =
7804
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt510349$inboundSchema;
7805
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt510349$outboundSchema` instead. */
7804
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt513164$inboundSchema;
7805
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt513164$outboundSchema` instead. */
7806
7806
  export const outboundSchema =
7807
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt510349$outboundSchema;
7808
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt510349$Outbound` instead. */
7807
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt513164$outboundSchema;
7808
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt513164$Outbound` instead. */
7809
7809
  export type Outbound =
7810
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt510349$Outbound;
7810
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt513164$Outbound;
7811
7811
  }
7812
7812
 
7813
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt510349ToJSON(
7814
- getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt510349:
7815
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt510349,
7813
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt513164ToJSON(
7814
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt513164:
7815
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt513164,
7816
7816
  ): string {
7817
7817
  return JSON.stringify(
7818
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt510349$outboundSchema
7818
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt513164$outboundSchema
7819
7819
  .parse(
7820
- getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt510349,
7820
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt513164,
7821
7821
  ),
7822
7822
  );
7823
7823
  }
7824
7824
 
7825
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt510349FromJSON(
7825
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt513164FromJSON(
7826
7826
  jsonString: string,
7827
7827
  ): SafeParseResult<
7828
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt510349,
7828
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt513164,
7829
7829
  SDKValidationError
7830
7830
  > {
7831
7831
  return safeParse(
7832
7832
  jsonString,
7833
7833
  (x) =>
7834
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt510349$inboundSchema
7834
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt513164$inboundSchema
7835
7835
  .parse(JSON.parse(x)),
7836
- `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt510349' from JSON`,
7836
+ `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt513164' from JSON`,
7837
7837
  );
7838
7838
  }
7839
7839
 
@@ -7844,19 +7844,19 @@ export const GetConfigurationProductsPropertiesMinLength$inboundSchema:
7844
7844
  z.ZodTypeDef,
7845
7845
  unknown
7846
7846
  > = z.object({
7847
- "__@BRAND@510349": z.lazy(() =>
7848
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt510349$inboundSchema
7847
+ "__@BRAND@513164": z.lazy(() =>
7848
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt513164$inboundSchema
7849
7849
  ),
7850
7850
  }).transform((v) => {
7851
7851
  return remap$(v, {
7852
- "__@BRAND@510349": "atBRANDAt510349",
7852
+ "__@BRAND@513164": "atBRANDAt513164",
7853
7853
  });
7854
7854
  });
7855
7855
 
7856
7856
  /** @internal */
7857
7857
  export type GetConfigurationProductsPropertiesMinLength$Outbound = {
7858
- "__@BRAND@510349":
7859
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt510349$Outbound;
7858
+ "__@BRAND@513164":
7859
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt513164$Outbound;
7860
7860
  };
7861
7861
 
7862
7862
  /** @internal */
@@ -7866,12 +7866,12 @@ export const GetConfigurationProductsPropertiesMinLength$outboundSchema:
7866
7866
  z.ZodTypeDef,
7867
7867
  GetConfigurationProductsPropertiesMinLength
7868
7868
  > = z.object({
7869
- atBRANDAt510349: z.lazy(() =>
7870
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt510349$outboundSchema
7869
+ atBRANDAt513164: z.lazy(() =>
7870
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt513164$outboundSchema
7871
7871
  ),
7872
7872
  }).transform((v) => {
7873
7873
  return remap$(v, {
7874
- atBRANDAt510349: "__@BRAND@510349",
7874
+ atBRANDAt513164: "__@BRAND@513164",
7875
7875
  });
7876
7876
  });
7877
7877
 
@@ -7918,65 +7918,65 @@ export function getConfigurationProductsPropertiesMinLengthFromJSON(
7918
7918
  }
7919
7919
 
7920
7920
  /** @internal */
7921
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt510349$inboundSchema:
7921
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt513164$inboundSchema:
7922
7922
  z.ZodType<
7923
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt510349,
7923
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt513164,
7924
7924
  z.ZodTypeDef,
7925
7925
  unknown
7926
7926
  > = z.object({});
7927
7927
 
7928
7928
  /** @internal */
7929
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt510349$Outbound =
7929
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt513164$Outbound =
7930
7930
  {};
7931
7931
 
7932
7932
  /** @internal */
7933
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt510349$outboundSchema:
7933
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt513164$outboundSchema:
7934
7934
  z.ZodType<
7935
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt510349$Outbound,
7935
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt513164$Outbound,
7936
7936
  z.ZodTypeDef,
7937
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt510349
7937
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt513164
7938
7938
  > = z.object({});
7939
7939
 
7940
7940
  /**
7941
7941
  * @internal
7942
7942
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7943
7943
  */
7944
- export namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt510349$ {
7945
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt510349$inboundSchema` instead. */
7944
+ export namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt513164$ {
7945
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt513164$inboundSchema` instead. */
7946
7946
  export const inboundSchema =
7947
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt510349$inboundSchema;
7948
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt510349$outboundSchema` instead. */
7947
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt513164$inboundSchema;
7948
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt513164$outboundSchema` instead. */
7949
7949
  export const outboundSchema =
7950
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt510349$outboundSchema;
7951
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt510349$Outbound` instead. */
7950
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt513164$outboundSchema;
7951
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt513164$Outbound` instead. */
7952
7952
  export type Outbound =
7953
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt510349$Outbound;
7953
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt513164$Outbound;
7954
7954
  }
7955
7955
 
7956
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt510349ToJSON(
7957
- getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt510349:
7958
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt510349,
7956
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt513164ToJSON(
7957
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt513164:
7958
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt513164,
7959
7959
  ): string {
7960
7960
  return JSON.stringify(
7961
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt510349$outboundSchema
7961
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt513164$outboundSchema
7962
7962
  .parse(
7963
- getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt510349,
7963
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt513164,
7964
7964
  ),
7965
7965
  );
7966
7966
  }
7967
7967
 
7968
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt510349FromJSON(
7968
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt513164FromJSON(
7969
7969
  jsonString: string,
7970
7970
  ): SafeParseResult<
7971
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt510349,
7971
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt513164,
7972
7972
  SDKValidationError
7973
7973
  > {
7974
7974
  return safeParse(
7975
7975
  jsonString,
7976
7976
  (x) =>
7977
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt510349$inboundSchema
7977
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt513164$inboundSchema
7978
7978
  .parse(JSON.parse(x)),
7979
- `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt510349' from JSON`,
7979
+ `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt513164' from JSON`,
7980
7980
  );
7981
7981
  }
7982
7982
 
@@ -7987,19 +7987,19 @@ export const GetConfigurationProductsPropertiesMaxLength$inboundSchema:
7987
7987
  z.ZodTypeDef,
7988
7988
  unknown
7989
7989
  > = z.object({
7990
- "__@BRAND@510349": z.lazy(() =>
7991
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt510349$inboundSchema
7990
+ "__@BRAND@513164": z.lazy(() =>
7991
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt513164$inboundSchema
7992
7992
  ),
7993
7993
  }).transform((v) => {
7994
7994
  return remap$(v, {
7995
- "__@BRAND@510349": "atBRANDAt510349",
7995
+ "__@BRAND@513164": "atBRANDAt513164",
7996
7996
  });
7997
7997
  });
7998
7998
 
7999
7999
  /** @internal */
8000
8000
  export type GetConfigurationProductsPropertiesMaxLength$Outbound = {
8001
- "__@BRAND@510349":
8002
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt510349$Outbound;
8001
+ "__@BRAND@513164":
8002
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt513164$Outbound;
8003
8003
  };
8004
8004
 
8005
8005
  /** @internal */
@@ -8009,12 +8009,12 @@ export const GetConfigurationProductsPropertiesMaxLength$outboundSchema:
8009
8009
  z.ZodTypeDef,
8010
8010
  GetConfigurationProductsPropertiesMaxLength
8011
8011
  > = z.object({
8012
- atBRANDAt510349: z.lazy(() =>
8013
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt510349$outboundSchema
8012
+ atBRANDAt513164: z.lazy(() =>
8013
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt513164$outboundSchema
8014
8014
  ),
8015
8015
  }).transform((v) => {
8016
8016
  return remap$(v, {
8017
- atBRANDAt510349: "__@BRAND@510349",
8017
+ atBRANDAt513164: "__@BRAND@513164",
8018
8018
  });
8019
8019
  });
8020
8020
 
@@ -8061,65 +8061,65 @@ export function getConfigurationProductsPropertiesMaxLengthFromJSON(
8061
8061
  }
8062
8062
 
8063
8063
  /** @internal */
8064
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt510349$inboundSchema:
8064
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt513164$inboundSchema:
8065
8065
  z.ZodType<
8066
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt510349,
8066
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt513164,
8067
8067
  z.ZodTypeDef,
8068
8068
  unknown
8069
8069
  > = z.object({});
8070
8070
 
8071
8071
  /** @internal */
8072
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt510349$Outbound =
8072
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt513164$Outbound =
8073
8073
  {};
8074
8074
 
8075
8075
  /** @internal */
8076
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt510349$outboundSchema:
8076
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt513164$outboundSchema:
8077
8077
  z.ZodType<
8078
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt510349$Outbound,
8078
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt513164$Outbound,
8079
8079
  z.ZodTypeDef,
8080
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt510349
8080
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt513164
8081
8081
  > = z.object({});
8082
8082
 
8083
8083
  /**
8084
8084
  * @internal
8085
8085
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
8086
8086
  */
8087
- export namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt510349$ {
8088
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt510349$inboundSchema` instead. */
8087
+ export namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt513164$ {
8088
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt513164$inboundSchema` instead. */
8089
8089
  export const inboundSchema =
8090
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt510349$inboundSchema;
8091
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt510349$outboundSchema` instead. */
8090
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt513164$inboundSchema;
8091
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt513164$outboundSchema` instead. */
8092
8092
  export const outboundSchema =
8093
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt510349$outboundSchema;
8094
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt510349$Outbound` instead. */
8093
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt513164$outboundSchema;
8094
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt513164$Outbound` instead. */
8095
8095
  export type Outbound =
8096
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt510349$Outbound;
8096
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt513164$Outbound;
8097
8097
  }
8098
8098
 
8099
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt510349ToJSON(
8100
- getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt510349:
8101
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt510349,
8099
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt513164ToJSON(
8100
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt513164:
8101
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt513164,
8102
8102
  ): string {
8103
8103
  return JSON.stringify(
8104
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt510349$outboundSchema
8104
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt513164$outboundSchema
8105
8105
  .parse(
8106
- getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt510349,
8106
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt513164,
8107
8107
  ),
8108
8108
  );
8109
8109
  }
8110
8110
 
8111
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt510349FromJSON(
8111
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt513164FromJSON(
8112
8112
  jsonString: string,
8113
8113
  ): SafeParseResult<
8114
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt510349,
8114
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt513164,
8115
8115
  SDKValidationError
8116
8116
  > {
8117
8117
  return safeParse(
8118
8118
  jsonString,
8119
8119
  (x) =>
8120
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt510349$inboundSchema
8120
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt513164$inboundSchema
8121
8121
  .parse(JSON.parse(x)),
8122
- `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt510349' from JSON`,
8122
+ `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt513164' from JSON`,
8123
8123
  );
8124
8124
  }
8125
8125
 
@@ -8129,19 +8129,19 @@ export const GetConfigurationProductsPropertiesPattern$inboundSchema: z.ZodType<
8129
8129
  z.ZodTypeDef,
8130
8130
  unknown
8131
8131
  > = z.object({
8132
- "__@BRAND@510349": z.lazy(() =>
8133
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt510349$inboundSchema
8132
+ "__@BRAND@513164": z.lazy(() =>
8133
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt513164$inboundSchema
8134
8134
  ),
8135
8135
  }).transform((v) => {
8136
8136
  return remap$(v, {
8137
- "__@BRAND@510349": "atBRANDAt510349",
8137
+ "__@BRAND@513164": "atBRANDAt513164",
8138
8138
  });
8139
8139
  });
8140
8140
 
8141
8141
  /** @internal */
8142
8142
  export type GetConfigurationProductsPropertiesPattern$Outbound = {
8143
- "__@BRAND@510349":
8144
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt510349$Outbound;
8143
+ "__@BRAND@513164":
8144
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt513164$Outbound;
8145
8145
  };
8146
8146
 
8147
8147
  /** @internal */
@@ -8151,12 +8151,12 @@ export const GetConfigurationProductsPropertiesPattern$outboundSchema:
8151
8151
  z.ZodTypeDef,
8152
8152
  GetConfigurationProductsPropertiesPattern
8153
8153
  > = z.object({
8154
- atBRANDAt510349: z.lazy(() =>
8155
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt510349$outboundSchema
8154
+ atBRANDAt513164: z.lazy(() =>
8155
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt513164$outboundSchema
8156
8156
  ),
8157
8157
  }).transform((v) => {
8158
8158
  return remap$(v, {
8159
- atBRANDAt510349: "__@BRAND@510349",
8159
+ atBRANDAt513164: "__@BRAND@513164",
8160
8160
  });
8161
8161
  });
8162
8162
 
@@ -9236,65 +9236,65 @@ export namespace GetConfigurationProductsPropertiesIntegrationsResponse200Applic
9236
9236
  }
9237
9237
 
9238
9238
  /** @internal */
9239
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt510349$inboundSchema:
9239
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt513164$inboundSchema:
9240
9240
  z.ZodType<
9241
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt510349,
9241
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt513164,
9242
9242
  z.ZodTypeDef,
9243
9243
  unknown
9244
9244
  > = z.object({});
9245
9245
 
9246
9246
  /** @internal */
9247
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt510349$Outbound =
9247
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt513164$Outbound =
9248
9248
  {};
9249
9249
 
9250
9250
  /** @internal */
9251
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt510349$outboundSchema:
9251
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt513164$outboundSchema:
9252
9252
  z.ZodType<
9253
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt510349$Outbound,
9253
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt513164$Outbound,
9254
9254
  z.ZodTypeDef,
9255
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt510349
9255
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt513164
9256
9256
  > = z.object({});
9257
9257
 
9258
9258
  /**
9259
9259
  * @internal
9260
9260
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
9261
9261
  */
9262
- export namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt510349$ {
9263
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt510349$inboundSchema` instead. */
9262
+ export namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt513164$ {
9263
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt513164$inboundSchema` instead. */
9264
9264
  export const inboundSchema =
9265
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt510349$inboundSchema;
9266
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt510349$outboundSchema` instead. */
9265
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt513164$inboundSchema;
9266
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt513164$outboundSchema` instead. */
9267
9267
  export const outboundSchema =
9268
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt510349$outboundSchema;
9269
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt510349$Outbound` instead. */
9268
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt513164$outboundSchema;
9269
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt513164$Outbound` instead. */
9270
9270
  export type Outbound =
9271
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt510349$Outbound;
9271
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt513164$Outbound;
9272
9272
  }
9273
9273
 
9274
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt510349ToJSON(
9275
- getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt510349:
9276
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt510349,
9274
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt513164ToJSON(
9275
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt513164:
9276
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt513164,
9277
9277
  ): string {
9278
9278
  return JSON.stringify(
9279
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt510349$outboundSchema
9279
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt513164$outboundSchema
9280
9280
  .parse(
9281
- getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt510349,
9281
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt513164,
9282
9282
  ),
9283
9283
  );
9284
9284
  }
9285
9285
 
9286
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt510349FromJSON(
9286
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt513164FromJSON(
9287
9287
  jsonString: string,
9288
9288
  ): SafeParseResult<
9289
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt510349,
9289
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt513164,
9290
9290
  SDKValidationError
9291
9291
  > {
9292
9292
  return safeParse(
9293
9293
  jsonString,
9294
9294
  (x) =>
9295
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt510349$inboundSchema
9295
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt513164$inboundSchema
9296
9296
  .parse(JSON.parse(x)),
9297
- `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt510349' from JSON`,
9297
+ `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt513164' from JSON`,
9298
9298
  );
9299
9299
  }
9300
9300
 
@@ -9305,19 +9305,19 @@ export const GetConfigurationProductsPropertiesIntegrationsMinLength$inboundSche
9305
9305
  z.ZodTypeDef,
9306
9306
  unknown
9307
9307
  > = z.object({
9308
- "__@BRAND@510349": z.lazy(() =>
9309
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt510349$inboundSchema
9308
+ "__@BRAND@513164": z.lazy(() =>
9309
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt513164$inboundSchema
9310
9310
  ),
9311
9311
  }).transform((v) => {
9312
9312
  return remap$(v, {
9313
- "__@BRAND@510349": "atBRANDAt510349",
9313
+ "__@BRAND@513164": "atBRANDAt513164",
9314
9314
  });
9315
9315
  });
9316
9316
 
9317
9317
  /** @internal */
9318
9318
  export type GetConfigurationProductsPropertiesIntegrationsMinLength$Outbound = {
9319
- "__@BRAND@510349":
9320
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt510349$Outbound;
9319
+ "__@BRAND@513164":
9320
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt513164$Outbound;
9321
9321
  };
9322
9322
 
9323
9323
  /** @internal */
@@ -9327,12 +9327,12 @@ export const GetConfigurationProductsPropertiesIntegrationsMinLength$outboundSch
9327
9327
  z.ZodTypeDef,
9328
9328
  GetConfigurationProductsPropertiesIntegrationsMinLength
9329
9329
  > = z.object({
9330
- atBRANDAt510349: z.lazy(() =>
9331
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt510349$outboundSchema
9330
+ atBRANDAt513164: z.lazy(() =>
9331
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt513164$outboundSchema
9332
9332
  ),
9333
9333
  }).transform((v) => {
9334
9334
  return remap$(v, {
9335
- atBRANDAt510349: "__@BRAND@510349",
9335
+ atBRANDAt513164: "__@BRAND@513164",
9336
9336
  });
9337
9337
  });
9338
9338
 
@@ -9378,65 +9378,65 @@ export function getConfigurationProductsPropertiesIntegrationsMinLengthFromJSON(
9378
9378
  }
9379
9379
 
9380
9380
  /** @internal */
9381
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt510349$inboundSchema:
9381
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt513164$inboundSchema:
9382
9382
  z.ZodType<
9383
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt510349,
9383
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt513164,
9384
9384
  z.ZodTypeDef,
9385
9385
  unknown
9386
9386
  > = z.object({});
9387
9387
 
9388
9388
  /** @internal */
9389
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt510349$Outbound =
9389
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt513164$Outbound =
9390
9390
  {};
9391
9391
 
9392
9392
  /** @internal */
9393
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt510349$outboundSchema:
9393
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt513164$outboundSchema:
9394
9394
  z.ZodType<
9395
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt510349$Outbound,
9395
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt513164$Outbound,
9396
9396
  z.ZodTypeDef,
9397
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt510349
9397
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt513164
9398
9398
  > = z.object({});
9399
9399
 
9400
9400
  /**
9401
9401
  * @internal
9402
9402
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
9403
9403
  */
9404
- export namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt510349$ {
9405
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt510349$inboundSchema` instead. */
9404
+ export namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt513164$ {
9405
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt513164$inboundSchema` instead. */
9406
9406
  export const inboundSchema =
9407
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt510349$inboundSchema;
9408
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt510349$outboundSchema` instead. */
9407
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt513164$inboundSchema;
9408
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt513164$outboundSchema` instead. */
9409
9409
  export const outboundSchema =
9410
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt510349$outboundSchema;
9411
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt510349$Outbound` instead. */
9410
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt513164$outboundSchema;
9411
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt513164$Outbound` instead. */
9412
9412
  export type Outbound =
9413
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt510349$Outbound;
9413
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt513164$Outbound;
9414
9414
  }
9415
9415
 
9416
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt510349ToJSON(
9417
- getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt510349:
9418
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt510349,
9416
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt513164ToJSON(
9417
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt513164:
9418
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt513164,
9419
9419
  ): string {
9420
9420
  return JSON.stringify(
9421
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt510349$outboundSchema
9421
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt513164$outboundSchema
9422
9422
  .parse(
9423
- getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt510349,
9423
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt513164,
9424
9424
  ),
9425
9425
  );
9426
9426
  }
9427
9427
 
9428
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt510349FromJSON(
9428
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt513164FromJSON(
9429
9429
  jsonString: string,
9430
9430
  ): SafeParseResult<
9431
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt510349,
9431
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt513164,
9432
9432
  SDKValidationError
9433
9433
  > {
9434
9434
  return safeParse(
9435
9435
  jsonString,
9436
9436
  (x) =>
9437
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt510349$inboundSchema
9437
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt513164$inboundSchema
9438
9438
  .parse(JSON.parse(x)),
9439
- `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt510349' from JSON`,
9439
+ `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt513164' from JSON`,
9440
9440
  );
9441
9441
  }
9442
9442
 
@@ -9447,19 +9447,19 @@ export const GetConfigurationProductsPropertiesIntegrationsMaxLength$inboundSche
9447
9447
  z.ZodTypeDef,
9448
9448
  unknown
9449
9449
  > = z.object({
9450
- "__@BRAND@510349": z.lazy(() =>
9451
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt510349$inboundSchema
9450
+ "__@BRAND@513164": z.lazy(() =>
9451
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt513164$inboundSchema
9452
9452
  ),
9453
9453
  }).transform((v) => {
9454
9454
  return remap$(v, {
9455
- "__@BRAND@510349": "atBRANDAt510349",
9455
+ "__@BRAND@513164": "atBRANDAt513164",
9456
9456
  });
9457
9457
  });
9458
9458
 
9459
9459
  /** @internal */
9460
9460
  export type GetConfigurationProductsPropertiesIntegrationsMaxLength$Outbound = {
9461
- "__@BRAND@510349":
9462
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt510349$Outbound;
9461
+ "__@BRAND@513164":
9462
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt513164$Outbound;
9463
9463
  };
9464
9464
 
9465
9465
  /** @internal */
@@ -9469,12 +9469,12 @@ export const GetConfigurationProductsPropertiesIntegrationsMaxLength$outboundSch
9469
9469
  z.ZodTypeDef,
9470
9470
  GetConfigurationProductsPropertiesIntegrationsMaxLength
9471
9471
  > = z.object({
9472
- atBRANDAt510349: z.lazy(() =>
9473
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt510349$outboundSchema
9472
+ atBRANDAt513164: z.lazy(() =>
9473
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt513164$outboundSchema
9474
9474
  ),
9475
9475
  }).transform((v) => {
9476
9476
  return remap$(v, {
9477
- atBRANDAt510349: "__@BRAND@510349",
9477
+ atBRANDAt513164: "__@BRAND@513164",
9478
9478
  });
9479
9479
  });
9480
9480
 
@@ -9520,65 +9520,65 @@ export function getConfigurationProductsPropertiesIntegrationsMaxLengthFromJSON(
9520
9520
  }
9521
9521
 
9522
9522
  /** @internal */
9523
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt510349$inboundSchema:
9523
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt513164$inboundSchema:
9524
9524
  z.ZodType<
9525
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt510349,
9525
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt513164,
9526
9526
  z.ZodTypeDef,
9527
9527
  unknown
9528
9528
  > = z.object({});
9529
9529
 
9530
9530
  /** @internal */
9531
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt510349$Outbound =
9531
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt513164$Outbound =
9532
9532
  {};
9533
9533
 
9534
9534
  /** @internal */
9535
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt510349$outboundSchema:
9535
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt513164$outboundSchema:
9536
9536
  z.ZodType<
9537
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt510349$Outbound,
9537
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt513164$Outbound,
9538
9538
  z.ZodTypeDef,
9539
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt510349
9539
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt513164
9540
9540
  > = z.object({});
9541
9541
 
9542
9542
  /**
9543
9543
  * @internal
9544
9544
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
9545
9545
  */
9546
- export namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt510349$ {
9547
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt510349$inboundSchema` instead. */
9546
+ export namespace GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt513164$ {
9547
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt513164$inboundSchema` instead. */
9548
9548
  export const inboundSchema =
9549
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt510349$inboundSchema;
9550
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt510349$outboundSchema` instead. */
9549
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt513164$inboundSchema;
9550
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt513164$outboundSchema` instead. */
9551
9551
  export const outboundSchema =
9552
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt510349$outboundSchema;
9553
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt510349$Outbound` instead. */
9552
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt513164$outboundSchema;
9553
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt513164$Outbound` instead. */
9554
9554
  export type Outbound =
9555
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt510349$Outbound;
9555
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt513164$Outbound;
9556
9556
  }
9557
9557
 
9558
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt510349ToJSON(
9559
- getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt510349:
9560
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt510349,
9558
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt513164ToJSON(
9559
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt513164:
9560
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt513164,
9561
9561
  ): string {
9562
9562
  return JSON.stringify(
9563
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt510349$outboundSchema
9563
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt513164$outboundSchema
9564
9564
  .parse(
9565
- getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt510349,
9565
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt513164,
9566
9566
  ),
9567
9567
  );
9568
9568
  }
9569
9569
 
9570
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt510349FromJSON(
9570
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt513164FromJSON(
9571
9571
  jsonString: string,
9572
9572
  ): SafeParseResult<
9573
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt510349,
9573
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt513164,
9574
9574
  SDKValidationError
9575
9575
  > {
9576
9576
  return safeParse(
9577
9577
  jsonString,
9578
9578
  (x) =>
9579
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt510349$inboundSchema
9579
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt513164$inboundSchema
9580
9580
  .parse(JSON.parse(x)),
9581
- `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt510349' from JSON`,
9581
+ `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt513164' from JSON`,
9582
9582
  );
9583
9583
  }
9584
9584
 
@@ -9589,19 +9589,19 @@ export const GetConfigurationProductsPropertiesIntegrationsPattern$inboundSchema
9589
9589
  z.ZodTypeDef,
9590
9590
  unknown
9591
9591
  > = z.object({
9592
- "__@BRAND@510349": z.lazy(() =>
9593
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt510349$inboundSchema
9592
+ "__@BRAND@513164": z.lazy(() =>
9593
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt513164$inboundSchema
9594
9594
  ),
9595
9595
  }).transform((v) => {
9596
9596
  return remap$(v, {
9597
- "__@BRAND@510349": "atBRANDAt510349",
9597
+ "__@BRAND@513164": "atBRANDAt513164",
9598
9598
  });
9599
9599
  });
9600
9600
 
9601
9601
  /** @internal */
9602
9602
  export type GetConfigurationProductsPropertiesIntegrationsPattern$Outbound = {
9603
- "__@BRAND@510349":
9604
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt510349$Outbound;
9603
+ "__@BRAND@513164":
9604
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt513164$Outbound;
9605
9605
  };
9606
9606
 
9607
9607
  /** @internal */
@@ -9611,12 +9611,12 @@ export const GetConfigurationProductsPropertiesIntegrationsPattern$outboundSchem
9611
9611
  z.ZodTypeDef,
9612
9612
  GetConfigurationProductsPropertiesIntegrationsPattern
9613
9613
  > = z.object({
9614
- atBRANDAt510349: z.lazy(() =>
9615
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt510349$outboundSchema
9614
+ atBRANDAt513164: z.lazy(() =>
9615
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt513164$outboundSchema
9616
9616
  ),
9617
9617
  }).transform((v) => {
9618
9618
  return remap$(v, {
9619
- atBRANDAt510349: "__@BRAND@510349",
9619
+ atBRANDAt513164: "__@BRAND@513164",
9620
9620
  });
9621
9621
  });
9622
9622
 
@@ -11579,63 +11579,63 @@ export function uiOptionsFromJSON(
11579
11579
  }
11580
11580
 
11581
11581
  /** @internal */
11582
- export const GetConfigurationProductsPropertiesIntegrationsAtBRANDAt510349$inboundSchema:
11582
+ export const GetConfigurationProductsPropertiesIntegrationsAtBRANDAt513164$inboundSchema:
11583
11583
  z.ZodType<
11584
- GetConfigurationProductsPropertiesIntegrationsAtBRANDAt510349,
11584
+ GetConfigurationProductsPropertiesIntegrationsAtBRANDAt513164,
11585
11585
  z.ZodTypeDef,
11586
11586
  unknown
11587
11587
  > = z.object({});
11588
11588
 
11589
11589
  /** @internal */
11590
- export type GetConfigurationProductsPropertiesIntegrationsAtBRANDAt510349$Outbound =
11590
+ export type GetConfigurationProductsPropertiesIntegrationsAtBRANDAt513164$Outbound =
11591
11591
  {};
11592
11592
 
11593
11593
  /** @internal */
11594
- export const GetConfigurationProductsPropertiesIntegrationsAtBRANDAt510349$outboundSchema:
11594
+ export const GetConfigurationProductsPropertiesIntegrationsAtBRANDAt513164$outboundSchema:
11595
11595
  z.ZodType<
11596
- GetConfigurationProductsPropertiesIntegrationsAtBRANDAt510349$Outbound,
11596
+ GetConfigurationProductsPropertiesIntegrationsAtBRANDAt513164$Outbound,
11597
11597
  z.ZodTypeDef,
11598
- GetConfigurationProductsPropertiesIntegrationsAtBRANDAt510349
11598
+ GetConfigurationProductsPropertiesIntegrationsAtBRANDAt513164
11599
11599
  > = z.object({});
11600
11600
 
11601
11601
  /**
11602
11602
  * @internal
11603
11603
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
11604
11604
  */
11605
- export namespace GetConfigurationProductsPropertiesIntegrationsAtBRANDAt510349$ {
11606
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsAtBRANDAt510349$inboundSchema` instead. */
11605
+ export namespace GetConfigurationProductsPropertiesIntegrationsAtBRANDAt513164$ {
11606
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsAtBRANDAt513164$inboundSchema` instead. */
11607
11607
  export const inboundSchema =
11608
- GetConfigurationProductsPropertiesIntegrationsAtBRANDAt510349$inboundSchema;
11609
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsAtBRANDAt510349$outboundSchema` instead. */
11608
+ GetConfigurationProductsPropertiesIntegrationsAtBRANDAt513164$inboundSchema;
11609
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsAtBRANDAt513164$outboundSchema` instead. */
11610
11610
  export const outboundSchema =
11611
- GetConfigurationProductsPropertiesIntegrationsAtBRANDAt510349$outboundSchema;
11612
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsAtBRANDAt510349$Outbound` instead. */
11611
+ GetConfigurationProductsPropertiesIntegrationsAtBRANDAt513164$outboundSchema;
11612
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsAtBRANDAt513164$Outbound` instead. */
11613
11613
  export type Outbound =
11614
- GetConfigurationProductsPropertiesIntegrationsAtBRANDAt510349$Outbound;
11614
+ GetConfigurationProductsPropertiesIntegrationsAtBRANDAt513164$Outbound;
11615
11615
  }
11616
11616
 
11617
- export function getConfigurationProductsPropertiesIntegrationsAtBRANDAt510349ToJSON(
11618
- getConfigurationProductsPropertiesIntegrationsAtBRANDAt510349:
11619
- GetConfigurationProductsPropertiesIntegrationsAtBRANDAt510349,
11617
+ export function getConfigurationProductsPropertiesIntegrationsAtBRANDAt513164ToJSON(
11618
+ getConfigurationProductsPropertiesIntegrationsAtBRANDAt513164:
11619
+ GetConfigurationProductsPropertiesIntegrationsAtBRANDAt513164,
11620
11620
  ): string {
11621
11621
  return JSON.stringify(
11622
- GetConfigurationProductsPropertiesIntegrationsAtBRANDAt510349$outboundSchema
11623
- .parse(getConfigurationProductsPropertiesIntegrationsAtBRANDAt510349),
11622
+ GetConfigurationProductsPropertiesIntegrationsAtBRANDAt513164$outboundSchema
11623
+ .parse(getConfigurationProductsPropertiesIntegrationsAtBRANDAt513164),
11624
11624
  );
11625
11625
  }
11626
11626
 
11627
- export function getConfigurationProductsPropertiesIntegrationsAtBRANDAt510349FromJSON(
11627
+ export function getConfigurationProductsPropertiesIntegrationsAtBRANDAt513164FromJSON(
11628
11628
  jsonString: string,
11629
11629
  ): SafeParseResult<
11630
- GetConfigurationProductsPropertiesIntegrationsAtBRANDAt510349,
11630
+ GetConfigurationProductsPropertiesIntegrationsAtBRANDAt513164,
11631
11631
  SDKValidationError
11632
11632
  > {
11633
11633
  return safeParse(
11634
11634
  jsonString,
11635
11635
  (x) =>
11636
- GetConfigurationProductsPropertiesIntegrationsAtBRANDAt510349$inboundSchema
11636
+ GetConfigurationProductsPropertiesIntegrationsAtBRANDAt513164$inboundSchema
11637
11637
  .parse(JSON.parse(x)),
11638
- `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsAtBRANDAt510349' from JSON`,
11638
+ `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsAtBRANDAt513164' from JSON`,
11639
11639
  );
11640
11640
  }
11641
11641
 
@@ -11645,19 +11645,19 @@ export const PropertiesMinLength$inboundSchema: z.ZodType<
11645
11645
  z.ZodTypeDef,
11646
11646
  unknown
11647
11647
  > = z.object({
11648
- "__@BRAND@510349": z.lazy(() =>
11649
- GetConfigurationProductsPropertiesIntegrationsAtBRANDAt510349$inboundSchema
11648
+ "__@BRAND@513164": z.lazy(() =>
11649
+ GetConfigurationProductsPropertiesIntegrationsAtBRANDAt513164$inboundSchema
11650
11650
  ),
11651
11651
  }).transform((v) => {
11652
11652
  return remap$(v, {
11653
- "__@BRAND@510349": "atBRANDAt510349",
11653
+ "__@BRAND@513164": "atBRANDAt513164",
11654
11654
  });
11655
11655
  });
11656
11656
 
11657
11657
  /** @internal */
11658
11658
  export type PropertiesMinLength$Outbound = {
11659
- "__@BRAND@510349":
11660
- GetConfigurationProductsPropertiesIntegrationsAtBRANDAt510349$Outbound;
11659
+ "__@BRAND@513164":
11660
+ GetConfigurationProductsPropertiesIntegrationsAtBRANDAt513164$Outbound;
11661
11661
  };
11662
11662
 
11663
11663
  /** @internal */
@@ -11666,12 +11666,12 @@ export const PropertiesMinLength$outboundSchema: z.ZodType<
11666
11666
  z.ZodTypeDef,
11667
11667
  PropertiesMinLength
11668
11668
  > = z.object({
11669
- atBRANDAt510349: z.lazy(() =>
11670
- GetConfigurationProductsPropertiesIntegrationsAtBRANDAt510349$outboundSchema
11669
+ atBRANDAt513164: z.lazy(() =>
11670
+ GetConfigurationProductsPropertiesIntegrationsAtBRANDAt513164$outboundSchema
11671
11671
  ),
11672
11672
  }).transform((v) => {
11673
11673
  return remap$(v, {
11674
- atBRANDAt510349: "__@BRAND@510349",
11674
+ atBRANDAt513164: "__@BRAND@513164",
11675
11675
  });
11676
11676
  });
11677
11677
 
@@ -11707,65 +11707,65 @@ export function propertiesMinLengthFromJSON(
11707
11707
  }
11708
11708
 
11709
11709
  /** @internal */
11710
- export const GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt510349$inboundSchema:
11710
+ export const GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt513164$inboundSchema:
11711
11711
  z.ZodType<
11712
- GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt510349,
11712
+ GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt513164,
11713
11713
  z.ZodTypeDef,
11714
11714
  unknown
11715
11715
  > = z.object({});
11716
11716
 
11717
11717
  /** @internal */
11718
- export type GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt510349$Outbound =
11718
+ export type GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt513164$Outbound =
11719
11719
  {};
11720
11720
 
11721
11721
  /** @internal */
11722
- export const GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt510349$outboundSchema:
11722
+ export const GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt513164$outboundSchema:
11723
11723
  z.ZodType<
11724
- GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt510349$Outbound,
11724
+ GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt513164$Outbound,
11725
11725
  z.ZodTypeDef,
11726
- GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt510349
11726
+ GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt513164
11727
11727
  > = z.object({});
11728
11728
 
11729
11729
  /**
11730
11730
  * @internal
11731
11731
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
11732
11732
  */
11733
- export namespace GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt510349$ {
11734
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt510349$inboundSchema` instead. */
11733
+ export namespace GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt513164$ {
11734
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt513164$inboundSchema` instead. */
11735
11735
  export const inboundSchema =
11736
- GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt510349$inboundSchema;
11737
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt510349$outboundSchema` instead. */
11736
+ GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt513164$inboundSchema;
11737
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt513164$outboundSchema` instead. */
11738
11738
  export const outboundSchema =
11739
- GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt510349$outboundSchema;
11740
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt510349$Outbound` instead. */
11739
+ GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt513164$outboundSchema;
11740
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt513164$Outbound` instead. */
11741
11741
  export type Outbound =
11742
- GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt510349$Outbound;
11742
+ GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt513164$Outbound;
11743
11743
  }
11744
11744
 
11745
- export function getConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt510349ToJSON(
11746
- getConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt510349:
11747
- GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt510349,
11745
+ export function getConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt513164ToJSON(
11746
+ getConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt513164:
11747
+ GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt513164,
11748
11748
  ): string {
11749
11749
  return JSON.stringify(
11750
- GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt510349$outboundSchema
11750
+ GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt513164$outboundSchema
11751
11751
  .parse(
11752
- getConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt510349,
11752
+ getConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt513164,
11753
11753
  ),
11754
11754
  );
11755
11755
  }
11756
11756
 
11757
- export function getConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt510349FromJSON(
11757
+ export function getConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt513164FromJSON(
11758
11758
  jsonString: string,
11759
11759
  ): SafeParseResult<
11760
- GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt510349,
11760
+ GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt513164,
11761
11761
  SDKValidationError
11762
11762
  > {
11763
11763
  return safeParse(
11764
11764
  jsonString,
11765
11765
  (x) =>
11766
- GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt510349$inboundSchema
11766
+ GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt513164$inboundSchema
11767
11767
  .parse(JSON.parse(x)),
11768
- `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt510349' from JSON`,
11768
+ `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt513164' from JSON`,
11769
11769
  );
11770
11770
  }
11771
11771
 
@@ -11775,19 +11775,19 @@ export const PropertiesMaxLength$inboundSchema: z.ZodType<
11775
11775
  z.ZodTypeDef,
11776
11776
  unknown
11777
11777
  > = z.object({
11778
- "__@BRAND@510349": z.lazy(() =>
11779
- GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt510349$inboundSchema
11778
+ "__@BRAND@513164": z.lazy(() =>
11779
+ GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt513164$inboundSchema
11780
11780
  ),
11781
11781
  }).transform((v) => {
11782
11782
  return remap$(v, {
11783
- "__@BRAND@510349": "atBRANDAt510349",
11783
+ "__@BRAND@513164": "atBRANDAt513164",
11784
11784
  });
11785
11785
  });
11786
11786
 
11787
11787
  /** @internal */
11788
11788
  export type PropertiesMaxLength$Outbound = {
11789
- "__@BRAND@510349":
11790
- GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt510349$Outbound;
11789
+ "__@BRAND@513164":
11790
+ GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt513164$Outbound;
11791
11791
  };
11792
11792
 
11793
11793
  /** @internal */
@@ -11796,12 +11796,12 @@ export const PropertiesMaxLength$outboundSchema: z.ZodType<
11796
11796
  z.ZodTypeDef,
11797
11797
  PropertiesMaxLength
11798
11798
  > = z.object({
11799
- atBRANDAt510349: z.lazy(() =>
11800
- GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt510349$outboundSchema
11799
+ atBRANDAt513164: z.lazy(() =>
11800
+ GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt513164$outboundSchema
11801
11801
  ),
11802
11802
  }).transform((v) => {
11803
11803
  return remap$(v, {
11804
- atBRANDAt510349: "__@BRAND@510349",
11804
+ atBRANDAt513164: "__@BRAND@513164",
11805
11805
  });
11806
11806
  });
11807
11807
 
@@ -11837,65 +11837,65 @@ export function propertiesMaxLengthFromJSON(
11837
11837
  }
11838
11838
 
11839
11839
  /** @internal */
11840
- export const GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt510349$inboundSchema:
11840
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt513164$inboundSchema:
11841
11841
  z.ZodType<
11842
- GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt510349,
11842
+ GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt513164,
11843
11843
  z.ZodTypeDef,
11844
11844
  unknown
11845
11845
  > = z.object({});
11846
11846
 
11847
11847
  /** @internal */
11848
- export type GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt510349$Outbound =
11848
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt513164$Outbound =
11849
11849
  {};
11850
11850
 
11851
11851
  /** @internal */
11852
- export const GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt510349$outboundSchema:
11852
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt513164$outboundSchema:
11853
11853
  z.ZodType<
11854
- GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt510349$Outbound,
11854
+ GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt513164$Outbound,
11855
11855
  z.ZodTypeDef,
11856
- GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt510349
11856
+ GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt513164
11857
11857
  > = z.object({});
11858
11858
 
11859
11859
  /**
11860
11860
  * @internal
11861
11861
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
11862
11862
  */
11863
- export namespace GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt510349$ {
11864
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt510349$inboundSchema` instead. */
11863
+ export namespace GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt513164$ {
11864
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt513164$inboundSchema` instead. */
11865
11865
  export const inboundSchema =
11866
- GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt510349$inboundSchema;
11867
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt510349$outboundSchema` instead. */
11866
+ GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt513164$inboundSchema;
11867
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt513164$outboundSchema` instead. */
11868
11868
  export const outboundSchema =
11869
- GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt510349$outboundSchema;
11870
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt510349$Outbound` instead. */
11869
+ GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt513164$outboundSchema;
11870
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt513164$Outbound` instead. */
11871
11871
  export type Outbound =
11872
- GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt510349$Outbound;
11872
+ GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt513164$Outbound;
11873
11873
  }
11874
11874
 
11875
- export function getConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt510349ToJSON(
11876
- getConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt510349:
11877
- GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt510349,
11875
+ export function getConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt513164ToJSON(
11876
+ getConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt513164:
11877
+ GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt513164,
11878
11878
  ): string {
11879
11879
  return JSON.stringify(
11880
- GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt510349$outboundSchema
11880
+ GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt513164$outboundSchema
11881
11881
  .parse(
11882
- getConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt510349,
11882
+ getConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt513164,
11883
11883
  ),
11884
11884
  );
11885
11885
  }
11886
11886
 
11887
- export function getConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt510349FromJSON(
11887
+ export function getConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt513164FromJSON(
11888
11888
  jsonString: string,
11889
11889
  ): SafeParseResult<
11890
- GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt510349,
11890
+ GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt513164,
11891
11891
  SDKValidationError
11892
11892
  > {
11893
11893
  return safeParse(
11894
11894
  jsonString,
11895
11895
  (x) =>
11896
- GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt510349$inboundSchema
11896
+ GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt513164$inboundSchema
11897
11897
  .parse(JSON.parse(x)),
11898
- `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt510349' from JSON`,
11898
+ `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt513164' from JSON`,
11899
11899
  );
11900
11900
  }
11901
11901
 
@@ -11905,19 +11905,19 @@ export const PropertiesPattern$inboundSchema: z.ZodType<
11905
11905
  z.ZodTypeDef,
11906
11906
  unknown
11907
11907
  > = z.object({
11908
- "__@BRAND@510349": z.lazy(() =>
11909
- GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt510349$inboundSchema
11908
+ "__@BRAND@513164": z.lazy(() =>
11909
+ GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt513164$inboundSchema
11910
11910
  ),
11911
11911
  }).transform((v) => {
11912
11912
  return remap$(v, {
11913
- "__@BRAND@510349": "atBRANDAt510349",
11913
+ "__@BRAND@513164": "atBRANDAt513164",
11914
11914
  });
11915
11915
  });
11916
11916
 
11917
11917
  /** @internal */
11918
11918
  export type PropertiesPattern$Outbound = {
11919
- "__@BRAND@510349":
11920
- GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt510349$Outbound;
11919
+ "__@BRAND@513164":
11920
+ GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt513164$Outbound;
11921
11921
  };
11922
11922
 
11923
11923
  /** @internal */
@@ -11926,12 +11926,12 @@ export const PropertiesPattern$outboundSchema: z.ZodType<
11926
11926
  z.ZodTypeDef,
11927
11927
  PropertiesPattern
11928
11928
  > = z.object({
11929
- atBRANDAt510349: z.lazy(() =>
11930
- GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt510349$outboundSchema
11929
+ atBRANDAt513164: z.lazy(() =>
11930
+ GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt513164$outboundSchema
11931
11931
  ),
11932
11932
  }).transform((v) => {
11933
11933
  return remap$(v, {
11934
- atBRANDAt510349: "__@BRAND@510349",
11934
+ atBRANDAt513164: "__@BRAND@513164",
11935
11935
  });
11936
11936
  });
11937
11937
 
@@ -15644,48 +15644,48 @@ export namespace UiControl$ {
15644
15644
  }
15645
15645
 
15646
15646
  /** @internal */
15647
- export const AtBRANDAt510349$inboundSchema: z.ZodType<
15648
- AtBRANDAt510349,
15647
+ export const AtBRANDAt513164$inboundSchema: z.ZodType<
15648
+ AtBRANDAt513164,
15649
15649
  z.ZodTypeDef,
15650
15650
  unknown
15651
15651
  > = z.object({});
15652
15652
 
15653
15653
  /** @internal */
15654
- export type AtBRANDAt510349$Outbound = {};
15654
+ export type AtBRANDAt513164$Outbound = {};
15655
15655
 
15656
15656
  /** @internal */
15657
- export const AtBRANDAt510349$outboundSchema: z.ZodType<
15658
- AtBRANDAt510349$Outbound,
15657
+ export const AtBRANDAt513164$outboundSchema: z.ZodType<
15658
+ AtBRANDAt513164$Outbound,
15659
15659
  z.ZodTypeDef,
15660
- AtBRANDAt510349
15660
+ AtBRANDAt513164
15661
15661
  > = z.object({});
15662
15662
 
15663
15663
  /**
15664
15664
  * @internal
15665
15665
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
15666
15666
  */
15667
- export namespace AtBRANDAt510349$ {
15668
- /** @deprecated use `AtBRANDAt510349$inboundSchema` instead. */
15669
- export const inboundSchema = AtBRANDAt510349$inboundSchema;
15670
- /** @deprecated use `AtBRANDAt510349$outboundSchema` instead. */
15671
- export const outboundSchema = AtBRANDAt510349$outboundSchema;
15672
- /** @deprecated use `AtBRANDAt510349$Outbound` instead. */
15673
- export type Outbound = AtBRANDAt510349$Outbound;
15667
+ export namespace AtBRANDAt513164$ {
15668
+ /** @deprecated use `AtBRANDAt513164$inboundSchema` instead. */
15669
+ export const inboundSchema = AtBRANDAt513164$inboundSchema;
15670
+ /** @deprecated use `AtBRANDAt513164$outboundSchema` instead. */
15671
+ export const outboundSchema = AtBRANDAt513164$outboundSchema;
15672
+ /** @deprecated use `AtBRANDAt513164$Outbound` instead. */
15673
+ export type Outbound = AtBRANDAt513164$Outbound;
15674
15674
  }
15675
15675
 
15676
- export function atBRANDAt510349ToJSON(
15677
- atBRANDAt510349: AtBRANDAt510349,
15676
+ export function atBRANDAt513164ToJSON(
15677
+ atBRANDAt513164: AtBRANDAt513164,
15678
15678
  ): string {
15679
- return JSON.stringify(AtBRANDAt510349$outboundSchema.parse(atBRANDAt510349));
15679
+ return JSON.stringify(AtBRANDAt513164$outboundSchema.parse(atBRANDAt513164));
15680
15680
  }
15681
15681
 
15682
- export function atBRANDAt510349FromJSON(
15682
+ export function atBRANDAt513164FromJSON(
15683
15683
  jsonString: string,
15684
- ): SafeParseResult<AtBRANDAt510349, SDKValidationError> {
15684
+ ): SafeParseResult<AtBRANDAt513164, SDKValidationError> {
15685
15685
  return safeParse(
15686
15686
  jsonString,
15687
- (x) => AtBRANDAt510349$inboundSchema.parse(JSON.parse(x)),
15688
- `Failed to parse 'AtBRANDAt510349' from JSON`,
15687
+ (x) => AtBRANDAt513164$inboundSchema.parse(JSON.parse(x)),
15688
+ `Failed to parse 'AtBRANDAt513164' from JSON`,
15689
15689
  );
15690
15690
  }
15691
15691
 
@@ -15695,16 +15695,16 @@ export const MinLength$inboundSchema: z.ZodType<
15695
15695
  z.ZodTypeDef,
15696
15696
  unknown
15697
15697
  > = z.object({
15698
- "__@BRAND@510349": z.lazy(() => AtBRANDAt510349$inboundSchema),
15698
+ "__@BRAND@513164": z.lazy(() => AtBRANDAt513164$inboundSchema),
15699
15699
  }).transform((v) => {
15700
15700
  return remap$(v, {
15701
- "__@BRAND@510349": "atBRANDAt510349",
15701
+ "__@BRAND@513164": "atBRANDAt513164",
15702
15702
  });
15703
15703
  });
15704
15704
 
15705
15705
  /** @internal */
15706
15706
  export type MinLength$Outbound = {
15707
- "__@BRAND@510349": AtBRANDAt510349$Outbound;
15707
+ "__@BRAND@513164": AtBRANDAt513164$Outbound;
15708
15708
  };
15709
15709
 
15710
15710
  /** @internal */
@@ -15713,10 +15713,10 @@ export const MinLength$outboundSchema: z.ZodType<
15713
15713
  z.ZodTypeDef,
15714
15714
  MinLength
15715
15715
  > = z.object({
15716
- atBRANDAt510349: z.lazy(() => AtBRANDAt510349$outboundSchema),
15716
+ atBRANDAt513164: z.lazy(() => AtBRANDAt513164$outboundSchema),
15717
15717
  }).transform((v) => {
15718
15718
  return remap$(v, {
15719
- atBRANDAt510349: "__@BRAND@510349",
15719
+ atBRANDAt513164: "__@BRAND@513164",
15720
15720
  });
15721
15721
  });
15722
15722
 
@@ -15748,50 +15748,50 @@ export function minLengthFromJSON(
15748
15748
  }
15749
15749
 
15750
15750
  /** @internal */
15751
- export const PropertiesAtBRANDAt510349$inboundSchema: z.ZodType<
15752
- PropertiesAtBRANDAt510349,
15751
+ export const PropertiesAtBRANDAt513164$inboundSchema: z.ZodType<
15752
+ PropertiesAtBRANDAt513164,
15753
15753
  z.ZodTypeDef,
15754
15754
  unknown
15755
15755
  > = z.object({});
15756
15756
 
15757
15757
  /** @internal */
15758
- export type PropertiesAtBRANDAt510349$Outbound = {};
15758
+ export type PropertiesAtBRANDAt513164$Outbound = {};
15759
15759
 
15760
15760
  /** @internal */
15761
- export const PropertiesAtBRANDAt510349$outboundSchema: z.ZodType<
15762
- PropertiesAtBRANDAt510349$Outbound,
15761
+ export const PropertiesAtBRANDAt513164$outboundSchema: z.ZodType<
15762
+ PropertiesAtBRANDAt513164$Outbound,
15763
15763
  z.ZodTypeDef,
15764
- PropertiesAtBRANDAt510349
15764
+ PropertiesAtBRANDAt513164
15765
15765
  > = z.object({});
15766
15766
 
15767
15767
  /**
15768
15768
  * @internal
15769
15769
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
15770
15770
  */
15771
- export namespace PropertiesAtBRANDAt510349$ {
15772
- /** @deprecated use `PropertiesAtBRANDAt510349$inboundSchema` instead. */
15773
- export const inboundSchema = PropertiesAtBRANDAt510349$inboundSchema;
15774
- /** @deprecated use `PropertiesAtBRANDAt510349$outboundSchema` instead. */
15775
- export const outboundSchema = PropertiesAtBRANDAt510349$outboundSchema;
15776
- /** @deprecated use `PropertiesAtBRANDAt510349$Outbound` instead. */
15777
- export type Outbound = PropertiesAtBRANDAt510349$Outbound;
15771
+ export namespace PropertiesAtBRANDAt513164$ {
15772
+ /** @deprecated use `PropertiesAtBRANDAt513164$inboundSchema` instead. */
15773
+ export const inboundSchema = PropertiesAtBRANDAt513164$inboundSchema;
15774
+ /** @deprecated use `PropertiesAtBRANDAt513164$outboundSchema` instead. */
15775
+ export const outboundSchema = PropertiesAtBRANDAt513164$outboundSchema;
15776
+ /** @deprecated use `PropertiesAtBRANDAt513164$Outbound` instead. */
15777
+ export type Outbound = PropertiesAtBRANDAt513164$Outbound;
15778
15778
  }
15779
15779
 
15780
- export function propertiesAtBRANDAt510349ToJSON(
15781
- propertiesAtBRANDAt510349: PropertiesAtBRANDAt510349,
15780
+ export function propertiesAtBRANDAt513164ToJSON(
15781
+ propertiesAtBRANDAt513164: PropertiesAtBRANDAt513164,
15782
15782
  ): string {
15783
15783
  return JSON.stringify(
15784
- PropertiesAtBRANDAt510349$outboundSchema.parse(propertiesAtBRANDAt510349),
15784
+ PropertiesAtBRANDAt513164$outboundSchema.parse(propertiesAtBRANDAt513164),
15785
15785
  );
15786
15786
  }
15787
15787
 
15788
- export function propertiesAtBRANDAt510349FromJSON(
15788
+ export function propertiesAtBRANDAt513164FromJSON(
15789
15789
  jsonString: string,
15790
- ): SafeParseResult<PropertiesAtBRANDAt510349, SDKValidationError> {
15790
+ ): SafeParseResult<PropertiesAtBRANDAt513164, SDKValidationError> {
15791
15791
  return safeParse(
15792
15792
  jsonString,
15793
- (x) => PropertiesAtBRANDAt510349$inboundSchema.parse(JSON.parse(x)),
15794
- `Failed to parse 'PropertiesAtBRANDAt510349' from JSON`,
15793
+ (x) => PropertiesAtBRANDAt513164$inboundSchema.parse(JSON.parse(x)),
15794
+ `Failed to parse 'PropertiesAtBRANDAt513164' from JSON`,
15795
15795
  );
15796
15796
  }
15797
15797
 
@@ -15801,16 +15801,16 @@ export const MaxLength$inboundSchema: z.ZodType<
15801
15801
  z.ZodTypeDef,
15802
15802
  unknown
15803
15803
  > = z.object({
15804
- "__@BRAND@510349": z.lazy(() => PropertiesAtBRANDAt510349$inboundSchema),
15804
+ "__@BRAND@513164": z.lazy(() => PropertiesAtBRANDAt513164$inboundSchema),
15805
15805
  }).transform((v) => {
15806
15806
  return remap$(v, {
15807
- "__@BRAND@510349": "atBRANDAt510349",
15807
+ "__@BRAND@513164": "atBRANDAt513164",
15808
15808
  });
15809
15809
  });
15810
15810
 
15811
15811
  /** @internal */
15812
15812
  export type MaxLength$Outbound = {
15813
- "__@BRAND@510349": PropertiesAtBRANDAt510349$Outbound;
15813
+ "__@BRAND@513164": PropertiesAtBRANDAt513164$Outbound;
15814
15814
  };
15815
15815
 
15816
15816
  /** @internal */
@@ -15819,10 +15819,10 @@ export const MaxLength$outboundSchema: z.ZodType<
15819
15819
  z.ZodTypeDef,
15820
15820
  MaxLength
15821
15821
  > = z.object({
15822
- atBRANDAt510349: z.lazy(() => PropertiesAtBRANDAt510349$outboundSchema),
15822
+ atBRANDAt513164: z.lazy(() => PropertiesAtBRANDAt513164$outboundSchema),
15823
15823
  }).transform((v) => {
15824
15824
  return remap$(v, {
15825
- atBRANDAt510349: "__@BRAND@510349",
15825
+ atBRANDAt513164: "__@BRAND@513164",
15826
15826
  });
15827
15827
  });
15828
15828
 
@@ -15854,82 +15854,82 @@ export function maxLengthFromJSON(
15854
15854
  }
15855
15855
 
15856
15856
  /** @internal */
15857
- export const GetConfigurationProductsPropertiesAtBRANDAt510349$inboundSchema:
15857
+ export const GetConfigurationProductsPropertiesAtBRANDAt513164$inboundSchema:
15858
15858
  z.ZodType<
15859
- GetConfigurationProductsPropertiesAtBRANDAt510349,
15859
+ GetConfigurationProductsPropertiesAtBRANDAt513164,
15860
15860
  z.ZodTypeDef,
15861
15861
  unknown
15862
15862
  > = z.object({});
15863
15863
 
15864
15864
  /** @internal */
15865
- export type GetConfigurationProductsPropertiesAtBRANDAt510349$Outbound = {};
15865
+ export type GetConfigurationProductsPropertiesAtBRANDAt513164$Outbound = {};
15866
15866
 
15867
15867
  /** @internal */
15868
- export const GetConfigurationProductsPropertiesAtBRANDAt510349$outboundSchema:
15868
+ export const GetConfigurationProductsPropertiesAtBRANDAt513164$outboundSchema:
15869
15869
  z.ZodType<
15870
- GetConfigurationProductsPropertiesAtBRANDAt510349$Outbound,
15870
+ GetConfigurationProductsPropertiesAtBRANDAt513164$Outbound,
15871
15871
  z.ZodTypeDef,
15872
- GetConfigurationProductsPropertiesAtBRANDAt510349
15872
+ GetConfigurationProductsPropertiesAtBRANDAt513164
15873
15873
  > = z.object({});
15874
15874
 
15875
15875
  /**
15876
15876
  * @internal
15877
15877
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
15878
15878
  */
15879
- export namespace GetConfigurationProductsPropertiesAtBRANDAt510349$ {
15880
- /** @deprecated use `GetConfigurationProductsPropertiesAtBRANDAt510349$inboundSchema` instead. */
15879
+ export namespace GetConfigurationProductsPropertiesAtBRANDAt513164$ {
15880
+ /** @deprecated use `GetConfigurationProductsPropertiesAtBRANDAt513164$inboundSchema` instead. */
15881
15881
  export const inboundSchema =
15882
- GetConfigurationProductsPropertiesAtBRANDAt510349$inboundSchema;
15883
- /** @deprecated use `GetConfigurationProductsPropertiesAtBRANDAt510349$outboundSchema` instead. */
15882
+ GetConfigurationProductsPropertiesAtBRANDAt513164$inboundSchema;
15883
+ /** @deprecated use `GetConfigurationProductsPropertiesAtBRANDAt513164$outboundSchema` instead. */
15884
15884
  export const outboundSchema =
15885
- GetConfigurationProductsPropertiesAtBRANDAt510349$outboundSchema;
15886
- /** @deprecated use `GetConfigurationProductsPropertiesAtBRANDAt510349$Outbound` instead. */
15885
+ GetConfigurationProductsPropertiesAtBRANDAt513164$outboundSchema;
15886
+ /** @deprecated use `GetConfigurationProductsPropertiesAtBRANDAt513164$Outbound` instead. */
15887
15887
  export type Outbound =
15888
- GetConfigurationProductsPropertiesAtBRANDAt510349$Outbound;
15888
+ GetConfigurationProductsPropertiesAtBRANDAt513164$Outbound;
15889
15889
  }
15890
15890
 
15891
- export function getConfigurationProductsPropertiesAtBRANDAt510349ToJSON(
15892
- getConfigurationProductsPropertiesAtBRANDAt510349:
15893
- GetConfigurationProductsPropertiesAtBRANDAt510349,
15891
+ export function getConfigurationProductsPropertiesAtBRANDAt513164ToJSON(
15892
+ getConfigurationProductsPropertiesAtBRANDAt513164:
15893
+ GetConfigurationProductsPropertiesAtBRANDAt513164,
15894
15894
  ): string {
15895
15895
  return JSON.stringify(
15896
- GetConfigurationProductsPropertiesAtBRANDAt510349$outboundSchema.parse(
15897
- getConfigurationProductsPropertiesAtBRANDAt510349,
15896
+ GetConfigurationProductsPropertiesAtBRANDAt513164$outboundSchema.parse(
15897
+ getConfigurationProductsPropertiesAtBRANDAt513164,
15898
15898
  ),
15899
15899
  );
15900
15900
  }
15901
15901
 
15902
- export function getConfigurationProductsPropertiesAtBRANDAt510349FromJSON(
15902
+ export function getConfigurationProductsPropertiesAtBRANDAt513164FromJSON(
15903
15903
  jsonString: string,
15904
15904
  ): SafeParseResult<
15905
- GetConfigurationProductsPropertiesAtBRANDAt510349,
15905
+ GetConfigurationProductsPropertiesAtBRANDAt513164,
15906
15906
  SDKValidationError
15907
15907
  > {
15908
15908
  return safeParse(
15909
15909
  jsonString,
15910
15910
  (x) =>
15911
- GetConfigurationProductsPropertiesAtBRANDAt510349$inboundSchema.parse(
15911
+ GetConfigurationProductsPropertiesAtBRANDAt513164$inboundSchema.parse(
15912
15912
  JSON.parse(x),
15913
15913
  ),
15914
- `Failed to parse 'GetConfigurationProductsPropertiesAtBRANDAt510349' from JSON`,
15914
+ `Failed to parse 'GetConfigurationProductsPropertiesAtBRANDAt513164' from JSON`,
15915
15915
  );
15916
15916
  }
15917
15917
 
15918
15918
  /** @internal */
15919
15919
  export const Pattern$inboundSchema: z.ZodType<Pattern, z.ZodTypeDef, unknown> =
15920
15920
  z.object({
15921
- "__@BRAND@510349": z.lazy(() =>
15922
- GetConfigurationProductsPropertiesAtBRANDAt510349$inboundSchema
15921
+ "__@BRAND@513164": z.lazy(() =>
15922
+ GetConfigurationProductsPropertiesAtBRANDAt513164$inboundSchema
15923
15923
  ),
15924
15924
  }).transform((v) => {
15925
15925
  return remap$(v, {
15926
- "__@BRAND@510349": "atBRANDAt510349",
15926
+ "__@BRAND@513164": "atBRANDAt513164",
15927
15927
  });
15928
15928
  });
15929
15929
 
15930
15930
  /** @internal */
15931
15931
  export type Pattern$Outbound = {
15932
- "__@BRAND@510349": GetConfigurationProductsPropertiesAtBRANDAt510349$Outbound;
15932
+ "__@BRAND@513164": GetConfigurationProductsPropertiesAtBRANDAt513164$Outbound;
15933
15933
  };
15934
15934
 
15935
15935
  /** @internal */
@@ -15938,12 +15938,12 @@ export const Pattern$outboundSchema: z.ZodType<
15938
15938
  z.ZodTypeDef,
15939
15939
  Pattern
15940
15940
  > = z.object({
15941
- atBRANDAt510349: z.lazy(() =>
15942
- GetConfigurationProductsPropertiesAtBRANDAt510349$outboundSchema
15941
+ atBRANDAt513164: z.lazy(() =>
15942
+ GetConfigurationProductsPropertiesAtBRANDAt513164$outboundSchema
15943
15943
  ),
15944
15944
  }).transform((v) => {
15945
15945
  return remap$(v, {
15946
- atBRANDAt510349: "__@BRAND@510349",
15946
+ atBRANDAt513164: "__@BRAND@513164",
15947
15947
  });
15948
15948
  });
15949
15949