@vercel/sdk 1.10.8 → 1.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (105) hide show
  1. package/bin/mcp-server.js +3715 -927
  2. package/bin/mcp-server.js.map +20 -20
  3. package/esm/__tests__/accessgroups.test.js +6 -6
  4. package/esm/__tests__/accessgroups.test.js.map +1 -1
  5. package/esm/__tests__/domains.test.js +5 -6
  6. package/esm/__tests__/domains.test.js.map +1 -1
  7. package/esm/__tests__/edgeconfig.test.js +6 -6
  8. package/esm/__tests__/edgeconfig.test.js.map +1 -1
  9. package/esm/__tests__/integrations.test.js +1 -1
  10. package/esm/__tests__/rollingrelease.test.js +2 -2
  11. package/esm/__tests__/rollingrelease.test.js.map +1 -1
  12. package/esm/__tests__/security.test.js +11 -1
  13. package/esm/__tests__/security.test.js.map +1 -1
  14. package/esm/__tests__/teams.test.js +2 -2
  15. package/esm/__tests__/teams.test.js.map +1 -1
  16. package/esm/lib/config.d.ts +3 -3
  17. package/esm/lib/config.js +3 -3
  18. package/esm/mcp-server/mcp-server.js +1 -1
  19. package/esm/mcp-server/server.js +1 -1
  20. package/esm/models/canceldeploymentop.d.ts +41 -41
  21. package/esm/models/canceldeploymentop.d.ts.map +1 -1
  22. package/esm/models/canceldeploymentop.js +43 -41
  23. package/esm/models/canceldeploymentop.js.map +1 -1
  24. package/esm/models/createdeploymentop.d.ts +98 -98
  25. package/esm/models/createdeploymentop.d.ts.map +1 -1
  26. package/esm/models/createdeploymentop.js +113 -117
  27. package/esm/models/createdeploymentop.js.map +1 -1
  28. package/esm/models/createintegrationstoredirectop.d.ts +240 -240
  29. package/esm/models/createintegrationstoredirectop.js +294 -294
  30. package/esm/models/createprojectop.d.ts +1626 -281
  31. package/esm/models/createprojectop.d.ts.map +1 -1
  32. package/esm/models/createprojectop.js +1676 -298
  33. package/esm/models/createprojectop.js.map +1 -1
  34. package/esm/models/createwebhookop.d.ts +72 -66
  35. package/esm/models/createwebhookop.d.ts.map +1 -1
  36. package/esm/models/createwebhookop.js +24 -22
  37. package/esm/models/createwebhookop.js.map +1 -1
  38. package/esm/models/getconfigurationproductsop.d.ts +330 -330
  39. package/esm/models/getconfigurationproductsop.js +408 -408
  40. package/esm/models/getdeploymentop.d.ts +16 -16
  41. package/esm/models/getdeploymentop.d.ts.map +1 -1
  42. package/esm/models/getdeploymentop.js +24 -24
  43. package/esm/models/getdeploymentop.js.map +1 -1
  44. package/esm/models/getprojectsop.d.ts +1402 -57
  45. package/esm/models/getprojectsop.d.ts.map +1 -1
  46. package/esm/models/getprojectsop.js +1575 -202
  47. package/esm/models/getprojectsop.js.map +1 -1
  48. package/esm/models/getwebhookop.d.ts +36 -33
  49. package/esm/models/getwebhookop.d.ts.map +1 -1
  50. package/esm/models/getwebhookop.js +12 -11
  51. package/esm/models/getwebhookop.js.map +1 -1
  52. package/esm/models/getwebhooksop.d.ts +72 -66
  53. package/esm/models/getwebhooksop.d.ts.map +1 -1
  54. package/esm/models/getwebhooksop.js +24 -22
  55. package/esm/models/getwebhooksop.js.map +1 -1
  56. package/esm/models/listaccessgroupsop.d.ts +2 -5
  57. package/esm/models/listaccessgroupsop.d.ts.map +1 -1
  58. package/esm/models/listaccessgroupsop.js +2 -2
  59. package/esm/models/listaccessgroupsop.js.map +1 -1
  60. package/esm/models/readaccessgroupop.d.ts +48 -5
  61. package/esm/models/readaccessgroupop.d.ts.map +1 -1
  62. package/esm/models/readaccessgroupop.js +30 -2
  63. package/esm/models/readaccessgroupop.js.map +1 -1
  64. package/esm/models/team.d.ts +35 -18
  65. package/esm/models/team.d.ts.map +1 -1
  66. package/esm/models/team.js +15 -13
  67. package/esm/models/team.js.map +1 -1
  68. package/esm/models/updateprojectdatacacheop.d.ts +1402 -57
  69. package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
  70. package/esm/models/updateprojectdatacacheop.js +1584 -200
  71. package/esm/models/updateprojectdatacacheop.js.map +1 -1
  72. package/esm/models/updateprojectop.d.ts +1402 -57
  73. package/esm/models/updateprojectop.d.ts.map +1 -1
  74. package/esm/models/updateprojectop.js +1579 -202
  75. package/esm/models/updateprojectop.js.map +1 -1
  76. package/examples/package-lock.json +1 -1
  77. package/examples/projectsUpdateProject.example.ts +1 -1
  78. package/jsr.json +1 -1
  79. package/package.json +1 -1
  80. package/src/__tests__/accessgroups.test.ts +6 -6
  81. package/src/__tests__/domains.test.ts +5 -6
  82. package/src/__tests__/edgeconfig.test.ts +6 -6
  83. package/src/__tests__/integrations.test.ts +1 -1
  84. package/src/__tests__/rollingrelease.test.ts +2 -2
  85. package/src/__tests__/security.test.ts +11 -1
  86. package/src/__tests__/teams.test.ts +2 -2
  87. package/src/lib/config.ts +3 -3
  88. package/src/mcp-server/mcp-server.ts +1 -1
  89. package/src/mcp-server/server.ts +1 -1
  90. package/src/models/canceldeploymentop.ts +84 -64
  91. package/src/models/createdeploymentop.ts +239 -192
  92. package/src/models/createintegrationstoredirectop.ts +505 -505
  93. package/src/models/createprojectop.ts +3443 -466
  94. package/src/models/createwebhookop.ts +24 -22
  95. package/src/models/getconfigurationproductsop.ts +703 -703
  96. package/src/models/getdeploymentop.ts +34 -34
  97. package/src/models/getprojectsop.ts +3255 -300
  98. package/src/models/getwebhookop.ts +12 -11
  99. package/src/models/getwebhooksop.ts +24 -22
  100. package/src/models/listaccessgroupsop.ts +4 -7
  101. package/src/models/readaccessgroupop.ts +42 -7
  102. package/src/models/team.ts +47 -28
  103. package/src/models/updateprojectdatacacheop.ts +3184 -307
  104. package/src/models/updateprojectop.ts +3290 -298
  105. package/vercel-spec.json +4895 -2034
@@ -883,42 +883,42 @@ export var GetConfigurationProductsType$;
883
883
  GetConfigurationProductsType$.outboundSchema = GetConfigurationProductsType$outboundSchema;
884
884
  })(GetConfigurationProductsType$ || (GetConfigurationProductsType$ = {}));
885
885
  /** @internal */
886
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640$inboundSchema = z.object({});
886
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581$inboundSchema = z.object({});
887
887
  /** @internal */
888
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640$outboundSchema = z.object({});
888
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581$outboundSchema = z.object({});
889
889
  /**
890
890
  * @internal
891
891
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
892
892
  */
893
- export var GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640$;
894
- (function (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640$) {
895
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640$inboundSchema` instead. */
896
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640$.inboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640$inboundSchema;
897
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640$outboundSchema` instead. */
898
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640$.outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640$outboundSchema;
899
- })(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640$ || (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640$ = {}));
900
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640) {
901
- return JSON.stringify(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640$outboundSchema
902
- .parse(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640));
893
+ export var GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581$;
894
+ (function (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581$) {
895
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581$inboundSchema` instead. */
896
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581$.inboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581$inboundSchema;
897
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581$outboundSchema` instead. */
898
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581$.outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581$outboundSchema;
899
+ })(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581$ || (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581$ = {}));
900
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581) {
901
+ return JSON.stringify(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581$outboundSchema
902
+ .parse(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581));
903
903
  }
904
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640FromJSON(jsonString) {
905
- return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640$inboundSchema
906
- .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640' from JSON`);
904
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581FromJSON(jsonString) {
905
+ return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581$inboundSchema
906
+ .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581' from JSON`);
907
907
  }
908
908
  /** @internal */
909
909
  export const PropertiesValue$inboundSchema = z.object({
910
- "__@BRAND@502640": z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640$inboundSchema),
910
+ "__@BRAND@508581": z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581$inboundSchema),
911
911
  }).transform((v) => {
912
912
  return remap$(v, {
913
- "__@BRAND@502640": "atBRANDAt502640",
913
+ "__@BRAND@508581": "atBRANDAt508581",
914
914
  });
915
915
  });
916
916
  /** @internal */
917
917
  export const PropertiesValue$outboundSchema = z.object({
918
- atBRANDAt502640: z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt502640$outboundSchema),
918
+ atBRANDAt508581: z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt508581$outboundSchema),
919
919
  }).transform((v) => {
920
920
  return remap$(v, {
921
- atBRANDAt502640: "__@BRAND@502640",
921
+ atBRANDAt508581: "__@BRAND@508581",
922
922
  });
923
923
  });
924
924
  /**
@@ -1167,42 +1167,42 @@ export var GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJ
1167
1167
  GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8Type$.outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8Type$outboundSchema;
1168
1168
  })(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8Type$ || (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8Type$ = {}));
1169
1169
  /** @internal */
1170
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640$inboundSchema = z.object({});
1170
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581$inboundSchema = z.object({});
1171
1171
  /** @internal */
1172
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640$outboundSchema = z.object({});
1172
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581$outboundSchema = z.object({});
1173
1173
  /**
1174
1174
  * @internal
1175
1175
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1176
1176
  */
