@vercel/sdk 1.10.8 → 1.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/mcp-server.js +3715 -927
- package/bin/mcp-server.js.map +20 -20
- package/esm/__tests__/accessgroups.test.js +6 -6
- package/esm/__tests__/accessgroups.test.js.map +1 -1
- package/esm/__tests__/domains.test.js +5 -6
- 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__/rollingrelease.test.js +2 -2
- package/esm/__tests__/rollingrelease.test.js.map +1 -1
- package/esm/__tests__/security.test.js +11 -1
- package/esm/__tests__/security.test.js.map +1 -1
- package/esm/__tests__/teams.test.js +2 -2
- package/esm/__tests__/teams.test.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.js +1 -1
- package/esm/models/canceldeploymentop.d.ts +41 -41
- package/esm/models/canceldeploymentop.d.ts.map +1 -1
- package/esm/models/canceldeploymentop.js +43 -41
- package/esm/models/canceldeploymentop.js.map +1 -1
- package/esm/models/createdeploymentop.d.ts +98 -98
- package/esm/models/createdeploymentop.d.ts.map +1 -1
- package/esm/models/createdeploymentop.js +113 -117
- package/esm/models/createdeploymentop.js.map +1 -1
- package/esm/models/createintegrationstoredirectop.d.ts +240 -240
- package/esm/models/createintegrationstoredirectop.js +294 -294
- package/esm/models/createprojectop.d.ts +1626 -281
- package/esm/models/createprojectop.d.ts.map +1 -1
- package/esm/models/createprojectop.js +1676 -298
- package/esm/models/createprojectop.js.map +1 -1
- package/esm/models/createwebhookop.d.ts +72 -66
- package/esm/models/createwebhookop.d.ts.map +1 -1
- package/esm/models/createwebhookop.js +24 -22
- package/esm/models/createwebhookop.js.map +1 -1
- package/esm/models/getconfigurationproductsop.d.ts +330 -330
- package/esm/models/getconfigurationproductsop.js +408 -408
- package/esm/models/getdeploymentop.d.ts +16 -16
- package/esm/models/getdeploymentop.d.ts.map +1 -1
- package/esm/models/getdeploymentop.js +24 -24
- package/esm/models/getdeploymentop.js.map +1 -1
- package/esm/models/getprojectsop.d.ts +1402 -57
- package/esm/models/getprojectsop.d.ts.map +1 -1
- package/esm/models/getprojectsop.js +1575 -202
- package/esm/models/getprojectsop.js.map +1 -1
- package/esm/models/getwebhookop.d.ts +36 -33
- package/esm/models/getwebhookop.d.ts.map +1 -1
- package/esm/models/getwebhookop.js +12 -11
- package/esm/models/getwebhookop.js.map +1 -1
- package/esm/models/getwebhooksop.d.ts +72 -66
- package/esm/models/getwebhooksop.d.ts.map +1 -1
- package/esm/models/getwebhooksop.js +24 -22
- package/esm/models/getwebhooksop.js.map +1 -1
- package/esm/models/listaccessgroupsop.d.ts +2 -5
- package/esm/models/listaccessgroupsop.d.ts.map +1 -1
- package/esm/models/listaccessgroupsop.js +2 -2
- package/esm/models/listaccessgroupsop.js.map +1 -1
- package/esm/models/readaccessgroupop.d.ts +48 -5
- package/esm/models/readaccessgroupop.d.ts.map +1 -1
- package/esm/models/readaccessgroupop.js +30 -2
- package/esm/models/readaccessgroupop.js.map +1 -1
- package/esm/models/team.d.ts +35 -18
- package/esm/models/team.d.ts.map +1 -1
- package/esm/models/team.js +15 -13
- package/esm/models/team.js.map +1 -1
- package/esm/models/updateprojectdatacacheop.d.ts +1402 -57
- package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
- package/esm/models/updateprojectdatacacheop.js +1584 -200
- package/esm/models/updateprojectdatacacheop.js.map +1 -1
- package/esm/models/updateprojectop.d.ts +1402 -57
- package/esm/models/updateprojectop.d.ts.map +1 -1
- package/esm/models/updateprojectop.js +1579 -202
- package/esm/models/updateprojectop.js.map +1 -1
- package/examples/package-lock.json +1 -1
- package/examples/projectsUpdateProject.example.ts +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/__tests__/accessgroups.test.ts +6 -6
- package/src/__tests__/domains.test.ts +5 -6
- package/src/__tests__/edgeconfig.test.ts +6 -6
- package/src/__tests__/integrations.test.ts +1 -1
- package/src/__tests__/rollingrelease.test.ts +2 -2
- package/src/__tests__/security.test.ts +11 -1
- package/src/__tests__/teams.test.ts +2 -2
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/canceldeploymentop.ts +84 -64
- package/src/models/createdeploymentop.ts +239 -192
- package/src/models/createintegrationstoredirectop.ts +505 -505
- package/src/models/createprojectop.ts +3443 -466
- package/src/models/createwebhookop.ts +24 -22
- package/src/models/getconfigurationproductsop.ts +703 -703
- package/src/models/getdeploymentop.ts +34 -34
- package/src/models/getprojectsop.ts +3255 -300
- package/src/models/getwebhookop.ts +12 -11
- package/src/models/getwebhooksop.ts +24 -22
- package/src/models/listaccessgroupsop.ts +4 -7
- package/src/models/readaccessgroupop.ts +42 -7
- package/src/models/team.ts +47 -28
- package/src/models/updateprojectdatacacheop.ts +3184 -307
- package/src/models/updateprojectop.ts +3290 -298
- package/vercel-spec.json +4895 -2034
|
@@ -688,42 +688,42 @@ export var CreateIntegrationStoreDirectIntegrationsType$;
|
|
|
688
688
|
CreateIntegrationStoreDirectIntegrationsType$.outboundSchema = CreateIntegrationStoreDirectIntegrationsType$outboundSchema;
|
|
689
689
|
})(CreateIntegrationStoreDirectIntegrationsType$ || (CreateIntegrationStoreDirectIntegrationsType$ = {}));
|
|
690
690
|
/** @internal */
|
|
691
|
-
export const
|
|
691
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757$inboundSchema = z.object({});
|
|
692
692
|
/** @internal */
|
|
693
|
-
export const
|
|
693
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757$outboundSchema = z.object({});
|
|
694
694
|
/**
|
|
695
695
|
* @internal
|
|
696
696
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
697
697
|
*/
|
|
698
|
-
export var
|
|
699
|
-
(function (
|
|
700
|
-
/** @deprecated use `
|
|
701
|
-
|
|
702
|
-
/** @deprecated use `
|
|
703
|
-
|
|
704
|
-
})(
|
|
705
|
-
export function
|
|
706
|
-
return JSON.stringify(
|
|
707
|
-
.parse(
|
|
698
|
+
export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757$;
|
|
699
|
+
(function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757$) {
|
|
700
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757$inboundSchema` instead. */
|
|
701
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757$inboundSchema;
|
|
702
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757$outboundSchema` instead. */
|
|
703
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757$outboundSchema;
|
|
704
|
+
})(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757$ = {}));
|
|
705
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757) {
|
|
706
|
+
return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757$outboundSchema
|
|
707
|
+
.parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757));
|
|
708
708
|
}
|
|
709
|
-
export function
|
|
710
|
-
return safeParse(jsonString, (x) =>
|
|
711
|
-
.parse(JSON.parse(x)), `Failed to parse '
|
|
709
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757FromJSON(jsonString) {
|
|
710
|
+
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757$inboundSchema
|
|
711
|
+
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757' from JSON`);
|
|
712
712
|
}
|
|
713
713
|
/** @internal */
|
|
714
714
|
export const CreateIntegrationStoreDirectPropertiesValue$inboundSchema = z.object({
|
|
715
|
-
"__@BRAND@
|
|
715
|
+
"__@BRAND@7757": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757$inboundSchema),
|
|
716
716
|
}).transform((v) => {
|
|
717
717
|
return remap$(v, {
|
|
718
|
-
"__@BRAND@
|
|
718
|
+
"__@BRAND@7757": "atBRANDAt7757",
|
|
719
719
|
});
|
|
720
720
|
});
|
|
721
721
|
/** @internal */
|
|
722
722
|
export const CreateIntegrationStoreDirectPropertiesValue$outboundSchema = z.object({
|
|
723
|
-
|
|
723
|
+
atBRANDAt7757: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt7757$outboundSchema),
|
|
724
724
|
}).transform((v) => {
|
|
725
725
|
return remap$(v, {
|
|
726
|
-
|
|
726
|
+
atBRANDAt7757: "__@BRAND@7757",
|
|
727
727
|
});
|
|
728
728
|
});
|
|
729
729
|
/**
|
|
@@ -957,40 +957,40 @@ export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applicat
|
|
|
957
957
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl$outboundSchema;
|
|
958
958
|
})(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl$ = {}));
|
|
959
959
|
/** @internal */
|
|
960
|
-
export const
|
|
960
|
+
export const CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757$inboundSchema = z.object({});
|
|
961
961
|
/** @internal */
|
|
962
|
-
export const
|
|
962
|
+
export const CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757$outboundSchema = z.object({});
|
|
963
963
|
/**
|
|
964
964
|
* @internal
|
|
965
965
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
966
966
|
*/
|
|
967
|
-
export var
|
|
968
|
-
(function (
|
|
969
|
-
/** @deprecated use `
|
|
970
|
-
|
|
971
|
-
/** @deprecated use `
|
|
972
|
-
|
|
973
|
-
})(
|
|
974
|
-
export function
|
|
975
|
-
return JSON.stringify(
|
|
967
|
+
export var CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757$;
|
|
968
|
+
(function (CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757$) {
|
|
969
|
+
/** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757$inboundSchema` instead. */
|
|
970
|
+
CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757$.inboundSchema = CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757$inboundSchema;
|
|
971
|
+
/** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757$outboundSchema` instead. */
|
|
972
|
+
CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757$.outboundSchema = CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757$outboundSchema;
|
|
973
|
+
})(CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757$ || (CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757$ = {}));
|
|
974
|
+
export function createIntegrationStoreDirectUiOptionsAtBRANDAt7757ToJSON(createIntegrationStoreDirectUiOptionsAtBRANDAt7757) {
|
|
975
|
+
return JSON.stringify(CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757$outboundSchema.parse(createIntegrationStoreDirectUiOptionsAtBRANDAt7757));
|
|
976
976
|
}
|
|
977
|
-
export function
|
|
978
|
-
return safeParse(jsonString, (x) =>
|
|
977
|
+
export function createIntegrationStoreDirectUiOptionsAtBRANDAt7757FromJSON(jsonString) {
|
|
978
|
+
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757' from JSON`);
|
|
979
979
|
}
|
|
980
980
|
/** @internal */
|
|
981
981
|
export const CreateIntegrationStoreDirectUiOptionsValue$inboundSchema = z.object({
|
|
982
|
-
"__@BRAND@
|
|
982
|
+
"__@BRAND@7757": z.lazy(() => CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757$inboundSchema),
|
|
983
983
|
}).transform((v) => {
|
|
984
984
|
return remap$(v, {
|
|
985
|
-
"__@BRAND@
|
|
985
|
+
"__@BRAND@7757": "atBRANDAt7757",
|
|
986
986
|
});
|
|
987
987
|
});
|
|
988
988
|
/** @internal */
|
|
989
989
|
export const CreateIntegrationStoreDirectUiOptionsValue$outboundSchema = z.object({
|
|
990
|
-
|
|
990
|
+
atBRANDAt7757: z.lazy(() => CreateIntegrationStoreDirectUiOptionsAtBRANDAt7757$outboundSchema),
|
|
991
991
|
}).transform((v) => {
|
|
992
992
|
return remap$(v, {
|
|
993
|
-
|
|
993
|
+
atBRANDAt7757: "__@BRAND@7757",
|
|
994
994
|
});
|
|
995
995
|
});
|
|
996
996
|
/**
|
|
@@ -1202,40 +1202,40 @@ export function createIntegrationStoreDirectUiOptions3FromJSON(jsonString) {
|
|
|
1202
1202
|
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectUiOptions3$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectUiOptions3' from JSON`);
|
|
1203
1203
|
}
|
|
1204
1204
|
/** @internal */
|
|
1205
|
-
export const
|
|
1205
|
+
export const UiOptionsAtBRANDAt7757$inboundSchema = z.object({});
|
|
1206
1206
|
/** @internal */
|
|
1207
|
-
export const
|
|
1207
|
+
export const UiOptionsAtBRANDAt7757$outboundSchema = z.object({});
|
|
1208
1208
|
/**
|
|
1209
1209
|
* @internal
|
|
1210
1210
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1211
1211
|
*/
|
|
1212
|
-
export var
|
|
1213
|
-
(function (
|
|
1214
|
-
/** @deprecated use `
|
|
1215
|
-
|
|
1216
|
-
/** @deprecated use `
|
|
1217
|
-
|
|
1218
|
-
})(
|
|
1219
|
-
export function
|
|
1220
|
-
return JSON.stringify(
|
|
1212
|
+
export var UiOptionsAtBRANDAt7757$;
|
|
1213
|
+
(function (UiOptionsAtBRANDAt7757$) {
|
|
1214
|
+
/** @deprecated use `UiOptionsAtBRANDAt7757$inboundSchema` instead. */
|
|
1215
|
+
UiOptionsAtBRANDAt7757$.inboundSchema = UiOptionsAtBRANDAt7757$inboundSchema;
|
|
1216
|
+
/** @deprecated use `UiOptionsAtBRANDAt7757$outboundSchema` instead. */
|
|
1217
|
+
UiOptionsAtBRANDAt7757$.outboundSchema = UiOptionsAtBRANDAt7757$outboundSchema;
|
|
1218
|
+
})(UiOptionsAtBRANDAt7757$ || (UiOptionsAtBRANDAt7757$ = {}));
|
|
1219
|
+
export function uiOptionsAtBRANDAt7757ToJSON(uiOptionsAtBRANDAt7757) {
|
|
1220
|
+
return JSON.stringify(UiOptionsAtBRANDAt7757$outboundSchema.parse(uiOptionsAtBRANDAt7757));
|
|
1221
1221
|
}
|
|
1222
|
-
export function
|
|
1223
|
-
return safeParse(jsonString, (x) =>
|
|
1222
|
+
export function uiOptionsAtBRANDAt7757FromJSON(jsonString) {
|
|
1223
|
+
return safeParse(jsonString, (x) => UiOptionsAtBRANDAt7757$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UiOptionsAtBRANDAt7757' from JSON`);
|
|
1224
1224
|
}
|
|
1225
1225
|
/** @internal */
|
|
1226
1226
|
export const CreateIntegrationStoreDirectUiOptions2$inboundSchema = z.object({
|
|
1227
|
-
"__@BRAND@
|
|
1227
|
+
"__@BRAND@7757": z.lazy(() => UiOptionsAtBRANDAt7757$inboundSchema),
|
|
1228
1228
|
}).transform((v) => {
|
|
1229
1229
|
return remap$(v, {
|
|
1230
|
-
"__@BRAND@
|
|
1230
|
+
"__@BRAND@7757": "atBRANDAt7757",
|
|
1231
1231
|
});
|
|
1232
1232
|
});
|
|
1233
1233
|
/** @internal */
|
|
1234
1234
|
export const CreateIntegrationStoreDirectUiOptions2$outboundSchema = z.object({
|
|
1235
|
-
|
|
1235
|
+
atBRANDAt7757: z.lazy(() => UiOptionsAtBRANDAt7757$outboundSchema),
|
|
1236
1236
|
}).transform((v) => {
|
|
1237
1237
|
return remap$(v, {
|
|
1238
|
-
|
|
1238
|
+
atBRANDAt7757: "__@BRAND@7757",
|
|
1239
1239
|
});
|
|
1240
1240
|
});
|
|
1241
1241
|
/**
|
|
@@ -1476,42 +1476,42 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponseUiOpti
|
|
|
1476
1476
|
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiOptions' from JSON`);
|
|
1477
1477
|
}
|
|
1478
1478
|
/** @internal */
|
|
1479
|
-
export const
|
|
1479
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757$inboundSchema = z.object({});
|
|
1480
1480
|
/** @internal */
|
|
1481
|
-
export const
|
|
1481
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757$outboundSchema = z.object({});
|
|
1482
1482
|
/**
|
|
1483
1483
|
* @internal
|
|
1484
1484
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1485
1485
|
*/
|
|
1486
|
-
export var
|
|
1487
|
-
(function (
|
|
1488
|
-
/** @deprecated use `
|
|
1489
|
-
|
|
1490
|
-
/** @deprecated use `
|
|
1491
|
-
|
|
1492
|
-
})(
|
|
1493
|
-
export function
|
|
1494
|
-
return JSON.stringify(
|
|
1495
|
-
.parse(
|
|
1486
|
+
export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757$;
|
|
1487
|
+
(function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757$) {
|
|
1488
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757$inboundSchema` instead. */
|
|
1489
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757$inboundSchema;
|
|
1490
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757$outboundSchema` instead. */
|
|
1491
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757$outboundSchema;
|
|
1492
|
+
})(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757$ = {}));
|
|
1493
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757) {
|
|
1494
|
+
return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757$outboundSchema
|
|
1495
|
+
.parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757));
|
|
1496
1496
|
}
|
|
1497
|
-
export function
|
|
1498
|
-
return safeParse(jsonString, (x) =>
|
|
1499
|
-
.parse(JSON.parse(x)), `Failed to parse '
|
|
1497
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757FromJSON(jsonString) {
|
|
1498
|
+
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757$inboundSchema
|
|
1499
|
+
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757' from JSON`);
|
|
1500
1500
|
}
|
|
1501
1501
|
/** @internal */
|
|
1502
1502
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$inboundSchema = z.object({
|
|
1503
|
-
"__@BRAND@
|
|
1503
|
+
"__@BRAND@7757": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757$inboundSchema),
|
|
1504
1504
|
}).transform((v) => {
|
|
1505
1505
|
return remap$(v, {
|
|
1506
|
-
"__@BRAND@
|
|
1506
|
+
"__@BRAND@7757": "atBRANDAt7757",
|
|
1507
1507
|
});
|
|
1508
1508
|
});
|
|
1509
1509
|
/** @internal */
|
|
1510
1510
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$outboundSchema = z.object({
|
|
1511
|
-
|
|
1511
|
+
atBRANDAt7757: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt7757$outboundSchema),
|
|
1512
1512
|
}).transform((v) => {
|
|
1513
1513
|
return remap$(v, {
|
|
1514
|
-
|
|
1514
|
+
atBRANDAt7757: "__@BRAND@7757",
|
|
1515
1515
|
});
|
|
1516
1516
|
});
|
|
1517
1517
|
/**
|
|
@@ -1534,42 +1534,42 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponseMaxLen
|
|
|
1534
1534
|
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength' from JSON`);
|
|
1535
1535
|
}
|
|
1536
1536
|
/** @internal */
|
|
1537
|
-
export const
|
|
1537
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757$inboundSchema = z.object({});
|
|
1538
1538
|
/** @internal */
|
|
1539
|
-
export const
|
|
1539
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757$outboundSchema = z.object({});
|
|
1540
1540
|
/**
|
|
1541
1541
|
* @internal
|
|
1542
1542
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1543
1543
|
*/
|
|
1544
|
-
export var
|
|
1545
|
-
(function (
|
|
1546
|
-
/** @deprecated use `
|
|
1547
|
-
|
|
1548
|
-
/** @deprecated use `
|
|
1549
|
-
|
|
1550
|
-
})(
|
|
1551
|
-
export function
|
|
1552
|
-
return JSON.stringify(
|
|
1553
|
-
.parse(
|
|
1544
|
+
export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757$;
|
|
1545
|
+
(function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757$) {
|
|
1546
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757$inboundSchema` instead. */
|
|
1547
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757$inboundSchema;
|
|
1548
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757$outboundSchema` instead. */
|
|
1549
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757$outboundSchema;
|
|
1550
|
+
})(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757$ = {}));
|
|
1551
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757) {
|
|
1552
|
+
return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757$outboundSchema
|
|
1553
|
+
.parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757));
|
|
1554
1554
|
}
|
|
1555
|
-
export function
|
|
1556
|
-
return safeParse(jsonString, (x) =>
|
|
1557
|
-
.parse(JSON.parse(x)), `Failed to parse '
|
|
1555
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757FromJSON(jsonString) {
|
|
1556
|
+
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757$inboundSchema
|
|
1557
|
+
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757' from JSON`);
|
|
1558
1558
|
}
|
|
1559
1559
|
/** @internal */
|
|
1560
1560
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$inboundSchema = z.object({
|
|
1561
|
-
"__@BRAND@
|
|
1561
|
+
"__@BRAND@7757": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757$inboundSchema),
|
|
1562
1562
|
}).transform((v) => {
|
|
1563
1563
|
return remap$(v, {
|
|
1564
|
-
"__@BRAND@
|
|
1564
|
+
"__@BRAND@7757": "atBRANDAt7757",
|
|
1565
1565
|
});
|
|
1566
1566
|
});
|
|
1567
1567
|
/** @internal */
|
|
1568
1568
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$outboundSchema = z.object({
|
|
1569
|
-
|
|
1569
|
+
atBRANDAt7757: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt7757$outboundSchema),
|
|
1570
1570
|
}).transform((v) => {
|
|
1571
1571
|
return remap$(v, {
|
|
1572
|
-
|
|
1572
|
+
atBRANDAt7757: "__@BRAND@7757",
|
|
1573
1573
|
});
|
|
1574
1574
|
});
|
|
1575
1575
|
/**
|
|
@@ -1592,42 +1592,42 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponseMinLen
|
|
|
1592
1592
|
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength' from JSON`);
|
|
1593
1593
|
}
|
|
1594
1594
|
/** @internal */
|
|
1595
|
-
export const
|
|
1595
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757$inboundSchema = z.object({});
|
|
1596
1596
|
/** @internal */
|
|
1597
|
-
export const
|
|
1597
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757$outboundSchema = z.object({});
|
|
1598
1598
|
/**
|
|
1599
1599
|
* @internal
|
|
1600
1600
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1601
1601
|
*/
|
|
1602
|
-
export var
|
|
1603
|
-
(function (
|
|
1604
|
-
/** @deprecated use `
|
|
1605
|
-
|
|
1606
|
-
/** @deprecated use `
|
|
1607
|
-
|
|
1608
|
-
})(
|
|
1609
|
-
export function
|
|
1610
|
-
return JSON.stringify(
|
|
1611
|
-
.parse(
|
|
1602
|
+
export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757$;
|
|
1603
|
+
(function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757$) {
|
|
1604
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757$inboundSchema` instead. */
|
|
1605
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757$inboundSchema;
|
|
1606
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757$outboundSchema` instead. */
|
|
1607
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757$outboundSchema;
|
|
1608
|
+
})(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757$ = {}));
|
|
1609
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757) {
|
|
1610
|
+
return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757$outboundSchema
|
|
1611
|
+
.parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757));
|
|
1612
1612
|
}
|
|
1613
|
-
export function
|
|
1614
|
-
return safeParse(jsonString, (x) =>
|
|
1615
|
-
.parse(JSON.parse(x)), `Failed to parse '
|
|
1613
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757FromJSON(jsonString) {
|
|
1614
|
+
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757$inboundSchema
|
|
1615
|
+
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757' from JSON`);
|
|
1616
1616
|
}
|
|
1617
1617
|
/** @internal */
|
|
1618
1618
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$inboundSchema = z.object({
|
|
1619
|
-
"__@BRAND@
|
|
1619
|
+
"__@BRAND@7757": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757$inboundSchema),
|
|
1620
1620
|
}).transform((v) => {
|
|
1621
1621
|
return remap$(v, {
|
|
1622
|
-
"__@BRAND@
|
|
1622
|
+
"__@BRAND@7757": "atBRANDAt7757",
|
|
1623
1623
|
});
|
|
1624
1624
|
});
|
|
1625
1625
|
/** @internal */
|
|
1626
1626
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$outboundSchema = z.object({
|
|
1627
|
-
|
|
1627
|
+
atBRANDAt7757: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt7757$outboundSchema),
|
|
1628
1628
|
}).transform((v) => {
|
|
1629
1629
|
return remap$(v, {
|
|
1630
|
-
|
|
1630
|
+
atBRANDAt7757: "__@BRAND@7757",
|
|
1631
1631
|
});
|
|
1632
1632
|
});
|
|
1633
1633
|
/**
|
|
@@ -2099,42 +2099,42 @@ export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applicat
|
|
|
2099
2099
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType$outboundSchema;
|
|
2100
2100
|
})(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType$ = {}));
|
|
2101
2101
|
/** @internal */
|
|
2102
|
-
export const
|
|
2102
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757$inboundSchema = z.object({});
|
|
2103
2103
|
/** @internal */
|
|
2104
|
-
export const
|
|
2104
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757$outboundSchema = z.object({});
|
|
2105
2105
|
/**
|
|
2106
2106
|
* @internal
|
|
2107
2107
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2108
2108
|
*/
|
|
2109
|
-
export var
|
|
2110
|
-
(function (
|
|
2111
|
-
/** @deprecated use `
|
|
2112
|
-
|
|
2113
|
-
/** @deprecated use `
|
|
2114
|
-
|
|
2115
|
-
})(
|
|
2116
|
-
export function
|
|
2117
|
-
return JSON.stringify(
|
|
2118
|
-
.parse(
|
|
2109
|
+
export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757$;
|
|
2110
|
+
(function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757$) {
|
|
2111
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757$inboundSchema` instead. */
|
|
2112
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757$inboundSchema;
|
|
2113
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757$outboundSchema` instead. */
|
|
2114
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757$outboundSchema;
|
|
2115
|
+
})(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757$ = {}));
|
|
2116
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757) {
|
|
2117
|
+
return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757$outboundSchema
|
|
2118
|
+
.parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757));
|
|
2119
2119
|
}
|
|
2120
|
-
export function
|
|
2121
|
-
return safeParse(jsonString, (x) =>
|
|
2122
|
-
.parse(JSON.parse(x)), `Failed to parse '
|
|
2120
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757FromJSON(jsonString) {
|
|
2121
|
+
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757$inboundSchema
|
|
2122
|
+
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757' from JSON`);
|
|
2123
2123
|
}
|
|
2124
2124
|
/** @internal */
|
|
2125
2125
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$inboundSchema = z.object({
|
|
2126
|
-
"__@BRAND@
|
|
2126
|
+
"__@BRAND@7757": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757$inboundSchema),
|
|
2127
2127
|
}).transform((v) => {
|
|
2128
2128
|
return remap$(v, {
|
|
2129
|
-
"__@BRAND@
|
|
2129
|
+
"__@BRAND@7757": "atBRANDAt7757",
|
|
2130
2130
|
});
|
|
2131
2131
|
});
|
|
2132
2132
|
/** @internal */
|
|
2133
2133
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$outboundSchema = z.object({
|
|
2134
|
-
|
|
2134
|
+
atBRANDAt7757: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt7757$outboundSchema),
|
|
2135
2135
|
}).transform((v) => {
|
|
2136
2136
|
return remap$(v, {
|
|
2137
|
-
|
|
2137
|
+
atBRANDAt7757: "__@BRAND@7757",
|
|
2138
2138
|
});
|
|
2139
2139
|
});
|
|
2140
2140
|
/**
|
|
@@ -2157,42 +2157,42 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200Min
|
|
|
2157
2157
|
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength' from JSON`);
|
|
2158
2158
|
}
|
|
2159
2159
|
/** @internal */
|
|
2160
|
-
export const
|
|
2160
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757$inboundSchema = z.object({});
|
|
2161
2161
|
/** @internal */
|
|
2162
|
-
export const
|
|
2162
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757$outboundSchema = z.object({});
|
|
2163
2163
|
/**
|
|
2164
2164
|
* @internal
|
|
2165
2165
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2166
2166
|
*/
|
|
2167
|
-
export var
|
|
2168
|
-
(function (
|
|
2169
|
-
/** @deprecated use `
|
|
2170
|
-
|
|
2171
|
-
/** @deprecated use `
|
|
2172
|
-
|
|
2173
|
-
})(
|
|
2174
|
-
export function
|
|
2175
|
-
return JSON.stringify(
|
|
2176
|
-
.parse(
|
|
2167
|
+
export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757$;
|
|
2168
|
+
(function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757$) {
|
|
2169
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757$inboundSchema` instead. */
|
|
2170
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757$inboundSchema;
|
|
2171
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757$outboundSchema` instead. */
|
|
2172
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757$outboundSchema;
|
|
2173
|
+
})(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757$ = {}));
|
|
2174
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757) {
|
|
2175
|
+
return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757$outboundSchema
|
|
2176
|
+
.parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757));
|
|
2177
2177
|
}
|
|
2178
|
-
export function
|
|
2179
|
-
return safeParse(jsonString, (x) =>
|
|
2180
|
-
.parse(JSON.parse(x)), `Failed to parse '
|
|
2178
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757FromJSON(jsonString) {
|
|
2179
|
+
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757$inboundSchema
|
|
2180
|
+
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757' from JSON`);
|
|
2181
2181
|
}
|
|
2182
2182
|
/** @internal */
|
|
2183
2183
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$inboundSchema = z.object({
|
|
2184
|
-
"__@BRAND@
|
|
2184
|
+
"__@BRAND@7757": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757$inboundSchema),
|
|
2185
2185
|
}).transform((v) => {
|
|
2186
2186
|
return remap$(v, {
|
|
2187
|
-
"__@BRAND@
|
|
2187
|
+
"__@BRAND@7757": "atBRANDAt7757",
|
|
2188
2188
|
});
|
|
2189
2189
|
});
|
|
2190
2190
|
/** @internal */
|
|
2191
2191
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$outboundSchema = z.object({
|
|
2192
|
-
|
|
2192
|
+
atBRANDAt7757: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt7757$outboundSchema),
|
|
2193
2193
|
}).transform((v) => {
|
|
2194
2194
|
return remap$(v, {
|
|
2195
|
-
|
|
2195
|
+
atBRANDAt7757: "__@BRAND@7757",
|
|
2196
2196
|
});
|
|
2197
2197
|
});
|
|
2198
2198
|
/**
|
|
@@ -2215,42 +2215,42 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200Max
|
|
|
2215
2215
|
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength' from JSON`);
|
|
2216
2216
|
}
|
|
2217
2217
|
/** @internal */
|
|
2218
|
-
export const
|
|
2218
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757$inboundSchema = z.object({});
|
|
2219
2219
|
/** @internal */
|
|
2220
|
-
export const
|
|
2220
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757$outboundSchema = z.object({});
|
|
2221
2221
|
/**
|
|
2222
2222
|
* @internal
|
|
2223
2223
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2224
2224
|
*/
|
|
2225
|
-
export var
|
|
2226
|
-
(function (
|
|
2227
|
-
/** @deprecated use `
|
|
2228
|
-
|
|
2229
|
-
/** @deprecated use `
|
|
2230
|
-
|
|
2231
|
-
})(
|
|
2232
|
-
export function
|
|
2233
|
-
return JSON.stringify(
|
|
2234
|
-
.parse(
|
|
2225
|
+
export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757$;
|
|
2226
|
+
(function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757$) {
|
|
2227
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757$inboundSchema` instead. */
|
|
2228
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757$inboundSchema;
|
|
2229
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757$outboundSchema` instead. */
|
|
2230
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757$outboundSchema;
|
|
2231
|
+
})(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757$ = {}));
|
|
2232
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757) {
|
|
2233
|
+
return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757$outboundSchema
|
|
2234
|
+
.parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757));
|
|
2235
2235
|
}
|
|
2236
|
-
export function
|
|
2237
|
-
return safeParse(jsonString, (x) =>
|
|
2238
|
-
.parse(JSON.parse(x)), `Failed to parse '
|
|
2236
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757FromJSON(jsonString) {
|
|
2237
|
+
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757$inboundSchema
|
|
2238
|
+
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757' from JSON`);
|
|
2239
2239
|
}
|
|
2240
2240
|
/** @internal */
|
|
2241
2241
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$inboundSchema = z.object({
|
|
2242
|
-
"__@BRAND@
|
|
2242
|
+
"__@BRAND@7757": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757$inboundSchema),
|
|
2243
2243
|
}).transform((v) => {
|
|
2244
2244
|
return remap$(v, {
|
|
2245
|
-
"__@BRAND@
|
|
2245
|
+
"__@BRAND@7757": "atBRANDAt7757",
|
|
2246
2246
|
});
|
|
2247
2247
|
});
|
|
2248
2248
|
/** @internal */
|
|
2249
2249
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$outboundSchema = z.object({
|
|
2250
|
-
|
|
2250
|
+
atBRANDAt7757: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt7757$outboundSchema),
|
|
2251
2251
|
}).transform((v) => {
|
|
2252
2252
|
return remap$(v, {
|
|
2253
|
-
|
|
2253
|
+
atBRANDAt7757: "__@BRAND@7757",
|
|
2254
2254
|
});
|
|
2255
2255
|
});
|
|
2256
2256
|
/**
|
|
@@ -3154,42 +3154,42 @@ export function createIntegrationStoreDirectPropertiesUiOptionsFromJSON(jsonStri
|
|
|
3154
3154
|
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesUiOptions$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesUiOptions' from JSON`);
|
|
3155
3155
|
}
|
|
3156
3156
|
/** @internal */
|
|
3157
|
-
export const
|
|
3157
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757$inboundSchema = z.object({});
|
|
3158
3158
|
/** @internal */
|
|
3159
|
-
export const
|
|
3159
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757$outboundSchema = z.object({});
|
|
3160
3160
|
/**
|
|
3161
3161
|
* @internal
|
|
3162
3162
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3163
3163
|
*/
|
|
3164
|
-
export var
|
|
3165
|
-
(function (
|
|
3166
|
-
/** @deprecated use `
|
|
3167
|
-
|
|
3168
|
-
/** @deprecated use `
|
|
3169
|
-
|
|
3170
|
-
})(
|
|
3171
|
-
export function
|
|
3172
|
-
return JSON.stringify(
|
|
3173
|
-
.parse(
|
|
3164
|
+
export var CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757$;
|
|
3165
|
+
(function (CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757$) {
|
|
3166
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757$inboundSchema` instead. */
|
|
3167
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757$inboundSchema;
|
|
3168
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757$outboundSchema` instead. */
|
|
3169
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757$outboundSchema;
|
|
3170
|
+
})(CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757$ || (CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757$ = {}));
|
|
3171
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757ToJSON(createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757) {
|
|
3172
|
+
return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757$outboundSchema
|
|
3173
|
+
.parse(createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757));
|
|
3174
3174
|
}
|
|
3175
|
-
export function
|
|
3176
|
-
return safeParse(jsonString, (x) =>
|
|
3177
|
-
.parse(JSON.parse(x)), `Failed to parse '
|
|
3175
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757FromJSON(jsonString) {
|
|
3176
|
+
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757$inboundSchema
|
|
3177
|
+
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757' from JSON`);
|
|
3178
3178
|
}
|
|
3179
3179
|
/** @internal */
|
|
3180
3180
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$inboundSchema = z.object({
|
|
3181
|
-
"__@BRAND@
|
|
3181
|
+
"__@BRAND@7757": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757$inboundSchema),
|
|
3182
3182
|
}).transform((v) => {
|
|
3183
3183
|
return remap$(v, {
|
|
3184
|
-
"__@BRAND@
|
|
3184
|
+
"__@BRAND@7757": "atBRANDAt7757",
|
|
3185
3185
|
});
|
|
3186
3186
|
});
|
|
3187
3187
|
/** @internal */
|
|
3188
3188
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$outboundSchema = z.object({
|
|
3189
|
-
|
|
3189
|
+
atBRANDAt7757: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt7757$outboundSchema),
|
|
3190
3190
|
}).transform((v) => {
|
|
3191
3191
|
return remap$(v, {
|
|
3192
|
-
|
|
3192
|
+
atBRANDAt7757: "__@BRAND@7757",
|
|
3193
3193
|
});
|
|
3194
3194
|
});
|
|
3195
3195
|
/**
|
|
@@ -3212,42 +3212,42 @@ export function createIntegrationStoreDirectPropertiesIntegrationsMaxLengthFromJ
|
|
|
3212
3212
|
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength' from JSON`);
|
|
3213
3213
|
}
|
|
3214
3214
|
/** @internal */
|
|
3215
|
-
export const
|
|
3215
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757$inboundSchema = z.object({});
|
|
3216
3216
|
/** @internal */
|
|
3217
|
-
export const
|
|
3217
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757$outboundSchema = z.object({});
|
|
3218
3218
|
/**
|
|
3219
3219
|
* @internal
|
|
3220
3220
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3221
3221
|
*/
|
|
3222
|
-
export var
|
|
3223
|
-
(function (
|
|
3224
|
-
/** @deprecated use `
|
|
3225
|
-
|
|
3226
|
-
/** @deprecated use `
|
|
3227
|
-
|
|
3228
|
-
})(
|
|
3229
|
-
export function
|
|
3230
|
-
return JSON.stringify(
|
|
3231
|
-
.parse(
|
|
3222
|
+
export var CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757$;
|
|
3223
|
+
(function (CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757$) {
|
|
3224
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757$inboundSchema` instead. */
|
|
3225
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757$inboundSchema;
|
|
3226
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757$outboundSchema` instead. */
|
|
3227
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757$outboundSchema;
|
|
3228
|
+
})(CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757$ = {}));
|
|
3229
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757) {
|
|
3230
|
+
return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757$outboundSchema
|
|
3231
|
+
.parse(createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757));
|
|
3232
3232
|
}
|
|
3233
|
-
export function
|
|
3234
|
-
return safeParse(jsonString, (x) =>
|
|
3235
|
-
.parse(JSON.parse(x)), `Failed to parse '
|
|
3233
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757FromJSON(jsonString) {
|
|
3234
|
+
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757$inboundSchema
|
|
3235
|
+
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757' from JSON`);
|
|
3236
3236
|
}
|
|
3237
3237
|
/** @internal */
|
|
3238
3238
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$inboundSchema = z.object({
|
|
3239
|
-
"__@BRAND@
|
|
3239
|
+
"__@BRAND@7757": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757$inboundSchema),
|
|
3240
3240
|
}).transform((v) => {
|
|
3241
3241
|
return remap$(v, {
|
|
3242
|
-
"__@BRAND@
|
|
3242
|
+
"__@BRAND@7757": "atBRANDAt7757",
|
|
3243
3243
|
});
|
|
3244
3244
|
});
|
|
3245
3245
|
/** @internal */
|
|
3246
3246
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$outboundSchema = z.object({
|
|
3247
|
-
|
|
3247
|
+
atBRANDAt7757: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt7757$outboundSchema),
|
|
3248
3248
|
}).transform((v) => {
|
|
3249
3249
|
return remap$(v, {
|
|
3250
|
-
|
|
3250
|
+
atBRANDAt7757: "__@BRAND@7757",
|
|
3251
3251
|
});
|
|
3252
3252
|
});
|
|
3253
3253
|
/**
|
|
@@ -3270,42 +3270,42 @@ export function createIntegrationStoreDirectPropertiesIntegrationsMinLengthFromJ
|
|
|
3270
3270
|
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsMinLength' from JSON`);
|
|
3271
3271
|
}
|
|
3272
3272
|
/** @internal */
|
|
3273
|
-
export const
|
|
3273
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757$inboundSchema = z.object({});
|
|
3274
3274
|
/** @internal */
|
|
3275
|
-
export const
|
|
3275
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757$outboundSchema = z.object({});
|
|
3276
3276
|
/**
|
|
3277
3277
|
* @internal
|
|
3278
3278
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3279
3279
|
*/
|
|
3280
|
-
export var
|
|
3281
|
-
(function (
|
|
3282
|
-
/** @deprecated use `
|
|
3283
|
-
|
|
3284
|
-
/** @deprecated use `
|
|
3285
|
-
|
|
3286
|
-
})(
|
|
3287
|
-
export function
|
|
3288
|
-
return JSON.stringify(
|
|
3289
|
-
.parse(
|
|
3280
|
+
export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757$;
|
|
3281
|
+
(function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757$) {
|
|
3282
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757$inboundSchema` instead. */
|
|
3283
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757$inboundSchema;
|
|
3284
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757$outboundSchema` instead. */
|
|
3285
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757$outboundSchema;
|
|
3286
|
+
})(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757$ = {}));
|
|
3287
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757) {
|
|
3288
|
+
return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757$outboundSchema
|
|
3289
|
+
.parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757));
|
|
3290
3290
|
}
|
|
3291
|
-
export function
|
|
3292
|
-
return safeParse(jsonString, (x) =>
|
|
3293
|
-
.parse(JSON.parse(x)), `Failed to parse '
|
|
3291
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757FromJSON(jsonString) {
|
|
3292
|
+
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757$inboundSchema
|
|
3293
|
+
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757' from JSON`);
|
|
3294
3294
|
}
|
|
3295
3295
|
/** @internal */
|
|
3296
3296
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsPattern$inboundSchema = z.object({
|
|
3297
|
-
"__@BRAND@
|
|
3297
|
+
"__@BRAND@7757": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757$inboundSchema),
|
|
3298
3298
|
}).transform((v) => {
|
|
3299
3299
|
return remap$(v, {
|
|
3300
|
-
"__@BRAND@
|
|
3300
|
+
"__@BRAND@7757": "atBRANDAt7757",
|
|
3301
3301
|
});
|
|
3302
3302
|
});
|
|
3303
3303
|
/** @internal */
|
|
3304
3304
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsPattern$outboundSchema = z.object({
|
|
3305
|
-
|
|
3305
|
+
atBRANDAt7757: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt7757$outboundSchema),
|
|
3306
3306
|
}).transform((v) => {
|
|
3307
3307
|
return remap$(v, {
|
|
3308
|
-
|
|
3308
|
+
atBRANDAt7757: "__@BRAND@7757",
|
|
3309
3309
|
});
|
|
3310
3310
|
});
|
|
3311
3311
|
/**
|
|
@@ -5114,42 +5114,42 @@ export var CreateIntegrationStoreDirectPropertiesUiControl$;
|
|
|
5114
5114
|
CreateIntegrationStoreDirectPropertiesUiControl$.outboundSchema = CreateIntegrationStoreDirectPropertiesUiControl$outboundSchema;
|
|
5115
5115
|
})(CreateIntegrationStoreDirectPropertiesUiControl$ || (CreateIntegrationStoreDirectPropertiesUiControl$ = {}));
|
|
5116
5116
|
/** @internal */
|
|
5117
|
-
export const
|
|
5117
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757$inboundSchema = z.object({});
|
|
5118
5118
|
/** @internal */
|
|
5119
|
-
export const
|
|
5119
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757$outboundSchema = z.object({});
|
|
5120
5120
|
/**
|
|
5121
5121
|
* @internal
|
|
5122
5122
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5123
5123
|
*/
|
|
5124
|
-
export var
|
|
5125
|
-
(function (
|
|
5126
|
-
/** @deprecated use `
|
|
5127
|
-
|
|
5128
|
-
/** @deprecated use `
|
|
5129
|
-
|
|
5130
|
-
})(
|
|
5131
|
-
export function
|
|
5132
|
-
return JSON.stringify(
|
|
5133
|
-
.parse(
|
|
5124
|
+
export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757$;
|
|
5125
|
+
(function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757$) {
|
|
5126
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757$inboundSchema` instead. */
|
|
5127
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757$inboundSchema;
|
|
5128
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757$outboundSchema` instead. */
|
|
5129
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757$outboundSchema;
|
|
5130
|
+
})(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757$ = {}));
|
|
5131
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757) {
|
|
5132
|
+
return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757$outboundSchema
|
|
5133
|
+
.parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757));
|
|
5134
5134
|
}
|
|
5135
|
-
export function
|
|
5136
|
-
return safeParse(jsonString, (x) =>
|
|
5137
|
-
.parse(JSON.parse(x)), `Failed to parse '
|
|
5135
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757FromJSON(jsonString) {
|
|
5136
|
+
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757$inboundSchema
|
|
5137
|
+
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757' from JSON`);
|
|
5138
5138
|
}
|
|
5139
5139
|
/** @internal */
|
|
5140
5140
|
export const CreateIntegrationStoreDirectPropertiesMaxLength$inboundSchema = z.object({
|
|
5141
|
-
"__@BRAND@
|
|
5141
|
+
"__@BRAND@7757": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757$inboundSchema),
|
|
5142
5142
|
}).transform((v) => {
|
|
5143
5143
|
return remap$(v, {
|
|
5144
|
-
"__@BRAND@
|
|
5144
|
+
"__@BRAND@7757": "atBRANDAt7757",
|
|
5145
5145
|
});
|
|
5146
5146
|
});
|
|
5147
5147
|
/** @internal */
|
|
5148
5148
|
export const CreateIntegrationStoreDirectPropertiesMaxLength$outboundSchema = z.object({
|
|
5149
|
-
|
|
5149
|
+
atBRANDAt7757: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt7757$outboundSchema),
|
|
5150
5150
|
}).transform((v) => {
|
|
5151
5151
|
return remap$(v, {
|
|
5152
|
-
|
|
5152
|
+
atBRANDAt7757: "__@BRAND@7757",
|
|
5153
5153
|
});
|
|
5154
5154
|
});
|
|
5155
5155
|
/**
|
|
@@ -5170,40 +5170,40 @@ export function createIntegrationStoreDirectPropertiesMaxLengthFromJSON(jsonStri
|
|
|
5170
5170
|
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesMaxLength$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesMaxLength' from JSON`);
|
|
5171
5171
|
}
|
|
5172
5172
|
/** @internal */
|
|
5173
|
-
export const
|
|
5173
|
+
export const PropertiesAtBRANDAt7757$inboundSchema = z.object({});
|
|
5174
5174
|
/** @internal */
|
|
5175
|
-
export const
|
|
5175
|
+
export const PropertiesAtBRANDAt7757$outboundSchema = z.object({});
|
|
5176
5176
|
/**
|
|
5177
5177
|
* @internal
|
|
5178
5178
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5179
5179
|
*/
|
|
5180
|
-
export var
|
|
5181
|
-
(function (
|
|
5182
|
-
/** @deprecated use `
|
|
5183
|
-
|
|
5184
|
-
/** @deprecated use `
|
|
5185
|
-
|
|
5186
|
-
})(
|
|
5187
|
-
export function
|
|
5188
|
-
return JSON.stringify(
|
|
5180
|
+
export var PropertiesAtBRANDAt7757$;
|
|
5181
|
+
(function (PropertiesAtBRANDAt7757$) {
|
|
5182
|
+
/** @deprecated use `PropertiesAtBRANDAt7757$inboundSchema` instead. */
|
|
5183
|
+
PropertiesAtBRANDAt7757$.inboundSchema = PropertiesAtBRANDAt7757$inboundSchema;
|
|
5184
|
+
/** @deprecated use `PropertiesAtBRANDAt7757$outboundSchema` instead. */
|
|
5185
|
+
PropertiesAtBRANDAt7757$.outboundSchema = PropertiesAtBRANDAt7757$outboundSchema;
|
|
5186
|
+
})(PropertiesAtBRANDAt7757$ || (PropertiesAtBRANDAt7757$ = {}));
|
|
5187
|
+
export function propertiesAtBRANDAt7757ToJSON(propertiesAtBRANDAt7757) {
|
|
5188
|
+
return JSON.stringify(PropertiesAtBRANDAt7757$outboundSchema.parse(propertiesAtBRANDAt7757));
|
|
5189
5189
|
}
|
|
5190
|
-
export function
|
|
5191
|
-
return safeParse(jsonString, (x) =>
|
|
5190
|
+
export function propertiesAtBRANDAt7757FromJSON(jsonString) {
|
|
5191
|
+
return safeParse(jsonString, (x) => PropertiesAtBRANDAt7757$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PropertiesAtBRANDAt7757' from JSON`);
|
|
5192
5192
|
}
|
|
5193
5193
|
/** @internal */
|
|
5194
5194
|
export const CreateIntegrationStoreDirectPropertiesMinLength$inboundSchema = z.object({
|
|
5195
|
-
"__@BRAND@
|
|
5195
|
+
"__@BRAND@7757": z.lazy(() => PropertiesAtBRANDAt7757$inboundSchema),
|
|
5196
5196
|
}).transform((v) => {
|
|
5197
5197
|
return remap$(v, {
|
|
5198
|
-
"__@BRAND@
|
|
5198
|
+
"__@BRAND@7757": "atBRANDAt7757",
|
|
5199
5199
|
});
|
|
5200
5200
|
});
|
|
5201
5201
|
/** @internal */
|
|
5202
5202
|
export const CreateIntegrationStoreDirectPropertiesMinLength$outboundSchema = z.object({
|
|
5203
|
-
|
|
5203
|
+
atBRANDAt7757: z.lazy(() => PropertiesAtBRANDAt7757$outboundSchema),
|
|
5204
5204
|
}).transform((v) => {
|
|
5205
5205
|
return remap$(v, {
|
|
5206
|
-
|
|
5206
|
+
atBRANDAt7757: "__@BRAND@7757",
|
|
5207
5207
|
});
|
|
5208
5208
|
});
|
|
5209
5209
|
/**
|
|
@@ -5224,40 +5224,40 @@ export function createIntegrationStoreDirectPropertiesMinLengthFromJSON(jsonStri
|
|
|
5224
5224
|
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesMinLength$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesMinLength' from JSON`);
|
|
5225
5225
|
}
|
|
5226
5226
|
/** @internal */
|
|
5227
|
-
export const
|
|
5227
|
+
export const CreateIntegrationStoreDirectPropertiesAtBRANDAt7757$inboundSchema = z.object({});
|
|
5228
5228
|
/** @internal */
|
|
5229
|
-
export const
|
|
5229
|
+
export const CreateIntegrationStoreDirectPropertiesAtBRANDAt7757$outboundSchema = z.object({});
|
|
5230
5230
|
/**
|
|
5231
5231
|
* @internal
|
|
5232
5232
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5233
5233
|
*/
|
|
5234
|
-
export var
|
|
5235
|
-
(function (
|
|
5236
|
-
/** @deprecated use `
|
|
5237
|
-
|
|
5238
|
-
/** @deprecated use `
|
|
5239
|
-
|
|
5240
|
-
})(
|
|
5241
|
-
export function
|
|
5242
|
-
return JSON.stringify(
|
|
5234
|
+
export var CreateIntegrationStoreDirectPropertiesAtBRANDAt7757$;
|
|
5235
|
+
(function (CreateIntegrationStoreDirectPropertiesAtBRANDAt7757$) {
|
|
5236
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt7757$inboundSchema` instead. */
|
|
5237
|
+
CreateIntegrationStoreDirectPropertiesAtBRANDAt7757$.inboundSchema = CreateIntegrationStoreDirectPropertiesAtBRANDAt7757$inboundSchema;
|
|
5238
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt7757$outboundSchema` instead. */
|
|
5239
|
+
CreateIntegrationStoreDirectPropertiesAtBRANDAt7757$.outboundSchema = CreateIntegrationStoreDirectPropertiesAtBRANDAt7757$outboundSchema;
|
|
5240
|
+
})(CreateIntegrationStoreDirectPropertiesAtBRANDAt7757$ || (CreateIntegrationStoreDirectPropertiesAtBRANDAt7757$ = {}));
|
|
5241
|
+
export function createIntegrationStoreDirectPropertiesAtBRANDAt7757ToJSON(createIntegrationStoreDirectPropertiesAtBRANDAt7757) {
|
|
5242
|
+
return JSON.stringify(CreateIntegrationStoreDirectPropertiesAtBRANDAt7757$outboundSchema.parse(createIntegrationStoreDirectPropertiesAtBRANDAt7757));
|
|
5243
5243
|
}
|
|
5244
|
-
export function
|
|
5245
|
-
return safeParse(jsonString, (x) =>
|
|
5244
|
+
export function createIntegrationStoreDirectPropertiesAtBRANDAt7757FromJSON(jsonString) {
|
|
5245
|
+
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesAtBRANDAt7757$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesAtBRANDAt7757' from JSON`);
|
|
5246
5246
|
}
|
|
5247
5247
|
/** @internal */
|
|
5248
5248
|
export const CreateIntegrationStoreDirectPropertiesPattern$inboundSchema = z.object({
|
|
5249
|
-
"__@BRAND@
|
|
5249
|
+
"__@BRAND@7757": z.lazy(() => CreateIntegrationStoreDirectPropertiesAtBRANDAt7757$inboundSchema),
|
|
5250
5250
|
}).transform((v) => {
|
|
5251
5251
|
return remap$(v, {
|
|
5252
|
-
"__@BRAND@
|
|
5252
|
+
"__@BRAND@7757": "atBRANDAt7757",
|
|
5253
5253
|
});
|
|
5254
5254
|
});
|
|
5255
5255
|
/** @internal */
|
|
5256
5256
|
export const CreateIntegrationStoreDirectPropertiesPattern$outboundSchema = z.object({
|
|
5257
|
-
|
|
5257
|
+
atBRANDAt7757: z.lazy(() => CreateIntegrationStoreDirectPropertiesAtBRANDAt7757$outboundSchema),
|
|
5258
5258
|
}).transform((v) => {
|
|
5259
5259
|
return remap$(v, {
|
|
5260
|
-
|
|
5260
|
+
atBRANDAt7757: "__@BRAND@7757",
|
|
5261
5261
|
});
|
|
5262
5262
|
});
|
|
5263
5263
|
/**
|
|
@@ -5943,40 +5943,40 @@ export function guidesFromJSON(jsonString) {
|
|
|
5943
5943
|
return safeParse(jsonString, (x) => Guides$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Guides' from JSON`);
|
|
5944
5944
|
}
|
|
5945
5945
|
/** @internal */
|
|
5946
|
-
export const
|
|
5946
|
+
export const AtBRANDAt7757$inboundSchema = z.object({});
|
|
5947
5947
|
/** @internal */
|
|
5948
|
-
export const
|
|
5948
|
+
export const AtBRANDAt7757$outboundSchema = z.object({});
|
|
5949
5949
|
/**
|
|
5950
5950
|
* @internal
|
|
5951
5951
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5952
5952
|
*/
|
|
5953
|
-
export var
|
|
5954
|
-
(function (
|
|
5955
|
-
/** @deprecated use `
|
|
5956
|
-
|
|
5957
|
-
/** @deprecated use `
|
|
5958
|
-
|
|
5959
|
-
})(
|
|
5960
|
-
export function
|
|
5961
|
-
return JSON.stringify(
|
|
5953
|
+
export var AtBRANDAt7757$;
|
|
5954
|
+
(function (AtBRANDAt7757$) {
|
|
5955
|
+
/** @deprecated use `AtBRANDAt7757$inboundSchema` instead. */
|
|
5956
|
+
AtBRANDAt7757$.inboundSchema = AtBRANDAt7757$inboundSchema;
|
|
5957
|
+
/** @deprecated use `AtBRANDAt7757$outboundSchema` instead. */
|
|
5958
|
+
AtBRANDAt7757$.outboundSchema = AtBRANDAt7757$outboundSchema;
|
|
5959
|
+
})(AtBRANDAt7757$ || (AtBRANDAt7757$ = {}));
|
|
5960
|
+
export function atBRANDAt7757ToJSON(atBRANDAt7757) {
|
|
5961
|
+
return JSON.stringify(AtBRANDAt7757$outboundSchema.parse(atBRANDAt7757));
|
|
5962
5962
|
}
|
|
5963
|
-
export function
|
|
5964
|
-
return safeParse(jsonString, (x) =>
|
|
5963
|
+
export function atBRANDAt7757FromJSON(jsonString) {
|
|
5964
|
+
return safeParse(jsonString, (x) => AtBRANDAt7757$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'AtBRANDAt7757' from JSON`);
|
|
5965
5965
|
}
|
|
5966
5966
|
/** @internal */
|
|
5967
5967
|
export const CreateIntegrationStoreDirectValue$inboundSchema = z.object({
|
|
5968
|
-
"__@BRAND@
|
|
5968
|
+
"__@BRAND@7757": z.lazy(() => AtBRANDAt7757$inboundSchema),
|
|
5969
5969
|
}).transform((v) => {
|
|
5970
5970
|
return remap$(v, {
|
|
5971
|
-
"__@BRAND@
|
|
5971
|
+
"__@BRAND@7757": "atBRANDAt7757",
|
|
5972
5972
|
});
|
|
5973
5973
|
});
|
|
5974
5974
|
/** @internal */
|
|
5975
5975
|
export const CreateIntegrationStoreDirectValue$outboundSchema = z.object({
|
|
5976
|
-
|
|
5976
|
+
atBRANDAt7757: z.lazy(() => AtBRANDAt7757$outboundSchema),
|
|
5977
5977
|
}).transform((v) => {
|
|
5978
5978
|
return remap$(v, {
|
|
5979
|
-
|
|
5979
|
+
atBRANDAt7757: "__@BRAND@7757",
|
|
5980
5980
|
});
|
|
5981
5981
|
});
|
|
5982
5982
|
/**
|