@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
@@ -155,6 +155,12 @@ export declare const CreateIntegrationStoreDirectStatus: {
155
155
  readonly Uninstalled: "uninstalled";
156
156
  };
157
157
  export type CreateIntegrationStoreDirectStatus = ClosedEnum<typeof CreateIntegrationStoreDirectStatus>;
158
+ export declare const CreateIntegrationStoreDirectOwnership: {
159
+ readonly Owned: "owned";
160
+ readonly Linked: "linked";
161
+ readonly Sandbox: "sandbox";
162
+ };
163
+ export type CreateIntegrationStoreDirectOwnership = ClosedEnum<typeof CreateIntegrationStoreDirectOwnership>;
158
164
  export type CreateIntegrationStoreDirectMetadata = string | number | boolean | Array<string> | Array<number>;
159
165
  export declare const ExternalResourceStatus: {
160
166
  readonly Error: "error";
@@ -169,9 +175,9 @@ export declare const CreateIntegrationStoreDirectIntegrationsType: {
169
175
  readonly Object: "object";
170
176
  };
171
177
  export type CreateIntegrationStoreDirectIntegrationsType = ClosedEnum<typeof CreateIntegrationStoreDirectIntegrationsType>;
172
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838 = {};
178
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820 = {};
173
179
  export type CreateIntegrationStoreDirectPropertiesValue = {
174
- atBRANDAt7838: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838;
180
+ atBRANDAt7820: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820;
175
181
  };
176
182
  export declare const CreateIntegrationStoreDirectDisabled3: {
177
183
  readonly Update: "update";
@@ -204,9 +210,9 @@ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse2
204
210
  readonly VercelRegion: "vercel-region";
205
211
  };
206
212
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl>;
207
- export type CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838 = {};
213
+ export type CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820 = {};
208
214
  export type CreateIntegrationStoreDirectUiOptionsValue = {
209
- atBRANDAt7838: CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838;
215
+ atBRANDAt7820: CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820;
210
216
  };
211
217
  export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse2003: {
212
218
  readonly Update: "update";
@@ -231,9 +237,9 @@ export type CreateIntegrationStoreDirectUiOptions3 = {
231
237
  disabled?: CreateIntegrationStoreDirectDisabledIntegrationsResponse2002 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse2003 | undefined;
232
238
  hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse2002 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse2003 | undefined;
233
239
  };
234
- export type UiOptionsAtBRANDAt7838 = {};
240
+ export type UiOptionsAtBRANDAt7820 = {};
235
241
  export type CreateIntegrationStoreDirectUiOptions2 = {
236
- atBRANDAt7838: UiOptionsAtBRANDAt7838;
242
+ atBRANDAt7820: UiOptionsAtBRANDAt7820;
237
243
  };
238
244
  export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3: {
239
245
  readonly Update: "update";
@@ -260,17 +266,17 @@ export type CreateIntegrationStoreDirectUiOptions1 = {
260
266
  hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3 | undefined;
261
267
  };
262
268
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiOptions = CreateIntegrationStoreDirectUiOptions1 | CreateIntegrationStoreDirectUiOptions2 | CreateIntegrationStoreDirectUiOptions3;
263
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838 = {};
269
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820 = {};
264
270
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength = {
265
- atBRANDAt7838: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838;
271
+ atBRANDAt7820: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820;
266
272
  };
267
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838 = {};
273
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820 = {};
268
274
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength = {
269
- atBRANDAt7838: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838;
275
+ atBRANDAt7820: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820;
270
276
  };
271
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838 = {};
277
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820 = {};
272
278
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern = {
273
- atBRANDAt7838: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838;
279
+ atBRANDAt7820: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820;
274
280
  };
275
281
  export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStore3: {
276
282
  readonly Update: "update";
@@ -332,17 +338,17 @@ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse2
332
338
  readonly String: "string";
333
339
  };
334
340
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType>;
335
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838 = {};
341
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820 = {};
336
342
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength = {
337
- atBRANDAt7838: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838;
343
+ atBRANDAt7820: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820;
338
344
  };
339
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838 = {};
345
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820 = {};
340
346
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength = {
341
- atBRANDAt7838: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838;
347
+ atBRANDAt7820: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820;
342
348
  };
343
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838 = {};
349
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820 = {};
344
350
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern = {
345
- atBRANDAt7838: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838;
351
+ atBRANDAt7820: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820;
346
352
  };
347
353
  export type CreateIntegrationStoreDirectPropertiesIntegrationsItems = {
348
354
  type: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType;
@@ -465,17 +471,17 @@ export type CreateIntegrationStoreDirectPropertiesUiOptions = {
465
471
  disabled?: CreateIntegrationStoreDirectDisabledIntegrationsResponse2 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse3 | undefined;
466
472
  hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse2 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse3 | undefined;
467
473
  };
468
- export type CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838 = {};
474
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820 = {};
469
475
  export type CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength = {
470
- atBRANDAt7838: CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838;
476
+ atBRANDAt7820: CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820;
471
477
  };
472
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838 = {};
478
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820 = {};
473
479
  export type CreateIntegrationStoreDirectPropertiesIntegrationsMinLength = {
474
- atBRANDAt7838: CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838;
480
+ atBRANDAt7820: CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820;
475
481
  };
476
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838 = {};
482
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820 = {};
477
483
  export type CreateIntegrationStoreDirectPropertiesIntegrationsPattern = {
478
- atBRANDAt7838: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838;
484
+ atBRANDAt7820: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820;
479
485
  };
480
486
  export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJson3: {
481
487
  readonly Update: "update";
@@ -721,17 +727,17 @@ export declare const CreateIntegrationStoreDirectPropertiesUiControl: {
721
727
  readonly Input: "input";
722
728
  };
723
729
  export type CreateIntegrationStoreDirectPropertiesUiControl = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesUiControl>;
724
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838 = {};
730
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820 = {};
725
731
  export type CreateIntegrationStoreDirectPropertiesMaxLength = {
726
- atBRANDAt7838: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838;
732
+ atBRANDAt7820: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820;
727
733
  };
728
- export type PropertiesAtBRANDAt7838 = {};
734
+ export type PropertiesAtBRANDAt7820 = {};
729
735
  export type CreateIntegrationStoreDirectPropertiesMinLength = {
730
- atBRANDAt7838: PropertiesAtBRANDAt7838;
736
+ atBRANDAt7820: PropertiesAtBRANDAt7820;
731
737
  };
732
- export type CreateIntegrationStoreDirectPropertiesAtBRANDAt7838 = {};
738
+ export type CreateIntegrationStoreDirectPropertiesAtBRANDAt7820 = {};
733
739
  export type CreateIntegrationStoreDirectPropertiesPattern = {
734
- atBRANDAt7838: CreateIntegrationStoreDirectPropertiesAtBRANDAt7838;
740
+ atBRANDAt7820: CreateIntegrationStoreDirectPropertiesAtBRANDAt7820;
735
741
  };
736
742
  export declare const CreateIntegrationStoreDirectUiReadOnly3: {
737
743
  readonly Update: "update";
@@ -801,8 +807,8 @@ export declare const Tags: {
801
807
  readonly Redis: "redis";
802
808
  readonly Postgres: "postgres";
803
809
  readonly Blob: "blob";
804
- readonly Checks: "checks";
805
810
  readonly Experimentation: "experimentation";
811
+ readonly Checks: "checks";
806
812
  readonly Storage: "storage";
807
813
  readonly Ai: "ai";
808
814
  readonly Observability: "observability";
@@ -855,7 +861,6 @@ export declare const ProjectConnectionScopes: {
855
861
  readonly ReadWriteLogDrain: "read-write:log-drain";
856
862
  readonly ReadWriteProjectEnvVars: "read-write:project-env-vars";
857
863
  readonly ReadWriteProjectProtectionBypass: "read-write:project-protection-bypass";
858
- readonly ReadWriteTraceDrain: "read-write:trace-drain";
859
864
  };
860
865
  export type ProjectConnectionScopes = ClosedEnum<typeof ProjectConnectionScopes>;
861
866
  export type Repl = {
@@ -881,9 +886,9 @@ export type Guides = {
881
886
  title: string;
882
887
  steps: Array<Steps>;
883
888
  };
884
- export type AtBRANDAt7838 = {};
889
+ export type AtBRANDAt7820 = {};
885
890
  export type CreateIntegrationStoreDirectValue = {
886
- atBRANDAt7838: AtBRANDAt7838;
891
+ atBRANDAt7820: AtBRANDAt7820;
887
892
  };
888
893
  export declare const Disabled3: {
889
894
  readonly Update: "update";
@@ -991,6 +996,7 @@ export type CreateIntegrationStoreDirectStore = {
991
996
  totalConnectedProjects?: number | undefined;
992
997
  usageQuotaExceeded: boolean;
993
998
  status: CreateIntegrationStoreDirectStatus | null;
999
+ ownership?: CreateIntegrationStoreDirectOwnership | undefined;
994
1000
  metadata?: {
995
1001
  [k: string]: string | number | boolean | Array<string> | Array<number>;
996
1002
  } | undefined;
@@ -1353,6 +1359,28 @@ export declare namespace CreateIntegrationStoreDirectStatus$ {
1353
1359
  }>;
1354
1360
  }
1355
1361
  /** @internal */
1362
+ export declare const CreateIntegrationStoreDirectOwnership$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectOwnership>;
1363
+ /** @internal */
1364
+ export declare const CreateIntegrationStoreDirectOwnership$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectOwnership>;
1365
+ /**
1366
+ * @internal
1367
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1368
+ */
1369
+ export declare namespace CreateIntegrationStoreDirectOwnership$ {
1370
+ /** @deprecated use `CreateIntegrationStoreDirectOwnership$inboundSchema` instead. */
1371
+ const inboundSchema: z.ZodNativeEnum<{
1372
+ readonly Owned: "owned";
1373
+ readonly Linked: "linked";
1374
+ readonly Sandbox: "sandbox";
1375
+ }>;
1376
+ /** @deprecated use `CreateIntegrationStoreDirectOwnership$outboundSchema` instead. */
1377
+ const outboundSchema: z.ZodNativeEnum<{
1378
+ readonly Owned: "owned";
1379
+ readonly Linked: "linked";
1380
+ readonly Sandbox: "sandbox";
1381
+ }>;
1382
+ }
1383
+ /** @internal */
1356
1384
  export declare const CreateIntegrationStoreDirectMetadata$inboundSchema: z.ZodType<CreateIntegrationStoreDirectMetadata, z.ZodTypeDef, unknown>;
1357
1385
  /** @internal */
1358
1386
  export type CreateIntegrationStoreDirectMetadata$Outbound = string | number | boolean | Array<string> | Array<number>;
@@ -1419,30 +1447,30 @@ export declare namespace CreateIntegrationStoreDirectIntegrationsType$ {
1419
1447
  }>;
1420
1448
  }
1421
1449
  /** @internal */
1422
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838, z.ZodTypeDef, unknown>;
1450
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820, z.ZodTypeDef, unknown>;
1423
1451
  /** @internal */
1424
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838$Outbound = {};
1452
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820$Outbound = {};
1425
1453
  /** @internal */
1426
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838>;
1454
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820>;
1427
1455
  /**
1428
1456
  * @internal
1429
1457
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1430
1458
  */
1431
- export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838$ {
1432
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838$inboundSchema` instead. */
1433
- const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838, z.ZodTypeDef, unknown>;
1434
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838$outboundSchema` instead. */
1435
- const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838>;
1436
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838$Outbound` instead. */
1437
- type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838$Outbound;
1459
+ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820$ {
1460
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820$inboundSchema` instead. */
1461
+ const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820, z.ZodTypeDef, unknown>;
1462
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820$outboundSchema` instead. */
1463
+ const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820>;
1464
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820$Outbound` instead. */
1465
+ type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820$Outbound;
1438
1466
  }
1439
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838): string;
1440
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838, SDKValidationError>;
1467
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820): string;
1468
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820, SDKValidationError>;
1441
1469
  /** @internal */
1442
1470
  export declare const CreateIntegrationStoreDirectPropertiesValue$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesValue, z.ZodTypeDef, unknown>;
1443
1471
  /** @internal */
1444
1472
  export type CreateIntegrationStoreDirectPropertiesValue$Outbound = {
1445
- "__@BRAND@7838": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7838$Outbound;
1473
+ "__@BRAND@7820": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7820$Outbound;
1446
1474
  };
1447
1475
  /** @internal */
1448
1476
  export declare const CreateIntegrationStoreDirectPropertiesValue$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesValue$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesValue>;
@@ -1645,30 +1673,30 @@ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsRespo
1645
1673
  }>;
1646
1674
  }
1647
1675
  /** @internal */
1648
- export declare const CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838, z.ZodTypeDef, unknown>;
1676
+ export declare const CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820, z.ZodTypeDef, unknown>;
1649
1677
  /** @internal */
1650
- export type CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838$Outbound = {};
1678
+ export type CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820$Outbound = {};
1651
1679
  /** @internal */
1652
- export declare const CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838>;
1680
+ export declare const CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820>;
1653
1681
  /**
1654
1682
  * @internal
1655
1683
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1656
1684
  */
1657
- export declare namespace CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838$ {
1658
- /** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838$inboundSchema` instead. */
1659
- const inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838, z.ZodTypeDef, unknown>;
1660
- /** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838$outboundSchema` instead. */
1661
- const outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838>;
1662
- /** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838$Outbound` instead. */
1663
- type Outbound = CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838$Outbound;
1685
+ export declare namespace CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820$ {
1686
+ /** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820$inboundSchema` instead. */
1687
+ const inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820, z.ZodTypeDef, unknown>;
1688
+ /** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820$outboundSchema` instead. */
1689
+ const outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820>;
1690
+ /** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820$Outbound` instead. */
1691
+ type Outbound = CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820$Outbound;
1664
1692
  }
1665
- export declare function createIntegrationStoreDirectUiOptionsAtBRANDAt7838ToJSON(createIntegrationStoreDirectUiOptionsAtBRANDAt7838: CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838): string;
1666
- export declare function createIntegrationStoreDirectUiOptionsAtBRANDAt7838FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838, SDKValidationError>;
1693
+ export declare function createIntegrationStoreDirectUiOptionsAtBRANDAt7820ToJSON(createIntegrationStoreDirectUiOptionsAtBRANDAt7820: CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820): string;
1694
+ export declare function createIntegrationStoreDirectUiOptionsAtBRANDAt7820FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820, SDKValidationError>;
1667
1695
  /** @internal */
1668
1696
  export declare const CreateIntegrationStoreDirectUiOptionsValue$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsValue, z.ZodTypeDef, unknown>;
1669
1697
  /** @internal */
1670
1698
  export type CreateIntegrationStoreDirectUiOptionsValue$Outbound = {
1671
- "__@BRAND@7838": CreateIntegrationStoreDirectUiOptionsAtBRANDAt7838$Outbound;
1699
+ "__@BRAND@7820": CreateIntegrationStoreDirectUiOptionsAtBRANDAt7820$Outbound;
1672
1700
  };
1673
1701
  /** @internal */
1674
1702
  export declare const CreateIntegrationStoreDirectUiOptionsValue$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsValue$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptionsValue>;
@@ -1835,30 +1863,30 @@ export declare namespace CreateIntegrationStoreDirectUiOptions3$ {
1835
1863
  export declare function createIntegrationStoreDirectUiOptions3ToJSON(createIntegrationStoreDirectUiOptions3: CreateIntegrationStoreDirectUiOptions3): string;
1836
1864
  export declare function createIntegrationStoreDirectUiOptions3FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptions3, SDKValidationError>;
1837
1865
  /** @internal */
1838
- export declare const UiOptionsAtBRANDAt7838$inboundSchema: z.ZodType<UiOptionsAtBRANDAt7838, z.ZodTypeDef, unknown>;
1866
+ export declare const UiOptionsAtBRANDAt7820$inboundSchema: z.ZodType<UiOptionsAtBRANDAt7820, z.ZodTypeDef, unknown>;
1839
1867
  /** @internal */
1840
- export type UiOptionsAtBRANDAt7838$Outbound = {};
1868
+ export type UiOptionsAtBRANDAt7820$Outbound = {};
1841
1869
  /** @internal */
1842
- export declare const UiOptionsAtBRANDAt7838$outboundSchema: z.ZodType<UiOptionsAtBRANDAt7838$Outbound, z.ZodTypeDef, UiOptionsAtBRANDAt7838>;
1870
+ export declare const UiOptionsAtBRANDAt7820$outboundSchema: z.ZodType<UiOptionsAtBRANDAt7820$Outbound, z.ZodTypeDef, UiOptionsAtBRANDAt7820>;
1843
1871
  /**
1844
1872
  * @internal
1845
1873
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1846
1874
  */
1847
- export declare namespace UiOptionsAtBRANDAt7838$ {
1848
- /** @deprecated use `UiOptionsAtBRANDAt7838$inboundSchema` instead. */
1849
- const inboundSchema: z.ZodType<UiOptionsAtBRANDAt7838, z.ZodTypeDef, unknown>;
1850
- /** @deprecated use `UiOptionsAtBRANDAt7838$outboundSchema` instead. */
1851
- const outboundSchema: z.ZodType<UiOptionsAtBRANDAt7838$Outbound, z.ZodTypeDef, UiOptionsAtBRANDAt7838>;
1852
- /** @deprecated use `UiOptionsAtBRANDAt7838$Outbound` instead. */
1853
- type Outbound = UiOptionsAtBRANDAt7838$Outbound;
1875
+ export declare namespace UiOptionsAtBRANDAt7820$ {
1876
+ /** @deprecated use `UiOptionsAtBRANDAt7820$inboundSchema` instead. */
1877
+ const inboundSchema: z.ZodType<UiOptionsAtBRANDAt7820, z.ZodTypeDef, unknown>;
1878
+ /** @deprecated use `UiOptionsAtBRANDAt7820$outboundSchema` instead. */
1879
+ const outboundSchema: z.ZodType<UiOptionsAtBRANDAt7820$Outbound, z.ZodTypeDef, UiOptionsAtBRANDAt7820>;
1880
+ /** @deprecated use `UiOptionsAtBRANDAt7820$Outbound` instead. */
1881
+ type Outbound = UiOptionsAtBRANDAt7820$Outbound;
1854
1882
  }
1855
- export declare function uiOptionsAtBRANDAt7838ToJSON(uiOptionsAtBRANDAt7838: UiOptionsAtBRANDAt7838): string;
1856
- export declare function uiOptionsAtBRANDAt7838FromJSON(jsonString: string): SafeParseResult<UiOptionsAtBRANDAt7838, SDKValidationError>;
1883
+ export declare function uiOptionsAtBRANDAt7820ToJSON(uiOptionsAtBRANDAt7820: UiOptionsAtBRANDAt7820): string;
1884
+ export declare function uiOptionsAtBRANDAt7820FromJSON(jsonString: string): SafeParseResult<UiOptionsAtBRANDAt7820, SDKValidationError>;
1857
1885
  /** @internal */
1858
1886
  export declare const CreateIntegrationStoreDirectUiOptions2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptions2, z.ZodTypeDef, unknown>;
1859
1887
  /** @internal */
1860
1888
  export type CreateIntegrationStoreDirectUiOptions2$Outbound = {
1861
- "__@BRAND@7838": UiOptionsAtBRANDAt7838$Outbound;
1889
+ "__@BRAND@7820": UiOptionsAtBRANDAt7820$Outbound;
1862
1890
  };
1863
1891
  /** @internal */
1864
1892
  export declare const CreateIntegrationStoreDirectUiOptions2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptions2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptions2>;
@@ -2046,30 +2074,30 @@ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsRespo
2046
2074
  export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseUiOptionsToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponseUiOptions: CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiOptions): string;
2047
2075
  export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseUiOptionsFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiOptions, SDKValidationError>;
2048
2076
  /** @internal */
2049
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838, z.ZodTypeDef, unknown>;
2077
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820, z.ZodTypeDef, unknown>;
2050
2078
  /** @internal */
2051
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838$Outbound = {};
2079
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820$Outbound = {};
2052
2080
  /** @internal */
2053
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838>;
2081
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820>;
2054
2082
  /**
2055
2083
  * @internal
2056
2084
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2057
2085
  */
2058
- export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838$ {
2059
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838$inboundSchema` instead. */
2060
- const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838, z.ZodTypeDef, unknown>;
2061
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838$outboundSchema` instead. */
2062
- const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838>;
2063
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838$Outbound` instead. */
2064
- type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838$Outbound;
2086
+ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820$ {
2087
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820$inboundSchema` instead. */
2088
+ const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820, z.ZodTypeDef, unknown>;
2089
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820$outboundSchema` instead. */
2090
+ const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820>;
2091
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820$Outbound` instead. */
2092
+ type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820$Outbound;
2065
2093
  }
2066
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838): string;
2067
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838, SDKValidationError>;
2094
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820): string;
2095
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820, SDKValidationError>;
2068
2096
  /** @internal */
2069
2097
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength, z.ZodTypeDef, unknown>;
2070
2098
  /** @internal */
2071
2099
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$Outbound = {
2072
- "__@BRAND@7838": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7838$Outbound;
2100
+ "__@BRAND@7820": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7820$Outbound;
2073
2101
  };
2074
2102
  /** @internal */
2075
2103
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength>;
@@ -2088,30 +2116,30 @@ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsRespo
2088
2116
  export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseMaxLengthToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength: CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength): string;
2089
2117
  export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseMaxLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength, SDKValidationError>;
2090
2118
  /** @internal */
2091
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838, z.ZodTypeDef, unknown>;
2119
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820, z.ZodTypeDef, unknown>;
2092
2120
  /** @internal */
2093
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838$Outbound = {};
2121
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820$Outbound = {};
2094
2122
  /** @internal */
2095
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838>;
2123
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820>;
2096
2124
  /**
2097
2125
  * @internal
2098
2126
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2099
2127
  */
2100
- export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838$ {
2101
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838$inboundSchema` instead. */
2102
- const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838, z.ZodTypeDef, unknown>;
2103
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838$outboundSchema` instead. */
2104
- const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838>;
2105
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838$Outbound` instead. */
2106
- type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838$Outbound;
2128
+ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820$ {
2129
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820$inboundSchema` instead. */
2130
+ const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820, z.ZodTypeDef, unknown>;
2131
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820$outboundSchema` instead. */
2132
+ const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820>;
2133
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820$Outbound` instead. */
2134
+ type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820$Outbound;
2107
2135
  }
2108
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838): string;
2109
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838, SDKValidationError>;
2136
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820): string;
2137
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820, SDKValidationError>;
2110
2138
  /** @internal */
2111
2139
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength, z.ZodTypeDef, unknown>;
2112
2140
  /** @internal */
2113
2141
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$Outbound = {
2114
- "__@BRAND@7838": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7838$Outbound;
2142
+ "__@BRAND@7820": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7820$Outbound;
2115
2143
  };
2116
2144
  /** @internal */
2117
2145
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength>;
@@ -2130,30 +2158,30 @@ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsRespo
2130
2158
  export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseMinLengthToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponseMinLength: CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength): string;