1177
- export var GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640$;
1178
- (function (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640$) {
1179
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640$inboundSchema` instead. */
1180
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640$.inboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640$inboundSchema;
1181
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640$outboundSchema` instead. */
1182
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640$.outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640$outboundSchema;
1183
- })(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640$ || (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640$ = {}));
1184
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640) {
1185
- return JSON.stringify(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640$outboundSchema
1186
- .parse(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640));
1177
+ export var GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581$;
1178
+ (function (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581$) {
1179
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581$inboundSchema` instead. */
1180
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581$.inboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581$inboundSchema;
1181
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581$outboundSchema` instead. */
1182
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581$.outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581$outboundSchema;
1183
+ })(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581$ || (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581$ = {}));
1184
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581) {
1185
+ return JSON.stringify(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581$outboundSchema
1186
+ .parse(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581));
1187
1187
  }
1188
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640FromJSON(jsonString) {
1189
- return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640$inboundSchema
1190
- .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640' from JSON`);
1188
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581FromJSON(jsonString) {
1189
+ return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581$inboundSchema
1190
+ .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581' from JSON`);
1191
1191
  }
1192
1192
  /** @internal */
1193
1193
  export const GetConfigurationProductsPropertiesIntegrationsResponseMinLength$inboundSchema = z.object({
1194
- "__@BRAND@502640": z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640$inboundSchema),
1194
+ "__@BRAND@508581": z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581$inboundSchema),
1195
1195
  }).transform((v) => {
1196
1196
  return remap$(v, {
1197
- "__@BRAND@502640": "atBRANDAt502640",
1197
+ "__@BRAND@508581": "atBRANDAt508581",
1198
1198
  });
1199
1199
  });
1200
1200
  /** @internal */
1201
1201
  export const GetConfigurationProductsPropertiesIntegrationsResponseMinLength$outboundSchema = z.object({
1202
- atBRANDAt502640: z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt502640$outboundSchema),
1202
+ atBRANDAt508581: z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt508581$outboundSchema),
1203
1203
  }).transform((v) => {
1204
1204
  return remap$(v, {
1205
- atBRANDAt502640: "__@BRAND@502640",
1205
+ atBRANDAt508581: "__@BRAND@508581",
1206
1206
  });
1207
1207
  });
1208
1208
  /**
@@ -1225,42 +1225,42 @@ export function getConfigurationProductsPropertiesIntegrationsResponseMinLengthF
1225
1225
  .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponseMinLength' from JSON`);
1226
1226
  }
1227
1227
  /** @internal */
1228
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640$inboundSchema = z.object({});
1228
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581$inboundSchema = z.object({});
1229
1229
  /** @internal */
1230
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640$outboundSchema = z.object({});
1230
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581$outboundSchema = z.object({});
1231
1231
  /**
1232
1232
  * @internal
1233
1233
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1234
1234
  */
1235
- export var GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640$;
1236
- (function (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640$) {
1237
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640$inboundSchema` instead. */
1238
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640$.inboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640$inboundSchema;
1239
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640$outboundSchema` instead. */
1240
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640$.outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640$outboundSchema;
1241
- })(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640$ || (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640$ = {}));
1242
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640) {
1243
- return JSON.stringify(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640$outboundSchema
1244
- .parse(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640));
1235
+ export var GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581$;
1236
+ (function (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581$) {
1237
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581$inboundSchema` instead. */
1238
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581$.inboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581$inboundSchema;
1239
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581$outboundSchema` instead. */
1240
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581$.outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581$outboundSchema;
1241
+ })(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581$ || (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581$ = {}));
1242
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581) {
1243
+ return JSON.stringify(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581$outboundSchema
1244
+ .parse(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581));
1245
1245
  }
1246
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640FromJSON(jsonString) {
1247
- return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640$inboundSchema
1248
- .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640' from JSON`);
1246
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581FromJSON(jsonString) {
1247
+ return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581$inboundSchema
1248
+ .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581' from JSON`);
1249
1249
  }
1250
1250
  /** @internal */
1251
1251
  export const GetConfigurationProductsPropertiesIntegrationsResponseMaxLength$inboundSchema = z.object({
1252
- "__@BRAND@502640": z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640$inboundSchema),
1252
+ "__@BRAND@508581": z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581$inboundSchema),
1253
1253
  }).transform((v) => {
1254
1254
  return remap$(v, {
1255
- "__@BRAND@502640": "atBRANDAt502640",
1255
+ "__@BRAND@508581": "atBRANDAt508581",
1256
1256
  });
1257
1257
  });
1258
1258
  /** @internal */
1259
1259
  export const GetConfigurationProductsPropertiesIntegrationsResponseMaxLength$outboundSchema = z.object({
1260
- atBRANDAt502640: z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt502640$outboundSchema),
1260
+ atBRANDAt508581: z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt508581$outboundSchema),
1261
1261
  }).transform((v) => {
1262
1262
  return remap$(v, {
1263
- atBRANDAt502640: "__@BRAND@502640",
1263
+ atBRANDAt508581: "__@BRAND@508581",
1264
1264
  });
1265
1265
  });
1266
1266
  /**
@@ -1283,42 +1283,42 @@ export function getConfigurationProductsPropertiesIntegrationsResponseMaxLengthF
1283
1283
  .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponseMaxLength' from JSON`);
1284
1284
  }
1285
1285
  /** @internal */
1286
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640$inboundSchema = z.object({});
1286
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581$inboundSchema = z.object({});
1287
1287
  /** @internal */
1288
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640$outboundSchema = z.object({});
1288
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581$outboundSchema = z.object({});
1289
1289
  /**
1290
1290
  * @internal
1291
1291
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1292
1292
  */
1293
- export var GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640$;
1294
- (function (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640$) {
1295
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640$inboundSchema` instead. */
1296
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640$.inboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640$inboundSchema;
1297
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640$outboundSchema` instead. */
1298
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640$.outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640$outboundSchema;
1299
- })(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640$ || (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640$ = {}));
1300
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640) {
1301
- return JSON.stringify(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640$outboundSchema
1302
- .parse(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640));
1293
+ export var GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581$;
1294
+ (function (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581$) {
1295
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581$inboundSchema` instead. */
1296
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581$.inboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581$inboundSchema;
1297
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581$outboundSchema` instead. */
1298
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581$.outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581$outboundSchema;
1299
+ })(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581$ || (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581$ = {}));
1300
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581) {
1301
+ return JSON.stringify(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581$outboundSchema
1302
+ .parse(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581));
1303
1303
  }
1304
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640FromJSON(jsonString) {
1305
- return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640$inboundSchema
1306
- .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640' from JSON`);
1304
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581FromJSON(jsonString) {
1305
+ return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581$inboundSchema
1306
+ .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581' from JSON`);
1307
1307
  }
1308
1308
  /** @internal */
1309
1309
  export const GetConfigurationProductsPropertiesIntegrationsResponsePattern$inboundSchema = z.object({
1310
- "__@BRAND@502640": z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640$inboundSchema),
1310
+ "__@BRAND@508581": z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581$inboundSchema),
1311
1311
  }).transform((v) => {
1312
1312
  return remap$(v, {
1313
- "__@BRAND@502640": "atBRANDAt502640",
1313
+ "__@BRAND@508581": "atBRANDAt508581",
1314
1314
  });
1315
1315
  });
1316
1316
  /** @internal */
1317
1317
  export const GetConfigurationProductsPropertiesIntegrationsResponsePattern$outboundSchema = z.object({
1318
- atBRANDAt502640: z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt502640$outboundSchema),
1318
+ atBRANDAt508581: z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt508581$outboundSchema),
1319
1319
  }).transform((v) => {
1320
1320
  return remap$(v, {
1321
- atBRANDAt502640: "__@BRAND@502640",
1321
+ atBRANDAt508581: "__@BRAND@508581",
1322
1322
  });
1323
1323
  });
1324
1324
  /**
@@ -1378,42 +1378,42 @@ export function getConfigurationProductsPropertiesIntegrationsItemsFromJSON(json
1378
1378
  return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesIntegrationsItems$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsItems' from JSON`);
1379
1379
  }
1380
1380
  /** @internal */
1381
- export const GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640$inboundSchema = z.object({});
1381
+ export const GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581$inboundSchema = z.object({});
1382
1382
  /** @internal */
1383
- export const GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640$outboundSchema = z.object({});
1383
+ export const GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581$outboundSchema = z.object({});
1384
1384
  /**
1385
1385
  * @internal
1386
1386
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1387
1387
  */
