@vercel/sdk 1.11.1 → 1.11.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (97) hide show
  1. package/bin/mcp-server.js +1329 -1215
  2. package/bin/mcp-server.js.map +21 -21
  3. package/esm/__tests__/accessgroups.test.js +1 -3
  4. package/esm/__tests__/accessgroups.test.js.map +1 -1
  5. package/esm/__tests__/domains.test.js +12 -3
  6. package/esm/__tests__/domains.test.js.map +1 -1
  7. package/esm/__tests__/integrations.test.js +1 -1
  8. package/esm/__tests__/rollingrelease.test.js +6 -2
  9. package/esm/__tests__/rollingrelease.test.js.map +1 -1
  10. package/esm/__tests__/security.test.js +11 -1
  11. package/esm/__tests__/security.test.js.map +1 -1
  12. package/esm/funcs/deploymentsUploadFile.js +0 -1
  13. package/esm/funcs/deploymentsUploadFile.js.map +1 -1
  14. package/esm/funcs/domainsGetDomainTransfer.js +2 -2
  15. package/esm/funcs/domainsGetDomainTransfer.js.map +1 -1
  16. package/esm/funcs/marketplaceUpdateResourceSecrets.js +2 -2
  17. package/esm/funcs/marketplaceUpdateResourceSecrets.js.map +1 -1
  18. package/esm/lib/config.d.ts +3 -3
  19. package/esm/lib/config.js +3 -3
  20. package/esm/mcp-server/mcp-server.js +1 -1
  21. package/esm/mcp-server/server.js +1 -1
  22. package/esm/models/canceldeploymentop.d.ts +6 -6
  23. package/esm/models/canceldeploymentop.js +2 -2
  24. package/esm/models/canceldeploymentop.js.map +1 -1
  25. package/esm/models/createdeploymentop.d.ts +41 -41
  26. package/esm/models/createdeploymentop.d.ts.map +1 -1
  27. package/esm/models/createdeploymentop.js +15 -15
  28. package/esm/models/createdeploymentop.js.map +1 -1
  29. package/esm/models/createintegrationstoredirectop.d.ts +273 -246
  30. package/esm/models/createintegrationstoredirectop.d.ts.map +1 -1
  31. package/esm/models/createintegrationstoredirectop.js +317 -296
  32. package/esm/models/createintegrationstoredirectop.js.map +1 -1
  33. package/esm/models/createprojectop.d.ts +162 -164
  34. package/esm/models/createprojectop.d.ts.map +1 -1
  35. package/esm/models/createprojectop.js +154 -156
  36. package/esm/models/createprojectop.js.map +1 -1
  37. package/esm/models/getconfigurationproductsop.d.ts +330 -330
  38. package/esm/models/getconfigurationproductsop.js +408 -408
  39. package/esm/models/getdeploymentop.d.ts +6 -6
  40. package/esm/models/getdeploymentop.js +2 -2
  41. package/esm/models/getdeploymentop.js.map +1 -1
  42. package/esm/models/getdomaintransferop.d.ts +99 -25
  43. package/esm/models/getdomaintransferop.d.ts.map +1 -1
  44. package/esm/models/getdomaintransferop.js +101 -25
  45. package/esm/models/getdomaintransferop.js.map +1 -1
  46. package/esm/models/getprojectsop.d.ts +0 -2
  47. package/esm/models/getprojectsop.d.ts.map +1 -1
  48. package/esm/models/getprojectsop.js +0 -2
  49. package/esm/models/getprojectsop.js.map +1 -1
  50. package/esm/models/patchteamop.d.ts +12 -0
  51. package/esm/models/patchteamop.d.ts.map +1 -1
  52. package/esm/models/patchteamop.js +4 -0
  53. package/esm/models/patchteamop.js.map +1 -1
  54. package/esm/models/updateprojectdatacacheop.d.ts +0 -2
  55. package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
  56. package/esm/models/updateprojectdatacacheop.js +0 -2
  57. package/esm/models/updateprojectdatacacheop.js.map +1 -1
  58. package/esm/models/updateprojectop.d.ts +0 -2
  59. package/esm/models/updateprojectop.d.ts.map +1 -1
  60. package/esm/models/updateprojectop.js +0 -2
  61. package/esm/models/updateprojectop.js.map +1 -1
  62. package/esm/models/uploadfileop.d.ts +0 -5
  63. package/esm/models/uploadfileop.d.ts.map +1 -1
  64. package/esm/models/uploadfileop.js +0 -4
  65. package/esm/models/uploadfileop.js.map +1 -1
  66. package/esm/models/userevent.d.ts +960 -770
  67. package/esm/models/userevent.d.ts.map +1 -1
  68. package/esm/models/userevent.js +1102 -974
  69. package/esm/models/userevent.js.map +1 -1
  70. package/examples/package-lock.json +1 -1
  71. package/jsr.json +1 -1
  72. package/package.json +1 -1
  73. package/src/__tests__/accessgroups.test.ts +1 -3
  74. package/src/__tests__/domains.test.ts +12 -3
  75. package/src/__tests__/integrations.test.ts +1 -1
  76. package/src/__tests__/rollingrelease.test.ts +6 -2
  77. package/src/__tests__/security.test.ts +11 -1
  78. package/src/funcs/deploymentsUploadFile.ts +0 -5
  79. package/src/funcs/domainsGetDomainTransfer.ts +2 -2
  80. package/src/funcs/marketplaceUpdateResourceSecrets.ts +2 -2
  81. package/src/lib/config.ts +3 -3
  82. package/src/mcp-server/mcp-server.ts +1 -1
  83. package/src/mcp-server/server.ts +1 -1
  84. package/src/models/canceldeploymentop.ts +4 -4
  85. package/src/models/createdeploymentop.ts +19 -19
  86. package/src/models/createintegrationstoredirectop.ts +543 -507
  87. package/src/models/createprojectop.ts +299 -303
  88. package/src/models/getconfigurationproductsop.ts +703 -703
  89. package/src/models/getdeploymentop.ts +4 -4
  90. package/src/models/getdomaintransferop.ts +203 -39
  91. package/src/models/getprojectsop.ts +0 -4
  92. package/src/models/patchteamop.ts +4 -0
  93. package/src/models/updateprojectdatacacheop.ts +0 -4
  94. package/src/models/updateprojectop.ts +0 -4
  95. package/src/models/uploadfileop.ts +0 -9
  96. package/src/models/userevent.ts +2219 -1917
  97. package/vercel-spec.json +613 -503
@@ -76,6 +76,11 @@ export const CreateIntegrationStoreDirectStatus = {
76
76
  Initializing: "initializing",
77
77
  Uninstalled: "uninstalled",
78
78
  };