2131
2159
  export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseMinLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength, SDKValidationError>;
2132
2160
  /** @internal */
2133
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838, z.ZodTypeDef, unknown>;
2161
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820, z.ZodTypeDef, unknown>;
2134
2162
  /** @internal */
2135
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838$Outbound = {};
2163
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820$Outbound = {};
2136
2164
  /** @internal */
2137
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838>;
2165
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820>;
2138
2166
  /**
2139
2167
  * @internal
2140
2168
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2141
2169
  */
2142
- export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838$ {
2143
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838$inboundSchema` instead. */
2144
- const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838, z.ZodTypeDef, unknown>;
2145
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838$outboundSchema` instead. */
2146
- const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838>;
2147
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838$Outbound` instead. */
2148
- type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838$Outbound;
2170
+ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820$ {
2171
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820$inboundSchema` instead. */
2172
+ const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820, z.ZodTypeDef, unknown>;
2173
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820$outboundSchema` instead. */
2174
+ const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820>;
2175
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820$Outbound` instead. */
2176
+ type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820$Outbound;
2149
2177
  }
2150
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838): string;
2151
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838, SDKValidationError>;
2178
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820): string;
2179
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820, SDKValidationError>;
2152
2180
  /** @internal */
2153
2181
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern, z.ZodTypeDef, unknown>;
2154
2182
  /** @internal */
