@vercel/sdk 1.15.0 → 1.16.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/README.md +42 -25
- package/bin/mcp-server.js +3040 -1304
- package/bin/mcp-server.js.map +60 -42
- package/docs/sdks/connect/README.md +10 -10
- package/docs/sdks/environment/README.md +512 -0
- package/docs/sdks/staticips/README.md +95 -0
- package/esm/__tests__/accessgroups.test.js +1 -3
- package/esm/__tests__/accessgroups.test.js.map +1 -1
- package/esm/__tests__/checks.test.js +1 -1
- package/esm/__tests__/checks.test.js.map +1 -1
- package/esm/__tests__/connect.test.js +10 -7
- package/esm/__tests__/connect.test.js.map +1 -1
- package/esm/__tests__/domains.test.js +10 -3
- 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__/environment.test.js +164 -0
- package/esm/__tests__/environment.test.js.map +1 -1
- package/esm/__tests__/integrations.test.js +1 -1
- package/esm/__tests__/logdrains.test.js +1 -3
- package/esm/__tests__/logdrains.test.js.map +1 -1
- package/esm/__tests__/rollingrelease.test.js +2 -1
- 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/funcs/connectUpdateStaticIps.d.ts +17 -0
- package/esm/funcs/connectUpdateStaticIps.d.ts.map +1 -0
- package/esm/funcs/{connectUpdateSharedConnectLinks.js → connectUpdateStaticIps.js} +8 -8
- package/esm/funcs/connectUpdateStaticIps.js.map +1 -0
- package/esm/funcs/environmentCreateSharedEnvVariable.d.ts +17 -0
- package/esm/funcs/environmentCreateSharedEnvVariable.d.ts.map +1 -0
- package/esm/funcs/environmentCreateSharedEnvVariable.js +83 -0
- package/esm/funcs/environmentCreateSharedEnvVariable.js.map +1 -0
- package/esm/funcs/environmentDeleteSharedEnvVariable.d.ts +17 -0
- package/esm/funcs/environmentDeleteSharedEnvVariable.d.ts.map +1 -0
- package/esm/funcs/environmentDeleteSharedEnvVariable.js +83 -0
- package/esm/funcs/environmentDeleteSharedEnvVariable.js.map +1 -0
- package/esm/funcs/environmentGetSharedEnvVar.d.ts +17 -0
- package/esm/funcs/environmentGetSharedEnvVar.d.ts.map +1 -0
- package/esm/funcs/environmentGetSharedEnvVar.js +88 -0
- package/esm/funcs/environmentGetSharedEnvVar.js.map +1 -0
- package/esm/funcs/environmentListSharedEnvVariable.d.ts +17 -0
- package/esm/funcs/environmentListSharedEnvVariable.d.ts.map +1 -0
- package/esm/funcs/environmentListSharedEnvVariable.js +89 -0
- package/esm/funcs/environmentListSharedEnvVariable.js.map +1 -0
- package/esm/funcs/environmentUnlinkSharedEnvVariable.d.ts +17 -0
- package/esm/funcs/environmentUnlinkSharedEnvVariable.d.ts.map +1 -0
- package/esm/funcs/environmentUnlinkSharedEnvVariable.js +92 -0
- package/esm/funcs/environmentUnlinkSharedEnvVariable.js.map +1 -0
- package/esm/funcs/environmentUpdateSharedEnvVariable.d.ts +17 -0
- package/esm/funcs/environmentUpdateSharedEnvVariable.d.ts.map +1 -0
- package/esm/funcs/environmentUpdateSharedEnvVariable.js +83 -0
- package/esm/funcs/environmentUpdateSharedEnvVariable.js.map +1 -0
- package/esm/funcs/integrationsCreateIntegrationStoreDirect.js +13 -2
- package/esm/funcs/integrationsCreateIntegrationStoreDirect.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 +20 -8
- package/esm/mcp-server/server.js.map +1 -1
- package/esm/mcp-server/tools/connectUpdateStaticIps.d.ts +7 -0
- package/esm/mcp-server/tools/connectUpdateStaticIps.d.ts.map +1 -0
- package/esm/mcp-server/tools/connectUpdateStaticIps.js +28 -0
- package/esm/mcp-server/tools/connectUpdateStaticIps.js.map +1 -0
- package/esm/mcp-server/tools/environmentCreateSharedEnvVariable.d.ts +7 -0
- package/esm/mcp-server/tools/environmentCreateSharedEnvVariable.d.ts.map +1 -0
- package/esm/mcp-server/tools/environmentCreateSharedEnvVariable.js +28 -0
- package/esm/mcp-server/tools/environmentCreateSharedEnvVariable.js.map +1 -0
- package/esm/mcp-server/tools/environmentDeleteSharedEnvVariable.d.ts +7 -0
- package/esm/mcp-server/tools/environmentDeleteSharedEnvVariable.d.ts.map +1 -0
- package/esm/mcp-server/tools/environmentDeleteSharedEnvVariable.js +28 -0
- package/esm/mcp-server/tools/environmentDeleteSharedEnvVariable.js.map +1 -0
- package/esm/mcp-server/tools/environmentGetSharedEnvVar.d.ts +7 -0
- package/esm/mcp-server/tools/environmentGetSharedEnvVar.d.ts.map +1 -0
- package/esm/mcp-server/tools/environmentGetSharedEnvVar.js +28 -0
- package/esm/mcp-server/tools/environmentGetSharedEnvVar.js.map +1 -0
- package/esm/mcp-server/tools/environmentListSharedEnvVariable.d.ts +7 -0
- package/esm/mcp-server/tools/environmentListSharedEnvVariable.d.ts.map +1 -0
- package/esm/mcp-server/tools/environmentListSharedEnvVariable.js +28 -0
- package/esm/mcp-server/tools/environmentListSharedEnvVariable.js.map +1 -0
- package/esm/mcp-server/tools/environmentUnlinkSharedEnvVariable.d.ts +7 -0
- package/esm/mcp-server/tools/environmentUnlinkSharedEnvVariable.d.ts.map +1 -0
- package/esm/mcp-server/tools/environmentUnlinkSharedEnvVariable.js +28 -0
- package/esm/mcp-server/tools/environmentUnlinkSharedEnvVariable.js.map +1 -0
- package/esm/mcp-server/tools/environmentUpdateSharedEnvVariable.d.ts +7 -0
- package/esm/mcp-server/tools/environmentUpdateSharedEnvVariable.d.ts.map +1 -0
- package/esm/mcp-server/tools/environmentUpdateSharedEnvVariable.js +28 -0
- package/esm/mcp-server/tools/environmentUpdateSharedEnvVariable.js.map +1 -0
- package/esm/models/buydomainsop.d.ts +4 -4
- package/esm/models/buydomainsop.d.ts.map +1 -1
- package/esm/models/buysingledomainop.d.ts +4 -4
- package/esm/models/buysingledomainop.d.ts.map +1 -1
- package/esm/models/canceldeploymentop.d.ts +3 -0
- package/esm/models/canceldeploymentop.d.ts.map +1 -1
- package/esm/models/canceldeploymentop.js +1 -0
- package/esm/models/canceldeploymentop.js.map +1 -1
- package/esm/models/createdeploymentop.d.ts +6 -0
- package/esm/models/createdeploymentop.d.ts.map +1 -1
- package/esm/models/createdeploymentop.js +2 -0
- package/esm/models/createdeploymentop.js.map +1 -1
- package/esm/models/createdrainop.d.ts +3 -0
- package/esm/models/createdrainop.d.ts.map +1 -1
- package/esm/models/createdrainop.js +1 -0
- package/esm/models/createdrainop.js.map +1 -1
- package/esm/models/createintegrationstoredirectop.d.ts +288 -285
- package/esm/models/createintegrationstoredirectop.d.ts.map +1 -1
- package/esm/models/createintegrationstoredirectop.js +352 -351
- package/esm/models/createintegrationstoredirectop.js.map +1 -1
- package/esm/models/createprojectenvop.d.ts +37 -37
- package/esm/models/createprojectenvop.d.ts.map +1 -1
- package/esm/models/createprojectenvop.js +44 -44
- package/esm/models/createprojectenvop.js.map +1 -1
- package/esm/models/createprojectop.d.ts +6 -0
- package/esm/models/createprojectop.d.ts.map +1 -1
- package/esm/models/createprojectop.js +2 -0
- package/esm/models/createprojectop.js.map +1 -1
- package/esm/models/createsharedenvvariableop.d.ts +746 -0
- package/esm/models/createsharedenvvariableop.d.ts.map +1 -0
- package/esm/models/createsharedenvvariableop.js +609 -0
- package/esm/models/createsharedenvvariableop.js.map +1 -0
- package/esm/models/deletesharedenvvariableop.d.ts +291 -0
- package/esm/models/deletesharedenvvariableop.d.ts.map +1 -0
- package/esm/models/deletesharedenvvariableop.js +291 -0
- package/esm/models/deletesharedenvvariableop.js.map +1 -0
- package/esm/models/getalllogdrainsop.d.ts +6 -0
- package/esm/models/getalllogdrainsop.d.ts.map +1 -1
- package/esm/models/getalllogdrainsop.js +2 -0
- package/esm/models/getalllogdrainsop.js.map +1 -1
- package/esm/models/getconfigurablelogdrainop.d.ts +3 -0
- package/esm/models/getconfigurablelogdrainop.d.ts.map +1 -1
- package/esm/models/getconfigurablelogdrainop.js +1 -0
- package/esm/models/getconfigurablelogdrainop.js.map +1 -1
- package/esm/models/getconfigurationproductsop.d.ts +375 -375
- package/esm/models/getconfigurationproductsop.js +465 -465
- package/esm/models/getcontactinfoschemaop.d.ts +2 -2
- package/esm/models/getcontactinfoschemaop.d.ts.map +1 -1
- package/esm/models/getdeploymentop.d.ts +3 -0
- package/esm/models/getdeploymentop.d.ts.map +1 -1
- package/esm/models/getdeploymentop.js +1 -0
- package/esm/models/getdeploymentop.js.map +1 -1
- package/esm/models/getdeploymentsop.d.ts +3 -0
- package/esm/models/getdeploymentsop.d.ts.map +1 -1
- package/esm/models/getdeploymentsop.js +1 -0
- package/esm/models/getdeploymentsop.js.map +1 -1
- package/esm/models/getdomainauthcodeop.d.ts +4 -4
- package/esm/models/getdomainauthcodeop.d.ts.map +1 -1
- package/esm/models/getdomainpriceop.d.ts +2 -2
- package/esm/models/getdomainpriceop.d.ts.map +1 -1
- package/esm/models/getdomaintransferinop.d.ts +2 -2
- package/esm/models/getdomaintransferinop.d.ts.map +1 -1
- package/esm/models/getdrainop.d.ts +3 -0
- package/esm/models/getdrainop.d.ts.map +1 -1
- package/esm/models/getdrainop.js +1 -0
- package/esm/models/getdrainop.js.map +1 -1
- package/esm/models/getdrainsop.d.ts +3 -0
- package/esm/models/getdrainsop.d.ts.map +1 -1
- package/esm/models/getdrainsop.js +1 -0
- package/esm/models/getdrainsop.js.map +1 -1
- package/esm/models/getinvoiceop.d.ts +3 -0
- package/esm/models/getinvoiceop.d.ts.map +1 -1
- package/esm/models/getinvoiceop.js +1 -0
- package/esm/models/getinvoiceop.js.map +1 -1
- package/esm/models/getorderop.d.ts +2 -2
- package/esm/models/getorderop.d.ts.map +1 -1
- package/esm/models/getprojectsop.d.ts +3 -0
- package/esm/models/getprojectsop.d.ts.map +1 -1
- package/esm/models/getprojectsop.js +1 -0
- package/esm/models/getprojectsop.js.map +1 -1
- package/esm/models/getsharedenvvarop.d.ts +227 -0
- package/esm/models/getsharedenvvarop.d.ts.map +1 -0
- package/esm/models/getsharedenvvarop.js +142 -0
- package/esm/models/getsharedenvvarop.js.map +1 -0
- package/esm/models/gettldpriceop.d.ts +2 -2
- package/esm/models/gettldpriceop.d.ts.map +1 -1
- package/esm/models/getwebhooksop.d.ts +3 -0
- package/esm/models/getwebhooksop.d.ts.map +1 -1
- package/esm/models/getwebhooksop.js +1 -0
- package/esm/models/getwebhooksop.js.map +1 -1
- package/esm/models/listsharedenvvariableop.d.ts +285 -0
- package/esm/models/listsharedenvvariableop.d.ts.map +1 -0
- package/esm/models/listsharedenvvariableop.js +198 -0
- package/esm/models/listsharedenvvariableop.js.map +1 -0
- package/esm/models/renewdomainop.d.ts +4 -4
- package/esm/models/renewdomainop.d.ts.map +1 -1
- package/esm/models/transferindomainop.d.ts +4 -4
- package/esm/models/transferindomainop.d.ts.map +1 -1
- package/esm/models/unlinksharedenvvariableop.d.ts +69 -0
- package/esm/models/unlinksharedenvvariableop.d.ts.map +1 -0
- package/esm/models/unlinksharedenvvariableop.js +62 -0
- package/esm/models/unlinksharedenvvariableop.js.map +1 -0
- package/esm/models/updatedomainautorenewop.d.ts +4 -4
- package/esm/models/updatedomainautorenewop.d.ts.map +1 -1
- package/esm/models/updatedomainnameserversop.d.ts +4 -4
- package/esm/models/updatedomainnameserversop.d.ts.map +1 -1
- package/esm/models/updatedrainop.d.ts +3 -0
- package/esm/models/updatedrainop.d.ts.map +1 -1
- package/esm/models/updatedrainop.js +1 -0
- package/esm/models/updatedrainop.js.map +1 -1
- package/esm/models/updateinstallationop.d.ts +32 -5
- package/esm/models/updateinstallationop.d.ts.map +1 -1
- package/esm/models/updateinstallationop.js +29 -4
- package/esm/models/updateinstallationop.js.map +1 -1
- package/esm/models/updateprojectdatacacheop.d.ts +3 -0
- package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
- package/esm/models/updateprojectdatacacheop.js +1 -0
- package/esm/models/updateprojectdatacacheop.js.map +1 -1
- package/esm/models/updateprojectop.d.ts +6 -0
- package/esm/models/updateprojectop.d.ts.map +1 -1
- package/esm/models/updateprojectop.js +2 -0
- package/esm/models/updateprojectop.js.map +1 -1
- package/esm/models/updatesharedenvvariableop.d.ts +629 -0
- package/esm/models/updatesharedenvvariableop.d.ts.map +1 -0
- package/esm/models/updatesharedenvvariableop.js +507 -0
- package/esm/models/updatesharedenvvariableop.js.map +1 -0
- package/esm/models/updatestaticipsop.d.ts +238 -0
- package/esm/models/updatestaticipsop.d.ts.map +1 -0
- package/esm/models/updatestaticipsop.js +239 -0
- package/esm/models/updatestaticipsop.js.map +1 -0
- package/esm/sdk/connect.d.ts +4 -4
- package/esm/sdk/connect.d.ts.map +1 -1
- package/esm/sdk/connect.js +5 -5
- package/esm/sdk/connect.js.map +1 -1
- package/esm/sdk/environment.d.ts +48 -0
- package/esm/sdk/environment.d.ts.map +1 -1
- package/esm/sdk/environment.js +60 -0
- package/esm/sdk/environment.js.map +1 -1
- package/esm/sdk/sdk.d.ts +5 -2
- package/esm/sdk/sdk.d.ts.map +1 -1
- package/esm/sdk/sdk.js +6 -2
- package/esm/sdk/sdk.js.map +1 -1
- package/esm/sdk/staticips.d.ts +12 -0
- package/esm/sdk/staticips.d.ts.map +1 -0
- package/esm/sdk/staticips.js +18 -0
- package/esm/sdk/staticips.js.map +1 -0
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/__tests__/accessgroups.test.ts +1 -3
- package/src/__tests__/checks.test.ts +1 -1
- package/src/__tests__/connect.test.ts +13 -7
- package/src/__tests__/domains.test.ts +10 -3
- package/src/__tests__/edgeconfig.test.ts +6 -6
- package/src/__tests__/environment.test.ts +184 -0
- package/src/__tests__/integrations.test.ts +1 -1
- package/src/__tests__/logdrains.test.ts +1 -3
- package/src/__tests__/rollingrelease.test.ts +2 -1
- package/src/__tests__/security.test.ts +11 -1
- package/src/funcs/{connectUpdateSharedConnectLinks.ts → connectUpdateStaticIps.ts} +16 -16
- package/src/funcs/environmentCreateSharedEnvVariable.ts +171 -0
- package/src/funcs/environmentDeleteSharedEnvVariable.ts +171 -0
- package/src/funcs/environmentGetSharedEnvVar.ts +177 -0
- package/src/funcs/environmentListSharedEnvVariable.ts +177 -0
- package/src/funcs/environmentUnlinkSharedEnvVariable.ts +181 -0
- package/src/funcs/environmentUpdateSharedEnvVariable.ts +171 -0
- package/src/funcs/integrationsCreateIntegrationStoreDirect.ts +13 -2
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +20 -8
- package/src/mcp-server/tools/connectUpdateStaticIps.ts +37 -0
- package/src/mcp-server/tools/environmentCreateSharedEnvVariable.ts +39 -0
- package/src/mcp-server/tools/environmentDeleteSharedEnvVariable.ts +39 -0
- package/src/mcp-server/tools/environmentGetSharedEnvVar.ts +38 -0
- package/src/mcp-server/tools/environmentListSharedEnvVariable.ts +39 -0
- package/src/mcp-server/tools/environmentUnlinkSharedEnvVariable.ts +39 -0
- package/src/mcp-server/tools/environmentUpdateSharedEnvVariable.ts +39 -0
- package/src/models/buydomainsop.ts +2 -2
- package/src/models/buysingledomainop.ts +2 -2
- package/src/models/canceldeploymentop.ts +1 -0
- package/src/models/createdeploymentop.ts +2 -0
- package/src/models/createdrainop.ts +1 -0
- package/src/models/createintegrationstoredirectop.ts +605 -604
- package/src/models/createprojectenvop.ts +86 -66
- package/src/models/createprojectop.ts +2 -0
- package/src/models/createsharedenvvariableop.ts +1298 -0
- package/src/models/deletesharedenvvariableop.ts +608 -0
- package/src/models/getalllogdrainsop.ts +2 -0
- package/src/models/getconfigurablelogdrainop.ts +1 -0
- package/src/models/getconfigurationproductsop.ts +802 -802
- package/src/models/getcontactinfoschemaop.ts +1 -1
- package/src/models/getdeploymentop.ts +1 -0
- package/src/models/getdeploymentsop.ts +1 -0
- package/src/models/getdomainauthcodeop.ts +2 -2
- package/src/models/getdomainpriceop.ts +1 -1
- package/src/models/getdomaintransferinop.ts +1 -1
- package/src/models/getdrainop.ts +1 -0
- package/src/models/getdrainsop.ts +1 -0
- package/src/models/getinvoiceop.ts +1 -0
- package/src/models/getorderop.ts +1 -1
- package/src/models/getprojectsop.ts +1 -0
- package/src/models/getsharedenvvarop.ts +336 -0
- package/src/models/gettldpriceop.ts +1 -1
- package/src/models/getwebhooksop.ts +1 -0
- package/src/models/listsharedenvvariableop.ts +458 -0
- package/src/models/renewdomainop.ts +2 -2
- package/src/models/transferindomainop.ts +2 -2
- package/src/models/unlinksharedenvvariableop.ts +152 -0
- package/src/models/updatedomainautorenewop.ts +2 -2
- package/src/models/updatedomainnameserversop.ts +2 -2
- package/src/models/updatedrainop.ts +1 -0
- package/src/models/updateinstallationop.ts +67 -11
- package/src/models/updateprojectdatacacheop.ts +1 -0
- package/src/models/updateprojectop.ts +2 -0
- package/src/models/updatesharedenvvariableop.ts +1105 -0
- package/src/models/updatestaticipsop.ts +530 -0
- package/src/sdk/connect.ts +10 -10
- package/src/sdk/environment.ts +132 -0
- package/src/sdk/sdk.ts +9 -3
- package/src/sdk/staticips.ts +30 -0
- package/vercel-spec.json +1623 -121
- package/esm/funcs/connectUpdateSharedConnectLinks.d.ts +0 -17
- package/esm/funcs/connectUpdateSharedConnectLinks.d.ts.map +0 -1
- package/esm/funcs/connectUpdateSharedConnectLinks.js.map +0 -1
- package/esm/mcp-server/tools/connectUpdateSharedConnectLinks.d.ts +0 -7
- package/esm/mcp-server/tools/connectUpdateSharedConnectLinks.d.ts.map +0 -1
- package/esm/mcp-server/tools/connectUpdateSharedConnectLinks.js +0 -28
- package/esm/mcp-server/tools/connectUpdateSharedConnectLinks.js.map +0 -1
- package/esm/models/updatesharedconnectlinksop.d.ts +0 -182
- package/esm/models/updatesharedconnectlinksop.d.ts.map +0 -1
- package/esm/models/updatesharedconnectlinksop.js +0 -179
- package/esm/models/updatesharedconnectlinksop.js.map +0 -1
- package/src/mcp-server/tools/connectUpdateSharedConnectLinks.ts +0 -38
- package/src/models/updatesharedconnectlinksop.ts +0 -402
|
@@ -58,6 +58,7 @@ export const CreateIntegrationStoreDirectFramework = {
|
|
|
58
58
|
Express: "express",
|
|
59
59
|
H3: "h3",
|
|
60
60
|
Nestjs: "nestjs",
|
|
61
|
+
Fastify: "fastify",
|
|
61
62
|
Xmcp: "xmcp",
|
|
62
63
|
};
|
|
63
64
|
export const CreateIntegrationStoreDirectEnvironments = {
|
|
@@ -940,42 +941,42 @@ export var CreateIntegrationStoreDirectIntegrationsType$;
|
|
|
940
941
|
CreateIntegrationStoreDirectIntegrationsType$.outboundSchema = CreateIntegrationStoreDirectIntegrationsType$outboundSchema;
|
|
941
942
|
})(CreateIntegrationStoreDirectIntegrationsType$ || (CreateIntegrationStoreDirectIntegrationsType$ = {}));
|
|
942
943
|
/** @internal */
|
|
943
|
-
export const
|
|
944
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$inboundSchema = z.object({});
|
|
944
945
|
/** @internal */
|
|
945
|
-
export const
|
|
946
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$outboundSchema = z.object({});
|
|
946
947
|
/**
|
|
947
948
|
* @internal
|
|
948
949
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
949
950
|
*/
|
|
950
|
-
export var
|
|
951
|
-
(function (
|
|
952
|
-
/** @deprecated use `
|
|
953
|
-
|
|
954
|
-
/** @deprecated use `
|
|
955
|
-
|
|
956
|
-
})(
|
|
957
|
-
export function
|
|
958
|
-
return JSON.stringify(
|
|
959
|
-
.parse(
|
|
951
|
+
export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$;
|
|
952
|
+
(function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$) {
|
|
953
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$inboundSchema` instead. */
|
|
954
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$inboundSchema;
|
|
955
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$outboundSchema` instead. */
|
|
956
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$outboundSchema;
|
|
957
|
+
})(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$ = {}));
|
|
958
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684) {
|
|
959
|
+
return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$outboundSchema
|
|
960
|
+
.parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684));
|
|
960
961
|
}
|
|
961
|
-
export function
|
|
962
|
-
return safeParse(jsonString, (x) =>
|
|
963
|
-
.parse(JSON.parse(x)), `Failed to parse '
|
|
962
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684FromJSON(jsonString) {
|
|
963
|
+
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$inboundSchema
|
|
964
|
+
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684' from JSON`);
|
|
964
965
|
}
|
|
965
966
|
/** @internal */
|
|
966
967
|
export const CreateIntegrationStoreDirectPropertiesValue$inboundSchema = z.object({
|
|
967
|
-
"__@BRAND@
|
|
968
|
+
"__@BRAND@8684": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$inboundSchema),
|
|
968
969
|
}).transform((v) => {
|
|
969
970
|
return remap$(v, {
|
|
970
|
-
"__@BRAND@
|
|
971
|
+
"__@BRAND@8684": "atBRANDAt8684",
|
|
971
972
|
});
|
|
972
973
|
});
|
|
973
974
|
/** @internal */
|
|
974
975
|
export const CreateIntegrationStoreDirectPropertiesValue$outboundSchema = z.object({
|
|
975
|
-
|
|
976
|
+
atBRANDAt8684: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$outboundSchema),
|
|
976
977
|
}).transform((v) => {
|
|
977
978
|
return remap$(v, {
|
|
978
|
-
|
|
979
|
+
atBRANDAt8684: "__@BRAND@8684",
|
|
979
980
|
});
|
|
980
981
|
});
|
|
981
982
|
/**
|
|
@@ -1209,42 +1210,42 @@ export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applicat
|
|
|
1209
1210
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$outboundSchema;
|
|
1210
1211
|
})(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$ = {}));
|
|
1211
1212
|
/** @internal */
|
|
1212
|
-
export const
|
|
1213
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$inboundSchema = z.object({});
|
|
1213
1214
|
/** @internal */
|
|
1214
|
-
export const
|
|
1215
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$outboundSchema = z.object({});
|
|
1215
1216
|
/**
|
|
1216
1217
|
* @internal
|
|
1217
1218
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1218
1219
|
*/
|
|
1219
|
-
export var
|
|
1220
|
-
(function (
|
|
1221
|
-
/** @deprecated use `
|
|
1222
|
-
|
|
1223
|
-
/** @deprecated use `
|
|
1224
|
-
|
|
1225
|
-
})(
|
|
1226
|
-
export function
|
|
1227
|
-
return JSON.stringify(
|
|
1228
|
-
.parse(
|
|
1220
|
+
export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$;
|
|
1221
|
+
(function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$) {
|
|
1222
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$inboundSchema` instead. */
|
|
1223
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$inboundSchema;
|
|
1224
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$outboundSchema` instead. */
|
|
1225
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$outboundSchema;
|
|
1226
|
+
})(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$ = {}));
|
|
1227
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684) {
|
|
1228
|
+
return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$outboundSchema
|
|
1229
|
+
.parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684));
|
|
1229
1230
|
}
|
|
1230
|
-
export function
|
|
1231
|
-
return safeParse(jsonString, (x) =>
|
|
1232
|
-
.parse(JSON.parse(x)), `Failed to parse '
|
|
1231
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684FromJSON(jsonString) {
|
|
1232
|
+
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$inboundSchema
|
|
1233
|
+
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684' from JSON`);
|
|
1233
1234
|
}
|
|
1234
1235
|
/** @internal */
|
|
1235
1236
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$inboundSchema = z.object({
|
|
1236
|
-
"__@BRAND@
|
|
1237
|
+
"__@BRAND@8684": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$inboundSchema),
|
|
1237
1238
|
}).transform((v) => {
|
|
1238
1239
|
return remap$(v, {
|
|
1239
|
-
"__@BRAND@
|
|
1240
|
+
"__@BRAND@8684": "atBRANDAt8684",
|
|
1240
1241
|
});
|
|
1241
1242
|
});
|
|
1242
1243
|
/** @internal */
|
|
1243
1244
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$outboundSchema = z.object({
|
|
1244
|
-
|
|
1245
|
+
atBRANDAt8684: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$outboundSchema),
|
|
1245
1246
|
}).transform((v) => {
|
|
1246
1247
|
return remap$(v, {
|
|
1247
|
-
|
|
1248
|
+
atBRANDAt8684: "__@BRAND@8684",
|
|
1248
1249
|
});
|
|
1249
1250
|
});
|
|
1250
1251
|
/**
|
|
@@ -1267,42 +1268,42 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200Max
|
|
|
1267
1268
|
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength' from JSON`);
|
|
1268
1269
|
}
|
|
1269
1270
|
/** @internal */
|
|
1270
|
-
export const
|
|
1271
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$inboundSchema = z.object({});
|
|
1271
1272
|
/** @internal */
|
|
1272
|
-
export const
|
|
1273
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$outboundSchema = z.object({});
|
|
1273
1274
|
/**
|
|
1274
1275
|
* @internal
|
|
1275
1276
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1276
1277
|
*/
|
|
1277
|
-
export var
|
|
1278
|
-
(function (
|
|
1279
|
-
/** @deprecated use `
|
|
1280
|
-
|
|
1281
|
-
/** @deprecated use `
|
|
1282
|
-
|
|
1283
|
-
})(
|
|
1284
|
-
export function
|
|
1285
|
-
return JSON.stringify(
|
|
1286
|
-
.parse(
|
|
1278
|
+
export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$;
|
|
1279
|
+
(function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$) {
|
|
1280
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$inboundSchema` instead. */
|
|
1281
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$inboundSchema;
|
|
1282
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$outboundSchema` instead. */
|
|
1283
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$outboundSchema;
|
|
1284
|
+
})(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$ = {}));
|
|
1285
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684) {
|
|
1286
|
+
return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$outboundSchema
|
|
1287
|
+
.parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684));
|
|
1287
1288
|
}
|
|
1288
|
-
export function
|
|
1289
|
-
return safeParse(jsonString, (x) =>
|
|
1290
|
-
.parse(JSON.parse(x)), `Failed to parse '
|
|
1289
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684FromJSON(jsonString) {
|
|
1290
|
+
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$inboundSchema
|
|
1291
|
+
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684' from JSON`);
|
|
1291
1292
|
}
|
|
1292
1293
|
/** @internal */
|
|
1293
1294
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$inboundSchema = z.object({
|
|
1294
|
-
"__@BRAND@
|
|
1295
|
+
"__@BRAND@8684": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$inboundSchema),
|
|
1295
1296
|
}).transform((v) => {
|
|
1296
1297
|
return remap$(v, {
|
|
1297
|
-
"__@BRAND@
|
|
1298
|
+
"__@BRAND@8684": "atBRANDAt8684",
|
|
1298
1299
|
});
|
|
1299
1300
|
});
|
|
1300
1301
|
/** @internal */
|
|
1301
1302
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$outboundSchema = z.object({
|
|
1302
|
-
|
|
1303
|
+
atBRANDAt8684: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$outboundSchema),
|
|
1303
1304
|
}).transform((v) => {
|
|
1304
1305
|
return remap$(v, {
|
|
1305
|
-
|
|
1306
|
+
atBRANDAt8684: "__@BRAND@8684",
|
|
1306
1307
|
});
|
|
1307
1308
|
});
|
|
1308
1309
|
/**
|
|
@@ -1325,42 +1326,42 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200Min
|
|
|
1325
1326
|
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength' from JSON`);
|
|
1326
1327
|
}
|
|
1327
1328
|
/** @internal */
|
|
1328
|
-
export const
|
|
1329
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$inboundSchema = z.object({});
|
|
1329
1330
|
/** @internal */
|
|
1330
|
-
export const
|
|
1331
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$outboundSchema = z.object({});
|
|
1331
1332
|
/**
|
|
1332
1333
|
* @internal
|
|
1333
1334
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1334
1335
|
*/
|
|
1335
|
-
export var
|
|
1336
|
-
(function (
|
|
1337
|
-
/** @deprecated use `
|
|
1338
|
-
|
|
1339
|
-
/** @deprecated use `
|
|
1340
|
-
|
|
1341
|
-
})(
|
|
1342
|
-
export function
|
|
1343
|
-
return JSON.stringify(
|
|
1344
|
-
.parse(
|
|
1336
|
+
export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$;
|
|
1337
|
+
(function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$) {
|
|
1338
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$inboundSchema` instead. */
|
|
1339
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$inboundSchema;
|
|
1340
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$outboundSchema` instead. */
|
|
1341
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$outboundSchema;
|
|
1342
|
+
})(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$ = {}));
|
|
1343
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684) {
|
|
1344
|
+
return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$outboundSchema
|
|
1345
|
+
.parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684));
|
|
1345
1346
|
}
|
|
1346
|
-
export function
|
|
1347
|
-
return safeParse(jsonString, (x) =>
|
|
1348
|
-
.parse(JSON.parse(x)), `Failed to parse '
|
|
1347
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684FromJSON(jsonString) {
|
|
1348
|
+
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$inboundSchema
|
|
1349
|
+
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684' from JSON`);
|
|
1349
1350
|
}
|
|
1350
1351
|
/** @internal */
|
|
1351
1352
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$inboundSchema = z.object({
|
|
1352
|
-
"__@BRAND@
|
|
1353
|
+
"__@BRAND@8684": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$inboundSchema),
|
|
1353
1354
|
}).transform((v) => {
|
|
1354
1355
|
return remap$(v, {
|
|
1355
|
-
"__@BRAND@
|
|
1356
|
+
"__@BRAND@8684": "atBRANDAt8684",
|
|
1356
1357
|
});
|
|
1357
1358
|
});
|
|
1358
1359
|
/** @internal */
|
|
1359
1360
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$outboundSchema = z.object({
|
|
1360
|
-
|
|
1361
|
+
atBRANDAt8684: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$outboundSchema),
|
|
1361
1362
|
}).transform((v) => {
|
|
1362
1363
|
return remap$(v, {
|
|
1363
|
-
|
|
1364
|
+
atBRANDAt8684: "__@BRAND@8684",
|
|
1364
1365
|
});
|
|
1365
1366
|
});
|
|
1366
1367
|
/**
|
|
@@ -1820,40 +1821,40 @@ export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applicat
|
|
|
1820
1821
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl$outboundSchema;
|
|
1821
1822
|
})(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl$ = {}));
|
|
1822
1823
|
/** @internal */
|
|
1823
|
-
export const
|
|
1824
|
+
export const CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$inboundSchema = z.object({});
|
|
1824
1825
|
/** @internal */
|
|
1825
|
-
export const
|
|
1826
|
+
export const CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$outboundSchema = z.object({});
|
|
1826
1827
|
/**
|
|
1827
1828
|
* @internal
|
|
1828
1829
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1829
1830
|
*/
|
|
1830
|
-
export var
|
|
1831
|
-
(function (
|
|
1832
|
-
/** @deprecated use `
|
|
1833
|
-
|
|
1834
|
-
/** @deprecated use `
|
|
1835
|
-
|
|
1836
|
-
})(
|
|
1837
|
-
export function
|
|
1838
|
-
return JSON.stringify(
|
|
1831
|
+
export var CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$;
|
|
1832
|
+
(function (CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$) {
|
|
1833
|
+
/** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$inboundSchema` instead. */
|
|
1834
|
+
CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$.inboundSchema = CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$inboundSchema;
|
|
1835
|
+
/** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$outboundSchema` instead. */
|
|
1836
|
+
CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$.outboundSchema = CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$outboundSchema;
|
|
1837
|
+
})(CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$ || (CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$ = {}));
|
|
1838
|
+
export function createIntegrationStoreDirectUiOptionsAtBRANDAt8684ToJSON(createIntegrationStoreDirectUiOptionsAtBRANDAt8684) {
|
|
1839
|
+
return JSON.stringify(CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$outboundSchema.parse(createIntegrationStoreDirectUiOptionsAtBRANDAt8684));
|
|
1839
1840
|
}
|
|
1840
|
-
export function
|
|
1841
|
-
return safeParse(jsonString, (x) =>
|
|
1841
|
+
export function createIntegrationStoreDirectUiOptionsAtBRANDAt8684FromJSON(jsonString) {
|
|
1842
|
+
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684' from JSON`);
|
|
1842
1843
|
}
|
|
1843
1844
|
/** @internal */
|
|
1844
1845
|
export const CreateIntegrationStoreDirectUiOptionsValue$inboundSchema = z.object({
|
|
1845
|
-
"__@BRAND@
|
|
1846
|
+
"__@BRAND@8684": z.lazy(() => CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$inboundSchema),
|
|
1846
1847
|
}).transform((v) => {
|
|
1847
1848
|
return remap$(v, {
|
|
1848
|
-
"__@BRAND@
|
|
1849
|
+
"__@BRAND@8684": "atBRANDAt8684",
|
|
1849
1850
|
});
|
|
1850
1851
|
});
|
|
1851
1852
|
/** @internal */
|
|
1852
1853
|
export const CreateIntegrationStoreDirectUiOptionsValue$outboundSchema = z.object({
|
|
1853
|
-
|
|
1854
|
+
atBRANDAt8684: z.lazy(() => CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$outboundSchema),
|
|
1854
1855
|
}).transform((v) => {
|
|
1855
1856
|
return remap$(v, {
|
|
1856
|
-
|
|
1857
|
+
atBRANDAt8684: "__@BRAND@8684",
|
|
1857
1858
|
});
|
|
1858
1859
|
});
|
|
1859
1860
|
/**
|
|
@@ -2065,40 +2066,40 @@ export function createIntegrationStoreDirectUiOptions3FromJSON(jsonString) {
|
|
|
2065
2066
|
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectUiOptions3$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectUiOptions3' from JSON`);
|
|
2066
2067
|
}
|
|
2067
2068
|
/** @internal */
|
|
2068
|
-
export const
|
|
2069
|
+
export const UiOptionsAtBRANDAt8684$inboundSchema = z.object({});
|
|
2069
2070
|
/** @internal */
|
|
2070
|
-
export const
|
|
2071
|
+
export const UiOptionsAtBRANDAt8684$outboundSchema = z.object({});
|
|
2071
2072
|
/**
|
|
2072
2073
|
* @internal
|
|
2073
2074
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2074
2075
|
*/
|
|
2075
|
-
export var
|
|
2076
|
-
(function (
|
|
2077
|
-
/** @deprecated use `
|
|
2078
|
-
|
|
2079
|
-
/** @deprecated use `
|
|
2080
|
-
|
|
2081
|
-
})(
|
|
2082
|
-
export function
|
|
2083
|
-
return JSON.stringify(
|
|
2076
|
+
export var UiOptionsAtBRANDAt8684$;
|
|
2077
|
+
(function (UiOptionsAtBRANDAt8684$) {
|
|
2078
|
+
/** @deprecated use `UiOptionsAtBRANDAt8684$inboundSchema` instead. */
|
|
2079
|
+
UiOptionsAtBRANDAt8684$.inboundSchema = UiOptionsAtBRANDAt8684$inboundSchema;
|
|
2080
|
+
/** @deprecated use `UiOptionsAtBRANDAt8684$outboundSchema` instead. */
|
|
2081
|
+
UiOptionsAtBRANDAt8684$.outboundSchema = UiOptionsAtBRANDAt8684$outboundSchema;
|
|
2082
|
+
})(UiOptionsAtBRANDAt8684$ || (UiOptionsAtBRANDAt8684$ = {}));
|
|
2083
|
+
export function uiOptionsAtBRANDAt8684ToJSON(uiOptionsAtBRANDAt8684) {
|
|
2084
|
+
return JSON.stringify(UiOptionsAtBRANDAt8684$outboundSchema.parse(uiOptionsAtBRANDAt8684));
|
|
2084
2085
|
}
|
|
2085
|
-
export function
|
|
2086
|
-
return safeParse(jsonString, (x) =>
|
|
2086
|
+
export function uiOptionsAtBRANDAt8684FromJSON(jsonString) {
|
|
2087
|
+
return safeParse(jsonString, (x) => UiOptionsAtBRANDAt8684$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UiOptionsAtBRANDAt8684' from JSON`);
|
|
2087
2088
|
}
|
|
2088
2089
|
/** @internal */
|
|
2089
2090
|
export const CreateIntegrationStoreDirectUiOptions2$inboundSchema = z.object({
|
|
2090
|
-
"__@BRAND@
|
|
2091
|
+
"__@BRAND@8684": z.lazy(() => UiOptionsAtBRANDAt8684$inboundSchema),
|
|
2091
2092
|
}).transform((v) => {
|
|
2092
2093
|
return remap$(v, {
|
|
2093
|
-
"__@BRAND@
|
|
2094
|
+
"__@BRAND@8684": "atBRANDAt8684",
|
|
2094
2095
|
});
|
|
2095
2096
|
});
|
|
2096
2097
|
/** @internal */
|
|
2097
2098
|
export const CreateIntegrationStoreDirectUiOptions2$outboundSchema = z.object({
|
|
2098
|
-
|
|
2099
|
+
atBRANDAt8684: z.lazy(() => UiOptionsAtBRANDAt8684$outboundSchema),
|
|
2099
2100
|
}).transform((v) => {
|
|
2100
2101
|
return remap$(v, {
|
|
2101
|
-
|
|
2102
|
+
atBRANDAt8684: "__@BRAND@8684",
|
|
2102
2103
|
});
|
|
2103
2104
|
});
|
|
2104
2105
|
/**
|
|
@@ -2339,42 +2340,42 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponseUiOpti
|
|
|
2339
2340
|
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiOptions' from JSON`);
|
|
2340
2341
|
}
|
|
2341
2342
|
/** @internal */
|
|
2342
|
-
export const
|
|
2343
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$inboundSchema = z.object({});
|
|
2343
2344
|
/** @internal */
|
|
2344
|
-
export const
|
|
2345
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$outboundSchema = z.object({});
|
|
2345
2346
|
/**
|
|
2346
2347
|
* @internal
|
|
2347
2348
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2348
2349
|
*/
|
|
2349
|
-
export var
|
|
2350
|
-
(function (
|
|
2351
|
-
/** @deprecated use `
|
|
2352
|
-
|
|
2353
|
-
/** @deprecated use `
|
|
2354
|
-
|
|
2355
|
-
})(
|
|
2356
|
-
export function
|
|
2357
|
-
return JSON.stringify(
|
|
2358
|
-
.parse(
|
|
2350
|
+
export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$;
|
|
2351
|
+
(function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$) {
|
|
2352
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$inboundSchema` instead. */
|
|
2353
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$inboundSchema;
|
|
2354
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$outboundSchema` instead. */
|
|
2355
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$outboundSchema;
|
|
2356
|
+
})(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$ = {}));
|
|
2357
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684) {
|
|
2358
|
+
return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$outboundSchema
|
|
2359
|
+
.parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684));
|
|
2359
2360
|
}
|
|
2360
|
-
export function
|
|
2361
|
-
return safeParse(jsonString, (x) =>
|
|
2362
|
-
.parse(JSON.parse(x)), `Failed to parse '
|
|
2361
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684FromJSON(jsonString) {
|
|
2362
|
+
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$inboundSchema
|
|
2363
|
+
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684' from JSON`);
|
|
2363
2364
|
}
|
|
2364
2365
|
/** @internal */
|
|
2365
2366
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$inboundSchema = z.object({
|
|
2366
|
-
"__@BRAND@
|
|
2367
|
+
"__@BRAND@8684": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$inboundSchema),
|
|
2367
2368
|
}).transform((v) => {
|
|
2368
2369
|
return remap$(v, {
|
|
2369
|
-
"__@BRAND@
|
|
2370
|
+
"__@BRAND@8684": "atBRANDAt8684",
|
|
2370
2371
|
});
|
|
2371
2372
|
});
|
|
2372
2373
|
/** @internal */
|
|
2373
2374
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$outboundSchema = z.object({
|
|
2374
|
-
|
|
2375
|
+
atBRANDAt8684: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$outboundSchema),
|
|
2375
2376
|
}).transform((v) => {
|
|
2376
2377
|
return remap$(v, {
|
|
2377
|
-
|
|
2378
|
+
atBRANDAt8684: "__@BRAND@8684",
|
|
2378
2379
|
});
|
|
2379
2380
|
});
|
|
2380
2381
|
/**
|
|
@@ -2397,42 +2398,42 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponseMaxLen
|
|
|
2397
2398
|
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength' from JSON`);
|
|
2398
2399
|
}
|
|
2399
2400
|
/** @internal */
|
|
2400
|
-
export const
|
|
2401
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$inboundSchema = z.object({});
|
|
2401
2402
|
/** @internal */
|
|
2402
|
-
export const
|
|
2403
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$outboundSchema = z.object({});
|
|
2403
2404
|
/**
|
|
2404
2405
|
* @internal
|
|
2405
2406
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2406
2407
|
*/
|
|
2407
|
-
export var
|
|
2408
|
-
(function (
|
|
2409
|
-
/** @deprecated use `
|
|
2410
|
-
|
|
2411
|
-
/** @deprecated use `
|
|
2412
|
-
|
|
2413
|
-
})(
|
|
2414
|
-
export function
|
|
2415
|
-
return JSON.stringify(
|
|
2416
|
-
.parse(
|
|
2408
|
+
export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$;
|
|
2409
|
+
(function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$) {
|
|
2410
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$inboundSchema` instead. */
|
|
2411
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$inboundSchema;
|
|
2412
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$outboundSchema` instead. */
|
|
2413
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$outboundSchema;
|
|
2414
|
+
})(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$ = {}));
|
|
2415
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684) {
|
|
2416
|
+
return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$outboundSchema
|
|
2417
|
+
.parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684));
|
|
2417
2418
|
}
|
|
2418
|
-
export function
|
|
2419
|
-
return safeParse(jsonString, (x) =>
|
|
2420
|
-
.parse(JSON.parse(x)), `Failed to parse '
|
|
2419
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684FromJSON(jsonString) {
|
|
2420
|
+
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$inboundSchema
|
|
2421
|
+
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684' from JSON`);
|
|
2421
2422
|
}
|
|
2422
2423
|
/** @internal */
|
|
2423
2424
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$inboundSchema = z.object({
|
|
2424
|
-
"__@BRAND@
|
|
2425
|
+
"__@BRAND@8684": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$inboundSchema),
|
|
2425
2426
|
}).transform((v) => {
|
|
2426
2427
|
return remap$(v, {
|
|
2427
|
-
"__@BRAND@
|
|
2428
|
+
"__@BRAND@8684": "atBRANDAt8684",
|
|
2428
2429
|
});
|
|
2429
2430
|
});
|
|
2430
2431
|
/** @internal */
|
|
2431
2432
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$outboundSchema = z.object({
|
|
2432
|
-
|
|
2433
|
+
atBRANDAt8684: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$outboundSchema),
|
|
2433
2434
|
}).transform((v) => {
|
|
2434
2435
|
return remap$(v, {
|
|
2435
|
-
|
|
2436
|
+
atBRANDAt8684: "__@BRAND@8684",
|
|
2436
2437
|
});
|
|
2437
2438
|
});
|
|
2438
2439
|
/**
|
|
@@ -2455,42 +2456,42 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponseMinLen
|
|
|
2455
2456
|
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength' from JSON`);
|
|
2456
2457
|
}
|
|
2457
2458
|
/** @internal */
|
|
2458
|
-
export const
|
|
2459
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$inboundSchema = z.object({});
|
|
2459
2460
|
/** @internal */
|
|
2460
|
-
export const
|
|
2461
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$outboundSchema = z.object({});
|
|
2461
2462
|
/**
|
|
2462
2463
|
* @internal
|
|
2463
2464
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2464
2465
|
*/
|
|
2465
|
-
export var
|
|
2466
|
-
(function (
|
|
2467
|
-
/** @deprecated use `
|
|
2468
|
-
|
|
2469
|
-
/** @deprecated use `
|
|
2470
|
-
|
|
2471
|
-
})(
|
|
2472
|
-
export function
|
|
2473
|
-
return JSON.stringify(
|
|
2474
|
-
.parse(
|
|
2466
|
+
export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$;
|
|
2467
|
+
(function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$) {
|
|
2468
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$inboundSchema` instead. */
|
|
2469
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$inboundSchema;
|
|
2470
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$outboundSchema` instead. */
|
|
2471
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$outboundSchema;
|
|
2472
|
+
})(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$ = {}));
|
|
2473
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684) {
|
|
2474
|
+
return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$outboundSchema
|
|
2475
|
+
.parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684));
|
|
2475
2476
|
}
|
|
2476
|
-
export function
|
|
2477
|
-
return safeParse(jsonString, (x) =>
|
|
2478
|
-
.parse(JSON.parse(x)), `Failed to parse '
|
|
2477
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684FromJSON(jsonString) {
|
|
2478
|
+
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$inboundSchema
|
|
2479
|
+
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684' from JSON`);
|
|
2479
2480
|
}
|
|
2480
2481
|
/** @internal */
|
|
2481
2482
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$inboundSchema = z.object({
|
|
2482
|
-
"__@BRAND@
|
|
2483
|
+
"__@BRAND@8684": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$inboundSchema),
|
|
2483
2484
|
}).transform((v) => {
|
|
2484
2485
|
return remap$(v, {
|
|
2485
|
-
"__@BRAND@
|
|
2486
|
+
"__@BRAND@8684": "atBRANDAt8684",
|
|
2486
2487
|
});
|
|
2487
2488
|
});
|
|
2488
2489
|
/** @internal */
|
|
2489
2490
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$outboundSchema = z.object({
|
|
2490
|
-
|
|
2491
|
+
atBRANDAt8684: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$outboundSchema),
|
|
2491
2492
|
}).transform((v) => {
|
|
2492
2493
|
return remap$(v, {
|
|
2493
|
-
|
|
2494
|
+
atBRANDAt8684: "__@BRAND@8684",
|
|
2494
2495
|
});
|
|
2495
2496
|
});
|
|
2496
2497
|
/**
|
|
@@ -2962,42 +2963,42 @@ export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applicat
|
|
|
2962
2963
|
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type$outboundSchema;
|
|
2963
2964
|
})(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type$ = {}));
|
|
2964
2965
|
/** @internal */
|
|
2965
|
-
export const
|
|
2966
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$inboundSchema = z.object({});
|
|
2966
2967
|
/** @internal */
|
|
2967
|
-
export const
|
|
2968
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$outboundSchema = z.object({});
|
|
2968
2969
|
/**
|
|
2969
2970
|
* @internal
|
|
2970
2971
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2971
2972
|
*/
|
|
2972
|
-
export var
|
|
2973
|
-
(function (
|
|
2974
|
-
/** @deprecated use `
|
|
2975
|
-
|
|
2976
|
-
/** @deprecated use `
|
|
2977
|
-
|
|
2978
|
-
})(
|
|
2979
|
-
export function
|
|
2980
|
-
return JSON.stringify(
|
|
2981
|
-
.parse(
|
|
2973
|
+
export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$;
|
|
2974
|
+
(function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$) {
|
|
2975
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$inboundSchema` instead. */
|
|
2976
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$inboundSchema;
|
|
2977
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$outboundSchema` instead. */
|
|
2978
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$outboundSchema;
|
|
2979
|
+
})(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$ = {}));
|
|
2980
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684) {
|
|
2981
|
+
return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$outboundSchema
|
|
2982
|
+
.parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684));
|
|
2982
2983
|
}
|
|
2983
|
-
export function
|
|
2984
|
-
return safeParse(jsonString, (x) =>
|
|
2985
|
-
.parse(JSON.parse(x)), `Failed to parse '
|
|
2984
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684FromJSON(jsonString) {
|
|
2985
|
+
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$inboundSchema
|
|
2986
|
+
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684' from JSON`);
|
|
2986
2987
|
}
|
|
2987
2988
|
/** @internal */
|
|
2988
2989
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength$inboundSchema = z.object({
|
|
2989
|
-
"__@BRAND@
|
|
2990
|
+
"__@BRAND@8684": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$inboundSchema),
|
|
2990
2991
|
}).transform((v) => {
|
|
2991
2992
|
return remap$(v, {
|
|
2992
|
-
"__@BRAND@
|
|
2993
|
+
"__@BRAND@8684": "atBRANDAt8684",
|
|
2993
2994
|
});
|
|
2994
2995
|
});
|
|
2995
2996
|
/** @internal */
|
|
2996
2997
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength$outboundSchema = z.object({
|
|
2997
|
-
|
|
2998
|
+
atBRANDAt8684: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$outboundSchema),
|
|
2998
2999
|
}).transform((v) => {
|
|
2999
3000
|
return remap$(v, {
|
|
3000
|
-
|
|
3001
|
+
atBRANDAt8684: "__@BRAND@8684",
|
|
3001
3002
|
});
|
|
3002
3003
|
});
|
|
3003
3004
|
/**
|
|
@@ -3020,42 +3021,42 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200App
|
|
|
3020
3021
|
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength' from JSON`);
|
|
3021
3022
|
}
|
|
3022
3023
|
/** @internal */
|
|
3023
|
-
export const
|
|
3024
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$inboundSchema = z.object({});
|
|
3024
3025
|
/** @internal */
|
|
3025
|
-
export const
|
|
3026
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$outboundSchema = z.object({});
|
|
3026
3027
|
/**
|
|
3027
3028
|
* @internal
|
|
3028
3029
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3029
3030
|
*/
|
|
3030
|
-
export var
|
|
3031
|
-
(function (
|
|
3032
|
-
/** @deprecated use `
|
|
3033
|
-
|
|
3034
|
-
/** @deprecated use `
|
|
3035
|
-
|
|
3036
|
-
})(
|
|
3037
|
-
export function
|
|
3038
|
-
return JSON.stringify(
|
|
3039
|
-
.parse(
|
|
3031
|
+
export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$;
|
|
3032
|
+
(function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$) {
|
|
3033
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$inboundSchema` instead. */
|
|
3034
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$inboundSchema;
|
|
3035
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$outboundSchema` instead. */
|
|
3036
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$outboundSchema;
|
|
3037
|
+
})(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$ = {}));
|
|
3038
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684) {
|
|
3039
|
+
return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$outboundSchema
|
|
3040
|
+
.parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684));
|
|
3040
3041
|
}
|
|
3041
|
-
export function
|
|
3042
|
-
return safeParse(jsonString, (x) =>
|
|
3043
|
-
.parse(JSON.parse(x)), `Failed to parse '
|
|
3042
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684FromJSON(jsonString) {
|
|
3043
|
+
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$inboundSchema
|
|
3044
|
+
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684' from JSON`);
|
|
3044
3045
|
}
|
|
3045
3046
|
/** @internal */
|
|
3046
3047
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength$inboundSchema = z.object({
|
|
3047
|
-
"__@BRAND@
|
|
3048
|
+
"__@BRAND@8684": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$inboundSchema),
|
|
3048
3049
|
}).transform((v) => {
|
|
3049
3050
|
return remap$(v, {
|
|
3050
|
-
"__@BRAND@
|
|
3051
|
+
"__@BRAND@8684": "atBRANDAt8684",
|
|
3051
3052
|
});
|
|
3052
3053
|
});
|
|
3053
3054
|
/** @internal */
|
|
3054
3055
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength$outboundSchema = z.object({
|
|
3055
|
-
|
|
3056
|
+
atBRANDAt8684: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$outboundSchema),
|
|
3056
3057
|
}).transform((v) => {
|
|
3057
3058
|
return remap$(v, {
|
|
3058
|
-
|
|
3059
|
+
atBRANDAt8684: "__@BRAND@8684",
|
|
3059
3060
|
});
|
|
3060
3061
|
});
|
|
3061
3062
|
/**
|
|
@@ -3078,42 +3079,42 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200App
|
|
|
3078
3079
|
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength' from JSON`);
|
|
3079
3080
|
}
|
|
3080
3081
|
/** @internal */
|
|
3081
|
-
export const
|
|
3082
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$inboundSchema = z.object({});
|
|
3082
3083
|
/** @internal */
|
|
3083
|
-
export const
|
|
3084
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$outboundSchema = z.object({});
|
|
3084
3085
|
/**
|
|
3085
3086
|
* @internal
|
|
3086
3087
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3087
3088
|
*/
|
|
3088
|
-
export var
|
|
3089
|
-
(function (
|
|
3090
|
-
/** @deprecated use `
|
|
3091
|
-
|
|
3092
|
-
/** @deprecated use `
|
|
3093
|
-
|
|
3094
|
-
})(
|
|
3095
|
-
export function
|
|
3096
|
-
return JSON.stringify(
|
|
3097
|
-
.parse(
|
|
3089
|
+
export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$;
|
|
3090
|
+
(function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$) {
|
|
3091
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$inboundSchema` instead. */
|
|
3092
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$inboundSchema;
|
|
3093
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$outboundSchema` instead. */
|
|
3094
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$outboundSchema;
|
|
3095
|
+
})(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$ = {}));
|
|
3096
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684) {
|
|
3097
|
+
return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$outboundSchema
|
|
3098
|
+
.parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684));
|
|
3098
3099
|
}
|
|
3099
|
-
export function
|
|
3100
|
-
return safeParse(jsonString, (x) =>
|
|
3101
|
-
.parse(JSON.parse(x)), `Failed to parse '
|
|
3100
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684FromJSON(jsonString) {
|
|
3101
|
+
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$inboundSchema
|
|
3102
|
+
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684' from JSON`);
|
|
3102
3103
|
}
|
|
3103
3104
|
/** @internal */
|
|
3104
3105
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern$inboundSchema = z.object({
|
|
3105
|
-
"__@BRAND@
|
|
3106
|
+
"__@BRAND@8684": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$inboundSchema),
|
|
3106
3107
|
}).transform((v) => {
|
|
3107
3108
|
return remap$(v, {
|
|
3108
|
-
"__@BRAND@
|
|
3109
|
+
"__@BRAND@8684": "atBRANDAt8684",
|
|
3109
3110
|
});
|
|
3110
3111
|
});
|
|
3111
3112
|
/** @internal */
|
|
3112
3113
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern$outboundSchema = z.object({
|
|
3113
|
-
|
|
3114
|
+
atBRANDAt8684: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$outboundSchema),
|
|
3114
3115
|
}).transform((v) => {
|
|
3115
3116
|
return remap$(v, {
|
|
3116
|
-
|
|
3117
|
+
atBRANDAt8684: "__@BRAND@8684",
|
|
3117
3118
|
});
|
|
3118
3119
|
});
|
|
3119
3120
|
/**
|
|
@@ -4017,42 +4018,42 @@ export function createIntegrationStoreDirectPropertiesUiOptionsFromJSON(jsonStri
|
|
|
4017
4018
|
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesUiOptions$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesUiOptions' from JSON`);
|
|
4018
4019
|
}
|
|
4019
4020
|
/** @internal */
|
|
4020
|
-
export const
|
|
4021
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$inboundSchema = z.object({});
|
|
4021
4022
|
/** @internal */
|
|
4022
|
-
export const
|
|
4023
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$outboundSchema = z.object({});
|
|
4023
4024
|
/**
|
|
4024
4025
|
* @internal
|
|
4025
4026
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4026
4027
|
*/
|
|
4027
|
-
export var
|
|
4028
|
-
(function (
|
|
4029
|
-
/** @deprecated use `
|
|
4030
|
-
|
|
4031
|
-
/** @deprecated use `
|
|
4032
|
-
|
|
4033
|
-
})(
|
|
4034
|
-
export function
|
|
4035
|
-
return JSON.stringify(
|
|
4036
|
-
.parse(
|
|
4028
|
+
export var CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$;
|
|
4029
|
+
(function (CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$) {
|
|
4030
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$inboundSchema` instead. */
|
|
4031
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$inboundSchema;
|
|
4032
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$outboundSchema` instead. */
|
|
4033
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$outboundSchema;
|
|
4034
|
+
})(CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$ || (CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$ = {}));
|
|
4035
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684) {
|
|
4036
|
+
return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$outboundSchema
|
|
4037
|
+
.parse(createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684));
|
|
4037
4038
|
}
|
|
4038
|
-
export function
|
|
4039
|
-
return safeParse(jsonString, (x) =>
|
|
4040
|
-
.parse(JSON.parse(x)), `Failed to parse '
|
|
4039
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684FromJSON(jsonString) {
|
|
4040
|
+
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$inboundSchema
|
|
4041
|
+
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684' from JSON`);
|
|
4041
4042
|
}
|
|
4042
4043
|
/** @internal */
|
|
4043
4044
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$inboundSchema = z.object({
|
|
4044
|
-
"__@BRAND@
|
|
4045
|
+
"__@BRAND@8684": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$inboundSchema),
|
|
4045
4046
|
}).transform((v) => {
|
|
4046
4047
|
return remap$(v, {
|
|
4047
|
-
"__@BRAND@
|
|
4048
|
+
"__@BRAND@8684": "atBRANDAt8684",
|
|
4048
4049
|
});
|
|
4049
4050
|
});
|
|
4050
4051
|
/** @internal */
|
|
4051
4052
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$outboundSchema = z.object({
|
|
4052
|
-
|
|
4053
|
+
atBRANDAt8684: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$outboundSchema),
|
|
4053
4054
|
}).transform((v) => {
|
|
4054
4055
|
return remap$(v, {
|
|
4055
|
-
|
|
4056
|
+
atBRANDAt8684: "__@BRAND@8684",
|
|
4056
4057
|
});
|
|
4057
4058
|
});
|
|
4058
4059
|
/**
|
|
@@ -4075,42 +4076,42 @@ export function createIntegrationStoreDirectPropertiesIntegrationsMaxLengthFromJ
|
|
|
4075
4076
|
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength' from JSON`);
|
|
4076
4077
|
}
|
|
4077
4078
|
/** @internal */
|
|
4078
|
-
export const
|
|
4079
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$inboundSchema = z.object({});
|
|
4079
4080
|
/** @internal */
|
|
4080
|
-
export const
|
|
4081
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$outboundSchema = z.object({});
|
|
4081
4082
|
/**
|
|
4082
4083
|
* @internal
|
|
4083
4084
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4084
4085
|
*/
|
|
4085
|
-
export var
|
|
4086
|
-
(function (
|
|
4087
|
-
/** @deprecated use `
|
|
4088
|
-
|
|
4089
|
-
/** @deprecated use `
|
|
4090
|
-
|
|
4091
|
-
})(
|
|
4092
|
-
export function
|
|
4093
|
-
return JSON.stringify(
|
|
4094
|
-
.parse(
|
|
4086
|
+
export var CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$;
|
|
4087
|
+
(function (CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$) {
|
|
4088
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$inboundSchema` instead. */
|
|
4089
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$inboundSchema;
|
|
4090
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$outboundSchema` instead. */
|
|
4091
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$outboundSchema;
|
|
4092
|
+
})(CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$ = {}));
|
|
4093
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684) {
|
|
4094
|
+
return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$outboundSchema
|
|
4095
|
+
.parse(createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684));
|
|
4095
4096
|
}
|
|
4096
|
-
export function
|
|
4097
|
-
return safeParse(jsonString, (x) =>
|
|
4098
|
-
.parse(JSON.parse(x)), `Failed to parse '
|
|
4097
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684FromJSON(jsonString) {
|
|
4098
|
+
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$inboundSchema
|
|
4099
|
+
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684' from JSON`);
|
|
4099
4100
|
}
|
|
4100
4101
|
/** @internal */
|
|
4101
4102
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$inboundSchema = z.object({
|
|
4102
|
-
"__@BRAND@
|
|
4103
|
+
"__@BRAND@8684": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$inboundSchema),
|
|
4103
4104
|
}).transform((v) => {
|
|
4104
4105
|
return remap$(v, {
|
|
4105
|
-
"__@BRAND@
|
|
4106
|
+
"__@BRAND@8684": "atBRANDAt8684",
|
|
4106
4107
|
});
|
|
4107
4108
|
});
|
|
4108
4109
|
/** @internal */
|
|
4109
4110
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$outboundSchema = z.object({
|
|
4110
|
-
|
|
4111
|
+
atBRANDAt8684: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$outboundSchema),
|
|
4111
4112
|
}).transform((v) => {
|
|
4112
4113
|
return remap$(v, {
|
|
4113
|
-
|
|
4114
|
+
atBRANDAt8684: "__@BRAND@8684",
|
|
4114
4115
|
});
|
|
4115
4116
|
});
|
|
4116
4117
|
/**
|
|
@@ -4133,42 +4134,42 @@ export function createIntegrationStoreDirectPropertiesIntegrationsMinLengthFromJ
|
|
|
4133
4134
|
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsMinLength' from JSON`);
|
|
4134
4135
|
}
|
|
4135
4136
|
/** @internal */
|
|
4136
|
-
export const
|
|
4137
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$inboundSchema = z.object({});
|
|
4137
4138
|
/** @internal */
|
|
4138
|
-
export const
|
|
4139
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$outboundSchema = z.object({});
|
|
4139
4140
|
/**
|
|
4140
4141
|
* @internal
|
|
4141
4142
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4142
4143
|
*/
|
|
4143
|
-
export var
|
|
4144
|
-
(function (
|
|
4145
|
-
/** @deprecated use `
|
|
4146
|
-
|
|
4147
|
-
/** @deprecated use `
|
|
4148
|
-
|
|
4149
|
-
})(
|
|
4150
|
-
export function
|
|
4151
|
-
return JSON.stringify(
|
|
4152
|
-
.parse(
|
|
4144
|
+
export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$;
|
|
4145
|
+
(function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$) {
|
|
4146
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$inboundSchema` instead. */
|
|
4147
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$inboundSchema;
|
|
4148
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$outboundSchema` instead. */
|
|
4149
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$outboundSchema;
|
|
4150
|
+
})(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$ = {}));
|
|
4151
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684) {
|
|
4152
|
+
return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$outboundSchema
|
|
4153
|
+
.parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684));
|
|
4153
4154
|
}
|
|
4154
|
-
export function
|
|
4155
|
-
return safeParse(jsonString, (x) =>
|
|
4156
|
-
.parse(JSON.parse(x)), `Failed to parse '
|
|
4155
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684FromJSON(jsonString) {
|
|
4156
|
+
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$inboundSchema
|
|
4157
|
+
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684' from JSON`);
|
|
4157
4158
|
}
|
|
4158
4159
|
/** @internal */
|
|
4159
4160
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsPattern$inboundSchema = z.object({
|
|
4160
|
-
"__@BRAND@
|
|
4161
|
+
"__@BRAND@8684": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$inboundSchema),
|
|
4161
4162
|
}).transform((v) => {
|
|
4162
4163
|
return remap$(v, {
|
|
4163
|
-
"__@BRAND@
|
|
4164
|
+
"__@BRAND@8684": "atBRANDAt8684",
|
|
4164
4165
|
});
|
|
4165
4166
|
});
|
|
4166
4167
|
/** @internal */
|
|
4167
4168
|
export const CreateIntegrationStoreDirectPropertiesIntegrationsPattern$outboundSchema = z.object({
|
|
4168
|
-
|
|
4169
|
+
atBRANDAt8684: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$outboundSchema),
|
|
4169
4170
|
}).transform((v) => {
|
|
4170
4171
|
return remap$(v, {
|
|
4171
|
-
|
|
4172
|
+
atBRANDAt8684: "__@BRAND@8684",
|
|
4172
4173
|
});
|
|
4173
4174
|
});
|
|
4174
4175
|
/**
|
|
@@ -5977,42 +5978,42 @@ export var CreateIntegrationStoreDirectPropertiesUiControl$;
|
|
|
5977
5978
|
CreateIntegrationStoreDirectPropertiesUiControl$.outboundSchema = CreateIntegrationStoreDirectPropertiesUiControl$outboundSchema;
|
|
5978
5979
|
})(CreateIntegrationStoreDirectPropertiesUiControl$ || (CreateIntegrationStoreDirectPropertiesUiControl$ = {}));
|
|
5979
5980
|
/** @internal */
|
|
5980
|
-
export const
|
|
5981
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$inboundSchema = z.object({});
|
|
5981
5982
|
/** @internal */
|
|
5982
|
-
export const
|
|
5983
|
+
export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$outboundSchema = z.object({});
|
|
5983
5984
|
/**
|
|
5984
5985
|
* @internal
|
|
5985
5986
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5986
5987
|
*/
|
|
5987
|
-
export var
|
|
5988
|
-
(function (
|
|
5989
|
-
/** @deprecated use `
|
|
5990
|
-
|
|
5991
|
-
/** @deprecated use `
|
|
5992
|
-
|
|
5993
|
-
})(
|
|
5994
|
-
export function
|
|
5995
|
-
return JSON.stringify(
|
|
5996
|
-
.parse(
|
|
5988
|
+
export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$;
|
|
5989
|
+
(function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$) {
|
|
5990
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$inboundSchema` instead. */
|
|
5991
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$inboundSchema;
|
|
5992
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$outboundSchema` instead. */
|
|
5993
|
+
CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$outboundSchema;
|
|
5994
|
+
})(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$ = {}));
|
|
5995
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684) {
|
|
5996
|
+
return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$outboundSchema
|
|
5997
|
+
.parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684));
|
|
5997
5998
|
}
|
|
5998
|
-
export function
|
|
5999
|
-
return safeParse(jsonString, (x) =>
|
|
6000
|
-
.parse(JSON.parse(x)), `Failed to parse '
|
|
5999
|
+
export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684FromJSON(jsonString) {
|
|
6000
|
+
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$inboundSchema
|
|
6001
|
+
.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684' from JSON`);
|
|
6001
6002
|
}
|
|
6002
6003
|
/** @internal */
|
|
6003
6004
|
export const CreateIntegrationStoreDirectPropertiesMaxLength$inboundSchema = z.object({
|
|
6004
|
-
"__@BRAND@
|
|
6005
|
+
"__@BRAND@8684": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$inboundSchema),
|
|
6005
6006
|
}).transform((v) => {
|
|
6006
6007
|
return remap$(v, {
|
|
6007
|
-
"__@BRAND@
|
|
6008
|
+
"__@BRAND@8684": "atBRANDAt8684",
|
|
6008
6009
|
});
|
|
6009
6010
|
});
|
|
6010
6011
|
/** @internal */
|
|
6011
6012
|
export const CreateIntegrationStoreDirectPropertiesMaxLength$outboundSchema = z.object({
|
|
6012
|
-
|
|
6013
|
+
atBRANDAt8684: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$outboundSchema),
|
|
6013
6014
|
}).transform((v) => {
|
|
6014
6015
|
return remap$(v, {
|
|
6015
|
-
|
|
6016
|
+
atBRANDAt8684: "__@BRAND@8684",
|
|
6016
6017
|
});
|
|
6017
6018
|
});
|
|
6018
6019
|
/**
|
|
@@ -6033,40 +6034,40 @@ export function createIntegrationStoreDirectPropertiesMaxLengthFromJSON(jsonStri
|
|
|
6033
6034
|
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesMaxLength$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesMaxLength' from JSON`);
|
|
6034
6035
|
}
|
|
6035
6036
|
/** @internal */
|
|
6036
|
-
export const
|
|
6037
|
+
export const PropertiesAtBRANDAt8684$inboundSchema = z.object({});
|
|
6037
6038
|
/** @internal */
|
|
6038
|
-
export const
|
|
6039
|
+
export const PropertiesAtBRANDAt8684$outboundSchema = z.object({});
|
|
6039
6040
|
/**
|
|
6040
6041
|
* @internal
|
|
6041
6042
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6042
6043
|
*/
|
|
6043
|
-
export var
|
|
6044
|
-
(function (
|
|
6045
|
-
/** @deprecated use `
|
|
6046
|
-
|
|
6047
|
-
/** @deprecated use `
|
|
6048
|
-
|
|
6049
|
-
})(
|
|
6050
|
-
export function
|
|
6051
|
-
return JSON.stringify(
|
|
6044
|
+
export var PropertiesAtBRANDAt8684$;
|
|
6045
|
+
(function (PropertiesAtBRANDAt8684$) {
|
|
6046
|
+
/** @deprecated use `PropertiesAtBRANDAt8684$inboundSchema` instead. */
|
|
6047
|
+
PropertiesAtBRANDAt8684$.inboundSchema = PropertiesAtBRANDAt8684$inboundSchema;
|
|
6048
|
+
/** @deprecated use `PropertiesAtBRANDAt8684$outboundSchema` instead. */
|
|
6049
|
+
PropertiesAtBRANDAt8684$.outboundSchema = PropertiesAtBRANDAt8684$outboundSchema;
|
|
6050
|
+
})(PropertiesAtBRANDAt8684$ || (PropertiesAtBRANDAt8684$ = {}));
|
|
6051
|
+
export function propertiesAtBRANDAt8684ToJSON(propertiesAtBRANDAt8684) {
|
|
6052
|
+
return JSON.stringify(PropertiesAtBRANDAt8684$outboundSchema.parse(propertiesAtBRANDAt8684));
|
|
6052
6053
|
}
|
|
6053
|
-
export function
|
|
6054
|
-
return safeParse(jsonString, (x) =>
|
|
6054
|
+
export function propertiesAtBRANDAt8684FromJSON(jsonString) {
|
|
6055
|
+
return safeParse(jsonString, (x) => PropertiesAtBRANDAt8684$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PropertiesAtBRANDAt8684' from JSON`);
|
|
6055
6056
|
}
|
|
6056
6057
|
/** @internal */
|
|
6057
6058
|
export const CreateIntegrationStoreDirectPropertiesMinLength$inboundSchema = z.object({
|
|
6058
|
-
"__@BRAND@
|
|
6059
|
+
"__@BRAND@8684": z.lazy(() => PropertiesAtBRANDAt8684$inboundSchema),
|
|
6059
6060
|
}).transform((v) => {
|
|
6060
6061
|
return remap$(v, {
|
|
6061
|
-
"__@BRAND@
|
|
6062
|
+
"__@BRAND@8684": "atBRANDAt8684",
|
|
6062
6063
|
});
|
|
6063
6064
|
});
|
|
6064
6065
|
/** @internal */
|
|
6065
6066
|
export const CreateIntegrationStoreDirectPropertiesMinLength$outboundSchema = z.object({
|
|
6066
|
-
|
|
6067
|
+
atBRANDAt8684: z.lazy(() => PropertiesAtBRANDAt8684$outboundSchema),
|
|
6067
6068
|
}).transform((v) => {
|
|
6068
6069
|
return remap$(v, {
|
|
6069
|
-
|
|
6070
|
+
atBRANDAt8684: "__@BRAND@8684",
|
|
6070
6071
|
});
|
|
6071
6072
|
});
|
|
6072
6073
|
/**
|
|
@@ -6087,40 +6088,40 @@ export function createIntegrationStoreDirectPropertiesMinLengthFromJSON(jsonStri
|
|
|
6087
6088
|
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesMinLength$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesMinLength' from JSON`);
|
|
6088
6089
|
}
|
|
6089
6090
|
/** @internal */
|
|
6090
|
-
export const
|
|
6091
|
+
export const CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$inboundSchema = z.object({});
|
|
6091
6092
|
/** @internal */
|
|
6092
|
-
export const
|
|
6093
|
+
export const CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$outboundSchema = z.object({});
|
|
6093
6094
|
/**
|
|
6094
6095
|
* @internal
|
|
6095
6096
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6096
6097
|
*/
|
|
6097
|
-
export var
|
|
6098
|
-
(function (
|
|
6099
|
-
/** @deprecated use `
|
|
6100
|
-
|
|
6101
|
-
/** @deprecated use `
|
|
6102
|
-
|
|
6103
|
-
})(
|
|
6104
|
-
export function
|
|
6105
|
-
return JSON.stringify(
|
|
6098
|
+
export var CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$;
|
|
6099
|
+
(function (CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$) {
|
|
6100
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$inboundSchema` instead. */
|
|
6101
|
+
CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$.inboundSchema = CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$inboundSchema;
|
|
6102
|
+
/** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$outboundSchema` instead. */
|
|
6103
|
+
CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$.outboundSchema = CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$outboundSchema;
|
|
6104
|
+
})(CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$ || (CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$ = {}));
|
|
6105
|
+
export function createIntegrationStoreDirectPropertiesAtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesAtBRANDAt8684) {
|
|
6106
|
+
return JSON.stringify(CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$outboundSchema.parse(createIntegrationStoreDirectPropertiesAtBRANDAt8684));
|
|
6106
6107
|
}
|
|
6107
|
-
export function
|
|
6108
|
-
return safeParse(jsonString, (x) =>
|
|
6108
|
+
export function createIntegrationStoreDirectPropertiesAtBRANDAt8684FromJSON(jsonString) {
|
|
6109
|
+
return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesAtBRANDAt8684' from JSON`);
|
|
6109
6110
|
}
|
|
6110
6111
|
/** @internal */
|
|
6111
6112
|
export const CreateIntegrationStoreDirectPropertiesPattern$inboundSchema = z.object({
|
|
6112
|
-
"__@BRAND@
|
|
6113
|
+
"__@BRAND@8684": z.lazy(() => CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$inboundSchema),
|
|
6113
6114
|
}).transform((v) => {
|
|
6114
6115
|
return remap$(v, {
|
|
6115
|
-
"__@BRAND@
|
|
6116
|
+
"__@BRAND@8684": "atBRANDAt8684",
|
|
6116
6117
|
});
|
|
6117
6118
|
});
|
|
6118
6119
|
/** @internal */
|
|
6119
6120
|
export const CreateIntegrationStoreDirectPropertiesPattern$outboundSchema = z.object({
|
|
6120
|
-
|
|
6121
|
+
atBRANDAt8684: z.lazy(() => CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$outboundSchema),
|
|
6121
6122
|
}).transform((v) => {
|
|
6122
6123
|
return remap$(v, {
|
|
6123
|
-
|
|
6124
|
+
atBRANDAt8684: "__@BRAND@8684",
|
|
6124
6125
|
});
|
|
6125
6126
|
});
|
|
6126
6127
|
/**
|
|
@@ -6810,40 +6811,40 @@ export function guidesFromJSON(jsonString) {
|
|
|
6810
6811
|
return safeParse(jsonString, (x) => Guides$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Guides' from JSON`);
|
|
6811
6812
|
}
|
|
6812
6813
|
/** @internal */
|
|
6813
|
-
export const
|
|
6814
|
+
export const AtBRANDAt8684$inboundSchema = z.object({});
|
|
6814
6815
|
/** @internal */
|
|
6815
|
-
export const
|
|
6816
|
+
export const AtBRANDAt8684$outboundSchema = z.object({});
|
|
6816
6817
|
/**
|
|
6817
6818
|
* @internal
|
|
6818
6819
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6819
6820
|
*/
|
|
6820
|
-
export var
|
|
6821
|
-
(function (
|
|
6822
|
-
/** @deprecated use `
|
|
6823
|
-
|
|
6824
|
-
/** @deprecated use `
|
|
6825
|
-
|
|
6826
|
-
})(
|
|
6827
|
-
export function
|
|
6828
|
-
return JSON.stringify(
|
|
6821
|
+
export var AtBRANDAt8684$;
|
|
6822
|
+
(function (AtBRANDAt8684$) {
|
|
6823
|
+
/** @deprecated use `AtBRANDAt8684$inboundSchema` instead. */
|
|
6824
|
+
AtBRANDAt8684$.inboundSchema = AtBRANDAt8684$inboundSchema;
|
|
6825
|
+
/** @deprecated use `AtBRANDAt8684$outboundSchema` instead. */
|
|
6826
|
+
AtBRANDAt8684$.outboundSchema = AtBRANDAt8684$outboundSchema;
|
|
6827
|
+
})(AtBRANDAt8684$ || (AtBRANDAt8684$ = {}));
|
|
6828
|
+
export function atBRANDAt8684ToJSON(atBRANDAt8684) {
|
|
6829
|
+
return JSON.stringify(AtBRANDAt8684$outboundSchema.parse(atBRANDAt8684));
|
|
6829
6830
|
}
|
|
6830
|
-
export function
|
|
6831
|
-
return safeParse(jsonString, (x) =>
|
|
6831
|
+
export function atBRANDAt8684FromJSON(jsonString) {
|
|
6832
|
+
return safeParse(jsonString, (x) => AtBRANDAt8684$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'AtBRANDAt8684' from JSON`);
|
|
6832
6833
|
}
|
|
6833
6834
|
/** @internal */
|
|
6834
6835
|
export const CreateIntegrationStoreDirectValue$inboundSchema = z.object({
|
|
6835
|
-
"__@BRAND@
|
|
6836
|
+
"__@BRAND@8684": z.lazy(() => AtBRANDAt8684$inboundSchema),
|
|
6836
6837
|
}).transform((v) => {
|
|
6837
6838
|
return remap$(v, {
|
|
6838
|
-
"__@BRAND@
|
|
6839
|
+
"__@BRAND@8684": "atBRANDAt8684",
|
|
6839
6840
|
});
|
|
6840
6841
|
});
|
|
6841
6842
|
/** @internal */
|
|
6842
6843
|
export const CreateIntegrationStoreDirectValue$outboundSchema = z.object({
|
|
6843
|
-
|
|
6844
|
+
atBRANDAt8684: z.lazy(() => AtBRANDAt8684$outboundSchema),
|
|
6844
6845
|
}).transform((v) => {
|
|
6845
6846
|
return remap$(v, {
|
|
6846
|
-
|
|
6847
|
+
atBRANDAt8684: "__@BRAND@8684",
|
|
6847
6848
|
});
|
|
6848
6849
|
});
|
|
6849
6850
|
/**
|