79
+ export const CreateIntegrationStoreDirectOwnership = {
80
+ Owned: "owned",
81
+ Linked: "linked",
82
+ Sandbox: "sandbox",
83
+ };
79
84
  export const ExternalResourceStatus = {
80
85
  Error: "error",
81
86
  Suspended: "suspended",
@@ -264,8 +269,8 @@ export const Tags = {
264
269
  Redis: "redis",
265
270
  Postgres: "postgres",
266
271
  Blob: "blob",
267
- Checks: "checks",
268
272
  Experimentation: "experimentation",
273
+ Checks: "checks",
269
274
  Storage: "storage",
270
275
  Ai: "ai",
271
276
  Observability: "observability",
@@ -317,7 +322,6 @@ export const ProjectConnectionScopes = {
317
322
  ReadWriteLogDrain: "read-write:log-drain",
318
323
  ReadWriteProjectEnvVars: "read-write:project-env-vars",
319
324
  ReadWriteProjectProtectionBypass: "read-write:project-protection-bypass",
320
- ReadWriteTraceDrain: "read-write:trace-drain",
321
325
  };
322
326
  export const CreateIntegrationStoreDirectIntegrationsResponseType = {
323
327
  ConnectToProject: "connect_to_project",
@@ -628,6 +632,21 @@ export var CreateIntegrationStoreDirectStatus$;
628
632
  CreateIntegrationStoreDirectStatus$.outboundSchema = CreateIntegrationStoreDirectStatus$outboundSchema;
629
633
  })(CreateIntegrationStoreDirectStatus$ || (CreateIntegrationStoreDirectStatus$ = {}));
630
634
  /** @internal */
635
+ export const CreateIntegrationStoreDirectOwnership$inboundSchema = z.nativeEnum(CreateIntegrationStoreDirectOwnership);
636
+ /** @internal */
637
+ export const CreateIntegrationStoreDirectOwnership$outboundSchema = CreateIntegrationStoreDirectOwnership$inboundSchema;
638
+ /**
639
+ * @internal
640
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
641
+ */
642
+ export var CreateIntegrationStoreDirectOwnership$;
643
+ (function (CreateIntegrationStoreDirectOwnership$) {
644
+ /** @deprecated use `CreateIntegrationStoreDirectOwnership$inboundSchema` instead. */
645
+ CreateIntegrationStoreDirectOwnership$.inboundSchema = CreateIntegrationStoreDirectOwnership$inboundSchema;
646
+ /** @deprecated use `CreateIntegrationStoreDirectOwnership$outboundSchema` instead. */
647
+ CreateIntegrationStoreDirectOwnership$.outboundSchema = CreateIntegrationStoreDirectOwnership$outboundSchema;
648
+ })(CreateIntegrationStoreDirectOwnership$ || (CreateIntegrationStoreDirectOwnership$ = {}));
649
+ /** @internal */
631
650
  export const CreateIntegrationStoreDirectMetadata$inboundSchema = z.union([
632
651
  z.string(),
633
652
  z.number(),
@@ -692,42 +711,42 @@ export var CreateIntegrationStoreDirectIntegrationsType$;
692
711
  CreateIntegrationStoreDirectIntegrationsType$.outboundSchema = CreateIntegrationStoreDirectIntegrationsType$outboundSchema;
693
712
  })(CreateIntegrationStoreDirectIntegrationsType$ || (CreateIntegrationStoreDirectIntegrationsType$ = {}));
694
713
  /** @internal */
695
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838$inboundSchema = z.object({});
714
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820$inboundSchema = z.object({});
696
715
  /** @internal */
697
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838$outboundSchema = z.object({});
716
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820$outboundSchema = z.object({});
698
717
  /**
699
718
  * @internal
700
719
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
701
720
  */
702
- export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838$;
703
- (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838$) {
704
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838$inboundSchema` instead. */
705
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838$inboundSchema;
706
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838$outboundSchema` instead. */
707
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838$outboundSchema;
708
- })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838$ = {}));
709
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838) {
710
- return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838$outboundSchema
711
- .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838));
721
+ export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820$;
722
+ (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820$) {
723
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820$inboundSchema` instead. */
724
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820$inboundSchema;
725
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820$outboundSchema` instead. */
726
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820$outboundSchema;
727
+ })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820$ = {}));
728
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820) {
729
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820$outboundSchema
730
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820));
712
731
  }
713
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838FromJSON(jsonString) {
714
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838$inboundSchema
715
- .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838' from JSON`);
732
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820FromJSON(jsonString) {
733
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820$inboundSchema
734
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820' from JSON`);
716
735
  }
717
736
  /** @internal */
718
737
  export const CreateIntegrationStoreDirectPropertiesValue$inboundSchema = z.object({
719
- "__@BRAND@7838": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838$inboundSchema),
738
+ "__@BRAND@7820": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820$inboundSchema),
720
739
  }).transform((v) => {
721
740
  return remap$(v, {
722
- "__@BRAND@7838": "atBRANDAt7838",
741
+ "__@BRAND@7820": "atBRANDAt7820",
723
742
  });
724
743
  });
725
744
  /** @internal */
726
745
  export const CreateIntegrationStoreDirectPropertiesValue$outboundSchema = z.object({
727
- atBRANDAt7838: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838$outboundSchema),
746
+ atBRANDAt7820: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820$outboundSchema),
728
747
  }).transform((v) => {
729
748
  return remap$(v, {
730
- atBRANDAt7838: "__@BRAND@7838",
749
+ atBRANDAt7820: "__@BRAND@7820",
731
750
  });
732
751
  });
733
752
  /**
@@ -961,40 +980,40 @@ export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applicat
961
980
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl$outboundSchema;
962
981
  })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl$ = {}));
963
982
  /** @internal */
964
- export const CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838$inboundSchema = z.object({});
983
+ export const CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820$inboundSchema = z.object({});
965
984
  /** @internal */
966
- export const CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838$outboundSchema = z.object({});
985
+ export const CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820$outboundSchema = z.object({});
967
986
  /**
968
987
  * @internal
969
988
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
970
989
  */