2155
2183
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$Outbound = {
2156
- "__@BRAND@7838": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7838$Outbound;
2184
+ "__@BRAND@7820": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7820$Outbound;
2157
2185
  };
2158
2186
  /** @internal */
2159
2187
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern>;
@@ -2495,30 +2523,30 @@ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsRespo
2495
2523
  }>;
2496
2524
  }
2497
2525
  /** @internal */
2498
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838, z.ZodTypeDef, unknown>;
2526
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820, z.ZodTypeDef, unknown>;
2499
2527
  /** @internal */
2500
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838$Outbound = {};
2528
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820$Outbound = {};
2501
2529
  /** @internal */
2502
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838>;
2530
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820>;
2503
2531
  /**
2504
2532
  * @internal
2505
2533
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2506
2534
  */
2507
- export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838$ {
2508
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838$inboundSchema` instead. */
2509
- const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838, z.ZodTypeDef, unknown>;
2510
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838$outboundSchema` instead. */
2511
- const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838>;
2512
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838$Outbound` instead. */
2513
- type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838$Outbound;
2535
+ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820$ {
2536
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820$inboundSchema` instead. */
2537
+ const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820, z.ZodTypeDef, unknown>;
2538
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820$outboundSchema` instead. */
2539
+ const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820>;
2540
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820$Outbound` instead. */
2541
+ type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820$Outbound;
2514
2542
  }
