@vercel/sdk 1.10.8 → 1.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (105) hide show
  1. package/bin/mcp-server.js +3715 -927
  2. package/bin/mcp-server.js.map +20 -20
  3. package/esm/__tests__/accessgroups.test.js +6 -6
  4. package/esm/__tests__/accessgroups.test.js.map +1 -1
  5. package/esm/__tests__/domains.test.js +5 -6
  6. package/esm/__tests__/domains.test.js.map +1 -1
  7. package/esm/__tests__/edgeconfig.test.js +6 -6
  8. package/esm/__tests__/edgeconfig.test.js.map +1 -1
  9. package/esm/__tests__/integrations.test.js +1 -1
  10. package/esm/__tests__/rollingrelease.test.js +2 -2
  11. package/esm/__tests__/rollingrelease.test.js.map +1 -1
  12. package/esm/__tests__/security.test.js +11 -1
  13. package/esm/__tests__/security.test.js.map +1 -1
  14. package/esm/__tests__/teams.test.js +2 -2
  15. package/esm/__tests__/teams.test.js.map +1 -1
  16. package/esm/lib/config.d.ts +3 -3
  17. package/esm/lib/config.js +3 -3
  18. package/esm/mcp-server/mcp-server.js +1 -1
  19. package/esm/mcp-server/server.js +1 -1
  20. package/esm/models/canceldeploymentop.d.ts +41 -41
  21. package/esm/models/canceldeploymentop.d.ts.map +1 -1
  22. package/esm/models/canceldeploymentop.js +43 -41
  23. package/esm/models/canceldeploymentop.js.map +1 -1
  24. package/esm/models/createdeploymentop.d.ts +98 -98
  25. package/esm/models/createdeploymentop.d.ts.map +1 -1
  26. package/esm/models/createdeploymentop.js +113 -117
  27. package/esm/models/createdeploymentop.js.map +1 -1
  28. package/esm/models/createintegrationstoredirectop.d.ts +240 -240
  29. package/esm/models/createintegrationstoredirectop.js +294 -294
  30. package/esm/models/createprojectop.d.ts +1626 -281
  31. package/esm/models/createprojectop.d.ts.map +1 -1
  32. package/esm/models/createprojectop.js +1676 -298
  33. package/esm/models/createprojectop.js.map +1 -1
  34. package/esm/models/createwebhookop.d.ts +72 -66
  35. package/esm/models/createwebhookop.d.ts.map +1 -1
  36. package/esm/models/createwebhookop.js +24 -22
  37. package/esm/models/createwebhookop.js.map +1 -1
  38. package/esm/models/getconfigurationproductsop.d.ts +330 -330
  39. package/esm/models/getconfigurationproductsop.js +408 -408
  40. package/esm/models/getdeploymentop.d.ts +16 -16
  41. package/esm/models/getdeploymentop.d.ts.map +1 -1
  42. package/esm/models/getdeploymentop.js +24 -24
  43. package/esm/models/getdeploymentop.js.map +1 -1
  44. package/esm/models/getprojectsop.d.ts +1402 -57
  45. package/esm/models/getprojectsop.d.ts.map +1 -1
  46. package/esm/models/getprojectsop.js +1575 -202
  47. package/esm/models/getprojectsop.js.map +1 -1
  48. package/esm/models/getwebhookop.d.ts +36 -33
  49. package/esm/models/getwebhookop.d.ts.map +1 -1
  50. package/esm/models/getwebhookop.js +12 -11
  51. package/esm/models/getwebhookop.js.map +1 -1
  52. package/esm/models/getwebhooksop.d.ts +72 -66
  53. package/esm/models/getwebhooksop.d.ts.map +1 -1
  54. package/esm/models/getwebhooksop.js +24 -22
  55. package/esm/models/getwebhooksop.js.map +1 -1
  56. package/esm/models/listaccessgroupsop.d.ts +2 -5
  57. package/esm/models/listaccessgroupsop.d.ts.map +1 -1
  58. package/esm/models/listaccessgroupsop.js +2 -2
  59. package/esm/models/listaccessgroupsop.js.map +1 -1
  60. package/esm/models/readaccessgroupop.d.ts +48 -5
  61. package/esm/models/readaccessgroupop.d.ts.map +1 -1
  62. package/esm/models/readaccessgroupop.js +30 -2
  63. package/esm/models/readaccessgroupop.js.map +1 -1
  64. package/esm/models/team.d.ts +35 -18
  65. package/esm/models/team.d.ts.map +1 -1
  66. package/esm/models/team.js +15 -13
  67. package/esm/models/team.js.map +1 -1
  68. package/esm/models/updateprojectdatacacheop.d.ts +1402 -57
  69. package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
  70. package/esm/models/updateprojectdatacacheop.js +1584 -200
  71. package/esm/models/updateprojectdatacacheop.js.map +1 -1
  72. package/esm/models/updateprojectop.d.ts +1402 -57
  73. package/esm/models/updateprojectop.d.ts.map +1 -1
  74. package/esm/models/updateprojectop.js +1579 -202
  75. package/esm/models/updateprojectop.js.map +1 -1
  76. package/examples/package-lock.json +1 -1
  77. package/examples/projectsUpdateProject.example.ts +1 -1
  78. package/jsr.json +1 -1
  79. package/package.json +1 -1
  80. package/src/__tests__/accessgroups.test.ts +6 -6
  81. package/src/__tests__/domains.test.ts +5 -6
  82. package/src/__tests__/edgeconfig.test.ts +6 -6
  83. package/src/__tests__/integrations.test.ts +1 -1
  84. package/src/__tests__/rollingrelease.test.ts +2 -2
  85. package/src/__tests__/security.test.ts +11 -1
  86. package/src/__tests__/teams.test.ts +2 -2
  87. package/src/lib/config.ts +3 -3
  88. package/src/mcp-server/mcp-server.ts +1 -1
  89. package/src/mcp-server/server.ts +1 -1
  90. package/src/models/canceldeploymentop.ts +84 -64
  91. package/src/models/createdeploymentop.ts +239 -192
  92. package/src/models/createintegrationstoredirectop.ts +505 -505
  93. package/src/models/createprojectop.ts +3443 -466
  94. package/src/models/createwebhookop.ts +24 -22
  95. package/src/models/getconfigurationproductsop.ts +703 -703
  96. package/src/models/getdeploymentop.ts +34 -34
  97. package/src/models/getprojectsop.ts +3255 -300
  98. package/src/models/getwebhookop.ts +12 -11
  99. package/src/models/getwebhooksop.ts +24 -22
  100. package/src/models/listaccessgroupsop.ts +4 -7
  101. package/src/models/readaccessgroupop.ts +42 -7
  102. package/src/models/team.ts +47 -28
  103. package/src/models/updateprojectdatacacheop.ts +3184 -307
  104. package/src/models/updateprojectop.ts +3290 -298
  105. package/vercel-spec.json +4895 -2034
@@ -206,12 +206,12 @@ export type CreateIntegrationStoreDirectIntegrationsType = ClosedEnum<
206
206
  typeof CreateIntegrationStoreDirectIntegrationsType
207
207
  >;
208
208
 
209
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7825 =
209
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757 =
210
210
  {};
211
211
 
212
212
  export type CreateIntegrationStoreDirectPropertiesValue = {
213
- atBRANDAt7825:
214
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7825;
213
+ atBRANDAt7757:
214
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757;
215
215
  };
216
216
 