971
- export var CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838$;
972
- (function (CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838$) {
973
- /** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838$inboundSchema` instead. */
974
- CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838$.inboundSchema = CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838$inboundSchema;
975
- /** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838$outboundSchema` instead. */
976
- CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838$.outboundSchema = CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838$outboundSchema;
977
- })(CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838$ || (CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838$ = {}));
978
- export function createIntegrationStoreDirectUiOptionsAtBRANDAt7838ToJSON(createIntegrationStoreDirectUiOptionsAtBRANDAt7838) {
979
- return JSON.stringify(CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838$outboundSchema.parse(createIntegrationStoreDirectUiOptionsAtBRANDAt7838));
990
+ export var CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820$;
991
+ (function (CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820$) {
992
+ /** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820$inboundSchema` instead. */
993
+ CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820$.inboundSchema = CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820$inboundSchema;
994
+ /** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820$outboundSchema` instead. */
995
+ CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820$.outboundSchema = CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820$outboundSchema;
996
+ })(CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820$ || (CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820$ = {}));
997
+ export function createIntegrationStoreDirectUiOptionsAtBRANDAt7820ToJSON(createIntegrationStoreDirectUiOptionsAtBRANDAt7820) {
998
+ return JSON.stringify(CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820$outboundSchema.parse(createIntegrationStoreDirectUiOptionsAtBRANDAt7820));
980
999
  }
981
- export function createIntegrationStoreDirectUiOptionsAtBRANDAt7838FromJSON(jsonString) {
982
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838' from JSON`);
1000
+ export function createIntegrationStoreDirectUiOptionsAtBRANDAt7820FromJSON(jsonString) {
1001
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820' from JSON`);
983
1002
  }
984
1003
  /** @internal */
985
1004
  export const CreateIntegrationStoreDirectUiOptionsValue$inboundSchema = z.object({
986
- "__@BRAND@7838": z.lazy(() => CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838$inboundSchema),
1005
+ "__@BRAND@7820": z.lazy(() => CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820$inboundSchema),
987
1006
  }).transform((v) => {
988
1007
  return remap$(v, {
989
- "__@BRAND@7838": "atBRANDAt7838",
1008
+ "__@BRAND@7820": "atBRANDAt7820",
990
1009
  });
991
1010
  });
992
1011
  /** @internal */
993
1012
  export const CreateIntegrationStoreDirectUiOptionsValue$outboundSchema = z.object({
994
- atBRANDAt7838: z.lazy(() => CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838$outboundSchema),
1013
+ atBRANDAt7820: z.lazy(() => CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820$outboundSchema),
995
1014
  }).transform((v) => {
996
1015
  return remap$(v, {
997
- atBRANDAt7838: "__@BRAND@7838",
1016
+ atBRANDAt7820: "__@BRAND@7820",
998
1017
  });
999
1018
  });
1000
1019
  /**
@@ -1206,40 +1225,40 @@ export function createIntegrationStoreDirectUiOptions3FromJSON(jsonString) {
1206
1225
  return safeParse(jsonString, (x) => CreateIntegrationStoreDirectUiOptions3$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectUiOptions3' from JSON`);
1207
1226
  }
1208
1227
  /** @internal */
1209
- export const UiOptionsAtBRANDAt7838$inboundSchema = z.object({});
1228
+ export const UiOptionsAtBRANDAt7820$inboundSchema = z.object({});
1210
1229
  /** @internal */
1211
- export const UiOptionsAtBRANDAt7838$outboundSchema = z.object({});
1230
+ export const UiOptionsAtBRANDAt7820$outboundSchema = z.object({});
1212
1231
  /**
1213
1232
  * @internal
1214
1233
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1215
1234
  */
1216
- export var UiOptionsAtBRANDAt7838$;
1217
- (function (UiOptionsAtBRANDAt7838$) {
1218
- /** @deprecated use `UiOptionsAtBRANDAt7838$inboundSchema` instead. */
1219
- UiOptionsAtBRANDAt7838$.inboundSchema = UiOptionsAtBRANDAt7838$inboundSchema;
1220
- /** @deprecated use `UiOptionsAtBRANDAt7838$outboundSchema` instead. */
1221
- UiOptionsAtBRANDAt7838$.outboundSchema = UiOptionsAtBRANDAt7838$outboundSchema;
1222
- })(UiOptionsAtBRANDAt7838$ || (UiOptionsAtBRANDAt7838$ = {}));
1223
- export function uiOptionsAtBRANDAt7838ToJSON(uiOptionsAtBRANDAt7838) {
1224
- return JSON.stringify(UiOptionsAtBRANDAt7838$outboundSchema.parse(uiOptionsAtBRANDAt7838));
1235
+ export var UiOptionsAtBRANDAt7820$;
1236
+ (function (UiOptionsAtBRANDAt7820$) {
1237
+ /** @deprecated use `UiOptionsAtBRANDAt7820$inboundSchema` instead. */
1238
+ UiOptionsAtBRANDAt7820$.inboundSchema = UiOptionsAtBRANDAt7820$inboundSchema;
1239
+ /** @deprecated use `UiOptionsAtBRANDAt7820$outboundSchema` instead. */
1240
+ UiOptionsAtBRANDAt7820$.outboundSchema = UiOptionsAtBRANDAt7820$outboundSchema;
1241
+ })(UiOptionsAtBRANDAt7820$ || (UiOptionsAtBRANDAt7820$ = {}));
1242
+ export function uiOptionsAtBRANDAt7820ToJSON(uiOptionsAtBRANDAt7820) {
1243
+ return JSON.stringify(UiOptionsAtBRANDAt7820$outboundSchema.parse(uiOptionsAtBRANDAt7820));
1225
1244
  }
1226
- export function uiOptionsAtBRANDAt7838FromJSON(jsonString) {
1227
- return safeParse(jsonString, (x) => UiOptionsAtBRANDAt7838$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UiOptionsAtBRANDAt7838' from JSON`);
1245
+ export function uiOptionsAtBRANDAt7820FromJSON(jsonString) {
1246
+ return safeParse(jsonString, (x) => UiOptionsAtBRANDAt7820$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UiOptionsAtBRANDAt7820' from JSON`);
1228
1247
  }
1229
1248
  /** @internal */
1230
1249
  export const CreateIntegrationStoreDirectUiOptions2$inboundSchema = z.object({
1231
- "__@BRAND@7838": z.lazy(() => UiOptionsAtBRANDAt7838$inboundSchema),
1250
+ "__@BRAND@7820": z.lazy(() => UiOptionsAtBRANDAt7820$inboundSchema),
1232
1251
  }).transform((v) => {
1233
1252
  return remap$(v, {
1234
- "__@BRAND@7838": "atBRANDAt7838",
1253
+ "__@BRAND@7820": "atBRANDAt7820",
1235
1254
  });
1236
1255
  });
1237
1256
  /** @internal */
1238
1257
  export const CreateIntegrationStoreDirectUiOptions2$outboundSchema = z.object({
1239
- atBRANDAt7838: z.lazy(() => UiOptionsAtBRANDAt7838$outboundSchema),
1258
+ atBRANDAt7820: z.lazy(() => UiOptionsAtBRANDAt7820$outboundSchema),
1240
1259
  }).transform((v) => {
1241
1260
  return remap$(v, {
1242
- atBRANDAt7838: "__@BRAND@7838",
1261
+ atBRANDAt7820: "__@BRAND@7820",
1243
1262
  });
1244
1263
  });
1245
1264
  /**
@@ -1480,42 +1499,42 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponseUiOpti
1480
1499
  .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiOptions' from JSON`);
1481
1500
  }
1482
1501
  /** @internal */
1483
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838$inboundSchema = z.object({});
1502
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820$inboundSchema = z.object({});
1484
1503
  /** @internal */
1485
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838$outboundSchema = z.object({});
1504
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820$outboundSchema = z.object({});
1486
1505
  /**
1487
1506
  * @internal
1488
1507
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1489
1508
  */
1490
- export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838$;
1491
- (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838$) {
1492
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838$inboundSchema` instead. */
1493
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838$inboundSchema;
1494
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838$outboundSchema` instead. */
1495
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838$outboundSchema;
1496
- })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838$ = {}));
1497
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838) {
1498
- return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838$outboundSchema
1499
- .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838));
1509
+ export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820$;
1510
+ (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820$) {
1511
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820$inboundSchema` instead. */
1512
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820$inboundSchema;
1513
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820$outboundSchema` instead. */
1514
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820$outboundSchema;
1515
+ })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820$ = {}));
1516
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820) {
1517
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820$outboundSchema
1518
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820));
1500
1519
  }
1501
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838FromJSON(jsonString) {
1502
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838$inboundSchema
1503
- .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838' from JSON`);
1520
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820FromJSON(jsonString) {
1521
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820$inboundSchema
1522
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820' from JSON`);
1504
1523
  }
1505
1524
  /** @internal */
1506
1525
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$inboundSchema = z.object({
1507
- "__@BRAND@7838": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838$inboundSchema),
1526
+ "__@BRAND@7820": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820$inboundSchema),
1508
1527
  }).transform((v) => {
1509
1528
  return remap$(v, {
1510
- "__@BRAND@7838": "atBRANDAt7838",
1529
+ "__@BRAND@7820": "atBRANDAt7820",
1511
1530
  });
1512
1531
  });
1513
1532
  /** @internal */
1514
1533
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$outboundSchema = z.object({
1515
- atBRANDAt7838: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838$outboundSchema),
1534
+ atBRANDAt7820: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820$outboundSchema),
1516
1535
  }).transform((v) => {
1517
1536
  return remap$(v, {
1518
- atBRANDAt7838: "__@BRAND@7838",
1537
+ atBRANDAt7820: "__@BRAND@7820",
1519
1538
  });
1520
1539
  });