2515
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838): string;
2516
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838, SDKValidationError>;
2543
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820): string;
2544
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820, SDKValidationError>;
2517
2545
  /** @internal */
2518
2546
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength, z.ZodTypeDef, unknown>;
2519
2547
  /** @internal */
2520
2548
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$Outbound = {
2521
- "__@BRAND@7838": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7838$Outbound;
2549
+ "__@BRAND@7820": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7820$Outbound;
2522
2550
  };
2523
2551
  /** @internal */
2524
2552
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength>;
@@ -2537,30 +2565,30 @@ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsRespo
2537
2565
  export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200MinLengthToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength): string;
2538
2566
  export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200MinLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength, SDKValidationError>;
2539
2567
  /** @internal */
2540
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838, z.ZodTypeDef, unknown>;
2568
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820, z.ZodTypeDef, unknown>;
2541
2569
  /** @internal */
2542
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838$Outbound = {};
2570
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820$Outbound = {};
2543
2571
  /** @internal */
2544
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838>;
2572
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820>;
2545
2573
  /**
2546
2574
  * @internal
2547
2575
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2548
2576
  */
2549
- export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838$ {
2550
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838$inboundSchema` instead. */
2551
- const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838, z.ZodTypeDef, unknown>;
2552
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838$outboundSchema` instead. */
2553
- const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838>;
2554
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838$Outbound` instead. */
2555
- type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838$Outbound;
2577
+ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820$ {
2578
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820$inboundSchema` instead. */
2579
+ const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820, z.ZodTypeDef, unknown>;
2580
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820$outboundSchema` instead. */
2581
+ const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820>;
2582
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820$Outbound` instead. */
2583
+ type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820$Outbound;
2556
2584
  }