1388
- export var GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640$;
1389
- (function (GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640$) {
1390
- /** @deprecated use `GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640$inboundSchema` instead. */
1391
- GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640$.inboundSchema = GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640$inboundSchema;
1392
- /** @deprecated use `GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640$outboundSchema` instead. */
1393
- GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640$.outboundSchema = GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640$outboundSchema;
1394
- })(GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640$ || (GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640$ = {}));
1395
- export function getConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640ToJSON(getConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640) {
1396
- return JSON.stringify(GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640$outboundSchema
1397
- .parse(getConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640));
1388
+ export var GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581$;
1389
+ (function (GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581$) {
1390
+ /** @deprecated use `GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581$inboundSchema` instead. */
1391
+ GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581$.inboundSchema = GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581$inboundSchema;
1392
+ /** @deprecated use `GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581$outboundSchema` instead. */
1393
+ GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581$.outboundSchema = GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581$outboundSchema;
1394
+ })(GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581$ || (GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581$ = {}));
1395
+ export function getConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581ToJSON(getConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581) {
1396
+ return JSON.stringify(GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581$outboundSchema
1397
+ .parse(getConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581));
1398
1398
  }
1399
- export function getConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640FromJSON(jsonString) {
1400
- return safeParse(jsonString, (x) => GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640$inboundSchema
1401
- .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640' from JSON`);
1399
+ export function getConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581FromJSON(jsonString) {
1400
+ return safeParse(jsonString, (x) => GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581$inboundSchema
1401
+ .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581' from JSON`);
1402
1402
  }
1403
1403
  /** @internal */
1404
1404
  export const GetConfigurationProductsUiOptionsValue$inboundSchema = z.object({
1405
- "__@BRAND@502640": z.lazy(() => GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640$inboundSchema),
1405
+ "__@BRAND@508581": z.lazy(() => GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581$inboundSchema),
1406
1406
  }).transform((v) => {
1407
1407
  return remap$(v, {
1408
- "__@BRAND@502640": "atBRANDAt502640",
1408
+ "__@BRAND@508581": "atBRANDAt508581",
1409
1409
  });
1410
1410
  });
1411
1411
  /** @internal */
1412
1412
  export const GetConfigurationProductsUiOptionsValue$outboundSchema = z.object({
1413
- atBRANDAt502640: z.lazy(() => GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt502640$outboundSchema),
1413
+ atBRANDAt508581: z.lazy(() => GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt508581$outboundSchema),
1414
1414
  }).transform((v) => {
1415
1415
  return remap$(v, {
1416
- atBRANDAt502640: "__@BRAND@502640",
1416
+ atBRANDAt508581: "__@BRAND@508581",
1417
1417
  });
1418
1418
  });
1419
1419
  /**
@@ -1625,40 +1625,40 @@ export function getConfigurationProductsUiOptions3FromJSON(jsonString) {
1625
1625
  return safeParse(jsonString, (x) => GetConfigurationProductsUiOptions3$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsUiOptions3' from JSON`);
1626
1626
  }
1627
1627
  /** @internal */
1628
- export const GetConfigurationProductsUiOptionsAtBRANDAt502640$inboundSchema = z.object({});
1628
+ export const GetConfigurationProductsUiOptionsAtBRANDAt508581$inboundSchema = z.object({});
1629
1629
  /** @internal */
1630
- export const GetConfigurationProductsUiOptionsAtBRANDAt502640$outboundSchema = z.object({});
1630
+ export const GetConfigurationProductsUiOptionsAtBRANDAt508581$outboundSchema = z.object({});
1631
1631
  /**
1632
1632
  * @internal
1633
1633
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1634
1634
  */
1635
- export var GetConfigurationProductsUiOptionsAtBRANDAt502640$;
1636
- (function (GetConfigurationProductsUiOptionsAtBRANDAt502640$) {
1637
- /** @deprecated use `GetConfigurationProductsUiOptionsAtBRANDAt502640$inboundSchema` instead. */
1638
- GetConfigurationProductsUiOptionsAtBRANDAt502640$.inboundSchema = GetConfigurationProductsUiOptionsAtBRANDAt502640$inboundSchema;
1639
- /** @deprecated use `GetConfigurationProductsUiOptionsAtBRANDAt502640$outboundSchema` instead. */
1640
- GetConfigurationProductsUiOptionsAtBRANDAt502640$.outboundSchema = GetConfigurationProductsUiOptionsAtBRANDAt502640$outboundSchema;
1641
- })(GetConfigurationProductsUiOptionsAtBRANDAt502640$ || (GetConfigurationProductsUiOptionsAtBRANDAt502640$ = {}));
1642
- export function getConfigurationProductsUiOptionsAtBRANDAt502640ToJSON(getConfigurationProductsUiOptionsAtBRANDAt502640) {
1643
- return JSON.stringify(GetConfigurationProductsUiOptionsAtBRANDAt502640$outboundSchema.parse(getConfigurationProductsUiOptionsAtBRANDAt502640));
1635
+ export var GetConfigurationProductsUiOptionsAtBRANDAt508581$;
1636
+ (function (GetConfigurationProductsUiOptionsAtBRANDAt508581$) {
1637
+ /** @deprecated use `GetConfigurationProductsUiOptionsAtBRANDAt508581$inboundSchema` instead. */
1638
+ GetConfigurationProductsUiOptionsAtBRANDAt508581$.inboundSchema = GetConfigurationProductsUiOptionsAtBRANDAt508581$inboundSchema;
1639
+ /** @deprecated use `GetConfigurationProductsUiOptionsAtBRANDAt508581$outboundSchema` instead. */
1640
+ GetConfigurationProductsUiOptionsAtBRANDAt508581$.outboundSchema = GetConfigurationProductsUiOptionsAtBRANDAt508581$outboundSchema;
1641
+ })(GetConfigurationProductsUiOptionsAtBRANDAt508581$ || (GetConfigurationProductsUiOptionsAtBRANDAt508581$ = {}));
1642
+ export function getConfigurationProductsUiOptionsAtBRANDAt508581ToJSON(getConfigurationProductsUiOptionsAtBRANDAt508581) {
1643
+ return JSON.stringify(GetConfigurationProductsUiOptionsAtBRANDAt508581$outboundSchema.parse(getConfigurationProductsUiOptionsAtBRANDAt508581));
1644
1644
  }
1645
- export function getConfigurationProductsUiOptionsAtBRANDAt502640FromJSON(jsonString) {
1646
- return safeParse(jsonString, (x) => GetConfigurationProductsUiOptionsAtBRANDAt502640$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsUiOptionsAtBRANDAt502640' from JSON`);
1645
+ export function getConfigurationProductsUiOptionsAtBRANDAt508581FromJSON(jsonString) {
1646
+ return safeParse(jsonString, (x) => GetConfigurationProductsUiOptionsAtBRANDAt508581$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsUiOptionsAtBRANDAt508581' from JSON`);
1647
1647
  }
1648
1648
  /** @internal */
1649
1649
  export const GetConfigurationProductsUiOptions2$inboundSchema = z.object({
1650
- "__@BRAND@502640": z.lazy(() => GetConfigurationProductsUiOptionsAtBRANDAt502640$inboundSchema),
1650
+ "__@BRAND@508581": z.lazy(() => GetConfigurationProductsUiOptionsAtBRANDAt508581$inboundSchema),
1651
1651
  }).transform((v) => {
1652
1652
  return remap$(v, {
1653
- "__@BRAND@502640": "atBRANDAt502640",
1653
+ "__@BRAND@508581": "atBRANDAt508581",
1654
1654
  });
1655
1655
  });
1656
1656
  /** @internal */
1657
1657
  export const GetConfigurationProductsUiOptions2$outboundSchema = z.object({
1658
- atBRANDAt502640: z.lazy(() => GetConfigurationProductsUiOptionsAtBRANDAt502640$outboundSchema),
1658
+ atBRANDAt508581: z.lazy(() => GetConfigurationProductsUiOptionsAtBRANDAt508581$outboundSchema),
1659
1659
  }).transform((v) => {
1660
1660
  return remap$(v, {
1661
- atBRANDAt502640: "__@BRAND@502640",
1661
+ atBRANDAt508581: "__@BRAND@508581",
1662
1662
  });
1663
1663
  });
1664
1664
  /**
@@ -2200,42 +2200,42 @@ export function getConfigurationProductsPropertiesIntegrationsResponse200Applica
2200
2200
  .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiFormattedValue' from JSON`);
2201
2201
  }
2202
2202
  /** @internal */
2203
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640$inboundSchema = z.object({});
2203
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581$inboundSchema = z.object({});
2204
2204
  /** @internal */
2205
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640$outboundSchema = z.object({});
2205
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581$outboundSchema = z.object({});
2206
2206
  /**
2207
2207
  * @internal
2208
2208
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2209
2209
  */
2210
- export var GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640$;
2211
- (function (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640$) {
2212
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640$inboundSchema` instead. */
2213
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640$.inboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640$inboundSchema;
2214
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640$outboundSchema` instead. */
2215
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640$.outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640$outboundSchema;
2216
- })(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640$ || (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640$ = {}));
2217
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640) {
2218
- return JSON.stringify(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640$outboundSchema
2219
- .parse(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640));
2210
+ export var GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581$;
2211
+ (function (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581$) {
2212
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581$inboundSchema` instead. */
2213
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581$.inboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581$inboundSchema;
2214
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581$outboundSchema` instead. */
2215
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581$.outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581$outboundSchema;
2216
+ })(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581$ || (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581$ = {}));
2217
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581) {
2218
+ return JSON.stringify(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581$outboundSchema
2219
+ .parse(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581));
2220
2220
  }
2221
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640FromJSON(jsonString) {
2222
- return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640$inboundSchema
2223
- .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640' from JSON`);
2221
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581FromJSON(jsonString) {
2222
+ return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581$inboundSchema
2223
+ .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581' from JSON`);
2224
2224
  }
2225
2225
  /** @internal */
2226
2226
  export const Default$inboundSchema = z.object({
2227
- "__@BRAND@502640": z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640$inboundSchema),
2227
+ "__@BRAND@508581": z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581$inboundSchema),
2228
2228
  }).transform((v) => {
2229
2229
  return remap$(v, {
2230
- "__@BRAND@502640": "atBRANDAt502640",
2230
+ "__@BRAND@508581": "atBRANDAt508581",
2231
2231
  });
2232
2232
  });
2233
2233
  /** @internal */
2234
2234
  export const Default$outboundSchema = z.object({
2235
- atBRANDAt502640: z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt502640$outboundSchema),
2235
+ atBRANDAt508581: z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt508581$outboundSchema),
2236
2236
  }).transform((v) => {
2237
2237
  return remap$(v, {
2238
- atBRANDAt502640: "__@BRAND@502640",
2238
+ atBRANDAt508581: "__@BRAND@508581",
2239
2239
  });
2240
2240
  });
2241
2241
  /**
@@ -2256,42 +2256,42 @@ export function defaultFromJSON(jsonString) {
2256
2256
  return safeParse(jsonString, (x) => Default$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Default' from JSON`);
2257
2257
  }
2258
2258
  /** @internal */
2259
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640$inboundSchema = z.object({});
2259
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581$inboundSchema = z.object({});
2260
2260
  /** @internal */
2261
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640$outboundSchema = z.object({});
2261
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581$outboundSchema = z.object({});
2262
2262
  /**
2263
2263
  * @internal
2264
2264
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2265
2265
  */
2266
- export var GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640$;
2267
- (function (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640$) {
2268
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640$inboundSchema` instead. */
2269
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640$.inboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640$inboundSchema;
2270
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640$outboundSchema` instead. */
2271
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640$.outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640$outboundSchema;
2272
- })(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640$ || (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640$ = {}));
2273
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640) {
2274
- return JSON.stringify(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640$outboundSchema
2275
- .parse(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640));
2266
+ export var GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581$;
2267
+ (function (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581$) {
2268
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581$inboundSchema` instead. */
2269
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581$.inboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581$inboundSchema;
2270
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581$outboundSchema` instead. */
2271
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581$.outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581$outboundSchema;
2272
+ })(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581$ || (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581$ = {}));
2273
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581) {
2274
+ return JSON.stringify(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581$outboundSchema
2275
+ .parse(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581));
2276
2276
  }
2277
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640FromJSON(jsonString) {
2278
- return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640$inboundSchema
2279
- .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640' from JSON`);
2277
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581FromJSON(jsonString) {
2278
+ return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581$inboundSchema
2279
+ .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581' from JSON`);
2280
2280
  }
2281
2281
  /** @internal */
2282
2282
  export const Example$inboundSchema = z.object({
2283
- "__@BRAND@502640": z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640$inboundSchema),
2283
+ "__@BRAND@508581": z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581$inboundSchema),
2284
2284
  }).transform((v) => {
2285
2285
  return remap$(v, {
2286
- "__@BRAND@502640": "atBRANDAt502640",
2286
+ "__@BRAND@508581": "atBRANDAt508581",
2287
2287
  });
2288
2288
  });
2289
2289
  /** @internal */
2290
2290
  export const Example$outboundSchema = z.object({
2291
- atBRANDAt502640: z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt502640$outboundSchema),
2291
+ atBRANDAt508581: z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt508581$outboundSchema),
2292
2292
  }).transform((v) => {
2293
2293
  return remap$(v, {
2294
- atBRANDAt502640: "__@BRAND@502640",
2294
+ atBRANDAt508581: "__@BRAND@508581",
2295
2295
  });
2296
2296
  });