1521
1540
  /**
@@ -1538,42 +1557,42 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponseMaxLen
1538
1557
  .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength' from JSON`);
1539
1558
  }
1540
1559
  /** @internal */
1541
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838$inboundSchema = z.object({});
1560
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820$inboundSchema = z.object({});
1542
1561
  /** @internal */
1543
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838$outboundSchema = z.object({});
1562
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820$outboundSchema = z.object({});
1544
1563
  /**
1545
1564
  * @internal
1546
1565
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1547
1566
  */
1548
- export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838$;
1549
- (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838$) {
1550
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838$inboundSchema` instead. */
1551
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838$inboundSchema;
1552
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838$outboundSchema` instead. */
1553
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838$outboundSchema;
1554
- })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838$ = {}));
1555
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838) {
1556
- return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838$outboundSchema
1557
- .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838));
1567
+ export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820$;
1568
+ (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820$) {
1569
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820$inboundSchema` instead. */
1570
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820$inboundSchema;
1571
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820$outboundSchema` instead. */
1572
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820$outboundSchema;
1573
+ })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820$ = {}));
1574
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820) {
1575
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820$outboundSchema
1576
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820));
1558
1577
  }
1559
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838FromJSON(jsonString) {
1560
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838$inboundSchema
1561
- .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838' from JSON`);
1578
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820FromJSON(jsonString) {
1579
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820$inboundSchema
1580
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820' from JSON`);
1562
1581
  }
1563
1582
  /** @internal */
1564
1583
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$inboundSchema = z.object({
1565
- "__@BRAND@7838": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838$inboundSchema),
1584
+ "__@BRAND@7820": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820$inboundSchema),
1566
1585
  }).transform((v) => {
1567
1586
  return remap$(v, {
1568
- "__@BRAND@7838": "atBRANDAt7838",
1587
+ "__@BRAND@7820": "atBRANDAt7820",
1569
1588
  });
1570
1589
  });
1571
1590
  /** @internal */
1572
1591
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$outboundSchema = z.object({
1573
- atBRANDAt7838: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838$outboundSchema),
1592
+ atBRANDAt7820: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820$outboundSchema),
1574
1593
  }).transform((v) => {
1575
1594
  return remap$(v, {
1576
- atBRANDAt7838: "__@BRAND@7838",
1595
+ atBRANDAt7820: "__@BRAND@7820",
1577
1596
  });
1578
1597
  });
1579
1598
  /**
@@ -1596,42 +1615,42 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponseMinLen
1596
1615
  .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength' from JSON`);
1597
1616
  }
1598
1617
  /** @internal */
1599
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838$inboundSchema = z.object({});
1618
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820$inboundSchema = z.object({});
1600
1619
  /** @internal */
1601
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838$outboundSchema = z.object({});
1620
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820$outboundSchema = z.object({});
1602
1621
  /**
1603
1622
  * @internal
1604
1623
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1605
1624
  */
1606
- export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838$;
1607
- (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838$) {
1608
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838$inboundSchema` instead. */
1609
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838$inboundSchema;
1610
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838$outboundSchema` instead. */
1611
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838$outboundSchema;
1612
- })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838$ = {}));
1613
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838) {
1614
- return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838$outboundSchema
1615
- .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838));
1625
+ export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820$;
1626
+ (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820$) {
1627
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820$inboundSchema` instead. */
1628
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820$inboundSchema;
1629
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820$outboundSchema` instead. */
1630
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820$outboundSchema;
1631
+ })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820$ = {}));
1632
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820) {
1633
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820$outboundSchema
1634
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820));
1616
1635
  }
1617
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838FromJSON(jsonString) {
1618
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838$inboundSchema
1619
- .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838' from JSON`);
1636
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820FromJSON(jsonString) {
1637
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820$inboundSchema
1638
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820' from JSON`);
1620
1639
  }
1621
1640
  /** @internal */
1622
1641
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$inboundSchema = z.object({
1623
- "__@BRAND@7838": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838$inboundSchema),
1642
+ "__@BRAND@7820": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820$inboundSchema),
1624
1643
  }).transform((v) => {
1625
1644
  return remap$(v, {
1626
- "__@BRAND@7838": "atBRANDAt7838",
1645
+ "__@BRAND@7820": "atBRANDAt7820",
1627
1646
  });
1628
1647
  });
1629
1648
  /** @internal */
1630
1649
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$outboundSchema = z.object({
1631
- atBRANDAt7838: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838$outboundSchema),
1650
+ atBRANDAt7820: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820$outboundSchema),
1632
1651
  }).transform((v) => {
1633
1652
  return remap$(v, {
1634
- atBRANDAt7838: "__@BRAND@7838",
1653
+ atBRANDAt7820: "__@BRAND@7820",
1635
1654
  });
1636
1655
  });
1637
1656
  /**
@@ -2103,42 +2122,42 @@ export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applicat
2103
2122
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType$outboundSchema;
2104
2123
  })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType$ = {}));
2105
2124
  /** @internal */
2106
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838$inboundSchema = z.object({});
2125
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820$inboundSchema = z.object({});
2107
2126
  /** @internal */
2108
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838$outboundSchema = z.object({});
2127
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820$outboundSchema = z.object({});
2109
2128
  /**
2110
2129
  * @internal
2111
2130
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2112
2131
  */
2113
- export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838$;
2114
- (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838$) {
2115
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838$inboundSchema` instead. */
2116
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838$inboundSchema;
2117
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838$outboundSchema` instead. */
2118
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838$outboundSchema;
2119
- })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838$ = {}));
2120
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838) {
2121
- return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838$outboundSchema
2122
- .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838));
2132
+ export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820$;
2133
+ (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820$) {
2134
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820$inboundSchema` instead. */
2135
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820$inboundSchema;
2136
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820$outboundSchema` instead. */
2137
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820$outboundSchema;
2138
+ })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820$ = {}));
2139
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820) {
2140
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820$outboundSchema
2141
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820));
2123
2142
  }
2124
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838FromJSON(jsonString) {
2125
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838$inboundSchema
2126
- .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838' from JSON`);
2143
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820FromJSON(jsonString) {
2144
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820$inboundSchema
2145
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820' from JSON`);
2127
2146
  }
2128
2147
  /** @internal */
2129
2148
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$inboundSchema = z.object({
2130
- "__@BRAND@7838": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838$inboundSchema),
2149
+ "__@BRAND@7820": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820$inboundSchema),
2131
2150
  }).transform((v) => {
2132
2151
  return remap$(v, {
2133
- "__@BRAND@7838": "atBRANDAt7838",
2152
+ "__@BRAND@7820": "atBRANDAt7820",
2134
2153
  });
2135
2154
  });
2136
2155
  /** @internal */
2137
2156
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$outboundSchema = z.object({
2138
- atBRANDAt7838: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838$outboundSchema),
2157
+ atBRANDAt7820: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820$outboundSchema),
2139
2158
  }).transform((v) => {
2140
2159
  return remap$(v, {
2141
- atBRANDAt7838: "__@BRAND@7838",
2160
+ atBRANDAt7820: "__@BRAND@7820",
2142
2161
  });
2143
2162
  });
2144
2163
  /**
@@ -2161,42 +2180,42 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200Min
2161
2180
  .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength' from JSON`);
2162
2181
  }
2163
2182
  /** @internal */