2557
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838): string;
2558
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838, SDKValidationError>;
2585
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820): string;
2586
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820, SDKValidationError>;
2559
2587
  /** @internal */
2560
2588
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength, z.ZodTypeDef, unknown>;
2561
2589
  /** @internal */
2562
2590
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$Outbound = {
2563
- "__@BRAND@7838": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7838$Outbound;
2591
+ "__@BRAND@7820": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7820$Outbound;
2564
2592
  };
2565
2593
  /** @internal */
2566
2594
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength>;
@@ -2579,30 +2607,30 @@ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsRespo
2579
2607
  export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLengthToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength): string;
2580
2608
  export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength, SDKValidationError>;
2581
2609
  /** @internal */
2582
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838, z.ZodTypeDef, unknown>;
2610
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820, z.ZodTypeDef, unknown>;
2583
2611
  /** @internal */
2584
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838$Outbound = {};
2612
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820$Outbound = {};
2585
2613
  /** @internal */
2586
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838>;
2614
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820>;
2587
2615
  /**
2588
2616
  * @internal
2589
2617
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2590
2618
  */
2591
- export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838$ {
2592
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838$inboundSchema` instead. */
2593
- const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838, z.ZodTypeDef, unknown>;
2594
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838$outboundSchema` instead. */
2595
- const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838>;
2596
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838$Outbound` instead. */
2597
- type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838$Outbound;
2619
+ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820$ {
2620
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820$inboundSchema` instead. */
2621
+ const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820, z.ZodTypeDef, unknown>;
2622
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820$outboundSchema` instead. */
2623
+ const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820>;
2624
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820$Outbound` instead. */
2625
+ type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820$Outbound;
2598
2626
  }
2599
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838): string;
2600
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838, SDKValidationError>;
2627
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820): string;
2628
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820, SDKValidationError>;
2601
2629
  /** @internal */
2602
2630
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern, z.ZodTypeDef, unknown>;
2603
2631
  /** @internal */
2604
2632
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$Outbound = {
2605
- "__@BRAND@7838": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7838$Outbound;
2633
+ "__@BRAND@7820": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7820$Outbound;
2606
2634
  };
2607
2635
  /** @internal */
2608
2636
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern>;
@@ -3288,30 +3316,30 @@ export declare namespace CreateIntegrationStoreDirectPropertiesUiOptions$ {
3288
3316
  export declare function createIntegrationStoreDirectPropertiesUiOptionsToJSON(createIntegrationStoreDirectPropertiesUiOptions: CreateIntegrationStoreDirectPropertiesUiOptions): string;
3289
3317
  export declare function createIntegrationStoreDirectPropertiesUiOptionsFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesUiOptions, SDKValidationError>;
3290
3318
  /** @internal */
3291
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838, z.ZodTypeDef, unknown>;
3319
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820, z.ZodTypeDef, unknown>;
3292
3320
  /** @internal */
3293
- export type CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838$Outbound = {};
3321
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820$Outbound = {};
3294
3322
  /** @internal */
3295
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838>;
3323
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820>;
3296
3324
  /**
3297
3325
  * @internal
3298
3326
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3299
3327
  */
3300
- export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838$ {
3301
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838$inboundSchema` instead. */
3302
- const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838, z.ZodTypeDef, unknown>;
3303
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838$outboundSchema` instead. */
3304
- const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838>;
3305
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838$Outbound` instead. */
3306
- type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838$Outbound;
3328
+ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820$ {
3329
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820$inboundSchema` instead. */
3330
+ const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820, z.ZodTypeDef, unknown>;
3331
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820$outboundSchema` instead. */
3332
+ const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820>;
3333
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820$Outbound` instead. */
3334
+ type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820$Outbound;
3307
3335
  }
3308
- export declare function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838ToJSON(createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838: CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838): string;
3309
- export declare function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838, SDKValidationError>;
3336
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820ToJSON(createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820: CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820): string;
3337
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820, SDKValidationError>;
3310
3338
  /** @internal */
3311
3339
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength, z.ZodTypeDef, unknown>;
3312
3340
  /** @internal */
3313
3341
  export type CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$Outbound = {
3314
- "__@BRAND@7838": CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7838$Outbound;
3342
+ "__@BRAND@7820": CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7820$Outbound;
3315
3343
  };
3316
3344
  /** @internal */
3317
3345
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength>;
@@ -3330,30 +3358,30 @@ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsMaxLe
3330
3358
  export declare function createIntegrationStoreDirectPropertiesIntegrationsMaxLengthToJSON(createIntegrationStoreDirectPropertiesIntegrationsMaxLength: CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength): string;
3331
3359
  export declare function createIntegrationStoreDirectPropertiesIntegrationsMaxLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength, SDKValidationError>;
3332
3360
  /** @internal */
3333
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838, z.ZodTypeDef, unknown>;
3361
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820, z.ZodTypeDef, unknown>;
3334
3362
  /** @internal */
3335
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838$Outbound = {};
3363
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820$Outbound = {};
3336
3364
  /** @internal */
3337
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838>;
3365
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820>;
3338
3366
  /**
3339
3367
  * @internal
3340
3368
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3341
3369
  */
3342
- export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838$ {
3343
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838$inboundSchema` instead. */
3344
- const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838, z.ZodTypeDef, unknown>;
3345
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838$outboundSchema` instead. */
3346
- const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838>;
3347
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838$Outbound` instead. */
3348
- type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838$Outbound;
3370
+ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820$ {
3371
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820$inboundSchema` instead. */
3372
+ const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820, z.ZodTypeDef, unknown>;
3373
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820$outboundSchema` instead. */
3374
+ const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820>;
3375
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820$Outbound` instead. */
3376
+ type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820$Outbound;
3349
3377
  }
3350
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838: CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838): string;
3351
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838, SDKValidationError>;
3378
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820: CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820): string;
3379
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820, SDKValidationError>;
3352
3380
  /** @internal */