2297
2297
  /**
@@ -2459,42 +2459,42 @@ export var GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJ
2459
2459
  GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiControl$.outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiControl$outboundSchema;
2460
2460
  })(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiControl$ || (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiControl$ = {}));
2461
2461
  /** @internal */
2462
- export const GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640$inboundSchema = z.object({});
2462
+ export const GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581$inboundSchema = z.object({});
2463
2463
  /** @internal */
2464
- export const GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640$outboundSchema = z.object({});
2464
+ export const GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581$outboundSchema = z.object({});
2465
2465
  /**
2466
2466
  * @internal
2467
2467
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2468
2468
  */
2469
- export var GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640$;
2470
- (function (GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640$) {
2471
- /** @deprecated use `GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640$inboundSchema` instead. */
2472
- GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640$.inboundSchema = GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640$inboundSchema;
2473
- /** @deprecated use `GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640$outboundSchema` instead. */
2474
- GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640$.outboundSchema = GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640$outboundSchema;
2475
- })(GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640$ || (GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640$ = {}));
2476
- export function getConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640ToJSON(getConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640) {
2477
- return JSON.stringify(GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640$outboundSchema
2478
- .parse(getConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640));
2469
+ export var GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581$;
2470
+ (function (GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581$) {
2471
+ /** @deprecated use `GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581$inboundSchema` instead. */
2472
+ GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581$.inboundSchema = GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581$inboundSchema;
2473
+ /** @deprecated use `GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581$outboundSchema` instead. */
2474
+ GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581$.outboundSchema = GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581$outboundSchema;
2475
+ })(GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581$ || (GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581$ = {}));
2476
+ export function getConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581ToJSON(getConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581) {
2477
+ return JSON.stringify(GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581$outboundSchema
2478
+ .parse(getConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581));
2479
2479
  }
2480
- export function getConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640FromJSON(jsonString) {
2481
- return safeParse(jsonString, (x) => GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640$inboundSchema
2482
- .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640' from JSON`);
2480
+ export function getConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581FromJSON(jsonString) {
2481
+ return safeParse(jsonString, (x) => GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581$inboundSchema
2482
+ .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581' from JSON`);
2483
2483
  }
2484
2484
  /** @internal */
2485
2485
  export const UiOptionsValue$inboundSchema = z.object({
2486
- "__@BRAND@502640": z.lazy(() => GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640$inboundSchema),
2486
+ "__@BRAND@508581": z.lazy(() => GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581$inboundSchema),
2487
2487
  }).transform((v) => {
2488
2488
  return remap$(v, {
2489
- "__@BRAND@502640": "atBRANDAt502640",
2489
+ "__@BRAND@508581": "atBRANDAt508581",
2490
2490
  });
2491
2491
  });
2492
2492
  /** @internal */
2493
2493
  export const UiOptionsValue$outboundSchema = z.object({
2494
- atBRANDAt502640: z.lazy(() => GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt502640$outboundSchema),
2494
+ atBRANDAt508581: z.lazy(() => GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt508581$outboundSchema),
2495
2495
  }).transform((v) => {
2496
2496
  return remap$(v, {
2497
- atBRANDAt502640: "__@BRAND@502640",
2497
+ atBRANDAt508581: "__@BRAND@508581",
2498
2498
  });
2499
2499
  });
2500
2500
  /**
@@ -2702,40 +2702,40 @@ export function uiOptions3FromJSON(jsonString) {
2702
2702
  return safeParse(jsonString, (x) => UiOptions3$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UiOptions3' from JSON`);
2703
2703
  }
2704
2704
  /** @internal */
2705
- export const UiOptionsAtBRANDAt502640$inboundSchema = z.object({});
2705
+ export const UiOptionsAtBRANDAt508581$inboundSchema = z.object({});
2706
2706
  /** @internal */
2707
- export const UiOptionsAtBRANDAt502640$outboundSchema = z.object({});
2707
+ export const UiOptionsAtBRANDAt508581$outboundSchema = z.object({});
2708
2708
  /**
2709
2709
  * @internal
2710
2710
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2711
2711
  */
2712
- export var UiOptionsAtBRANDAt502640$;
2713
- (function (UiOptionsAtBRANDAt502640$) {
2714
- /** @deprecated use `UiOptionsAtBRANDAt502640$inboundSchema` instead. */
2715
- UiOptionsAtBRANDAt502640$.inboundSchema = UiOptionsAtBRANDAt502640$inboundSchema;
2716
- /** @deprecated use `UiOptionsAtBRANDAt502640$outboundSchema` instead. */
2717
- UiOptionsAtBRANDAt502640$.outboundSchema = UiOptionsAtBRANDAt502640$outboundSchema;
2718
- })(UiOptionsAtBRANDAt502640$ || (UiOptionsAtBRANDAt502640$ = {}));
2719
- export function uiOptionsAtBRANDAt502640ToJSON(uiOptionsAtBRANDAt502640) {
2720
- return JSON.stringify(UiOptionsAtBRANDAt502640$outboundSchema.parse(uiOptionsAtBRANDAt502640));
2712
+ export var UiOptionsAtBRANDAt508581$;
2713
+ (function (UiOptionsAtBRANDAt508581$) {
2714
+ /** @deprecated use `UiOptionsAtBRANDAt508581$inboundSchema` instead. */
2715
+ UiOptionsAtBRANDAt508581$.inboundSchema = UiOptionsAtBRANDAt508581$inboundSchema;
2716
+ /** @deprecated use `UiOptionsAtBRANDAt508581$outboundSchema` instead. */
2717
+ UiOptionsAtBRANDAt508581$.outboundSchema = UiOptionsAtBRANDAt508581$outboundSchema;
2718
+ })(UiOptionsAtBRANDAt508581$ || (UiOptionsAtBRANDAt508581$ = {}));
2719
+ export function uiOptionsAtBRANDAt508581ToJSON(uiOptionsAtBRANDAt508581) {
2720
+ return JSON.stringify(UiOptionsAtBRANDAt508581$outboundSchema.parse(uiOptionsAtBRANDAt508581));
2721
2721
  }
2722
- export function uiOptionsAtBRANDAt502640FromJSON(jsonString) {
2723
- return safeParse(jsonString, (x) => UiOptionsAtBRANDAt502640$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UiOptionsAtBRANDAt502640' from JSON`);
2722
+ export function uiOptionsAtBRANDAt508581FromJSON(jsonString) {
2723
+ return safeParse(jsonString, (x) => UiOptionsAtBRANDAt508581$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UiOptionsAtBRANDAt508581' from JSON`);
2724
2724
  }
2725
2725
  /** @internal */
2726
2726
  export const UiOptions2$inboundSchema = z.object({
2727
- "__@BRAND@502640": z.lazy(() => UiOptionsAtBRANDAt502640$inboundSchema),
2727
+ "__@BRAND@508581": z.lazy(() => UiOptionsAtBRANDAt508581$inboundSchema),
2728
2728
  }).transform((v) => {
2729
2729
  return remap$(v, {
2730
- "__@BRAND@502640": "atBRANDAt502640",
2730
+ "__@BRAND@508581": "atBRANDAt508581",
2731
2731
  });
2732
2732
  });
2733
2733
  /** @internal */
2734
2734
  export const UiOptions2$outboundSchema = z.object({
2735
- atBRANDAt502640: z.lazy(() => UiOptionsAtBRANDAt502640$outboundSchema),
2735
+ atBRANDAt508581: z.lazy(() => UiOptionsAtBRANDAt508581$outboundSchema),
2736
2736
  }).transform((v) => {
2737
2737
  return remap$(v, {
2738
- atBRANDAt502640: "__@BRAND@502640",
2738
+ atBRANDAt508581: "__@BRAND@508581",
2739
2739
  });
2740
2740
  });
2741
2741
  /**
@@ -2974,42 +2974,42 @@ export function getConfigurationProductsPropertiesUiOptionsFromJSON(jsonString)
2974
2974
  return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesUiOptions$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesUiOptions' from JSON`);
2975
2975
  }
2976
2976
  /** @internal */
2977
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640$inboundSchema = z.object({});
2977
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581$inboundSchema = z.object({});
2978
2978
  /** @internal */
2979
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640$outboundSchema = z.object({});
2979
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581$outboundSchema = z.object({});
2980
2980
  /**
2981
2981
  * @internal
2982
2982
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2983
2983
  */
2984
- export var GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640$;
2985
- (function (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640$) {
2986
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640$inboundSchema` instead. */
2987
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640$.inboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640$inboundSchema;
2988
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640$outboundSchema` instead. */
2989
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640$.outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640$outboundSchema;
2990
- })(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640$ || (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640$ = {}));
2991
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640) {
2992
- return JSON.stringify(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640$outboundSchema
2993
- .parse(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640));
2984
+ export var GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581$;
2985
+ (function (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581$) {
2986
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581$inboundSchema` instead. */
2987
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581$.inboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581$inboundSchema;
2988
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581$outboundSchema` instead. */
2989
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581$.outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581$outboundSchema;
2990
+ })(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581$ || (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581$ = {}));
2991
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581) {
2992
+ return JSON.stringify(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581$outboundSchema
2993
+ .parse(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581));
2994
2994
  }
2995
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640FromJSON(jsonString) {
2996
- return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640$inboundSchema
2997
- .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640' from JSON`);
2995
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581FromJSON(jsonString) {
2996
+ return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581$inboundSchema
2997
+ .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581' from JSON`);
2998
2998
  }
2999
2999
  /** @internal */
3000
3000
  export const GetConfigurationProductsPropertiesMinLength$inboundSchema = z.object({
3001
- "__@BRAND@502640": z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640$inboundSchema),
3001
+ "__@BRAND@508581": z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581$inboundSchema),
3002
3002
  }).transform((v) => {
3003
3003
  return remap$(v, {
3004
- "__@BRAND@502640": "atBRANDAt502640",
3004
+ "__@BRAND@508581": "atBRANDAt508581",
3005
3005
  });
3006
3006
  });
3007
3007
  /** @internal */
3008
3008
  export const GetConfigurationProductsPropertiesMinLength$outboundSchema = z.object({
3009
- atBRANDAt502640: z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt502640$outboundSchema),
3009
+ atBRANDAt508581: z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt508581$outboundSchema),
3010
3010
  }).transform((v) => {
3011
3011
  return remap$(v, {
3012
- atBRANDAt502640: "__@BRAND@502640",
3012
+ atBRANDAt508581: "__@BRAND@508581",
3013
3013
  });
3014
3014
  });
3015
3015
  /**
@@ -3030,42 +3030,42 @@ export function getConfigurationProductsPropertiesMinLengthFromJSON(jsonString)
3030
3030
  return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesMinLength$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesMinLength' from JSON`);
3031
3031
  }
3032
3032
  /** @internal */
3033
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640$inboundSchema = z.object({});
3033
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581$inboundSchema = z.object({});
3034
3034
  /** @internal */
3035
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640$outboundSchema = z.object({});
3035
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581$outboundSchema = z.object({});
3036
3036
  /**
3037
3037
  * @internal
3038
3038
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3039
3039
  */
3040
- export var GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640$;
3041
- (function (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640$) {
3042
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640$inboundSchema` instead. */
3043
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640$.inboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640$inboundSchema;
3044
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640$outboundSchema` instead. */
3045
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640$.outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640$outboundSchema;
3046
- })(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640$ || (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640$ = {}));
3047
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640) {
3048
- return JSON.stringify(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640$outboundSchema
3049
- .parse(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640));
3040
+ export var GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581$;
3041
+ (function (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581$) {
3042
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581$inboundSchema` instead. */
3043
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581$.inboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581$inboundSchema;
3044
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581$outboundSchema` instead. */
3045
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581$.outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581$outboundSchema;
3046
+ })(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581$ || (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581$ = {}));
3047
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581) {
3048
+ return JSON.stringify(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581$outboundSchema
3049
+ .parse(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581));
3050
3050
  }
3051
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640FromJSON(jsonString) {
3052
- return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640$inboundSchema
3053
- .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640' from JSON`);
3051
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581FromJSON(jsonString) {
3052
+ return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581$inboundSchema
3053
+ .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581' from JSON`);
3054
3054
  }
3055
3055
  /** @internal */
3056
3056
  export const GetConfigurationProductsPropertiesMaxLength$inboundSchema = z.object({
3057
- "__@BRAND@502640": z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640$inboundSchema),
3057
+ "__@BRAND@508581": z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581$inboundSchema),
3058
3058
  }).transform((v) => {
3059
3059
  return remap$(v, {
3060
- "__@BRAND@502640": "atBRANDAt502640",
3060
+ "__@BRAND@508581": "atBRANDAt508581",
3061
3061
  });
3062
3062
  });
3063
3063
  /** @internal */
3064
3064
  export const GetConfigurationProductsPropertiesMaxLength$outboundSchema = z.object({
3065
- atBRANDAt502640: z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt502640$outboundSchema),
3065
+ atBRANDAt508581: z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt508581$outboundSchema),
3066
3066
  }).transform((v) => {
3067
3067
  return remap$(v, {
3068
- atBRANDAt502640: "__@BRAND@502640",
3068
+ atBRANDAt508581: "__@BRAND@508581",
3069
3069
  });
3070
3070
  });