2164
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838$inboundSchema = z.object({});
2183
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820$inboundSchema = z.object({});
2165
2184
  /** @internal */
2166
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838$outboundSchema = z.object({});
2185
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820$outboundSchema = z.object({});
2167
2186
  /**
2168
2187
  * @internal
2169
2188
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2170
2189
  */
2171
- export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838$;
2172
- (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838$) {
2173
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838$inboundSchema` instead. */
2174
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838$inboundSchema;
2175
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838$outboundSchema` instead. */
2176
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838$outboundSchema;
2177
- })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838$ = {}));
2178
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838) {
2179
- return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838$outboundSchema
2180
- .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838));
2190
+ export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820$;
2191
+ (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820$) {
2192
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820$inboundSchema` instead. */
2193
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820$inboundSchema;
2194
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820$outboundSchema` instead. */
2195
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820$outboundSchema;
2196
+ })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820$ = {}));
2197
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820) {
2198
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820$outboundSchema
2199
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820));
2181
2200
  }
2182
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838FromJSON(jsonString) {
2183
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838$inboundSchema
2184
- .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838' from JSON`);
2201
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820FromJSON(jsonString) {
2202
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820$inboundSchema
2203
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820' from JSON`);
2185
2204
  }
2186
2205
  /** @internal */
2187
2206
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$inboundSchema = z.object({
2188
- "__@BRAND@7838": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838$inboundSchema),
2207
+ "__@BRAND@7820": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820$inboundSchema),
2189
2208
  }).transform((v) => {
2190
2209
  return remap$(v, {
2191
- "__@BRAND@7838": "atBRANDAt7838",
2210
+ "__@BRAND@7820": "atBRANDAt7820",
2192
2211
  });
2193
2212
  });
2194
2213
  /** @internal */
2195
2214
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$outboundSchema = z.object({
2196
- atBRANDAt7838: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838$outboundSchema),
2215
+ atBRANDAt7820: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820$outboundSchema),
2197
2216
  }).transform((v) => {
2198
2217
  return remap$(v, {
2199
- atBRANDAt7838: "__@BRAND@7838",
2218
+ atBRANDAt7820: "__@BRAND@7820",
2200
2219
  });
2201
2220
  });
2202
2221
  /**
@@ -2219,42 +2238,42 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200Max
2219
2238
  .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength' from JSON`);
2220
2239
  }
2221
2240
  /** @internal */
2222
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838$inboundSchema = z.object({});
2241
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820$inboundSchema = z.object({});
2223
2242
  /** @internal */
2224
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838$outboundSchema = z.object({});
2243
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820$outboundSchema = z.object({});
2225
2244
  /**
2226
2245
  * @internal
2227
2246
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2228
2247
  */
2229
- export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838$;
2230
- (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838$) {
2231
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838$inboundSchema` instead. */
2232
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838$inboundSchema;
2233
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838$outboundSchema` instead. */
2234
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838$outboundSchema;
2235
- })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838$ = {}));
2236
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838) {
2237
- return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838$outboundSchema
2238
- .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838));
2248
+ export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820$;
2249
+ (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820$) {
2250
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820$inboundSchema` instead. */
2251
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820$inboundSchema;
2252
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820$outboundSchema` instead. */
2253
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820$outboundSchema;
2254
+ })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820$ = {}));
2255
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820) {
2256
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820$outboundSchema
2257
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820));
2239
2258
  }
2240
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838FromJSON(jsonString) {
2241
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838$inboundSchema
2242
- .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838' from JSON`);
2259
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820FromJSON(jsonString) {
2260
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820$inboundSchema
2261
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820' from JSON`);
2243
2262
  }
2244
2263
  /** @internal */
2245
2264
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$inboundSchema = z.object({
2246
- "__@BRAND@7838": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838$inboundSchema),
2265
+ "__@BRAND@7820": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820$inboundSchema),
2247
2266
  }).transform((v) => {
2248
2267
  return remap$(v, {
2249
- "__@BRAND@7838": "atBRANDAt7838",
2268
+ "__@BRAND@7820": "atBRANDAt7820",
2250
2269
  });
2251
2270
  });
2252
2271
  /** @internal */
2253
2272
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$outboundSchema = z.object({
2254
- atBRANDAt7838: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838$outboundSchema),
2273
+ atBRANDAt7820: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820$outboundSchema),
2255
2274
  }).transform((v) => {
2256
2275
  return remap$(v, {
2257
- atBRANDAt7838: "__@BRAND@7838",
2276
+ atBRANDAt7820: "__@BRAND@7820",
2258
2277
  });
2259
2278
  });
2260
2279
  /**
@@ -3158,42 +3177,42 @@ export function createIntegrationStoreDirectPropertiesUiOptionsFromJSON(jsonStri
3158
3177
  return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesUiOptions$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesUiOptions' from JSON`);
3159
3178
  }
3160
3179
  /** @internal */
3161
- export const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838$inboundSchema = z.object({});
3180
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820$inboundSchema = z.object({});
3162
3181
  /** @internal */
3163
- export const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838$outboundSchema = z.object({});
3182
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820$outboundSchema = z.object({});
3164
3183
  /**
3165
3184
  * @internal
3166
3185
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3167
3186
  */
3168
- export var CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838$;
3169
- (function (CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838$) {
3170
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838$inboundSchema` instead. */
3171
- CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838$inboundSchema;
3172
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838$outboundSchema` instead. */
3173
- CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838$outboundSchema;
3174
- })(CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838$ || (CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838$ = {}));
3175
- export function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838ToJSON(createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838) {
3176
- return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838$outboundSchema
3177
- .parse(createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838));
3187
+ export var CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820$;
3188
+ (function (CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820$) {
3189
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820$inboundSchema` instead. */
3190
+ CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820$inboundSchema;
3191
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820$outboundSchema` instead. */
3192
+ CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820$outboundSchema;
3193
+ })(CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820$ || (CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820$ = {}));
3194
+ export function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820ToJSON(createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820) {
3195
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820$outboundSchema
3196
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820));
3178
3197
  }
3179
- export function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838FromJSON(jsonString) {
3180
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838$inboundSchema
3181
- .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838' from JSON`);
3198
+ export function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820FromJSON(jsonString) {
3199
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820$inboundSchema
3200
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820' from JSON`);
3182
3201
  }
3183
3202
  /** @internal */
3184
3203
  export const CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$inboundSchema = z.object({
3185
- "__@BRAND@7838": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838$inboundSchema),
3204
+ "__@BRAND@7820": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820$inboundSchema),
3186
3205
  }).transform((v) => {
3187
3206
  return remap$(v, {
3188
- "__@BRAND@7838": "atBRANDAt7838",
3207
+ "__@BRAND@7820": "atBRANDAt7820",
3189
3208
  });
3190
3209
  });
3191
3210
  /** @internal */
3192
3211
  export const CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$outboundSchema = z.object({
3193
- atBRANDAt7838: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838$outboundSchema),
3212
+ atBRANDAt7820: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820$outboundSchema),
3194
3213
  }).transform((v) => {
3195
3214
  return remap$(v, {
3196
- atBRANDAt7838: "__@BRAND@7838",
3215
+ atBRANDAt7820: "__@BRAND@7820",
3197
3216
  });
3198
3217
  });
3199
3218
  /**
@@ -3216,42 +3235,42 @@ export function createIntegrationStoreDirectPropertiesIntegrationsMaxLengthFromJ
3216
3235
  .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength' from JSON`);
3217
3236
  }
3218
3237
  /** @internal */