3353
3381
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsMinLength, z.ZodTypeDef, unknown>;
3354
3382
  /** @internal */
3355
3383
  export type CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$Outbound = {
3356
- "__@BRAND@7838": CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7838$Outbound;
3384
+ "__@BRAND@7820": CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7820$Outbound;
3357
3385
  };
3358
3386
  /** @internal */
3359
3387
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsMinLength>;
@@ -3372,30 +3400,30 @@ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsMinLe
3372
3400
  export declare function createIntegrationStoreDirectPropertiesIntegrationsMinLengthToJSON(createIntegrationStoreDirectPropertiesIntegrationsMinLength: CreateIntegrationStoreDirectPropertiesIntegrationsMinLength): string;
3373
3401
  export declare function createIntegrationStoreDirectPropertiesIntegrationsMinLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsMinLength, SDKValidationError>;
3374
3402
  /** @internal */
3375
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838, z.ZodTypeDef, unknown>;
3403
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820, z.ZodTypeDef, unknown>;
3376
3404
  /** @internal */
3377
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838$Outbound = {};
3405
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820$Outbound = {};
3378
3406
  /** @internal */
3379
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838>;
3407
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820>;
3380
3408
  /**
3381
3409
  * @internal
3382
3410
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3383
3411
  */
3384
- export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838$ {
3385
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838$inboundSchema` instead. */
3386
- const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838, z.ZodTypeDef, unknown>;
3387
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838$outboundSchema` instead. */
3388
- const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838>;
3389
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838$Outbound` instead. */
3390
- type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838$Outbound;
3412
+ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820$ {
3413
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820$inboundSchema` instead. */
3414
+ const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820, z.ZodTypeDef, unknown>;
3415
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820$outboundSchema` instead. */
3416
+ const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820>;
3417
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820$Outbound` instead. */
3418
+ type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820$Outbound;
3391
3419
  }
3392
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838): string;
3393
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838, SDKValidationError>;
3420
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820): string;
3421
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820, SDKValidationError>;
3394
3422
  /** @internal */
3395
3423
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsPattern$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsPattern, z.ZodTypeDef, unknown>;
3396
3424
  /** @internal */
3397
3425
  export type CreateIntegrationStoreDirectPropertiesIntegrationsPattern$Outbound = {
3398
- "__@BRAND@7838": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7838$Outbound;
3426
+ "__@BRAND@7820": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7820$Outbound;
3399
3427
  };
3400
3428
  /** @internal */
3401
3429
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsPattern$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsPattern$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsPattern>;
@@ -4743,30 +4771,30 @@ export declare namespace CreateIntegrationStoreDirectPropertiesUiControl$ {
4743
4771
  }>;
4744
4772
  }
4745
4773
  /** @internal */
4746
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838, z.ZodTypeDef, unknown>;
4774
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820, z.ZodTypeDef, unknown>;
4747
4775
  /** @internal */
4748
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838$Outbound = {};
4776
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820$Outbound = {};
4749
4777
  /** @internal */
4750
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838>;
4778
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820>;
4751
4779
  /**
4752
4780
  * @internal
4753
4781
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4754
4782
  */
4755
- export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838$ {
4756
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838$inboundSchema` instead. */
4757
- const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838, z.ZodTypeDef, unknown>;
4758
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838$outboundSchema` instead. */
4759
- const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838>;
4760
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838$Outbound` instead. */
4761
- type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838$Outbound;
4783
+ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820$ {
4784
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820$inboundSchema` instead. */
4785
+ const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820, z.ZodTypeDef, unknown>;
4786
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820$outboundSchema` instead. */
4787
+ const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820>;
4788
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820$Outbound` instead. */
4789
+ type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820$Outbound;
4762
4790
  }
4763
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838): string;
4764
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838, SDKValidationError>;
4791
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820): string;
4792
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820, SDKValidationError>;
4765
4793
  /** @internal */
4766
4794
  export declare const CreateIntegrationStoreDirectPropertiesMaxLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesMaxLength, z.ZodTypeDef, unknown>;
4767
4795
  /** @internal */
4768
4796
  export type CreateIntegrationStoreDirectPropertiesMaxLength$Outbound = {
4769
- "__@BRAND@7838": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7838$Outbound;
4797
+ "__@BRAND@7820": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7820$Outbound;
4770
4798
  };
4771
4799
  /** @internal */
4772
4800
  export declare const CreateIntegrationStoreDirectPropertiesMaxLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesMaxLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesMaxLength>;
