@vercel/sdk 1.18.1 → 1.18.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +51 -53
- package/bin/mcp-server.js +1734 -1643
- package/bin/mcp-server.js.map +23 -26
- package/esm/__tests__/domains.test.js +10 -27
- package/esm/__tests__/domains.test.js.map +1 -1
- package/esm/__tests__/edgeconfig.test.js +6 -6
- package/esm/__tests__/edgeconfig.test.js.map +1 -1
- package/esm/__tests__/integrations.test.js +1 -1
- package/esm/__tests__/security.test.js +4 -4
- package/esm/__tests__/security.test.js.map +1 -1
- package/esm/funcs/integrationsGetBillingPlans.js +1 -0
- package/esm/funcs/integrationsGetBillingPlans.js.map +1 -1
- package/esm/lib/config.d.ts +3 -3
- package/esm/lib/config.js +3 -3
- package/esm/mcp-server/mcp-server.js +1 -1
- package/esm/mcp-server/server.d.ts.map +1 -1
- package/esm/mcp-server/server.js +1 -3
- package/esm/mcp-server/server.js.map +1 -1
- package/esm/models/authuser.d.ts +5 -0
- package/esm/models/authuser.d.ts.map +1 -1
- package/esm/models/authuser.js +2 -0
- package/esm/models/authuser.js.map +1 -1
- package/esm/models/canceldeploymentop.d.ts +2 -2
- package/esm/models/canceldeploymentop.d.ts.map +1 -1
- package/esm/models/canceldeploymentop.js +2 -2
- package/esm/models/canceldeploymentop.js.map +1 -1
- package/esm/models/createdeploymentop.d.ts +2 -2
- package/esm/models/createdeploymentop.d.ts.map +1 -1
- package/esm/models/createdeploymentop.js +2 -2
- package/esm/models/createdeploymentop.js.map +1 -1
- package/esm/models/createintegrationstoredirectop.d.ts +220 -152
- package/esm/models/createintegrationstoredirectop.d.ts.map +1 -1
- package/esm/models/createintegrationstoredirectop.js +296 -218
- package/esm/models/createintegrationstoredirectop.js.map +1 -1
- package/esm/models/createprojectop.d.ts +26 -4
- package/esm/models/createprojectop.d.ts.map +1 -1
- package/esm/models/createprojectop.js +23 -4
- package/esm/models/createprojectop.js.map +1 -1
- package/esm/models/getbillingplansop.d.ts +2 -0
- package/esm/models/getbillingplansop.d.ts.map +1 -1
- package/esm/models/getbillingplansop.js +2 -0
- package/esm/models/getbillingplansop.js.map +1 -1
- package/esm/models/getconfigurationop.d.ts +61 -1
- package/esm/models/getconfigurationop.d.ts.map +1 -1
- package/esm/models/getconfigurationop.js +44 -1
- package/esm/models/getconfigurationop.js.map +1 -1
- package/esm/models/getconfigurationproductsop.d.ts +200 -200
- package/esm/models/getconfigurationproductsop.js +290 -290
- package/esm/models/getconfigurationsop.d.ts +60 -0
- package/esm/models/getconfigurationsop.d.ts.map +1 -1
- package/esm/models/getconfigurationsop.js +43 -0
- package/esm/models/getconfigurationsop.js.map +1 -1
- package/esm/models/getdeploymentop.d.ts +4 -4
- package/esm/models/getdeploymentop.d.ts.map +1 -1
- package/esm/models/getdeploymentop.js +4 -4
- package/esm/models/getdeploymentop.js.map +1 -1
- package/esm/models/getorderop.d.ts +126 -42
- package/esm/models/getorderop.d.ts.map +1 -1
- package/esm/models/getorderop.js +138 -24
- package/esm/models/getorderop.js.map +1 -1
- package/esm/models/getprojectsop.d.ts +21 -4
- package/esm/models/getprojectsop.d.ts.map +1 -1
- package/esm/models/getprojectsop.js +21 -4
- package/esm/models/getprojectsop.js.map +1 -1
- package/esm/models/updateinstallationop.d.ts +18 -0
- package/esm/models/updateinstallationop.d.ts.map +1 -1
- package/esm/models/updateinstallationop.js +17 -0
- package/esm/models/updateinstallationop.js.map +1 -1
- package/esm/models/updateprojectdatacacheop.d.ts +21 -4
- package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
- package/esm/models/updateprojectdatacacheop.js +21 -4
- package/esm/models/updateprojectdatacacheop.js.map +1 -1
- package/esm/models/updateprojectop.d.ts +26 -4
- package/esm/models/updateprojectop.d.ts.map +1 -1
- package/esm/models/updateprojectop.js +23 -4
- package/esm/models/updateprojectop.js.map +1 -1
- package/esm/models/userevent.d.ts +38 -0
- package/esm/models/userevent.d.ts.map +1 -1
- package/esm/models/userevent.js +34 -0
- package/esm/models/userevent.js.map +1 -1
- package/esm/sdk/domains.d.ts +0 -8
- package/esm/sdk/domains.d.ts.map +1 -1
- package/esm/sdk/domains.js +0 -10
- package/esm/sdk/domains.js.map +1 -1
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/__tests__/domains.test.ts +12 -29
- package/src/__tests__/edgeconfig.test.ts +6 -6
- package/src/__tests__/integrations.test.ts +1 -1
- package/src/__tests__/security.test.ts +4 -4
- package/src/funcs/integrationsGetBillingPlans.ts +1 -0
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -3
- package/src/models/authuser.ts +7 -0
- package/src/models/canceldeploymentop.ts +4 -4
- package/src/models/createdeploymentop.ts +4 -4
- package/src/models/createintegrationstoredirectop.ts +704 -471
- package/src/models/createprojectop.ts +53 -8
- package/src/models/getbillingplansop.ts +4 -0
- package/src/models/getconfigurationop.ts +87 -1
- package/src/models/getconfigurationproductsop.ts +627 -627
- package/src/models/getconfigurationsop.ts +86 -0
- package/src/models/getdeploymentop.ts +8 -8
- package/src/models/getorderop.ts +469 -112
- package/src/models/getprojectsop.ts +46 -8
- package/src/models/updateinstallationop.ts +30 -0
- package/src/models/updateprojectdatacacheop.ts +46 -8
- package/src/models/updateprojectop.ts +53 -8
- package/src/models/userevent.ts +80 -0
- package/src/sdk/domains.ts +0 -22
- package/vercel-spec.json +480 -258
|
@@ -223,6 +223,12 @@ export type CreateIntegrationStoreDirectOwnership = ClosedEnum<
|
|
|
223
223
|
typeof CreateIntegrationStoreDirectOwnership
|
|
224
224
|
>;
|
|
225
225
|
|
|
226
|
+
export type SecretRotation2 = {
|
|
227
|
+
maxDelayHours: number;
|
|
228
|
+
};
|
|
229
|
+
|
|
230
|
+
export type SecretRotation = SecretRotation2 | boolean;
|
|
231
|
+
|
|
226
232
|
export type Capabilities = {
|
|
227
233
|
mcp?: boolean | undefined;
|
|
228
234
|
mcpReadonly?: boolean | undefined;
|
|
@@ -230,6 +236,7 @@ export type Capabilities = {
|
|
|
230
236
|
billable?: boolean | undefined;
|
|
231
237
|
transferable?: boolean | undefined;
|
|
232
238
|
secretsSync?: boolean | undefined;
|
|
239
|
+
secretRotation?: SecretRotation2 | boolean | undefined;
|
|
233
240
|
projects?: boolean | undefined;
|
|
234
241
|
};
|
|
235
242
|
|
|
@@ -251,6 +258,14 @@ export const ExternalResourceStatus = {
|
|
|
251
258
|
} as const;
|
|
252
259
|
export type ExternalResourceStatus = ClosedEnum<typeof ExternalResourceStatus>;
|
|
253
260
|
|
|
261
|
+
export type CreateIntegrationStoreDirectSecretRotation2 = {
|
|
262
|
+
maxDelayHours: number;
|
|
263
|
+
};
|
|
264
|
+
|
|
265
|
+
export type CreateIntegrationStoreDirectSecretRotation =
|
|
266
|
+
| CreateIntegrationStoreDirectSecretRotation2
|
|
267
|
+
| boolean;
|
|
268
|
+
|
|
254
269
|
export type CreateIntegrationStoreDirectCapabilities = {
|
|
255
270
|
mcp?: boolean | undefined;
|
|
256
271
|
mcpReadonly?: boolean | undefined;
|
|
@@ -258,6 +273,10 @@ export type CreateIntegrationStoreDirectCapabilities = {
|
|
|
258
273
|
billable?: boolean | undefined;
|
|
259
274
|
transferable?: boolean | undefined;
|
|
260
275
|
secretsSync?: boolean | undefined;
|
|
276
|
+
secretRotation?:
|
|
277
|
+
| CreateIntegrationStoreDirectSecretRotation2
|
|
278
|
+
| boolean
|
|
279
|
+
| undefined;
|
|
261
280
|
sandbox?: boolean | undefined;
|
|
262
281
|
linking?: boolean | undefined;
|
|
263
282
|
projects?: boolean | undefined;
|
|
@@ -270,12 +289,12 @@ export type CreateIntegrationStoreDirectIntegrationsType = ClosedEnum<
|
|
|
270
289
|
typeof CreateIntegrationStoreDirectIntegrationsType
|
|
271
290
|
>;
|
|
272
291
|
|
|
273
|
-
export type
|
|
292
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8845 =
|
|
274
293
|
{};
|
|
275
294
|
|
|
276
295
|
export type CreateIntegrationStoreDirectPropertiesValue = {
|
|
277
|
-
|
|
278
|
-
|
|
296
|
+
atBRANDAt8845:
|
|
297
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8845;
|
|
279
298
|
};
|
|
280
299
|
|
|
281
300
|
export const CreateIntegrationStoreDirectDisabled3 = {
|
|
@@ -344,31 +363,31 @@ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applica
|
|
|
344
363
|
typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl
|
|
345
364
|
>;
|
|
346
365
|
|
|
347
|
-
export type
|
|
366
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8845 =
|
|
348
367
|
{};
|
|
349
368
|
|
|
350
369
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength =
|
|
351
370
|
{
|
|
352
|
-
|
|
353
|
-
|
|
371
|
+
atBRANDAt8845:
|
|
372
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8845;
|
|
354
373
|
};
|
|
355
374
|
|
|
356
|
-
export type
|
|
375
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8845 =
|
|
357
376
|
{};
|
|
358
377
|
|
|
359
378
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength =
|
|
360
379
|
{
|
|
361
|
-
|
|
362
|
-
|
|
380
|
+
atBRANDAt8845:
|
|
381
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8845;
|
|
363
382
|
};
|
|
364
383
|
|
|
365
|
-
export type
|
|
384
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8845 =
|
|
366
385
|
{};
|
|
367
386
|
|
|
368
387
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern =
|
|
369
388
|
{
|
|
370
|
-
|
|
371
|
-
|
|
389
|
+
atBRANDAt8845:
|
|
390
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8845;
|
|
372
391
|
};
|
|
373
392
|
|
|
374
393
|
export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3 =
|
|
@@ -506,10 +525,10 @@ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applica
|
|
|
506
525
|
typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl
|
|
507
526
|
>;
|
|
508
527
|
|
|
509
|
-
export type
|
|
528
|
+
export type CreateIntegrationStoreDirectUiOptionsAtBRANDAt8845 = {};
|
|
510
529
|
|
|
511
530
|
export type CreateIntegrationStoreDirectUiOptionsValue = {
|
|
512
|
-
|
|
531
|
+
atBRANDAt8845: CreateIntegrationStoreDirectUiOptionsAtBRANDAt8845;
|
|
513
532
|
};
|
|
514
533
|
|
|
515
534
|
export const CreateIntegrationStoreDirectDisabledIntegrationsResponse2003 = {
|
|
@@ -560,10 +579,10 @@ export type CreateIntegrationStoreDirectUiOptions3 = {
|
|
|
560
579
|
| undefined;
|
|
561
580
|
};
|
|
562
581
|
|
|
563
|
-
export type
|
|
582
|
+
export type UiOptionsAtBRANDAt8845 = {};
|
|
564
583
|
|
|
565
584
|
export type CreateIntegrationStoreDirectUiOptions2 = {
|
|
566
|
-
|
|
585
|
+
atBRANDAt8845: UiOptionsAtBRANDAt8845;
|
|
567
586
|
};
|
|
568
587
|
|
|
569
588
|
export const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3 =
|
|
@@ -626,31 +645,31 @@ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiOptions
|
|
|
626
645
|
| CreateIntegrationStoreDirectUiOptions2
|
|
627
646
|
| CreateIntegrationStoreDirectUiOptions3;
|
|
628
647
|
|
|
629
|
-
export type
|
|
648
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8845 =
|
|
630
649
|
{};
|
|
631
650
|
|
|
632
651
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength =
|
|
633
652
|
{
|
|
634
|
-
|
|
635
|
-
|
|
653
|
+
atBRANDAt8845:
|
|
654
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8845;
|
|
636
655
|
};
|
|
637
656
|
|
|
638
|
-
export type
|
|
657
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8845 =
|
|
639
658
|
{};
|
|
640
659
|
|
|
641
660
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength =
|
|
642
661
|
{
|
|
643
|
-
|
|
644
|
-
|
|
662
|
+
atBRANDAt8845:
|
|
663
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8845;
|
|
645
664
|
};
|
|
646
665
|
|
|
647
|
-
export type
|
|
666
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8845 =
|
|
648
667
|
{};
|
|
649
668
|
|
|
650
669
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern =
|
|
651
670
|
{
|
|
652
|
-
|
|
653
|
-
|
|
671
|
+
atBRANDAt8845:
|
|
672
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8845;
|
|
654
673
|
};
|
|
655
674
|
|
|
656
675
|
export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStore3 =
|
|
@@ -793,31 +812,31 @@ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applica
|
|
|
793
812
|
typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type
|
|
794
813
|
>;
|
|
795
814
|
|
|
796
|
-
export type
|
|
815
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8845 =
|
|
797
816
|
{};
|
|
798
817
|
|
|
799
818
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength =
|
|
800
819
|
{
|
|
801
|
-
|
|
802
|
-
|
|
820
|
+
atBRANDAt8845:
|
|
821
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8845;
|
|
803
822
|
};
|
|
804
823
|
|
|
805
|
-
export type
|
|
824
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8845 =
|
|
806
825
|
{};
|
|
807
826
|
|
|
808
827
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength =
|
|
809
828
|
{
|
|
810
|
-
|
|
811
|
-
|
|
829
|
+
atBRANDAt8845:
|
|
830
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8845;
|
|
812
831
|
};
|
|
813
832
|
|
|
814
|
-
export type
|
|
833
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8845 =
|
|
815
834
|
{};
|
|
816
835
|
|
|
817
836
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern =
|
|
818
837
|
{
|
|
819
|
-
|
|
820
|
-
|
|
838
|
+
atBRANDAt8845:
|
|
839
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8845;
|
|
821
840
|
};
|
|
822
841
|
|
|
823
842
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsItems = {
|
|
@@ -1072,28 +1091,28 @@ export type CreateIntegrationStoreDirectPropertiesUiOptions = {
|
|
|
1072
1091
|
| undefined;
|
|
1073
1092
|
};
|
|
1074
1093
|
|
|
1075
|
-
export type
|
|
1094
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8845 =
|
|
1076
1095
|
{};
|
|
1077
1096
|
|
|
1078
1097
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength = {
|
|
1079
|
-
|
|
1080
|
-
|
|
1098
|
+
atBRANDAt8845:
|
|
1099
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8845;
|
|
1081
1100
|
};
|
|
1082
1101
|
|
|
1083
|
-
export type
|
|
1102
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8845 =
|
|
1084
1103
|
{};
|
|
1085
1104
|
|
|
1086
1105
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsMinLength = {
|
|
1087
|
-
|
|
1088
|
-
|
|
1106
|
+
atBRANDAt8845:
|
|
1107
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8845;
|
|
1089
1108
|
};
|
|
1090
1109
|
|
|
1091
|
-
export type
|
|
1110
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8845 =
|
|
1092
1111
|
{};
|
|
1093
1112
|
|
|
1094
1113
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsPattern = {
|
|
1095
|
-
|
|
1096
|
-
|
|
1114
|
+
atBRANDAt8845:
|
|
1115
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8845;
|
|
1097
1116
|
};
|
|
1098
1117
|
|
|
1099
1118
|
export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJson3 =
|
|
@@ -1596,24 +1615,24 @@ export type CreateIntegrationStoreDirectPropertiesUiControl = ClosedEnum<
|
|
|
1596
1615
|
typeof CreateIntegrationStoreDirectPropertiesUiControl
|
|
1597
1616
|
>;
|
|
1598
1617
|
|
|
1599
|
-
export type
|
|
1618
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8845 =
|
|
1600
1619
|
{};
|
|
1601
1620
|
|
|
1602
1621
|
export type CreateIntegrationStoreDirectPropertiesMaxLength = {
|
|
1603
|
-
|
|
1604
|
-
|
|
1622
|
+
atBRANDAt8845:
|
|
1623
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8845;
|
|
1605
1624
|
};
|
|
1606
1625
|
|
|
1607
|
-
export type
|
|
1626
|
+
export type PropertiesAtBRANDAt8845 = {};
|
|
1608
1627
|
|
|
1609
1628
|
export type CreateIntegrationStoreDirectPropertiesMinLength = {
|
|
1610
|
-
|
|
1629
|
+
atBRANDAt8845: PropertiesAtBRANDAt8845;
|
|
1611
1630
|
};
|
|
1612
1631
|
|
|
1613
|
-
export type
|
|
1632
|
+
export type CreateIntegrationStoreDirectPropertiesAtBRANDAt8845 = {};
|
|
1614
1633
|
|
|
1615
1634
|
export type CreateIntegrationStoreDirectPropertiesPattern = {
|
|
1616
|
-
|
|
1635
|
+
atBRANDAt8845: CreateIntegrationStoreDirectPropertiesAtBRANDAt8845;
|
|
1617
1636
|
};
|
|
1618
1637
|
|
|
1619
1638
|
export const CreateIntegrationStoreDirectUiReadOnly3 = {
|
|
@@ -1854,10 +1873,10 @@ export type Guides = {
|
|
|
1854
1873
|
steps: Array<Steps>;
|
|
1855
1874
|
};
|
|
1856
1875
|
|
|
1857
|
-
export type
|
|
1876
|
+
export type AtBRANDAt8845 = {};
|
|
1858
1877
|
|
|
1859
1878
|
export type CreateIntegrationStoreDirectValue = {
|
|
1860
|
-
|
|
1879
|
+
atBRANDAt8845: AtBRANDAt8845;
|
|
1861
1880
|
};
|
|
1862
1881
|
|
|
1863
1882
|
export const Disabled3 = {
|
|
@@ -2006,6 +2025,22 @@ export type CreateIntegrationStoreDirectStore = {
|
|
|
2006
2025
|
notification?: CreateIntegrationStoreDirectNotification | undefined;
|
|
2007
2026
|
secrets: Array<CreateIntegrationStoreDirectSecrets>;
|
|
2008
2027
|
billingPlan?: CreateIntegrationStoreDirectBillingPlan | undefined;
|
|
2028
|
+
/**
|
|
2029
|
+
* The timestamp when secret rotation was requested.
|
|
2030
|
+
*/
|
|
2031
|
+
secretRotationRequestedAt?: number | undefined;
|
|
2032
|
+
/**
|
|
2033
|
+
* The reason for the secret rotation request.
|
|
2034
|
+
*/
|
|
2035
|
+
secretRotationRequestedReason?: string | undefined;
|
|
2036
|
+
/**
|
|
2037
|
+
* The ID of the user/team who requested the secret rotation.
|
|
2038
|
+
*/
|
|
2039
|
+
secretRotationRequestedBy?: string | undefined;
|
|
2040
|
+
/**
|
|
2041
|
+
* The timestamp when secret rotation was completed.
|
|
2042
|
+
*/
|
|
2043
|
+
secretRotationCompletedAt?: number | undefined;
|
|
2009
2044
|
};
|
|
2010
2045
|
|
|
2011
2046
|
export type CreateIntegrationStoreDirectResponseBody = {
|
|
@@ -2565,6 +2600,72 @@ export const CreateIntegrationStoreDirectOwnership$outboundSchema:
|
|
|
2565
2600
|
z.ZodNativeEnum<typeof CreateIntegrationStoreDirectOwnership> =
|
|
2566
2601
|
CreateIntegrationStoreDirectOwnership$inboundSchema;
|
|
2567
2602
|
|
|
2603
|
+
/** @internal */
|
|
2604
|
+
export const SecretRotation2$inboundSchema: z.ZodType<
|
|
2605
|
+
SecretRotation2,
|
|
2606
|
+
z.ZodTypeDef,
|
|
2607
|
+
unknown
|
|
2608
|
+
> = z.object({
|
|
2609
|
+
maxDelayHours: z.number(),
|
|
2610
|
+
});
|
|
2611
|
+
/** @internal */
|
|
2612
|
+
export type SecretRotation2$Outbound = {
|
|
2613
|
+
maxDelayHours: number;
|
|
2614
|
+
};
|
|
2615
|
+
|
|
2616
|
+
/** @internal */
|
|
2617
|
+
export const SecretRotation2$outboundSchema: z.ZodType<
|
|
2618
|
+
SecretRotation2$Outbound,
|
|
2619
|
+
z.ZodTypeDef,
|
|
2620
|
+
SecretRotation2
|
|
2621
|
+
> = z.object({
|
|
2622
|
+
maxDelayHours: z.number(),
|
|
2623
|
+
});
|
|
2624
|
+
|
|
2625
|
+
export function secretRotation2ToJSON(
|
|
2626
|
+
secretRotation2: SecretRotation2,
|
|
2627
|
+
): string {
|
|
2628
|
+
return JSON.stringify(SecretRotation2$outboundSchema.parse(secretRotation2));
|
|
2629
|
+
}
|
|
2630
|
+
export function secretRotation2FromJSON(
|
|
2631
|
+
jsonString: string,
|
|
2632
|
+
): SafeParseResult<SecretRotation2, SDKValidationError> {
|
|
2633
|
+
return safeParse(
|
|
2634
|
+
jsonString,
|
|
2635
|
+
(x) => SecretRotation2$inboundSchema.parse(JSON.parse(x)),
|
|
2636
|
+
`Failed to parse 'SecretRotation2' from JSON`,
|
|
2637
|
+
);
|
|
2638
|
+
}
|
|
2639
|
+
|
|
2640
|
+
/** @internal */
|
|
2641
|
+
export const SecretRotation$inboundSchema: z.ZodType<
|
|
2642
|
+
SecretRotation,
|
|
2643
|
+
z.ZodTypeDef,
|
|
2644
|
+
unknown
|
|
2645
|
+
> = z.union([z.lazy(() => SecretRotation2$inboundSchema), z.boolean()]);
|
|
2646
|
+
/** @internal */
|
|
2647
|
+
export type SecretRotation$Outbound = SecretRotation2$Outbound | boolean;
|
|
2648
|
+
|
|
2649
|
+
/** @internal */
|
|
2650
|
+
export const SecretRotation$outboundSchema: z.ZodType<
|
|
2651
|
+
SecretRotation$Outbound,
|
|
2652
|
+
z.ZodTypeDef,
|
|
2653
|
+
SecretRotation
|
|
2654
|
+
> = z.union([z.lazy(() => SecretRotation2$outboundSchema), z.boolean()]);
|
|
2655
|
+
|
|
2656
|
+
export function secretRotationToJSON(secretRotation: SecretRotation): string {
|
|
2657
|
+
return JSON.stringify(SecretRotation$outboundSchema.parse(secretRotation));
|
|
2658
|
+
}
|
|
2659
|
+
export function secretRotationFromJSON(
|
|
2660
|
+
jsonString: string,
|
|
2661
|
+
): SafeParseResult<SecretRotation, SDKValidationError> {
|
|
2662
|
+
return safeParse(
|
|
2663
|
+
jsonString,
|
|
2664
|
+
(x) => SecretRotation$inboundSchema.parse(JSON.parse(x)),
|
|
2665
|
+
`Failed to parse 'SecretRotation' from JSON`,
|
|
2666
|
+
);
|
|
2667
|
+
}
|
|
2668
|
+
|
|
2568
2669
|
/** @internal */
|
|
2569
2670
|
export const Capabilities$inboundSchema: z.ZodType<
|
|
2570
2671
|
Capabilities,
|
|
@@ -2577,6 +2678,10 @@ export const Capabilities$inboundSchema: z.ZodType<
|
|
|
2577
2678
|
billable: z.boolean().optional(),
|
|
2578
2679
|
transferable: z.boolean().optional(),
|
|
2579
2680
|
secretsSync: z.boolean().optional(),
|
|
2681
|
+
secretRotation: z.union([
|
|
2682
|
+
z.lazy(() => SecretRotation2$inboundSchema),
|
|
2683
|
+
z.boolean(),
|
|
2684
|
+
]).optional(),
|
|
2580
2685
|
projects: z.boolean().optional(),
|
|
2581
2686
|
});
|
|
2582
2687
|
/** @internal */
|
|
@@ -2587,6 +2692,7 @@ export type Capabilities$Outbound = {
|
|
|
2587
2692
|
billable?: boolean | undefined;
|
|
2588
2693
|
transferable?: boolean | undefined;
|
|
2589
2694
|
secretsSync?: boolean | undefined;
|
|
2695
|
+
secretRotation?: SecretRotation2$Outbound | boolean | undefined;
|
|
2590
2696
|
projects?: boolean | undefined;
|
|
2591
2697
|
};
|
|
2592
2698
|
|
|
@@ -2602,6 +2708,10 @@ export const Capabilities$outboundSchema: z.ZodType<
|
|
|
2602
2708
|
billable: z.boolean().optional(),
|
|
2603
2709
|
transferable: z.boolean().optional(),
|
|
2604
2710
|
secretsSync: z.boolean().optional(),
|
|
2711
|
+
secretRotation: z.union([
|
|
2712
|
+
z.lazy(() => SecretRotation2$outboundSchema),
|
|
2713
|
+
z.boolean(),
|
|
2714
|
+
]).optional(),
|
|
2605
2715
|
projects: z.boolean().optional(),
|
|
2606
2716
|
});
|
|
2607
2717
|
|
|
@@ -2680,6 +2790,105 @@ export const ExternalResourceStatus$outboundSchema: z.ZodNativeEnum<
|
|
|
2680
2790
|
typeof ExternalResourceStatus
|
|
2681
2791
|
> = ExternalResourceStatus$inboundSchema;
|
|
2682
2792
|
|
|
2793
|
+
/** @internal */
|
|
2794
|
+
export const CreateIntegrationStoreDirectSecretRotation2$inboundSchema:
|
|
2795
|
+
z.ZodType<
|
|
2796
|
+
CreateIntegrationStoreDirectSecretRotation2,
|
|
2797
|
+
z.ZodTypeDef,
|
|
2798
|
+
unknown
|
|
2799
|
+
> = z.object({
|
|
2800
|
+
maxDelayHours: z.number(),
|
|
2801
|
+
});
|
|
2802
|
+
/** @internal */
|
|
2803
|
+
export type CreateIntegrationStoreDirectSecretRotation2$Outbound = {
|
|
2804
|
+
maxDelayHours: number;
|
|
2805
|
+
};
|
|
2806
|
+
|
|
2807
|
+
/** @internal */
|
|
2808
|
+
export const CreateIntegrationStoreDirectSecretRotation2$outboundSchema:
|
|
2809
|
+
z.ZodType<
|
|
2810
|
+
CreateIntegrationStoreDirectSecretRotation2$Outbound,
|
|
2811
|
+
z.ZodTypeDef,
|
|
2812
|
+
CreateIntegrationStoreDirectSecretRotation2
|
|
2813
|
+
> = z.object({
|
|
2814
|
+
maxDelayHours: z.number(),
|
|
2815
|
+
});
|
|
2816
|
+
|
|
2817
|
+
export function createIntegrationStoreDirectSecretRotation2ToJSON(
|
|
2818
|
+
createIntegrationStoreDirectSecretRotation2:
|
|
2819
|
+
CreateIntegrationStoreDirectSecretRotation2,
|
|
2820
|
+
): string {
|
|
2821
|
+
return JSON.stringify(
|
|
2822
|
+
CreateIntegrationStoreDirectSecretRotation2$outboundSchema.parse(
|
|
2823
|
+
createIntegrationStoreDirectSecretRotation2,
|
|
2824
|
+
),
|
|
2825
|
+
);
|
|
2826
|
+
}
|
|
2827
|
+
export function createIntegrationStoreDirectSecretRotation2FromJSON(
|
|
2828
|
+
jsonString: string,
|
|
2829
|
+
): SafeParseResult<
|
|
2830
|
+
CreateIntegrationStoreDirectSecretRotation2,
|
|
2831
|
+
SDKValidationError
|
|
2832
|
+
> {
|
|
2833
|
+
return safeParse(
|
|
2834
|
+
jsonString,
|
|
2835
|
+
(x) =>
|
|
2836
|
+
CreateIntegrationStoreDirectSecretRotation2$inboundSchema.parse(
|
|
2837
|
+
JSON.parse(x),
|
|
2838
|
+
),
|
|
2839
|
+
`Failed to parse 'CreateIntegrationStoreDirectSecretRotation2' from JSON`,
|
|
2840
|
+
);
|
|
2841
|
+
}
|
|
2842
|
+
|
|
2843
|
+
/** @internal */
|
|
2844
|
+
export const CreateIntegrationStoreDirectSecretRotation$inboundSchema:
|
|
2845
|
+
z.ZodType<CreateIntegrationStoreDirectSecretRotation, z.ZodTypeDef, unknown> =
|
|
2846
|
+
z.union([
|
|
2847
|
+
z.lazy(() => CreateIntegrationStoreDirectSecretRotation2$inboundSchema),
|
|
2848
|
+
z.boolean(),
|
|
2849
|
+
]);
|
|
2850
|
+
/** @internal */
|
|
2851
|
+
export type CreateIntegrationStoreDirectSecretRotation$Outbound =
|
|
2852
|
+
| CreateIntegrationStoreDirectSecretRotation2$Outbound
|
|
2853
|
+
| boolean;
|
|
2854
|
+
|
|
2855
|
+
/** @internal */
|
|
2856
|
+
export const CreateIntegrationStoreDirectSecretRotation$outboundSchema:
|
|
2857
|
+
z.ZodType<
|
|
2858
|
+
CreateIntegrationStoreDirectSecretRotation$Outbound,
|
|
2859
|
+
z.ZodTypeDef,
|
|
2860
|
+
CreateIntegrationStoreDirectSecretRotation
|
|
2861
|
+
> = z.union([
|
|
2862
|
+
z.lazy(() => CreateIntegrationStoreDirectSecretRotation2$outboundSchema),
|
|
2863
|
+
z.boolean(),
|
|
2864
|
+
]);
|
|
2865
|
+
|
|
2866
|
+
export function createIntegrationStoreDirectSecretRotationToJSON(
|
|
2867
|
+
createIntegrationStoreDirectSecretRotation:
|
|
2868
|
+
CreateIntegrationStoreDirectSecretRotation,
|
|
2869
|
+
): string {
|
|
2870
|
+
return JSON.stringify(
|
|
2871
|
+
CreateIntegrationStoreDirectSecretRotation$outboundSchema.parse(
|
|
2872
|
+
createIntegrationStoreDirectSecretRotation,
|
|
2873
|
+
),
|
|
2874
|
+
);
|
|
2875
|
+
}
|
|
2876
|
+
export function createIntegrationStoreDirectSecretRotationFromJSON(
|
|
2877
|
+
jsonString: string,
|
|
2878
|
+
): SafeParseResult<
|
|
2879
|
+
CreateIntegrationStoreDirectSecretRotation,
|
|
2880
|
+
SDKValidationError
|
|
2881
|
+
> {
|
|
2882
|
+
return safeParse(
|
|
2883
|
+
jsonString,
|
|
2884
|
+
(x) =>
|
|
2885
|
+
CreateIntegrationStoreDirectSecretRotation$inboundSchema.parse(
|
|
2886
|
+
JSON.parse(x),
|
|
2887
|
+
),
|
|
2888
|
+
`Failed to parse 'CreateIntegrationStoreDirectSecretRotation' from JSON`,
|
|
2889
|
+
);
|
|
2890
|
+
}
|
|
2891
|
+
|
|
2683
2892
|
/** @internal */
|
|
2684
2893
|
export const CreateIntegrationStoreDirectCapabilities$inboundSchema: z.ZodType<
|
|
2685
2894
|
CreateIntegrationStoreDirectCapabilities,
|
|
@@ -2692,6 +2901,10 @@ export const CreateIntegrationStoreDirectCapabilities$inboundSchema: z.ZodType<
|
|
|
2692
2901
|
billable: z.boolean().optional(),
|
|
2693
2902
|
transferable: z.boolean().optional(),
|
|
2694
2903
|
secretsSync: z.boolean().optional(),
|
|
2904
|
+
secretRotation: z.union([
|
|
2905
|
+
z.lazy(() => CreateIntegrationStoreDirectSecretRotation2$inboundSchema),
|
|
2906
|
+
z.boolean(),
|
|
2907
|
+
]).optional(),
|
|
2695
2908
|
sandbox: z.boolean().optional(),
|
|
2696
2909
|
linking: z.boolean().optional(),
|
|
2697
2910
|
projects: z.boolean().optional(),
|
|
@@ -2704,6 +2917,10 @@ export type CreateIntegrationStoreDirectCapabilities$Outbound = {
|
|
|
2704
2917
|
billable?: boolean | undefined;
|
|
2705
2918
|
transferable?: boolean | undefined;
|
|
2706
2919
|
secretsSync?: boolean | undefined;
|
|
2920
|
+
secretRotation?:
|
|
2921
|
+
| CreateIntegrationStoreDirectSecretRotation2$Outbound
|
|
2922
|
+
| boolean
|
|
2923
|
+
| undefined;
|
|
2707
2924
|
sandbox?: boolean | undefined;
|
|
2708
2925
|
linking?: boolean | undefined;
|
|
2709
2926
|
projects?: boolean | undefined;
|
|
@@ -2721,6 +2938,10 @@ export const CreateIntegrationStoreDirectCapabilities$outboundSchema: z.ZodType<
|
|
|
2721
2938
|
billable: z.boolean().optional(),
|
|
2722
2939
|
transferable: z.boolean().optional(),
|
|
2723
2940
|
secretsSync: z.boolean().optional(),
|
|
2941
|
+
secretRotation: z.union([
|
|
2942
|
+
z.lazy(() => CreateIntegrationStoreDirectSecretRotation2$outboundSchema),
|
|
2943
|
+
z.boolean(),
|
|
2944
|
+
]).optional(),
|
|
2724
2945
|
sandbox: z.boolean().optional(),
|
|
2725
2946
|
linking: z.boolean().optional(),
|
|
2726
2947
|
projects: z.boolean().optional(),
|
|
@@ -2762,47 +2983,47 @@ export const CreateIntegrationStoreDirectIntegrationsType$outboundSchema:
|
|
|
2762
2983
|
CreateIntegrationStoreDirectIntegrationsType$inboundSchema;
|
|
2763
2984
|
|
|
2764
2985
|
/** @internal */
|
|
2765
|
-
export const
|
|
2986
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8845$inboundSchema:
|
|
2766
2987
|
z.ZodType<
|
|
2767
|
-
|
|
2988
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8845,
|
|
2768
2989
|
z.ZodTypeDef,
|
|
2769
2990
|
unknown
|
|
2770
2991
|
> = z.object({});
|
|
2771
2992
|
/** @internal */
|
|
2772
|
-
export type
|
|
2993
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8845$Outbound =
|
|
2773
2994
|
{};
|
|
2774
2995
|
|
|
2775
2996
|
/** @internal */
|
|
2776
|
-
export const
|
|
2997
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8845$outboundSchema:
|
|
2777
2998
|
z.ZodType<
|
|
2778
|
-
|
|
2999
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8845$Outbound,
|
|
2779
3000
|
z.ZodTypeDef,
|
|
2780
|
-
|
|
3001
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8845
|
|
2781
3002
|
> = z.object({});
|
|
2782
3003
|
|
|
2783
|
-
export function
|
|
2784
|
-
|
|
2785
|
-
|
|
3004
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8845ToJSON(
|
|
3005
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8845:
|
|
3006
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8845,
|
|
2786
3007
|
): string {
|
|
2787
3008
|
return JSON.stringify(
|
|
2788
|
-
|
|
3009
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8845$outboundSchema
|
|
2789
3010
|
.parse(
|
|
2790
|
-
|
|
3011
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8845,
|
|
2791
3012
|
),
|
|
2792
3013
|
);
|
|
2793
3014
|
}
|
|
2794
|
-
export function
|
|
3015
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8845FromJSON(
|
|
2795
3016
|
jsonString: string,
|
|
2796
3017
|
): SafeParseResult<
|
|
2797
|
-
|
|
3018
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8845,
|
|
2798
3019
|
SDKValidationError
|
|
2799
3020
|
> {
|
|
2800
3021
|
return safeParse(
|
|
2801
3022
|
jsonString,
|
|
2802
3023
|
(x) =>
|
|
2803
|
-
|
|
3024
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8845$inboundSchema
|
|
2804
3025
|
.parse(JSON.parse(x)),
|
|
2805
|
-
`Failed to parse '
|
|
3026
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8845' from JSON`,
|
|
2806
3027
|
);
|
|
2807
3028
|
}
|
|
2808
3029
|
|
|
@@ -2813,18 +3034,18 @@ export const CreateIntegrationStoreDirectPropertiesValue$inboundSchema:
|
|
|
2813
3034
|
z.ZodTypeDef,
|
|
2814
3035
|
unknown
|
|
2815
3036
|
> = z.object({
|
|
2816
|
-
"__@BRAND@
|
|
2817
|
-
|
|
3037
|
+
"__@BRAND@8845": z.lazy(() =>
|
|
3038
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8845$inboundSchema
|
|
2818
3039
|
),
|
|
2819
3040
|
}).transform((v) => {
|
|
2820
3041
|
return remap$(v, {
|
|
2821
|
-
"__@BRAND@
|
|
3042
|
+
"__@BRAND@8845": "atBRANDAt8845",
|
|
2822
3043
|
});
|
|
2823
3044
|
});
|
|
2824
3045
|
/** @internal */
|
|
2825
3046
|
export type CreateIntegrationStoreDirectPropertiesValue$Outbound = {
|
|
2826
|
-
"__@BRAND@
|
|
2827
|
-
|
|
3047
|
+
"__@BRAND@8845":
|
|
3048
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8845$Outbound;
|
|
2828
3049
|
};
|
|
2829
3050
|
|
|
2830
3051
|
/** @internal */
|
|
@@ -2834,12 +3055,12 @@ export const CreateIntegrationStoreDirectPropertiesValue$outboundSchema:
|
|
|
2834
3055
|
z.ZodTypeDef,
|
|
2835
3056
|
CreateIntegrationStoreDirectPropertiesValue
|
|
2836
3057
|
> = z.object({
|
|
2837
|
-
|
|
2838
|
-
|
|
3058
|
+
atBRANDAt8845: z.lazy(() =>
|
|
3059
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8845$outboundSchema
|
|
2839
3060
|
),
|
|
2840
3061
|
}).transform((v) => {
|
|
2841
3062
|
return remap$(v, {
|
|
2842
|
-
|
|
3063
|
+
atBRANDAt8845: "__@BRAND@8845",
|
|
2843
3064
|
});
|
|
2844
3065
|
});
|
|
2845
3066
|
|
|
@@ -3193,47 +3414,47 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
|
|
|
3193
3414
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$inboundSchema;
|
|
3194
3415
|
|
|
3195
3416
|
/** @internal */
|
|
3196
|
-
export const
|
|
3417
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8845$inboundSchema:
|
|
3197
3418
|
z.ZodType<
|
|
3198
|
-
|
|
3419
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8845,
|
|
3199
3420
|
z.ZodTypeDef,
|
|
3200
3421
|
unknown
|
|
3201
3422
|
> = z.object({});
|
|
3202
3423
|
/** @internal */
|
|
3203
|
-
export type
|
|
3424
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8845$Outbound =
|
|
3204
3425
|
{};
|
|
3205
3426
|
|
|
3206
3427
|
/** @internal */
|
|
3207
|
-
export const
|
|
3428
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8845$outboundSchema:
|
|
3208
3429
|
z.ZodType<
|
|
3209
|
-
|
|
3430
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8845$Outbound,
|
|
3210
3431
|
z.ZodTypeDef,
|
|
3211
|
-
|
|
3432
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8845
|
|
3212
3433
|
> = z.object({});
|
|
3213
3434
|
|
|
3214
|
-
export function
|
|
3215
|
-
|
|
3216
|
-
|
|
3435
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8845ToJSON(
|
|
3436
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8845:
|
|
3437
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8845,
|
|
3217
3438
|
): string {
|
|
3218
3439
|
return JSON.stringify(
|
|
3219
|
-
|
|
3440
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8845$outboundSchema
|
|
3220
3441
|
.parse(
|
|
3221
|
-
|
|
3442
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8845,
|
|
3222
3443
|
),
|
|
3223
3444
|
);
|
|
3224
3445
|
}
|
|
3225
|
-
export function
|
|
3446
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8845FromJSON(
|
|
3226
3447
|
jsonString: string,
|
|
3227
3448
|
): SafeParseResult<
|
|
3228
|
-
|
|
3449
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8845,
|
|
3229
3450
|
SDKValidationError
|
|
3230
3451
|
> {
|
|
3231
3452
|
return safeParse(
|
|
3232
3453
|
jsonString,
|
|
3233
3454
|
(x) =>
|
|
3234
|
-
|
|
3455
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8845$inboundSchema
|
|
3235
3456
|
.parse(JSON.parse(x)),
|
|
3236
|
-
`Failed to parse '
|
|
3457
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8845' from JSON`,
|
|
3237
3458
|
);
|
|
3238
3459
|
}
|
|
3239
3460
|
|
|
@@ -3244,19 +3465,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLen
|
|
|
3244
3465
|
z.ZodTypeDef,
|
|
3245
3466
|
unknown
|
|
3246
3467
|
> = z.object({
|
|
3247
|
-
"__@BRAND@
|
|
3248
|
-
|
|
3468
|
+
"__@BRAND@8845": z.lazy(() =>
|
|
3469
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8845$inboundSchema
|
|
3249
3470
|
),
|
|
3250
3471
|
}).transform((v) => {
|
|
3251
3472
|
return remap$(v, {
|
|
3252
|
-
"__@BRAND@
|
|
3473
|
+
"__@BRAND@8845": "atBRANDAt8845",
|
|
3253
3474
|
});
|
|
3254
3475
|
});
|
|
3255
3476
|
/** @internal */
|
|
3256
3477
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$Outbound =
|
|
3257
3478
|
{
|
|
3258
|
-
"__@BRAND@
|
|
3259
|
-
|
|
3479
|
+
"__@BRAND@8845":
|
|
3480
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8845$Outbound;
|
|
3260
3481
|
};
|
|
3261
3482
|
|
|
3262
3483
|
/** @internal */
|
|
@@ -3266,12 +3487,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLen
|
|
|
3266
3487
|
z.ZodTypeDef,
|
|
3267
3488
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength
|
|
3268
3489
|
> = z.object({
|
|
3269
|
-
|
|
3270
|
-
|
|
3490
|
+
atBRANDAt8845: z.lazy(() =>
|
|
3491
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8845$outboundSchema
|
|
3271
3492
|
),
|
|
3272
3493
|
}).transform((v) => {
|
|
3273
3494
|
return remap$(v, {
|
|
3274
|
-
|
|
3495
|
+
atBRANDAt8845: "__@BRAND@8845",
|
|
3275
3496
|
});
|
|
3276
3497
|
});
|
|
3277
3498
|
|
|
@@ -3302,47 +3523,47 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200Max
|
|
|
3302
3523
|
}
|
|
3303
3524
|
|
|
3304
3525
|
/** @internal */
|
|
3305
|
-
export const
|
|
3526
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8845$inboundSchema:
|
|
3306
3527
|
z.ZodType<
|
|
3307
|
-
|
|
3528
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8845,
|
|
3308
3529
|
z.ZodTypeDef,
|
|
3309
3530
|
unknown
|
|
3310
3531
|
> = z.object({});
|
|
3311
3532
|
/** @internal */
|
|
3312
|
-
export type
|
|
3533
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8845$Outbound =
|
|
3313
3534
|
{};
|
|
3314
3535
|
|
|
3315
3536
|
/** @internal */
|
|
3316
|
-
export const
|
|
3537
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8845$outboundSchema:
|
|
3317
3538
|
z.ZodType<
|
|
3318
|
-
|
|
3539
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8845$Outbound,
|
|
3319
3540
|
z.ZodTypeDef,
|
|
3320
|
-
|
|
3541
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8845
|
|
3321
3542
|
> = z.object({});
|
|
3322
3543
|
|
|
3323
|
-
export function
|
|
3324
|
-
|
|
3325
|
-
|
|
3544
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8845ToJSON(
|
|
3545
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8845:
|
|
3546
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8845,
|
|
3326
3547
|
): string {
|
|
3327
3548
|
return JSON.stringify(
|
|
3328
|
-
|
|
3549
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8845$outboundSchema
|
|
3329
3550
|
.parse(
|
|
3330
|
-
|
|
3551
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8845,
|
|
3331
3552
|
),
|
|
3332
3553
|
);
|
|
3333
3554
|
}
|
|
3334
|
-
export function
|
|
3555
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8845FromJSON(
|
|
3335
3556
|
jsonString: string,
|
|
3336
3557
|
): SafeParseResult<
|
|
3337
|
-
|
|
3558
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8845,
|
|
3338
3559
|
SDKValidationError
|
|
3339
3560
|
> {
|
|
3340
3561
|
return safeParse(
|
|
3341
3562
|
jsonString,
|
|
3342
3563
|
(x) =>
|
|
3343
|
-
|
|
3564
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8845$inboundSchema
|
|
3344
3565
|
.parse(JSON.parse(x)),
|
|
3345
|
-
`Failed to parse '
|
|
3566
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8845' from JSON`,
|
|
3346
3567
|
);
|
|
3347
3568
|
}
|
|
3348
3569
|
|
|
@@ -3353,19 +3574,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLen
|
|
|
3353
3574
|
z.ZodTypeDef,
|
|
3354
3575
|
unknown
|
|
3355
3576
|
> = z.object({
|
|
3356
|
-
"__@BRAND@
|
|
3357
|
-
|
|
3577
|
+
"__@BRAND@8845": z.lazy(() =>
|
|
3578
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8845$inboundSchema
|
|
3358
3579
|
),
|
|
3359
3580
|
}).transform((v) => {
|
|
3360
3581
|
return remap$(v, {
|
|
3361
|
-
"__@BRAND@
|
|
3582
|
+
"__@BRAND@8845": "atBRANDAt8845",
|
|
3362
3583
|
});
|
|
3363
3584
|
});
|
|
3364
3585
|
/** @internal */
|
|
3365
3586
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$Outbound =
|
|
3366
3587
|
{
|
|
3367
|
-
"__@BRAND@
|
|
3368
|
-
|
|
3588
|
+
"__@BRAND@8845":
|
|
3589
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8845$Outbound;
|
|
3369
3590
|
};
|
|
3370
3591
|
|
|
3371
3592
|
/** @internal */
|
|
@@ -3375,12 +3596,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLen
|
|
|
3375
3596
|
z.ZodTypeDef,
|
|
3376
3597
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength
|
|
3377
3598
|
> = z.object({
|
|
3378
|
-
|
|
3379
|
-
|
|
3599
|
+
atBRANDAt8845: z.lazy(() =>
|
|
3600
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8845$outboundSchema
|
|
3380
3601
|
),
|
|
3381
3602
|
}).transform((v) => {
|
|
3382
3603
|
return remap$(v, {
|
|
3383
|
-
|
|
3604
|
+
atBRANDAt8845: "__@BRAND@8845",
|
|
3384
3605
|
});
|
|
3385
3606
|
});
|
|
3386
3607
|
|
|
@@ -3411,47 +3632,47 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200Min
|
|
|
3411
3632
|
}
|
|
3412
3633
|
|
|
3413
3634
|
/** @internal */
|
|
3414
|
-
export const
|
|
3635
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8845$inboundSchema:
|
|
3415
3636
|
z.ZodType<
|
|
3416
|
-
|
|
3637
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8845,
|
|
3417
3638
|
z.ZodTypeDef,
|
|
3418
3639
|
unknown
|
|
3419
3640
|
> = z.object({});
|
|
3420
3641
|
/** @internal */
|
|
3421
|
-
export type
|
|
3642
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8845$Outbound =
|
|
3422
3643
|
{};
|
|
3423
3644
|
|
|
3424
3645
|
/** @internal */
|
|
3425
|
-
export const
|
|
3646
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8845$outboundSchema:
|
|
3426
3647
|
z.ZodType<
|
|
3427
|
-
|
|
3648
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8845$Outbound,
|
|
3428
3649
|
z.ZodTypeDef,
|
|
3429
|
-
|
|
3650
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8845
|
|
3430
3651
|
> = z.object({});
|
|
3431
3652
|
|
|
3432
|
-
export function
|
|
3433
|
-
|
|
3434
|
-
|
|
3653
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8845ToJSON(
|
|
3654
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8845:
|
|
3655
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8845,
|
|
3435
3656
|
): string {
|
|
3436
3657
|
return JSON.stringify(
|
|
3437
|
-
|
|
3658
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8845$outboundSchema
|
|
3438
3659
|
.parse(
|
|
3439
|
-
|
|
3660
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8845,
|
|
3440
3661
|
),
|
|
3441
3662
|
);
|
|
3442
3663
|
}
|
|
3443
|
-
export function
|
|
3664
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8845FromJSON(
|
|
3444
3665
|
jsonString: string,
|
|
3445
3666
|
): SafeParseResult<
|
|
3446
|
-
|
|
3667
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8845,
|
|
3447
3668
|
SDKValidationError
|
|
3448
3669
|
> {
|
|
3449
3670
|
return safeParse(
|
|
3450
3671
|
jsonString,
|
|
3451
3672
|
(x) =>
|
|
3452
|
-
|
|
3673
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8845$inboundSchema
|
|
3453
3674
|
.parse(JSON.parse(x)),
|
|
3454
|
-
`Failed to parse '
|
|
3675
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8845' from JSON`,
|
|
3455
3676
|
);
|
|
3456
3677
|
}
|
|
3457
3678
|
|
|
@@ -3462,19 +3683,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Patter
|
|
|
3462
3683
|
z.ZodTypeDef,
|
|
3463
3684
|
unknown
|
|
3464
3685
|
> = z.object({
|
|
3465
|
-
"__@BRAND@
|
|
3466
|
-
|
|
3686
|
+
"__@BRAND@8845": z.lazy(() =>
|
|
3687
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8845$inboundSchema
|
|
3467
3688
|
),
|
|
3468
3689
|
}).transform((v) => {
|
|
3469
3690
|
return remap$(v, {
|
|
3470
|
-
"__@BRAND@
|
|
3691
|
+
"__@BRAND@8845": "atBRANDAt8845",
|
|
3471
3692
|
});
|
|
3472
3693
|
});
|
|
3473
3694
|
/** @internal */
|
|
3474
3695
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$Outbound =
|
|
3475
3696
|
{
|
|
3476
|
-
"__@BRAND@
|
|
3477
|
-
|
|
3697
|
+
"__@BRAND@8845":
|
|
3698
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8845$Outbound;
|
|
3478
3699
|
};
|
|
3479
3700
|
|
|
3480
3701
|
/** @internal */
|
|
@@ -3484,12 +3705,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Patter
|
|
|
3484
3705
|
z.ZodTypeDef,
|
|
3485
3706
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern
|
|
3486
3707
|
> = z.object({
|
|
3487
|
-
|
|
3488
|
-
|
|
3708
|
+
atBRANDAt8845: z.lazy(() =>
|
|
3709
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8845$outboundSchema
|
|
3489
3710
|
),
|
|
3490
3711
|
}).transform((v) => {
|
|
3491
3712
|
return remap$(v, {
|
|
3492
|
-
|
|
3713
|
+
atBRANDAt8845: "__@BRAND@8845",
|
|
3493
3714
|
});
|
|
3494
3715
|
});
|
|
3495
3716
|
|
|
@@ -4279,46 +4500,46 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
|
|
|
4279
4500
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl$inboundSchema;
|
|
4280
4501
|
|
|
4281
4502
|
/** @internal */
|
|
4282
|
-
export const
|
|
4503
|
+
export const CreateIntegrationStoreDirectUiOptionsAtBRANDAt8845$inboundSchema:
|
|
4283
4504
|
z.ZodType<
|
|
4284
|
-
|
|
4505
|
+
CreateIntegrationStoreDirectUiOptionsAtBRANDAt8845,
|
|
4285
4506
|
z.ZodTypeDef,
|
|
4286
4507
|
unknown
|
|
4287
4508
|
> = z.object({});
|
|
4288
4509
|
/** @internal */
|
|
4289
|
-
export type
|
|
4510
|
+
export type CreateIntegrationStoreDirectUiOptionsAtBRANDAt8845$Outbound = {};
|
|
4290
4511
|
|
|
4291
4512
|
/** @internal */
|
|
4292
|
-
export const
|
|
4513
|
+
export const CreateIntegrationStoreDirectUiOptionsAtBRANDAt8845$outboundSchema:
|
|
4293
4514
|
z.ZodType<
|
|
4294
|
-
|
|
4515
|
+
CreateIntegrationStoreDirectUiOptionsAtBRANDAt8845$Outbound,
|
|
4295
4516
|
z.ZodTypeDef,
|
|
4296
|
-
|
|
4517
|
+
CreateIntegrationStoreDirectUiOptionsAtBRANDAt8845
|
|
4297
4518
|
> = z.object({});
|
|
4298
4519
|
|
|
4299
|
-
export function
|
|
4300
|
-
|
|
4301
|
-
|
|
4520
|
+
export function createIntegrationStoreDirectUiOptionsAtBRANDAt8845ToJSON(
|
|
4521
|
+
createIntegrationStoreDirectUiOptionsAtBRANDAt8845:
|
|
4522
|
+
CreateIntegrationStoreDirectUiOptionsAtBRANDAt8845,
|
|
4302
4523
|
): string {
|
|
4303
4524
|
return JSON.stringify(
|
|
4304
|
-
|
|
4305
|
-
|
|
4525
|
+
CreateIntegrationStoreDirectUiOptionsAtBRANDAt8845$outboundSchema.parse(
|
|
4526
|
+
createIntegrationStoreDirectUiOptionsAtBRANDAt8845,
|
|
4306
4527
|
),
|
|
4307
4528
|
);
|
|
4308
4529
|
}
|
|
4309
|
-
export function
|
|
4530
|
+
export function createIntegrationStoreDirectUiOptionsAtBRANDAt8845FromJSON(
|
|
4310
4531
|
jsonString: string,
|
|
4311
4532
|
): SafeParseResult<
|
|
4312
|
-
|
|
4533
|
+
CreateIntegrationStoreDirectUiOptionsAtBRANDAt8845,
|
|
4313
4534
|
SDKValidationError
|
|
4314
4535
|
> {
|
|
4315
4536
|
return safeParse(
|
|
4316
4537
|
jsonString,
|
|
4317
4538
|
(x) =>
|
|
4318
|
-
|
|
4539
|
+
CreateIntegrationStoreDirectUiOptionsAtBRANDAt8845$inboundSchema.parse(
|
|
4319
4540
|
JSON.parse(x),
|
|
4320
4541
|
),
|
|
4321
|
-
`Failed to parse '
|
|
4542
|
+
`Failed to parse 'CreateIntegrationStoreDirectUiOptionsAtBRANDAt8845' from JSON`,
|
|
4322
4543
|
);
|
|
4323
4544
|
}
|
|
4324
4545
|
|
|
@@ -4326,17 +4547,17 @@ export function createIntegrationStoreDirectUiOptionsAtBRANDAt8831FromJSON(
|
|
|
4326
4547
|
export const CreateIntegrationStoreDirectUiOptionsValue$inboundSchema:
|
|
4327
4548
|
z.ZodType<CreateIntegrationStoreDirectUiOptionsValue, z.ZodTypeDef, unknown> =
|
|
4328
4549
|
z.object({
|
|
4329
|
-
"__@BRAND@
|
|
4330
|
-
|
|
4550
|
+
"__@BRAND@8845": z.lazy(() =>
|
|
4551
|
+
CreateIntegrationStoreDirectUiOptionsAtBRANDAt8845$inboundSchema
|
|
4331
4552
|
),
|
|
4332
4553
|
}).transform((v) => {
|
|
4333
4554
|
return remap$(v, {
|
|
4334
|
-
"__@BRAND@
|
|
4555
|
+
"__@BRAND@8845": "atBRANDAt8845",
|
|
4335
4556
|
});
|
|
4336
4557
|
});
|
|
4337
4558
|
/** @internal */
|
|
4338
4559
|
export type CreateIntegrationStoreDirectUiOptionsValue$Outbound = {
|
|
4339
|
-
"__@BRAND@
|
|
4560
|
+
"__@BRAND@8845": CreateIntegrationStoreDirectUiOptionsAtBRANDAt8845$Outbound;
|
|
4340
4561
|
};
|
|
4341
4562
|
|
|
4342
4563
|
/** @internal */
|
|
@@ -4346,12 +4567,12 @@ export const CreateIntegrationStoreDirectUiOptionsValue$outboundSchema:
|
|
|
4346
4567
|
z.ZodTypeDef,
|
|
4347
4568
|
CreateIntegrationStoreDirectUiOptionsValue
|
|
4348
4569
|
> = z.object({
|
|
4349
|
-
|
|
4350
|
-
|
|
4570
|
+
atBRANDAt8845: z.lazy(() =>
|
|
4571
|
+
CreateIntegrationStoreDirectUiOptionsAtBRANDAt8845$outboundSchema
|
|
4351
4572
|
),
|
|
4352
4573
|
}).transform((v) => {
|
|
4353
4574
|
return remap$(v, {
|
|
4354
|
-
|
|
4575
|
+
atBRANDAt8845: "__@BRAND@8845",
|
|
4355
4576
|
});
|
|
4356
4577
|
});
|
|
4357
4578
|
|
|
@@ -4702,35 +4923,35 @@ export function createIntegrationStoreDirectUiOptions3FromJSON(
|
|
|
4702
4923
|
}
|
|
4703
4924
|
|
|
4704
4925
|
/** @internal */
|
|
4705
|
-
export const
|
|
4706
|
-
|
|
4926
|
+
export const UiOptionsAtBRANDAt8845$inboundSchema: z.ZodType<
|
|
4927
|
+
UiOptionsAtBRANDAt8845,
|
|
4707
4928
|
z.ZodTypeDef,
|
|
4708
4929
|
unknown
|
|
4709
4930
|
> = z.object({});
|
|
4710
4931
|
/** @internal */
|
|
4711
|
-
export type
|
|
4932
|
+
export type UiOptionsAtBRANDAt8845$Outbound = {};
|
|
4712
4933
|
|
|
4713
4934
|
/** @internal */
|
|
4714
|
-
export const
|
|
4715
|
-
|
|
4935
|
+
export const UiOptionsAtBRANDAt8845$outboundSchema: z.ZodType<
|
|
4936
|
+
UiOptionsAtBRANDAt8845$Outbound,
|
|
4716
4937
|
z.ZodTypeDef,
|
|
4717
|
-
|
|
4938
|
+
UiOptionsAtBRANDAt8845
|
|
4718
4939
|
> = z.object({});
|
|
4719
4940
|
|
|
4720
|
-
export function
|
|
4721
|
-
|
|
4941
|
+
export function uiOptionsAtBRANDAt8845ToJSON(
|
|
4942
|
+
uiOptionsAtBRANDAt8845: UiOptionsAtBRANDAt8845,
|
|
4722
4943
|
): string {
|
|
4723
4944
|
return JSON.stringify(
|
|
4724
|
-
|
|
4945
|
+
UiOptionsAtBRANDAt8845$outboundSchema.parse(uiOptionsAtBRANDAt8845),
|
|
4725
4946
|
);
|
|
4726
4947
|
}
|
|
4727
|
-
export function
|
|
4948
|
+
export function uiOptionsAtBRANDAt8845FromJSON(
|
|
4728
4949
|
jsonString: string,
|
|
4729
|
-
): SafeParseResult<
|
|
4950
|
+
): SafeParseResult<UiOptionsAtBRANDAt8845, SDKValidationError> {
|
|
4730
4951
|
return safeParse(
|
|
4731
4952
|
jsonString,
|
|
4732
|
-
(x) =>
|
|
4733
|
-
`Failed to parse '
|
|
4953
|
+
(x) => UiOptionsAtBRANDAt8845$inboundSchema.parse(JSON.parse(x)),
|
|
4954
|
+
`Failed to parse 'UiOptionsAtBRANDAt8845' from JSON`,
|
|
4734
4955
|
);
|
|
4735
4956
|
}
|
|
4736
4957
|
|
|
@@ -4740,15 +4961,15 @@ export const CreateIntegrationStoreDirectUiOptions2$inboundSchema: z.ZodType<
|
|
|
4740
4961
|
z.ZodTypeDef,
|
|
4741
4962
|
unknown
|
|
4742
4963
|
> = z.object({
|
|
4743
|
-
"__@BRAND@
|
|
4964
|
+
"__@BRAND@8845": z.lazy(() => UiOptionsAtBRANDAt8845$inboundSchema),
|
|
4744
4965
|
}).transform((v) => {
|
|
4745
4966
|
return remap$(v, {
|
|
4746
|
-
"__@BRAND@
|
|
4967
|
+
"__@BRAND@8845": "atBRANDAt8845",
|
|
4747
4968
|
});
|
|
4748
4969
|
});
|
|
4749
4970
|
/** @internal */
|
|
4750
4971
|
export type CreateIntegrationStoreDirectUiOptions2$Outbound = {
|
|
4751
|
-
"__@BRAND@
|
|
4972
|
+
"__@BRAND@8845": UiOptionsAtBRANDAt8845$Outbound;
|
|
4752
4973
|
};
|
|
4753
4974
|
|
|
4754
4975
|
/** @internal */
|
|
@@ -4757,10 +4978,10 @@ export const CreateIntegrationStoreDirectUiOptions2$outboundSchema: z.ZodType<
|
|
|
4757
4978
|
z.ZodTypeDef,
|
|
4758
4979
|
CreateIntegrationStoreDirectUiOptions2
|
|
4759
4980
|
> = z.object({
|
|
4760
|
-
|
|
4981
|
+
atBRANDAt8845: z.lazy(() => UiOptionsAtBRANDAt8845$outboundSchema),
|
|
4761
4982
|
}).transform((v) => {
|
|
4762
4983
|
return remap$(v, {
|
|
4763
|
-
|
|
4984
|
+
atBRANDAt8845: "__@BRAND@8845",
|
|
4764
4985
|
});
|
|
4765
4986
|
});
|
|
4766
4987
|
|
|
@@ -5173,47 +5394,47 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponseUiOpti
|
|
|
5173
5394
|
}
|
|
5174
5395
|
|
|
5175
5396
|
/** @internal */
|
|
5176
|
-
export const
|
|
5397
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8845$inboundSchema:
|
|
5177
5398
|
z.ZodType<
|
|
5178
|
-
|
|
5399
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8845,
|
|
5179
5400
|
z.ZodTypeDef,
|
|
5180
5401
|
unknown
|
|
5181
5402
|
> = z.object({});
|
|
5182
5403
|
/** @internal */
|
|
5183
|
-
export type
|
|
5404
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8845$Outbound =
|
|
5184
5405
|
{};
|
|
5185
5406
|
|
|
5186
5407
|
/** @internal */
|
|
5187
|
-
export const
|
|
5408
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8845$outboundSchema:
|
|
5188
5409
|
z.ZodType<
|
|
5189
|
-
|
|
5410
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8845$Outbound,
|
|
5190
5411
|
z.ZodTypeDef,
|
|
5191
|
-
|
|
5412
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8845
|
|
5192
5413
|
> = z.object({});
|
|
5193
5414
|
|
|
5194
|
-
export function
|
|
5195
|
-
|
|
5196
|
-
|
|
5415
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8845ToJSON(
|
|
5416
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8845:
|
|
5417
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8845,
|
|
5197
5418
|
): string {
|
|
5198
5419
|
return JSON.stringify(
|
|
5199
|
-
|
|
5420
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8845$outboundSchema
|
|
5200
5421
|
.parse(
|
|
5201
|
-
|
|
5422
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8845,
|
|
5202
5423
|
),
|
|
5203
5424
|
);
|
|
5204
5425
|
}
|
|
5205
|
-
export function
|
|
5426
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8845FromJSON(
|
|
5206
5427
|
jsonString: string,
|
|
5207
5428
|
): SafeParseResult<
|
|
5208
|
-
|
|
5429
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8845,
|
|
5209
5430
|
SDKValidationError
|
|
5210
5431
|
> {
|
|
5211
5432
|
return safeParse(
|
|
5212
5433
|
jsonString,
|
|
5213
5434
|
(x) =>
|
|
5214
|
-
|
|
5435
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8845$inboundSchema
|
|
5215
5436
|
.parse(JSON.parse(x)),
|
|
5216
|
-
`Failed to parse '
|
|
5437
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8845' from JSON`,
|
|
5217
5438
|
);
|
|
5218
5439
|
}
|
|
5219
5440
|
|
|
@@ -5224,19 +5445,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength
|
|
|
5224
5445
|
z.ZodTypeDef,
|
|
5225
5446
|
unknown
|
|
5226
5447
|
> = z.object({
|
|
5227
|
-
"__@BRAND@
|
|
5228
|
-
|
|
5448
|
+
"__@BRAND@8845": z.lazy(() =>
|
|
5449
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8845$inboundSchema
|
|
5229
5450
|
),
|
|
5230
5451
|
}).transform((v) => {
|
|
5231
5452
|
return remap$(v, {
|
|
5232
|
-
"__@BRAND@
|
|
5453
|
+
"__@BRAND@8845": "atBRANDAt8845",
|
|
5233
5454
|
});
|
|
5234
5455
|
});
|
|
5235
5456
|
/** @internal */
|
|
5236
5457
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$Outbound =
|
|
5237
5458
|
{
|
|
5238
|
-
"__@BRAND@
|
|
5239
|
-
|
|
5459
|
+
"__@BRAND@8845":
|
|
5460
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8845$Outbound;
|
|
5240
5461
|
};
|
|
5241
5462
|
|
|
5242
5463
|
/** @internal */
|
|
@@ -5246,12 +5467,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength
|
|
|
5246
5467
|
z.ZodTypeDef,
|
|
5247
5468
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength
|
|
5248
5469
|
> = z.object({
|
|
5249
|
-
|
|
5250
|
-
|
|
5470
|
+
atBRANDAt8845: z.lazy(() =>
|
|
5471
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8845$outboundSchema
|
|
5251
5472
|
),
|
|
5252
5473
|
}).transform((v) => {
|
|
5253
5474
|
return remap$(v, {
|
|
5254
|
-
|
|
5475
|
+
atBRANDAt8845: "__@BRAND@8845",
|
|
5255
5476
|
});
|
|
5256
5477
|
});
|
|
5257
5478
|
|
|
@@ -5282,47 +5503,47 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponseMaxLen
|
|
|
5282
5503
|
}
|
|
5283
5504
|
|
|
5284
5505
|
/** @internal */
|
|
5285
|
-
export const
|
|
5506
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8845$inboundSchema:
|
|
5286
5507
|
z.ZodType<
|
|
5287
|
-
|
|
5508
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8845,
|
|
5288
5509
|
z.ZodTypeDef,
|
|
5289
5510
|
unknown
|
|
5290
5511
|
> = z.object({});
|
|
5291
5512
|
/** @internal */
|
|
5292
|
-
export type
|
|
5513
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8845$Outbound =
|
|
5293
5514
|
{};
|
|
5294
5515
|
|
|
5295
5516
|
/** @internal */
|
|
5296
|
-
export const
|
|
5517
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8845$outboundSchema:
|
|
5297
5518
|
z.ZodType<
|
|
5298
|
-
|
|
5519
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8845$Outbound,
|
|
5299
5520
|
z.ZodTypeDef,
|
|
5300
|
-
|
|
5521
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8845
|
|
5301
5522
|
> = z.object({});
|
|
5302
5523
|
|
|
5303
|
-
export function
|
|
5304
|
-
|
|
5305
|
-
|
|
5524
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8845ToJSON(
|
|
5525
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8845:
|
|
5526
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8845,
|
|
5306
5527
|
): string {
|
|
5307
5528
|
return JSON.stringify(
|
|
5308
|
-
|
|
5529
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8845$outboundSchema
|
|
5309
5530
|
.parse(
|
|
5310
|
-
|
|
5531
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8845,
|
|
5311
5532
|
),
|
|
5312
5533
|
);
|
|
5313
5534
|
}
|
|
5314
|
-
export function
|
|
5535
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8845FromJSON(
|
|
5315
5536
|
jsonString: string,
|
|
5316
5537
|
): SafeParseResult<
|
|
5317
|
-
|
|
5538
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8845,
|
|
5318
5539
|
SDKValidationError
|
|
5319
5540
|
> {
|
|
5320
5541
|
return safeParse(
|
|
5321
5542
|
jsonString,
|
|
5322
5543
|
(x) =>
|
|
5323
|
-
|
|
5544
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8845$inboundSchema
|
|
5324
5545
|
.parse(JSON.parse(x)),
|
|
5325
|
-
`Failed to parse '
|
|
5546
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8845' from JSON`,
|
|
5326
5547
|
);
|
|
5327
5548
|
}
|
|
5328
5549
|
|
|
@@ -5333,19 +5554,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength
|
|
|
5333
5554
|
z.ZodTypeDef,
|
|
5334
5555
|
unknown
|
|
5335
5556
|
> = z.object({
|
|
5336
|
-
"__@BRAND@
|
|
5337
|
-
|
|
5557
|
+
"__@BRAND@8845": z.lazy(() =>
|
|
5558
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8845$inboundSchema
|
|
5338
5559
|
),
|
|
5339
5560
|
}).transform((v) => {
|
|
5340
5561
|
return remap$(v, {
|
|
5341
|
-
"__@BRAND@
|
|
5562
|
+
"__@BRAND@8845": "atBRANDAt8845",
|
|
5342
5563
|
});
|
|
5343
5564
|
});
|
|
5344
5565
|
/** @internal */
|
|
5345
5566
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$Outbound =
|
|
5346
5567
|
{
|
|
5347
|
-
"__@BRAND@
|
|
5348
|
-
|
|
5568
|
+
"__@BRAND@8845":
|
|
5569
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8845$Outbound;
|
|
5349
5570
|
};
|
|
5350
5571
|
|
|
5351
5572
|
/** @internal */
|
|
@@ -5355,12 +5576,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength
|
|
|
5355
5576
|
z.ZodTypeDef,
|
|
5356
5577
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength
|
|
5357
5578
|
> = z.object({
|
|
5358
|
-
|
|
5359
|
-
|
|
5579
|
+
atBRANDAt8845: z.lazy(() =>
|
|
5580
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8845$outboundSchema
|
|
5360
5581
|
),
|
|
5361
5582
|
}).transform((v) => {
|
|
5362
5583
|
return remap$(v, {
|
|
5363
|
-
|
|
5584
|
+
atBRANDAt8845: "__@BRAND@8845",
|
|
5364
5585
|
});
|
|
5365
5586
|
});
|
|
5366
5587
|
|
|
@@ -5391,47 +5612,47 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponseMinLen
|
|
|
5391
5612
|
}
|
|
5392
5613
|
|
|
5393
5614
|
/** @internal */
|
|
5394
|
-
export const
|
|
5615
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8845$inboundSchema:
|
|
5395
5616
|
z.ZodType<
|
|
5396
|
-
|
|
5617
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8845,
|
|
5397
5618
|
z.ZodTypeDef,
|
|
5398
5619
|
unknown
|
|
5399
5620
|
> = z.object({});
|
|
5400
5621
|
/** @internal */
|
|
5401
|
-
export type
|
|
5622
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8845$Outbound =
|
|
5402
5623
|
{};
|
|
5403
5624
|
|
|
5404
5625
|
/** @internal */
|
|
5405
|
-
export const
|
|
5626
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8845$outboundSchema:
|
|
5406
5627
|
z.ZodType<
|
|
5407
|
-
|
|
5628
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8845$Outbound,
|
|
5408
5629
|
z.ZodTypeDef,
|
|
5409
|
-
|
|
5630
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8845
|
|
5410
5631
|
> = z.object({});
|
|
5411
5632
|
|
|
5412
|
-
export function
|
|
5413
|
-
|
|
5414
|
-
|
|
5633
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8845ToJSON(
|
|
5634
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8845:
|
|
5635
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8845,
|
|
5415
5636
|
): string {
|
|
5416
5637
|
return JSON.stringify(
|
|
5417
|
-
|
|
5638
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8845$outboundSchema
|
|
5418
5639
|
.parse(
|
|
5419
|
-
|
|
5640
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8845,
|
|
5420
5641
|
),
|
|
5421
5642
|
);
|
|
5422
5643
|
}
|
|
5423
|
-
export function
|
|
5644
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8845FromJSON(
|
|
5424
5645
|
jsonString: string,
|
|
5425
5646
|
): SafeParseResult<
|
|
5426
|
-
|
|
5647
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8845,
|
|
5427
5648
|
SDKValidationError
|
|
5428
5649
|
> {
|
|
5429
5650
|
return safeParse(
|
|
5430
5651
|
jsonString,
|
|
5431
5652
|
(x) =>
|
|
5432
|
-
|
|
5653
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8845$inboundSchema
|
|
5433
5654
|
.parse(JSON.parse(x)),
|
|
5434
|
-
`Failed to parse '
|
|
5655
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8845' from JSON`,
|
|
5435
5656
|
);
|
|
5436
5657
|
}
|
|
5437
5658
|
|
|
@@ -5442,19 +5663,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$i
|
|
|
5442
5663
|
z.ZodTypeDef,
|
|
5443
5664
|
unknown
|
|
5444
5665
|
> = z.object({
|
|
5445
|
-
"__@BRAND@
|
|
5446
|
-
|
|
5666
|
+
"__@BRAND@8845": z.lazy(() =>
|
|
5667
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8845$inboundSchema
|
|
5447
5668
|
),
|
|
5448
5669
|
}).transform((v) => {
|
|
5449
5670
|
return remap$(v, {
|
|
5450
|
-
"__@BRAND@
|
|
5671
|
+
"__@BRAND@8845": "atBRANDAt8845",
|
|
5451
5672
|
});
|
|
5452
5673
|
});
|
|
5453
5674
|
/** @internal */
|
|
5454
5675
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$Outbound =
|
|
5455
5676
|
{
|
|
5456
|
-
"__@BRAND@
|
|
5457
|
-
|
|
5677
|
+
"__@BRAND@8845":
|
|
5678
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8845$Outbound;
|
|
5458
5679
|
};
|
|
5459
5680
|
|
|
5460
5681
|
/** @internal */
|
|
@@ -5464,12 +5685,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$o
|
|
|
5464
5685
|
z.ZodTypeDef,
|
|
5465
5686
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern
|
|
5466
5687
|
> = z.object({
|
|
5467
|
-
|
|
5468
|
-
|
|
5688
|
+
atBRANDAt8845: z.lazy(() =>
|
|
5689
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8845$outboundSchema
|
|
5469
5690
|
),
|
|
5470
5691
|
}).transform((v) => {
|
|
5471
5692
|
return remap$(v, {
|
|
5472
|
-
|
|
5693
|
+
atBRANDAt8845: "__@BRAND@8845",
|
|
5473
5694
|
});
|
|
5474
5695
|
});
|
|
5475
5696
|
|
|
@@ -6278,47 +6499,47 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
|
|
|
6278
6499
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type$inboundSchema;
|
|
6279
6500
|
|
|
6280
6501
|
/** @internal */
|
|
6281
|
-
export const
|
|
6502
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8845$inboundSchema:
|
|
6282
6503
|
z.ZodType<
|
|
6283
|
-
|
|
6504
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8845,
|
|
6284
6505
|
z.ZodTypeDef,
|
|
6285
6506
|
unknown
|
|
6286
6507
|
> = z.object({});
|
|
6287
6508
|
/** @internal */
|
|
6288
|
-
export type
|
|
6509
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8845$Outbound =
|
|
6289
6510
|
{};
|
|
6290
6511
|
|
|
6291
6512
|
/** @internal */
|
|
6292
|
-
export const
|
|
6513
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8845$outboundSchema:
|
|
6293
6514
|
z.ZodType<
|
|
6294
|
-
|
|
6515
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8845$Outbound,
|
|
6295
6516
|
z.ZodTypeDef,
|
|
6296
|
-
|
|
6517
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8845
|
|
6297
6518
|
> = z.object({});
|
|
6298
6519
|
|
|
6299
|
-
export function
|
|
6300
|
-
|
|
6301
|
-
|
|
6520
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8845ToJSON(
|
|
6521
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8845:
|
|
6522
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8845,
|
|
6302
6523
|
): string {
|
|
6303
6524
|
return JSON.stringify(
|
|
6304
|
-
|
|
6525
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8845$outboundSchema
|
|
6305
6526
|
.parse(
|
|
6306
|
-
|
|
6527
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8845,
|
|
6307
6528
|
),
|
|
6308
6529
|
);
|
|
6309
6530
|
}
|
|
6310
|
-
export function
|
|
6531
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8845FromJSON(
|
|
6311
6532
|
jsonString: string,
|
|
6312
6533
|
): SafeParseResult<
|
|
6313
|
-
|
|
6534
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8845,
|
|
6314
6535
|
SDKValidationError
|
|
6315
6536
|
> {
|
|
6316
6537
|
return safeParse(
|
|
6317
6538
|
jsonString,
|
|
6318
6539
|
(x) =>
|
|
6319
|
-
|
|
6540
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8845$inboundSchema
|
|
6320
6541
|
.parse(JSON.parse(x)),
|
|
6321
|
-
`Failed to parse '
|
|
6542
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8845' from JSON`,
|
|
6322
6543
|
);
|
|
6323
6544
|
}
|
|
6324
6545
|
|
|
@@ -6329,19 +6550,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
|
|
|
6329
6550
|
z.ZodTypeDef,
|
|
6330
6551
|
unknown
|
|
6331
6552
|
> = z.object({
|
|
6332
|
-
"__@BRAND@
|
|
6333
|
-
|
|
6553
|
+
"__@BRAND@8845": z.lazy(() =>
|
|
6554
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8845$inboundSchema
|
|
6334
6555
|
),
|
|
6335
6556
|
}).transform((v) => {
|
|
6336
6557
|
return remap$(v, {
|
|
6337
|
-
"__@BRAND@
|
|
6558
|
+
"__@BRAND@8845": "atBRANDAt8845",
|
|
6338
6559
|
});
|
|
6339
6560
|
});
|
|
6340
6561
|
/** @internal */
|
|
6341
6562
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength$Outbound =
|
|
6342
6563
|
{
|
|
6343
|
-
"__@BRAND@
|
|
6344
|
-
|
|
6564
|
+
"__@BRAND@8845":
|
|
6565
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8845$Outbound;
|
|
6345
6566
|
};
|
|
6346
6567
|
|
|
6347
6568
|
/** @internal */
|
|
@@ -6351,12 +6572,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
|
|
|
6351
6572
|
z.ZodTypeDef,
|
|
6352
6573
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength
|
|
6353
6574
|
> = z.object({
|
|
6354
|
-
|
|
6355
|
-
|
|
6575
|
+
atBRANDAt8845: z.lazy(() =>
|
|
6576
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8845$outboundSchema
|
|
6356
6577
|
),
|
|
6357
6578
|
}).transform((v) => {
|
|
6358
6579
|
return remap$(v, {
|
|
6359
|
-
|
|
6580
|
+
atBRANDAt8845: "__@BRAND@8845",
|
|
6360
6581
|
});
|
|
6361
6582
|
});
|
|
6362
6583
|
|
|
@@ -6387,47 +6608,47 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200App
|
|
|
6387
6608
|
}
|
|
6388
6609
|
|
|
6389
6610
|
/** @internal */
|
|
6390
|
-
export const
|
|
6611
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8845$inboundSchema:
|
|
6391
6612
|
z.ZodType<
|
|
6392
|
-
|
|
6613
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8845,
|
|
6393
6614
|
z.ZodTypeDef,
|
|
6394
6615
|
unknown
|
|
6395
6616
|
> = z.object({});
|
|
6396
6617
|
/** @internal */
|
|
6397
|
-
export type
|
|
6618
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8845$Outbound =
|
|
6398
6619
|
{};
|
|
6399
6620
|
|
|
6400
6621
|
/** @internal */
|
|
6401
|
-
export const
|
|
6622
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8845$outboundSchema:
|
|
6402
6623
|
z.ZodType<
|
|
6403
|
-
|
|
6624
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8845$Outbound,
|
|
6404
6625
|
z.ZodTypeDef,
|
|
6405
|
-
|
|
6626
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8845
|
|
6406
6627
|
> = z.object({});
|
|
6407
6628
|
|
|
6408
|
-
export function
|
|
6409
|
-
|
|
6410
|
-
|
|
6629
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8845ToJSON(
|
|
6630
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8845:
|
|
6631
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8845,
|
|
6411
6632
|
): string {
|
|
6412
6633
|
return JSON.stringify(
|
|
6413
|
-
|
|
6634
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8845$outboundSchema
|
|
6414
6635
|
.parse(
|
|
6415
|
-
|
|
6636
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8845,
|
|
6416
6637
|
),
|
|
6417
6638
|
);
|
|
6418
6639
|
}
|
|
6419
|
-
export function
|
|
6640
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8845FromJSON(
|
|
6420
6641
|
jsonString: string,
|
|
6421
6642
|
): SafeParseResult<
|
|
6422
|
-
|
|
6643
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8845,
|
|
6423
6644
|
SDKValidationError
|
|
6424
6645
|
> {
|
|
6425
6646
|
return safeParse(
|
|
6426
6647
|
jsonString,
|
|
6427
6648
|
(x) =>
|
|
6428
|
-
|
|
6649
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8845$inboundSchema
|
|
6429
6650
|
.parse(JSON.parse(x)),
|
|
6430
|
-
`Failed to parse '
|
|
6651
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8845' from JSON`,
|
|
6431
6652
|
);
|
|
6432
6653
|
}
|
|
6433
6654
|
|
|
@@ -6438,19 +6659,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
|
|
|
6438
6659
|
z.ZodTypeDef,
|
|
6439
6660
|
unknown
|
|
6440
6661
|
> = z.object({
|
|
6441
|
-
"__@BRAND@
|
|
6442
|
-
|
|
6662
|
+
"__@BRAND@8845": z.lazy(() =>
|
|
6663
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8845$inboundSchema
|
|
6443
6664
|
),
|
|
6444
6665
|
}).transform((v) => {
|
|
6445
6666
|
return remap$(v, {
|
|
6446
|
-
"__@BRAND@
|
|
6667
|
+
"__@BRAND@8845": "atBRANDAt8845",
|
|
6447
6668
|
});
|
|
6448
6669
|
});
|
|
6449
6670
|
/** @internal */
|
|
6450
6671
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength$Outbound =
|
|
6451
6672
|
{
|
|
6452
|
-
"__@BRAND@
|
|
6453
|
-
|
|
6673
|
+
"__@BRAND@8845":
|
|
6674
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8845$Outbound;
|
|
6454
6675
|
};
|
|
6455
6676
|
|
|
6456
6677
|
/** @internal */
|
|
@@ -6460,12 +6681,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
|
|
|
6460
6681
|
z.ZodTypeDef,
|
|
6461
6682
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength
|
|
6462
6683
|
> = z.object({
|
|
6463
|
-
|
|
6464
|
-
|
|
6684
|
+
atBRANDAt8845: z.lazy(() =>
|
|
6685
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8845$outboundSchema
|
|
6465
6686
|
),
|
|
6466
6687
|
}).transform((v) => {
|
|
6467
6688
|
return remap$(v, {
|
|
6468
|
-
|
|
6689
|
+
atBRANDAt8845: "__@BRAND@8845",
|
|
6469
6690
|
});
|
|
6470
6691
|
});
|
|
6471
6692
|
|
|
@@ -6496,47 +6717,47 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200App
|
|
|
6496
6717
|
}
|
|
6497
6718
|
|
|
6498
6719
|
/** @internal */
|
|
6499
|
-
export const
|
|
6720
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8845$inboundSchema:
|
|
6500
6721
|
z.ZodType<
|
|
6501
|
-
|
|
6722
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8845,
|
|
6502
6723
|
z.ZodTypeDef,
|
|
6503
6724
|
unknown
|
|
6504
6725
|
> = z.object({});
|
|
6505
6726
|
/** @internal */
|
|
6506
|
-
export type
|
|
6727
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8845$Outbound =
|
|
6507
6728
|
{};
|
|
6508
6729
|
|
|
6509
6730
|
/** @internal */
|
|
6510
|
-
export const
|
|
6731
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8845$outboundSchema:
|
|
6511
6732
|
z.ZodType<
|
|
6512
|
-
|
|
6733
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8845$Outbound,
|
|
6513
6734
|
z.ZodTypeDef,
|
|
6514
|
-
|
|
6735
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8845
|
|
6515
6736
|
> = z.object({});
|
|
6516
6737
|
|
|
6517
|
-
export function
|
|
6518
|
-
|
|
6519
|
-
|
|
6738
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8845ToJSON(
|
|
6739
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8845:
|
|
6740
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8845,
|
|
6520
6741
|
): string {
|
|
6521
6742
|
return JSON.stringify(
|
|
6522
|
-
|
|
6743
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8845$outboundSchema
|
|
6523
6744
|
.parse(
|
|
6524
|
-
|
|
6745
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8845,
|
|
6525
6746
|
),
|
|
6526
6747
|
);
|
|
6527
6748
|
}
|
|
6528
|
-
export function
|
|
6749
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8845FromJSON(
|
|
6529
6750
|
jsonString: string,
|
|
6530
6751
|
): SafeParseResult<
|
|
6531
|
-
|
|
6752
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8845,
|
|
6532
6753
|
SDKValidationError
|
|
6533
6754
|
> {
|
|
6534
6755
|
return safeParse(
|
|
6535
6756
|
jsonString,
|
|
6536
6757
|
(x) =>
|
|
6537
|
-
|
|
6758
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8845$inboundSchema
|
|
6538
6759
|
.parse(JSON.parse(x)),
|
|
6539
|
-
`Failed to parse '
|
|
6760
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8845' from JSON`,
|
|
6540
6761
|
);
|
|
6541
6762
|
}
|
|
6542
6763
|
|
|
@@ -6547,19 +6768,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
|
|
|
6547
6768
|
z.ZodTypeDef,
|
|
6548
6769
|
unknown
|
|
6549
6770
|
> = z.object({
|
|
6550
|
-
"__@BRAND@
|
|
6551
|
-
|
|
6771
|
+
"__@BRAND@8845": z.lazy(() =>
|
|
6772
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8845$inboundSchema
|
|
6552
6773
|
),
|
|
6553
6774
|
}).transform((v) => {
|
|
6554
6775
|
return remap$(v, {
|
|
6555
|
-
"__@BRAND@
|
|
6776
|
+
"__@BRAND@8845": "atBRANDAt8845",
|
|
6556
6777
|
});
|
|
6557
6778
|
});
|
|
6558
6779
|
/** @internal */
|
|
6559
6780
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern$Outbound =
|
|
6560
6781
|
{
|
|
6561
|
-
"__@BRAND@
|
|
6562
|
-
|
|
6782
|
+
"__@BRAND@8845":
|
|
6783
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8845$Outbound;
|
|
6563
6784
|
};
|
|
6564
6785
|
|
|
6565
6786
|
/** @internal */
|
|
@@ -6569,12 +6790,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
|
|
|
6569
6790
|
z.ZodTypeDef,
|
|
6570
6791
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern
|
|
6571
6792
|
> = z.object({
|
|
6572
|
-
|
|
6573
|
-
|
|
6793
|
+
atBRANDAt8845: z.lazy(() =>
|
|
6794
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8845$outboundSchema
|
|
6574
6795
|
),
|
|
6575
6796
|
}).transform((v) => {
|
|
6576
6797
|
return remap$(v, {
|
|
6577
|
-
|
|
6798
|
+
atBRANDAt8845: "__@BRAND@8845",
|
|
6578
6799
|
});
|
|
6579
6800
|
});
|
|
6580
6801
|
|
|
@@ -8111,45 +8332,45 @@ export function createIntegrationStoreDirectPropertiesUiOptionsFromJSON(
|
|
|
8111
8332
|
}
|
|
8112
8333
|
|
|
8113
8334
|
/** @internal */
|
|
8114
|
-
export const
|
|
8335
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8845$inboundSchema:
|
|
8115
8336
|
z.ZodType<
|
|
8116
|
-
|
|
8337
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8845,
|
|
8117
8338
|
z.ZodTypeDef,
|
|
8118
8339
|
unknown
|
|
8119
8340
|
> = z.object({});
|
|
8120
8341
|
/** @internal */
|
|
8121
|
-
export type
|
|
8342
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8845$Outbound =
|
|
8122
8343
|
{};
|
|
8123
8344
|
|
|
8124
8345
|
/** @internal */
|
|
8125
|
-
export const
|
|
8346
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8845$outboundSchema:
|
|
8126
8347
|
z.ZodType<
|
|
8127
|
-
|
|
8348
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8845$Outbound,
|
|
8128
8349
|
z.ZodTypeDef,
|
|
8129
|
-
|
|
8350
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8845
|
|
8130
8351
|
> = z.object({});
|
|
8131
8352
|
|
|
8132
|
-
export function
|
|
8133
|
-
|
|
8134
|
-
|
|
8353
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8845ToJSON(
|
|
8354
|
+
createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8845:
|
|
8355
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8845,
|
|
8135
8356
|
): string {
|
|
8136
8357
|
return JSON.stringify(
|
|
8137
|
-
|
|
8138
|
-
.parse(
|
|
8358
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8845$outboundSchema
|
|
8359
|
+
.parse(createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8845),
|
|
8139
8360
|
);
|
|
8140
8361
|
}
|
|
8141
|
-
export function
|
|
8362
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8845FromJSON(
|
|
8142
8363
|
jsonString: string,
|
|
8143
8364
|
): SafeParseResult<
|
|
8144
|
-
|
|
8365
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8845,
|
|
8145
8366
|
SDKValidationError
|
|
8146
8367
|
> {
|
|
8147
8368
|
return safeParse(
|
|
8148
8369
|
jsonString,
|
|
8149
8370
|
(x) =>
|
|
8150
|
-
|
|
8371
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8845$inboundSchema
|
|
8151
8372
|
.parse(JSON.parse(x)),
|
|
8152
|
-
`Failed to parse '
|
|
8373
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8845' from JSON`,
|
|
8153
8374
|
);
|
|
8154
8375
|
}
|
|
8155
8376
|
|
|
@@ -8160,19 +8381,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$inbound
|
|
|
8160
8381
|
z.ZodTypeDef,
|
|
8161
8382
|
unknown
|
|
8162
8383
|
> = z.object({
|
|
8163
|
-
"__@BRAND@
|
|
8164
|
-
|
|
8384
|
+
"__@BRAND@8845": z.lazy(() =>
|
|
8385
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8845$inboundSchema
|
|
8165
8386
|
),
|
|
8166
8387
|
}).transform((v) => {
|
|
8167
8388
|
return remap$(v, {
|
|
8168
|
-
"__@BRAND@
|
|
8389
|
+
"__@BRAND@8845": "atBRANDAt8845",
|
|
8169
8390
|
});
|
|
8170
8391
|
});
|
|
8171
8392
|
/** @internal */
|
|
8172
8393
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$Outbound =
|
|
8173
8394
|
{
|
|
8174
|
-
"__@BRAND@
|
|
8175
|
-
|
|
8395
|
+
"__@BRAND@8845":
|
|
8396
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8845$Outbound;
|
|
8176
8397
|
};
|
|
8177
8398
|
|
|
8178
8399
|
/** @internal */
|
|
@@ -8182,12 +8403,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$outboun
|
|
|
8182
8403
|
z.ZodTypeDef,
|
|
8183
8404
|
CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength
|
|
8184
8405
|
> = z.object({
|
|
8185
|
-
|
|
8186
|
-
|
|
8406
|
+
atBRANDAt8845: z.lazy(() =>
|
|
8407
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8845$outboundSchema
|
|
8187
8408
|
),
|
|
8188
8409
|
}).transform((v) => {
|
|
8189
8410
|
return remap$(v, {
|
|
8190
|
-
|
|
8411
|
+
atBRANDAt8845: "__@BRAND@8845",
|
|
8191
8412
|
});
|
|
8192
8413
|
});
|
|
8193
8414
|
|
|
@@ -8216,47 +8437,47 @@ export function createIntegrationStoreDirectPropertiesIntegrationsMaxLengthFromJ
|
|
|
8216
8437
|
}
|
|
8217
8438
|
|
|
8218
8439
|
/** @internal */
|
|
8219
|
-
export const
|
|
8440
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8845$inboundSchema:
|
|
8220
8441
|
z.ZodType<
|
|
8221
|
-
|
|
8442
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8845,
|
|
8222
8443
|
z.ZodTypeDef,
|
|
8223
8444
|
unknown
|
|
8224
8445
|
> = z.object({});
|
|
8225
8446
|
/** @internal */
|
|
8226
|
-
export type
|
|
8447
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8845$Outbound =
|
|
8227
8448
|
{};
|
|
8228
8449
|
|
|
8229
8450
|
/** @internal */
|
|
8230
|
-
export const
|
|
8451
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8845$outboundSchema:
|
|
8231
8452
|
z.ZodType<
|
|
8232
|
-
|
|
8453
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8845$Outbound,
|
|
8233
8454
|
z.ZodTypeDef,
|
|
8234
|
-
|
|
8455
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8845
|
|
8235
8456
|
> = z.object({});
|
|
8236
8457
|
|
|
8237
|
-
export function
|
|
8238
|
-
|
|
8239
|
-
|
|
8458
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8845ToJSON(
|
|
8459
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8845:
|
|
8460
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8845,
|
|
8240
8461
|
): string {
|
|
8241
8462
|
return JSON.stringify(
|
|
8242
|
-
|
|
8463
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8845$outboundSchema
|
|
8243
8464
|
.parse(
|
|
8244
|
-
|
|
8465
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8845,
|
|
8245
8466
|
),
|
|
8246
8467
|
);
|
|
8247
8468
|
}
|
|
8248
|
-
export function
|
|
8469
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8845FromJSON(
|
|
8249
8470
|
jsonString: string,
|
|
8250
8471
|
): SafeParseResult<
|
|
8251
|
-
|
|
8472
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8845,
|
|
8252
8473
|
SDKValidationError
|
|
8253
8474
|
> {
|
|
8254
8475
|
return safeParse(
|
|
8255
8476
|
jsonString,
|
|
8256
8477
|
(x) =>
|
|
8257
|
-
|
|
8478
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8845$inboundSchema
|
|
8258
8479
|
.parse(JSON.parse(x)),
|
|
8259
|
-
`Failed to parse '
|
|
8480
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8845' from JSON`,
|
|
8260
8481
|
);
|
|
8261
8482
|
}
|
|
8262
8483
|
|
|
@@ -8267,19 +8488,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$inbound
|
|
|
8267
8488
|
z.ZodTypeDef,
|
|
8268
8489
|
unknown
|
|
8269
8490
|
> = z.object({
|
|
8270
|
-
"__@BRAND@
|
|
8271
|
-
|
|
8491
|
+
"__@BRAND@8845": z.lazy(() =>
|
|
8492
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8845$inboundSchema
|
|
8272
8493
|
),
|
|
8273
8494
|
}).transform((v) => {
|
|
8274
8495
|
return remap$(v, {
|
|
8275
|
-
"__@BRAND@
|
|
8496
|
+
"__@BRAND@8845": "atBRANDAt8845",
|
|
8276
8497
|
});
|
|
8277
8498
|
});
|
|
8278
8499
|
/** @internal */
|
|
8279
8500
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$Outbound =
|
|
8280
8501
|
{
|
|
8281
|
-
"__@BRAND@
|
|
8282
|
-
|
|
8502
|
+
"__@BRAND@8845":
|
|
8503
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8845$Outbound;
|
|
8283
8504
|
};
|
|
8284
8505
|
|
|
8285
8506
|
/** @internal */
|
|
@@ -8289,12 +8510,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$outboun
|
|
|
8289
8510
|
z.ZodTypeDef,
|
|
8290
8511
|
CreateIntegrationStoreDirectPropertiesIntegrationsMinLength
|
|
8291
8512
|
> = z.object({
|
|
8292
|
-
|
|
8293
|
-
|
|
8513
|
+
atBRANDAt8845: z.lazy(() =>
|
|
8514
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8845$outboundSchema
|
|
8294
8515
|
),
|
|
8295
8516
|
}).transform((v) => {
|
|
8296
8517
|
return remap$(v, {
|
|
8297
|
-
|
|
8518
|
+
atBRANDAt8845: "__@BRAND@8845",
|
|
8298
8519
|
});
|
|
8299
8520
|
});
|
|
8300
8521
|
|
|
@@ -8323,47 +8544,47 @@ export function createIntegrationStoreDirectPropertiesIntegrationsMinLengthFromJ
|
|
|
8323
8544
|
}
|
|
8324
8545
|
|
|
8325
8546
|
/** @internal */
|
|
8326
|
-
export const
|
|
8547
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8845$inboundSchema:
|
|
8327
8548
|
z.ZodType<
|
|
8328
|
-
|
|
8549
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8845,
|
|
8329
8550
|
z.ZodTypeDef,
|
|
8330
8551
|
unknown
|
|
8331
8552
|
> = z.object({});
|
|
8332
8553
|
/** @internal */
|
|
8333
|
-
export type
|
|
8554
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8845$Outbound =
|
|
8334
8555
|
{};
|
|
8335
8556
|
|
|
8336
8557
|
/** @internal */
|
|
8337
|
-
export const
|
|
8558
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8845$outboundSchema:
|
|
8338
8559
|
z.ZodType<
|
|
8339
|
-
|
|
8560
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8845$Outbound,
|
|
8340
8561
|
z.ZodTypeDef,
|
|
8341
|
-
|
|
8562
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8845
|
|
8342
8563
|
> = z.object({});
|
|
8343
8564
|
|
|
8344
|
-
export function
|
|
8345
|
-
|
|
8346
|
-
|
|
8565
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8845ToJSON(
|
|
8566
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8845:
|
|
8567
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8845,
|
|
8347
8568
|
): string {
|
|
8348
8569
|
return JSON.stringify(
|
|
8349
|
-
|
|
8570
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8845$outboundSchema
|
|
8350
8571
|
.parse(
|
|
8351
|
-
|
|
8572
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8845,
|
|
8352
8573
|
),
|
|
8353
8574
|
);
|
|
8354
8575
|
}
|
|
8355
|
-
export function
|
|
8576
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8845FromJSON(
|
|
8356
8577
|
jsonString: string,
|
|
8357
8578
|
): SafeParseResult<
|
|
8358
|
-
|
|
8579
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8845,
|
|
8359
8580
|
SDKValidationError
|
|
8360
8581
|
> {
|
|
8361
8582
|
return safeParse(
|
|
8362
8583
|
jsonString,
|
|
8363
8584
|
(x) =>
|
|
8364
|
-
|
|
8585
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8845$inboundSchema
|
|
8365
8586
|
.parse(JSON.parse(x)),
|
|
8366
|
-
`Failed to parse '
|
|
8587
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8845' from JSON`,
|
|
8367
8588
|
);
|
|
8368
8589
|
}
|
|
8369
8590
|
|
|
@@ -8374,19 +8595,19 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsPattern$inboundSc
|
|
|
8374
8595
|
z.ZodTypeDef,
|
|
8375
8596
|
unknown
|
|
8376
8597
|
> = z.object({
|
|
8377
|
-
"__@BRAND@
|
|
8378
|
-
|
|
8598
|
+
"__@BRAND@8845": z.lazy(() =>
|
|
8599
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8845$inboundSchema
|
|
8379
8600
|
),
|
|
8380
8601
|
}).transform((v) => {
|
|
8381
8602
|
return remap$(v, {
|
|
8382
|
-
"__@BRAND@
|
|
8603
|
+
"__@BRAND@8845": "atBRANDAt8845",
|
|
8383
8604
|
});
|
|
8384
8605
|
});
|
|
8385
8606
|
/** @internal */
|
|
8386
8607
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsPattern$Outbound =
|
|
8387
8608
|
{
|
|
8388
|
-
"__@BRAND@
|
|
8389
|
-
|
|
8609
|
+
"__@BRAND@8845":
|
|
8610
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8845$Outbound;
|
|
8390
8611
|
};
|
|
8391
8612
|
|
|
8392
8613
|
/** @internal */
|
|
@@ -8396,12 +8617,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsPattern$outboundS
|
|
|
8396
8617
|
z.ZodTypeDef,
|
|
8397
8618
|
CreateIntegrationStoreDirectPropertiesIntegrationsPattern
|
|
8398
8619
|
> = z.object({
|
|
8399
|
-
|
|
8400
|
-
|
|
8620
|
+
atBRANDAt8845: z.lazy(() =>
|
|
8621
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8845$outboundSchema
|
|
8401
8622
|
),
|
|
8402
8623
|
}).transform((v) => {
|
|
8403
8624
|
return remap$(v, {
|
|
8404
|
-
|
|
8625
|
+
atBRANDAt8845: "__@BRAND@8845",
|
|
8405
8626
|
});
|
|
8406
8627
|
});
|
|
8407
8628
|
|
|
@@ -11420,47 +11641,47 @@ export const CreateIntegrationStoreDirectPropertiesUiControl$outboundSchema:
|
|
|
11420
11641
|
CreateIntegrationStoreDirectPropertiesUiControl$inboundSchema;
|
|
11421
11642
|
|
|
11422
11643
|
/** @internal */
|
|
11423
|
-
export const
|
|
11644
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8845$inboundSchema:
|
|
11424
11645
|
z.ZodType<
|
|
11425
|
-
|
|
11646
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8845,
|
|
11426
11647
|
z.ZodTypeDef,
|
|
11427
11648
|
unknown
|
|
11428
11649
|
> = z.object({});
|
|
11429
11650
|
/** @internal */
|
|
11430
|
-
export type
|
|
11651
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8845$Outbound =
|
|
11431
11652
|
{};
|
|
11432
11653
|
|
|
11433
11654
|
/** @internal */
|
|
11434
|
-
export const
|
|
11655
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8845$outboundSchema:
|
|
11435
11656
|
z.ZodType<
|
|
11436
|
-
|
|
11657
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8845$Outbound,
|
|
11437
11658
|
z.ZodTypeDef,
|
|
11438
|
-
|
|
11659
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8845
|
|
11439
11660
|
> = z.object({});
|
|
11440
11661
|
|
|
11441
|
-
export function
|
|
11442
|
-
|
|
11443
|
-
|
|
11662
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8845ToJSON(
|
|
11663
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8845:
|
|
11664
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8845,
|
|
11444
11665
|
): string {
|
|
11445
11666
|
return JSON.stringify(
|
|
11446
|
-
|
|
11667
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8845$outboundSchema
|
|
11447
11668
|
.parse(
|
|
11448
|
-
|
|
11669
|
+
createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8845,
|
|
11449
11670
|
),
|
|
11450
11671
|
);
|
|
11451
11672
|
}
|
|
11452
|
-
export function
|
|
11673
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8845FromJSON(
|
|
11453
11674
|
jsonString: string,
|
|
11454
11675
|
): SafeParseResult<
|
|
11455
|
-
|
|
11676
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8845,
|
|
11456
11677
|
SDKValidationError
|
|
11457
11678
|
> {
|
|
11458
11679
|
return safeParse(
|
|
11459
11680
|
jsonString,
|
|
11460
11681
|
(x) =>
|
|
11461
|
-
|
|
11682
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8845$inboundSchema
|
|
11462
11683
|
.parse(JSON.parse(x)),
|
|
11463
|
-
`Failed to parse '
|
|
11684
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8845' from JSON`,
|
|
11464
11685
|
);
|
|
11465
11686
|
}
|
|
11466
11687
|
|
|
@@ -11471,18 +11692,18 @@ export const CreateIntegrationStoreDirectPropertiesMaxLength$inboundSchema:
|
|
|
11471
11692
|
z.ZodTypeDef,
|
|
11472
11693
|
unknown
|
|
11473
11694
|
> = z.object({
|
|
11474
|
-
"__@BRAND@
|
|
11475
|
-
|
|
11695
|
+
"__@BRAND@8845": z.lazy(() =>
|
|
11696
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8845$inboundSchema
|
|
11476
11697
|
),
|
|
11477
11698
|
}).transform((v) => {
|
|
11478
11699
|
return remap$(v, {
|
|
11479
|
-
"__@BRAND@
|
|
11700
|
+
"__@BRAND@8845": "atBRANDAt8845",
|
|
11480
11701
|
});
|
|
11481
11702
|
});
|
|
11482
11703
|
/** @internal */
|
|
11483
11704
|
export type CreateIntegrationStoreDirectPropertiesMaxLength$Outbound = {
|
|
11484
|
-
"__@BRAND@
|
|
11485
|
-
|
|
11705
|
+
"__@BRAND@8845":
|
|
11706
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8845$Outbound;
|
|
11486
11707
|
};
|
|
11487
11708
|
|
|
11488
11709
|
/** @internal */
|
|
@@ -11492,12 +11713,12 @@ export const CreateIntegrationStoreDirectPropertiesMaxLength$outboundSchema:
|
|
|
11492
11713
|
z.ZodTypeDef,
|
|
11493
11714
|
CreateIntegrationStoreDirectPropertiesMaxLength
|
|
11494
11715
|
> = z.object({
|
|
11495
|
-
|
|
11496
|
-
|
|
11716
|
+
atBRANDAt8845: z.lazy(() =>
|
|
11717
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8845$outboundSchema
|
|
11497
11718
|
),
|
|
11498
11719
|
}).transform((v) => {
|
|
11499
11720
|
return remap$(v, {
|
|
11500
|
-
|
|
11721
|
+
atBRANDAt8845: "__@BRAND@8845",
|
|
11501
11722
|
});
|
|
11502
11723
|
});
|
|
11503
11724
|
|
|
@@ -11528,35 +11749,35 @@ export function createIntegrationStoreDirectPropertiesMaxLengthFromJSON(
|
|
|
11528
11749
|
}
|
|
11529
11750
|
|
|
11530
11751
|
/** @internal */
|
|
11531
|
-
export const
|
|
11532
|
-
|
|
11752
|
+
export const PropertiesAtBRANDAt8845$inboundSchema: z.ZodType<
|
|
11753
|
+
PropertiesAtBRANDAt8845,
|
|
11533
11754
|
z.ZodTypeDef,
|
|
11534
11755
|
unknown
|
|
11535
11756
|
> = z.object({});
|
|
11536
11757
|
/** @internal */
|
|
11537
|
-
export type
|
|
11758
|
+
export type PropertiesAtBRANDAt8845$Outbound = {};
|
|
11538
11759
|
|
|
11539
11760
|
/** @internal */
|
|
11540
|
-
export const
|
|
11541
|
-
|
|
11761
|
+
export const PropertiesAtBRANDAt8845$outboundSchema: z.ZodType<
|
|
11762
|
+
PropertiesAtBRANDAt8845$Outbound,
|
|
11542
11763
|
z.ZodTypeDef,
|
|
11543
|
-
|
|
11764
|
+
PropertiesAtBRANDAt8845
|
|
11544
11765
|
> = z.object({});
|
|
11545
11766
|
|
|
11546
|
-
export function
|
|
11547
|
-
|
|
11767
|
+
export function propertiesAtBRANDAt8845ToJSON(
|
|
11768
|
+
propertiesAtBRANDAt8845: PropertiesAtBRANDAt8845,
|
|
11548
11769
|
): string {
|
|
11549
11770
|
return JSON.stringify(
|
|
11550
|
-
|
|
11771
|
+
PropertiesAtBRANDAt8845$outboundSchema.parse(propertiesAtBRANDAt8845),
|
|
11551
11772
|
);
|
|
11552
11773
|
}
|
|
11553
|
-
export function
|
|
11774
|
+
export function propertiesAtBRANDAt8845FromJSON(
|
|
11554
11775
|
jsonString: string,
|
|
11555
|
-
): SafeParseResult<
|
|
11776
|
+
): SafeParseResult<PropertiesAtBRANDAt8845, SDKValidationError> {
|
|
11556
11777
|
return safeParse(
|
|
11557
11778
|
jsonString,
|
|
11558
|
-
(x) =>
|
|
11559
|
-
`Failed to parse '
|
|
11779
|
+
(x) => PropertiesAtBRANDAt8845$inboundSchema.parse(JSON.parse(x)),
|
|
11780
|
+
`Failed to parse 'PropertiesAtBRANDAt8845' from JSON`,
|
|
11560
11781
|
);
|
|
11561
11782
|
}
|
|
11562
11783
|
|
|
@@ -11567,15 +11788,15 @@ export const CreateIntegrationStoreDirectPropertiesMinLength$inboundSchema:
|
|
|
11567
11788
|
z.ZodTypeDef,
|
|
11568
11789
|
unknown
|
|
11569
11790
|
> = z.object({
|
|
11570
|
-
"__@BRAND@
|
|
11791
|
+
"__@BRAND@8845": z.lazy(() => PropertiesAtBRANDAt8845$inboundSchema),
|
|
11571
11792
|
}).transform((v) => {
|
|
11572
11793
|
return remap$(v, {
|
|
11573
|
-
"__@BRAND@
|
|
11794
|
+
"__@BRAND@8845": "atBRANDAt8845",
|
|
11574
11795
|
});
|
|
11575
11796
|
});
|
|
11576
11797
|
/** @internal */
|
|
11577
11798
|
export type CreateIntegrationStoreDirectPropertiesMinLength$Outbound = {
|
|
11578
|
-
"__@BRAND@
|
|
11799
|
+
"__@BRAND@8845": PropertiesAtBRANDAt8845$Outbound;
|
|
11579
11800
|
};
|
|
11580
11801
|
|
|
11581
11802
|
/** @internal */
|
|
@@ -11585,10 +11806,10 @@ export const CreateIntegrationStoreDirectPropertiesMinLength$outboundSchema:
|
|
|
11585
11806
|
z.ZodTypeDef,
|
|
11586
11807
|
CreateIntegrationStoreDirectPropertiesMinLength
|
|
11587
11808
|
> = z.object({
|
|
11588
|
-
|
|
11809
|
+
atBRANDAt8845: z.lazy(() => PropertiesAtBRANDAt8845$outboundSchema),
|
|
11589
11810
|
}).transform((v) => {
|
|
11590
11811
|
return remap$(v, {
|
|
11591
|
-
|
|
11812
|
+
atBRANDAt8845: "__@BRAND@8845",
|
|
11592
11813
|
});
|
|
11593
11814
|
});
|
|
11594
11815
|
|
|
@@ -11619,46 +11840,46 @@ export function createIntegrationStoreDirectPropertiesMinLengthFromJSON(
|
|
|
11619
11840
|
}
|
|
11620
11841
|
|
|
11621
11842
|
/** @internal */
|
|
11622
|
-
export const
|
|
11843
|
+
export const CreateIntegrationStoreDirectPropertiesAtBRANDAt8845$inboundSchema:
|
|
11623
11844
|
z.ZodType<
|
|
11624
|
-
|
|
11845
|
+
CreateIntegrationStoreDirectPropertiesAtBRANDAt8845,
|
|
11625
11846
|
z.ZodTypeDef,
|
|
11626
11847
|
unknown
|
|
11627
11848
|
> = z.object({});
|
|
11628
11849
|
/** @internal */
|
|
11629
|
-
export type
|
|
11850
|
+
export type CreateIntegrationStoreDirectPropertiesAtBRANDAt8845$Outbound = {};
|
|
11630
11851
|
|
|
11631
11852
|
/** @internal */
|
|
11632
|
-
export const
|
|
11853
|
+
export const CreateIntegrationStoreDirectPropertiesAtBRANDAt8845$outboundSchema:
|
|
11633
11854
|
z.ZodType<
|
|
11634
|
-
|
|
11855
|
+
CreateIntegrationStoreDirectPropertiesAtBRANDAt8845$Outbound,
|
|
11635
11856
|
z.ZodTypeDef,
|
|
11636
|
-
|
|
11857
|
+
CreateIntegrationStoreDirectPropertiesAtBRANDAt8845
|
|
11637
11858
|
> = z.object({});
|
|
11638
11859
|
|
|
11639
|
-
export function
|
|
11640
|
-
|
|
11641
|
-
|
|
11860
|
+
export function createIntegrationStoreDirectPropertiesAtBRANDAt8845ToJSON(
|
|
11861
|
+
createIntegrationStoreDirectPropertiesAtBRANDAt8845:
|
|
11862
|
+
CreateIntegrationStoreDirectPropertiesAtBRANDAt8845,
|
|
11642
11863
|
): string {
|
|
11643
11864
|
return JSON.stringify(
|
|
11644
|
-
|
|
11645
|
-
|
|
11865
|
+
CreateIntegrationStoreDirectPropertiesAtBRANDAt8845$outboundSchema.parse(
|
|
11866
|
+
createIntegrationStoreDirectPropertiesAtBRANDAt8845,
|
|
11646
11867
|
),
|
|
11647
11868
|
);
|
|
11648
11869
|
}
|
|
11649
|
-
export function
|
|
11870
|
+
export function createIntegrationStoreDirectPropertiesAtBRANDAt8845FromJSON(
|
|
11650
11871
|
jsonString: string,
|
|
11651
11872
|
): SafeParseResult<
|
|
11652
|
-
|
|
11873
|
+
CreateIntegrationStoreDirectPropertiesAtBRANDAt8845,
|
|
11653
11874
|
SDKValidationError
|
|
11654
11875
|
> {
|
|
11655
11876
|
return safeParse(
|
|
11656
11877
|
jsonString,
|
|
11657
11878
|
(x) =>
|
|
11658
|
-
|
|
11879
|
+
CreateIntegrationStoreDirectPropertiesAtBRANDAt8845$inboundSchema.parse(
|
|
11659
11880
|
JSON.parse(x),
|
|
11660
11881
|
),
|
|
11661
|
-
`Failed to parse '
|
|
11882
|
+
`Failed to parse 'CreateIntegrationStoreDirectPropertiesAtBRANDAt8845' from JSON`,
|
|
11662
11883
|
);
|
|
11663
11884
|
}
|
|
11664
11885
|
|
|
@@ -11669,17 +11890,17 @@ export const CreateIntegrationStoreDirectPropertiesPattern$inboundSchema:
|
|
|
11669
11890
|
z.ZodTypeDef,
|
|
11670
11891
|
unknown
|
|
11671
11892
|
> = z.object({
|
|
11672
|
-
"__@BRAND@
|
|
11673
|
-
|
|
11893
|
+
"__@BRAND@8845": z.lazy(() =>
|
|
11894
|
+
CreateIntegrationStoreDirectPropertiesAtBRANDAt8845$inboundSchema
|
|
11674
11895
|
),
|
|
11675
11896
|
}).transform((v) => {
|
|
11676
11897
|
return remap$(v, {
|
|
11677
|
-
"__@BRAND@
|
|
11898
|
+
"__@BRAND@8845": "atBRANDAt8845",
|
|
11678
11899
|
});
|
|
11679
11900
|
});
|
|
11680
11901
|
/** @internal */
|
|
11681
11902
|
export type CreateIntegrationStoreDirectPropertiesPattern$Outbound = {
|
|
11682
|
-
"__@BRAND@
|
|
11903
|
+
"__@BRAND@8845": CreateIntegrationStoreDirectPropertiesAtBRANDAt8845$Outbound;
|
|
11683
11904
|
};
|
|
11684
11905
|
|
|
11685
11906
|
/** @internal */
|
|
@@ -11689,12 +11910,12 @@ export const CreateIntegrationStoreDirectPropertiesPattern$outboundSchema:
|
|
|
11689
11910
|
z.ZodTypeDef,
|
|
11690
11911
|
CreateIntegrationStoreDirectPropertiesPattern
|
|
11691
11912
|
> = z.object({
|
|
11692
|
-
|
|
11693
|
-
|
|
11913
|
+
atBRANDAt8845: z.lazy(() =>
|
|
11914
|
+
CreateIntegrationStoreDirectPropertiesAtBRANDAt8845$outboundSchema
|
|
11694
11915
|
),
|
|
11695
11916
|
}).transform((v) => {
|
|
11696
11917
|
return remap$(v, {
|
|
11697
|
-
|
|
11918
|
+
atBRANDAt8845: "__@BRAND@8845",
|
|
11698
11919
|
});
|
|
11699
11920
|
});
|
|
11700
11921
|
|
|
@@ -12773,31 +12994,31 @@ export function guidesFromJSON(
|
|
|
12773
12994
|
}
|
|
12774
12995
|
|
|
12775
12996
|
/** @internal */
|
|
12776
|
-
export const
|
|
12777
|
-
|
|
12997
|
+
export const AtBRANDAt8845$inboundSchema: z.ZodType<
|
|
12998
|
+
AtBRANDAt8845,
|
|
12778
12999
|
z.ZodTypeDef,
|
|
12779
13000
|
unknown
|
|
12780
13001
|
> = z.object({});
|
|
12781
13002
|
/** @internal */
|
|
12782
|
-
export type
|
|
13003
|
+
export type AtBRANDAt8845$Outbound = {};
|
|
12783
13004
|
|
|
12784
13005
|
/** @internal */
|
|
12785
|
-
export const
|
|
12786
|
-
|
|
13006
|
+
export const AtBRANDAt8845$outboundSchema: z.ZodType<
|
|
13007
|
+
AtBRANDAt8845$Outbound,
|
|
12787
13008
|
z.ZodTypeDef,
|
|
12788
|
-
|
|
13009
|
+
AtBRANDAt8845
|
|
12789
13010
|
> = z.object({});
|
|
12790
13011
|
|
|
12791
|
-
export function
|
|
12792
|
-
return JSON.stringify(
|
|
13012
|
+
export function atBRANDAt8845ToJSON(atBRANDAt8845: AtBRANDAt8845): string {
|
|
13013
|
+
return JSON.stringify(AtBRANDAt8845$outboundSchema.parse(atBRANDAt8845));
|
|
12793
13014
|
}
|
|
12794
|
-
export function
|
|
13015
|
+
export function atBRANDAt8845FromJSON(
|
|
12795
13016
|
jsonString: string,
|
|
12796
|
-
): SafeParseResult<
|
|
13017
|
+
): SafeParseResult<AtBRANDAt8845, SDKValidationError> {
|
|
12797
13018
|
return safeParse(
|
|
12798
13019
|
jsonString,
|
|
12799
|
-
(x) =>
|
|
12800
|
-
`Failed to parse '
|
|
13020
|
+
(x) => AtBRANDAt8845$inboundSchema.parse(JSON.parse(x)),
|
|
13021
|
+
`Failed to parse 'AtBRANDAt8845' from JSON`,
|
|
12801
13022
|
);
|
|
12802
13023
|
}
|
|
12803
13024
|
|
|
@@ -12807,15 +13028,15 @@ export const CreateIntegrationStoreDirectValue$inboundSchema: z.ZodType<
|
|
|
12807
13028
|
z.ZodTypeDef,
|
|
12808
13029
|
unknown
|
|
12809
13030
|
> = z.object({
|
|
12810
|
-
"__@BRAND@
|
|
13031
|
+
"__@BRAND@8845": z.lazy(() => AtBRANDAt8845$inboundSchema),
|
|
12811
13032
|
}).transform((v) => {
|
|
12812
13033
|
return remap$(v, {
|
|
12813
|
-
"__@BRAND@
|
|
13034
|
+
"__@BRAND@8845": "atBRANDAt8845",
|
|
12814
13035
|
});
|
|
12815
13036
|
});
|
|
12816
13037
|
/** @internal */
|
|
12817
13038
|
export type CreateIntegrationStoreDirectValue$Outbound = {
|
|
12818
|
-
"__@BRAND@
|
|
13039
|
+
"__@BRAND@8845": AtBRANDAt8845$Outbound;
|
|
12819
13040
|
};
|
|
12820
13041
|
|
|
12821
13042
|
/** @internal */
|
|
@@ -12824,10 +13045,10 @@ export const CreateIntegrationStoreDirectValue$outboundSchema: z.ZodType<
|
|
|
12824
13045
|
z.ZodTypeDef,
|
|
12825
13046
|
CreateIntegrationStoreDirectValue
|
|
12826
13047
|
> = z.object({
|
|
12827
|
-
|
|
13048
|
+
atBRANDAt8845: z.lazy(() => AtBRANDAt8845$outboundSchema),
|
|
12828
13049
|
}).transform((v) => {
|
|
12829
13050
|
return remap$(v, {
|
|
12830
|
-
|
|
13051
|
+
atBRANDAt8845: "__@BRAND@8845",
|
|
12831
13052
|
});
|
|
12832
13053
|
});
|
|
12833
13054
|
|
|
@@ -13642,6 +13863,10 @@ export const CreateIntegrationStoreDirectStore$inboundSchema: z.ZodType<
|
|
|
13642
13863
|
billingPlan: z.lazy(() =>
|
|
13643
13864
|
CreateIntegrationStoreDirectBillingPlan$inboundSchema
|
|
13644
13865
|
).optional(),
|
|
13866
|
+
secretRotationRequestedAt: z.number().optional(),
|
|
13867
|
+
secretRotationRequestedReason: z.string().optional(),
|
|
13868
|
+
secretRotationRequestedBy: z.string().optional(),
|
|
13869
|
+
secretRotationCompletedAt: z.number().optional(),
|
|
13645
13870
|
});
|
|
13646
13871
|
/** @internal */
|
|
13647
13872
|
export type CreateIntegrationStoreDirectStore$Outbound = {
|
|
@@ -13666,6 +13891,10 @@ export type CreateIntegrationStoreDirectStore$Outbound = {
|
|
|
13666
13891
|
notification?: CreateIntegrationStoreDirectNotification$Outbound | undefined;
|
|
13667
13892
|
secrets: Array<CreateIntegrationStoreDirectSecrets$Outbound>;
|
|
13668
13893
|
billingPlan?: CreateIntegrationStoreDirectBillingPlan$Outbound | undefined;
|
|
13894
|
+
secretRotationRequestedAt?: number | undefined;
|
|
13895
|
+
secretRotationRequestedReason?: string | undefined;
|
|
13896
|
+
secretRotationRequestedBy?: string | undefined;
|
|
13897
|
+
secretRotationCompletedAt?: number | undefined;
|
|
13669
13898
|
};
|
|
13670
13899
|
|
|
13671
13900
|
/** @internal */
|
|
@@ -13708,6 +13937,10 @@ export const CreateIntegrationStoreDirectStore$outboundSchema: z.ZodType<
|
|
|
13708
13937
|
billingPlan: z.lazy(() =>
|
|
13709
13938
|
CreateIntegrationStoreDirectBillingPlan$outboundSchema
|
|
13710
13939
|
).optional(),
|
|
13940
|
+
secretRotationRequestedAt: z.number().optional(),
|
|
13941
|
+
secretRotationRequestedReason: z.string().optional(),
|
|
13942
|
+
secretRotationRequestedBy: z.string().optional(),
|
|
13943
|
+
secretRotationCompletedAt: z.number().optional(),
|
|
13711
13944
|
});
|
|
13712
13945
|
|
|
13713
13946
|
export function createIntegrationStoreDirectStoreToJSON(
|