3219
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838$inboundSchema = z.object({});
3238
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820$inboundSchema = z.object({});
3220
3239
  /** @internal */
3221
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838$outboundSchema = z.object({});
3240
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820$outboundSchema = z.object({});
3222
3241
  /**
3223
3242
  * @internal
3224
3243
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3225
3244
  */
3226
- export var CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838$;
3227
- (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838$) {
3228
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838$inboundSchema` instead. */
3229
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838$inboundSchema;
3230
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838$outboundSchema` instead. */
3231
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838$outboundSchema;
3232
- })(CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838$ = {}));
3233
- export function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838) {
3234
- return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838$outboundSchema
3235
- .parse(createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838));
3245
+ export var CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820$;
3246
+ (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820$) {
3247
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820$inboundSchema` instead. */
3248
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820$inboundSchema;
3249
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820$outboundSchema` instead. */
3250
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820$outboundSchema;
3251
+ })(CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820$ = {}));
3252
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820) {
3253
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820$outboundSchema
3254
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820));
3236
3255
  }
3237
- export function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838FromJSON(jsonString) {
3238
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838$inboundSchema
3239
- .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838' from JSON`);
3256
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820FromJSON(jsonString) {
3257
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820$inboundSchema
3258
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820' from JSON`);
3240
3259
  }
3241
3260
  /** @internal */
3242
3261
  export const CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$inboundSchema = z.object({
3243
- "__@BRAND@7838": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838$inboundSchema),
3262
+ "__@BRAND@7820": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820$inboundSchema),
3244
3263
  }).transform((v) => {
3245
3264
  return remap$(v, {
3246
- "__@BRAND@7838": "atBRANDAt7838",
3265
+ "__@BRAND@7820": "atBRANDAt7820",
3247
3266
  });
3248
3267
  });
3249
3268
  /** @internal */
3250
3269
  export const CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$outboundSchema = z.object({
3251
- atBRANDAt7838: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838$outboundSchema),
3270
+ atBRANDAt7820: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820$outboundSchema),
3252
3271
  }).transform((v) => {
3253
3272
  return remap$(v, {
3254
- atBRANDAt7838: "__@BRAND@7838",
3273
+ atBRANDAt7820: "__@BRAND@7820",
3255
3274
  });
3256
3275
  });
3257
3276
  /**
@@ -3274,42 +3293,42 @@ export function createIntegrationStoreDirectPropertiesIntegrationsMinLengthFromJ
3274
3293
  .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsMinLength' from JSON`);
3275
3294
  }
3276
3295
  /** @internal */
3277
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838$inboundSchema = z.object({});
3296
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820$inboundSchema = z.object({});
3278
3297
  /** @internal */
3279
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838$outboundSchema = z.object({});
3298
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820$outboundSchema = z.object({});
3280
3299
  /**
3281
3300
  * @internal
3282
3301
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3283
3302
  */
3284
- export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838$;
3285
- (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838$) {
3286
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838$inboundSchema` instead. */
3287
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838$inboundSchema;
3288
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838$outboundSchema` instead. */
3289
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838$outboundSchema;
3290
- })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838$ = {}));
3291
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838) {
3292
- return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838$outboundSchema
3293
- .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838));
3303
+ export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820$;
3304
+ (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820$) {
3305
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820$inboundSchema` instead. */
3306
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820$inboundSchema;
3307
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820$outboundSchema` instead. */
3308
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820$outboundSchema;
3309
+ })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820$ = {}));
3310
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820) {
3311
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820$outboundSchema
3312
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820));
3294
3313
  }
3295
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838FromJSON(jsonString) {
3296
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838$inboundSchema
3297
- .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838' from JSON`);
3314
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820FromJSON(jsonString) {
3315
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820$inboundSchema
3316
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820' from JSON`);
3298
3317
  }
3299
3318
  /** @internal */
3300
3319
  export const CreateIntegrationStoreDirectPropertiesIntegrationsPattern$inboundSchema = z.object({
3301
- "__@BRAND@7838": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838$inboundSchema),
3320
+ "__@BRAND@7820": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820$inboundSchema),
3302
3321
  }).transform((v) => {
3303
3322
  return remap$(v, {
3304
- "__@BRAND@7838": "atBRANDAt7838",
3323
+ "__@BRAND@7820": "atBRANDAt7820",
3305
3324
  });
3306
3325
  });
3307
3326
  /** @internal */
3308
3327
  export const CreateIntegrationStoreDirectPropertiesIntegrationsPattern$outboundSchema = z.object({
3309
- atBRANDAt7838: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838$outboundSchema),
3328
+ atBRANDAt7820: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820$outboundSchema),
3310
3329
  }).transform((v) => {
3311
3330
  return remap$(v, {
3312
- atBRANDAt7838: "__@BRAND@7838",
3331
+ atBRANDAt7820: "__@BRAND@7820",
3313
3332
  });
3314
3333
  });
3315
3334
  /**
@@ -5118,42 +5137,42 @@ export var CreateIntegrationStoreDirectPropertiesUiControl$;
5118
5137
  CreateIntegrationStoreDirectPropertiesUiControl$.outboundSchema = CreateIntegrationStoreDirectPropertiesUiControl$outboundSchema;
5119
5138
  })(CreateIntegrationStoreDirectPropertiesUiControl$ || (CreateIntegrationStoreDirectPropertiesUiControl$ = {}));
5120
5139
  /** @internal */
5121
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838$inboundSchema = z.object({});
5140
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820$inboundSchema = z.object({});
5122
5141
  /** @internal */
5123
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838$outboundSchema = z.object({});
5142
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820$outboundSchema = z.object({});
5124
5143
  /**
5125
5144
  * @internal
5126
5145
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5127
5146
  */
5128
- export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838$;
5129
- (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838$) {
5130
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838$inboundSchema` instead. */
5131
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838$inboundSchema;
5132
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838$outboundSchema` instead. */
5133
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838$outboundSchema;
5134
- })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838$ = {}));
5135
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838) {
5136
- return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838$outboundSchema
5137
- .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838));
5147
+ export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820$;
5148
+ (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820$) {
5149
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820$inboundSchema` instead. */
5150
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820$inboundSchema;
5151
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820$outboundSchema` instead. */
5152
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820$outboundSchema;
5153
+ })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820$ = {}));
5154
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820) {
5155
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820$outboundSchema
5156
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820));
5138
5157
  }
5139
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838FromJSON(jsonString) {
5140
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838$inboundSchema
5141
- .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838' from JSON`);
5158
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820FromJSON(jsonString) {
5159
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820$inboundSchema
5160
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820' from JSON`);
5142
5161
  }
5143
5162
  /** @internal */
5144
5163
  export const CreateIntegrationStoreDirectPropertiesMaxLength$inboundSchema = z.object({
5145
- "__@BRAND@7838": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838$inboundSchema),
5164
+ "__@BRAND@7820": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820$inboundSchema),
5146
5165
  }).transform((v) => {
5147
5166
  return remap$(v, {
5148
- "__@BRAND@7838": "atBRANDAt7838",
5167
+ "__@BRAND@7820": "atBRANDAt7820",
5149
5168
  });
5150
5169
  });
5151
5170
  /** @internal */
5152
5171
  export const CreateIntegrationStoreDirectPropertiesMaxLength$outboundSchema = z.object({
5153
- atBRANDAt7838: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838$outboundSchema),
5172
+ atBRANDAt7820: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820$outboundSchema),
5154
5173
  }).transform((v) => {
5155
5174
  return remap$(v, {
5156
- atBRANDAt7838: "__@BRAND@7838",
5175
+ atBRANDAt7820: "__@BRAND@7820",
5157
5176
  });
5158
5177
  });
