@vercel/sdk 1.18.6 → 1.18.7
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 +34 -28
- package/bin/mcp-server.js +4851 -3924
- package/bin/mcp-server.js.map +73 -63
- package/esm/__tests__/accessgroups.test.js +1 -3
- package/esm/__tests__/accessgroups.test.js.map +1 -1
- package/esm/__tests__/aliases.test.js +20 -1
- package/esm/__tests__/aliases.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 +104 -0
- package/esm/__tests__/connect.test.js.map +1 -1
- package/esm/__tests__/deployments.test.js +4 -4
- package/esm/__tests__/deployments.test.js.map +1 -1
- package/esm/__tests__/dns.test.js +3 -3
- package/esm/__tests__/dns.test.js.map +1 -1
- package/esm/__tests__/domains.test.js +7 -37
- package/esm/__tests__/domains.test.js.map +1 -1
- package/esm/__tests__/drains.test.js +6 -6
- package/esm/__tests__/drains.test.js.map +1 -1
- package/esm/__tests__/edgeconfig.test.js +9 -9
- package/esm/__tests__/edgeconfig.test.js.map +1 -1
- package/esm/__tests__/integrations.test.js +8 -1
- package/esm/__tests__/integrations.test.js.map +1 -1
- package/esm/__tests__/logdrains.test.js +5 -3
- package/esm/__tests__/logdrains.test.js.map +1 -1
- package/esm/__tests__/marketplace.test.js +3 -2
- package/esm/__tests__/marketplace.test.js.map +1 -1
- package/esm/__tests__/projects.test.js +11 -28
- package/esm/__tests__/projects.test.js.map +1 -1
- package/esm/__tests__/security.test.js +33 -9
- package/esm/__tests__/security.test.js.map +1 -1
- package/esm/funcs/aliasesGetAlias.d.ts +1 -1
- package/esm/funcs/aliasesGetAlias.d.ts.map +1 -1
- package/esm/funcs/aliasesGetAlias.js +1 -2
- package/esm/funcs/aliasesGetAlias.js.map +1 -1
- package/esm/funcs/connectCreateNetwork.d.ts +18 -0
- package/esm/funcs/connectCreateNetwork.d.ts.map +1 -0
- package/esm/funcs/connectCreateNetwork.js +84 -0
- package/esm/funcs/connectCreateNetwork.js.map +1 -0
- package/esm/funcs/connectDeleteNetwork.d.ts +17 -0
- package/esm/funcs/connectDeleteNetwork.d.ts.map +1 -0
- package/esm/funcs/connectDeleteNetwork.js +89 -0
- package/esm/funcs/connectDeleteNetwork.js.map +1 -0
- package/esm/funcs/connectListNetworks.d.ts +18 -0
- package/esm/funcs/connectListNetworks.d.ts.map +1 -0
- package/esm/funcs/{domainsCheckDomainStatus.js → connectListNetworks.js} +16 -11
- package/esm/funcs/connectListNetworks.js.map +1 -0
- package/esm/funcs/connectReadNetwork.d.ts +18 -0
- package/esm/funcs/connectReadNetwork.d.ts.map +1 -0
- package/esm/funcs/{domainsCheckDomainPrice.js → connectReadNetwork.js} +18 -13
- package/esm/funcs/connectReadNetwork.js.map +1 -0
- package/esm/funcs/connectUpdateNetwork.d.ts +18 -0
- package/esm/funcs/connectUpdateNetwork.d.ts.map +1 -0
- package/esm/funcs/connectUpdateNetwork.js +90 -0
- package/esm/funcs/connectUpdateNetwork.js.map +1 -0
- package/esm/funcs/connectUpdateStaticIps.js +2 -2
- package/esm/funcs/connectUpdateStaticIps.js.map +1 -1
- package/esm/funcs/edgeCacheDangerouslyDeleteBySrcImages.d.ts +1 -1
- package/esm/funcs/edgeCacheDangerouslyDeleteBySrcImages.js +1 -1
- package/esm/funcs/edgeCacheDangerouslyDeleteByTags.d.ts +1 -1
- package/esm/funcs/edgeCacheDangerouslyDeleteByTags.js +1 -1
- package/esm/funcs/marketplaceExchangeSsoToken.js +2 -2
- package/esm/funcs/marketplaceExchangeSsoToken.js.map +1 -1
- package/esm/lib/config.d.ts +3 -3
- package/esm/lib/config.js +3 -3
- package/esm/lib/sdks.js +2 -2
- package/esm/lib/sdks.js.map +1 -1
- 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 +18 -12
- package/esm/mcp-server/server.js.map +1 -1
- package/esm/mcp-server/tools/connectCreateNetwork.d.ts +7 -0
- package/esm/mcp-server/tools/connectCreateNetwork.d.ts.map +1 -0
- package/esm/mcp-server/tools/connectCreateNetwork.js +28 -0
- package/esm/mcp-server/tools/connectCreateNetwork.js.map +1 -0
- package/esm/mcp-server/tools/connectDeleteNetwork.d.ts +7 -0
- package/esm/mcp-server/tools/connectDeleteNetwork.d.ts.map +1 -0
- package/esm/mcp-server/tools/connectDeleteNetwork.js +27 -0
- package/esm/mcp-server/tools/connectDeleteNetwork.js.map +1 -0
- package/esm/mcp-server/tools/connectListNetworks.d.ts +7 -0
- package/esm/mcp-server/tools/connectListNetworks.d.ts.map +1 -0
- package/esm/mcp-server/tools/connectListNetworks.js +28 -0
- package/esm/mcp-server/tools/connectListNetworks.js.map +1 -0
- package/esm/mcp-server/tools/connectReadNetwork.d.ts +7 -0
- package/esm/mcp-server/tools/connectReadNetwork.d.ts.map +1 -0
- package/esm/mcp-server/tools/connectReadNetwork.js +28 -0
- package/esm/mcp-server/tools/connectReadNetwork.js.map +1 -0
- package/esm/mcp-server/tools/connectUpdateNetwork.d.ts +7 -0
- package/esm/mcp-server/tools/connectUpdateNetwork.d.ts.map +1 -0
- package/esm/mcp-server/tools/connectUpdateNetwork.js +28 -0
- package/esm/mcp-server/tools/connectUpdateNetwork.js.map +1 -0
- package/esm/mcp-server/tools/edgeCacheDangerouslyDeleteBySrcImages.js +1 -1
- package/esm/mcp-server/tools/edgeCacheDangerouslyDeleteBySrcImages.js.map +1 -1
- package/esm/mcp-server/tools/edgeCacheDangerouslyDeleteByTags.js +1 -1
- package/esm/mcp-server/tools/edgeCacheDangerouslyDeleteByTags.js.map +1 -1
- package/esm/models/addbypassipop.d.ts +1 -1
- package/esm/models/addbypassipop.js +1 -1
- package/esm/models/addbypassipop.js.map +1 -1
- package/esm/models/canceldeploymentop.d.ts +86 -81
- package/esm/models/canceldeploymentop.d.ts.map +1 -1
- package/esm/models/canceldeploymentop.js +66 -64
- package/esm/models/canceldeploymentop.js.map +1 -1
- package/esm/models/createdeploymentop.d.ts +5 -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 +72 -72
- package/esm/models/createdrainop.d.ts.map +1 -1
- package/esm/models/createdrainop.js +72 -72
- package/esm/models/createdrainop.js.map +1 -1
- package/esm/models/createedgeconfigop.d.ts +24 -24
- package/esm/models/createedgeconfigop.d.ts.map +1 -1
- package/esm/models/createedgeconfigop.js +22 -22
- package/esm/models/createedgeconfigop.js.map +1 -1
- package/esm/models/createintegrationstoredirectop.d.ts +689 -177
- package/esm/models/createintegrationstoredirectop.d.ts.map +1 -1
- package/esm/models/createintegrationstoredirectop.js +1023 -266
- package/esm/models/createintegrationstoredirectop.js.map +1 -1
- package/esm/models/createlogdrainop.d.ts +1 -1
- package/esm/models/createlogdrainop.js +1 -1
- package/esm/models/createlogdrainop.js.map +1 -1
- package/esm/models/createnetworkop.d.ts +55 -0
- package/esm/models/createnetworkop.d.ts.map +1 -0
- package/esm/models/createnetworkop.js +54 -0
- package/esm/models/createnetworkop.js.map +1 -0
- package/esm/models/createortransferdomainop.d.ts +2 -2
- package/esm/models/createortransferdomainop.d.ts.map +1 -1
- package/esm/models/createortransferdomainop.js +2 -2
- package/esm/models/createortransferdomainop.js.map +1 -1
- package/esm/models/deletenetworkop.d.ts +30 -0
- package/esm/models/deletenetworkop.d.ts.map +1 -0
- package/esm/models/deletenetworkop.js +25 -0
- package/esm/models/deletenetworkop.js.map +1 -0
- package/esm/models/editprojectenvop.d.ts +161 -169
- package/esm/models/editprojectenvop.d.ts.map +1 -1
- package/esm/models/editprojectenvop.js +228 -236
- package/esm/models/editprojectenvop.js.map +1 -1
- package/esm/models/exchangessotokenop.d.ts +79 -22
- package/esm/models/exchangessotokenop.d.ts.map +1 -1
- package/esm/models/exchangessotokenop.js +117 -18
- package/esm/models/exchangessotokenop.js.map +1 -1
- package/esm/models/getaliasop.d.ts +9 -6
- package/esm/models/getaliasop.d.ts.map +1 -1
- package/esm/models/getaliasop.js +6 -6
- package/esm/models/getaliasop.js.map +1 -1
- package/esm/models/getalllogdrainsop.d.ts +180 -180
- package/esm/models/getalllogdrainsop.d.ts.map +1 -1
- package/esm/models/getalllogdrainsop.js +188 -188
- package/esm/models/getalllogdrainsop.js.map +1 -1
- package/esm/models/getbypassipop.d.ts +1 -1
- package/esm/models/getbypassipop.js +1 -1
- package/esm/models/getbypassipop.js.map +1 -1
- package/esm/models/getconfigurationop.d.ts +66 -66
- package/esm/models/getconfigurationop.d.ts.map +1 -1
- package/esm/models/getconfigurationop.js +46 -46
- package/esm/models/getconfigurationop.js.map +1 -1
- package/esm/models/getconfigurationproductsop.d.ts +334 -226
- package/esm/models/getconfigurationproductsop.d.ts.map +1 -1
- package/esm/models/getconfigurationproductsop.js +452 -280
- package/esm/models/getconfigurationproductsop.js.map +1 -1
- package/esm/models/getconfigurationsop.d.ts +4 -4
- package/esm/models/getconfigurationsop.js +4 -4
- package/esm/models/getconfigurationsop.js.map +1 -1
- package/esm/models/getdeploymentop.d.ts +10 -0
- package/esm/models/getdeploymentop.d.ts.map +1 -1
- package/esm/models/getdeploymentop.js +4 -0
- package/esm/models/getdeploymentop.js.map +1 -1
- package/esm/models/getdomainop.d.ts +5 -5
- package/esm/models/getdomainop.d.ts.map +1 -1
- package/esm/models/getdomainop.js +2 -2
- package/esm/models/getdomainop.js.map +1 -1
- package/esm/models/getdomainsop.d.ts +9 -9
- package/esm/models/getdomainsop.d.ts.map +1 -1
- package/esm/models/getdomainsop.js +4 -4
- package/esm/models/getdomainsop.js.map +1 -1
- package/esm/models/getdrainop.d.ts +72 -72
- package/esm/models/getdrainop.d.ts.map +1 -1
- package/esm/models/getdrainop.js +74 -74
- package/esm/models/getdrainop.js.map +1 -1
- package/esm/models/getdrainsop.d.ts +72 -72
- package/esm/models/getdrainsop.d.ts.map +1 -1
- package/esm/models/getdrainsop.js +72 -72
- package/esm/models/getdrainsop.js.map +1 -1
- package/esm/models/getedgeconfigbackupop.d.ts +12 -12
- package/esm/models/getedgeconfigbackupop.d.ts.map +1 -1
- package/esm/models/getedgeconfigbackupop.js +12 -12
- package/esm/models/getedgeconfigbackupop.js.map +1 -1
- package/esm/models/getedgeconfigop.d.ts +24 -24
- package/esm/models/getedgeconfigop.d.ts.map +1 -1
- package/esm/models/getedgeconfigop.js +22 -22
- package/esm/models/getedgeconfigop.js.map +1 -1
- package/esm/models/getfirewallconfigop.d.ts +2 -2
- package/esm/models/getfirewallconfigop.js +2 -2
- package/esm/models/getfirewallconfigop.js.map +1 -1
- package/esm/models/getintegrationlogdrainsop.d.ts +1 -1
- package/esm/models/getintegrationlogdrainsop.js +1 -1
- package/esm/models/getintegrationlogdrainsop.js.map +1 -1
- package/esm/models/getintegrationresourceop.d.ts +3 -3
- package/esm/models/getintegrationresourceop.d.ts.map +1 -1
- package/esm/models/getintegrationresourceop.js +3 -3
- package/esm/models/getintegrationresourceop.js.map +1 -1
- package/esm/models/getintegrationresourcesop.d.ts +3 -3
- package/esm/models/getintegrationresourcesop.d.ts.map +1 -1
- package/esm/models/getintegrationresourcesop.js +3 -3
- package/esm/models/getintegrationresourcesop.js.map +1 -1
- package/esm/models/getinvoiceop.d.ts +3 -3
- package/esm/models/getinvoiceop.js +3 -3
- package/esm/models/getinvoiceop.js.map +1 -1
- package/esm/models/getprojectenvop.d.ts +61 -418
- package/esm/models/getprojectenvop.d.ts.map +1 -1
- package/esm/models/getprojectenvop.js +59 -500
- package/esm/models/getprojectenvop.js.map +1 -1
- package/esm/models/getredirectsop.d.ts +2 -2
- package/esm/models/getredirectsop.d.ts.map +1 -1
- package/esm/models/getredirectsop.js +2 -2
- package/esm/models/getredirectsop.js.map +1 -1
- package/esm/models/getteamaccessrequestop.d.ts +1 -1
- package/esm/models/getteamaccessrequestop.js +1 -1
- package/esm/models/getteamaccessrequestop.js.map +1 -1
- package/esm/models/listnetworksop.d.ts +45 -0
- package/esm/models/listnetworksop.d.ts.map +1 -0
- package/esm/models/listnetworksop.js +31 -0
- package/esm/models/listnetworksop.js.map +1 -0
- package/esm/models/network.d.ts +161 -0
- package/esm/models/network.d.ts.map +1 -0
- package/esm/models/network.js +108 -0
- package/esm/models/network.js.map +1 -0
- package/esm/models/putfirewallconfigop.d.ts +2 -2
- package/esm/models/putfirewallconfigop.js +2 -2
- package/esm/models/putfirewallconfigop.js.map +1 -1
- package/esm/models/readnetworkop.d.ts +30 -0
- package/esm/models/readnetworkop.d.ts.map +1 -0
- package/esm/models/readnetworkop.js +25 -0
- package/esm/models/readnetworkop.js.map +1 -0
- package/esm/models/removeprojectenvop.d.ts +96 -102
- package/esm/models/removeprojectenvop.d.ts.map +1 -1
- package/esm/models/removeprojectenvop.js +95 -101
- package/esm/models/removeprojectenvop.js.map +1 -1
- package/esm/models/requestaccesstoteamop.d.ts +5 -5
- package/esm/models/requestaccesstoteamop.js +5 -5
- package/esm/models/requestaccesstoteamop.js.map +1 -1
- package/esm/models/teamlimited.d.ts +1 -1
- package/esm/models/teamlimited.js +1 -1
- package/esm/models/teamlimited.js.map +1 -1
- package/esm/models/updateaccessgroupop.d.ts +8 -8
- package/esm/models/updateaccessgroupop.d.ts.map +1 -1
- package/esm/models/updateaccessgroupop.js +9 -8
- package/esm/models/updateaccessgroupop.js.map +1 -1
- package/esm/models/updateattackchallengemodeop.d.ts +31 -7
- package/esm/models/updateattackchallengemodeop.d.ts.map +1 -1
- package/esm/models/updateattackchallengemodeop.js +45 -6
- package/esm/models/updateattackchallengemodeop.js.map +1 -1
- package/esm/models/updatecheckop.d.ts +10 -10
- package/esm/models/updatecheckop.d.ts.map +1 -1
- package/esm/models/updatecheckop.js +10 -11
- package/esm/models/updatecheckop.js.map +1 -1
- package/esm/models/updatedrainop.d.ts +72 -72
- package/esm/models/updatedrainop.d.ts.map +1 -1
- package/esm/models/updatedrainop.js +75 -75
- package/esm/models/updatedrainop.js.map +1 -1
- package/esm/models/updateedgeconfigop.d.ts +24 -24
- package/esm/models/updateedgeconfigop.d.ts.map +1 -1
- package/esm/models/updateedgeconfigop.js +22 -22
- package/esm/models/updateedgeconfigop.js.map +1 -1
- package/esm/models/updatenetworkop.d.ts +48 -0
- package/esm/models/updatenetworkop.d.ts.map +1 -0
- package/esm/models/updatenetworkop.js +50 -0
- package/esm/models/updatenetworkop.js.map +1 -0
- package/esm/models/updateprojectdatacacheop.d.ts +106 -106
- package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
- package/esm/models/updateprojectdatacacheop.js +167 -167
- package/esm/models/updateprojectdatacacheop.js.map +1 -1
- package/esm/models/updaterecordop.d.ts +19 -19
- package/esm/models/updaterecordop.d.ts.map +1 -1
- package/esm/models/updaterecordop.js +18 -18
- package/esm/models/updaterecordop.js.map +1 -1
- package/esm/models/userevent.d.ts +822 -781
- package/esm/models/userevent.d.ts.map +1 -1
- package/esm/models/userevent.js +1094 -1049
- package/esm/models/userevent.js.map +1 -1
- package/esm/sdk/aliases.d.ts +1 -1
- package/esm/sdk/aliases.d.ts.map +1 -1
- package/esm/sdk/connect.d.ts +41 -0
- package/esm/sdk/connect.d.ts.map +1 -1
- package/esm/sdk/connect.js +50 -0
- package/esm/sdk/connect.js.map +1 -1
- package/esm/sdk/domains.d.ts +0 -16
- package/esm/sdk/domains.d.ts.map +1 -1
- package/esm/sdk/domains.js +0 -20
- package/esm/sdk/domains.js.map +1 -1
- package/esm/sdk/edgecache.d.ts +2 -2
- package/esm/sdk/edgecache.js +2 -2
- package/esm/sdk/sdk.d.ts +4 -4
- package/esm/sdk/sdk.d.ts.map +1 -1
- package/esm/sdk/sdk.js +6 -6
- package/esm/sdk/sdk.js.map +1 -1
- 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__/aliases.test.ts +20 -1
- package/src/__tests__/checks.test.ts +1 -1
- package/src/__tests__/connect.test.ts +116 -0
- package/src/__tests__/deployments.test.ts +4 -4
- package/src/__tests__/dns.test.ts +3 -3
- package/src/__tests__/domains.test.ts +11 -41
- package/src/__tests__/drains.test.ts +6 -6
- package/src/__tests__/edgeconfig.test.ts +9 -9
- package/src/__tests__/integrations.test.ts +8 -1
- package/src/__tests__/logdrains.test.ts +5 -3
- package/src/__tests__/marketplace.test.ts +3 -2
- package/src/__tests__/projects.test.ts +11 -28
- package/src/__tests__/security.test.ts +33 -9
- package/src/funcs/aliasesGetAlias.ts +4 -5
- package/src/funcs/connectCreateNetwork.ts +170 -0
- package/src/funcs/connectDeleteNetwork.ts +176 -0
- package/src/funcs/{domainsCheckDomainStatus.ts → connectListNetworks.ts} +25 -22
- package/src/funcs/{domainsCheckDomainPrice.ts → connectReadNetwork.ts} +28 -24
- package/src/funcs/connectUpdateNetwork.ts +177 -0
- package/src/funcs/connectUpdateStaticIps.ts +2 -2
- package/src/funcs/edgeCacheDangerouslyDeleteBySrcImages.ts +1 -1
- package/src/funcs/edgeCacheDangerouslyDeleteByTags.ts +1 -1
- package/src/funcs/marketplaceExchangeSsoToken.ts +2 -2
- package/src/lib/config.ts +3 -3
- package/src/lib/sdks.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +18 -12
- package/src/mcp-server/tools/connectCreateNetwork.ts +37 -0
- package/src/mcp-server/tools/connectDeleteNetwork.ts +35 -0
- package/src/mcp-server/tools/connectListNetworks.ts +37 -0
- package/src/mcp-server/tools/connectReadNetwork.ts +37 -0
- package/src/mcp-server/tools/connectUpdateNetwork.ts +37 -0
- package/src/mcp-server/tools/edgeCacheDangerouslyDeleteBySrcImages.ts +1 -1
- package/src/mcp-server/tools/edgeCacheDangerouslyDeleteByTags.ts +1 -1
- package/src/models/addbypassipop.ts +1 -1
- package/src/models/canceldeploymentop.ts +152 -145
- package/src/models/createdeploymentop.ts +7 -0
- package/src/models/createdrainop.ts +137 -137
- package/src/models/createedgeconfigop.ts +64 -64
- package/src/models/createintegrationstoredirectop.ts +3104 -763
- package/src/models/createlogdrainop.ts +1 -1
- package/src/models/createnetworkop.ts +141 -0
- package/src/models/createortransferdomainop.ts +4 -4
- package/src/models/deletenetworkop.ts +69 -0
- package/src/models/editprojectenvop.ts +484 -640
- package/src/models/exchangessotokenop.ts +281 -43
- package/src/models/getaliasop.ts +15 -12
- package/src/models/getalllogdrainsop.ts +363 -363
- package/src/models/getbypassipop.ts +1 -1
- package/src/models/getconfigurationop.ts +102 -102
- package/src/models/getconfigurationproductsop.ts +1486 -1128
- package/src/models/getconfigurationsop.ts +4 -4
- package/src/models/getdeploymentop.ts +14 -0
- package/src/models/getdomainop.ts +7 -7
- package/src/models/getdomainsop.ts +13 -13
- package/src/models/getdrainop.ts +145 -145
- package/src/models/getdrainsop.ts +132 -132
- package/src/models/getedgeconfigbackupop.ts +24 -24
- package/src/models/getedgeconfigop.ts +62 -62
- package/src/models/getfirewallconfigop.ts +2 -2
- package/src/models/getintegrationlogdrainsop.ts +1 -1
- package/src/models/getintegrationresourceop.ts +5 -5
- package/src/models/getintegrationresourcesop.ts +5 -5
- package/src/models/getinvoiceop.ts +3 -3
- package/src/models/getprojectenvop.ts +183 -1558
- package/src/models/getredirectsop.ts +4 -4
- package/src/models/getteamaccessrequestop.ts +1 -1
- package/src/models/listnetworksop.ts +90 -0
- package/src/models/network.ts +308 -0
- package/src/models/putfirewallconfigop.ts +2 -2
- package/src/models/readnetworkop.ts +69 -0
- package/src/models/removeprojectenvop.ts +186 -198
- package/src/models/requestaccesstoteamop.ts +5 -5
- package/src/models/teamlimited.ts +1 -1
- package/src/models/updateaccessgroupop.ts +24 -17
- package/src/models/updateattackchallengemodeop.ts +124 -17
- package/src/models/updatecheckop.ts +24 -20
- package/src/models/updatedrainop.ts +147 -147
- package/src/models/updateedgeconfigop.ts +64 -64
- package/src/models/updatenetworkop.ts +130 -0
- package/src/models/updateprojectdatacacheop.ts +482 -355
- package/src/models/updaterecordop.ts +33 -33
- package/src/models/userevent.ts +2496 -2372
- package/src/sdk/aliases.ts +1 -1
- package/src/sdk/connect.ts +96 -0
- package/src/sdk/domains.ts +0 -44
- package/src/sdk/edgecache.ts +2 -2
- package/src/sdk/sdk.ts +10 -10
- package/vercel-spec.json +3577 -2954
- package/esm/funcs/domainsCheckDomainPrice.d.ts +0 -17
- package/esm/funcs/domainsCheckDomainPrice.d.ts.map +0 -1
- package/esm/funcs/domainsCheckDomainPrice.js.map +0 -1
- package/esm/funcs/domainsCheckDomainStatus.d.ts +0 -17
- package/esm/funcs/domainsCheckDomainStatus.d.ts.map +0 -1
- package/esm/funcs/domainsCheckDomainStatus.js.map +0 -1
- package/esm/mcp-server/tools/domainsCheckDomainPrice.d.ts +0 -7
- package/esm/mcp-server/tools/domainsCheckDomainPrice.d.ts.map +0 -1
- package/esm/mcp-server/tools/domainsCheckDomainPrice.js +0 -28
- package/esm/mcp-server/tools/domainsCheckDomainPrice.js.map +0 -1
- package/esm/mcp-server/tools/domainsCheckDomainStatus.d.ts +0 -7
- package/esm/mcp-server/tools/domainsCheckDomainStatus.d.ts.map +0 -1
- package/esm/mcp-server/tools/domainsCheckDomainStatus.js +0 -28
- package/esm/mcp-server/tools/domainsCheckDomainStatus.js.map +0 -1
- package/esm/models/checkdomainpriceop.d.ts +0 -77
- package/esm/models/checkdomainpriceop.d.ts.map +0 -1
- package/esm/models/checkdomainpriceop.js +0 -56
- package/esm/models/checkdomainpriceop.js.map +0 -1
- package/esm/models/checkdomainstatusop.d.ts +0 -46
- package/esm/models/checkdomainstatusop.d.ts.map +0 -1
- package/esm/models/checkdomainstatusop.js +0 -39
- package/esm/models/checkdomainstatusop.js.map +0 -1
- package/src/mcp-server/tools/domainsCheckDomainPrice.ts +0 -37
- package/src/mcp-server/tools/domainsCheckDomainStatus.ts +0 -37
- package/src/models/checkdomainpriceop.ts +0 -158
- package/src/models/checkdomainstatusop.ts +0 -117
|
@@ -232,37 +232,195 @@ export declare const CreateIntegrationStoreDirectIntegrationsType: {
|
|
|
232
232
|
readonly Object: "object";
|
|
233
233
|
};
|
|
234
234
|
export type CreateIntegrationStoreDirectIntegrationsType = ClosedEnum<typeof CreateIntegrationStoreDirectIntegrationsType>;
|
|
235
|
-
export declare const
|
|
235
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type: {
|
|
236
|
+
readonly String: "string";
|
|
237
|
+
};
|
|
238
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type>;
|
|
239
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl: {
|
|
240
|
+
readonly GitNamespace: "git-namespace";
|
|
241
|
+
};
|
|
242
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl>;
|
|
243
|
+
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3: {
|
|
236
244
|
readonly Update: "update";
|
|
237
245
|
readonly Create: "create";
|
|
238
246
|
};
|
|
239
|
-
export type
|
|
240
|
-
export type
|
|
247
|
+
export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3 = ClosedEnum<typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3>;
|
|
248
|
+
export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2 = {
|
|
241
249
|
expr: string;
|
|
242
250
|
};
|
|
243
|
-
export type
|
|
244
|
-
export declare const
|
|
251
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly = CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2 | boolean | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3;
|
|
252
|
+
export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3: {
|
|
245
253
|
readonly Update: "update";
|
|
246
254
|
readonly Create: "create";
|
|
247
255
|
};
|
|
248
|
-
export type
|
|
249
|
-
export type
|
|
256
|
+
export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3 = ClosedEnum<typeof CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3>;
|
|
257
|
+
export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2 = {
|
|
258
|
+
expr: string;
|
|
259
|
+
};
|
|
260
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden = CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2 | boolean | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3;
|
|
261
|
+
export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3: {
|
|
262
|
+
readonly Update: "update";
|
|
263
|
+
readonly Create: "create";
|
|
264
|
+
};
|
|
265
|
+
export type CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3 = ClosedEnum<typeof CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3>;
|
|
266
|
+
export type CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2 = {
|
|
267
|
+
expr: string;
|
|
268
|
+
};
|
|
269
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled = CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2 | boolean | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3;
|
|
270
|
+
export type CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2 = {
|
|
271
|
+
expr: string;
|
|
272
|
+
};
|
|
273
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription = CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2 | string;
|
|
274
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue = {
|
|
275
|
+
expr: string;
|
|
276
|
+
};
|
|
277
|
+
export declare const PropertiesGitProviders: {
|
|
278
|
+
readonly Github: "github";
|
|
279
|
+
readonly Gitlab: "gitlab";
|
|
280
|
+
readonly Bitbucket: "bitbucket";
|
|
281
|
+
};
|
|
282
|
+
export type PropertiesGitProviders = ClosedEnum<typeof PropertiesGitProviders>;
|
|
283
|
+
export type CreateIntegrationStoreDirectProperties10 = {
|
|
284
|
+
type: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type;
|
|
285
|
+
uiControl: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl;
|
|
286
|
+
description?: string | undefined;
|
|
287
|
+
uiLabel?: string | undefined;
|
|
288
|
+
uiReadOnly?: CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2 | boolean | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3 | undefined;
|
|
289
|
+
uiHidden?: CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2 | boolean | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3 | undefined;
|
|
290
|
+
uiDisabled?: CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2 | boolean | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3 | undefined;
|
|
291
|
+
uiDescription?: CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2 | string | undefined;
|
|
292
|
+
uiFormattedValue?: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue | undefined;
|
|
293
|
+
uiPlaceholder?: string | undefined;
|
|
294
|
+
gitProviders?: Array<PropertiesGitProviders> | undefined;
|
|
295
|
+
};
|
|
296
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType: {
|
|
297
|
+
readonly String: "string";
|
|
298
|
+
};
|
|
299
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType>;
|
|
300
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl: {
|
|
301
|
+
readonly Domain: "domain";
|
|
302
|
+
};
|
|
303
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl>;
|
|
304
|
+
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3: {
|
|
305
|
+
readonly Update: "update";
|
|
306
|
+
readonly Create: "create";
|
|
307
|
+
};
|
|
308
|
+
export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3 = ClosedEnum<typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3>;
|
|
309
|
+
export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2 = {
|
|
310
|
+
expr: string;
|
|
311
|
+
};
|
|
312
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly = CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2 | boolean | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3;
|
|
313
|
+
export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3: {
|
|
314
|
+
readonly Update: "update";
|
|
315
|
+
readonly Create: "create";
|
|
316
|
+
};
|
|
317
|
+
export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3 = ClosedEnum<typeof CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3>;
|
|
318
|
+
export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2 = {
|
|
319
|
+
expr: string;
|
|
320
|
+
};
|
|
321
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden = CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2 | boolean | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3;
|
|
322
|
+
export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3: {
|
|
323
|
+
readonly Update: "update";
|
|
324
|
+
readonly Create: "create";
|
|
325
|
+
};
|
|
326
|
+
export type CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3 = ClosedEnum<typeof CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3>;
|
|
327
|
+
export type CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2 = {
|
|
328
|
+
expr: string;
|
|
329
|
+
};
|
|
330
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled = CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2 | boolean | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3;
|
|
331
|
+
export type CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2 = {
|
|
332
|
+
expr: string;
|
|
333
|
+
};
|
|
334
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription = CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2 | string;
|
|
335
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue = {
|
|
250
336
|
expr: string;
|
|
251
337
|
};
|
|
252
|
-
export type CreateIntegrationStoreDirectPropertiesHidden = CreateIntegrationStoreDirectHidden2 | boolean | CreateIntegrationStoreDirectHidden3;
|
|
253
338
|
export type CreateIntegrationStoreDirectProperties9 = {
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
339
|
+
type: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType;
|
|
340
|
+
uiControl: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl;
|
|
341
|
+
enum?: Array<string> | undefined;
|
|
342
|
+
maxLength?: number | undefined;
|
|
343
|
+
minLength?: number | undefined;
|
|
344
|
+
pattern?: string | undefined;
|
|
345
|
+
description?: string | undefined;
|
|
346
|
+
default?: string | undefined;
|
|
347
|
+
uiLabel?: string | undefined;
|
|
348
|
+
uiReadOnly?: CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2 | boolean | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3 | undefined;
|
|
349
|
+
uiHidden?: CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2 | boolean | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3 | undefined;
|
|
350
|
+
uiDisabled?: CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2 | boolean | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3 | undefined;
|
|
351
|
+
uiDescription?: CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2 | string | undefined;
|
|
352
|
+
uiFormattedValue?: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue | undefined;
|
|
353
|
+
uiPlaceholder?: string | undefined;
|
|
257
354
|
};
|
|
258
355
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType: {
|
|
259
|
-
readonly
|
|
356
|
+
readonly Array: "array";
|
|
260
357
|
};
|
|
261
358
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType>;
|
|
359
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type: {
|
|
360
|
+
readonly String: "string";
|
|
361
|
+
};
|
|
362
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type>;
|
|
363
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems = {
|
|
364
|
+
type: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type;
|
|
365
|
+
description?: string | undefined;
|
|
366
|
+
minLength?: number | undefined;
|
|
367
|
+
maxLength?: number | undefined;
|
|
368
|
+
pattern?: string | undefined;
|
|
369
|
+
default?: string | undefined;
|
|
370
|
+
enum?: Array<string> | undefined;
|
|
371
|
+
};
|
|
262
372
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl: {
|
|
263
|
-
readonly
|
|
373
|
+
readonly MultiVercelRegion: "multi-vercel-region";
|
|
264
374
|
};
|
|
265
375
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl>;
|
|
376
|
+
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3: {
|
|
377
|
+
readonly Update: "update";
|
|
378
|
+
readonly Create: "create";
|
|
379
|
+
};
|
|
380
|
+
export type CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3 = ClosedEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3>;
|
|
381
|
+
export type CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2 = {
|
|
382
|
+
expr: string;
|
|
383
|
+
};
|
|
384
|
+
export type CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled = CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3;
|
|
385
|
+
export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3: {
|
|
386
|
+
readonly Update: "update";
|
|
387
|
+
readonly Create: "create";
|
|
388
|
+
};
|
|
389
|
+
export type CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3 = ClosedEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3>;
|
|
390
|
+
export type CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2 = {
|
|
391
|
+
expr: string;
|
|
392
|
+
};
|
|
393
|
+
export type CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden = CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3;
|
|
394
|
+
export type CreateIntegrationStoreDirectUiOptionsIntegrations3 = {
|
|
395
|
+
value: string;
|
|
396
|
+
disabled?: CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3 | undefined;
|
|
397
|
+
hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3 | undefined;
|
|
398
|
+
};
|
|
399
|
+
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3: {
|
|
400
|
+
readonly Update: "update";
|
|
401
|
+
readonly Create: "create";
|
|
402
|
+
};
|
|
403
|
+
export type CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3 = ClosedEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3>;
|
|
404
|
+
export type CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2 = {
|
|
405
|
+
expr: string;
|
|
406
|
+
};
|
|
407
|
+
export type CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled = CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3;
|
|
408
|
+
export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3: {
|
|
409
|
+
readonly Update: "update";
|
|
410
|
+
readonly Create: "create";
|
|
411
|
+
};
|
|
412
|
+
export type CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3 = ClosedEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3>;
|
|
413
|
+
export type CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2 = {
|
|
414
|
+
expr: string;
|
|
415
|
+
};
|
|
416
|
+
export type CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden = CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3;
|
|
417
|
+
export type CreateIntegrationStoreDirectUiOptionsIntegrations1 = {
|
|
418
|
+
value: string;
|
|
419
|
+
label: string;
|
|
420
|
+
disabled?: CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3 | undefined;
|
|
421
|
+
hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3 | undefined;
|
|
422
|
+
};
|
|
423
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions = CreateIntegrationStoreDirectUiOptionsIntegrations1 | CreateIntegrationStoreDirectUiOptionsIntegrations3 | string;
|
|
266
424
|
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3: {
|
|
267
425
|
readonly Update: "update";
|
|
268
426
|
readonly Create: "create";
|
|
@@ -299,13 +457,12 @@ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applica
|
|
|
299
457
|
};
|
|
300
458
|
export type CreateIntegrationStoreDirectProperties8 = {
|
|
301
459
|
type: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType;
|
|
460
|
+
items: CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems;
|
|
302
461
|
uiControl: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl;
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
pattern?: string | undefined;
|
|
462
|
+
uiOptions: Array<CreateIntegrationStoreDirectUiOptionsIntegrations1 | CreateIntegrationStoreDirectUiOptionsIntegrations3 | string>;
|
|
463
|
+
maxItems?: number | undefined;
|
|
464
|
+
minItems?: number | undefined;
|
|
307
465
|
description?: string | undefined;
|
|
308
|
-
default?: string | undefined;
|
|
309
466
|
uiLabel?: string | undefined;
|
|
310
467
|
uiReadOnly?: CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2 | boolean | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3 | undefined;
|
|
311
468
|
uiHidden?: CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2 | boolean | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3 | undefined;
|
|
@@ -313,6 +470,8 @@ export type CreateIntegrationStoreDirectProperties8 = {
|
|
|
313
470
|
uiDescription?: CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2 | string | undefined;
|
|
314
471
|
uiFormattedValue?: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiFormattedValue | undefined;
|
|
315
472
|
uiPlaceholder?: string | undefined;
|
|
473
|
+
default?: Array<string> | undefined;
|
|
474
|
+
example?: Array<string> | undefined;
|
|
316
475
|
};
|
|
317
476
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreType: {
|
|
318
477
|
readonly String: "string";
|
|
@@ -345,29 +504,29 @@ export type CreateIntegrationStoreDirectUiOptions3 = {
|
|
|
345
504
|
disabled?: CreateIntegrationStoreDirectDisabledIntegrationsResponse2002 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse2003 | undefined;
|
|
346
505
|
hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse2002 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse2003 | undefined;
|
|
347
506
|
};
|
|
348
|
-
export declare const
|
|
507
|
+
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse3: {
|
|
349
508
|
readonly Update: "update";
|
|
350
509
|
readonly Create: "create";
|
|
351
510
|
};
|
|
352
|
-
export type
|
|
353
|
-
export type
|
|
511
|
+
export type CreateIntegrationStoreDirectDisabledIntegrationsResponse3 = ClosedEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse3>;
|
|
512
|
+
export type CreateIntegrationStoreDirectDisabledIntegrationsResponse2 = {
|
|
354
513
|
expr: string;
|
|
355
514
|
};
|
|
356
|
-
export type CreateIntegrationStoreDirectUiOptionsDisabled =
|
|
357
|
-
export declare const
|
|
515
|
+
export type CreateIntegrationStoreDirectUiOptionsDisabled = CreateIntegrationStoreDirectDisabledIntegrationsResponse2 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse3;
|
|
516
|
+
export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse3: {
|
|
358
517
|
readonly Update: "update";
|
|
359
518
|
readonly Create: "create";
|
|
360
519
|
};
|
|
361
|
-
export type
|
|
362
|
-
export type
|
|
520
|
+
export type CreateIntegrationStoreDirectHiddenIntegrationsResponse3 = ClosedEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse3>;
|
|
521
|
+
export type CreateIntegrationStoreDirectHiddenIntegrationsResponse2 = {
|
|
363
522
|
expr: string;
|
|
364
523
|
};
|
|
365
|
-
export type CreateIntegrationStoreDirectUiOptionsHidden =
|
|
524
|
+
export type CreateIntegrationStoreDirectUiOptionsHidden = CreateIntegrationStoreDirectHiddenIntegrationsResponse2 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse3;
|
|
366
525
|
export type CreateIntegrationStoreDirectUiOptions1 = {
|
|
367
526
|
value: string;
|
|
368
527
|
label: string;
|
|
369
|
-
disabled?:
|
|
370
|
-
hidden?:
|
|
528
|
+
disabled?: CreateIntegrationStoreDirectDisabledIntegrationsResponse2 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse3 | undefined;
|
|
529
|
+
hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse2 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse3 | undefined;
|
|
371
530
|
};
|
|
372
531
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiOptions = CreateIntegrationStoreDirectUiOptions1 | CreateIntegrationStoreDirectUiOptions3 | string;
|
|
373
532
|
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStore3: {
|
|
@@ -527,29 +686,29 @@ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse2
|
|
|
527
686
|
readonly Select: "select";
|
|
528
687
|
};
|
|
529
688
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiControl = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiControl>;
|
|
530
|
-
export declare const
|
|
689
|
+
export declare const CreateIntegrationStoreDirectDisabled3: {
|
|
531
690
|
readonly Update: "update";
|
|
532
691
|
readonly Create: "create";
|
|
533
692
|
};
|
|
534
|
-
export type
|
|
535
|
-
export type
|
|
693
|
+
export type CreateIntegrationStoreDirectDisabled3 = ClosedEnum<typeof CreateIntegrationStoreDirectDisabled3>;
|
|
694
|
+
export type CreateIntegrationStoreDirectDisabled2 = {
|
|
536
695
|
expr: string;
|
|
537
696
|
};
|
|
538
|
-
export type
|
|
539
|
-
export declare const
|
|
697
|
+
export type CreateIntegrationStoreDirectPropertiesDisabled = CreateIntegrationStoreDirectDisabled2 | boolean | CreateIntegrationStoreDirectDisabled3;
|
|
698
|
+
export declare const CreateIntegrationStoreDirectHidden3: {
|
|
540
699
|
readonly Update: "update";
|
|
541
700
|
readonly Create: "create";
|
|
542
701
|
};
|
|
543
|
-
export type
|
|
544
|
-
export type
|
|
702
|
+
export type CreateIntegrationStoreDirectHidden3 = ClosedEnum<typeof CreateIntegrationStoreDirectHidden3>;
|
|
703
|
+
export type CreateIntegrationStoreDirectHidden2 = {
|
|
545
704
|
expr: string;
|
|
546
705
|
};
|
|
547
|
-
export type
|
|
706
|
+
export type CreateIntegrationStoreDirectPropertiesHidden = CreateIntegrationStoreDirectHidden2 | boolean | CreateIntegrationStoreDirectHidden3;
|
|
548
707
|
export type CreateIntegrationStoreDirectPropertiesUiOptions = {
|
|
549
708
|
value: string;
|
|
550
709
|
label: string;
|
|
551
|
-
disabled?:
|
|
552
|
-
hidden?:
|
|
710
|
+
disabled?: CreateIntegrationStoreDirectDisabled2 | boolean | CreateIntegrationStoreDirectDisabled3 | undefined;
|
|
711
|
+
hidden?: CreateIntegrationStoreDirectHidden2 | boolean | CreateIntegrationStoreDirectHidden3 | undefined;
|
|
553
712
|
};
|
|
554
713
|
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJson3: {
|
|
555
714
|
readonly Update: "update";
|
|
@@ -607,12 +766,12 @@ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse2
|
|
|
607
766
|
readonly Array: "array";
|
|
608
767
|
};
|
|
609
768
|
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Type = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Type>;
|
|
610
|
-
export declare const
|
|
769
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type: {
|
|
611
770
|
readonly Number: "number";
|
|
612
771
|
};
|
|
613
|
-
export type
|
|
772
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type>;
|
|
614
773
|
export type CreateIntegrationStoreDirectPropertiesItems = {
|
|
615
|
-
type:
|
|
774
|
+
type: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type;
|
|
616
775
|
description?: string | undefined;
|
|
617
776
|
minimum?: number | undefined;
|
|
618
777
|
exclusiveMinimum?: number | undefined;
|
|
@@ -846,11 +1005,11 @@ export type CreateIntegrationStoreDirectProperties1 = {
|
|
|
846
1005
|
uiFormattedValue?: CreateIntegrationStoreDirectPropertiesUiFormattedValue | undefined;
|
|
847
1006
|
uiPlaceholder?: string | undefined;
|
|
848
1007
|
};
|
|
849
|
-
export type CreateIntegrationStoreDirectProperties = CreateIntegrationStoreDirectProperties4 | CreateIntegrationStoreDirectProperties6 | CreateIntegrationStoreDirectProperties5 | CreateIntegrationStoreDirectProperties7 | CreateIntegrationStoreDirectProperties1 | CreateIntegrationStoreDirectProperties2 | CreateIntegrationStoreDirectProperties3 |
|
|
1008
|
+
export type CreateIntegrationStoreDirectProperties = CreateIntegrationStoreDirectProperties4 | CreateIntegrationStoreDirectProperties6 | CreateIntegrationStoreDirectProperties8 | CreateIntegrationStoreDirectProperties5 | CreateIntegrationStoreDirectProperties7 | CreateIntegrationStoreDirectProperties1 | CreateIntegrationStoreDirectProperties2 | CreateIntegrationStoreDirectProperties3 | CreateIntegrationStoreDirectProperties9 | CreateIntegrationStoreDirectProperties10;
|
|
850
1009
|
export type CreateIntegrationStoreDirectMetadataSchema = {
|
|
851
1010
|
type: CreateIntegrationStoreDirectIntegrationsType;
|
|
852
1011
|
properties: {
|
|
853
|
-
[k: string]: CreateIntegrationStoreDirectProperties4 | CreateIntegrationStoreDirectProperties6 | CreateIntegrationStoreDirectProperties5 | CreateIntegrationStoreDirectProperties7 | CreateIntegrationStoreDirectProperties1 | CreateIntegrationStoreDirectProperties2 | CreateIntegrationStoreDirectProperties3 |
|
|
1012
|
+
[k: string]: CreateIntegrationStoreDirectProperties4 | CreateIntegrationStoreDirectProperties6 | CreateIntegrationStoreDirectProperties8 | CreateIntegrationStoreDirectProperties5 | CreateIntegrationStoreDirectProperties7 | CreateIntegrationStoreDirectProperties1 | CreateIntegrationStoreDirectProperties2 | CreateIntegrationStoreDirectProperties3 | CreateIntegrationStoreDirectProperties9 | CreateIntegrationStoreDirectProperties10;
|
|
854
1013
|
};
|
|
855
1014
|
required?: Array<string> | undefined;
|
|
856
1015
|
};
|
|
@@ -876,7 +1035,10 @@ export declare const CreateIntegrationStoreDirectTags: {
|
|
|
876
1035
|
readonly Messaging: "messaging";
|
|
877
1036
|
readonly Other: "other";
|
|
878
1037
|
readonly Mysql: "mysql";
|
|
1038
|
+
readonly Kv: "kv";
|
|
879
1039
|
readonly Vector: "vector";
|
|
1040
|
+
readonly Libsql: "libsql";
|
|
1041
|
+
readonly Sqlite: "sqlite";
|
|
880
1042
|
readonly TagAgents: "tag_agents";
|
|
881
1043
|
readonly TagAi: "tag_ai";
|
|
882
1044
|
readonly TagAnalytics: "tag_analytics";
|
|
@@ -951,24 +1113,49 @@ export type Guides = {
|
|
|
951
1113
|
title: string;
|
|
952
1114
|
steps: Array<Steps>;
|
|
953
1115
|
};
|
|
954
|
-
export
|
|
955
|
-
|
|
956
|
-
|
|
1116
|
+
export type CreateIntegrationStoreDirectIntegration = {
|
|
1117
|
+
id: string;
|
|
1118
|
+
name: string;
|
|
1119
|
+
slug: string;
|
|
1120
|
+
supportsInstallationBillingPlans?: boolean | undefined;
|
|
1121
|
+
icon: string;
|
|
1122
|
+
flags?: Array<string> | undefined;
|
|
957
1123
|
};
|
|
958
|
-
export
|
|
959
|
-
|
|
960
|
-
|
|
1124
|
+
export declare const SupportedProtocols: {
|
|
1125
|
+
readonly Experimentation: "experimentation";
|
|
1126
|
+
readonly Checks: "checks";
|
|
1127
|
+
readonly Storage: "storage";
|
|
1128
|
+
readonly Ai: "ai";
|
|
1129
|
+
readonly Observability: "observability";
|
|
1130
|
+
readonly Video: "video";
|
|
1131
|
+
readonly Authentication: "authentication";
|
|
1132
|
+
readonly Workflow: "workflow";
|
|
1133
|
+
readonly LogDrain: "logDrain";
|
|
1134
|
+
readonly TraceDrain: "traceDrain";
|
|
1135
|
+
readonly Messaging: "messaging";
|
|
1136
|
+
readonly Other: "other";
|
|
961
1137
|
};
|
|
962
|
-
export type
|
|
963
|
-
export declare const
|
|
964
|
-
readonly
|
|
965
|
-
readonly
|
|
1138
|
+
export type SupportedProtocols = ClosedEnum<typeof SupportedProtocols>;
|
|
1139
|
+
export declare const CreateIntegrationStoreDirectPrimaryProtocol: {
|
|
1140
|
+
readonly Experimentation: "experimentation";
|
|
1141
|
+
readonly Checks: "checks";
|
|
1142
|
+
readonly Storage: "storage";
|
|
1143
|
+
readonly Ai: "ai";
|
|
1144
|
+
readonly Observability: "observability";
|
|
1145
|
+
readonly Video: "video";
|
|
1146
|
+
readonly Authentication: "authentication";
|
|
1147
|
+
readonly Workflow: "workflow";
|
|
1148
|
+
readonly LogDrain: "logDrain";
|
|
1149
|
+
readonly TraceDrain: "traceDrain";
|
|
1150
|
+
readonly Messaging: "messaging";
|
|
1151
|
+
readonly Other: "other";
|
|
966
1152
|
};
|
|
967
|
-
export type
|
|
968
|
-
export
|
|
969
|
-
|
|
1153
|
+
export type CreateIntegrationStoreDirectPrimaryProtocol = ClosedEnum<typeof CreateIntegrationStoreDirectPrimaryProtocol>;
|
|
1154
|
+
export declare const LogDrainStatus: {
|
|
1155
|
+
readonly Disabled: "disabled";
|
|
1156
|
+
readonly Enabled: "enabled";
|
|
970
1157
|
};
|
|
971
|
-
export type
|
|
1158
|
+
export type LogDrainStatus = ClosedEnum<typeof LogDrainStatus>;
|
|
972
1159
|
export type Product = {
|
|
973
1160
|
id?: string | undefined;
|
|
974
1161
|
name?: string | undefined;
|
|
@@ -984,9 +1171,11 @@ export type Product = {
|
|
|
984
1171
|
disableResourceRenaming?: boolean | undefined;
|
|
985
1172
|
repl?: Repl | undefined;
|
|
986
1173
|
guides?: Array<Guides> | undefined;
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
1174
|
+
integration: CreateIntegrationStoreDirectIntegration;
|
|
1175
|
+
integrationConfigurationId: string;
|
|
1176
|
+
supportedProtocols: Array<SupportedProtocols>;
|
|
1177
|
+
primaryProtocol?: CreateIntegrationStoreDirectPrimaryProtocol | undefined;
|
|
1178
|
+
logDrainStatus?: LogDrainStatus | undefined;
|
|
990
1179
|
};
|
|
991
1180
|
export type CreateIntegrationStoreDirectExperimentation = {
|
|
992
1181
|
edgeConfigSyncingEnabled?: boolean | undefined;
|
|
@@ -1322,56 +1511,252 @@ export declare const CreateIntegrationStoreDirectIntegrationsType$inboundSchema:
|
|
|
1322
1511
|
/** @internal */
|
|
1323
1512
|
export declare const CreateIntegrationStoreDirectIntegrationsType$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectIntegrationsType>;
|
|
1324
1513
|
/** @internal */
|
|
1325
|
-
export declare const
|
|
1514
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type>;
|
|
1326
1515
|
/** @internal */
|
|
1327
|
-
export declare const
|
|
1516
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type>;
|
|
1328
1517
|
/** @internal */
|
|
1329
|
-
export declare const
|
|
1518
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl>;
|
|
1330
1519
|
/** @internal */
|
|
1331
|
-
export
|
|
1520
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl>;
|
|
1521
|
+
/** @internal */
|
|
1522
|
+
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3>;
|
|
1523
|
+
/** @internal */
|
|
1524
|
+
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3>;
|
|
1525
|
+
/** @internal */
|
|
1526
|
+
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2, z.ZodTypeDef, unknown>;
|
|
1527
|
+
/** @internal */
|
|
1528
|
+
export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound = {
|
|
1332
1529
|
expr: string;
|
|
1333
1530
|
};
|
|
1334
1531
|
/** @internal */
|
|
1335
|
-
export declare const
|
|
1336
|
-
export declare function
|
|
1337
|
-
export declare function
|
|
1532
|
+
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2>;
|
|
1533
|
+
export declare function createIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2ToJSON(createIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2: CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2): string;
|
|
1534
|
+
export declare function createIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2, SDKValidationError>;
|
|
1338
1535
|
/** @internal */
|
|
1339
|
-
export declare const
|
|
1536
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly, z.ZodTypeDef, unknown>;
|
|
1340
1537
|
/** @internal */
|
|
1341
|
-
export type
|
|
1538
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly$Outbound = CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound | boolean | string;
|
|
1342
1539
|
/** @internal */
|
|
1343
|
-
export declare const
|
|
1344
|
-
export declare function
|
|
1345
|
-
export declare function
|
|
1540
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly>;
|
|
1541
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnlyToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly): string;
|
|
1542
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnlyFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly, SDKValidationError>;
|
|
1346
1543
|
/** @internal */
|
|
1347
|
-
export declare const
|
|
1544
|
+
export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3>;
|
|
1348
1545
|
/** @internal */
|
|
1349
|
-
export declare const
|
|
1546
|
+
export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3>;
|
|
1350
1547
|
/** @internal */
|
|
1351
|
-
export declare const
|
|
1548
|
+
export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2, z.ZodTypeDef, unknown>;
|
|
1352
1549
|
/** @internal */
|
|
1353
|
-
export type
|
|
1550
|
+
export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound = {
|
|
1354
1551
|
expr: string;
|
|
1355
1552
|
};
|
|
1356
1553
|
/** @internal */
|
|
1357
|
-
export declare const
|
|
1358
|
-
export declare function
|
|
1359
|
-
export declare function
|
|
1554
|
+
export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2>;
|
|
1555
|
+
export declare function createIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2ToJSON(createIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2: CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2): string;
|
|
1556
|
+
export declare function createIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2, SDKValidationError>;
|
|
1360
1557
|
/** @internal */
|
|
1361
|
-
export declare const
|
|
1558
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden, z.ZodTypeDef, unknown>;
|
|
1362
1559
|
/** @internal */
|
|
1363
|
-
export type
|
|
1560
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden$Outbound = CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound | boolean | string;
|
|
1364
1561
|
/** @internal */
|
|
1365
|
-
export declare const
|
|
1366
|
-
export declare function
|
|
1367
|
-
export declare function
|
|
1562
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden>;
|
|
1563
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHiddenToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden): string;
|
|
1564
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHiddenFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden, SDKValidationError>;
|
|
1565
|
+
/** @internal */
|
|
1566
|
+
export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3>;
|
|
1567
|
+
/** @internal */
|
|
1568
|
+
export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3>;
|
|
1569
|
+
/** @internal */
|
|
1570
|
+
export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2, z.ZodTypeDef, unknown>;
|
|
1571
|
+
/** @internal */
|
|
1572
|
+
export type CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound = {
|
|
1573
|
+
expr: string;
|
|
1574
|
+
};
|
|
1575
|
+
/** @internal */
|
|
1576
|
+
export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2>;
|
|
1577
|
+
export declare function createIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2ToJSON(createIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2: CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2): string;
|
|
1578
|
+
export declare function createIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2, SDKValidationError>;
|
|
1579
|
+
/** @internal */
|
|
1580
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled, z.ZodTypeDef, unknown>;
|
|
1581
|
+
/** @internal */
|
|
1582
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled$Outbound = CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound | boolean | string;
|
|
1583
|
+
/** @internal */
|
|
1584
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled>;
|
|
1585
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabledToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled): string;
|
|
1586
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabledFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled, SDKValidationError>;
|
|
1587
|
+
/** @internal */
|
|
1588
|
+
export declare const CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2, z.ZodTypeDef, unknown>;
|
|
1589
|
+
/** @internal */
|
|
1590
|
+
export type CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound = {
|
|
1591
|
+
expr: string;
|
|
1592
|
+
};
|
|
1593
|
+
/** @internal */
|
|
1594
|
+
export declare const CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2>;
|
|
1595
|
+
export declare function createIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2ToJSON(createIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2: CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2): string;
|
|
1596
|
+
export declare function createIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2, SDKValidationError>;
|
|
1597
|
+
/** @internal */
|
|
1598
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription, z.ZodTypeDef, unknown>;
|
|
1599
|
+
/** @internal */
|
|
1600
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription$Outbound = CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound | string;
|
|
1601
|
+
/** @internal */
|
|
1602
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription>;
|
|
1603
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescriptionToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription): string;
|
|
1604
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescriptionFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription, SDKValidationError>;
|
|
1605
|
+
/** @internal */
|
|
1606
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue, z.ZodTypeDef, unknown>;
|
|
1607
|
+
/** @internal */
|
|
1608
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue$Outbound = {
|
|
1609
|
+
expr: string;
|
|
1610
|
+
};
|
|
1611
|
+
/** @internal */
|
|
1612
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue>;
|
|
1613
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValueToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue): string;
|
|
1614
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValueFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue, SDKValidationError>;
|
|
1615
|
+
/** @internal */
|
|
1616
|
+
export declare const PropertiesGitProviders$inboundSchema: z.ZodNativeEnum<typeof PropertiesGitProviders>;
|
|
1617
|
+
/** @internal */
|
|
1618
|
+
export declare const PropertiesGitProviders$outboundSchema: z.ZodNativeEnum<typeof PropertiesGitProviders>;
|
|
1619
|
+
/** @internal */
|
|
1620
|
+
export declare const CreateIntegrationStoreDirectProperties10$inboundSchema: z.ZodType<CreateIntegrationStoreDirectProperties10, z.ZodTypeDef, unknown>;
|
|
1621
|
+
/** @internal */
|
|
1622
|
+
export type CreateIntegrationStoreDirectProperties10$Outbound = {
|
|
1623
|
+
type: string;
|
|
1624
|
+
"ui:control": string;
|
|
1625
|
+
description?: string | undefined;
|
|
1626
|
+
"ui:label"?: string | undefined;
|
|
1627
|
+
"ui:read-only"?: CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound | boolean | string | undefined;
|
|
1628
|
+
"ui:hidden"?: CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound | boolean | string | undefined;
|
|
1629
|
+
"ui:disabled"?: CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound | boolean | string | undefined;
|
|
1630
|
+
"ui:description"?: CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound | string | undefined;
|
|
1631
|
+
"ui:formatted-value"?: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue$Outbound | undefined;
|
|
1632
|
+
"ui:placeholder"?: string | undefined;
|
|
1633
|
+
"git:providers"?: Array<string> | undefined;
|
|
1634
|
+
};
|
|
1635
|
+
/** @internal */
|
|
1636
|
+
export declare const CreateIntegrationStoreDirectProperties10$outboundSchema: z.ZodType<CreateIntegrationStoreDirectProperties10$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectProperties10>;
|
|
1637
|
+
export declare function createIntegrationStoreDirectProperties10ToJSON(createIntegrationStoreDirectProperties10: CreateIntegrationStoreDirectProperties10): string;
|
|
1638
|
+
export declare function createIntegrationStoreDirectProperties10FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectProperties10, SDKValidationError>;
|
|
1639
|
+
/** @internal */
|
|
1640
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType>;
|
|
1641
|
+
/** @internal */
|
|
1642
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType>;
|
|
1643
|
+
/** @internal */
|
|
1644
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl>;
|
|
1645
|
+
/** @internal */
|
|
1646
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl>;
|
|
1647
|
+
/** @internal */
|
|
1648
|
+
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3>;
|
|
1649
|
+
/** @internal */
|
|
1650
|
+
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3>;
|
|
1651
|
+
/** @internal */
|
|
1652
|
+
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2, z.ZodTypeDef, unknown>;
|
|
1653
|
+
/** @internal */
|
|
1654
|
+
export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound = {
|
|
1655
|
+
expr: string;
|
|
1656
|
+
};
|
|
1657
|
+
/** @internal */
|
|
1658
|
+
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2>;
|
|
1659
|
+
export declare function createIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2ToJSON(createIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2: CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2): string;
|
|
1660
|
+
export declare function createIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2, SDKValidationError>;
|
|
1661
|
+
/** @internal */
|
|
1662
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly, z.ZodTypeDef, unknown>;
|
|
1663
|
+
/** @internal */
|
|
1664
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly$Outbound = CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound | boolean | string;
|
|
1665
|
+
/** @internal */
|
|
1666
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly>;
|
|
1667
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnlyToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly): string;
|
|
1668
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnlyFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly, SDKValidationError>;
|
|
1669
|
+
/** @internal */
|
|
1670
|
+
export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3>;
|
|
1671
|
+
/** @internal */
|
|
1672
|
+
export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3>;
|
|
1673
|
+
/** @internal */
|
|
1674
|
+
export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2, z.ZodTypeDef, unknown>;
|
|
1675
|
+
/** @internal */
|
|
1676
|
+
export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound = {
|
|
1677
|
+
expr: string;
|
|
1678
|
+
};
|
|
1679
|
+
/** @internal */
|
|
1680
|
+
export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2>;
|
|
1681
|
+
export declare function createIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2ToJSON(createIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2: CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2): string;
|
|
1682
|
+
export declare function createIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2, SDKValidationError>;
|
|
1683
|
+
/** @internal */
|
|
1684
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden, z.ZodTypeDef, unknown>;
|
|
1685
|
+
/** @internal */
|
|
1686
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden$Outbound = CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound | boolean | string;
|
|
1687
|
+
/** @internal */
|
|
1688
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden>;
|
|
1689
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHiddenToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden): string;
|
|
1690
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHiddenFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden, SDKValidationError>;
|
|
1691
|
+
/** @internal */
|
|
1692
|
+
export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3>;
|
|
1693
|
+
/** @internal */
|
|
1694
|
+
export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3>;
|
|
1695
|
+
/** @internal */
|
|
1696
|
+
export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2, z.ZodTypeDef, unknown>;
|
|
1697
|
+
/** @internal */
|
|
1698
|
+
export type CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound = {
|
|
1699
|
+
expr: string;
|
|
1700
|
+
};
|
|
1701
|
+
/** @internal */
|
|
1702
|
+
export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2>;
|
|
1703
|
+
export declare function createIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2ToJSON(createIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2: CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2): string;
|
|
1704
|
+
export declare function createIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2, SDKValidationError>;
|
|
1705
|
+
/** @internal */
|
|
1706
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled, z.ZodTypeDef, unknown>;
|
|
1707
|
+
/** @internal */
|
|
1708
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled$Outbound = CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound | boolean | string;
|
|
1709
|
+
/** @internal */
|
|
1710
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled>;
|
|
1711
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabledToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled): string;
|
|
1712
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabledFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled, SDKValidationError>;
|
|
1713
|
+
/** @internal */
|
|
1714
|
+
export declare const CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2, z.ZodTypeDef, unknown>;
|
|
1715
|
+
/** @internal */
|
|
1716
|
+
export type CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound = {
|
|
1717
|
+
expr: string;
|
|
1718
|
+
};
|
|
1719
|
+
/** @internal */
|
|
1720
|
+
export declare const CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2>;
|
|
1721
|
+
export declare function createIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2ToJSON(createIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2: CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2): string;
|
|
1722
|
+
export declare function createIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2, SDKValidationError>;
|
|
1723
|
+
/** @internal */
|
|
1724
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription, z.ZodTypeDef, unknown>;
|
|
1725
|
+
/** @internal */
|
|
1726
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription$Outbound = CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound | string;
|
|
1727
|
+
/** @internal */
|
|
1728
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription>;
|
|
1729
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescriptionToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription): string;
|
|
1730
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescriptionFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription, SDKValidationError>;
|
|
1731
|
+
/** @internal */
|
|
1732
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue, z.ZodTypeDef, unknown>;
|
|
1733
|
+
/** @internal */
|
|
1734
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue$Outbound = {
|
|
1735
|
+
expr: string;
|
|
1736
|
+
};
|
|
1737
|
+
/** @internal */
|
|
1738
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue>;
|
|
1739
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValueToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue): string;
|
|
1740
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValueFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue, SDKValidationError>;
|
|
1368
1741
|
/** @internal */
|
|
1369
1742
|
export declare const CreateIntegrationStoreDirectProperties9$inboundSchema: z.ZodType<CreateIntegrationStoreDirectProperties9, z.ZodTypeDef, unknown>;
|
|
1370
1743
|
/** @internal */
|
|
1371
1744
|
export type CreateIntegrationStoreDirectProperties9$Outbound = {
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1745
|
+
type: string;
|
|
1746
|
+
"ui:control": string;
|
|
1747
|
+
enum?: Array<string> | undefined;
|
|
1748
|
+
maxLength?: number | undefined;
|
|
1749
|
+
minLength?: number | undefined;
|
|
1750
|
+
pattern?: string | undefined;
|
|
1751
|
+
description?: string | undefined;
|
|
1752
|
+
default?: string | undefined;
|
|
1753
|
+
"ui:label"?: string | undefined;
|
|
1754
|
+
"ui:read-only"?: CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound | boolean | string | undefined;
|
|
1755
|
+
"ui:hidden"?: CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound | boolean | string | undefined;
|
|
1756
|
+
"ui:disabled"?: CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound | boolean | string | undefined;
|
|
1757
|
+
"ui:description"?: CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound | string | undefined;
|
|
1758
|
+
"ui:formatted-value"?: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue$Outbound | undefined;
|
|
1759
|
+
"ui:placeholder"?: string | undefined;
|
|
1375
1760
|
};
|
|
1376
1761
|
/** @internal */
|
|
1377
1762
|
export declare const CreateIntegrationStoreDirectProperties9$outboundSchema: z.ZodType<CreateIntegrationStoreDirectProperties9$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectProperties9>;
|
|
@@ -1382,10 +1767,151 @@ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse2
|
|
|
1382
1767
|
/** @internal */
|
|
1383
1768
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType>;
|
|
1384
1769
|
/** @internal */
|
|
1770
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type>;
|
|
1771
|
+
/** @internal */
|
|
1772
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type>;
|
|
1773
|
+
/** @internal */
|
|
1774
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems, z.ZodTypeDef, unknown>;
|
|
1775
|
+
/** @internal */
|
|
1776
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems$Outbound = {
|
|
1777
|
+
type: string;
|
|
1778
|
+
description?: string | undefined;
|
|
1779
|
+
minLength?: number | undefined;
|
|
1780
|
+
maxLength?: number | undefined;
|
|
1781
|
+
pattern?: string | undefined;
|
|
1782
|
+
default?: string | undefined;
|
|
1783
|
+
enum?: Array<string> | undefined;
|
|
1784
|
+
};
|
|
1785
|
+
/** @internal */
|
|
1786
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems>;
|
|
1787
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseItemsToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponseItems: CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems): string;
|
|
1788
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseItemsFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems, SDKValidationError>;
|
|
1789
|
+
/** @internal */
|
|
1385
1790
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl>;
|
|
1386
1791
|
/** @internal */
|
|
1387
1792
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl>;
|
|
1388
1793
|
/** @internal */
|
|
1794
|
+
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3>;
|
|
1795
|
+
/** @internal */
|
|
1796
|
+
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3>;
|
|
1797
|
+
/** @internal */
|
|
1798
|
+
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2, z.ZodTypeDef, unknown>;
|
|
1799
|
+
/** @internal */
|
|
1800
|
+
export type CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2$Outbound = {
|
|
1801
|
+
expr: string;
|
|
1802
|
+
};
|
|
1803
|
+
/** @internal */
|
|
1804
|
+
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2>;
|
|
1805
|
+
export declare function createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2ToJSON(createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2: CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2): string;
|
|
1806
|
+
export declare function createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2, SDKValidationError>;
|
|
1807
|
+
/** @internal */
|
|
1808
|
+
export declare const CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled, z.ZodTypeDef, unknown>;
|
|
1809
|
+
/** @internal */
|
|
1810
|
+
export type CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled$Outbound = CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2$Outbound | boolean | string;
|
|
1811
|
+
/** @internal */
|
|
1812
|
+
export declare const CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled>;
|
|
1813
|
+
export declare function createIntegrationStoreDirectUiOptionsIntegrationsResponse200DisabledToJSON(createIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled: CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled): string;
|
|
1814
|
+
export declare function createIntegrationStoreDirectUiOptionsIntegrationsResponse200DisabledFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled, SDKValidationError>;
|
|
1815
|
+
/** @internal */
|
|
1816
|
+
export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3>;
|
|
1817
|
+
/** @internal */
|
|
1818
|
+
export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3>;
|
|
1819
|
+
/** @internal */
|
|
1820
|
+
export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2, z.ZodTypeDef, unknown>;
|
|
1821
|
+
/** @internal */
|
|
1822
|
+
export type CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2$Outbound = {
|
|
1823
|
+
expr: string;
|
|
1824
|
+
};
|
|
1825
|
+
/** @internal */
|
|
1826
|
+
export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2>;
|
|
1827
|
+
export declare function createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2ToJSON(createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2: CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2): string;
|
|
1828
|
+
export declare function createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2, SDKValidationError>;
|
|
1829
|
+
/** @internal */
|
|
1830
|
+
export declare const CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden, z.ZodTypeDef, unknown>;
|
|
1831
|
+
/** @internal */
|
|
1832
|
+
export type CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden$Outbound = CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2$Outbound | boolean | string;
|
|
1833
|
+
/** @internal */
|
|
1834
|
+
export declare const CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden>;
|
|
1835
|
+
export declare function createIntegrationStoreDirectUiOptionsIntegrationsResponse200HiddenToJSON(createIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden: CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden): string;
|
|
1836
|
+
export declare function createIntegrationStoreDirectUiOptionsIntegrationsResponse200HiddenFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden, SDKValidationError>;
|
|
1837
|
+
/** @internal */
|
|
1838
|
+
export declare const CreateIntegrationStoreDirectUiOptionsIntegrations3$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrations3, z.ZodTypeDef, unknown>;
|
|
1839
|
+
/** @internal */
|
|
1840
|
+
export type CreateIntegrationStoreDirectUiOptionsIntegrations3$Outbound = {
|
|
1841
|
+
value: string;
|
|
1842
|
+
disabled?: CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2$Outbound | boolean | string | undefined;
|
|
1843
|
+
hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2$Outbound | boolean | string | undefined;
|
|
1844
|
+
};
|
|
1845
|
+
/** @internal */
|
|
1846
|
+
export declare const CreateIntegrationStoreDirectUiOptionsIntegrations3$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrations3$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptionsIntegrations3>;
|
|
1847
|
+
export declare function createIntegrationStoreDirectUiOptionsIntegrations3ToJSON(createIntegrationStoreDirectUiOptionsIntegrations3: CreateIntegrationStoreDirectUiOptionsIntegrations3): string;
|
|
1848
|
+
export declare function createIntegrationStoreDirectUiOptionsIntegrations3FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsIntegrations3, SDKValidationError>;
|
|
1849
|
+
/** @internal */
|
|
1850
|
+
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3>;
|
|
1851
|
+
/** @internal */
|
|
1852
|
+
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3>;
|
|
1853
|
+
/** @internal */
|
|
1854
|
+
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2, z.ZodTypeDef, unknown>;
|
|
1855
|
+
/** @internal */
|
|
1856
|
+
export type CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$Outbound = {
|
|
1857
|
+
expr: string;
|
|
1858
|
+
};
|
|
1859
|
+
/** @internal */
|
|
1860
|
+
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2>;
|
|
1861
|
+
export declare function createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSON2ToJSON(createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2: CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2): string;
|
|
1862
|
+
export declare function createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSON2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2, SDKValidationError>;
|
|
1863
|
+
/** @internal */
|
|
1864
|
+
export declare const CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled, z.ZodTypeDef, unknown>;
|
|
1865
|
+
/** @internal */
|
|
1866
|
+
export type CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled$Outbound = CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$Outbound | boolean | string;
|
|
1867
|
+
/** @internal */
|
|
1868
|
+
export declare const CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled>;
|
|
1869
|
+
export declare function createIntegrationStoreDirectUiOptionsIntegrationsResponseDisabledToJSON(createIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled: CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled): string;
|
|
1870
|
+
export declare function createIntegrationStoreDirectUiOptionsIntegrationsResponseDisabledFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled, SDKValidationError>;
|
|
1871
|
+
/** @internal */
|
|
1872
|
+
export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3>;
|
|
1873
|
+
/** @internal */
|
|
1874
|
+
export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3>;
|
|
1875
|
+
/** @internal */
|
|
1876
|
+
export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2, z.ZodTypeDef, unknown>;
|
|
1877
|
+
/** @internal */
|
|
1878
|
+
export type CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$Outbound = {
|
|
1879
|
+
expr: string;
|
|
1880
|
+
};
|
|
1881
|
+
/** @internal */
|
|
1882
|
+
export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2>;
|
|
1883
|
+
export declare function createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSON2ToJSON(createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2: CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2): string;
|
|
1884
|
+
export declare function createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSON2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2, SDKValidationError>;
|
|
1885
|
+
/** @internal */
|
|
1886
|
+
export declare const CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden, z.ZodTypeDef, unknown>;
|
|
1887
|
+
/** @internal */
|
|
1888
|
+
export type CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden$Outbound = CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$Outbound | boolean | string;
|
|
1889
|
+
/** @internal */
|
|
1890
|
+
export declare const CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden>;
|
|
1891
|
+
export declare function createIntegrationStoreDirectUiOptionsIntegrationsResponseHiddenToJSON(createIntegrationStoreDirectUiOptionsIntegrationsResponseHidden: CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden): string;
|
|
1892
|
+
export declare function createIntegrationStoreDirectUiOptionsIntegrationsResponseHiddenFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden, SDKValidationError>;
|
|
1893
|
+
/** @internal */
|
|
1894
|
+
export declare const CreateIntegrationStoreDirectUiOptionsIntegrations1$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrations1, z.ZodTypeDef, unknown>;
|
|
1895
|
+
/** @internal */
|
|
1896
|
+
export type CreateIntegrationStoreDirectUiOptionsIntegrations1$Outbound = {
|
|
1897
|
+
value: string;
|
|
1898
|
+
label: string;
|
|
1899
|
+
disabled?: CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$Outbound | boolean | string | undefined;
|
|
1900
|
+
hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$Outbound | boolean | string | undefined;
|
|
1901
|
+
};
|
|
1902
|
+
/** @internal */
|
|
1903
|
+
export declare const CreateIntegrationStoreDirectUiOptionsIntegrations1$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrations1$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptionsIntegrations1>;
|
|
1904
|
+
export declare function createIntegrationStoreDirectUiOptionsIntegrations1ToJSON(createIntegrationStoreDirectUiOptionsIntegrations1: CreateIntegrationStoreDirectUiOptionsIntegrations1): string;
|
|
1905
|
+
export declare function createIntegrationStoreDirectUiOptionsIntegrations1FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsIntegrations1, SDKValidationError>;
|
|
1906
|
+
/** @internal */
|
|
1907
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions, z.ZodTypeDef, unknown>;
|
|
1908
|
+
/** @internal */
|
|
1909
|
+
export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions$Outbound = CreateIntegrationStoreDirectUiOptionsIntegrations1$Outbound | CreateIntegrationStoreDirectUiOptionsIntegrations3$Outbound | string;
|
|
1910
|
+
/** @internal */
|
|
1911
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions>;
|
|
1912
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptionsToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions): string;
|
|
1913
|
+
export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptionsFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions, SDKValidationError>;
|
|
1914
|
+
/** @internal */
|
|
1389
1915
|
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3>;
|
|
1390
1916
|
/** @internal */
|
|
1391
1917
|
export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3>;
|
|
@@ -1484,13 +2010,12 @@ export declare const CreateIntegrationStoreDirectProperties8$inboundSchema: z.Zo
|
|
|
1484
2010
|
/** @internal */
|
|
1485
2011
|
export type CreateIntegrationStoreDirectProperties8$Outbound = {
|
|
1486
2012
|
type: string;
|
|
2013
|
+
items: CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems$Outbound;
|
|
1487
2014
|
"ui:control": string;
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
pattern?: string | undefined;
|
|
2015
|
+
"ui:options": Array<CreateIntegrationStoreDirectUiOptionsIntegrations1$Outbound | CreateIntegrationStoreDirectUiOptionsIntegrations3$Outbound | string>;
|
|
2016
|
+
maxItems?: number | undefined;
|
|
2017
|
+
minItems?: number | undefined;
|
|
1492
2018
|
description?: string | undefined;
|
|
1493
|
-
default?: string | undefined;
|
|
1494
2019
|
"ui:label"?: string | undefined;
|
|
1495
2020
|
"ui:read-only"?: CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2$Outbound | boolean | string | undefined;
|
|
1496
2021
|
"ui:hidden"?: CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2$Outbound | boolean | string | undefined;
|
|
@@ -1498,6 +2023,8 @@ export type CreateIntegrationStoreDirectProperties8$Outbound = {
|
|
|
1498
2023
|
"ui:description"?: CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2$Outbound | string | undefined;
|
|
1499
2024
|
"ui:formatted-value"?: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiFormattedValue$Outbound | undefined;
|
|
1500
2025
|
"ui:placeholder"?: string | undefined;
|
|
2026
|
+
default?: Array<string> | undefined;
|
|
2027
|
+
example?: Array<string> | undefined;
|
|
1501
2028
|
};
|
|
1502
2029
|
/** @internal */
|
|
1503
2030
|
export declare const CreateIntegrationStoreDirectProperties8$outboundSchema: z.ZodType<CreateIntegrationStoreDirectProperties8$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectProperties8>;
|
|
@@ -1568,45 +2095,45 @@ export declare const CreateIntegrationStoreDirectUiOptions3$outboundSchema: z.Zo
|
|
|
1568
2095
|
export declare function createIntegrationStoreDirectUiOptions3ToJSON(createIntegrationStoreDirectUiOptions3: CreateIntegrationStoreDirectUiOptions3): string;
|
|
1569
2096
|
export declare function createIntegrationStoreDirectUiOptions3FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptions3, SDKValidationError>;
|
|
1570
2097
|
/** @internal */
|
|
1571
|
-
export declare const
|
|
2098
|
+
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse3>;
|
|
1572
2099
|
/** @internal */
|
|
1573
|
-
export declare const
|
|
2100
|
+
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse3>;
|
|
1574
2101
|
/** @internal */
|
|
1575
|
-
export declare const
|
|
2102
|
+
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectDisabledIntegrationsResponse2, z.ZodTypeDef, unknown>;
|
|
1576
2103
|
/** @internal */
|
|
1577
|
-
export type
|
|
2104
|
+
export type CreateIntegrationStoreDirectDisabledIntegrationsResponse2$Outbound = {
|
|
1578
2105
|
expr: string;
|
|
1579
2106
|
};
|
|
1580
2107
|
/** @internal */
|
|
1581
|
-
export declare const
|
|
1582
|
-
export declare function
|
|
1583
|
-
export declare function
|
|
2108
|
+
export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectDisabledIntegrationsResponse2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectDisabledIntegrationsResponse2>;
|
|
2109
|
+
export declare function createIntegrationStoreDirectDisabledIntegrationsResponse2ToJSON(createIntegrationStoreDirectDisabledIntegrationsResponse2: CreateIntegrationStoreDirectDisabledIntegrationsResponse2): string;
|
|
2110
|
+
export declare function createIntegrationStoreDirectDisabledIntegrationsResponse2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectDisabledIntegrationsResponse2, SDKValidationError>;
|
|
1584
2111
|
/** @internal */
|
|
1585
2112
|
export declare const CreateIntegrationStoreDirectUiOptionsDisabled$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsDisabled, z.ZodTypeDef, unknown>;
|
|
1586
2113
|
/** @internal */
|
|
1587
|
-
export type CreateIntegrationStoreDirectUiOptionsDisabled$Outbound =
|
|
2114
|
+
export type CreateIntegrationStoreDirectUiOptionsDisabled$Outbound = CreateIntegrationStoreDirectDisabledIntegrationsResponse2$Outbound | boolean | string;
|
|
1588
2115
|
/** @internal */
|
|
1589
2116
|
export declare const CreateIntegrationStoreDirectUiOptionsDisabled$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsDisabled$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptionsDisabled>;
|
|
1590
2117
|
export declare function createIntegrationStoreDirectUiOptionsDisabledToJSON(createIntegrationStoreDirectUiOptionsDisabled: CreateIntegrationStoreDirectUiOptionsDisabled): string;
|
|
1591
2118
|
export declare function createIntegrationStoreDirectUiOptionsDisabledFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsDisabled, SDKValidationError>;
|
|
1592
2119
|
/** @internal */
|
|
1593
|
-
export declare const
|
|
2120
|
+
export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse3>;
|
|
1594
2121
|
/** @internal */
|
|
1595
|
-
export declare const
|
|
2122
|
+
export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse3>;
|
|
1596
2123
|
/** @internal */
|
|
1597
|
-
export declare const
|
|
2124
|
+
export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectHiddenIntegrationsResponse2, z.ZodTypeDef, unknown>;
|
|
1598
2125
|
/** @internal */
|
|
1599
|
-
export type
|
|
2126
|
+
export type CreateIntegrationStoreDirectHiddenIntegrationsResponse2$Outbound = {
|
|
1600
2127
|
expr: string;
|
|
1601
2128
|
};
|
|
1602
2129
|
/** @internal */
|
|
1603
|
-
export declare const
|
|
1604
|
-
export declare function
|
|
1605
|
-
export declare function
|
|
2130
|
+
export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectHiddenIntegrationsResponse2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectHiddenIntegrationsResponse2>;
|
|
2131
|
+
export declare function createIntegrationStoreDirectHiddenIntegrationsResponse2ToJSON(createIntegrationStoreDirectHiddenIntegrationsResponse2: CreateIntegrationStoreDirectHiddenIntegrationsResponse2): string;
|
|
2132
|
+
export declare function createIntegrationStoreDirectHiddenIntegrationsResponse2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectHiddenIntegrationsResponse2, SDKValidationError>;
|
|
1606
2133
|
/** @internal */
|
|
1607
2134
|
export declare const CreateIntegrationStoreDirectUiOptionsHidden$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsHidden, z.ZodTypeDef, unknown>;
|
|
1608
2135
|
/** @internal */
|
|
1609
|
-
export type CreateIntegrationStoreDirectUiOptionsHidden$Outbound =
|
|
2136
|
+
export type CreateIntegrationStoreDirectUiOptionsHidden$Outbound = CreateIntegrationStoreDirectHiddenIntegrationsResponse2$Outbound | boolean | string;
|
|
1610
2137
|
/** @internal */
|
|
1611
2138
|
export declare const CreateIntegrationStoreDirectUiOptionsHidden$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsHidden$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptionsHidden>;
|
|
1612
2139
|
export declare function createIntegrationStoreDirectUiOptionsHiddenToJSON(createIntegrationStoreDirectUiOptionsHidden: CreateIntegrationStoreDirectUiOptionsHidden): string;
|
|
@@ -1617,8 +2144,8 @@ export declare const CreateIntegrationStoreDirectUiOptions1$inboundSchema: z.Zod
|
|
|
1617
2144
|
export type CreateIntegrationStoreDirectUiOptions1$Outbound = {
|
|
1618
2145
|
value: string;
|
|
1619
2146
|
label: string;
|
|
1620
|
-
disabled?:
|
|
1621
|
-
hidden?:
|
|
2147
|
+
disabled?: CreateIntegrationStoreDirectDisabledIntegrationsResponse2$Outbound | boolean | string | undefined;
|
|
2148
|
+
hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse2$Outbound | boolean | string | undefined;
|
|
1622
2149
|
};
|
|
1623
2150
|
/** @internal */
|
|
1624
2151
|
export declare const CreateIntegrationStoreDirectUiOptions1$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptions1$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptions1>;
|
|
@@ -1964,57 +2491,57 @@ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse2
|
|
|
1964
2491
|
/** @internal */
|
|
1965
2492
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiControl$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiControl>;
|
|
1966
2493
|
/** @internal */
|
|
1967
|
-
export declare const
|
|
2494
|
+
export declare const CreateIntegrationStoreDirectDisabled3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectDisabled3>;
|
|
1968
2495
|
/** @internal */
|
|
1969
|
-
export declare const
|
|
2496
|
+
export declare const CreateIntegrationStoreDirectDisabled3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectDisabled3>;
|
|
1970
2497
|
/** @internal */
|
|
1971
|
-
export declare const
|
|
2498
|
+
export declare const CreateIntegrationStoreDirectDisabled2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectDisabled2, z.ZodTypeDef, unknown>;
|
|
1972
2499
|
/** @internal */
|
|
1973
|
-
export type
|
|
2500
|
+
export type CreateIntegrationStoreDirectDisabled2$Outbound = {
|
|
1974
2501
|
expr: string;
|
|
1975
2502
|
};
|
|
1976
2503
|
/** @internal */
|
|
1977
|
-
export declare const
|
|
1978
|
-
export declare function
|
|
1979
|
-
export declare function
|
|
2504
|
+
export declare const CreateIntegrationStoreDirectDisabled2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectDisabled2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectDisabled2>;
|
|
2505
|
+
export declare function createIntegrationStoreDirectDisabled2ToJSON(createIntegrationStoreDirectDisabled2: CreateIntegrationStoreDirectDisabled2): string;
|
|
2506
|
+
export declare function createIntegrationStoreDirectDisabled2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectDisabled2, SDKValidationError>;
|
|
1980
2507
|
/** @internal */
|
|
1981
|
-
export declare const
|
|
2508
|
+
export declare const CreateIntegrationStoreDirectPropertiesDisabled$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesDisabled, z.ZodTypeDef, unknown>;
|
|
1982
2509
|
/** @internal */
|
|
1983
|
-
export type
|
|
2510
|
+
export type CreateIntegrationStoreDirectPropertiesDisabled$Outbound = CreateIntegrationStoreDirectDisabled2$Outbound | boolean | string;
|
|
1984
2511
|
/** @internal */
|
|
1985
|
-
export declare const
|
|
1986
|
-
export declare function
|
|
1987
|
-
export declare function
|
|
2512
|
+
export declare const CreateIntegrationStoreDirectPropertiesDisabled$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesDisabled$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesDisabled>;
|
|
2513
|
+
export declare function createIntegrationStoreDirectPropertiesDisabledToJSON(createIntegrationStoreDirectPropertiesDisabled: CreateIntegrationStoreDirectPropertiesDisabled): string;
|
|
2514
|
+
export declare function createIntegrationStoreDirectPropertiesDisabledFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesDisabled, SDKValidationError>;
|
|
1988
2515
|
/** @internal */
|
|
1989
|
-
export declare const
|
|
2516
|
+
export declare const CreateIntegrationStoreDirectHidden3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectHidden3>;
|
|
1990
2517
|
/** @internal */
|
|
1991
|
-
export declare const
|
|
2518
|
+
export declare const CreateIntegrationStoreDirectHidden3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectHidden3>;
|
|
1992
2519
|
/** @internal */
|
|
1993
|
-
export declare const
|
|
2520
|
+
export declare const CreateIntegrationStoreDirectHidden2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectHidden2, z.ZodTypeDef, unknown>;
|
|
1994
2521
|
/** @internal */
|
|
1995
|
-
export type
|
|
2522
|
+
export type CreateIntegrationStoreDirectHidden2$Outbound = {
|
|
1996
2523
|
expr: string;
|
|
1997
2524
|
};
|
|
1998
2525
|
/** @internal */
|
|
1999
|
-
export declare const
|
|
2000
|
-
export declare function
|
|
2001
|
-
export declare function
|
|
2526
|
+
export declare const CreateIntegrationStoreDirectHidden2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectHidden2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectHidden2>;
|
|
2527
|
+
export declare function createIntegrationStoreDirectHidden2ToJSON(createIntegrationStoreDirectHidden2: CreateIntegrationStoreDirectHidden2): string;
|
|
2528
|
+
export declare function createIntegrationStoreDirectHidden2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectHidden2, SDKValidationError>;
|
|
2002
2529
|
/** @internal */
|
|
2003
|
-
export declare const
|
|
2530
|
+
export declare const CreateIntegrationStoreDirectPropertiesHidden$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesHidden, z.ZodTypeDef, unknown>;
|
|
2004
2531
|
/** @internal */
|
|
2005
|
-
export type
|
|
2532
|
+
export type CreateIntegrationStoreDirectPropertiesHidden$Outbound = CreateIntegrationStoreDirectHidden2$Outbound | boolean | string;
|
|
2006
2533
|
/** @internal */
|
|
2007
|
-
export declare const
|
|
2008
|
-
export declare function
|
|
2009
|
-
export declare function
|
|
2534
|
+
export declare const CreateIntegrationStoreDirectPropertiesHidden$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesHidden$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesHidden>;
|
|
2535
|
+
export declare function createIntegrationStoreDirectPropertiesHiddenToJSON(createIntegrationStoreDirectPropertiesHidden: CreateIntegrationStoreDirectPropertiesHidden): string;
|
|
2536
|
+
export declare function createIntegrationStoreDirectPropertiesHiddenFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesHidden, SDKValidationError>;
|
|
2010
2537
|
/** @internal */
|
|
2011
2538
|
export declare const CreateIntegrationStoreDirectPropertiesUiOptions$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesUiOptions, z.ZodTypeDef, unknown>;
|
|
2012
2539
|
/** @internal */
|
|
2013
2540
|
export type CreateIntegrationStoreDirectPropertiesUiOptions$Outbound = {
|
|
2014
2541
|
value: string;
|
|
2015
2542
|
label: string;
|
|
2016
|
-
disabled?:
|
|
2017
|
-
hidden?:
|
|
2543
|
+
disabled?: CreateIntegrationStoreDirectDisabled2$Outbound | boolean | string | undefined;
|
|
2544
|
+
hidden?: CreateIntegrationStoreDirectHidden2$Outbound | boolean | string | undefined;
|
|
2018
2545
|
};
|
|
2019
2546
|
/** @internal */
|
|
2020
2547
|
export declare const CreateIntegrationStoreDirectPropertiesUiOptions$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesUiOptions$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesUiOptions>;
|
|
@@ -2144,9 +2671,9 @@ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse2
|
|
|
2144
2671
|
/** @internal */
|
|
2145
2672
|
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Type$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Type>;
|
|
2146
2673
|
/** @internal */
|
|
2147
|
-
export declare const
|
|
2674
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type>;
|
|
2148
2675
|
/** @internal */
|
|
2149
|
-
export declare const
|
|
2676
|
+
export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type>;
|
|
2150
2677
|
/** @internal */
|
|
2151
2678
|
export declare const CreateIntegrationStoreDirectPropertiesItems$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesItems, z.ZodTypeDef, unknown>;
|
|
2152
2679
|
/** @internal */
|
|
@@ -2660,7 +3187,7 @@ export declare function createIntegrationStoreDirectProperties1FromJSON(jsonStri
|
|
|
2660
3187
|
/** @internal */
|
|
2661
3188
|
export declare const CreateIntegrationStoreDirectProperties$inboundSchema: z.ZodType<CreateIntegrationStoreDirectProperties, z.ZodTypeDef, unknown>;
|
|
2662
3189
|
/** @internal */
|
|
2663
|
-
export type CreateIntegrationStoreDirectProperties$Outbound = CreateIntegrationStoreDirectProperties4$Outbound | CreateIntegrationStoreDirectProperties6$Outbound | CreateIntegrationStoreDirectProperties5$Outbound | CreateIntegrationStoreDirectProperties7$Outbound | CreateIntegrationStoreDirectProperties1$Outbound | CreateIntegrationStoreDirectProperties2$Outbound | CreateIntegrationStoreDirectProperties3$Outbound |
|
|
3190
|
+
export type CreateIntegrationStoreDirectProperties$Outbound = CreateIntegrationStoreDirectProperties4$Outbound | CreateIntegrationStoreDirectProperties6$Outbound | CreateIntegrationStoreDirectProperties8$Outbound | CreateIntegrationStoreDirectProperties5$Outbound | CreateIntegrationStoreDirectProperties7$Outbound | CreateIntegrationStoreDirectProperties1$Outbound | CreateIntegrationStoreDirectProperties2$Outbound | CreateIntegrationStoreDirectProperties3$Outbound | CreateIntegrationStoreDirectProperties9$Outbound | CreateIntegrationStoreDirectProperties10$Outbound;
|
|
2664
3191
|
/** @internal */
|
|
2665
3192
|
export declare const CreateIntegrationStoreDirectProperties$outboundSchema: z.ZodType<CreateIntegrationStoreDirectProperties$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectProperties>;
|
|
2666
3193
|
export declare function createIntegrationStoreDirectPropertiesToJSON(createIntegrationStoreDirectProperties: CreateIntegrationStoreDirectProperties): string;
|
|
@@ -2671,7 +3198,7 @@ export declare const CreateIntegrationStoreDirectMetadataSchema$inboundSchema: z
|
|
|
2671
3198
|
export type CreateIntegrationStoreDirectMetadataSchema$Outbound = {
|
|
2672
3199
|
type: string;
|
|
2673
3200
|
properties: {
|
|
2674
|
-
[k: string]: CreateIntegrationStoreDirectProperties4$Outbound | CreateIntegrationStoreDirectProperties6$Outbound | CreateIntegrationStoreDirectProperties5$Outbound | CreateIntegrationStoreDirectProperties7$Outbound | CreateIntegrationStoreDirectProperties1$Outbound | CreateIntegrationStoreDirectProperties2$Outbound | CreateIntegrationStoreDirectProperties3$Outbound |
|
|
3201
|
+
[k: string]: CreateIntegrationStoreDirectProperties4$Outbound | CreateIntegrationStoreDirectProperties6$Outbound | CreateIntegrationStoreDirectProperties8$Outbound | CreateIntegrationStoreDirectProperties5$Outbound | CreateIntegrationStoreDirectProperties7$Outbound | CreateIntegrationStoreDirectProperties1$Outbound | CreateIntegrationStoreDirectProperties2$Outbound | CreateIntegrationStoreDirectProperties3$Outbound | CreateIntegrationStoreDirectProperties9$Outbound | CreateIntegrationStoreDirectProperties10$Outbound;
|
|
2675
3202
|
};
|
|
2676
3203
|
required?: Array<string> | undefined;
|
|
2677
3204
|
};
|
|
@@ -2749,49 +3276,32 @@ export declare const Guides$outboundSchema: z.ZodType<Guides$Outbound, z.ZodType
|
|
|
2749
3276
|
export declare function guidesToJSON(guides: Guides): string;
|
|
2750
3277
|
export declare function guidesFromJSON(jsonString: string): SafeParseResult<Guides, SDKValidationError>;
|
|
2751
3278
|
/** @internal */
|
|
2752
|
-
export declare const
|
|
3279
|
+
export declare const CreateIntegrationStoreDirectIntegration$inboundSchema: z.ZodType<CreateIntegrationStoreDirectIntegration, z.ZodTypeDef, unknown>;
|
|
2753
3280
|
/** @internal */
|
|
2754
|
-
export
|
|
2755
|
-
|
|
2756
|
-
|
|
2757
|
-
|
|
2758
|
-
|
|
2759
|
-
|
|
3281
|
+
export type CreateIntegrationStoreDirectIntegration$Outbound = {
|
|
3282
|
+
id: string;
|
|
3283
|
+
name: string;
|
|
3284
|
+
slug: string;
|
|
3285
|
+
supportsInstallationBillingPlans?: boolean | undefined;
|
|
3286
|
+
icon: string;
|
|
3287
|
+
flags?: Array<string> | undefined;
|
|
2760
3288
|
};
|
|
2761
3289
|
/** @internal */
|
|
2762
|
-
export declare const
|
|
2763
|
-
export declare function
|
|
2764
|
-
export declare function
|
|
3290
|
+
export declare const CreateIntegrationStoreDirectIntegration$outboundSchema: z.ZodType<CreateIntegrationStoreDirectIntegration$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectIntegration>;
|
|
3291
|
+
export declare function createIntegrationStoreDirectIntegrationToJSON(createIntegrationStoreDirectIntegration: CreateIntegrationStoreDirectIntegration): string;
|
|
3292
|
+
export declare function createIntegrationStoreDirectIntegrationFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectIntegration, SDKValidationError>;
|
|
2765
3293
|
/** @internal */
|
|
2766
|
-
export declare const
|
|
3294
|
+
export declare const SupportedProtocols$inboundSchema: z.ZodNativeEnum<typeof SupportedProtocols>;
|
|
2767
3295
|
/** @internal */
|
|
2768
|
-
export
|
|
3296
|
+
export declare const SupportedProtocols$outboundSchema: z.ZodNativeEnum<typeof SupportedProtocols>;
|
|
2769
3297
|
/** @internal */
|
|
2770
|
-
export declare const
|
|
2771
|
-
export declare function disabledToJSON(disabled: Disabled): string;
|
|
2772
|
-
export declare function disabledFromJSON(jsonString: string): SafeParseResult<Disabled, SDKValidationError>;
|
|
3298
|
+
export declare const CreateIntegrationStoreDirectPrimaryProtocol$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPrimaryProtocol>;
|
|
2773
3299
|
/** @internal */
|
|
2774
|
-
export declare const
|
|
3300
|
+
export declare const CreateIntegrationStoreDirectPrimaryProtocol$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPrimaryProtocol>;
|
|
2775
3301
|
/** @internal */
|
|
2776
|
-
export declare const
|
|
3302
|
+
export declare const LogDrainStatus$inboundSchema: z.ZodNativeEnum<typeof LogDrainStatus>;
|
|
2777
3303
|
/** @internal */
|
|
2778
|
-
export declare const
|
|
2779
|
-
/** @internal */
|
|
2780
|
-
export type Hidden2$Outbound = {
|
|
2781
|
-
expr: string;
|
|
2782
|
-
};
|
|
2783
|
-
/** @internal */
|
|
2784
|
-
export declare const Hidden2$outboundSchema: z.ZodType<Hidden2$Outbound, z.ZodTypeDef, Hidden2>;
|
|
2785
|
-
export declare function hidden2ToJSON(hidden2: Hidden2): string;
|
|
2786
|
-
export declare function hidden2FromJSON(jsonString: string): SafeParseResult<Hidden2, SDKValidationError>;
|
|
2787
|
-
/** @internal */
|
|
2788
|
-
export declare const Hidden$inboundSchema: z.ZodType<Hidden, z.ZodTypeDef, unknown>;
|
|
2789
|
-
/** @internal */
|
|
2790
|
-
export type Hidden$Outbound = Hidden2$Outbound | boolean | string;
|
|
2791
|
-
/** @internal */
|
|
2792
|
-
export declare const Hidden$outboundSchema: z.ZodType<Hidden$Outbound, z.ZodTypeDef, Hidden>;
|
|
2793
|
-
export declare function hiddenToJSON(hidden: Hidden): string;
|
|
2794
|
-
export declare function hiddenFromJSON(jsonString: string): SafeParseResult<Hidden, SDKValidationError>;
|
|
3304
|
+
export declare const LogDrainStatus$outboundSchema: z.ZodNativeEnum<typeof LogDrainStatus>;
|
|
2795
3305
|
/** @internal */
|
|
2796
3306
|
export declare const Product$inboundSchema: z.ZodType<Product, z.ZodTypeDef, unknown>;
|
|
2797
3307
|
/** @internal */
|
|
@@ -2810,9 +3320,11 @@ export type Product$Outbound = {
|
|
|
2810
3320
|
disableResourceRenaming?: boolean | undefined;
|
|
2811
3321
|
repl?: Repl$Outbound | undefined;
|
|
2812
3322
|
guides?: Array<Guides$Outbound> | undefined;
|
|
2813
|
-
|
|
2814
|
-
|
|
2815
|
-
|
|
3323
|
+
integration: CreateIntegrationStoreDirectIntegration$Outbound;
|
|
3324
|
+
integrationConfigurationId: string;
|
|
3325
|
+
supportedProtocols: Array<string>;
|
|
3326
|
+
primaryProtocol?: string | undefined;
|
|
3327
|
+
logDrainStatus?: string | undefined;
|
|
2816
3328
|
};
|
|
2817
3329
|
/** @internal */
|
|
2818
3330
|
export declare const Product$outboundSchema: z.ZodType<Product$Outbound, z.ZodTypeDef, Product>;
|