3071
3071
  /**
@@ -3086,42 +3086,42 @@ export function getConfigurationProductsPropertiesMaxLengthFromJSON(jsonString)
3086
3086
  return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesMaxLength$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesMaxLength' from JSON`);
3087
3087
  }
3088
3088
  /** @internal */
3089
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640$inboundSchema = z.object({});
3089
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581$inboundSchema = z.object({});
3090
3090
  /** @internal */
3091
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640$outboundSchema = z.object({});
3091
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581$outboundSchema = z.object({});
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 var GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640$;
3097
- (function (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640$) {
3098
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640$inboundSchema` instead. */
3099
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640$.inboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640$inboundSchema;
3100
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640$outboundSchema` instead. */
3101
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640$.outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640$outboundSchema;
3102
- })(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640$ || (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640$ = {}));
3103
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640) {
3104
- return JSON.stringify(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640$outboundSchema
3105
- .parse(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640));
3096
+ export var GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581$;
3097
+ (function (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581$) {
3098
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581$inboundSchema` instead. */
3099
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581$.inboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581$inboundSchema;
3100
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581$outboundSchema` instead. */
3101
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581$.outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581$outboundSchema;
3102
+ })(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581$ || (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581$ = {}));
3103
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581) {
3104
+ return JSON.stringify(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581$outboundSchema
3105
+ .parse(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581));
3106
3106
  }
3107
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640FromJSON(jsonString) {
3108
- return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640$inboundSchema
3109
- .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640' from JSON`);
3107
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581FromJSON(jsonString) {
3108
+ return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581$inboundSchema
3109
+ .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581' from JSON`);
3110
3110
  }
3111
3111
  /** @internal */
3112
3112
  export const GetConfigurationProductsPropertiesPattern$inboundSchema = z.object({
3113
- "__@BRAND@502640": z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640$inboundSchema),
3113
+ "__@BRAND@508581": z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581$inboundSchema),
3114
3114
  }).transform((v) => {
3115
3115
  return remap$(v, {
3116
- "__@BRAND@502640": "atBRANDAt502640",
3116
+ "__@BRAND@508581": "atBRANDAt508581",
3117
3117
  });
3118
3118
  });
3119
3119
  /** @internal */
3120
3120
  export const GetConfigurationProductsPropertiesPattern$outboundSchema = z.object({
3121
- atBRANDAt502640: z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt502640$outboundSchema),
3121
+ atBRANDAt508581: z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt508581$outboundSchema),
3122
3122
  }).transform((v) => {
3123
3123
  return remap$(v, {
3124
- atBRANDAt502640: "__@BRAND@502640",
3124
+ atBRANDAt508581: "__@BRAND@508581",
3125
3125
  });
3126
3126
  });
3127
3127
  /**
@@ -3607,42 +3607,42 @@ export var GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJ
3607
3607
  GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6Type$.outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6Type$outboundSchema;
3608
3608
  })(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6Type$ || (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6Type$ = {}));
3609
3609
  /** @internal */
3610
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640$inboundSchema = z.object({});
3610
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581$inboundSchema = z.object({});
3611
3611
  /** @internal */
3612
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640$outboundSchema = z.object({});
3612
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581$outboundSchema = z.object({});
3613
3613
  /**
3614
3614
  * @internal
3615
3615
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3616
3616
  */
3617
- export var GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640$;
3618
- (function (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640$) {
3619
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640$inboundSchema` instead. */
3620
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640$.inboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640$inboundSchema;
3621
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640$outboundSchema` instead. */
3622
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640$.outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640$outboundSchema;
3623
- })(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640$ || (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640$ = {}));
3624
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640) {
3625
- return JSON.stringify(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640$outboundSchema
3626
- .parse(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640));
3617
+ export var GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581$;
3618
+ (function (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581$) {
3619
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581$inboundSchema` instead. */
3620
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581$.inboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581$inboundSchema;
3621
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581$outboundSchema` instead. */
3622
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581$.outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581$outboundSchema;
3623
+ })(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581$ || (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581$ = {}));
3624
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581) {
3625
+ return JSON.stringify(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581$outboundSchema
3626
+ .parse(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581));
3627
3627
  }