5159
5178
  /**
@@ -5174,40 +5193,40 @@ export function createIntegrationStoreDirectPropertiesMaxLengthFromJSON(jsonStri
5174
5193
  return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesMaxLength$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesMaxLength' from JSON`);
5175
5194
  }
5176
5195
  /** @internal */
5177
- export const PropertiesAtBRANDAt7838$inboundSchema = z.object({});
5196
+ export const PropertiesAtBRANDAt7820$inboundSchema = z.object({});
5178
5197
  /** @internal */
5179
- export const PropertiesAtBRANDAt7838$outboundSchema = z.object({});
5198
+ export const PropertiesAtBRANDAt7820$outboundSchema = z.object({});
5180
5199
  /**
5181
5200
  * @internal
5182
5201
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5183
5202
  */
5184
- export var PropertiesAtBRANDAt7838$;
5185
- (function (PropertiesAtBRANDAt7838$) {
5186
- /** @deprecated use `PropertiesAtBRANDAt7838$inboundSchema` instead. */
5187
- PropertiesAtBRANDAt7838$.inboundSchema = PropertiesAtBRANDAt7838$inboundSchema;
5188
- /** @deprecated use `PropertiesAtBRANDAt7838$outboundSchema` instead. */
5189
- PropertiesAtBRANDAt7838$.outboundSchema = PropertiesAtBRANDAt7838$outboundSchema;
5190
- })(PropertiesAtBRANDAt7838$ || (PropertiesAtBRANDAt7838$ = {}));
5191
- export function propertiesAtBRANDAt7838ToJSON(propertiesAtBRANDAt7838) {
5192
- return JSON.stringify(PropertiesAtBRANDAt7838$outboundSchema.parse(propertiesAtBRANDAt7838));
5203
+ export var PropertiesAtBRANDAt7820$;
5204
+ (function (PropertiesAtBRANDAt7820$) {
5205
+ /** @deprecated use `PropertiesAtBRANDAt7820$inboundSchema` instead. */
5206
+ PropertiesAtBRANDAt7820$.inboundSchema = PropertiesAtBRANDAt7820$inboundSchema;
5207
+ /** @deprecated use `PropertiesAtBRANDAt7820$outboundSchema` instead. */
5208
+ PropertiesAtBRANDAt7820$.outboundSchema = PropertiesAtBRANDAt7820$outboundSchema;
5209
+ })(PropertiesAtBRANDAt7820$ || (PropertiesAtBRANDAt7820$ = {}));
5210
+ export function propertiesAtBRANDAt7820ToJSON(propertiesAtBRANDAt7820) {
5211
+ return JSON.stringify(PropertiesAtBRANDAt7820$outboundSchema.parse(propertiesAtBRANDAt7820));
5193
5212
  }
5194
- export function propertiesAtBRANDAt7838FromJSON(jsonString) {
5195
- return safeParse(jsonString, (x) => PropertiesAtBRANDAt7838$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PropertiesAtBRANDAt7838' from JSON`);
5213
+ export function propertiesAtBRANDAt7820FromJSON(jsonString) {
5214
+ return safeParse(jsonString, (x) => PropertiesAtBRANDAt7820$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PropertiesAtBRANDAt7820' from JSON`);
5196
5215
  }
5197
5216
  /** @internal */
5198
5217
  export const CreateIntegrationStoreDirectPropertiesMinLength$inboundSchema = z.object({
5199
- "__@BRAND@7838": z.lazy(() => PropertiesAtBRANDAt7838$inboundSchema),
5218
+ "__@BRAND@7820": z.lazy(() => PropertiesAtBRANDAt7820$inboundSchema),
5200
5219
  }).transform((v) => {
5201
5220
  return remap$(v, {
5202
- "__@BRAND@7838": "atBRANDAt7838",
5221
+ "__@BRAND@7820": "atBRANDAt7820",
5203
5222
  });
5204
5223
  });
5205
5224
  /** @internal */
5206
5225
  export const CreateIntegrationStoreDirectPropertiesMinLength$outboundSchema = z.object({
5207
- atBRANDAt7838: z.lazy(() => PropertiesAtBRANDAt7838$outboundSchema),
5226
+ atBRANDAt7820: z.lazy(() => PropertiesAtBRANDAt7820$outboundSchema),
5208
5227
  }).transform((v) => {
5209
5228
  return remap$(v, {
5210
- atBRANDAt7838: "__@BRAND@7838",
5229
+ atBRANDAt7820: "__@BRAND@7820",
5211
5230
  });
5212
5231
  });
5213
5232
  /**
@@ -5228,40 +5247,40 @@ export function createIntegrationStoreDirectPropertiesMinLengthFromJSON(jsonStri
5228
5247
  return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesMinLength$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesMinLength' from JSON`);
5229
5248
  }
5230
5249
  /** @internal */
5231
- export const CreateIntegrationStoreDirectPropertiesAtBRANDAt7838$inboundSchema = z.object({});
5250
+ export const CreateIntegrationStoreDirectPropertiesAtBRANDAt7820$inboundSchema = z.object({});
5232
5251
  /** @internal */
5233
- export const CreateIntegrationStoreDirectPropertiesAtBRANDAt7838$outboundSchema = z.object({});
5252
+ export const CreateIntegrationStoreDirectPropertiesAtBRANDAt7820$outboundSchema = z.object({});
5234
5253
  /**
5235
5254
  * @internal
5236
5255
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5237
5256
  */
5238
- export var CreateIntegrationStoreDirectPropertiesAtBRANDAt7838$;
5239
- (function (CreateIntegrationStoreDirectPropertiesAtBRANDAt7838$) {
5240
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt7838$inboundSchema` instead. */
5241
- CreateIntegrationStoreDirectPropertiesAtBRANDAt7838$.inboundSchema = CreateIntegrationStoreDirectPropertiesAtBRANDAt7838$inboundSchema;
5242
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt7838$outboundSchema` instead. */
5243
- CreateIntegrationStoreDirectPropertiesAtBRANDAt7838$.outboundSchema = CreateIntegrationStoreDirectPropertiesAtBRANDAt7838$outboundSchema;
5244
- })(CreateIntegrationStoreDirectPropertiesAtBRANDAt7838$ || (CreateIntegrationStoreDirectPropertiesAtBRANDAt7838$ = {}));
5245
- export function createIntegrationStoreDirectPropertiesAtBRANDAt7838ToJSON(createIntegrationStoreDirectPropertiesAtBRANDAt7838) {
5246
- return JSON.stringify(CreateIntegrationStoreDirectPropertiesAtBRANDAt7838$outboundSchema.parse(createIntegrationStoreDirectPropertiesAtBRANDAt7838));
5257
+ export var CreateIntegrationStoreDirectPropertiesAtBRANDAt7820$;
5258
+ (function (CreateIntegrationStoreDirectPropertiesAtBRANDAt7820$) {
5259
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt7820$inboundSchema` instead. */
5260
+ CreateIntegrationStoreDirectPropertiesAtBRANDAt7820$.inboundSchema = CreateIntegrationStoreDirectPropertiesAtBRANDAt7820$inboundSchema;
5261
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt7820$outboundSchema` instead. */
5262
+ CreateIntegrationStoreDirectPropertiesAtBRANDAt7820$.outboundSchema = CreateIntegrationStoreDirectPropertiesAtBRANDAt7820$outboundSchema;
5263
+ })(CreateIntegrationStoreDirectPropertiesAtBRANDAt7820$ || (CreateIntegrationStoreDirectPropertiesAtBRANDAt7820$ = {}));
5264
+ export function createIntegrationStoreDirectPropertiesAtBRANDAt7820ToJSON(createIntegrationStoreDirectPropertiesAtBRANDAt7820) {
5265
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesAtBRANDAt7820$outboundSchema.parse(createIntegrationStoreDirectPropertiesAtBRANDAt7820));
5247
5266
  }
5248
- export function createIntegrationStoreDirectPropertiesAtBRANDAt7838FromJSON(jsonString) {
5249
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesAtBRANDAt7838$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesAtBRANDAt7838' from JSON`);
5267
+ export function createIntegrationStoreDirectPropertiesAtBRANDAt7820FromJSON(jsonString) {
5268
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesAtBRANDAt7820$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesAtBRANDAt7820' from JSON`);
5250
5269
  }
5251
5270
  /** @internal */
5252
5271
  export const CreateIntegrationStoreDirectPropertiesPattern$inboundSchema = z.object({
5253
- "__@BRAND@7838": z.lazy(() => CreateIntegrationStoreDirectPropertiesAtBRANDAt7838$inboundSchema),
5272
+ "__@BRAND@7820": z.lazy(() => CreateIntegrationStoreDirectPropertiesAtBRANDAt7820$inboundSchema),
5254
5273
  }).transform((v) => {
5255
5274
  return remap$(v, {
5256
- "__@BRAND@7838": "atBRANDAt7838",
5275
+ "__@BRAND@7820": "atBRANDAt7820",
5257
5276
  });
5258
5277
  });
5259
5278
  /** @internal */
5260
5279
  export const CreateIntegrationStoreDirectPropertiesPattern$outboundSchema = z.object({
5261
- atBRANDAt7838: z.lazy(() => CreateIntegrationStoreDirectPropertiesAtBRANDAt7838$outboundSchema),
5280
+ atBRANDAt7820: z.lazy(() => CreateIntegrationStoreDirectPropertiesAtBRANDAt7820$outboundSchema),
5262
5281
  }).transform((v) => {
5263
5282
  return remap$(v, {
5264
- atBRANDAt7838: "__@BRAND@7838",
5283
+ atBRANDAt7820: "__@BRAND@7820",
5265
5284
  });
5266
5285
  });
5267
5286
  /**
@@ -5947,40 +5966,40 @@ export function guidesFromJSON(jsonString) {
5947
5966
  return safeParse(jsonString, (x) => Guides$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Guides' from JSON`);
5948
5967
  }
5949
5968
  /** @internal */
5950
- export const AtBRANDAt7838$inboundSchema = z.object({});
5969
+ export const AtBRANDAt7820$inboundSchema = z.object({});
5951
5970
  /** @internal */
5952
- export const AtBRANDAt7838$outboundSchema = z.object({});
5971
+ export const AtBRANDAt7820$outboundSchema = z.object({});
5953
5972
  /**
5954
5973
  * @internal
5955
5974
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5956
5975
  */
5957
- export var AtBRANDAt7838$;
5958
- (function (AtBRANDAt7838$) {
5959
- /** @deprecated use `AtBRANDAt7838$inboundSchema` instead. */
5960
- AtBRANDAt7838$.inboundSchema = AtBRANDAt7838$inboundSchema;
5961
- /** @deprecated use `AtBRANDAt7838$outboundSchema` instead. */
5962
- AtBRANDAt7838$.outboundSchema = AtBRANDAt7838$outboundSchema;
5963
- })(AtBRANDAt7838$ || (AtBRANDAt7838$ = {}));
5964
- export function atBRANDAt7838ToJSON(atBRANDAt7838) {
5965
- return JSON.stringify(AtBRANDAt7838$outboundSchema.parse(atBRANDAt7838));
5976
+ export var AtBRANDAt7820$;
5977
+ (function (AtBRANDAt7820$) {
5978
+ /** @deprecated use `AtBRANDAt7820$inboundSchema` instead. */
5979
+ AtBRANDAt7820$.inboundSchema = AtBRANDAt7820$inboundSchema;
5980
+ /** @deprecated use `AtBRANDAt7820$outboundSchema` instead. */
5981
+ AtBRANDAt7820$.outboundSchema = AtBRANDAt7820$outboundSchema;
5982
+ })(AtBRANDAt7820$ || (AtBRANDAt7820$ = {}));
5983
+ export function atBRANDAt7820ToJSON(atBRANDAt7820) {
5984
+ return JSON.stringify(AtBRANDAt7820$outboundSchema.parse(atBRANDAt7820));
5966
5985
  }
5967
- export function atBRANDAt7838FromJSON(jsonString) {
5968
- return safeParse(jsonString, (x) => AtBRANDAt7838$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'AtBRANDAt7838' from JSON`);
5986
+ export function atBRANDAt7820FromJSON(jsonString) {
5987
+ return safeParse(jsonString, (x) => AtBRANDAt7820$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'AtBRANDAt7820' from JSON`);
5969
5988
  }
5970
5989
  /** @internal */
5971
5990
  export const CreateIntegrationStoreDirectValue$inboundSchema = z.object({
5972
- "__@BRAND@7838": z.lazy(() => AtBRANDAt7838$inboundSchema),
5991
+ "__@BRAND@7820": z.lazy(() => AtBRANDAt7820$inboundSchema),
5973
5992
  }).transform((v) => {
5974
5993
  return remap$(v, {
5975
- "__@BRAND@7838": "atBRANDAt7838",
5994
+ "__@BRAND@7820": "atBRANDAt7820",
5976
5995
  });
5977
5996
  });
5978
5997
  /** @internal */
5979
5998
  export const CreateIntegrationStoreDirectValue$outboundSchema = z.object({
5980
- atBRANDAt7838: z.lazy(() => AtBRANDAt7838$outboundSchema),
5999
+ atBRANDAt7820: z.lazy(() => AtBRANDAt7820$outboundSchema),
5981
6000
  }).transform((v) => {
5982
6001
  return remap$(v, {
5983
- atBRANDAt7838: "__@BRAND@7838",
6002
+ atBRANDAt7820: "__@BRAND@7820",
5984
6003
  });
5985
6004
  });
5986
6005
  /**
@@ -6518,6 +6537,7 @@ export const CreateIntegrationStoreDirectStore$inboundSchema = z.object({
6518
6537
  totalConnectedProjects: z.number().optional(),
6519
6538
  usageQuotaExceeded: z.boolean(),
6520
6539
  status: z.nullable(CreateIntegrationStoreDirectStatus$inboundSchema),
6540
+ ownership: CreateIntegrationStoreDirectOwnership$inboundSchema.optional(),
6521
6541
  metadata: z.record(z.union([
6522
6542
  z.string(),
6523
6543
  z.number(),
@@ -6540,6 +6560,7 @@ export const CreateIntegrationStoreDirectStore$outboundSchema = z.object({
6540
6560
  totalConnectedProjects: z.number().optional(),
6541
6561
  usageQuotaExceeded: z.boolean(),
6542
6562
  status: z.nullable(CreateIntegrationStoreDirectStatus$outboundSchema),
6563
+ ownership: CreateIntegrationStoreDirectOwnership$outboundSchema.optional(),
6543
6564
  metadata: z.record(z.union([
6544
6565
  z.string(),
6545
6566
  z.number(),