@@ -4785,30 +4813,30 @@ export declare namespace CreateIntegrationStoreDirectPropertiesMaxLength$ {
4785
4813
  export declare function createIntegrationStoreDirectPropertiesMaxLengthToJSON(createIntegrationStoreDirectPropertiesMaxLength: CreateIntegrationStoreDirectPropertiesMaxLength): string;
4786
4814
  export declare function createIntegrationStoreDirectPropertiesMaxLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesMaxLength, SDKValidationError>;
4787
4815
  /** @internal */
4788
- export declare const PropertiesAtBRANDAt7838$inboundSchema: z.ZodType<PropertiesAtBRANDAt7838, z.ZodTypeDef, unknown>;
4816
+ export declare const PropertiesAtBRANDAt7820$inboundSchema: z.ZodType<PropertiesAtBRANDAt7820, z.ZodTypeDef, unknown>;
4789
4817
  /** @internal */
4790
- export type PropertiesAtBRANDAt7838$Outbound = {};
4818
+ export type PropertiesAtBRANDAt7820$Outbound = {};
4791
4819
  /** @internal */
4792
- export declare const PropertiesAtBRANDAt7838$outboundSchema: z.ZodType<PropertiesAtBRANDAt7838$Outbound, z.ZodTypeDef, PropertiesAtBRANDAt7838>;
4820
+ export declare const PropertiesAtBRANDAt7820$outboundSchema: z.ZodType<PropertiesAtBRANDAt7820$Outbound, z.ZodTypeDef, PropertiesAtBRANDAt7820>;
4793
4821
  /**
4794
4822
  * @internal
4795
4823
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4796
4824
  */
4797
- export declare namespace PropertiesAtBRANDAt7838$ {
4798
- /** @deprecated use `PropertiesAtBRANDAt7838$inboundSchema` instead. */
4799
- const inboundSchema: z.ZodType<PropertiesAtBRANDAt7838, z.ZodTypeDef, unknown>;
4800
- /** @deprecated use `PropertiesAtBRANDAt7838$outboundSchema` instead. */
4801
- const outboundSchema: z.ZodType<PropertiesAtBRANDAt7838$Outbound, z.ZodTypeDef, PropertiesAtBRANDAt7838>;
4802
- /** @deprecated use `PropertiesAtBRANDAt7838$Outbound` instead. */
4803
- type Outbound = PropertiesAtBRANDAt7838$Outbound;
4825
+ export declare namespace PropertiesAtBRANDAt7820$ {
4826
+ /** @deprecated use `PropertiesAtBRANDAt7820$inboundSchema` instead. */
4827
+ const inboundSchema: z.ZodType<PropertiesAtBRANDAt7820, z.ZodTypeDef, unknown>;
4828
+ /** @deprecated use `PropertiesAtBRANDAt7820$outboundSchema` instead. */
4829
+ const outboundSchema: z.ZodType<PropertiesAtBRANDAt7820$Outbound, z.ZodTypeDef, PropertiesAtBRANDAt7820>;
4830
+ /** @deprecated use `PropertiesAtBRANDAt7820$Outbound` instead. */
4831
+ type Outbound = PropertiesAtBRANDAt7820$Outbound;
4804
4832
  }
4805
- export declare function propertiesAtBRANDAt7838ToJSON(propertiesAtBRANDAt7838: PropertiesAtBRANDAt7838): string;
4806
- export declare function propertiesAtBRANDAt7838FromJSON(jsonString: string): SafeParseResult<PropertiesAtBRANDAt7838, SDKValidationError>;
4833
+ export declare function propertiesAtBRANDAt7820ToJSON(propertiesAtBRANDAt7820: PropertiesAtBRANDAt7820): string;
4834
+ export declare function propertiesAtBRANDAt7820FromJSON(jsonString: string): SafeParseResult<PropertiesAtBRANDAt7820, SDKValidationError>;
4807
4835
  /** @internal */
4808
4836
  export declare const CreateIntegrationStoreDirectPropertiesMinLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesMinLength, z.ZodTypeDef, unknown>;
4809
4837
  /** @internal */
4810
4838
  export type CreateIntegrationStoreDirectPropertiesMinLength$Outbound = {
4811
- "__@BRAND@7838": PropertiesAtBRANDAt7838$Outbound;
4839
+ "__@BRAND@7820": PropertiesAtBRANDAt7820$Outbound;
4812
4840
  };
4813
4841
  /** @internal */
4814
4842
  export declare const CreateIntegrationStoreDirectPropertiesMinLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesMinLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesMinLength>;
@@ -4827,30 +4855,30 @@ export declare namespace CreateIntegrationStoreDirectPropertiesMinLength$ {
4827
4855
  export declare function createIntegrationStoreDirectPropertiesMinLengthToJSON(createIntegrationStoreDirectPropertiesMinLength: CreateIntegrationStoreDirectPropertiesMinLength): string;
4828
4856
  export declare function createIntegrationStoreDirectPropertiesMinLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesMinLength, SDKValidationError>;
4829
4857
  /** @internal */
4830
- export declare const CreateIntegrationStoreDirectPropertiesAtBRANDAt7838$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesAtBRANDAt7838, z.ZodTypeDef, unknown>;
4858
+ export declare const CreateIntegrationStoreDirectPropertiesAtBRANDAt7820$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesAtBRANDAt7820, z.ZodTypeDef, unknown>;
4831
4859
  /** @internal */
4832
- export type CreateIntegrationStoreDirectPropertiesAtBRANDAt7838$Outbound = {};
4860
+ export type CreateIntegrationStoreDirectPropertiesAtBRANDAt7820$Outbound = {};
4833
4861
  /** @internal */
4834
- export declare const CreateIntegrationStoreDirectPropertiesAtBRANDAt7838$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesAtBRANDAt7838$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesAtBRANDAt7838>;
4862
+ export declare const CreateIntegrationStoreDirectPropertiesAtBRANDAt7820$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesAtBRANDAt7820$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesAtBRANDAt7820>;
4835
4863
  /**
4836
4864
  * @internal
4837
4865
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4838
4866
  */
4839
- export declare namespace CreateIntegrationStoreDirectPropertiesAtBRANDAt7838$ {
4840
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt7838$inboundSchema` instead. */
4841
- const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesAtBRANDAt7838, z.ZodTypeDef, unknown>;
4842
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt7838$outboundSchema` instead. */
4843
- const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesAtBRANDAt7838$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesAtBRANDAt7838>;
4844
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt7838$Outbound` instead. */
4845
- type Outbound = CreateIntegrationStoreDirectPropertiesAtBRANDAt7838$Outbound;
4867
+ export declare namespace CreateIntegrationStoreDirectPropertiesAtBRANDAt7820$ {
4868
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt7820$inboundSchema` instead. */
4869
+ const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesAtBRANDAt7820, z.ZodTypeDef, unknown>;
4870
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt7820$outboundSchema` instead. */
4871
+ const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesAtBRANDAt7820$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesAtBRANDAt7820>;
4872
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt7820$Outbound` instead. */
4873
+ type Outbound = CreateIntegrationStoreDirectPropertiesAtBRANDAt7820$Outbound;
4846
4874
  }
4847
- export declare function createIntegrationStoreDirectPropertiesAtBRANDAt7838ToJSON(createIntegrationStoreDirectPropertiesAtBRANDAt7838: CreateIntegrationStoreDirectPropertiesAtBRANDAt7838): string;
4848
- export declare function createIntegrationStoreDirectPropertiesAtBRANDAt7838FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesAtBRANDAt7838, SDKValidationError>;
4875
+ export declare function createIntegrationStoreDirectPropertiesAtBRANDAt7820ToJSON(createIntegrationStoreDirectPropertiesAtBRANDAt7820: CreateIntegrationStoreDirectPropertiesAtBRANDAt7820): string;
4876
+ export declare function createIntegrationStoreDirectPropertiesAtBRANDAt7820FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesAtBRANDAt7820, SDKValidationError>;
4849
4877
  /** @internal */
4850
4878
  export declare const CreateIntegrationStoreDirectPropertiesPattern$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesPattern, z.ZodTypeDef, unknown>;
4851
4879
  /** @internal */
4852
4880
  export type CreateIntegrationStoreDirectPropertiesPattern$Outbound = {
4853
- "__@BRAND@7838": CreateIntegrationStoreDirectPropertiesAtBRANDAt7838$Outbound;
4881
+ "__@BRAND@7820": CreateIntegrationStoreDirectPropertiesAtBRANDAt7820$Outbound;
4854
4882
  };
4855
4883
  /** @internal */
4856
4884
  export declare const CreateIntegrationStoreDirectPropertiesPattern$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesPattern$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesPattern>;
@@ -5238,8 +5266,8 @@ export declare namespace Tags$ {
5238
5266
  readonly Redis: "redis";
5239
5267
  readonly Postgres: "postgres";
5240
5268
  readonly Blob: "blob";
5241
- readonly Checks: "checks";
5242
5269
  readonly Experimentation: "experimentation";
5270
+ readonly Checks: "checks";
5243
5271
  readonly Storage: "storage";
5244
5272
  readonly Ai: "ai";
5245
5273
  readonly Observability: "observability";
@@ -5285,8 +5313,8 @@ export declare namespace Tags$ {
5285
5313
  readonly Redis: "redis";
5286
5314
  readonly Postgres: "postgres";
5287
5315
  readonly Blob: "blob";
5288
- readonly Checks: "checks";
5289
5316
  readonly Experimentation: "experimentation";
5317
+ readonly Checks: "checks";
5290
5318
  readonly Storage: "storage";
5291
5319
  readonly Ai: "ai";
5292
5320
  readonly Observability: "observability";
@@ -5349,7 +5377,6 @@ export declare namespace ProjectConnectionScopes$ {
5349
5377
  readonly ReadWriteLogDrain: "read-write:log-drain";
5350
5378
  readonly ReadWriteProjectEnvVars: "read-write:project-env-vars";
5351
5379
  readonly ReadWriteProjectProtectionBypass: "read-write:project-protection-bypass";
5352
- readonly ReadWriteTraceDrain: "read-write:trace-drain";
5353
5380
  }>;
5354
5381
  /** @deprecated use `ProjectConnectionScopes$outboundSchema` instead. */
5355
5382
  const outboundSchema: z.ZodNativeEnum<{
@@ -5364,7 +5391,6 @@ export declare namespace ProjectConnectionScopes$ {
5364
5391
  readonly ReadWriteLogDrain: "read-write:log-drain";
5365
5392
  readonly ReadWriteProjectEnvVars: "read-write:project-env-vars";
5366
5393
  readonly ReadWriteProjectProtectionBypass: "read-write:project-protection-bypass";
5367
- readonly ReadWriteTraceDrain: "read-write:trace-drain";
5368
5394
  }>;
5369
5395
  }
5370
5396
  /** @internal */
@@ -5482,30 +5508,30 @@ export declare namespace Guides$ {
5482
5508
  export declare function guidesToJSON(guides: Guides): string;
5483
5509
  export declare function guidesFromJSON(jsonString: string): SafeParseResult<Guides, SDKValidationError>;
5484
5510
  /** @internal */
5485
- export declare const AtBRANDAt7838$inboundSchema: z.ZodType<AtBRANDAt7838, z.ZodTypeDef, unknown>;
5511
+ export declare const AtBRANDAt7820$inboundSchema: z.ZodType<AtBRANDAt7820, z.ZodTypeDef, unknown>;
5486
5512
  /** @internal */
5487
- export type AtBRANDAt7838$Outbound = {};
5513
+ export type AtBRANDAt7820$Outbound = {};
5488
5514
  /** @internal */
5489
- export declare const AtBRANDAt7838$outboundSchema: z.ZodType<AtBRANDAt7838$Outbound, z.ZodTypeDef, AtBRANDAt7838>;
5515
+ export declare const AtBRANDAt7820$outboundSchema: z.ZodType<AtBRANDAt7820$Outbound, z.ZodTypeDef, AtBRANDAt7820>;
5490
5516
  /**
5491
5517
  * @internal
5492
5518
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5493
5519
  */
5494
- export declare namespace AtBRANDAt7838$ {
5495
- /** @deprecated use `AtBRANDAt7838$inboundSchema` instead. */
5496
- const inboundSchema: z.ZodType<AtBRANDAt7838, z.ZodTypeDef, unknown>;
5497
- /** @deprecated use `AtBRANDAt7838$outboundSchema` instead. */
5498
- const outboundSchema: z.ZodType<AtBRANDAt7838$Outbound, z.ZodTypeDef, AtBRANDAt7838>;
5499
- /** @deprecated use `AtBRANDAt7838$Outbound` instead. */
5500
- type Outbound = AtBRANDAt7838$Outbound;
5520
+ export declare namespace AtBRANDAt7820$ {
5521
+ /** @deprecated use `AtBRANDAt7820$inboundSchema` instead. */
5522
+ const inboundSchema: z.ZodType<AtBRANDAt7820, z.ZodTypeDef, unknown>;
5523
+ /** @deprecated use `AtBRANDAt7820$outboundSchema` instead. */
5524
+ const outboundSchema: z.ZodType<AtBRANDAt7820$Outbound, z.ZodTypeDef, AtBRANDAt7820>;
5525
+ /** @deprecated use `AtBRANDAt7820$Outbound` instead. */
5526
+ type Outbound = AtBRANDAt7820$Outbound;
5501
5527
  }
5502
- export declare function atBRANDAt7838ToJSON(atBRANDAt7838: AtBRANDAt7838): string;
5503
- export declare function atBRANDAt7838FromJSON(jsonString: string): SafeParseResult<AtBRANDAt7838, SDKValidationError>;
5528
+ export declare function atBRANDAt7820ToJSON(atBRANDAt7820: AtBRANDAt7820): string;
5529
+ export declare function atBRANDAt7820FromJSON(jsonString: string): SafeParseResult<AtBRANDAt7820, SDKValidationError>;
5504
5530
  /** @internal */
5505
5531
  export declare const CreateIntegrationStoreDirectValue$inboundSchema: z.ZodType<CreateIntegrationStoreDirectValue, z.ZodTypeDef, unknown>;
5506
5532
  /** @internal */
5507
5533
  export type CreateIntegrationStoreDirectValue$Outbound = {
5508
- "__@BRAND@7838": AtBRANDAt7838$Outbound;
5534
+ "__@BRAND@7820": AtBRANDAt7820$Outbound;
5509
5535
  };
5510
5536
  /** @internal */
5511
5537
  export declare const CreateIntegrationStoreDirectValue$outboundSchema: z.ZodType<CreateIntegrationStoreDirectValue$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectValue>;
@@ -5955,6 +5981,7 @@ export type CreateIntegrationStoreDirectStore$Outbound = {
5955
5981
  totalConnectedProjects?: number | undefined;
5956
5982
  usageQuotaExceeded: boolean;
5957
5983
  status: string | null;
5984
+ ownership?: string | undefined;
5958
5985
  metadata?: {
5959
5986
  [k: string]: string | number | boolean | Array<string> | Array<number>;
5960
5987
  } | undefined;