3628
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640FromJSON(jsonString) {
3629
- return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640$inboundSchema
3630
- .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640' from JSON`);
3628
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581FromJSON(jsonString) {
3629
+ return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581$inboundSchema
3630
+ .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581' from JSON`);
3631
3631
  }
3632
3632
  /** @internal */
3633
3633
  export const GetConfigurationProductsPropertiesIntegrationsMinLength$inboundSchema = z.object({
3634
- "__@BRAND@502640": z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640$inboundSchema),
3634
+ "__@BRAND@508581": z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581$inboundSchema),
3635
3635
  }).transform((v) => {
3636
3636
  return remap$(v, {
3637
- "__@BRAND@502640": "atBRANDAt502640",
3637
+ "__@BRAND@508581": "atBRANDAt508581",
3638
3638
  });
3639
3639
  });
3640
3640
  /** @internal */
3641
3641
  export const GetConfigurationProductsPropertiesIntegrationsMinLength$outboundSchema = z.object({
3642
- atBRANDAt502640: z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt502640$outboundSchema),
3642
+ atBRANDAt508581: z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt508581$outboundSchema),
3643
3643
  }).transform((v) => {
3644
3644
  return remap$(v, {
3645
- atBRANDAt502640: "__@BRAND@502640",
3645
+ atBRANDAt508581: "__@BRAND@508581",
3646
3646
  });
3647
3647
  });
3648
3648
  /**
@@ -3665,42 +3665,42 @@ export function getConfigurationProductsPropertiesIntegrationsMinLengthFromJSON(
3665
3665
  .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsMinLength' from JSON`);
3666
3666
  }
3667
3667
  /** @internal */
3668
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640$inboundSchema = z.object({});
3668
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581$inboundSchema = z.object({});
3669
3669
  /** @internal */
3670
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640$outboundSchema = z.object({});
3670
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581$outboundSchema = z.object({});
3671
3671
  /**
3672
3672
  * @internal
3673
3673
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3674
3674
  */
3675
- export var GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640$;
3676
- (function (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640$) {
3677
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640$inboundSchema` instead. */
3678
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640$.inboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640$inboundSchema;
3679
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640$outboundSchema` instead. */
3680
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640$.outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640$outboundSchema;
3681
- })(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640$ || (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640$ = {}));
3682
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640) {
3683
- return JSON.stringify(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640$outboundSchema
3684
- .parse(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640));
3675
+ export var GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581$;
3676
+ (function (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581$) {
3677
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581$inboundSchema` instead. */
3678
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581$.inboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581$inboundSchema;
3679
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581$outboundSchema` instead. */
3680
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581$.outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581$outboundSchema;
3681
+ })(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581$ || (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581$ = {}));
3682
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581) {
3683
+ return JSON.stringify(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581$outboundSchema
3684
+ .parse(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581));
3685
3685
  }
3686
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640FromJSON(jsonString) {
3687
- return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640$inboundSchema
3688
- .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640' from JSON`);
3686
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581FromJSON(jsonString) {
3687
+ return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581$inboundSchema
3688
+ .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581' from JSON`);
3689
3689
  }
3690
3690
  /** @internal */
3691
3691
  export const GetConfigurationProductsPropertiesIntegrationsMaxLength$inboundSchema = z.object({
3692
- "__@BRAND@502640": z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640$inboundSchema),
3692
+ "__@BRAND@508581": z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581$inboundSchema),
3693
3693
  }).transform((v) => {
3694
3694
  return remap$(v, {
3695
- "__@BRAND@502640": "atBRANDAt502640",
3695
+ "__@BRAND@508581": "atBRANDAt508581",
3696
3696
  });
3697
3697
  });
3698
3698
  /** @internal */
3699
3699
  export const GetConfigurationProductsPropertiesIntegrationsMaxLength$outboundSchema = z.object({
3700
- atBRANDAt502640: z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt502640$outboundSchema),
3700
+ atBRANDAt508581: z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt508581$outboundSchema),
3701
3701
  }).transform((v) => {
3702
3702
  return remap$(v, {
3703
- atBRANDAt502640: "__@BRAND@502640",
3703
+ atBRANDAt508581: "__@BRAND@508581",
3704
3704
  });
3705
3705
  });
3706
3706
  /**
@@ -3723,42 +3723,42 @@ export function getConfigurationProductsPropertiesIntegrationsMaxLengthFromJSON(
3723
3723
  .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsMaxLength' from JSON`);
3724
3724
  }
3725
3725
  /** @internal */
3726
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640$inboundSchema = z.object({});
3726
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581$inboundSchema = z.object({});
3727
3727
  /** @internal */
3728
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640$outboundSchema = z.object({});
3728
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581$outboundSchema = z.object({});
3729
3729
  /**
3730
3730
  * @internal
3731
3731
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3732
3732
  */
3733
- export var GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640$;
3734
- (function (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640$) {
3735
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640$inboundSchema` instead. */
3736
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640$.inboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640$inboundSchema;
3737
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640$outboundSchema` instead. */
3738
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640$.outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640$outboundSchema;
3739
- })(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640$ || (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640$ = {}));
3740
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640) {
3741
- return JSON.stringify(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640$outboundSchema
3742
- .parse(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640));
3733
+ export var GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581$;
3734
+ (function (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581$) {
3735
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581$inboundSchema` instead. */
3736
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581$.inboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581$inboundSchema;
3737
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581$outboundSchema` instead. */
3738
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581$.outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581$outboundSchema;
3739
+ })(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581$ || (GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581$ = {}));
3740
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581) {
3741
+ return JSON.stringify(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581$outboundSchema
3742
+ .parse(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581));
3743
3743
  }
3744
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640FromJSON(jsonString) {
3745
- return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640$inboundSchema
3746
- .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640' from JSON`);
3744
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581FromJSON(jsonString) {
3745
+ return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581$inboundSchema
3746
+ .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581' from JSON`);
3747
3747
  }
3748
3748
  /** @internal */
3749
3749
  export const GetConfigurationProductsPropertiesIntegrationsPattern$inboundSchema = z.object({
3750
- "__@BRAND@502640": z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640$inboundSchema),
3750
+ "__@BRAND@508581": z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581$inboundSchema),
3751
3751
  }).transform((v) => {
3752
3752
  return remap$(v, {
3753
- "__@BRAND@502640": "atBRANDAt502640",
3753
+ "__@BRAND@508581": "atBRANDAt508581",
3754
3754
  });
3755
3755
  });
3756
3756
  /** @internal */
3757
3757
  export const GetConfigurationProductsPropertiesIntegrationsPattern$outboundSchema = z.object({
3758
- atBRANDAt502640: z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt502640$outboundSchema),
3758
+ atBRANDAt508581: z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt508581$outboundSchema),
3759
3759
  }).transform((v) => {
3760
3760
  return remap$(v, {
3761
- atBRANDAt502640: "__@BRAND@502640",
3761
+ atBRANDAt508581: "__@BRAND@508581",
3762
3762
  });
3763
3763
  });
3764
3764
  /**
@@ -4630,42 +4630,42 @@ export function uiOptionsFromJSON(jsonString) {
4630
4630
  return safeParse(jsonString, (x) => UiOptions$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UiOptions' from JSON`);
4631
4631
  }
4632
4632
  /** @internal */
4633
- export const GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640$inboundSchema = z.object({});
4633
+ export const GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581$inboundSchema = z.object({});
4634
4634
  /** @internal */
4635
- export const GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640$outboundSchema = z.object({});
4635
+ export const GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581$outboundSchema = z.object({});
4636
4636
  /**
4637
4637
  * @internal
4638
4638
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4639
4639
  */