217
217
  export const CreateIntegrationStoreDirectDisabled3 = {
@@ -280,10 +280,10 @@ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applica
280
280
  typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl
281
281
  >;
282
282
 
283
- export type CreateIntegrationStoreDirectUiOptionsAtBRANDAt7825 = {};
283
+ export type CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757 = {};
284
284
 
285
285
  export type CreateIntegrationStoreDirectUiOptionsValue = {
286
- atBRANDAt7825: CreateIntegrationStoreDirectUiOptionsAtBRANDAt7825;
286
+ atBRANDAt7757: CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757;
287
287
  };
288
288
 
289
289
  export const CreateIntegrationStoreDirectDisabledIntegrationsResponse2003 = {
@@ -334,10 +334,10 @@ export type CreateIntegrationStoreDirectUiOptions3 = {
334
334
  | undefined;
335
335
  };
336
336
 
337
- export type UiOptionsAtBRANDAt7825 = {};
337
+ export type UiOptionsAtBRANDAt7757 = {};
338
338
 
339
339
  export type CreateIntegrationStoreDirectUiOptions2 = {
340
- atBRANDAt7825: UiOptionsAtBRANDAt7825;
340
+ atBRANDAt7757: UiOptionsAtBRANDAt7757;
341
341
  };
342
342
 
343
343
  export const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3 =
@@ -400,31 +400,31 @@ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiOptions
400
400
  | CreateIntegrationStoreDirectUiOptions2
401
401
  | CreateIntegrationStoreDirectUiOptions3;
402
402
 
403
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7825 =
403
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757 =
404
404
  {};
405
405
 
406
406
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength =
407
407
  {
408
- atBRANDAt7825:
409
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7825;
408
+ atBRANDAt7757:
409
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757;
410
410
  };
411
411
 
412
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7825 =
412
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757 =
413
413
  {};
414
414
 
415
415
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength =
416
416
  {
417
- atBRANDAt7825:
418
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7825;
417
+ atBRANDAt7757:
418
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757;
419
419
  };
420
420
 
421
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7825 =
421
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757 =
422
422
  {};
423
423
 
424
424
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern =
425
425
  {
426
- atBRANDAt7825:
427
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7825;
426
+ atBRANDAt7757:
427
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757;
428
428
  };
429
429
 
430
430
  export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStore3 =
@@ -567,31 +567,31 @@ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applica
567
567
  typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType
568
568
  >;
569
569
 
570
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7825 =
570
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757 =
571
571
  {};
572
572
 
573
573
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength =
574
574
  {
575
- atBRANDAt7825:
576
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7825;
575
+ atBRANDAt7757:
576
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757;
577
577
  };
578
578
 
579
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7825 =
579
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757 =
580
580
  {};
581
581
 
582
582
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength =
583
583
  {
584
- atBRANDAt7825:
585
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7825;
584
+ atBRANDAt7757:
585
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757;
586
586
  };
587
587
 
588
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7825 =
588
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757 =
589
589
  {};
590
590
 
591
591
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern =
592
592
  {
593
- atBRANDAt7825:
594
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7825;
593
+ atBRANDAt7757:
594
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757;
595
595
  };
596
596
 
597
597
  export type CreateIntegrationStoreDirectPropertiesIntegrationsItems = {
@@ -846,28 +846,28 @@ export type CreateIntegrationStoreDirectPropertiesUiOptions = {
846
846
  | undefined;
847
847
  };
848
848
 
849
- export type CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7825 =
849
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757 =
850
850
  {};
851
851
 
852
852
  export type CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength = {
853
- atBRANDAt7825:
854
- CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7825;
853
+ atBRANDAt7757:
854
+ CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757;
855
855
  };
856
856
 
857
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7825 =
857
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757 =
858
858
  {};
859
859
 
860
860
  export type CreateIntegrationStoreDirectPropertiesIntegrationsMinLength = {
861
- atBRANDAt7825:
862
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7825;
861
+ atBRANDAt7757:
862
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757;
863
863
  };
864
864
 
865
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7825 =
865
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757 =
866
866
  {};
867
867
 
868
868
  export type CreateIntegrationStoreDirectPropertiesIntegrationsPattern = {
869
- atBRANDAt7825:
870
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7825;
869
+ atBRANDAt7757:
870
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757;
871
871
  };
872
872
 
873
873
  export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJson3 =
@@ -1370,24 +1370,24 @@ export type CreateIntegrationStoreDirectPropertiesUiControl = ClosedEnum<
1370
1370
  typeof CreateIntegrationStoreDirectPropertiesUiControl
1371
1371
  >;
1372
1372
 
1373
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7825 =
1373
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757 =
1374
1374
  {};
1375
1375
 
1376
1376
  export type CreateIntegrationStoreDirectPropertiesMaxLength = {
1377
- atBRANDAt7825:
1378
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7825;
1377
+ atBRANDAt7757:
1378
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757;
1379
1379
  };
1380
1380
 
1381
- export type PropertiesAtBRANDAt7825 = {};
1381
+ export type PropertiesAtBRANDAt7757 = {};
1382
1382
 
1383
1383
  export type CreateIntegrationStoreDirectPropertiesMinLength = {
1384
- atBRANDAt7825: PropertiesAtBRANDAt7825;
1384
+ atBRANDAt7757: PropertiesAtBRANDAt7757;
1385
1385
  };
1386
1386
 
1387
- export type CreateIntegrationStoreDirectPropertiesAtBRANDAt7825 = {};
1387
+ export type CreateIntegrationStoreDirectPropertiesAtBRANDAt7757 = {};
1388
1388
 
1389
1389
  export type CreateIntegrationStoreDirectPropertiesPattern = {
1390
- atBRANDAt7825: CreateIntegrationStoreDirectPropertiesAtBRANDAt7825;
1390
+ atBRANDAt7757: CreateIntegrationStoreDirectPropertiesAtBRANDAt7757;
1391
1391
  };
1392
1392
 
1393
1393
  export const CreateIntegrationStoreDirectUiReadOnly3 = {
@@ -1613,10 +1613,10 @@ export type Guides = {
1613
1613
  steps: Array<Steps>;
1614
1614
  };
1615
1615
 
1616
- export type AtBRANDAt7825 = {};
1616
+ export type AtBRANDAt7757 = {};
1617
1617
 
1618
1618
  export type CreateIntegrationStoreDirectValue = {
1619
- atBRANDAt7825: AtBRANDAt7825;
1619
+ atBRANDAt7757: AtBRANDAt7757;
1620
1620
  };
1621
1621
 
1622
1622
  export const Disabled3 = {
@@ -2430,65 +2430,65 @@ export namespace CreateIntegrationStoreDirectIntegrationsType$ {
2430
2430
  }
2431
2431
 
2432
2432
  /** @internal */
2433
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7825$inboundSchema:
2433
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757$inboundSchema:
2434
2434
  z.ZodType<
2435
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7825,
2435
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757,
2436
2436
  z.ZodTypeDef,
2437
2437
  unknown
2438
2438
  > = z.object({});
2439
2439
 
2440
2440
  /** @internal */
2441
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7825$Outbound =
2441
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757$Outbound =
2442
2442
  {};
2443
2443
 
2444
2444
  /** @internal */
2445
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7825$outboundSchema:
2445
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757$outboundSchema:
2446
2446
  z.ZodType<
2447
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7825$Outbound,
2447
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757$Outbound,
2448
2448
  z.ZodTypeDef,
2449
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7825
2449
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757
2450
2450
  > = z.object({});
2451
2451
 
2452
2452
  /**
2453
2453
  * @internal
2454
2454
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2455
2455
  */
2456
- export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7825$ {
2457
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7825$inboundSchema` instead. */
2456
+ export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757$ {
2457
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757$inboundSchema` instead. */
2458
2458
  export const inboundSchema =
2459
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7825$inboundSchema;
2460
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7825$outboundSchema` instead. */
2459
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757$inboundSchema;
2460
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757$outboundSchema` instead. */
2461
2461
  export const outboundSchema =
2462
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7825$outboundSchema;
2463
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7825$Outbound` instead. */
2462
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757$outboundSchema;
2463
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757$Outbound` instead. */
2464
2464
  export type Outbound =
2465
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7825$Outbound;
2465
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757$Outbound;
2466
2466
  }
2467
2467
 
2468
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7825ToJSON(
2469
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7825:
2470
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7825,
2468
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757ToJSON(
2469
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757:
2470
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757,
2471
2471
  ): string {
2472
2472
  return JSON.stringify(
2473
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7825$outboundSchema
2473
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757$outboundSchema
2474
2474
  .parse(
2475
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7825,
2475
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757,
2476
2476
  ),
2477
2477
  );
2478
2478
  }
2479
2479
 
2480
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7825FromJSON(
2480
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757FromJSON(
2481
2481
  jsonString: string,
2482
2482
  ): SafeParseResult<
2483
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7825,
2483
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757,
2484
2484
  SDKValidationError
2485
2485
  > {
2486
2486
  return safeParse(
2487
2487
  jsonString,
2488
2488
  (x) =>
2489
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7825$inboundSchema
2489
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757$inboundSchema
2490
2490
  .parse(JSON.parse(x)),
2491
- `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7825' from JSON`,
2491
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757' from JSON`,
2492
2492
  );
2493
2493
  }
2494
2494
 
@@ -2499,19 +2499,19 @@ export const CreateIntegrationStoreDirectPropertiesValue$inboundSchema:
2499
2499
  z.ZodTypeDef,
2500
2500
  unknown
2501
2501
  > = z.object({
2502
- "__@BRAND@7825": z.lazy(() =>
2503
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7825$inboundSchema
2502
+ "__@BRAND@7757": z.lazy(() =>
2503
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757$inboundSchema
2504
2504
  ),
2505
2505
  }).transform((v) => {
2506
2506
  return remap$(v, {
2507
- "__@BRAND@7825": "atBRANDAt7825",
2507
+ "__@BRAND@7757": "atBRANDAt7757",
2508
2508
  });
2509
2509
  });
2510
2510
 
2511
2511
  /** @internal */
2512
2512
  export type CreateIntegrationStoreDirectPropertiesValue$Outbound = {
2513
- "__@BRAND@7825":
2514
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7825$Outbound;
2513
+ "__@BRAND@7757":
2514
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757$Outbound;
2515
2515
  };
2516
2516
 
2517
2517
  /** @internal */
@@ -2521,12 +2521,12 @@ export const CreateIntegrationStoreDirectPropertiesValue$outboundSchema:
2521
2521
  z.ZodTypeDef,
2522
2522
  CreateIntegrationStoreDirectPropertiesValue
2523
2523
  > = z.object({
2524
- atBRANDAt7825: z.lazy(() =>
2525
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7825$outboundSchema
2524
+ atBRANDAt7757: z.lazy(() =>
2525
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757$outboundSchema
2526
2526
  ),
2527
2527
  }).transform((v) => {
2528
2528
  return remap$(v, {
2529
- atBRANDAt7825: "__@BRAND@7825",
2529
+ atBRANDAt7757: "__@BRAND@7757",
2530
2530
  });
2531
2531
  });
2532
2532
 
@@ -3038,64 +3038,64 @@ export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Ap
3038
3038
  }
3039
3039
 
3040
3040
  /** @internal */
3041
- export const CreateIntegrationStoreDirectUiOptionsAtBRANDAt7825$inboundSchema:
3041
+ export const CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757$inboundSchema:
3042
3042
  z.ZodType<
3043
- CreateIntegrationStoreDirectUiOptionsAtBRANDAt7825,
3043
+ CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757,
3044
3044
  z.ZodTypeDef,
3045
3045
  unknown
3046
3046
  > = z.object({});
3047
3047
 
3048
3048
  /** @internal */
3049
- export type CreateIntegrationStoreDirectUiOptionsAtBRANDAt7825$Outbound = {};
3049
+ export type CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757$Outbound = {};
3050
3050
 
3051
3051
  /** @internal */
3052
- export const CreateIntegrationStoreDirectUiOptionsAtBRANDAt7825$outboundSchema:
3052
+ export const CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757$outboundSchema:
3053
3053
  z.ZodType<
3054
- CreateIntegrationStoreDirectUiOptionsAtBRANDAt7825$Outbound,
3054
+ CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757$Outbound,
3055
3055
  z.ZodTypeDef,
3056
- CreateIntegrationStoreDirectUiOptionsAtBRANDAt7825
3056
+ CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757
3057
3057
  > = z.object({});
3058
3058
 
3059
3059
  /**
3060
3060
  * @internal
3061
3061
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3062
3062
  */
3063
- export namespace CreateIntegrationStoreDirectUiOptionsAtBRANDAt7825$ {
3064
- /** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt7825$inboundSchema` instead. */
3063
+ export namespace CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757$ {
3064
+ /** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757$inboundSchema` instead. */
3065
3065
  export const inboundSchema =
3066
- CreateIntegrationStoreDirectUiOptionsAtBRANDAt7825$inboundSchema;
3067
- /** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt7825$outboundSchema` instead. */
3066
+ CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757$inboundSchema;
3067
+ /** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757$outboundSchema` instead. */
3068
3068
  export const outboundSchema =
3069
- CreateIntegrationStoreDirectUiOptionsAtBRANDAt7825$outboundSchema;
3070
- /** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt7825$Outbound` instead. */
3069
+ CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757$outboundSchema;
3070
+ /** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757$Outbound` instead. */
3071
3071
  export type Outbound =
3072
- CreateIntegrationStoreDirectUiOptionsAtBRANDAt7825$Outbound;
3072
+ CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757$Outbound;
3073
3073
  }
3074
3074
 
3075
- export function createIntegrationStoreDirectUiOptionsAtBRANDAt7825ToJSON(
3076
- createIntegrationStoreDirectUiOptionsAtBRANDAt7825:
3077
- CreateIntegrationStoreDirectUiOptionsAtBRANDAt7825,
3075
+ export function createIntegrationStoreDirectUiOptionsAtBRANDAt7757ToJSON(
3076
+ createIntegrationStoreDirectUiOptionsAtBRANDAt7757:
3077
+ CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757,
3078
3078
  ): string {
3079
3079
  return JSON.stringify(
3080
- CreateIntegrationStoreDirectUiOptionsAtBRANDAt7825$outboundSchema.parse(
3081
- createIntegrationStoreDirectUiOptionsAtBRANDAt7825,
3080
+ CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757$outboundSchema.parse(
3081
+ createIntegrationStoreDirectUiOptionsAtBRANDAt7757,
3082
3082
  ),
3083
3083
  );
3084
3084
  }
3085
3085
 
3086
- export function createIntegrationStoreDirectUiOptionsAtBRANDAt7825FromJSON(
3086
+ export function createIntegrationStoreDirectUiOptionsAtBRANDAt7757FromJSON(
3087
3087
  jsonString: string,
3088
3088
  ): SafeParseResult<
3089
- CreateIntegrationStoreDirectUiOptionsAtBRANDAt7825,
3089
+ CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757,
3090
3090
  SDKValidationError
3091
3091
  > {
3092
3092
  return safeParse(
3093
3093
  jsonString,
3094
3094
  (x) =>
3095
- CreateIntegrationStoreDirectUiOptionsAtBRANDAt7825$inboundSchema.parse(
3095
+ CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757$inboundSchema.parse(
3096
3096
  JSON.parse(x),
3097
3097
  ),
3098
- `Failed to parse 'CreateIntegrationStoreDirectUiOptionsAtBRANDAt7825' from JSON`,
3098
+ `Failed to parse 'CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757' from JSON`,
3099
3099
  );
3100
3100
  }
3101
3101
 
@@ -3103,18 +3103,18 @@ export function createIntegrationStoreDirectUiOptionsAtBRANDAt7825FromJSON(
3103
3103
  export const CreateIntegrationStoreDirectUiOptionsValue$inboundSchema:
3104
3104
  z.ZodType<CreateIntegrationStoreDirectUiOptionsValue, z.ZodTypeDef, unknown> =
3105
3105
  z.object({
3106
- "__@BRAND@7825": z.lazy(() =>
3107
- CreateIntegrationStoreDirectUiOptionsAtBRANDAt7825$inboundSchema
3106
+ "__@BRAND@7757": z.lazy(() =>
3107
+ CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757$inboundSchema
3108
3108
  ),
3109
3109
  }).transform((v) => {
3110
3110
  return remap$(v, {
3111
- "__@BRAND@7825": "atBRANDAt7825",
3111
+ "__@BRAND@7757": "atBRANDAt7757",
3112
3112
  });
3113
3113
  });
3114
3114
 
3115
3115
  /** @internal */
3116
3116
  export type CreateIntegrationStoreDirectUiOptionsValue$Outbound = {
3117
- "__@BRAND@7825": CreateIntegrationStoreDirectUiOptionsAtBRANDAt7825$Outbound;
3117
+ "__@BRAND@7757": CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757$Outbound;
3118
3118
  };
3119
3119
 
3120
3120
  /** @internal */
@@ -3124,12 +3124,12 @@ export const CreateIntegrationStoreDirectUiOptionsValue$outboundSchema:
3124
3124
  z.ZodTypeDef,
3125
3125
  CreateIntegrationStoreDirectUiOptionsValue
3126
3126
  > = z.object({
3127
- atBRANDAt7825: z.lazy(() =>
3128
- CreateIntegrationStoreDirectUiOptionsAtBRANDAt7825$outboundSchema
3127
+ atBRANDAt7757: z.lazy(() =>
3128
+ CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757$outboundSchema
3129
3129
  ),
3130
3130
  }).transform((v) => {
3131
3131
  return remap$(v, {
3132
- atBRANDAt7825: "__@BRAND@7825",
3132
+ atBRANDAt7757: "__@BRAND@7757",
3133
3133
  });
3134
3134
  });
3135
3135
 
@@ -3613,50 +3613,50 @@ export function createIntegrationStoreDirectUiOptions3FromJSON(
3613
3613
  }
3614
3614
 
3615
3615
  /** @internal */
3616
- export const UiOptionsAtBRANDAt7825$inboundSchema: z.ZodType<
3617
- UiOptionsAtBRANDAt7825,
3616
+ export const UiOptionsAtBRANDAt7757$inboundSchema: z.ZodType<
3617
+ UiOptionsAtBRANDAt7757,
3618
3618
  z.ZodTypeDef,
3619
3619
  unknown
3620
3620
  > = z.object({});
3621
3621
 
3622
3622
  /** @internal */
3623
- export type UiOptionsAtBRANDAt7825$Outbound = {};
3623
+ export type UiOptionsAtBRANDAt7757$Outbound = {};
3624
3624
 
3625
3625
  /** @internal */
3626
- export const UiOptionsAtBRANDAt7825$outboundSchema: z.ZodType<
3627
- UiOptionsAtBRANDAt7825$Outbound,
3626
+ export const UiOptionsAtBRANDAt7757$outboundSchema: z.ZodType<
3627
+ UiOptionsAtBRANDAt7757$Outbound,
3628
3628
  z.ZodTypeDef,
3629
- UiOptionsAtBRANDAt7825
3629
+ UiOptionsAtBRANDAt7757
3630
3630
  > = z.object({});
3631
3631
 
3632
3632
  /**
3633
3633
  * @internal
3634
3634
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3635
3635
  */
3636
- export namespace UiOptionsAtBRANDAt7825$ {
3637
- /** @deprecated use `UiOptionsAtBRANDAt7825$inboundSchema` instead. */
3638
- export const inboundSchema = UiOptionsAtBRANDAt7825$inboundSchema;
3639
- /** @deprecated use `UiOptionsAtBRANDAt7825$outboundSchema` instead. */
3640
- export const outboundSchema = UiOptionsAtBRANDAt7825$outboundSchema;
3641
- /** @deprecated use `UiOptionsAtBRANDAt7825$Outbound` instead. */
3642
- export type Outbound = UiOptionsAtBRANDAt7825$Outbound;
3636
+ export namespace UiOptionsAtBRANDAt7757$ {
3637
+ /** @deprecated use `UiOptionsAtBRANDAt7757$inboundSchema` instead. */
3638
+ export const inboundSchema = UiOptionsAtBRANDAt7757$inboundSchema;
3639
+ /** @deprecated use `UiOptionsAtBRANDAt7757$outboundSchema` instead. */
3640
+ export const outboundSchema = UiOptionsAtBRANDAt7757$outboundSchema;
3641
+ /** @deprecated use `UiOptionsAtBRANDAt7757$Outbound` instead. */
3642
+ export type Outbound = UiOptionsAtBRANDAt7757$Outbound;
3643
3643
  }
3644
3644
 
3645
- export function uiOptionsAtBRANDAt7825ToJSON(
3646
- uiOptionsAtBRANDAt7825: UiOptionsAtBRANDAt7825,
3645
+ export function uiOptionsAtBRANDAt7757ToJSON(
3646
+ uiOptionsAtBRANDAt7757: UiOptionsAtBRANDAt7757,
3647
3647
  ): string {
3648
3648
  return JSON.stringify(
3649
- UiOptionsAtBRANDAt7825$outboundSchema.parse(uiOptionsAtBRANDAt7825),
3649
+ UiOptionsAtBRANDAt7757$outboundSchema.parse(uiOptionsAtBRANDAt7757),
3650
3650
  );
3651
3651
  }
3652
3652
 
3653
- export function uiOptionsAtBRANDAt7825FromJSON(
3653
+ export function uiOptionsAtBRANDAt7757FromJSON(
3654
3654
  jsonString: string,
3655
- ): SafeParseResult<UiOptionsAtBRANDAt7825, SDKValidationError> {
3655
+ ): SafeParseResult<UiOptionsAtBRANDAt7757, SDKValidationError> {
3656
3656
  return safeParse(
3657
3657
  jsonString,
3658
- (x) => UiOptionsAtBRANDAt7825$inboundSchema.parse(JSON.parse(x)),
3659
- `Failed to parse 'UiOptionsAtBRANDAt7825' from JSON`,
3658
+ (x) => UiOptionsAtBRANDAt7757$inboundSchema.parse(JSON.parse(x)),
3659
+ `Failed to parse 'UiOptionsAtBRANDAt7757' from JSON`,
3660
3660
  );
3661
3661
  }
3662
3662
 
@@ -3666,16 +3666,16 @@ export const CreateIntegrationStoreDirectUiOptions2$inboundSchema: z.ZodType<
3666
3666
  z.ZodTypeDef,
3667
3667
  unknown
3668
3668
  > = z.object({
3669
- "__@BRAND@7825": z.lazy(() => UiOptionsAtBRANDAt7825$inboundSchema),
3669
+ "__@BRAND@7757": z.lazy(() => UiOptionsAtBRANDAt7757$inboundSchema),
3670
3670
  }).transform((v) => {
3671
3671
  return remap$(v, {
3672
- "__@BRAND@7825": "atBRANDAt7825",
3672
+ "__@BRAND@7757": "atBRANDAt7757",
3673
3673
  });
3674
3674
  });
3675
3675
 
3676
3676
  /** @internal */
3677
3677
  export type CreateIntegrationStoreDirectUiOptions2$Outbound = {
3678
- "__@BRAND@7825": UiOptionsAtBRANDAt7825$Outbound;
3678
+ "__@BRAND@7757": UiOptionsAtBRANDAt7757$Outbound;
3679
3679
  };
3680
3680
 
3681
3681
  /** @internal */
@@ -3684,10 +3684,10 @@ export const CreateIntegrationStoreDirectUiOptions2$outboundSchema: z.ZodType<
3684
3684
  z.ZodTypeDef,
3685
3685
  CreateIntegrationStoreDirectUiOptions2
3686
3686
  > = z.object({
3687
- atBRANDAt7825: z.lazy(() => UiOptionsAtBRANDAt7825$outboundSchema),
3687
+ atBRANDAt7757: z.lazy(() => UiOptionsAtBRANDAt7757$outboundSchema),
3688
3688
  }).transform((v) => {
3689
3689
  return remap$(v, {
3690
- atBRANDAt7825: "__@BRAND@7825",
3690
+ atBRANDAt7757: "__@BRAND@7757",
3691
3691
  });
3692
3692
  });
3693
3693
 
@@ -4249,65 +4249,65 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponseUiOpti
4249
4249
  }
4250
4250
 
4251
4251
  /** @internal */
4252
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7825$inboundSchema:
4252
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757$inboundSchema:
4253
4253
  z.ZodType<
4254
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7825,
4254
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757,
4255
4255
  z.ZodTypeDef,
4256
4256
  unknown
4257
4257
  > = z.object({});
4258
4258
 
4259
4259
  /** @internal */
4260
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7825$Outbound =
4260
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757$Outbound =
4261
4261
  {};
4262
4262
 
4263
4263
  /** @internal */
4264
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7825$outboundSchema:
4264
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757$outboundSchema:
4265
4265
  z.ZodType<
4266
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7825$Outbound,
4266
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757$Outbound,
4267
4267
  z.ZodTypeDef,
4268
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7825
4268
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757
4269
4269
  > = z.object({});
4270
4270
 
4271
4271
  /**
4272
4272
  * @internal
4273
4273
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4274
4274
  */
4275
- export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7825$ {
4276
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7825$inboundSchema` instead. */
4275
+ export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757$ {
4276
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757$inboundSchema` instead. */
4277
4277
  export const inboundSchema =
4278
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7825$inboundSchema;
4279
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7825$outboundSchema` instead. */
4278
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757$inboundSchema;
4279
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757$outboundSchema` instead. */
4280
4280
  export const outboundSchema =
4281
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7825$outboundSchema;
4282
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7825$Outbound` instead. */
4281
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757$outboundSchema;
4282
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757$Outbound` instead. */
4283
4283
  export type Outbound =
4284
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7825$Outbound;
4284
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757$Outbound;
4285
4285
  }
4286
4286
 
4287
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7825ToJSON(
4288
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7825:
4289
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7825,
4287
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757ToJSON(
4288
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757:
4289
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757,
4290
4290
  ): string {
4291
4291
  return JSON.stringify(
4292
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7825$outboundSchema
4292
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757$outboundSchema
4293
4293
  .parse(
4294
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7825,
4294
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757,
4295
4295
  ),
4296
4296
  );
4297
4297
  }
4298
4298
 
4299
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7825FromJSON(
4299
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757FromJSON(
4300
4300
  jsonString: string,
4301
4301
  ): SafeParseResult<
4302
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7825,
4302
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757,
4303
4303
  SDKValidationError
4304
4304
  > {
4305
4305
  return safeParse(
4306
4306
  jsonString,
4307
4307
  (x) =>
4308
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7825$inboundSchema
4308
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757$inboundSchema
4309
4309
  .parse(JSON.parse(x)),
4310
- `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7825' from JSON`,
4310
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757' from JSON`,
4311
4311
  );
4312
4312
  }
4313
4313
 
@@ -4318,20 +4318,20 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength
4318
4318
  z.ZodTypeDef,
4319
4319
  unknown
4320
4320
  > = z.object({
4321
- "__@BRAND@7825": z.lazy(() =>
4322
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7825$inboundSchema
4321
+ "__@BRAND@7757": z.lazy(() =>
4322
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757$inboundSchema
4323
4323
  ),
4324
4324
  }).transform((v) => {
4325
4325
  return remap$(v, {
4326
- "__@BRAND@7825": "atBRANDAt7825",
4326
+ "__@BRAND@7757": "atBRANDAt7757",
4327
4327
  });
4328
4328
  });
4329
4329
 
4330
4330
  /** @internal */
4331
4331
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$Outbound =
4332
4332
  {
4333
- "__@BRAND@7825":
4334
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7825$Outbound;
4333
+ "__@BRAND@7757":
4334
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757$Outbound;
4335
4335
  };
4336
4336
 
4337
4337
  /** @internal */
@@ -4341,12 +4341,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength
4341
4341
  z.ZodTypeDef,
4342
4342
  CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength
4343
4343
  > = z.object({
4344
- atBRANDAt7825: z.lazy(() =>
4345
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7825$outboundSchema
4344
+ atBRANDAt7757: z.lazy(() =>
4345
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757$outboundSchema
4346
4346
  ),
4347
4347
  }).transform((v) => {
4348
4348
  return remap$(v, {
4349
- atBRANDAt7825: "__@BRAND@7825",
4349
+ atBRANDAt7757: "__@BRAND@7757",
4350
4350
  });
4351
4351
  });
4352
4352
 
@@ -4394,65 +4394,65 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponseMaxLen
4394
4394
  }
4395
4395
 
4396
4396
  /** @internal */
4397
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7825$inboundSchema:
4397
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757$inboundSchema:
4398
4398
  z.ZodType<
4399
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7825,
4399
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757,
4400
4400
  z.ZodTypeDef,
4401
4401
  unknown
4402
4402
  > = z.object({});
4403
4403
 
4404
4404
  /** @internal */
4405
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7825$Outbound =
4405
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757$Outbound =
4406
4406
  {};
4407
4407
 
4408
4408
  /** @internal */
4409
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7825$outboundSchema:
4409
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757$outboundSchema:
4410
4410
  z.ZodType<
4411
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7825$Outbound,
4411
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757$Outbound,
4412
4412
  z.ZodTypeDef,
4413
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7825
4413
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757
4414
4414
  > = z.object({});
4415
4415
 
4416
4416
  /**
4417
4417
  * @internal
4418
4418
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4419
4419
  */
4420
- export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7825$ {
4421
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7825$inboundSchema` instead. */
4420
+ export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757$ {
4421
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757$inboundSchema` instead. */
4422
4422
  export const inboundSchema =
4423
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7825$inboundSchema;
4424
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7825$outboundSchema` instead. */
4423
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757$inboundSchema;
4424
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757$outboundSchema` instead. */
4425
4425
  export const outboundSchema =
4426
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7825$outboundSchema;
4427
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7825$Outbound` instead. */
4426
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757$outboundSchema;
4427
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757$Outbound` instead. */
4428
4428
  export type Outbound =
4429
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7825$Outbound;
4429
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757$Outbound;
4430
4430
  }
4431
4431
 
4432
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7825ToJSON(
4433
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7825:
4434
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7825,
4432
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757ToJSON(
4433
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757:
4434
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757,
4435
4435
  ): string {
4436
4436
  return JSON.stringify(
4437
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7825$outboundSchema
4437
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757$outboundSchema
4438
4438
  .parse(
4439
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7825,
4439
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757,
4440
4440
  ),
4441
4441
  );
4442
4442
  }
4443
4443
 
4444
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7825FromJSON(
4444
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757FromJSON(
4445
4445
  jsonString: string,
4446
4446
  ): SafeParseResult<
4447
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7825,
4447
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757,
4448
4448
  SDKValidationError
4449
4449
  > {
4450
4450
  return safeParse(
4451
4451
  jsonString,
4452
4452
  (x) =>
4453
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7825$inboundSchema
4453
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757$inboundSchema
4454
4454
  .parse(JSON.parse(x)),
4455
- `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7825' from JSON`,
4455
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757' from JSON`,
4456
4456
  );
4457
4457
  }
4458
4458
 
@@ -4463,20 +4463,20 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength
4463
4463
  z.ZodTypeDef,
4464
4464
  unknown
4465
4465
  > = z.object({
4466
- "__@BRAND@7825": z.lazy(() =>
4467
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7825$inboundSchema
4466
+ "__@BRAND@7757": z.lazy(() =>
4467
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757$inboundSchema
4468
4468
  ),
4469
4469
  }).transform((v) => {
4470
4470
  return remap$(v, {
4471
- "__@BRAND@7825": "atBRANDAt7825",
4471
+ "__@BRAND@7757": "atBRANDAt7757",
4472
4472
  });
4473
4473
  });
4474
4474
 
4475
4475
  /** @internal */
4476
4476
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$Outbound =
4477
4477
  {
4478
- "__@BRAND@7825":
4479
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7825$Outbound;
4478
+ "__@BRAND@7757":
4479
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757$Outbound;
4480
4480
  };
4481
4481
 
4482
4482
  /** @internal */
@@ -4486,12 +4486,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength
4486
4486
  z.ZodTypeDef,
4487
4487
  CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength
4488
4488
  > = z.object({
4489
- atBRANDAt7825: z.lazy(() =>
4490
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7825$outboundSchema
4489
+ atBRANDAt7757: z.lazy(() =>
4490
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757$outboundSchema
4491
4491
  ),
4492
4492
  }).transform((v) => {
4493
4493
  return remap$(v, {
4494
- atBRANDAt7825: "__@BRAND@7825",
4494
+ atBRANDAt7757: "__@BRAND@7757",
4495
4495
  });
4496
4496
  });
4497
4497
 
@@ -4539,65 +4539,65 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponseMinLen
4539
4539
  }
4540
4540
 
4541
4541
  /** @internal */
4542
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7825$inboundSchema:
4542
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757$inboundSchema:
4543
4543
  z.ZodType<
4544
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7825,
4544
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757,
4545
4545
  z.ZodTypeDef,
4546
4546
  unknown
4547
4547
  > = z.object({});
4548
4548
 
4549
4549
  /** @internal */
4550
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7825$Outbound =
4550
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757$Outbound =
4551
4551
  {};
4552
4552
 
4553
4553
  /** @internal */
4554
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7825$outboundSchema:
4554
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757$outboundSchema:
4555
4555
  z.ZodType<
4556
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7825$Outbound,
4556
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757$Outbound,
4557
4557
  z.ZodTypeDef,
4558
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7825
4558
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757
4559
4559
  > = z.object({});
4560
4560
 
4561
4561
  /**
4562
4562
  * @internal
4563
4563
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4564
4564
  */
4565
- export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7825$ {
4566
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7825$inboundSchema` instead. */
4565
+ export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757$ {
4566
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757$inboundSchema` instead. */
4567
4567
  export const inboundSchema =
4568
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7825$inboundSchema;
4569
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7825$outboundSchema` instead. */
4568
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757$inboundSchema;
4569
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757$outboundSchema` instead. */
4570
4570
  export const outboundSchema =
4571
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7825$outboundSchema;
4572
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7825$Outbound` instead. */
4571
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757$outboundSchema;
4572
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757$Outbound` instead. */
4573
4573
  export type Outbound =
4574
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7825$Outbound;
4574
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757$Outbound;
4575
4575
  }
4576
4576
 
4577
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7825ToJSON(
4578
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7825:
4579
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7825,
4577
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757ToJSON(
4578
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757:
4579
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757,
4580
4580
  ): string {
4581
4581
  return JSON.stringify(
4582
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7825$outboundSchema
4582
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757$outboundSchema
4583
4583
  .parse(
4584
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7825,
4584
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757,
4585
4585
  ),
4586
4586
  );
4587
4587
  }
4588
4588
 
4589
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7825FromJSON(
4589
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757FromJSON(
4590
4590
  jsonString: string,
4591
4591
  ): SafeParseResult<
4592
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7825,
4592
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757,
4593
4593
  SDKValidationError
4594
4594
  > {
4595
4595
  return safeParse(
4596
4596
  jsonString,
4597
4597
  (x) =>
4598
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7825$inboundSchema
4598
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757$inboundSchema
4599
4599
  .parse(JSON.parse(x)),
4600
- `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7825' from JSON`,
4600
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757' from JSON`,
4601
4601
  );
4602
4602
  }
4603
4603
 
@@ -4608,20 +4608,20 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$i
4608
4608
  z.ZodTypeDef,
4609
4609
  unknown
4610
4610
  > = z.object({
4611
- "__@BRAND@7825": z.lazy(() =>
4612
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7825$inboundSchema
4611
+ "__@BRAND@7757": z.lazy(() =>
4612
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757$inboundSchema
4613
4613
  ),
4614
4614
  }).transform((v) => {
4615
4615
  return remap$(v, {
4616
- "__@BRAND@7825": "atBRANDAt7825",
4616
+ "__@BRAND@7757": "atBRANDAt7757",
4617
4617
  });
4618
4618
  });
4619
4619
 
4620
4620
  /** @internal */
4621
4621
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$Outbound =
4622
4622
  {
4623
- "__@BRAND@7825":
4624
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7825$Outbound;
4623
+ "__@BRAND@7757":
4624
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757$Outbound;
4625
4625
  };
4626
4626
 
4627
4627
  /** @internal */
@@ -4631,12 +4631,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$o
4631
4631
  z.ZodTypeDef,
4632
4632
  CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern
4633
4633
  > = z.object({
4634
- atBRANDAt7825: z.lazy(() =>
4635
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7825$outboundSchema
4634
+ atBRANDAt7757: z.lazy(() =>
4635
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757$outboundSchema
4636
4636
  ),
4637
4637
  }).transform((v) => {
4638
4638
  return remap$(v, {
4639
- atBRANDAt7825: "__@BRAND@7825",
4639
+ atBRANDAt7757: "__@BRAND@7757",
4640
4640
  });
4641
4641
  });
4642
4642
 
@@ -5711,65 +5711,65 @@ export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Ap
5711
5711
  }
5712
5712
 
5713
5713
  /** @internal */
5714
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7825$inboundSchema:
5714
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757$inboundSchema:
5715
5715
  z.ZodType<
5716
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7825,
5716
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757,
5717
5717
  z.ZodTypeDef,
5718
5718
  unknown
5719
5719
  > = z.object({});
5720
5720
 
5721
5721
  /** @internal */
5722
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7825$Outbound =
5722
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757$Outbound =
5723
5723
  {};
5724
5724
 
5725
5725
  /** @internal */
5726
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7825$outboundSchema:
5726
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757$outboundSchema:
5727
5727
  z.ZodType<
5728
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7825$Outbound,
5728
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757$Outbound,
5729
5729
  z.ZodTypeDef,
5730
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7825
5730
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757
5731
5731
  > = z.object({});
5732
5732
 
5733
5733
  /**
5734
5734
  * @internal
5735
5735
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5736
5736
  */
5737
- export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7825$ {
5738
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7825$inboundSchema` instead. */
5737
+ export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757$ {
5738
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757$inboundSchema` instead. */
5739
5739
  export const inboundSchema =
5740
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7825$inboundSchema;
5741
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7825$outboundSchema` instead. */
5740
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757$inboundSchema;
5741
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757$outboundSchema` instead. */
5742
5742
  export const outboundSchema =
5743
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7825$outboundSchema;
5744
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7825$Outbound` instead. */
5743
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757$outboundSchema;
5744
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757$Outbound` instead. */
5745
5745
  export type Outbound =
5746
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7825$Outbound;
5746
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757$Outbound;
5747
5747
  }
5748
5748
 
5749
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7825ToJSON(
5750
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7825:
5751
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7825,
5749
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757ToJSON(
5750
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757:
5751
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757,
5752
5752
  ): string {
5753
5753
  return JSON.stringify(
5754
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7825$outboundSchema
5754
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757$outboundSchema
5755
5755
  .parse(
5756
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7825,
5756
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757,
5757
5757
  ),
5758
5758
  );
5759
5759
  }
5760
5760
 
5761
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7825FromJSON(
5761
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757FromJSON(
5762
5762
  jsonString: string,
5763
5763
  ): SafeParseResult<
5764
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7825,
5764
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757,
5765
5765
  SDKValidationError
5766
5766
  > {
5767
5767
  return safeParse(
5768
5768
  jsonString,
5769
5769
  (x) =>
5770
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7825$inboundSchema
5770
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757$inboundSchema
5771
5771
  .parse(JSON.parse(x)),
5772
- `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7825' from JSON`,
5772
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757' from JSON`,
5773
5773
  );
5774
5774
  }
5775
5775
 
@@ -5780,20 +5780,20 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLen
5780
5780
  z.ZodTypeDef,
5781
5781
  unknown
5782
5782
  > = z.object({
5783
- "__@BRAND@7825": z.lazy(() =>
5784
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7825$inboundSchema
5783
+ "__@BRAND@7757": z.lazy(() =>
5784
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757$inboundSchema
5785
5785
  ),
5786
5786
  }).transform((v) => {
5787
5787
  return remap$(v, {
5788
- "__@BRAND@7825": "atBRANDAt7825",
5788
+ "__@BRAND@7757": "atBRANDAt7757",
5789
5789
  });
5790
5790
  });
5791
5791
 
5792
5792
  /** @internal */
5793
5793
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$Outbound =
5794
5794
  {
5795
- "__@BRAND@7825":
5796
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7825$Outbound;
5795
+ "__@BRAND@7757":
5796
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757$Outbound;
5797
5797
  };
5798
5798
 
5799
5799
  /** @internal */
@@ -5803,12 +5803,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLen
5803
5803
  z.ZodTypeDef,
5804
5804
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength
5805
5805
  > = z.object({
5806
- atBRANDAt7825: z.lazy(() =>
5807
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7825$outboundSchema
5806
+ atBRANDAt7757: z.lazy(() =>
5807
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757$outboundSchema
5808
5808
  ),
5809
5809
  }).transform((v) => {
5810
5810
  return remap$(v, {
5811
- atBRANDAt7825: "__@BRAND@7825",
5811
+ atBRANDAt7757: "__@BRAND@7757",
5812
5812
  });
5813
5813
  });
5814
5814
 
@@ -5856,65 +5856,65 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200Min
5856
5856
  }
5857
5857
 
5858
5858
  /** @internal */
5859
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7825$inboundSchema:
5859
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757$inboundSchema:
5860
5860
  z.ZodType<
5861
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7825,
5861
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757,
5862
5862
  z.ZodTypeDef,
5863
5863
  unknown
5864
5864
  > = z.object({});
5865
5865
 
5866
5866
  /** @internal */
5867
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7825$Outbound =
5867
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757$Outbound =
5868
5868
  {};
5869
5869
 
5870
5870
  /** @internal */
5871
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7825$outboundSchema:
5871
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757$outboundSchema:
5872
5872
  z.ZodType<
5873
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7825$Outbound,
5873
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757$Outbound,
5874
5874
  z.ZodTypeDef,
5875
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7825
5875
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757
5876
5876
  > = z.object({});
5877
5877
 
5878
5878
  /**
5879
5879
  * @internal
5880
5880
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5881
5881
  */
5882
- export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7825$ {
5883
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7825$inboundSchema` instead. */
5882
+ export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757$ {
5883
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757$inboundSchema` instead. */
5884
5884
  export const inboundSchema =
5885
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7825$inboundSchema;
5886
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7825$outboundSchema` instead. */
5885
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757$inboundSchema;
5886
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757$outboundSchema` instead. */
5887
5887
  export const outboundSchema =
5888
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7825$outboundSchema;
5889
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7825$Outbound` instead. */
5888
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757$outboundSchema;
5889
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757$Outbound` instead. */
5890
5890
  export type Outbound =
5891
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7825$Outbound;
5891
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757$Outbound;
5892
5892
  }
5893
5893
 
5894
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7825ToJSON(
5895
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7825:
5896
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7825,
5894
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757ToJSON(
5895
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757:
5896
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757,
5897
5897
  ): string {
5898
5898
  return JSON.stringify(
5899
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7825$outboundSchema
5899
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757$outboundSchema
5900
5900
  .parse(
5901
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7825,
5901
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757,
5902
5902
  ),
5903
5903
  );
5904
5904
  }
5905
5905
 
5906
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7825FromJSON(
5906
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757FromJSON(
5907
5907
  jsonString: string,
5908
5908
  ): SafeParseResult<
5909
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7825,
5909
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757,
5910
5910
  SDKValidationError
5911
5911
  > {
5912
5912
  return safeParse(
5913
5913
  jsonString,
5914
5914
  (x) =>
5915
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7825$inboundSchema
5915
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757$inboundSchema
5916
5916
  .parse(JSON.parse(x)),
5917
- `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7825' from JSON`,
5917
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757' from JSON`,
5918
5918
  );
5919
5919
  }
5920
5920
 
@@ -5925,20 +5925,20 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLen
5925
5925
  z.ZodTypeDef,
5926
5926
  unknown
5927
5927
  > = z.object({
5928
- "__@BRAND@7825": z.lazy(() =>
5929
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7825$inboundSchema
5928
+ "__@BRAND@7757": z.lazy(() =>
5929
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757$inboundSchema
5930
5930
  ),
5931
5931
  }).transform((v) => {
5932
5932
  return remap$(v, {
5933
- "__@BRAND@7825": "atBRANDAt7825",
5933
+ "__@BRAND@7757": "atBRANDAt7757",
5934
5934
  });
5935
5935
  });
5936
5936
 
5937
5937
  /** @internal */
5938
5938
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$Outbound =
5939
5939
  {
5940
- "__@BRAND@7825":
5941
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7825$Outbound;
5940
+ "__@BRAND@7757":
5941
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757$Outbound;
5942
5942
  };
5943
5943
 
5944
5944
  /** @internal */
@@ -5948,12 +5948,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLen
5948
5948
  z.ZodTypeDef,
5949
5949
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength
5950
5950
  > = z.object({
5951
- atBRANDAt7825: z.lazy(() =>
5952
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7825$outboundSchema
5951
+ atBRANDAt7757: z.lazy(() =>
5952
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757$outboundSchema
5953
5953
  ),
5954
5954
  }).transform((v) => {
5955
5955
  return remap$(v, {
5956
- atBRANDAt7825: "__@BRAND@7825",
5956
+ atBRANDAt7757: "__@BRAND@7757",
5957
5957
  });
5958
5958
  });
5959
5959
 
@@ -6001,65 +6001,65 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200Max
6001
6001
  }
6002
6002
 
6003
6003
  /** @internal */
6004
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7825$inboundSchema:
6004
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757$inboundSchema:
6005
6005
  z.ZodType<
6006
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7825,
6006
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757,
6007
6007
  z.ZodTypeDef,
6008
6008
  unknown
6009
6009
  > = z.object({});
6010
6010
 
6011
6011
  /** @internal */
6012
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7825$Outbound =
6012
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757$Outbound =
6013
6013
  {};
6014
6014
 
6015
6015
  /** @internal */
6016
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7825$outboundSchema:
6016
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757$outboundSchema:
6017
6017
  z.ZodType<
6018
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7825$Outbound,
6018
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757$Outbound,
6019
6019
  z.ZodTypeDef,
6020
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7825
6020
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757
6021
6021
  > = z.object({});
6022
6022
 
6023
6023
  /**
6024
6024
  * @internal
6025
6025
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6026
6026
  */
6027
- export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7825$ {
6028
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7825$inboundSchema` instead. */
6027
+ export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757$ {
6028
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757$inboundSchema` instead. */
6029
6029
  export const inboundSchema =
6030
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7825$inboundSchema;
6031
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7825$outboundSchema` instead. */
6030
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757$inboundSchema;
6031
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757$outboundSchema` instead. */
6032
6032
  export const outboundSchema =
6033
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7825$outboundSchema;
6034
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7825$Outbound` instead. */
6033
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757$outboundSchema;
6034
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757$Outbound` instead. */
6035
6035
  export type Outbound =
6036
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7825$Outbound;
6036
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757$Outbound;
6037
6037
  }
6038
6038
 
6039
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7825ToJSON(
6040
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7825:
6041
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7825,
6039
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757ToJSON(
6040
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757:
6041
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757,
6042
6042
  ): string {
6043
6043
  return JSON.stringify(
6044
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7825$outboundSchema
6044
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757$outboundSchema
6045
6045
  .parse(
6046
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7825,
6046
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757,
6047
6047
  ),
6048
6048
  );
6049
6049
  }
6050
6050
 
6051
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7825FromJSON(
6051
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757FromJSON(
6052
6052
  jsonString: string,
6053
6053
  ): SafeParseResult<
6054
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7825,
6054
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757,
6055
6055
  SDKValidationError
6056
6056
  > {
6057
6057
  return safeParse(
6058
6058
  jsonString,
6059
6059
  (x) =>
6060
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7825$inboundSchema
6060
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757$inboundSchema
6061
6061
  .parse(JSON.parse(x)),
6062
- `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7825' from JSON`,
6062
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757' from JSON`,
6063
6063
  );
6064
6064
  }
6065
6065
 
@@ -6070,20 +6070,20 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Patter
6070
6070
  z.ZodTypeDef,
6071
6071
  unknown
6072
6072
  > = z.object({
6073
- "__@BRAND@7825": z.lazy(() =>
6074
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7825$inboundSchema
6073
+ "__@BRAND@7757": z.lazy(() =>
6074
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757$inboundSchema
6075
6075
  ),
6076
6076
  }).transform((v) => {
6077
6077
  return remap$(v, {
6078
- "__@BRAND@7825": "atBRANDAt7825",
6078
+ "__@BRAND@7757": "atBRANDAt7757",
6079
6079
  });
6080
6080
  });
6081
6081
 
6082
6082
  /** @internal */
6083
6083
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$Outbound =
6084
6084
  {
6085
- "__@BRAND@7825":
6086
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7825$Outbound;
6085
+ "__@BRAND@7757":
6086
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757$Outbound;
6087
6087
  };
6088
6088
 
6089
6089
  /** @internal */
@@ -6093,12 +6093,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Patter
6093
6093
  z.ZodTypeDef,
6094
6094
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern
6095
6095
  > = z.object({
6096
- atBRANDAt7825: z.lazy(() =>
6097
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7825$outboundSchema
6096
+ atBRANDAt7757: z.lazy(() =>
6097
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757$outboundSchema
6098
6098
  ),
6099
6099
  }).transform((v) => {
6100
6100
  return remap$(v, {
6101
- atBRANDAt7825: "__@BRAND@7825",
6101
+ atBRANDAt7757: "__@BRAND@7757",
6102
6102
  });
6103
6103
  });
6104
6104
 
@@ -8169,63 +8169,63 @@ export function createIntegrationStoreDirectPropertiesUiOptionsFromJSON(
8169
8169
  }
8170
8170
 
8171
8171
  /** @internal */
8172
- export const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7825$inboundSchema:
8172
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757$inboundSchema:
8173
8173
  z.ZodType<
8174
- CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7825,
8174
+ CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757,
8175
8175
  z.ZodTypeDef,
8176
8176
  unknown
8177
8177
  > = z.object({});
8178
8178
 
8179
8179
  /** @internal */
8180
- export type CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7825$Outbound =
8180
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757$Outbound =
8181
8181
  {};
8182
8182
 
8183
8183
  /** @internal */
8184
- export const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7825$outboundSchema:
8184
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757$outboundSchema:
8185
8185
  z.ZodType<
8186
- CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7825$Outbound,
8186
+ CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757$Outbound,
8187
8187
  z.ZodTypeDef,
8188
- CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7825
8188
+ CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757
8189
8189
  > = z.object({});
8190
8190
 
8191
8191
  /**
8192
8192
  * @internal
8193
8193
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
8194
8194
  */
8195
- export namespace CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7825$ {
8196
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7825$inboundSchema` instead. */
8195
+ export namespace CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757$ {
8196
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757$inboundSchema` instead. */
8197
8197
  export const inboundSchema =
8198
- CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7825$inboundSchema;
8199
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7825$outboundSchema` instead. */
8198
+ CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757$inboundSchema;
8199
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757$outboundSchema` instead. */
8200
8200
  export const outboundSchema =
8201
- CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7825$outboundSchema;
8202
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7825$Outbound` instead. */
8201
+ CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757$outboundSchema;
8202
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757$Outbound` instead. */
8203
8203
  export type Outbound =
8204
- CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7825$Outbound;
8204
+ CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757$Outbound;
8205
8205
  }
8206
8206
 
8207
- export function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7825ToJSON(
8208
- createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7825:
8209
- CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7825,
8207
+ export function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757ToJSON(
8208
+ createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757:
8209
+ CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757,
8210
8210
  ): string {
8211
8211
  return JSON.stringify(
8212
- CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7825$outboundSchema
8213
- .parse(createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7825),
8212
+ CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757$outboundSchema
8213
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757),
8214
8214
  );
8215
8215
  }
8216
8216
 
8217
- export function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7825FromJSON(
8217
+ export function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757FromJSON(
8218
8218
  jsonString: string,
8219
8219
  ): SafeParseResult<
8220
- CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7825,
8220
+ CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757,
8221
8221
  SDKValidationError
8222
8222
  > {
8223
8223
  return safeParse(
8224
8224
  jsonString,
8225
8225
  (x) =>
8226
- CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7825$inboundSchema
8226
+ CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757$inboundSchema
8227
8227
  .parse(JSON.parse(x)),
8228
- `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7825' from JSON`,
8228
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757' from JSON`,
8229
8229
  );
8230
8230
  }
8231
8231
 
@@ -8236,20 +8236,20 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$inbound
8236
8236
  z.ZodTypeDef,
8237
8237
  unknown
8238
8238
  > = z.object({
8239
- "__@BRAND@7825": z.lazy(() =>
8240
- CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7825$inboundSchema
8239
+ "__@BRAND@7757": z.lazy(() =>
8240
+ CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757$inboundSchema
8241
8241
  ),
8242
8242
  }).transform((v) => {
8243
8243
  return remap$(v, {
8244
- "__@BRAND@7825": "atBRANDAt7825",
8244
+ "__@BRAND@7757": "atBRANDAt7757",
8245
8245
  });
8246
8246
  });
8247
8247
 
8248
8248
  /** @internal */
8249
8249
  export type CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$Outbound =
8250
8250
  {
8251
- "__@BRAND@7825":
8252
- CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7825$Outbound;
8251
+ "__@BRAND@7757":
8252
+ CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757$Outbound;
8253
8253
  };
8254
8254
 
8255
8255
  /** @internal */
@@ -8259,12 +8259,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$outboun
8259
8259
  z.ZodTypeDef,
8260
8260
  CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength
8261
8261
  > = z.object({
8262
- atBRANDAt7825: z.lazy(() =>
8263
- CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7825$outboundSchema
8262
+ atBRANDAt7757: z.lazy(() =>
8263
+ CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757$outboundSchema
8264
8264
  ),
8265
8265
  }).transform((v) => {
8266
8266
  return remap$(v, {
8267
- atBRANDAt7825: "__@BRAND@7825",
8267
+ atBRANDAt7757: "__@BRAND@7757",
8268
8268
  });
8269
8269
  });
8270
8270
 
@@ -8310,65 +8310,65 @@ export function createIntegrationStoreDirectPropertiesIntegrationsMaxLengthFromJ
8310
8310
  }
8311
8311
 
8312
8312
  /** @internal */
8313
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7825$inboundSchema:
8313
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757$inboundSchema:
8314
8314
  z.ZodType<
8315
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7825,
8315
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757,
8316
8316
  z.ZodTypeDef,
8317
8317
  unknown
8318
8318
  > = z.object({});
8319
8319
 
8320
8320
  /** @internal */
8321
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7825$Outbound =
8321
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757$Outbound =
8322
8322
  {};
8323
8323
 
8324
8324
  /** @internal */
8325
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7825$outboundSchema:
8325
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757$outboundSchema:
8326
8326
  z.ZodType<
8327
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7825$Outbound,
8327
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757$Outbound,
8328
8328
  z.ZodTypeDef,
8329
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7825
8329
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757
8330
8330
  > = z.object({});
8331
8331
 
8332
8332
  /**
8333
8333
  * @internal
8334
8334
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
8335
8335
  */
8336
- export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7825$ {
8337
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7825$inboundSchema` instead. */
8336
+ export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757$ {
8337
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757$inboundSchema` instead. */
8338
8338
  export const inboundSchema =
8339
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7825$inboundSchema;
8340
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7825$outboundSchema` instead. */
8339
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757$inboundSchema;
8340
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757$outboundSchema` instead. */
8341
8341
  export const outboundSchema =
8342
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7825$outboundSchema;
8343
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7825$Outbound` instead. */
8342
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757$outboundSchema;
8343
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757$Outbound` instead. */
8344
8344
  export type Outbound =
8345
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7825$Outbound;
8345
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757$Outbound;
8346
8346
  }
8347
8347
 
8348
- export function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7825ToJSON(
8349
- createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7825:
8350
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7825,
8348
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757ToJSON(
8349
+ createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757:
8350
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757,
8351
8351
  ): string {
8352
8352
  return JSON.stringify(
8353
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7825$outboundSchema
8353
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757$outboundSchema
8354
8354
  .parse(
8355
- createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7825,
8355
+ createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757,
8356
8356
  ),
8357
8357
  );
8358
8358
  }
8359
8359
 
8360
- export function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7825FromJSON(
8360
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757FromJSON(
8361
8361
  jsonString: string,
8362
8362
  ): SafeParseResult<
8363
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7825,
8363
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757,
8364
8364
  SDKValidationError
8365
8365
  > {
8366
8366
  return safeParse(
8367
8367
  jsonString,
8368
8368
  (x) =>
8369
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7825$inboundSchema
8369
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757$inboundSchema
8370
8370
  .parse(JSON.parse(x)),
8371
- `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7825' from JSON`,
8371
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757' from JSON`,
8372
8372
  );
8373
8373
  }
8374
8374
 
@@ -8379,20 +8379,20 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$inbound
8379
8379
  z.ZodTypeDef,
8380
8380
  unknown
8381
8381
  > = z.object({
8382
- "__@BRAND@7825": z.lazy(() =>
8383
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7825$inboundSchema
8382
+ "__@BRAND@7757": z.lazy(() =>
8383
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757$inboundSchema
8384
8384
  ),
8385
8385
  }).transform((v) => {
8386
8386
  return remap$(v, {
8387
- "__@BRAND@7825": "atBRANDAt7825",
8387
+ "__@BRAND@7757": "atBRANDAt7757",
8388
8388
  });
8389
8389
  });
8390
8390
 
8391
8391
  /** @internal */
8392
8392
  export type CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$Outbound =
8393
8393
  {
8394
- "__@BRAND@7825":
8395
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7825$Outbound;
8394
+ "__@BRAND@7757":
8395
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757$Outbound;
8396
8396
  };
8397
8397
 
8398
8398
  /** @internal */
@@ -8402,12 +8402,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$outboun
8402
8402
  z.ZodTypeDef,
8403
8403
  CreateIntegrationStoreDirectPropertiesIntegrationsMinLength
8404
8404
  > = z.object({
8405
- atBRANDAt7825: z.lazy(() =>
8406
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7825$outboundSchema
8405
+ atBRANDAt7757: z.lazy(() =>
8406
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757$outboundSchema
8407
8407
  ),
8408
8408
  }).transform((v) => {
8409
8409
  return remap$(v, {
8410
- atBRANDAt7825: "__@BRAND@7825",
8410
+ atBRANDAt7757: "__@BRAND@7757",
8411
8411
  });
8412
8412
  });
8413
8413
 
@@ -8453,65 +8453,65 @@ export function createIntegrationStoreDirectPropertiesIntegrationsMinLengthFromJ
8453
8453
  }
8454
8454
 
8455
8455
  /** @internal */
8456
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7825$inboundSchema:
8456
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757$inboundSchema:
8457
8457
  z.ZodType<
8458
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7825,
8458
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757,
8459
8459
  z.ZodTypeDef,
8460
8460
  unknown
8461
8461
  > = z.object({});
8462
8462
 
8463
8463
  /** @internal */
8464
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7825$Outbound =
8464
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757$Outbound =
8465
8465
  {};
8466
8466
 
8467
8467
  /** @internal */
8468
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7825$outboundSchema:
8468
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757$outboundSchema:
8469
8469
  z.ZodType<
8470
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7825$Outbound,
8470
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757$Outbound,
8471
8471
  z.ZodTypeDef,
8472
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7825
8472
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757
8473
8473
  > = z.object({});
8474
8474
 
8475
8475
  /**
8476
8476
  * @internal
8477
8477
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
8478
8478
  */
8479
- export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7825$ {
8480
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7825$inboundSchema` instead. */
8479
+ export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757$ {
8480
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757$inboundSchema` instead. */
8481
8481
  export const inboundSchema =
8482
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7825$inboundSchema;
8483
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7825$outboundSchema` instead. */
8482
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757$inboundSchema;
8483
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757$outboundSchema` instead. */
8484
8484
  export const outboundSchema =
8485
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7825$outboundSchema;
8486
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7825$Outbound` instead. */
8485
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757$outboundSchema;
8486
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757$Outbound` instead. */
8487
8487
  export type Outbound =
8488
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7825$Outbound;
8488
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757$Outbound;
8489
8489
  }
8490
8490
 
8491
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7825ToJSON(
8492
- createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7825:
8493
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7825,
8491
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757ToJSON(
8492
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757:
8493
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757,
8494
8494
  ): string {
8495
8495
  return JSON.stringify(
8496
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7825$outboundSchema
8496
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757$outboundSchema
8497
8497
  .parse(
8498
- createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7825,
8498
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757,
8499
8499
  ),
8500
8500
  );
8501
8501
  }
8502
8502
 
8503
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7825FromJSON(
8503
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757FromJSON(
8504
8504
  jsonString: string,
8505
8505
  ): SafeParseResult<
8506
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7825,
8506
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757,
8507
8507
  SDKValidationError
8508
8508
  > {
8509
8509
  return safeParse(
8510
8510
  jsonString,
8511
8511
  (x) =>
8512
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7825$inboundSchema
8512
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757$inboundSchema
8513
8513
  .parse(JSON.parse(x)),
8514
- `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7825' from JSON`,
8514
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757' from JSON`,
8515
8515
  );
8516
8516
  }
8517
8517
 
@@ -8522,20 +8522,20 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsPattern$inboundSc
8522
8522
  z.ZodTypeDef,
8523
8523
  unknown
8524
8524
  > = z.object({
8525
- "__@BRAND@7825": z.lazy(() =>
8526
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7825$inboundSchema
8525
+ "__@BRAND@7757": z.lazy(() =>
8526
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757$inboundSchema
8527
8527
  ),
8528
8528
  }).transform((v) => {
8529
8529
  return remap$(v, {
8530
- "__@BRAND@7825": "atBRANDAt7825",
8530
+ "__@BRAND@7757": "atBRANDAt7757",
8531
8531
  });
8532
8532
  });
8533
8533
 
8534
8534
  /** @internal */
8535
8535
  export type CreateIntegrationStoreDirectPropertiesIntegrationsPattern$Outbound =
8536
8536
  {
8537
- "__@BRAND@7825":
8538
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7825$Outbound;
8537
+ "__@BRAND@7757":
8538
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757$Outbound;
8539
8539
  };
8540
8540
 
8541
8541
  /** @internal */
@@ -8545,12 +8545,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsPattern$outboundS
8545
8545
  z.ZodTypeDef,
8546
8546
  CreateIntegrationStoreDirectPropertiesIntegrationsPattern
8547
8547
  > = z.object({
8548
- atBRANDAt7825: z.lazy(() =>
8549
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7825$outboundSchema
8548
+ atBRANDAt7757: z.lazy(() =>
8549
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757$outboundSchema
8550
8550
  ),
8551
8551
  }).transform((v) => {
8552
8552
  return remap$(v, {
8553
- atBRANDAt7825: "__@BRAND@7825",
8553
+ atBRANDAt7757: "__@BRAND@7757",
8554
8554
  });
8555
8555
  });
8556
8556
 
@@ -12613,65 +12613,65 @@ export namespace CreateIntegrationStoreDirectPropertiesUiControl$ {
12613
12613
  }
12614
12614
 
12615
12615
  /** @internal */
12616
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7825$inboundSchema:
12616
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757$inboundSchema:
12617
12617
  z.ZodType<
12618
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7825,
12618
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757,
12619
12619
  z.ZodTypeDef,
12620
12620
  unknown
12621
12621
  > = z.object({});
12622
12622
 
12623
12623
  /** @internal */
12624
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7825$Outbound =
12624
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757$Outbound =
12625
12625
  {};
12626
12626
 
12627
12627
  /** @internal */
12628
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7825$outboundSchema:
12628
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757$outboundSchema:
12629
12629
  z.ZodType<
12630
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7825$Outbound,
12630
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757$Outbound,
12631
12631
  z.ZodTypeDef,
12632
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7825
12632
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757
12633
12633
  > = z.object({});
12634
12634
 
12635
12635
  /**
12636
12636
  * @internal
12637
12637
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
12638
12638
  */
12639
- export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7825$ {
12640
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7825$inboundSchema` instead. */
12639
+ export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757$ {
12640
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757$inboundSchema` instead. */
12641
12641
  export const inboundSchema =
12642
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7825$inboundSchema;
12643
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7825$outboundSchema` instead. */
12642
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757$inboundSchema;
12643
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757$outboundSchema` instead. */
12644
12644
  export const outboundSchema =
12645
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7825$outboundSchema;
12646
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7825$Outbound` instead. */
12645
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757$outboundSchema;
12646
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757$Outbound` instead. */
12647
12647
  export type Outbound =
12648
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7825$Outbound;
12648
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757$Outbound;
12649
12649
  }
12650
12650
 
12651
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7825ToJSON(
12652
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7825:
12653
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7825,
12651
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757ToJSON(
12652
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757:
12653
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757,
12654
12654
  ): string {
12655
12655
  return JSON.stringify(
12656
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7825$outboundSchema
12656
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757$outboundSchema
12657
12657
  .parse(
12658
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7825,
12658
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757,
12659
12659
  ),
12660
12660
  );
12661
12661
  }
12662
12662
 
12663
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7825FromJSON(
12663
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757FromJSON(
12664
12664
  jsonString: string,
12665
12665
  ): SafeParseResult<
12666
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7825,
12666
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757,
12667
12667
  SDKValidationError
12668
12668
  > {
12669
12669
  return safeParse(
12670
12670
  jsonString,
12671
12671
  (x) =>
12672
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7825$inboundSchema
12672
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757$inboundSchema
12673
12673
  .parse(JSON.parse(x)),
12674
- `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7825' from JSON`,
12674
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757' from JSON`,
12675
12675
  );
12676
12676
  }
12677
12677
 
@@ -12682,19 +12682,19 @@ export const CreateIntegrationStoreDirectPropertiesMaxLength$inboundSchema:
12682
12682
  z.ZodTypeDef,
12683
12683
  unknown
12684
12684
  > = z.object({
12685
- "__@BRAND@7825": z.lazy(() =>
12686
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7825$inboundSchema
12685
+ "__@BRAND@7757": z.lazy(() =>
12686
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757$inboundSchema
12687
12687
  ),
12688
12688
  }).transform((v) => {
12689
12689
  return remap$(v, {
12690
- "__@BRAND@7825": "atBRANDAt7825",
12690
+ "__@BRAND@7757": "atBRANDAt7757",
12691
12691
  });
12692
12692
  });
12693
12693
 
12694
12694
  /** @internal */
12695
12695
  export type CreateIntegrationStoreDirectPropertiesMaxLength$Outbound = {
12696
- "__@BRAND@7825":
12697
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7825$Outbound;
12696
+ "__@BRAND@7757":
12697
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757$Outbound;
12698
12698
  };
12699
12699
 
12700
12700
  /** @internal */
@@ -12704,12 +12704,12 @@ export const CreateIntegrationStoreDirectPropertiesMaxLength$outboundSchema:
12704
12704
  z.ZodTypeDef,
12705
12705
  CreateIntegrationStoreDirectPropertiesMaxLength
12706
12706
  > = z.object({
12707
- atBRANDAt7825: z.lazy(() =>
12708
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7825$outboundSchema
12707
+ atBRANDAt7757: z.lazy(() =>
12708
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757$outboundSchema
12709
12709
  ),
12710
12710
  }).transform((v) => {
12711
12711
  return remap$(v, {
12712
- atBRANDAt7825: "__@BRAND@7825",
12712
+ atBRANDAt7757: "__@BRAND@7757",
12713
12713
  });
12714
12714
  });
12715
12715
 
@@ -12757,50 +12757,50 @@ export function createIntegrationStoreDirectPropertiesMaxLengthFromJSON(
12757
12757
  }
12758
12758
 
12759
12759
  /** @internal */
12760
- export const PropertiesAtBRANDAt7825$inboundSchema: z.ZodType<
12761
- PropertiesAtBRANDAt7825,
12760
+ export const PropertiesAtBRANDAt7757$inboundSchema: z.ZodType<
12761
+ PropertiesAtBRANDAt7757,
12762
12762
  z.ZodTypeDef,
12763
12763
  unknown
12764
12764
  > = z.object({});
12765
12765
 
12766
12766
  /** @internal */
12767
- export type PropertiesAtBRANDAt7825$Outbound = {};
12767
+ export type PropertiesAtBRANDAt7757$Outbound = {};
12768
12768
 
12769
12769
  /** @internal */
12770
- export const PropertiesAtBRANDAt7825$outboundSchema: z.ZodType<
12771
- PropertiesAtBRANDAt7825$Outbound,
12770
+ export const PropertiesAtBRANDAt7757$outboundSchema: z.ZodType<
12771
+ PropertiesAtBRANDAt7757$Outbound,
12772
12772
  z.ZodTypeDef,
12773
- PropertiesAtBRANDAt7825
12773
+ PropertiesAtBRANDAt7757
12774
12774
  > = z.object({});
12775
12775
 
12776
12776
  /**
12777
12777
  * @internal
12778
12778
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
12779
12779
  */
12780
- export namespace PropertiesAtBRANDAt7825$ {
12781
- /** @deprecated use `PropertiesAtBRANDAt7825$inboundSchema` instead. */
12782
- export const inboundSchema = PropertiesAtBRANDAt7825$inboundSchema;
12783
- /** @deprecated use `PropertiesAtBRANDAt7825$outboundSchema` instead. */
12784
- export const outboundSchema = PropertiesAtBRANDAt7825$outboundSchema;
12785
- /** @deprecated use `PropertiesAtBRANDAt7825$Outbound` instead. */
12786
- export type Outbound = PropertiesAtBRANDAt7825$Outbound;
12780
+ export namespace PropertiesAtBRANDAt7757$ {
12781
+ /** @deprecated use `PropertiesAtBRANDAt7757$inboundSchema` instead. */
12782
+ export const inboundSchema = PropertiesAtBRANDAt7757$inboundSchema;
12783
+ /** @deprecated use `PropertiesAtBRANDAt7757$outboundSchema` instead. */
12784
+ export const outboundSchema = PropertiesAtBRANDAt7757$outboundSchema;
12785
+ /** @deprecated use `PropertiesAtBRANDAt7757$Outbound` instead. */
12786
+ export type Outbound = PropertiesAtBRANDAt7757$Outbound;
12787
12787
  }
12788
12788
 
12789
- export function propertiesAtBRANDAt7825ToJSON(
12790
- propertiesAtBRANDAt7825: PropertiesAtBRANDAt7825,
12789
+ export function propertiesAtBRANDAt7757ToJSON(
12790
+ propertiesAtBRANDAt7757: PropertiesAtBRANDAt7757,
12791
12791
  ): string {
12792
12792
  return JSON.stringify(
12793
- PropertiesAtBRANDAt7825$outboundSchema.parse(propertiesAtBRANDAt7825),
12793
+ PropertiesAtBRANDAt7757$outboundSchema.parse(propertiesAtBRANDAt7757),
12794
12794
  );
12795
12795
  }
12796
12796
 
12797
- export function propertiesAtBRANDAt7825FromJSON(
12797
+ export function propertiesAtBRANDAt7757FromJSON(
12798
12798
  jsonString: string,
12799
- ): SafeParseResult<PropertiesAtBRANDAt7825, SDKValidationError> {
12799
+ ): SafeParseResult<PropertiesAtBRANDAt7757, SDKValidationError> {
12800
12800
  return safeParse(
12801
12801
  jsonString,
12802
- (x) => PropertiesAtBRANDAt7825$inboundSchema.parse(JSON.parse(x)),
12803
- `Failed to parse 'PropertiesAtBRANDAt7825' from JSON`,
12802
+ (x) => PropertiesAtBRANDAt7757$inboundSchema.parse(JSON.parse(x)),
12803
+ `Failed to parse 'PropertiesAtBRANDAt7757' from JSON`,
12804
12804
  );
12805
12805
  }
12806
12806
 
@@ -12811,16 +12811,16 @@ export const CreateIntegrationStoreDirectPropertiesMinLength$inboundSchema:
12811
12811
  z.ZodTypeDef,
12812
12812
  unknown
12813
12813
  > = z.object({
12814
- "__@BRAND@7825": z.lazy(() => PropertiesAtBRANDAt7825$inboundSchema),
12814
+ "__@BRAND@7757": z.lazy(() => PropertiesAtBRANDAt7757$inboundSchema),
12815
12815
  }).transform((v) => {
12816
12816
  return remap$(v, {
12817
- "__@BRAND@7825": "atBRANDAt7825",
12817
+ "__@BRAND@7757": "atBRANDAt7757",
12818
12818
  });
12819
12819
  });
12820
12820
 
12821
12821
  /** @internal */
12822
12822
  export type CreateIntegrationStoreDirectPropertiesMinLength$Outbound = {
12823
- "__@BRAND@7825": PropertiesAtBRANDAt7825$Outbound;
12823
+ "__@BRAND@7757": PropertiesAtBRANDAt7757$Outbound;
12824
12824
  };
12825
12825
 
12826
12826
  /** @internal */
@@ -12830,10 +12830,10 @@ export const CreateIntegrationStoreDirectPropertiesMinLength$outboundSchema:
12830
12830
  z.ZodTypeDef,
12831
12831
  CreateIntegrationStoreDirectPropertiesMinLength
12832
12832
  > = z.object({
12833
- atBRANDAt7825: z.lazy(() => PropertiesAtBRANDAt7825$outboundSchema),
12833
+ atBRANDAt7757: z.lazy(() => PropertiesAtBRANDAt7757$outboundSchema),
12834
12834
  }).transform((v) => {
12835
12835
  return remap$(v, {
12836
- atBRANDAt7825: "__@BRAND@7825",
12836
+ atBRANDAt7757: "__@BRAND@7757",
12837
12837
  });
12838
12838
  });
12839
12839
 
@@ -12881,64 +12881,64 @@ export function createIntegrationStoreDirectPropertiesMinLengthFromJSON(
12881
12881
  }
12882
12882
 
12883
12883
  /** @internal */
12884
- export const CreateIntegrationStoreDirectPropertiesAtBRANDAt7825$inboundSchema:
12884
+ export const CreateIntegrationStoreDirectPropertiesAtBRANDAt7757$inboundSchema:
12885
12885
  z.ZodType<
12886
- CreateIntegrationStoreDirectPropertiesAtBRANDAt7825,
12886
+ CreateIntegrationStoreDirectPropertiesAtBRANDAt7757,
12887
12887
  z.ZodTypeDef,
12888
12888
  unknown
12889
12889
  > = z.object({});
12890
12890
 
12891
12891
  /** @internal */
12892
- export type CreateIntegrationStoreDirectPropertiesAtBRANDAt7825$Outbound = {};
12892
+ export type CreateIntegrationStoreDirectPropertiesAtBRANDAt7757$Outbound = {};
12893
12893
 
12894
12894
  /** @internal */
12895
- export const CreateIntegrationStoreDirectPropertiesAtBRANDAt7825$outboundSchema:
12895
+ export const CreateIntegrationStoreDirectPropertiesAtBRANDAt7757$outboundSchema:
12896
12896
  z.ZodType<
12897
- CreateIntegrationStoreDirectPropertiesAtBRANDAt7825$Outbound,
12897
+ CreateIntegrationStoreDirectPropertiesAtBRANDAt7757$Outbound,
12898
12898
  z.ZodTypeDef,
12899
- CreateIntegrationStoreDirectPropertiesAtBRANDAt7825
12899
+ CreateIntegrationStoreDirectPropertiesAtBRANDAt7757
12900
12900
  > = z.object({});
12901
12901
 
12902
12902
  /**
12903
12903
  * @internal
12904
12904
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
12905
12905
  */
12906
- export namespace CreateIntegrationStoreDirectPropertiesAtBRANDAt7825$ {
12907
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt7825$inboundSchema` instead. */
12906
+ export namespace CreateIntegrationStoreDirectPropertiesAtBRANDAt7757$ {
12907
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt7757$inboundSchema` instead. */
12908
12908
  export const inboundSchema =
12909
- CreateIntegrationStoreDirectPropertiesAtBRANDAt7825$inboundSchema;
12910
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt7825$outboundSchema` instead. */
12909
+ CreateIntegrationStoreDirectPropertiesAtBRANDAt7757$inboundSchema;
12910
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt7757$outboundSchema` instead. */
12911
12911
  export const outboundSchema =
12912
- CreateIntegrationStoreDirectPropertiesAtBRANDAt7825$outboundSchema;
12913
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt7825$Outbound` instead. */
12912
+ CreateIntegrationStoreDirectPropertiesAtBRANDAt7757$outboundSchema;
12913
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt7757$Outbound` instead. */
12914
12914
  export type Outbound =
12915
- CreateIntegrationStoreDirectPropertiesAtBRANDAt7825$Outbound;
12915
+ CreateIntegrationStoreDirectPropertiesAtBRANDAt7757$Outbound;
12916
12916
  }
12917
12917
 
12918
- export function createIntegrationStoreDirectPropertiesAtBRANDAt7825ToJSON(
12919
- createIntegrationStoreDirectPropertiesAtBRANDAt7825:
12920
- CreateIntegrationStoreDirectPropertiesAtBRANDAt7825,
12918
+ export function createIntegrationStoreDirectPropertiesAtBRANDAt7757ToJSON(
12919
+ createIntegrationStoreDirectPropertiesAtBRANDAt7757:
12920
+ CreateIntegrationStoreDirectPropertiesAtBRANDAt7757,
12921
12921
  ): string {
12922
12922
  return JSON.stringify(
12923
- CreateIntegrationStoreDirectPropertiesAtBRANDAt7825$outboundSchema.parse(
12924
- createIntegrationStoreDirectPropertiesAtBRANDAt7825,
12923
+ CreateIntegrationStoreDirectPropertiesAtBRANDAt7757$outboundSchema.parse(
12924
+ createIntegrationStoreDirectPropertiesAtBRANDAt7757,
12925
12925
  ),
12926
12926
  );
12927
12927
  }
12928
12928
 
12929
- export function createIntegrationStoreDirectPropertiesAtBRANDAt7825FromJSON(
12929
+ export function createIntegrationStoreDirectPropertiesAtBRANDAt7757FromJSON(
12930
12930
  jsonString: string,
12931
12931
  ): SafeParseResult<
12932
- CreateIntegrationStoreDirectPropertiesAtBRANDAt7825,
12932
+ CreateIntegrationStoreDirectPropertiesAtBRANDAt7757,
12933
12933
  SDKValidationError
12934
12934
  > {
12935
12935
  return safeParse(
12936
12936
  jsonString,
12937
12937
  (x) =>
12938
- CreateIntegrationStoreDirectPropertiesAtBRANDAt7825$inboundSchema.parse(
12938
+ CreateIntegrationStoreDirectPropertiesAtBRANDAt7757$inboundSchema.parse(
12939
12939
  JSON.parse(x),
12940
12940
  ),
12941
- `Failed to parse 'CreateIntegrationStoreDirectPropertiesAtBRANDAt7825' from JSON`,
12941
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesAtBRANDAt7757' from JSON`,
12942
12942
  );
12943
12943
  }
12944
12944
 
@@ -12949,18 +12949,18 @@ export const CreateIntegrationStoreDirectPropertiesPattern$inboundSchema:
12949
12949
  z.ZodTypeDef,
12950
12950
  unknown
12951
12951
  > = z.object({
12952
- "__@BRAND@7825": z.lazy(() =>
12953
- CreateIntegrationStoreDirectPropertiesAtBRANDAt7825$inboundSchema
12952
+ "__@BRAND@7757": z.lazy(() =>
12953
+ CreateIntegrationStoreDirectPropertiesAtBRANDAt7757$inboundSchema
12954
12954
  ),
12955
12955
  }).transform((v) => {
12956
12956
  return remap$(v, {
12957
- "__@BRAND@7825": "atBRANDAt7825",
12957
+ "__@BRAND@7757": "atBRANDAt7757",
12958
12958
  });
12959
12959
  });
12960
12960
 
12961
12961
  /** @internal */
12962
12962
  export type CreateIntegrationStoreDirectPropertiesPattern$Outbound = {
12963
- "__@BRAND@7825": CreateIntegrationStoreDirectPropertiesAtBRANDAt7825$Outbound;
12963
+ "__@BRAND@7757": CreateIntegrationStoreDirectPropertiesAtBRANDAt7757$Outbound;
12964
12964
  };
12965
12965
 
12966
12966
  /** @internal */
@@ -12970,12 +12970,12 @@ export const CreateIntegrationStoreDirectPropertiesPattern$outboundSchema:
12970
12970
  z.ZodTypeDef,
12971
12971
  CreateIntegrationStoreDirectPropertiesPattern
12972
12972
  > = z.object({
12973
- atBRANDAt7825: z.lazy(() =>
12974
- CreateIntegrationStoreDirectPropertiesAtBRANDAt7825$outboundSchema
12973
+ atBRANDAt7757: z.lazy(() =>
12974
+ CreateIntegrationStoreDirectPropertiesAtBRANDAt7757$outboundSchema
12975
12975
  ),
12976
12976
  }).transform((v) => {
12977
12977
  return remap$(v, {
12978
- atBRANDAt7825: "__@BRAND@7825",
12978
+ atBRANDAt7757: "__@BRAND@7757",
12979
12979
  });
12980
12980
  });
12981
12981
 
@@ -14415,46 +14415,46 @@ export function guidesFromJSON(
14415
14415
  }
14416
14416
 
14417
14417
  /** @internal */
14418
- export const AtBRANDAt7825$inboundSchema: z.ZodType<
14419
- AtBRANDAt7825,
14418
+ export const AtBRANDAt7757$inboundSchema: z.ZodType<
14419
+ AtBRANDAt7757,
14420
14420
  z.ZodTypeDef,
14421
14421
  unknown
14422
14422
  > = z.object({});
14423
14423
 
14424
14424
  /** @internal */
14425
- export type AtBRANDAt7825$Outbound = {};
14425
+ export type AtBRANDAt7757$Outbound = {};
14426
14426
 
14427
14427
  /** @internal */
14428
- export const AtBRANDAt7825$outboundSchema: z.ZodType<
14429
- AtBRANDAt7825$Outbound,
14428
+ export const AtBRANDAt7757$outboundSchema: z.ZodType<
14429
+ AtBRANDAt7757$Outbound,
14430
14430
  z.ZodTypeDef,
14431
- AtBRANDAt7825
14431
+ AtBRANDAt7757
14432
14432
  > = z.object({});
14433
14433
 
14434
14434
  /**
14435
14435
  * @internal
14436
14436
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
14437
14437
  */
14438
- export namespace AtBRANDAt7825$ {
14439
- /** @deprecated use `AtBRANDAt7825$inboundSchema` instead. */
14440
- export const inboundSchema = AtBRANDAt7825$inboundSchema;
14441
- /** @deprecated use `AtBRANDAt7825$outboundSchema` instead. */
14442
- export const outboundSchema = AtBRANDAt7825$outboundSchema;
14443
- /** @deprecated use `AtBRANDAt7825$Outbound` instead. */
14444
- export type Outbound = AtBRANDAt7825$Outbound;
14438
+ export namespace AtBRANDAt7757$ {
14439
+ /** @deprecated use `AtBRANDAt7757$inboundSchema` instead. */
14440
+ export const inboundSchema = AtBRANDAt7757$inboundSchema;
14441
+ /** @deprecated use `AtBRANDAt7757$outboundSchema` instead. */
14442
+ export const outboundSchema = AtBRANDAt7757$outboundSchema;
14443
+ /** @deprecated use `AtBRANDAt7757$Outbound` instead. */
14444
+ export type Outbound = AtBRANDAt7757$Outbound;
14445
14445
  }
14446
14446
 
14447
- export function atBRANDAt7825ToJSON(atBRANDAt7825: AtBRANDAt7825): string {
14448
- return JSON.stringify(AtBRANDAt7825$outboundSchema.parse(atBRANDAt7825));
14447
+ export function atBRANDAt7757ToJSON(atBRANDAt7757: AtBRANDAt7757): string {
14448
+ return JSON.stringify(AtBRANDAt7757$outboundSchema.parse(atBRANDAt7757));
14449
14449
  }
14450
14450
 
14451
- export function atBRANDAt7825FromJSON(
14451
+ export function atBRANDAt7757FromJSON(
14452
14452
  jsonString: string,
14453
- ): SafeParseResult<AtBRANDAt7825, SDKValidationError> {
14453
+ ): SafeParseResult<AtBRANDAt7757, SDKValidationError> {
14454
14454
  return safeParse(
14455
14455
  jsonString,
14456
- (x) => AtBRANDAt7825$inboundSchema.parse(JSON.parse(x)),
14457
- `Failed to parse 'AtBRANDAt7825' from JSON`,
14456
+ (x) => AtBRANDAt7757$inboundSchema.parse(JSON.parse(x)),
14457
+ `Failed to parse 'AtBRANDAt7757' from JSON`,
14458
14458
  );
14459
14459
  }
14460
14460
 
@@ -14464,16 +14464,16 @@ export const CreateIntegrationStoreDirectValue$inboundSchema: z.ZodType<
14464
14464
  z.ZodTypeDef,
14465
14465
  unknown
14466
14466
  > = z.object({
14467
- "__@BRAND@7825": z.lazy(() => AtBRANDAt7825$inboundSchema),
14467
+ "__@BRAND@7757": z.lazy(() => AtBRANDAt7757$inboundSchema),
14468
14468
  }).transform((v) => {
14469
14469
  return remap$(v, {
14470
- "__@BRAND@7825": "atBRANDAt7825",
14470
+ "__@BRAND@7757": "atBRANDAt7757",
14471
14471
  });
14472
14472
  });
14473
14473
 
14474
14474
  /** @internal */
14475
14475
  export type CreateIntegrationStoreDirectValue$Outbound = {
14476
- "__@BRAND@7825": AtBRANDAt7825$Outbound;
14476
+ "__@BRAND@7757": AtBRANDAt7757$Outbound;
14477
14477
  };
14478
14478
 
14479
14479
  /** @internal */
@@ -14482,10 +14482,10 @@ export const CreateIntegrationStoreDirectValue$outboundSchema: z.ZodType<
14482
14482
  z.ZodTypeDef,
14483
14483
  CreateIntegrationStoreDirectValue
14484
14484
  > = z.object({
14485
- atBRANDAt7825: z.lazy(() => AtBRANDAt7825$outboundSchema),
14485
+ atBRANDAt7757: z.lazy(() => AtBRANDAt7757$outboundSchema),
14486
14486
  }).transform((v) => {
14487
14487
  return remap$(v, {
14488
- atBRANDAt7825: "__@BRAND@7825",
14488
+ atBRANDAt7757: "__@BRAND@7757",
14489
14489
  });
14490
14490
  });
14491
14491