4640
- export var GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640$;
4641
- (function (GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640$) {
4642
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640$inboundSchema` instead. */
4643
- GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640$.inboundSchema = GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640$inboundSchema;
4644
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640$outboundSchema` instead. */
4645
- GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640$.outboundSchema = GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640$outboundSchema;
4646
- })(GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640$ || (GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640$ = {}));
4647
- export function getConfigurationProductsPropertiesIntegrationsAtBRANDAt502640ToJSON(getConfigurationProductsPropertiesIntegrationsAtBRANDAt502640) {
4648
- return JSON.stringify(GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640$outboundSchema
4649
- .parse(getConfigurationProductsPropertiesIntegrationsAtBRANDAt502640));
4640
+ export var GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581$;
4641
+ (function (GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581$) {
4642
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581$inboundSchema` instead. */
4643
+ GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581$.inboundSchema = GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581$inboundSchema;
4644
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581$outboundSchema` instead. */
4645
+ GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581$.outboundSchema = GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581$outboundSchema;
4646
+ })(GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581$ || (GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581$ = {}));
4647
+ export function getConfigurationProductsPropertiesIntegrationsAtBRANDAt508581ToJSON(getConfigurationProductsPropertiesIntegrationsAtBRANDAt508581) {
4648
+ return JSON.stringify(GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581$outboundSchema
4649
+ .parse(getConfigurationProductsPropertiesIntegrationsAtBRANDAt508581));
4650
4650
  }
4651
- export function getConfigurationProductsPropertiesIntegrationsAtBRANDAt502640FromJSON(jsonString) {
4652
- return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640$inboundSchema
4653
- .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640' from JSON`);
4651
+ export function getConfigurationProductsPropertiesIntegrationsAtBRANDAt508581FromJSON(jsonString) {
4652
+ return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581$inboundSchema
4653
+ .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581' from JSON`);
4654
4654
  }
4655
4655
  /** @internal */
4656
4656
  export const PropertiesMinLength$inboundSchema = z.object({
4657
- "__@BRAND@502640": z.lazy(() => GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640$inboundSchema),
4657
+ "__@BRAND@508581": z.lazy(() => GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581$inboundSchema),
4658
4658
  }).transform((v) => {
4659
4659
  return remap$(v, {
4660
- "__@BRAND@502640": "atBRANDAt502640",
4660
+ "__@BRAND@508581": "atBRANDAt508581",
4661
4661
  });
4662
4662
  });
4663
4663
  /** @internal */
4664
4664
  export const PropertiesMinLength$outboundSchema = z.object({
4665
- atBRANDAt502640: z.lazy(() => GetConfigurationProductsPropertiesIntegrationsAtBRANDAt502640$outboundSchema),
4665
+ atBRANDAt508581: z.lazy(() => GetConfigurationProductsPropertiesIntegrationsAtBRANDAt508581$outboundSchema),
4666
4666
  }).transform((v) => {
4667
4667
  return remap$(v, {
4668
- atBRANDAt502640: "__@BRAND@502640",
4668
+ atBRANDAt508581: "__@BRAND@508581",
4669
4669
  });
4670
4670
  });
4671
4671
  /**
@@ -4686,42 +4686,42 @@ export function propertiesMinLengthFromJSON(jsonString) {
4686
4686
  return safeParse(jsonString, (x) => PropertiesMinLength$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PropertiesMinLength' from JSON`);
4687
4687
  }
4688
4688
  /** @internal */
4689
- export const GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640$inboundSchema = z.object({});
4689
+ export const GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581$inboundSchema = z.object({});
4690
4690
  /** @internal */
4691
- export const GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640$outboundSchema = z.object({});
4691
+ export const GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581$outboundSchema = z.object({});
4692
4692
  /**
4693
4693
  * @internal
4694
4694
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4695
4695
  */
4696
- export var GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640$;
4697
- (function (GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640$) {
4698
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640$inboundSchema` instead. */
4699
- GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640$.inboundSchema = GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640$inboundSchema;
4700
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640$outboundSchema` instead. */
4701
- GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640$.outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640$outboundSchema;
4702
- })(GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640$ || (GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640$ = {}));
4703
- export function getConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640ToJSON(getConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640) {
4704
- return JSON.stringify(GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640$outboundSchema
4705
- .parse(getConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640));
4696
+ export var GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581$;
4697
+ (function (GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581$) {
4698
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581$inboundSchema` instead. */
4699
+ GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581$.inboundSchema = GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581$inboundSchema;
4700
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581$outboundSchema` instead. */
4701
+ GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581$.outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581$outboundSchema;
4702
+ })(GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581$ || (GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581$ = {}));
4703
+ export function getConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581ToJSON(getConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581) {
4704
+ return JSON.stringify(GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581$outboundSchema
4705
+ .parse(getConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581));
4706
4706
  }
4707
- export function getConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640FromJSON(jsonString) {
4708
- return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640$inboundSchema
4709
- .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640' from JSON`);
4707
+ export function getConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581FromJSON(jsonString) {
4708
+ return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581$inboundSchema
4709
+ .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581' from JSON`);
4710
4710
  }
4711
4711
  /** @internal */
4712
4712
  export const PropertiesMaxLength$inboundSchema = z.object({
4713
- "__@BRAND@502640": z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640$inboundSchema),
4713
+ "__@BRAND@508581": z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581$inboundSchema),
4714
4714
  }).transform((v) => {
4715
4715
  return remap$(v, {
4716
- "__@BRAND@502640": "atBRANDAt502640",
4716
+ "__@BRAND@508581": "atBRANDAt508581",
4717
4717
  });
4718
4718
  });
4719
4719
  /** @internal */
4720
4720
  export const PropertiesMaxLength$outboundSchema = z.object({
4721
- atBRANDAt502640: z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt502640$outboundSchema),
4721
+ atBRANDAt508581: z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt508581$outboundSchema),
4722
4722
  }).transform((v) => {
4723
4723
  return remap$(v, {
4724
- atBRANDAt502640: "__@BRAND@502640",
4724
+ atBRANDAt508581: "__@BRAND@508581",
4725
4725
  });
4726
4726
  });
4727
4727
  /**
@@ -4742,42 +4742,42 @@ export function propertiesMaxLengthFromJSON(jsonString) {
4742
4742
  return safeParse(jsonString, (x) => PropertiesMaxLength$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PropertiesMaxLength' from JSON`);
4743
4743
  }
4744
4744
  /** @internal */
4745
- export const GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640$inboundSchema = z.object({});
4745
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581$inboundSchema = z.object({});
4746
4746
  /** @internal */
4747
- export const GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640$outboundSchema = z.object({});
4747
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581$outboundSchema = z.object({});
4748
4748
  /**
4749
4749
  * @internal
4750
4750
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4751
4751
  */
4752
- export var GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640$;
4753
- (function (GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640$) {
4754
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640$inboundSchema` instead. */
4755
- GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640$.inboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640$inboundSchema;
4756
- /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640$outboundSchema` instead. */
4757
- GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640$.outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640$outboundSchema;
4758
- })(GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640$ || (GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640$ = {}));
4759
- export function getConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640) {
4760
- return JSON.stringify(GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640$outboundSchema
4761
- .parse(getConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640));
4752
+ export var GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581$;
4753
+ (function (GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581$) {
4754
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581$inboundSchema` instead. */
4755
+ GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581$.inboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581$inboundSchema;
4756
+ /** @deprecated use `GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581$outboundSchema` instead. */
4757
+ GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581$.outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581$outboundSchema;
4758
+ })(GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581$ || (GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581$ = {}));
4759
+ export function getConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581ToJSON(getConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581) {
4760
+ return JSON.stringify(GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581$outboundSchema
4761
+ .parse(getConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581));
4762
4762
  }
4763
- export function getConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640FromJSON(jsonString) {
4764
- return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640$inboundSchema
4765
- .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640' from JSON`);
4763
+ export function getConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581FromJSON(jsonString) {
4764
+ return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581$inboundSchema
4765
+ .parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581' from JSON`);
4766
4766
  }
4767
4767
  /** @internal */
4768
4768
  export const PropertiesPattern$inboundSchema = z.object({
4769
- "__@BRAND@502640": z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640$inboundSchema),
4769
+ "__@BRAND@508581": z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581$inboundSchema),
4770
4770
  }).transform((v) => {
4771
4771
  return remap$(v, {
4772
- "__@BRAND@502640": "atBRANDAt502640",
4772
+ "__@BRAND@508581": "atBRANDAt508581",
4773
4773
  });
4774
4774
  });
4775
4775
  /** @internal */
4776
4776
  export const PropertiesPattern$outboundSchema = z.object({
4777
- atBRANDAt502640: z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt502640$outboundSchema),
4777
+ atBRANDAt508581: z.lazy(() => GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt508581$outboundSchema),
4778
4778
  }).transform((v) => {
4779
4779
  return remap$(v, {
4780
- atBRANDAt502640: "__@BRAND@502640",
4780
+ atBRANDAt508581: "__@BRAND@508581",
4781
4781
  });
4782
4782
  });
4783
4783
  /**
@@ -6557,40 +6557,40 @@ export var UiControl$;
6557
6557
  UiControl$.outboundSchema = UiControl$outboundSchema;
6558
6558
  })(UiControl$ || (UiControl$ = {}));
6559
6559
  /** @internal */
6560
- export const AtBRANDAt502640$inboundSchema = z.object({});
6560
+ export const AtBRANDAt508581$inboundSchema = z.object({});
6561
6561
  /** @internal */
6562
- export const AtBRANDAt502640$outboundSchema = z.object({});
6562
+ export const AtBRANDAt508581$outboundSchema = z.object({});
6563
6563
  /**
6564
6564
  * @internal
6565
6565
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6566
6566
  */
6567
- export var AtBRANDAt502640$;
6568
- (function (AtBRANDAt502640$) {
6569
- /** @deprecated use `AtBRANDAt502640$inboundSchema` instead. */
6570
- AtBRANDAt502640$.inboundSchema = AtBRANDAt502640$inboundSchema;
6571
- /** @deprecated use `AtBRANDAt502640$outboundSchema` instead. */
6572
- AtBRANDAt502640$.outboundSchema = AtBRANDAt502640$outboundSchema;
6573
- })(AtBRANDAt502640$ || (AtBRANDAt502640$ = {}));
6574
- export function atBRANDAt502640ToJSON(atBRANDAt502640) {
6575
- return JSON.stringify(AtBRANDAt502640$outboundSchema.parse(atBRANDAt502640));
6567
+ export var AtBRANDAt508581$;
6568
+ (function (AtBRANDAt508581$) {
6569
+ /** @deprecated use `AtBRANDAt508581$inboundSchema` instead. */
6570
+ AtBRANDAt508581$.inboundSchema = AtBRANDAt508581$inboundSchema;
6571
+ /** @deprecated use `AtBRANDAt508581$outboundSchema` instead. */
6572
+ AtBRANDAt508581$.outboundSchema = AtBRANDAt508581$outboundSchema;
6573
+ })(AtBRANDAt508581$ || (AtBRANDAt508581$ = {}));
6574
+ export function atBRANDAt508581ToJSON(atBRANDAt508581) {
6575
+ return JSON.stringify(AtBRANDAt508581$outboundSchema.parse(atBRANDAt508581));
6576
6576
  }
6577
- export function atBRANDAt502640FromJSON(jsonString) {
6578
- return safeParse(jsonString, (x) => AtBRANDAt502640$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'AtBRANDAt502640' from JSON`);
6577
+ export function atBRANDAt508581FromJSON(jsonString) {
6578
+ return safeParse(jsonString, (x) => AtBRANDAt508581$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'AtBRANDAt508581' from JSON`);
6579
6579
  }
6580
6580
  /** @internal */
6581
6581
  export const MinLength$inboundSchema = z.object({
6582
- "__@BRAND@502640": z.lazy(() => AtBRANDAt502640$inboundSchema),
6582
+ "__@BRAND@508581": z.lazy(() => AtBRANDAt508581$inboundSchema),
6583
6583
  }).transform((v) => {
6584
6584
  return remap$(v, {
6585
- "__@BRAND@502640": "atBRANDAt502640",
6585
+ "__@BRAND@508581": "atBRANDAt508581",
6586
6586
  });
6587
6587
  });
6588
6588
  /** @internal */
6589
6589
  export const MinLength$outboundSchema = z.object({
6590
- atBRANDAt502640: z.lazy(() => AtBRANDAt502640$outboundSchema),
6590
+ atBRANDAt508581: z.lazy(() => AtBRANDAt508581$outboundSchema),
6591
6591
  }).transform((v) => {
6592
6592
  return remap$(v, {
6593
- atBRANDAt502640: "__@BRAND@502640",
6593
+ atBRANDAt508581: "__@BRAND@508581",
6594
6594
  });
6595
6595
  });
6596
6596
  /**
@@ -6611,40 +6611,40 @@ export function minLengthFromJSON(jsonString) {
6611
6611
  return safeParse(jsonString, (x) => MinLength$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'MinLength' from JSON`);
6612
6612
  }
6613
6613
  /** @internal */
6614
- export const PropertiesAtBRANDAt502640$inboundSchema = z.object({});
6614
+ export const PropertiesAtBRANDAt508581$inboundSchema = z.object({});
6615
6615
  /** @internal */
6616
- export const PropertiesAtBRANDAt502640$outboundSchema = z.object({});
6616
+ export const PropertiesAtBRANDAt508581$outboundSchema = z.object({});
6617
6617
  /**
6618
6618
  * @internal
6619
6619
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6620
6620
  */
6621
- export var PropertiesAtBRANDAt502640$;
6622
- (function (PropertiesAtBRANDAt502640$) {
6623
- /** @deprecated use `PropertiesAtBRANDAt502640$inboundSchema` instead. */
6624
- PropertiesAtBRANDAt502640$.inboundSchema = PropertiesAtBRANDAt502640$inboundSchema;
6625
- /** @deprecated use `PropertiesAtBRANDAt502640$outboundSchema` instead. */
6626
- PropertiesAtBRANDAt502640$.outboundSchema = PropertiesAtBRANDAt502640$outboundSchema;
6627
- })(PropertiesAtBRANDAt502640$ || (PropertiesAtBRANDAt502640$ = {}));
6628
- export function propertiesAtBRANDAt502640ToJSON(propertiesAtBRANDAt502640) {
6629
- return JSON.stringify(PropertiesAtBRANDAt502640$outboundSchema.parse(propertiesAtBRANDAt502640));
6621
+ export var PropertiesAtBRANDAt508581$;
6622
+ (function (PropertiesAtBRANDAt508581$) {
6623
+ /** @deprecated use `PropertiesAtBRANDAt508581$inboundSchema` instead. */
6624
+ PropertiesAtBRANDAt508581$.inboundSchema = PropertiesAtBRANDAt508581$inboundSchema;
6625
+ /** @deprecated use `PropertiesAtBRANDAt508581$outboundSchema` instead. */
6626
+ PropertiesAtBRANDAt508581$.outboundSchema = PropertiesAtBRANDAt508581$outboundSchema;
6627
+ })(PropertiesAtBRANDAt508581$ || (PropertiesAtBRANDAt508581$ = {}));
6628
+ export function propertiesAtBRANDAt508581ToJSON(propertiesAtBRANDAt508581) {
6629
+ return JSON.stringify(PropertiesAtBRANDAt508581$outboundSchema.parse(propertiesAtBRANDAt508581));
6630
6630
  }
6631
- export function propertiesAtBRANDAt502640FromJSON(jsonString) {
6632
- return safeParse(jsonString, (x) => PropertiesAtBRANDAt502640$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PropertiesAtBRANDAt502640' from JSON`);
6631
+ export function propertiesAtBRANDAt508581FromJSON(jsonString) {
6632
+ return safeParse(jsonString, (x) => PropertiesAtBRANDAt508581$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PropertiesAtBRANDAt508581' from JSON`);
6633
6633
  }
6634
6634
  /** @internal */
6635
6635
  export const MaxLength$inboundSchema = z.object({
6636
- "__@BRAND@502640": z.lazy(() => PropertiesAtBRANDAt502640$inboundSchema),
6636
+ "__@BRAND@508581": z.lazy(() => PropertiesAtBRANDAt508581$inboundSchema),
6637
6637
  }).transform((v) => {
6638
6638
  return remap$(v, {
6639
- "__@BRAND@502640": "atBRANDAt502640",
6639
+ "__@BRAND@508581": "atBRANDAt508581",
6640
6640
  });
6641
6641
  });
6642
6642
  /** @internal */
6643
6643
  export const MaxLength$outboundSchema = z.object({
6644
- atBRANDAt502640: z.lazy(() => PropertiesAtBRANDAt502640$outboundSchema),
6644
+ atBRANDAt508581: z.lazy(() => PropertiesAtBRANDAt508581$outboundSchema),
6645
6645
  }).transform((v) => {
6646
6646
  return remap$(v, {
6647
- atBRANDAt502640: "__@BRAND@502640",
6647
+ atBRANDAt508581: "__@BRAND@508581",
6648
6648
  });
6649
6649
  });
6650
6650
  /**
@@ -6665,40 +6665,40 @@ export function maxLengthFromJSON(jsonString) {
6665
6665
  return safeParse(jsonString, (x) => MaxLength$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'MaxLength' from JSON`);
6666
6666
  }
6667
6667
  /** @internal */
6668
- export const GetConfigurationProductsPropertiesAtBRANDAt502640$inboundSchema = z.object({});
6668
+ export const GetConfigurationProductsPropertiesAtBRANDAt508581$inboundSchema = z.object({});
6669
6669
  /** @internal */
6670
- export const GetConfigurationProductsPropertiesAtBRANDAt502640$outboundSchema = z.object({});
6670
+ export const GetConfigurationProductsPropertiesAtBRANDAt508581$outboundSchema = z.object({});
6671
6671
  /**
6672
6672
  * @internal
6673
6673
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6674
6674
  */
6675
- export var GetConfigurationProductsPropertiesAtBRANDAt502640$;
6676
- (function (GetConfigurationProductsPropertiesAtBRANDAt502640$) {
6677
- /** @deprecated use `GetConfigurationProductsPropertiesAtBRANDAt502640$inboundSchema` instead. */
6678
- GetConfigurationProductsPropertiesAtBRANDAt502640$.inboundSchema = GetConfigurationProductsPropertiesAtBRANDAt502640$inboundSchema;
6679
- /** @deprecated use `GetConfigurationProductsPropertiesAtBRANDAt502640$outboundSchema` instead. */
6680
- GetConfigurationProductsPropertiesAtBRANDAt502640$.outboundSchema = GetConfigurationProductsPropertiesAtBRANDAt502640$outboundSchema;
6681
- })(GetConfigurationProductsPropertiesAtBRANDAt502640$ || (GetConfigurationProductsPropertiesAtBRANDAt502640$ = {}));
6682
- export function getConfigurationProductsPropertiesAtBRANDAt502640ToJSON(getConfigurationProductsPropertiesAtBRANDAt502640) {
6683
- return JSON.stringify(GetConfigurationProductsPropertiesAtBRANDAt502640$outboundSchema.parse(getConfigurationProductsPropertiesAtBRANDAt502640));
6675
+ export var GetConfigurationProductsPropertiesAtBRANDAt508581$;
6676
+ (function (GetConfigurationProductsPropertiesAtBRANDAt508581$) {
6677
+ /** @deprecated use `GetConfigurationProductsPropertiesAtBRANDAt508581$inboundSchema` instead. */
6678
+ GetConfigurationProductsPropertiesAtBRANDAt508581$.inboundSchema = GetConfigurationProductsPropertiesAtBRANDAt508581$inboundSchema;
6679
+ /** @deprecated use `GetConfigurationProductsPropertiesAtBRANDAt508581$outboundSchema` instead. */
6680
+ GetConfigurationProductsPropertiesAtBRANDAt508581$.outboundSchema = GetConfigurationProductsPropertiesAtBRANDAt508581$outboundSchema;
6681
+ })(GetConfigurationProductsPropertiesAtBRANDAt508581$ || (GetConfigurationProductsPropertiesAtBRANDAt508581$ = {}));
6682
+ export function getConfigurationProductsPropertiesAtBRANDAt508581ToJSON(getConfigurationProductsPropertiesAtBRANDAt508581) {
6683
+ return JSON.stringify(GetConfigurationProductsPropertiesAtBRANDAt508581$outboundSchema.parse(getConfigurationProductsPropertiesAtBRANDAt508581));
6684
6684
  }
6685
- export function getConfigurationProductsPropertiesAtBRANDAt502640FromJSON(jsonString) {
6686
- return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesAtBRANDAt502640$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesAtBRANDAt502640' from JSON`);
6685
+ export function getConfigurationProductsPropertiesAtBRANDAt508581FromJSON(jsonString) {
6686
+ return safeParse(jsonString, (x) => GetConfigurationProductsPropertiesAtBRANDAt508581$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetConfigurationProductsPropertiesAtBRANDAt508581' from JSON`);
6687
6687
  }
6688
6688
  /** @internal */
6689
6689
  export const Pattern$inboundSchema = z.object({
6690
- "__@BRAND@502640": z.lazy(() => GetConfigurationProductsPropertiesAtBRANDAt502640$inboundSchema),
6690
+ "__@BRAND@508581": z.lazy(() => GetConfigurationProductsPropertiesAtBRANDAt508581$inboundSchema),
6691
6691
  }).transform((v) => {
6692
6692
  return remap$(v, {
6693
- "__@BRAND@502640": "atBRANDAt502640",
6693
+ "__@BRAND@508581": "atBRANDAt508581",
6694
6694
  });
6695
6695
  });
6696
6696
  /** @internal */
6697
6697
  export const Pattern$outboundSchema = z.object({
6698
- atBRANDAt502640: z.lazy(() => GetConfigurationProductsPropertiesAtBRANDAt502640$outboundSchema),
6698
+ atBRANDAt508581: z.lazy(() => GetConfigurationProductsPropertiesAtBRANDAt508581$outboundSchema),
6699
6699
  }).transform((v) => {
6700
6700
  return remap$(v, {
6701
- atBRANDAt502640: "__@BRAND@502640",
6701
+ atBRANDAt508581: "__@BRAND@508581",
6702
6702
  });
6703
6703
  });
6704
6704
  /**