@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
|
@@ -164,7 +164,7 @@ export type PayloadApp = {
|
|
|
164
164
|
/**
|
|
165
165
|
* The payload of the event, if requested.
|
|
166
166
|
*/
|
|
167
|
-
export type
|
|
167
|
+
export type OneHundredAndSeventyFive = {
|
|
168
168
|
grantType: GrantType;
|
|
169
169
|
/**
|
|
170
170
|
* the app's name at the time the event was published (it could have changed since then)
|
|
@@ -197,11 +197,11 @@ export type OneHundredAndSeventyFour = {
|
|
|
197
197
|
*/
|
|
198
198
|
sessionId?: string | undefined;
|
|
199
199
|
};
|
|
200
|
-
export type
|
|
200
|
+
export type UserEventPayload174Team = {
|
|
201
201
|
id: string;
|
|
202
202
|
name: string;
|
|
203
203
|
};
|
|
204
|
-
export type
|
|
204
|
+
export type UserEventPayload174Configuration = {
|
|
205
205
|
id: string;
|
|
206
206
|
name?: string | undefined;
|
|
207
207
|
};
|
|
@@ -212,17 +212,17 @@ export type UserEventPayloadPeering = {
|
|
|
212
212
|
/**
|
|
213
213
|
* The payload of the event, if requested.
|
|
214
214
|
*/
|
|
215
|
-
export type
|
|
216
|
-
team:
|
|
217
|
-
configuration:
|
|
215
|
+
export type OneHundredAndSeventyFour = {
|
|
216
|
+
team: UserEventPayload174Team;
|
|
217
|
+
configuration: UserEventPayload174Configuration;
|
|
218
218
|
peering: UserEventPayloadPeering;
|
|
219
219
|
newName?: string | undefined;
|
|
220
220
|
};
|
|
221
|
-
export type
|
|
221
|
+
export type UserEventPayload173Team = {
|
|
222
222
|
id: string;
|
|
223
223
|
name: string;
|
|
224
224
|
};
|
|
225
|
-
export type
|
|
225
|
+
export type UserEventPayload173Configuration = {
|
|
226
226
|
id: string;
|
|
227
227
|
name?: string | undefined;
|
|
228
228
|
};
|
|
@@ -233,16 +233,16 @@ export type PayloadPeering = {
|
|
|
233
233
|
/**
|
|
234
234
|
* The payload of the event, if requested.
|
|
235
235
|
*/
|
|
236
|
-
export type
|
|
237
|
-
team:
|
|
238
|
-
configuration:
|
|
236
|
+
export type OneHundredAndSeventyThree = {
|
|
237
|
+
team: UserEventPayload173Team;
|
|
238
|
+
configuration: UserEventPayload173Configuration;
|
|
239
239
|
peering: PayloadPeering;
|
|
240
240
|
};
|
|
241
|
-
export type
|
|
241
|
+
export type UserEventPayload172Team = {
|
|
242
242
|
id: string;
|
|
243
243
|
name: string;
|
|
244
244
|
};
|
|
245
|
-
export type
|
|
245
|
+
export type UserEventPayload172Configuration = {
|
|
246
246
|
id: string;
|
|
247
247
|
name?: string | undefined;
|
|
248
248
|
};
|
|
@@ -255,9 +255,9 @@ export type Peering = {
|
|
|
255
255
|
/**
|
|
256
256
|
* The payload of the event, if requested.
|
|
257
257
|
*/
|
|
258
|
-
export type
|
|
259
|
-
team:
|
|
260
|
-
configuration:
|
|
258
|
+
export type OneHundredAndSeventyTwo = {
|
|
259
|
+
team: UserEventPayload172Team;
|
|
260
|
+
configuration: UserEventPayload172Configuration;
|
|
261
261
|
peering: Peering;
|
|
262
262
|
};
|
|
263
263
|
/**
|
|
@@ -276,7 +276,7 @@ export type App = {
|
|
|
276
276
|
/**
|
|
277
277
|
* The payload of the event, if requested.
|
|
278
278
|
*/
|
|
279
|
-
export type
|
|
279
|
+
export type OneHundredAndSeventyOne = {
|
|
280
280
|
/**
|
|
281
281
|
* The App's name at the moment this even was published (it may have changed since then).
|
|
282
282
|
*/
|
|
@@ -294,46 +294,46 @@ export type OneHundredAndSeventy = {
|
|
|
294
294
|
*/
|
|
295
295
|
issuedBefore?: number | undefined;
|
|
296
296
|
};
|
|
297
|
-
export declare const
|
|
297
|
+
export declare const UserEventPayload170Type: {
|
|
298
298
|
readonly List: "list";
|
|
299
299
|
};
|
|
300
|
-
export type
|
|
301
|
-
export declare const
|
|
300
|
+
export type UserEventPayload170Type = ClosedEnum<typeof UserEventPayload170Type>;
|
|
301
|
+
export declare const UserEventPayload170BeforeType: {
|
|
302
302
|
readonly String: "string";
|
|
303
303
|
};
|
|
304
|
-
export type
|
|
304
|
+
export type UserEventPayload170BeforeType = ClosedEnum<typeof UserEventPayload170BeforeType>;
|
|
305
305
|
export type PayloadItems = {
|
|
306
|
-
type:
|
|
306
|
+
type: UserEventPayload170BeforeType;
|
|
307
307
|
};
|
|
308
|
-
export type
|
|
309
|
-
type:
|
|
308
|
+
export type UserEventPayloadProjectIds = {
|
|
309
|
+
type: UserEventPayload170Type;
|
|
310
310
|
required: boolean;
|
|
311
311
|
items: PayloadItems;
|
|
312
312
|
};
|
|
313
313
|
export type PayloadResources = {
|
|
314
|
-
projectIds:
|
|
314
|
+
projectIds: UserEventPayloadProjectIds;
|
|
315
315
|
};
|
|
316
316
|
export type Before = {
|
|
317
317
|
resources?: PayloadResources | undefined;
|
|
318
318
|
};
|
|
319
|
-
export declare const
|
|
319
|
+
export declare const UserEventPayload170AfterType: {
|
|
320
320
|
readonly List: "list";
|
|
321
321
|
};
|
|
322
|
-
export type
|
|
323
|
-
export declare const
|
|
322
|
+
export type UserEventPayload170AfterType = ClosedEnum<typeof UserEventPayload170AfterType>;
|
|
323
|
+
export declare const UserEventPayload170AfterResourcesType: {
|
|
324
324
|
readonly String: "string";
|
|
325
325
|
};
|
|
326
|
-
export type
|
|
326
|
+
export type UserEventPayload170AfterResourcesType = ClosedEnum<typeof UserEventPayload170AfterResourcesType>;
|
|
327
327
|
export type UserEventPayloadItems = {
|
|
328
|
-
type:
|
|
328
|
+
type: UserEventPayload170AfterResourcesType;
|
|
329
329
|
};
|
|
330
|
-
export type
|
|
331
|
-
type:
|
|
330
|
+
export type UserEventPayload170ProjectIds = {
|
|
331
|
+
type: UserEventPayload170AfterType;
|
|
332
332
|
required: boolean;
|
|
333
333
|
items: UserEventPayloadItems;
|
|
334
334
|
};
|
|
335
335
|
export type UserEventPayloadResources = {
|
|
336
|
-
projectIds:
|
|
336
|
+
projectIds: UserEventPayload170ProjectIds;
|
|
337
337
|
};
|
|
338
338
|
export type After = {
|
|
339
339
|
resources?: UserEventPayloadResources | undefined;
|
|
@@ -341,36 +341,36 @@ export type After = {
|
|
|
341
341
|
/**
|
|
342
342
|
* The payload of the event, if requested.
|
|
343
343
|
*/
|
|
344
|
-
export type
|
|
344
|
+
export type OneHundredAndSeventy = {
|
|
345
345
|
appName: string;
|
|
346
346
|
appId?: string | undefined;
|
|
347
347
|
installationId?: string | undefined;
|
|
348
348
|
before?: Before | undefined;
|
|
349
349
|
after?: After | undefined;
|
|
350
350
|
};
|
|
351
|
-
export declare const
|
|
351
|
+
export declare const UserEventPayload169Type: {
|
|
352
352
|
readonly List: "list";
|
|
353
353
|
};
|
|
354
|
-
export type
|
|
355
|
-
export declare const
|
|
354
|
+
export type UserEventPayload169Type = ClosedEnum<typeof UserEventPayload169Type>;
|
|
355
|
+
export declare const UserEventPayload169ResourcesType: {
|
|
356
356
|
readonly String: "string";
|
|
357
357
|
};
|
|
358
|
-
export type
|
|
358
|
+
export type UserEventPayload169ResourcesType = ClosedEnum<typeof UserEventPayload169ResourcesType>;
|
|
359
359
|
export type Items = {
|
|
360
|
-
type:
|
|
360
|
+
type: UserEventPayload169ResourcesType;
|
|
361
361
|
};
|
|
362
|
-
export type
|
|
363
|
-
type:
|
|
362
|
+
export type PayloadProjectIds = {
|
|
363
|
+
type: UserEventPayload169Type;
|
|
364
364
|
required: boolean;
|
|
365
365
|
items: Items;
|
|
366
366
|
};
|
|
367
367
|
export type Resources = {
|
|
368
|
-
projectIds:
|
|
368
|
+
projectIds: PayloadProjectIds;
|
|
369
369
|
};
|
|
370
370
|
/**
|
|
371
371
|
* The payload of the event, if requested.
|
|
372
372
|
*/
|
|
373
|
-
export type
|
|
373
|
+
export type OneHundredAndSixtyNine = {
|
|
374
374
|
appName: string;
|
|
375
375
|
appId?: string | undefined;
|
|
376
376
|
resources?: Resources | undefined;
|
|
@@ -378,7 +378,7 @@ export type OneHundredAndSixtyEight = {
|
|
|
378
378
|
/**
|
|
379
379
|
* The payload of the event, if requested.
|
|
380
380
|
*/
|
|
381
|
-
export type
|
|
381
|
+
export type OneHundredAndSixtyEight = {
|
|
382
382
|
appName: string;
|
|
383
383
|
appId?: string | undefined;
|
|
384
384
|
secretLastFourChars?: string | undefined;
|
|
@@ -386,7 +386,7 @@ export type OneHundredAndSixtySeven = {
|
|
|
386
386
|
/**
|
|
387
387
|
* The payload of the event, if requested.
|
|
388
388
|
*/
|
|
389
|
-
export type
|
|
389
|
+
export type OneHundredAndSixtySeven = {
|
|
390
390
|
appName: string;
|
|
391
391
|
appId?: string | undefined;
|
|
392
392
|
};
|
|
@@ -404,7 +404,6 @@ export declare const NextPermissions: {
|
|
|
404
404
|
readonly ReadDomain: "read:domain";
|
|
405
405
|
readonly ReadWriteDomain: "read-write:domain";
|
|
406
406
|
readonly ReadTeam: "read:team";
|
|
407
|
-
readonly ReadWriteTeam: "read-write:team";
|
|
408
407
|
readonly ReadBilling: "read:billing";
|
|
409
408
|
readonly ReadWriteAiGatewayApiKey: "read-write:ai-gateway-api-key";
|
|
410
409
|
readonly ReadProject: "read:project";
|
|
@@ -423,7 +422,7 @@ export type NextAcceptedPermissionSets = {
|
|
|
423
422
|
/**
|
|
424
423
|
* The payload of the event, if requested.
|
|
425
424
|
*/
|
|
426
|
-
export type
|
|
425
|
+
export type OneHundredAndSixtySix = {
|
|
427
426
|
appName: string;
|
|
428
427
|
appId?: string | undefined;
|
|
429
428
|
nextScopes: Array<NextScopes>;
|
|
@@ -444,7 +443,6 @@ export declare const Permissions: {
|
|
|
444
443
|
readonly ReadDomain: "read:domain";
|
|
445
444
|
readonly ReadWriteDomain: "read-write:domain";
|
|
446
445
|
readonly ReadTeam: "read:team";
|
|
447
|
-
readonly ReadWriteTeam: "read-write:team";
|
|
448
446
|
readonly ReadBilling: "read:billing";
|
|
449
447
|
readonly ReadWriteAiGatewayApiKey: "read-write:ai-gateway-api-key";
|
|
450
448
|
readonly ReadProject: "read:project";
|
|
@@ -463,7 +461,7 @@ export type AcceptedPermissionSets = {
|
|
|
463
461
|
/**
|
|
464
462
|
* The payload of the event, if requested.
|
|
465
463
|
*/
|
|
466
|
-
export type
|
|
464
|
+
export type OneHundredAndSixtyFive = {
|
|
467
465
|
appName: string;
|
|
468
466
|
appId?: string | undefined;
|
|
469
467
|
scopes: Array<PayloadScopes>;
|
|
@@ -473,7 +471,7 @@ export type OneHundredAndSixtyFour = {
|
|
|
473
471
|
/**
|
|
474
472
|
* The payload of the event, if requested.
|
|
475
473
|
*/
|
|
476
|
-
export type
|
|
474
|
+
export type OneHundredAndSixtyFour = {
|
|
477
475
|
oldName: string;
|
|
478
476
|
newName: string;
|
|
479
477
|
};
|
|
@@ -485,7 +483,7 @@ export type Tier = ClosedEnum<typeof Tier>;
|
|
|
485
483
|
/**
|
|
486
484
|
* The payload of the event, if requested.
|
|
487
485
|
*/
|
|
488
|
-
export type
|
|
486
|
+
export type OneHundredAndSixtyThree = {
|
|
489
487
|
tier: Tier;
|
|
490
488
|
};
|
|
491
489
|
export type ProjectWebAnalytics = {
|
|
@@ -505,7 +503,7 @@ export type PrevProjectWebAnalytics = {
|
|
|
505
503
|
/**
|
|
506
504
|
* The payload of the event, if requested.
|
|
507
505
|
*/
|
|
508
|
-
export type
|
|
506
|
+
export type OneHundredAndSixtyTwo = {
|
|
509
507
|
projectId: string;
|
|
510
508
|
projectName: string;
|
|
511
509
|
projectWebAnalytics?: ProjectWebAnalytics | undefined;
|
|
@@ -572,7 +570,7 @@ export type Microfrontends1 = {
|
|
|
572
570
|
freeProjectForLegacyLimits?: boolean | undefined;
|
|
573
571
|
};
|
|
574
572
|
export type Microfrontends = Microfrontends1 | Microfrontends2 | Microfrontends3;
|
|
575
|
-
export type
|
|
573
|
+
export type UserEventPayload161Project = {
|
|
576
574
|
id: string;
|
|
577
575
|
name: string;
|
|
578
576
|
microfrontends?: Microfrontends1 | Microfrontends2 | Microfrontends3 | undefined;
|
|
@@ -638,11 +636,11 @@ export type UserEventMicrofrontends1 = {
|
|
|
638
636
|
freeProjectForLegacyLimits?: boolean | undefined;
|
|
639
637
|
};
|
|
640
638
|
export type PayloadMicrofrontends = UserEventMicrofrontends1 | UserEventMicrofrontends2 | UserEventMicrofrontends3;
|
|
641
|
-
export type
|
|
639
|
+
export type UserEventPayload161PrevProject = {
|
|
642
640
|
microfrontends?: UserEventMicrofrontends1 | UserEventMicrofrontends2 | UserEventMicrofrontends3 | undefined;
|
|
643
641
|
};
|
|
644
642
|
export type PayloadPrev = {
|
|
645
|
-
project:
|
|
643
|
+
project: UserEventPayload161PrevProject;
|
|
646
644
|
};
|
|
647
645
|
export type PayloadGroup = {
|
|
648
646
|
id: string;
|
|
@@ -652,12 +650,12 @@ export type PayloadGroup = {
|
|
|
652
650
|
/**
|
|
653
651
|
* The payload of the event, if requested.
|
|
654
652
|
*/
|
|
655
|
-
export type
|
|
656
|
-
project:
|
|
653
|
+
export type OneHundredAndSixtyOne = {
|
|
654
|
+
project: UserEventPayload161Project;
|
|
657
655
|
prev: PayloadPrev;
|
|
658
656
|
group: PayloadGroup;
|
|
659
657
|
};
|
|
660
|
-
export type
|
|
658
|
+
export type UserEventPayload160Project = {
|
|
661
659
|
id: string;
|
|
662
660
|
name: string;
|
|
663
661
|
};
|
|
@@ -669,8 +667,8 @@ export type Group = {
|
|
|
669
667
|
/**
|
|
670
668
|
* The payload of the event, if requested.
|
|
671
669
|
*/
|
|
672
|
-
export type
|
|
673
|
-
project:
|
|
670
|
+
export type OneHundredAndSixty = {
|
|
671
|
+
project: UserEventPayload160Project;
|
|
674
672
|
group: Group;
|
|
675
673
|
};
|
|
676
674
|
export type Prev = {
|
|
@@ -681,7 +679,7 @@ export type Prev = {
|
|
|
681
679
|
/**
|
|
682
680
|
* The payload of the event, if requested.
|
|
683
681
|
*/
|
|
684
|
-
export type
|
|
682
|
+
export type OneHundredAndFiftyNine = {
|
|
685
683
|
id: string;
|
|
686
684
|
slug?: string | undefined;
|
|
687
685
|
name?: string | undefined;
|
|
@@ -691,26 +689,26 @@ export type OneHundredAndFiftyEight = {
|
|
|
691
689
|
/**
|
|
692
690
|
* The payload of the event, if requested.
|
|
693
691
|
*/
|
|
694
|
-
export type
|
|
692
|
+
export type OneHundredAndFiftyEight = {
|
|
695
693
|
id: string;
|
|
696
694
|
slug: string;
|
|
697
695
|
name: string;
|
|
698
696
|
};
|
|
699
|
-
export declare const
|
|
697
|
+
export declare const UserEventPayload157Action: {
|
|
700
698
|
readonly Enable: "enable";
|
|
701
699
|
readonly Disable: "disable";
|
|
702
700
|
};
|
|
703
|
-
export type
|
|
701
|
+
export type UserEventPayload157Action = ClosedEnum<typeof UserEventPayload157Action>;
|
|
704
702
|
/**
|
|
705
703
|
* The payload of the event, if requested.
|
|
706
704
|
*/
|
|
707
|
-
export type
|
|
708
|
-
action:
|
|
705
|
+
export type OneHundredAndFiftySeven = {
|
|
706
|
+
action: UserEventPayload157Action;
|
|
709
707
|
};
|
|
710
708
|
/**
|
|
711
709
|
* The payload of the event, if requested.
|
|
712
710
|
*/
|
|
713
|
-
export type
|
|
711
|
+
export type OneHundredAndFiftySix = {
|
|
714
712
|
edgeConfigId: string;
|
|
715
713
|
edgeConfigSlug: string;
|
|
716
714
|
/**
|
|
@@ -721,7 +719,7 @@ export type OneHundredAndFiftyFive = {
|
|
|
721
719
|
/**
|
|
722
720
|
* The payload of the event, if requested.
|
|
723
721
|
*/
|
|
724
|
-
export type
|
|
722
|
+
export type OneHundredAndFiftyFive = {
|
|
725
723
|
edgeConfigId: string;
|
|
726
724
|
edgeConfigSlug: string;
|
|
727
725
|
edgeConfigTokenId: string;
|
|
@@ -730,7 +728,7 @@ export type OneHundredAndFiftyFour = {
|
|
|
730
728
|
/**
|
|
731
729
|
* The payload of the event, if requested.
|
|
732
730
|
*/
|
|
733
|
-
export type
|
|
731
|
+
export type OneHundredAndFiftyFour = {
|
|
734
732
|
edgeConfigId: string;
|
|
735
733
|
edgeConfigSlug: string;
|
|
736
734
|
edgeConfigDigest: string;
|
|
@@ -738,27 +736,27 @@ export type OneHundredAndFiftyThree = {
|
|
|
738
736
|
/**
|
|
739
737
|
* The payload of the event, if requested.
|
|
740
738
|
*/
|
|
741
|
-
export type
|
|
739
|
+
export type OneHundredAndFiftyThree = {
|
|
742
740
|
projectName: string;
|
|
743
741
|
srcImages: Array<string>;
|
|
744
742
|
};
|
|
745
743
|
/**
|
|
746
744
|
* The payload of the event, if requested.
|
|
747
745
|
*/
|
|
748
|
-
export type
|
|
746
|
+
export type OneHundredAndFiftyTwo = {
|
|
749
747
|
projectName: string;
|
|
750
748
|
tags: Array<string>;
|
|
751
749
|
target?: string | undefined;
|
|
752
750
|
};
|
|
753
|
-
export declare const
|
|
751
|
+
export declare const UserEventPayload151Role: {
|
|
754
752
|
readonly Admin: "ADMIN";
|
|
755
753
|
readonly ProjectDeveloper: "PROJECT_DEVELOPER";
|
|
756
754
|
readonly ProjectViewer: "PROJECT_VIEWER";
|
|
757
755
|
};
|
|
758
|
-
export type
|
|
759
|
-
export type
|
|
756
|
+
export type UserEventPayload151Role = ClosedEnum<typeof UserEventPayload151Role>;
|
|
757
|
+
export type UserEventPayload151Project = {
|
|
760
758
|
name: string;
|
|
761
|
-
role:
|
|
759
|
+
role: UserEventPayload151Role;
|
|
762
760
|
invitedUserName: string;
|
|
763
761
|
id?: string | undefined;
|
|
764
762
|
invitedUserId?: string | undefined;
|
|
@@ -766,19 +764,19 @@ export type UserEventPayload150Project = {
|
|
|
766
764
|
/**
|
|
767
765
|
* The payload of the event, if requested.
|
|
768
766
|
*/
|
|
769
|
-
export type
|
|
770
|
-
project:
|
|
767
|
+
export type OneHundredAndFiftyOne = {
|
|
768
|
+
project: UserEventPayload151Project;
|
|
771
769
|
};
|
|
772
|
-
export type
|
|
770
|
+
export type UserEventPayload150Project = {
|
|
773
771
|
id: string;
|
|
774
772
|
name: string;
|
|
775
773
|
};
|
|
776
|
-
export declare const
|
|
774
|
+
export declare const UserEventPayload150Role: {
|
|
777
775
|
readonly Admin: "ADMIN";
|
|
778
776
|
readonly ProjectDeveloper: "PROJECT_DEVELOPER";
|
|
779
777
|
readonly ProjectViewer: "PROJECT_VIEWER";
|
|
780
778
|
};
|
|
781
|
-
export type
|
|
779
|
+
export type UserEventPayload150Role = ClosedEnum<typeof UserEventPayload150Role>;
|
|
782
780
|
export declare const PayloadPreviousRole: {
|
|
783
781
|
readonly Admin: "ADMIN";
|
|
784
782
|
readonly ProjectDeveloper: "PROJECT_DEVELOPER";
|
|
@@ -786,7 +784,7 @@ export declare const PayloadPreviousRole: {
|
|
|
786
784
|
};
|
|
787
785
|
export type PayloadPreviousRole = ClosedEnum<typeof PayloadPreviousRole>;
|
|
788
786
|
export type PayloadProjectMembership = {
|
|
789
|
-
role?:
|
|
787
|
+
role?: UserEventPayload150Role | undefined;
|
|
790
788
|
uid?: string | undefined;
|
|
791
789
|
createdAt?: number | undefined;
|
|
792
790
|
username?: string | undefined;
|
|
@@ -795,22 +793,22 @@ export type PayloadProjectMembership = {
|
|
|
795
793
|
/**
|
|
796
794
|
* The payload of the event, if requested.
|
|
797
795
|
*/
|
|
798
|
-
export type
|
|
799
|
-
project:
|
|
796
|
+
export type OneHundredAndFifty = {
|
|
797
|
+
project: UserEventPayload150Project;
|
|
800
798
|
projectMembership: PayloadProjectMembership;
|
|
801
799
|
};
|
|
802
|
-
export type
|
|
800
|
+
export type UserEventPayload149Project = {
|
|
803
801
|
name: string;
|
|
804
802
|
id?: string | undefined;
|
|
805
803
|
};
|
|
806
|
-
export declare const
|
|
804
|
+
export declare const UserEventPayload149Role: {
|
|
807
805
|
readonly Admin: "ADMIN";
|
|
808
806
|
readonly ProjectDeveloper: "PROJECT_DEVELOPER";
|
|
809
807
|
readonly ProjectViewer: "PROJECT_VIEWER";
|
|
810
808
|
};
|
|
811
|
-
export type
|
|
809
|
+
export type UserEventPayload149Role = ClosedEnum<typeof UserEventPayload149Role>;
|
|
812
810
|
export type RemovedMembership = {
|
|
813
|
-
role:
|
|
811
|
+
role: UserEventPayload149Role;
|
|
814
812
|
uid: string;
|
|
815
813
|
createdAt: number;
|
|
816
814
|
username?: string | undefined;
|
|
@@ -818,22 +816,22 @@ export type RemovedMembership = {
|
|
|
818
816
|
/**
|
|
819
817
|
* The payload of the event, if requested.
|
|
820
818
|
*/
|
|
821
|
-
export type
|
|
822
|
-
project:
|
|
819
|
+
export type OneHundredAndFortyNine = {
|
|
820
|
+
project: UserEventPayload149Project;
|
|
823
821
|
removedMembership: RemovedMembership;
|
|
824
822
|
};
|
|
825
|
-
export type
|
|
823
|
+
export type UserEventPayload148Project = {
|
|
826
824
|
name: string;
|
|
827
825
|
id?: string | undefined;
|
|
828
826
|
};
|
|
829
|
-
export declare const
|
|
827
|
+
export declare const UserEventPayload148Role: {
|
|
830
828
|
readonly Admin: "ADMIN";
|
|
831
829
|
readonly ProjectDeveloper: "PROJECT_DEVELOPER";
|
|
832
830
|
readonly ProjectViewer: "PROJECT_VIEWER";
|
|
833
831
|
};
|
|
834
|
-
export type
|
|
832
|
+
export type UserEventPayload148Role = ClosedEnum<typeof UserEventPayload148Role>;
|
|
835
833
|
export type ProjectMembership = {
|
|
836
|
-
role:
|
|
834
|
+
role: UserEventPayload148Role;
|
|
837
835
|
uid: string;
|
|
838
836
|
createdAt: number;
|
|
839
837
|
username?: string | undefined;
|
|
@@ -841,14 +839,14 @@ export type ProjectMembership = {
|
|
|
841
839
|
/**
|
|
842
840
|
* The payload of the event, if requested.
|
|
843
841
|
*/
|
|
844
|
-
export type
|
|
845
|
-
project:
|
|
842
|
+
export type OneHundredAndFortyEight = {
|
|
843
|
+
project: UserEventPayload148Project;
|
|
846
844
|
projectMembership: ProjectMembership | null;
|
|
847
845
|
};
|
|
848
846
|
/**
|
|
849
847
|
* The payload of the event, if requested.
|
|
850
848
|
*/
|
|
851
|
-
export type
|
|
849
|
+
export type OneHundredAndFortySeven = {
|
|
852
850
|
previousProjectName: string;
|
|
853
851
|
newProjectName: string;
|
|
854
852
|
originAccountName: string;
|
|
@@ -857,7 +855,7 @@ export type OneHundredAndFortySix = {
|
|
|
857
855
|
/**
|
|
858
856
|
* The payload of the event, if requested.
|
|
859
857
|
*/
|
|
860
|
-
export type
|
|
858
|
+
export type OneHundredAndFortySix = {
|
|
861
859
|
previousProjectName: string;
|
|
862
860
|
newProjectName: string;
|
|
863
861
|
destinationAccountName: string;
|
|
@@ -866,7 +864,7 @@ export type OneHundredAndFortyFive = {
|
|
|
866
864
|
/**
|
|
867
865
|
* The payload of the event, if requested.
|
|
868
866
|
*/
|
|
869
|
-
export type
|
|
867
|
+
export type OneHundredAndFortyFive = {
|
|
870
868
|
projectName: string;
|
|
871
869
|
destinationAccountName: string | null;
|
|
872
870
|
transferId?: string | undefined;
|
|
@@ -874,7 +872,7 @@ export type OneHundredAndFortyFour = {
|
|
|
874
872
|
/**
|
|
875
873
|
* The payload of the event, if requested.
|
|
876
874
|
*/
|
|
877
|
-
export type
|
|
875
|
+
export type OneHundredAndFortyFour = {
|
|
878
876
|
projectId: string;
|
|
879
877
|
projectName: string;
|
|
880
878
|
originAccountName: string;
|
|
@@ -885,7 +883,7 @@ export type OneHundredAndFortyThree = {
|
|
|
885
883
|
/**
|
|
886
884
|
* The payload of the event, if requested.
|
|
887
885
|
*/
|
|
888
|
-
export type
|
|
886
|
+
export type OneHundredAndFortyThree = {
|
|
889
887
|
requestedTeamName: string;
|
|
890
888
|
requestedUserName?: string | undefined;
|
|
891
889
|
gitUsername?: string | undefined;
|
|
@@ -896,7 +894,7 @@ export type OneHundredAndFortyTwo = {
|
|
|
896
894
|
/**
|
|
897
895
|
* The payload of the event, if requested.
|
|
898
896
|
*/
|
|
899
|
-
export type
|
|
897
|
+
export type OneHundredAndFortyTwo = {
|
|
900
898
|
teamName: string;
|
|
901
899
|
username?: string | undefined;
|
|
902
900
|
gitUsername?: string | null | undefined;
|
|
@@ -907,7 +905,7 @@ export type OneHundredAndFortyOne = {
|
|
|
907
905
|
/**
|
|
908
906
|
* The payload of the event, if requested.
|
|
909
907
|
*/
|
|
910
|
-
export type
|
|
908
|
+
export type OneHundredAndFortyOne = {
|
|
911
909
|
teamName: string;
|
|
912
910
|
username?: string | undefined;
|
|
913
911
|
gitUsername?: string | undefined;
|
|
@@ -920,21 +918,21 @@ export type OneHundredAndForty = {
|
|
|
920
918
|
/**
|
|
921
919
|
* The payload of the event, if requested.
|
|
922
920
|
*/
|
|
923
|
-
export type
|
|
921
|
+
export type OneHundredAndForty = {
|
|
924
922
|
price?: number | undefined;
|
|
925
923
|
currency?: string | undefined;
|
|
926
924
|
};
|
|
927
925
|
/**
|
|
928
926
|
* The payload of the event, if requested.
|
|
929
927
|
*/
|
|
930
|
-
export type
|
|
928
|
+
export type OneHundredAndThirtyNine = {
|
|
931
929
|
previewDeploymentSuffix?: string | null | undefined;
|
|
932
930
|
previousPreviewDeploymentSuffix?: string | null | undefined;
|
|
933
931
|
};
|
|
934
932
|
/**
|
|
935
933
|
* The payload of the event, if requested.
|
|
936
934
|
*/
|
|
937
|
-
export type
|
|
935
|
+
export type OneHundredAndThirtyEight = {
|
|
938
936
|
price?: number | undefined;
|
|
939
937
|
currency?: string | undefined;
|
|
940
938
|
enabled?: boolean | undefined;
|
|
@@ -942,26 +940,26 @@ export type OneHundredAndThirtySeven = {
|
|
|
942
940
|
/**
|
|
943
941
|
* The payload of the event, if requested.
|
|
944
942
|
*/
|
|
945
|
-
export type
|
|
943
|
+
export type OneHundredAndThirtySeven = {
|
|
946
944
|
username: string;
|
|
947
945
|
};
|
|
948
946
|
/**
|
|
949
947
|
* The payload of the event, if requested.
|
|
950
948
|
*/
|
|
951
|
-
export type
|
|
949
|
+
export type OneHundredAndThirtySix = {
|
|
952
950
|
email: string;
|
|
953
951
|
prevEmail: string;
|
|
954
952
|
};
|
|
955
953
|
/**
|
|
956
954
|
* The payload of the event, if requested.
|
|
957
955
|
*/
|
|
958
|
-
export type
|
|
956
|
+
export type OneHundredAndThirtyFive = {
|
|
959
957
|
mfaEnabled: boolean;
|
|
960
958
|
};
|
|
961
959
|
/**
|
|
962
960
|
* The payload of the event, if requested.
|
|
963
961
|
*/
|
|
964
|
-
export type
|
|
962
|
+
export type OneHundredAndThirtyFour = {
|
|
965
963
|
enabled: boolean;
|
|
966
964
|
totpVerified: boolean;
|
|
967
965
|
};
|
|
@@ -976,7 +974,7 @@ export type PayloadNext = {
|
|
|
976
974
|
/**
|
|
977
975
|
* The payload of the event, if requested.
|
|
978
976
|
*/
|
|
979
|
-
export type
|
|
977
|
+
export type OneHundredAndThirtyThree = {
|
|
980
978
|
previous: PayloadPrevious;
|
|
981
979
|
next: PayloadNext;
|
|
982
980
|
};
|
|
@@ -989,7 +987,7 @@ export type PayloadRemoteCaching = {
|
|
|
989
987
|
/**
|
|
990
988
|
* The payload of the event, if requested.
|
|
991
989
|
*/
|
|
992
|
-
export type
|
|
990
|
+
export type OneHundredAndThirtyTwo = {
|
|
993
991
|
/**
|
|
994
992
|
* Represents configuration for remote caching
|
|
995
993
|
*/
|
|
@@ -998,31 +996,31 @@ export type OneHundredAndThirtyOne = {
|
|
|
998
996
|
/**
|
|
999
997
|
* The payload of the event, if requested.
|
|
1000
998
|
*/
|
|
1001
|
-
export type
|
|
999
|
+
export type OneHundredAndThirtyOne = {
|
|
1002
1000
|
slug?: string | undefined;
|
|
1003
1001
|
};
|
|
1004
1002
|
/**
|
|
1005
1003
|
* The payload of the event, if requested.
|
|
1006
1004
|
*/
|
|
1007
|
-
export type
|
|
1005
|
+
export type OneHundredAndThirty = {
|
|
1008
1006
|
name?: string | undefined;
|
|
1009
1007
|
};
|
|
1010
1008
|
/**
|
|
1011
1009
|
* The payload of the event, if requested.
|
|
1012
1010
|
*/
|
|
1013
|
-
export type
|
|
1011
|
+
export type OneHundredAndTwentyNine = {
|
|
1014
1012
|
enforced: boolean;
|
|
1015
1013
|
};
|
|
1016
|
-
export type
|
|
1014
|
+
export type UserEventPayload128User = {
|
|
1017
1015
|
id: string;
|
|
1018
1016
|
username: string;
|
|
1019
1017
|
};
|
|
1020
1018
|
/**
|
|
1021
1019
|
* The payload of the event, if requested.
|
|
1022
1020
|
*/
|
|
1023
|
-
export type
|
|
1021
|
+
export type OneHundredAndTwentyEight = {
|
|
1024
1022
|
entitlement: string;
|
|
1025
|
-
user:
|
|
1023
|
+
user: UserEventPayload128User;
|
|
1026
1024
|
previousCanceledAt?: string | undefined;
|
|
1027
1025
|
};
|
|
1028
1026
|
export type UserEventPayloadUser = {
|
|
@@ -1032,7 +1030,7 @@ export type UserEventPayloadUser = {
|
|
|
1032
1030
|
/**
|
|
1033
1031
|
* The payload of the event, if requested.
|
|
1034
1032
|
*/
|
|
1035
|
-
export type
|
|
1033
|
+
export type OneHundredAndTwentySeven = {
|
|
1036
1034
|
entitlement: string;
|
|
1037
1035
|
user: UserEventPayloadUser;
|
|
1038
1036
|
};
|
|
@@ -1043,7 +1041,7 @@ export type UpdatedUser = {
|
|
|
1043
1041
|
/**
|
|
1044
1042
|
* The payload of the event, if requested.
|
|
1045
1043
|
*/
|
|
1046
|
-
export type
|
|
1044
|
+
export type OneHundredAndTwentySix = {
|
|
1047
1045
|
directoryType?: string | undefined;
|
|
1048
1046
|
updatedUser?: UpdatedUser | undefined;
|
|
1049
1047
|
role?: string | undefined;
|
|
@@ -1053,7 +1051,7 @@ export type OneHundredAndTwentyFive = {
|
|
|
1053
1051
|
/**
|
|
1054
1052
|
* The payload of the event, if requested.
|
|
1055
1053
|
*/
|
|
1056
|
-
export type
|
|
1054
|
+
export type OneHundredAndTwentyFive = {
|
|
1057
1055
|
role?: string | undefined;
|
|
1058
1056
|
uid: string;
|
|
1059
1057
|
origin?: string | undefined;
|
|
@@ -1091,7 +1089,7 @@ export type NewPlan = ClosedEnum<typeof NewPlan>;
|
|
|
1091
1089
|
/**
|
|
1092
1090
|
* The payload of the event, if requested.
|
|
1093
1091
|
*/
|
|
1094
|
-
export type
|
|
1092
|
+
export type OneHundredAndTwentyFour = {
|
|
1095
1093
|
deletedUser?: DeletedUser | undefined;
|
|
1096
1094
|
deletedUid?: string | undefined;
|
|
1097
1095
|
githubUsername?: string | null | undefined;
|
|
@@ -1111,7 +1109,7 @@ export type InvitedUser = {
|
|
|
1111
1109
|
/**
|
|
1112
1110
|
* The payload of the event, if requested.
|
|
1113
1111
|
*/
|
|
1114
|
-
export type
|
|
1112
|
+
export type OneHundredAndTwentyThree = {
|
|
1115
1113
|
directoryType?: string | undefined;
|
|
1116
1114
|
ssoType?: string | undefined;
|
|
1117
1115
|
invitedUser?: InvitedUser | undefined;
|
|
@@ -1124,7 +1122,7 @@ export type Reasons = {
|
|
|
1124
1122
|
slug: string;
|
|
1125
1123
|
description: string;
|
|
1126
1124
|
};
|
|
1127
|
-
export declare const
|
|
1125
|
+
export declare const UserEventPayload122Role: {
|
|
1128
1126
|
readonly Owner: "OWNER";
|
|
1129
1127
|
readonly Member: "MEMBER";
|
|
1130
1128
|
readonly Developer: "DEVELOPER";
|
|
@@ -1134,16 +1132,16 @@ export declare const UserEventPayload121Role: {
|
|
|
1134
1132
|
readonly ViewerForPlus: "VIEWER_FOR_PLUS";
|
|
1135
1133
|
readonly Contributor: "CONTRIBUTOR";
|
|
1136
1134
|
};
|
|
1137
|
-
export type
|
|
1135
|
+
export type UserEventPayload122Role = ClosedEnum<typeof UserEventPayload122Role>;
|
|
1138
1136
|
export type PayloadRemovedUsers = {
|
|
1139
|
-
role:
|
|
1137
|
+
role: UserEventPayload122Role;
|
|
1140
1138
|
confirmed: boolean;
|
|
1141
1139
|
confirmedAt?: number | undefined;
|
|
1142
1140
|
};
|
|
1143
1141
|
/**
|
|
1144
1142
|
* The payload of the event, if requested.
|
|
1145
1143
|
*/
|
|
1146
|
-
export type
|
|
1144
|
+
export type OneHundredAndTwentyTwo = {
|
|
1147
1145
|
slug: string;
|
|
1148
1146
|
teamId: string;
|
|
1149
1147
|
by: string;
|
|
@@ -1158,7 +1156,7 @@ export type OneHundredAndTwentyOne = {
|
|
|
1158
1156
|
/**
|
|
1159
1157
|
* The payload of the event, if requested.
|
|
1160
1158
|
*/
|
|
1161
|
-
export type
|
|
1159
|
+
export type OneHundredAndTwentyOne = {
|
|
1162
1160
|
slug: string;
|
|
1163
1161
|
};
|
|
1164
1162
|
export type Store = {
|
|
@@ -1168,7 +1166,7 @@ export type Store = {
|
|
|
1168
1166
|
/**
|
|
1169
1167
|
* The payload of the event, if requested.
|
|
1170
1168
|
*/
|
|
1171
|
-
export type
|
|
1169
|
+
export type OneHundredAndTwenty = {
|
|
1172
1170
|
store: Store;
|
|
1173
1171
|
ownerId?: string | undefined;
|
|
1174
1172
|
};
|
|
@@ -1180,7 +1178,7 @@ export type StoreType = ClosedEnum<typeof StoreType>;
|
|
|
1180
1178
|
/**
|
|
1181
1179
|
* The payload of the event, if requested.
|
|
1182
1180
|
*/
|
|
1183
|
-
export type
|
|
1181
|
+
export type OneHundredAndNineteen = {
|
|
1184
1182
|
storeType: StoreType;
|
|
1185
1183
|
};
|
|
1186
1184
|
export declare const UserEventPayloadType: {
|
|
@@ -1194,7 +1192,7 @@ export type UserEventPayloadType = ClosedEnum<typeof UserEventPayloadType>;
|
|
|
1194
1192
|
/**
|
|
1195
1193
|
* The payload of the event, if requested.
|
|
1196
1194
|
*/
|
|
1197
|
-
export type
|
|
1195
|
+
export type OneHundredAndEighteen = {
|
|
1198
1196
|
id: string;
|
|
1199
1197
|
name?: string | undefined;
|
|
1200
1198
|
computeUnitsMax?: number | undefined;
|
|
@@ -1205,19 +1203,19 @@ export type OneHundredAndSeventeen = {
|
|
|
1205
1203
|
/**
|
|
1206
1204
|
* The payload of the event, if requested.
|
|
1207
1205
|
*/
|
|
1208
|
-
export type
|
|
1206
|
+
export type OneHundredAndSeventeen = {
|
|
1209
1207
|
webhookUrl?: string | undefined;
|
|
1210
1208
|
};
|
|
1211
1209
|
/**
|
|
1212
1210
|
* The budget type
|
|
1213
1211
|
*/
|
|
1214
|
-
export declare const
|
|
1212
|
+
export declare const UserEventPayload116Type: {
|
|
1215
1213
|
readonly Fixed: "fixed";
|
|
1216
1214
|
};
|
|
1217
1215
|
/**
|
|
1218
1216
|
* The budget type
|
|
1219
1217
|
*/
|
|
1220
|
-
export type
|
|
1218
|
+
export type UserEventPayload116Type = ClosedEnum<typeof UserEventPayload116Type>;
|
|
1221
1219
|
/**
|
|
1222
1220
|
* The acive pricing plan the team is billed with
|
|
1223
1221
|
*/
|
|
@@ -1237,7 +1235,7 @@ export type UserEventPayloadBudget = {
|
|
|
1237
1235
|
/**
|
|
1238
1236
|
* The budget type
|
|
1239
1237
|
*/
|
|
1240
|
-
type:
|
|
1238
|
+
type: UserEventPayload116Type;
|
|
1241
1239
|
/**
|
|
1242
1240
|
* Budget amount (USD / dollars)
|
|
1243
1241
|
*/
|
|
@@ -1290,7 +1288,7 @@ export type UserEventPayloadBudget = {
|
|
|
1290
1288
|
/**
|
|
1291
1289
|
* The payload of the event, if requested.
|
|
1292
1290
|
*/
|
|
1293
|
-
export type
|
|
1291
|
+
export type OneHundredAndSixteen = {
|
|
1294
1292
|
/**
|
|
1295
1293
|
* Represents a budget for tracking and notifying teams on their spending.
|
|
1296
1294
|
*/
|
|
@@ -1300,13 +1298,13 @@ export type OneHundredAndFifteen = {
|
|
|
1300
1298
|
/**
|
|
1301
1299
|
* The budget type
|
|
1302
1300
|
*/
|
|
1303
|
-
export declare const
|
|
1301
|
+
export declare const UserEventPayload115Type: {
|
|
1304
1302
|
readonly Fixed: "fixed";
|
|
1305
1303
|
};
|
|
1306
1304
|
/**
|
|
1307
1305
|
* The budget type
|
|
1308
1306
|
*/
|
|
1309
|
-
export type
|
|
1307
|
+
export type UserEventPayload115Type = ClosedEnum<typeof UserEventPayload115Type>;
|
|
1310
1308
|
/**
|
|
1311
1309
|
* The acive pricing plan the team is billed with
|
|
1312
1310
|
*/
|
|
@@ -1326,7 +1324,7 @@ export type PayloadBudget = {
|
|
|
1326
1324
|
/**
|
|
1327
1325
|
* The budget type
|
|
1328
1326
|
*/
|
|
1329
|
-
type:
|
|
1327
|
+
type: UserEventPayload115Type;
|
|
1330
1328
|
/**
|
|
1331
1329
|
* Budget amount (USD / dollars)
|
|
1332
1330
|
*/
|
|
@@ -1379,7 +1377,7 @@ export type PayloadBudget = {
|
|
|
1379
1377
|
/**
|
|
1380
1378
|
* The payload of the event, if requested.
|
|
1381
1379
|
*/
|
|
1382
|
-
export type
|
|
1380
|
+
export type OneHundredAndFifteen = {
|
|
1383
1381
|
/**
|
|
1384
1382
|
* Represents a budget for tracking and notifying teams on their spending.
|
|
1385
1383
|
*/
|
|
@@ -1388,13 +1386,13 @@ export type OneHundredAndFourteen = {
|
|
|
1388
1386
|
/**
|
|
1389
1387
|
* The budget type
|
|
1390
1388
|
*/
|
|
1391
|
-
export declare const
|
|
1389
|
+
export declare const UserEventPayload114Type: {
|
|
1392
1390
|
readonly Fixed: "fixed";
|
|
1393
1391
|
};
|
|
1394
1392
|
/**
|
|
1395
1393
|
* The budget type
|
|
1396
1394
|
*/
|
|
1397
|
-
export type
|
|
1395
|
+
export type UserEventPayload114Type = ClosedEnum<typeof UserEventPayload114Type>;
|
|
1398
1396
|
/**
|
|
1399
1397
|
* The acive pricing plan the team is billed with
|
|
1400
1398
|
*/
|
|
@@ -1414,7 +1412,7 @@ export type BudgetItem = {
|
|
|
1414
1412
|
/**
|
|
1415
1413
|
* The budget type
|
|
1416
1414
|
*/
|
|
1417
|
-
type:
|
|
1415
|
+
type: UserEventPayload114Type;
|
|
1418
1416
|
/**
|
|
1419
1417
|
* Budget amount (USD / dollars)
|
|
1420
1418
|
*/
|
|
@@ -1473,7 +1471,7 @@ export type Budget = {
|
|
|
1473
1471
|
/**
|
|
1474
1472
|
* The payload of the event, if requested.
|
|
1475
1473
|
*/
|
|
1476
|
-
export type
|
|
1474
|
+
export type OneHundredAndFourteen = {
|
|
1477
1475
|
budget: Budget;
|
|
1478
1476
|
};
|
|
1479
1477
|
export type ScalingRules = {
|
|
@@ -1483,7 +1481,7 @@ export type ScalingRules = {
|
|
|
1483
1481
|
/**
|
|
1484
1482
|
* The payload of the event, if requested.
|
|
1485
1483
|
*/
|
|
1486
|
-
export type
|
|
1484
|
+
export type OneHundredAndThirteen = {
|
|
1487
1485
|
scalingRules: {
|
|
1488
1486
|
[k: string]: ScalingRules;
|
|
1489
1487
|
};
|
|
@@ -1494,13 +1492,13 @@ export type OneHundredAndTwelve = {
|
|
|
1494
1492
|
/**
|
|
1495
1493
|
* The payload of the event, if requested.
|
|
1496
1494
|
*/
|
|
1497
|
-
export type
|
|
1495
|
+
export type OneHundredAndTwelve = {
|
|
1498
1496
|
bio: string;
|
|
1499
1497
|
};
|
|
1500
1498
|
/**
|
|
1501
1499
|
* The payload of the event, if requested.
|
|
1502
1500
|
*/
|
|
1503
|
-
export type
|
|
1501
|
+
export type OneHundredAndEleven = {
|
|
1504
1502
|
oldName: string;
|
|
1505
1503
|
newName: string;
|
|
1506
1504
|
uid?: string | undefined;
|
|
@@ -1512,11 +1510,11 @@ export type Name = Name2 | string;
|
|
|
1512
1510
|
/**
|
|
1513
1511
|
* The payload of the event, if requested.
|
|
1514
1512
|
*/
|
|
1515
|
-
export type
|
|
1513
|
+
export type OneHundredAndTen = {
|
|
1516
1514
|
uid: string;
|
|
1517
1515
|
name: Name2 | string;
|
|
1518
1516
|
};
|
|
1519
|
-
export type
|
|
1517
|
+
export type UserEventPayload109Team = {
|
|
1520
1518
|
id: string;
|
|
1521
1519
|
name?: string | undefined;
|
|
1522
1520
|
};
|
|
@@ -1526,11 +1524,11 @@ export type PayloadPreviousRule = {
|
|
|
1526
1524
|
/**
|
|
1527
1525
|
* The payload of the event, if requested.
|
|
1528
1526
|
*/
|
|
1529
|
-
export type
|
|
1530
|
-
team:
|
|
1527
|
+
export type OneHundredAndNine = {
|
|
1528
|
+
team: UserEventPayload109Team;
|
|
1531
1529
|
previousRule: PayloadPreviousRule;
|
|
1532
1530
|
};
|
|
1533
|
-
export type
|
|
1531
|
+
export type UserEventPayload108Team = {
|
|
1534
1532
|
id: string;
|
|
1535
1533
|
name?: string | undefined;
|
|
1536
1534
|
};
|
|
@@ -1543,35 +1541,35 @@ export type NextRule = {
|
|
|
1543
1541
|
/**
|
|
1544
1542
|
* The payload of the event, if requested.
|
|
1545
1543
|
*/
|
|
1546
|
-
export type
|
|
1547
|
-
team:
|
|
1544
|
+
export type OneHundredAndEight = {
|
|
1545
|
+
team: UserEventPayload108Team;
|
|
1548
1546
|
previousRule?: PreviousRule | undefined;
|
|
1549
1547
|
nextRule?: NextRule | undefined;
|
|
1550
1548
|
};
|
|
1551
1549
|
/**
|
|
1552
1550
|
* The payload of the event, if requested.
|
|
1553
1551
|
*/
|
|
1554
|
-
export type
|
|
1552
|
+
export type OneHundredAndSeven = {
|
|
1555
1553
|
email: string;
|
|
1556
1554
|
};
|
|
1557
1555
|
/**
|
|
1558
1556
|
* The payload of the event, if requested.
|
|
1559
1557
|
*/
|
|
1560
|
-
export type
|
|
1558
|
+
export type OneHundredAndSix = {
|
|
1561
1559
|
email: string;
|
|
1562
1560
|
verified: boolean;
|
|
1563
1561
|
};
|
|
1564
1562
|
/**
|
|
1565
1563
|
* The payload of the event, if requested.
|
|
1566
1564
|
*/
|
|
1567
|
-
export type
|
|
1565
|
+
export type OneHundredAndFive = {
|
|
1568
1566
|
instances: number;
|
|
1569
1567
|
url: string;
|
|
1570
1568
|
};
|
|
1571
1569
|
/**
|
|
1572
1570
|
* The payload of the event, if requested.
|
|
1573
1571
|
*/
|
|
1574
|
-
export type
|
|
1572
|
+
export type OneHundredAndFour = {
|
|
1575
1573
|
gitProvider: string;
|
|
1576
1574
|
gitProviderGroupDescriptor: string;
|
|
1577
1575
|
gitScope: string;
|
|
@@ -1579,7 +1577,7 @@ export type OneHundredAndThree = {
|
|
|
1579
1577
|
/**
|
|
1580
1578
|
* The payload of the event, if requested.
|
|
1581
1579
|
*/
|
|
1582
|
-
export type
|
|
1580
|
+
export type OneHundredAndThree = {
|
|
1583
1581
|
projectId: string;
|
|
1584
1582
|
projectName: string;
|
|
1585
1583
|
targetDeploymentId?: string | undefined;
|
|
@@ -1588,7 +1586,7 @@ export type OneHundredAndTwo = {
|
|
|
1588
1586
|
/**
|
|
1589
1587
|
* The payload of the event, if requested.
|
|
1590
1588
|
*/
|
|
1591
|
-
export type
|
|
1589
|
+
export type OneHundredAndTwo = {
|
|
1592
1590
|
projectId: string;
|
|
1593
1591
|
projectName: string;
|
|
1594
1592
|
targetDeploymentId?: string | undefined;
|
|
@@ -1596,7 +1594,7 @@ export type OneHundredAndOne = {
|
|
|
1596
1594
|
/**
|
|
1597
1595
|
* The payload of the event, if requested.
|
|
1598
1596
|
*/
|
|
1599
|
-
export type
|
|
1597
|
+
export type OneHundredAndOne = {
|
|
1600
1598
|
projectId: string;
|
|
1601
1599
|
projectName: string;
|
|
1602
1600
|
elasticConcurrencyEnabled: boolean;
|
|
@@ -1605,7 +1603,7 @@ export type OneHundred = {
|
|
|
1605
1603
|
/**
|
|
1606
1604
|
* The payload of the event, if requested.
|
|
1607
1605
|
*/
|
|
1608
|
-
export type
|
|
1606
|
+
export type OneHundred = {
|
|
1609
1607
|
projectId: string;
|
|
1610
1608
|
projectName: string;
|
|
1611
1609
|
buildMachineType?: string | undefined;
|
|
@@ -1616,36 +1614,36 @@ export type StaticIps = {
|
|
|
1616
1614
|
enabled: boolean;
|
|
1617
1615
|
regions?: Array<string> | undefined;
|
|
1618
1616
|
};
|
|
1619
|
-
export type
|
|
1617
|
+
export type UserEventPayload99Project = {
|
|
1620
1618
|
id: string;
|
|
1621
1619
|
staticIps: StaticIps;
|
|
1622
1620
|
};
|
|
1623
1621
|
export type Next = {
|
|
1624
|
-
project:
|
|
1622
|
+
project: UserEventPayload99Project;
|
|
1625
1623
|
};
|
|
1626
1624
|
export type PayloadStaticIps = {
|
|
1627
1625
|
builds?: boolean | undefined;
|
|
1628
1626
|
enabled: boolean;
|
|
1629
1627
|
regions?: Array<string> | undefined;
|
|
1630
1628
|
};
|
|
1631
|
-
export type
|
|
1629
|
+
export type UserEventPayload99PreviousProject = {
|
|
1632
1630
|
id: string;
|
|
1633
1631
|
staticIps: PayloadStaticIps;
|
|
1634
1632
|
};
|
|
1635
1633
|
export type Previous = {
|
|
1636
|
-
project:
|
|
1634
|
+
project: UserEventPayload99PreviousProject;
|
|
1637
1635
|
};
|
|
1638
1636
|
/**
|
|
1639
1637
|
* The payload of the event, if requested.
|
|
1640
1638
|
*/
|
|
1641
|
-
export type
|
|
1639
|
+
export type NinetyNine = {
|
|
1642
1640
|
next: Next;
|
|
1643
1641
|
previous: Previous;
|
|
1644
1642
|
};
|
|
1645
1643
|
/**
|
|
1646
1644
|
* The payload of the event, if requested.
|
|
1647
1645
|
*/
|
|
1648
|
-
export type
|
|
1646
|
+
export type NinetyEight = {
|
|
1649
1647
|
source: string;
|
|
1650
1648
|
projectId: string;
|
|
1651
1649
|
};
|
|
@@ -1657,7 +1655,7 @@ export type PayloadReasonCode = ClosedEnum<typeof PayloadReasonCode>;
|
|
|
1657
1655
|
/**
|
|
1658
1656
|
* The payload of the event, if requested.
|
|
1659
1657
|
*/
|
|
1660
|
-
export type
|
|
1658
|
+
export type NinetySeven = {
|
|
1661
1659
|
projectId: string;
|
|
1662
1660
|
reasonCode?: PayloadReasonCode | undefined;
|
|
1663
1661
|
};
|
|
@@ -1670,11 +1668,11 @@ export type ReasonCode = ClosedEnum<typeof ReasonCode>;
|
|
|
1670
1668
|
/**
|
|
1671
1669
|
* The payload of the event, if requested.
|
|
1672
1670
|
*/
|
|
1673
|
-
export type
|
|
1671
|
+
export type NinetySix = {
|
|
1674
1672
|
projectId: string;
|
|
1675
1673
|
reasonCode?: ReasonCode | undefined;
|
|
1676
1674
|
};
|
|
1677
|
-
export type
|
|
1675
|
+
export type UserEventPayload95Team = {
|
|
1678
1676
|
id: string;
|
|
1679
1677
|
name: string;
|
|
1680
1678
|
};
|
|
@@ -1718,7 +1716,7 @@ export type NewConnectConfigurations = {
|
|
|
1718
1716
|
createdAt: number;
|
|
1719
1717
|
updatedAt: number;
|
|
1720
1718
|
};
|
|
1721
|
-
export type
|
|
1719
|
+
export type UserEventPayload95Project = {
|
|
1722
1720
|
id: string;
|
|
1723
1721
|
name?: string | undefined;
|
|
1724
1722
|
oldConnectConfigurations: Array<OldConnectConfigurations> | null;
|
|
@@ -1727,30 +1725,30 @@ export type UserEventPayload94Project = {
|
|
|
1727
1725
|
/**
|
|
1728
1726
|
* The payload of the event, if requested.
|
|
1729
1727
|
*/
|
|
1730
|
-
export type
|
|
1731
|
-
team:
|
|
1732
|
-
project:
|
|
1728
|
+
export type NinetyFive = {
|
|
1729
|
+
team: UserEventPayload95Team;
|
|
1730
|
+
project: UserEventPayload95Project;
|
|
1733
1731
|
};
|
|
1734
1732
|
/**
|
|
1735
1733
|
* The payload of the event, if requested.
|
|
1736
1734
|
*/
|
|
1737
|
-
export type
|
|
1735
|
+
export type NinetyFour = {
|
|
1738
1736
|
name: string;
|
|
1739
1737
|
ownerId: string;
|
|
1740
1738
|
};
|
|
1741
|
-
export declare const
|
|
1739
|
+
export declare const UserEventPayload93Action: {
|
|
1742
1740
|
readonly Enabled: "enabled";
|
|
1743
1741
|
readonly Disabled: "disabled";
|
|
1744
1742
|
readonly Regenerated: "regenerated";
|
|
1745
1743
|
readonly Updated: "updated";
|
|
1746
1744
|
};
|
|
1747
|
-
export type
|
|
1745
|
+
export type UserEventPayload93Action = ClosedEnum<typeof UserEventPayload93Action>;
|
|
1748
1746
|
/**
|
|
1749
1747
|
* The payload of the event, if requested.
|
|
1750
1748
|
*/
|
|
1751
|
-
export type
|
|
1749
|
+
export type NinetyThree = {
|
|
1752
1750
|
projectName: string;
|
|
1753
|
-
action:
|
|
1751
|
+
action: UserEventPayload93Action;
|
|
1754
1752
|
isEnvVar?: boolean | undefined;
|
|
1755
1753
|
note?: string | undefined;
|
|
1756
1754
|
};
|
|
@@ -1769,7 +1767,7 @@ export type OldOptionsAllowlist = {
|
|
|
1769
1767
|
/**
|
|
1770
1768
|
* The payload of the event, if requested.
|
|
1771
1769
|
*/
|
|
1772
|
-
export type
|
|
1770
|
+
export type NinetyTwo = {
|
|
1773
1771
|
projectName: string;
|
|
1774
1772
|
optionsAllowlist?: OptionsAllowlist | null | undefined;
|
|
1775
1773
|
oldOptionsAllowlist?: OldOptionsAllowlist | null | undefined;
|
|
@@ -1793,7 +1791,7 @@ export type OldTrustedIps = ClosedEnum<typeof OldTrustedIps>;
|
|
|
1793
1791
|
/**
|
|
1794
1792
|
* The payload of the event, if requested.
|
|
1795
1793
|
*/
|
|
1796
|
-
export type
|
|
1794
|
+
export type NinetyOne = {
|
|
1797
1795
|
projectName: string;
|
|
1798
1796
|
trustedIps?: TrustedIps | null | undefined;
|
|
1799
1797
|
oldTrustedIps?: OldTrustedIps | null | undefined;
|
|
@@ -1839,7 +1837,7 @@ export type OldPasswordProtection = OldPasswordProtection1 | OldPasswordProtecti
|
|
|
1839
1837
|
/**
|
|
1840
1838
|
* The payload of the event, if requested.
|
|
1841
1839
|
*/
|
|
1842
|
-
export type
|
|
1840
|
+
export type Ninety = {
|
|
1843
1841
|
projectName: string;
|
|
1844
1842
|
passwordProtection: PasswordProtection1 | PasswordProtection2 | null;
|
|
1845
1843
|
oldPasswordProtection: OldPasswordProtection1 | OldPasswordProtection2 | null;
|
|
@@ -1899,7 +1897,7 @@ export type OldSsoProtection = OldSsoProtection1 | OldSsoProtection2;
|
|
|
1899
1897
|
/**
|
|
1900
1898
|
* The payload of the event, if requested.
|
|
1901
1899
|
*/
|
|
1902
|
-
export type
|
|
1900
|
+
export type EightyNine = {
|
|
1903
1901
|
projectName: string;
|
|
1904
1902
|
ssoProtection: SsoProtection1 | SsoProtection2 | null;
|
|
1905
1903
|
oldSsoProtection: OldSsoProtection1 | OldSsoProtection2 | null;
|
|
@@ -1907,14 +1905,14 @@ export type EightyEight = {
|
|
|
1907
1905
|
/**
|
|
1908
1906
|
* The payload of the event, if requested.
|
|
1909
1907
|
*/
|
|
1910
|
-
export type
|
|
1908
|
+
export type EightyEight = {
|
|
1911
1909
|
projectName?: string | undefined;
|
|
1912
1910
|
projectId: string;
|
|
1913
1911
|
};
|
|
1914
1912
|
/**
|
|
1915
1913
|
* The payload of the event, if requested.
|
|
1916
1914
|
*/
|
|
1917
|
-
export type
|
|
1915
|
+
export type EightySeven = {
|
|
1918
1916
|
projectName?: string | undefined;
|
|
1919
1917
|
projectId: string;
|
|
1920
1918
|
projectAnalytics?: {
|
|
@@ -1945,7 +1943,7 @@ export type PrevProjectAnalytics = {
|
|
|
1945
1943
|
/**
|
|
1946
1944
|
* The payload of the event, if requested.
|
|
1947
1945
|
*/
|
|
1948
|
-
export type
|
|
1946
|
+
export type EightySix = {
|
|
1949
1947
|
projectName?: string | undefined;
|
|
1950
1948
|
projectId: string;
|
|
1951
1949
|
projectAnalytics: ProjectAnalytics | null;
|
|
@@ -1954,7 +1952,7 @@ export type EightyFive = {
|
|
|
1954
1952
|
/**
|
|
1955
1953
|
* The payload of the event, if requested.
|
|
1956
1954
|
*/
|
|
1957
|
-
export type
|
|
1955
|
+
export type EightyFive = {
|
|
1958
1956
|
projectName: string;
|
|
1959
1957
|
branch: string;
|
|
1960
1958
|
};
|
|
@@ -2006,7 +2004,7 @@ export type RemovedUsers = {
|
|
|
2006
2004
|
/**
|
|
2007
2005
|
* The payload of the event, if requested.
|
|
2008
2006
|
*/
|
|
2009
|
-
export type
|
|
2007
|
+
export type EightyFour = {
|
|
2010
2008
|
plan: string;
|
|
2011
2009
|
removedUsers?: {
|
|
2012
2010
|
[k: string]: RemovedUsers;
|
|
@@ -2025,13 +2023,13 @@ export type EightyThree = {
|
|
|
2025
2023
|
/**
|
|
2026
2024
|
* The payload of the event, if requested.
|
|
2027
2025
|
*/
|
|
2028
|
-
export type
|
|
2026
|
+
export type EightyThree = {
|
|
2029
2027
|
projectName: string;
|
|
2030
2028
|
};
|
|
2031
2029
|
/**
|
|
2032
2030
|
* The payload of the event, if requested.
|
|
2033
2031
|
*/
|
|
2034
|
-
export type
|
|
2032
|
+
export type EightyTwo = {
|
|
2035
2033
|
projectId: string;
|
|
2036
2034
|
toDeploymentId: string;
|
|
2037
2035
|
projectName: string;
|
|
@@ -2039,28 +2037,28 @@ export type EightyOne = {
|
|
|
2039
2037
|
/**
|
|
2040
2038
|
* The payload of the event, if requested.
|
|
2041
2039
|
*/
|
|
2042
|
-
export type
|
|
2040
|
+
export type EightyOne = {
|
|
2043
2041
|
drainUrl: string | null;
|
|
2044
2042
|
integrationName?: string | undefined;
|
|
2045
2043
|
};
|
|
2046
2044
|
/**
|
|
2047
2045
|
* The payload of the event, if requested.
|
|
2048
2046
|
*/
|
|
2049
|
-
export type
|
|
2047
|
+
export type Eighty = {
|
|
2050
2048
|
logDrainUrl: string;
|
|
2051
2049
|
integrationName?: string | undefined;
|
|
2052
2050
|
};
|
|
2053
2051
|
/**
|
|
2054
2052
|
* The payload of the event, if requested.
|
|
2055
2053
|
*/
|
|
2056
|
-
export type
|
|
2054
|
+
export type SeventyNine = {
|
|
2057
2055
|
logDrainUrl: string | null;
|
|
2058
2056
|
integrationName?: string | undefined;
|
|
2059
2057
|
};
|
|
2060
2058
|
/**
|
|
2061
2059
|
* The payload of the event, if requested.
|
|
2062
2060
|
*/
|
|
2063
|
-
export type
|
|
2061
|
+
export type SeventyEight = {
|
|
2064
2062
|
integrationId: string;
|
|
2065
2063
|
configurationId: string;
|
|
2066
2064
|
integrationSlug: string;
|
|
@@ -2072,13 +2070,29 @@ export type SeventySeven = {
|
|
|
2072
2070
|
/**
|
|
2073
2071
|
* The payload of the event, if requested.
|
|
2074
2072
|
*/
|
|
2075
|
-
export type
|
|
2073
|
+
export type SeventySeven = {
|
|
2076
2074
|
projectId: string;
|
|
2077
2075
|
fromDeploymentId: string;
|
|
2078
2076
|
toDeploymentId: string;
|
|
2079
2077
|
projectName: string;
|
|
2080
2078
|
reason?: string | undefined;
|
|
2081
2079
|
};
|
|
2080
|
+
export declare const ProjectIds2: {
|
|
2081
|
+
readonly All: "all";
|
|
2082
|
+
};
|
|
2083
|
+
export type ProjectIds2 = ClosedEnum<typeof ProjectIds2>;
|
|
2084
|
+
export type ProjectIds = Array<string> | ProjectIds2;
|
|
2085
|
+
/**
|
|
2086
|
+
* The payload of the event, if requested.
|
|
2087
|
+
*/
|
|
2088
|
+
export type SeventySix = {
|
|
2089
|
+
integrationId: string;
|
|
2090
|
+
configurationId: string;
|
|
2091
|
+
integrationSlug: string;
|
|
2092
|
+
integrationName: string;
|
|
2093
|
+
ownerId: string;
|
|
2094
|
+
projectIds?: Array<string> | ProjectIds2 | undefined;
|
|
2095
|
+
};
|
|
2082
2096
|
/**
|
|
2083
2097
|
* The payload of the event, if requested.
|
|
2084
2098
|
*/
|
|
@@ -4365,7 +4379,7 @@ export type Payload2 = {
|
|
|
4365
4379
|
* The payload of the event, if requested.
|
|
4366
4380
|
*/
|
|
4367
4381
|
export type Payload1 = {};
|
|
4368
|
-
export type Payload = SeventyFour |
|
|
4382
|
+
export type Payload = SeventyFour | SeventyEight | FortySeven | FortyEight | Sixty | SixtySix | SeventyTwo | SeventyFive | SeventySix | OneHundredAndFortyFour | OneHundredAndSeventyFive | Payload2 | FiftyTwo | SeventySeven | OneHundredAndOne | OneHundredAndThirteen | OneHundredAndFiftyFive | Fourteen | Eighteen | TwentyTwo | ThirtySix | ThirtySeven | ThirtyEight | ThirtyNine | FortySix | FiftyFive | FiftySix | FiftySeven | SixtySeven | SixtyEight | SixtyNine | SeventyOne | EightyTwo | EightySix | EightyNine | Ninety | OneHundredAndFour | OneHundredAndTwentyTwo | OneHundredAndFortySix | OneHundredAndFortySeven | OneHundredAndFiftyFour | OneHundredAndFiftySix | OneHundredAndFiftyEight | OneHundredAndSixtyOne | OneHundredAndSeventyTwo | OneHundredAndSeventyThree | OneHundredAndSeventyFour | Three | Four | Six | Seven | Eight | Nineteen | Twenty | TwentyThree | TwentySeven | ThirtyThree | FortyOne | FortyTwo | FortyThree | Fifty | FiftyOne | FiftyFour | SixtyOne | SixtyFive | Seventy | SeventyThree | EightyFive | NinetyThree | NinetyFour | NinetyFive | NinetyEight | NinetyNine | OneHundred | OneHundredAndTwo | OneHundredAndThree | OneHundredAndFive | OneHundredAndSix | OneHundredAndNine | OneHundredAndTen | OneHundredAndEleven | OneHundredAndEighteen | OneHundredAndTwentySeven | OneHundredAndTwentyEight | OneHundredAndThirtyThree | OneHundredAndThirtyFour | OneHundredAndThirtySix | OneHundredAndFortyFive | OneHundredAndFortyEight | OneHundredAndFortyNine | OneHundredAndFifty | OneHundredAndFiftyTwo | OneHundredAndFiftyThree | OneHundredAndFiftyNine | OneHundredAndSixty | OneHundredAndSixtyTwo | OneHundredAndSixtyFour | OneHundredAndSixtyFive | OneHundredAndSixtySix | Five | Seventeen | TwentyFour | TwentySix | TwentyEight | ThirtyTwo | ThirtyFour | ThirtyFive | Forty | FortyFour | FortyFive | FortyNine | FiftyThree | FiftyEight | FiftyNine | SeventyNine | Eighty | EightyOne | EightyThree | EightyFour | EightySeven | EightyEight | NinetyOne | NinetyTwo | NinetySix | NinetySeven | OneHundredAndSeven | OneHundredAndEight | OneHundredAndTwelve | OneHundredAndFourteen | OneHundredAndFifteen | OneHundredAndSixteen | OneHundredAndNineteen | OneHundredAndTwenty | OneHundredAndTwentyOne | OneHundredAndTwentyFive | OneHundredAndTwentySix | OneHundredAndTwentyNine | OneHundredAndThirtyFive | OneHundredAndThirtySeven | OneHundredAndFortyOne | OneHundredAndFortyTwo | OneHundredAndFortyThree | OneHundredAndFiftyOne | OneHundredAndFiftySeven | OneHundredAndSixtyThree | OneHundredAndSixtySeven | OneHundredAndSixtyEight | OneHundredAndSixtyNine | OneHundredAndSeventy | OneHundredAndSeventyOne | Payload1 | Nine | Ten | Eleven | Twelve | Thirteen | Fifteen | Sixteen | TwentyOne | TwentyFive | TwentyNine | Thirty | ThirtyOne | SixtyTwo | SixtyThree | SixtyFour | OneHundredAndSeventeen | OneHundredAndTwentyThree | OneHundredAndTwentyFour | OneHundredAndThirty | OneHundredAndThirtyOne | OneHundredAndThirtyTwo | OneHundredAndThirtyEight | OneHundredAndThirtyNine | OneHundredAndForty;
|
|
4369
4383
|
/**
|
|
4370
4384
|
* Array of events generated by the User.
|
|
4371
4385
|
*/
|
|
@@ -4407,7 +4421,7 @@ export type UserEvent = {
|
|
|
4407
4421
|
* If the principal delegated its authority (for example, a user delegating to an app), then this array contains the ID of the current actor. For example, if `principalId` is "user123" and `viaIds` is `["app456"]`, we can say the event was triggered by - "app456 on behalf of user123", or - "user123 via app4556". Both are equivalent. Arbitrarily long chains of delegation can be represented. For example, if `principalId` is "user123" and `viaIds` is `["service1", "service2"]`, we can say the event was triggered by "user123 via service1 via service2".
|
|
4408
4422
|
*/
|
|
4409
4423
|
viaIds?: Array<string> | undefined;
|
|
4410
|
-
payload?: SeventyFour |
|
|
4424
|
+
payload?: SeventyFour | SeventyEight | FortySeven | FortyEight | Sixty | SixtySix | SeventyTwo | SeventyFive | SeventySix | OneHundredAndFortyFour | OneHundredAndSeventyFive | Payload2 | FiftyTwo | SeventySeven | OneHundredAndOne | OneHundredAndThirteen | OneHundredAndFiftyFive | Fourteen | Eighteen | TwentyTwo | ThirtySix | ThirtySeven | ThirtyEight | ThirtyNine | FortySix | FiftyFive | FiftySix | FiftySeven | SixtySeven | SixtyEight | SixtyNine | SeventyOne | EightyTwo | EightySix | EightyNine | Ninety | OneHundredAndFour | OneHundredAndTwentyTwo | OneHundredAndFortySix | OneHundredAndFortySeven | OneHundredAndFiftyFour | OneHundredAndFiftySix | OneHundredAndFiftyEight | OneHundredAndSixtyOne | OneHundredAndSeventyTwo | OneHundredAndSeventyThree | OneHundredAndSeventyFour | Three | Four | Six | Seven | Eight | Nineteen | Twenty | TwentyThree | TwentySeven | ThirtyThree | FortyOne | FortyTwo | FortyThree | Fifty | FiftyOne | FiftyFour | SixtyOne | SixtyFive | Seventy | SeventyThree | EightyFive | NinetyThree | NinetyFour | NinetyFive | NinetyEight | NinetyNine | OneHundred | OneHundredAndTwo | OneHundredAndThree | OneHundredAndFive | OneHundredAndSix | OneHundredAndNine | OneHundredAndTen | OneHundredAndEleven | OneHundredAndEighteen | OneHundredAndTwentySeven | OneHundredAndTwentyEight | OneHundredAndThirtyThree | OneHundredAndThirtyFour | OneHundredAndThirtySix | OneHundredAndFortyFive | OneHundredAndFortyEight | OneHundredAndFortyNine | OneHundredAndFifty | OneHundredAndFiftyTwo | OneHundredAndFiftyThree | OneHundredAndFiftyNine | OneHundredAndSixty | OneHundredAndSixtyTwo | OneHundredAndSixtyFour | OneHundredAndSixtyFive | OneHundredAndSixtySix | Five | Seventeen | TwentyFour | TwentySix | TwentyEight | ThirtyTwo | ThirtyFour | ThirtyFive | Forty | FortyFour | FortyFive | FortyNine | FiftyThree | FiftyEight | FiftyNine | SeventyNine | Eighty | EightyOne | EightyThree | EightyFour | EightySeven | EightyEight | NinetyOne | NinetyTwo | NinetySix | NinetySeven | OneHundredAndSeven | OneHundredAndEight | OneHundredAndTwelve | OneHundredAndFourteen | OneHundredAndFifteen | OneHundredAndSixteen | OneHundredAndNineteen | OneHundredAndTwenty | OneHundredAndTwentyOne | OneHundredAndTwentyFive | OneHundredAndTwentySix | OneHundredAndTwentyNine | OneHundredAndThirtyFive | OneHundredAndThirtySeven | OneHundredAndFortyOne | OneHundredAndFortyTwo | OneHundredAndFortyThree | OneHundredAndFiftyOne | OneHundredAndFiftySeven | OneHundredAndSixtyThree | OneHundredAndSixtySeven | OneHundredAndSixtyEight | OneHundredAndSixtyNine | OneHundredAndSeventy | OneHundredAndSeventyOne | Payload1 | Nine | Ten | Eleven | Twelve | Thirteen | Fifteen | Sixteen | TwentyOne | TwentyFive | TwentyNine | Thirty | ThirtyOne | SixtyTwo | SixtyThree | SixtyFour | OneHundredAndSeventeen | OneHundredAndTwentyThree | OneHundredAndTwentyFour | OneHundredAndThirty | OneHundredAndThirtyOne | OneHundredAndThirtyTwo | OneHundredAndThirtyEight | OneHundredAndThirtyNine | OneHundredAndForty | undefined;
|
|
4411
4425
|
};
|
|
4412
4426
|
/** @internal */
|
|
4413
4427
|
export declare const UserEventType$inboundSchema: z.ZodNativeEnum<typeof UserEventType>;
|
|
@@ -4561,9 +4575,9 @@ export declare const PayloadApp$outboundSchema: z.ZodType<PayloadApp$Outbound, z
|
|
|
4561
4575
|
export declare function payloadAppToJSON(payloadApp: PayloadApp): string;
|
|
4562
4576
|
export declare function payloadAppFromJSON(jsonString: string): SafeParseResult<PayloadApp, SDKValidationError>;
|
|
4563
4577
|
/** @internal */
|
|
4564
|
-
export declare const
|
|
4578
|
+
export declare const OneHundredAndSeventyFive$inboundSchema: z.ZodType<OneHundredAndSeventyFive, z.ZodTypeDef, unknown>;
|
|
4565
4579
|
/** @internal */
|
|
4566
|
-
export type
|
|
4580
|
+
export type OneHundredAndSeventyFive$Outbound = {
|
|
4567
4581
|
grantType: string;
|
|
4568
4582
|
appName: string;
|
|
4569
4583
|
atTTL: number;
|
|
@@ -4576,31 +4590,31 @@ export type OneHundredAndSeventyFour$Outbound = {
|
|
|
4576
4590
|
sessionId?: string | undefined;
|
|
4577
4591
|
};
|
|
4578
4592
|
/** @internal */
|
|
4579
|
-
export declare const
|
|
4580
|
-
export declare function
|
|
4581
|
-
export declare function
|
|
4593
|
+
export declare const OneHundredAndSeventyFive$outboundSchema: z.ZodType<OneHundredAndSeventyFive$Outbound, z.ZodTypeDef, OneHundredAndSeventyFive>;
|
|
4594
|
+
export declare function oneHundredAndSeventyFiveToJSON(oneHundredAndSeventyFive: OneHundredAndSeventyFive): string;
|
|
4595
|
+
export declare function oneHundredAndSeventyFiveFromJSON(jsonString: string): SafeParseResult<OneHundredAndSeventyFive, SDKValidationError>;
|
|
4582
4596
|
/** @internal */
|
|
4583
|
-
export declare const
|
|
4597
|
+
export declare const UserEventPayload174Team$inboundSchema: z.ZodType<UserEventPayload174Team, z.ZodTypeDef, unknown>;
|
|
4584
4598
|
/** @internal */
|
|
4585
|
-
export type
|
|
4599
|
+
export type UserEventPayload174Team$Outbound = {
|
|
4586
4600
|
id: string;
|
|
4587
4601
|
name: string;
|
|
4588
4602
|
};
|
|
4589
4603
|
/** @internal */
|
|
4590
|
-
export declare const
|
|
4591
|
-
export declare function
|
|
4592
|
-
export declare function
|
|
4604
|
+
export declare const UserEventPayload174Team$outboundSchema: z.ZodType<UserEventPayload174Team$Outbound, z.ZodTypeDef, UserEventPayload174Team>;
|
|
4605
|
+
export declare function userEventPayload174TeamToJSON(userEventPayload174Team: UserEventPayload174Team): string;
|
|
4606
|
+
export declare function userEventPayload174TeamFromJSON(jsonString: string): SafeParseResult<UserEventPayload174Team, SDKValidationError>;
|
|
4593
4607
|
/** @internal */
|
|
4594
|
-
export declare const
|
|
4608
|
+
export declare const UserEventPayload174Configuration$inboundSchema: z.ZodType<UserEventPayload174Configuration, z.ZodTypeDef, unknown>;
|
|
4595
4609
|
/** @internal */
|
|
4596
|
-
export type
|
|
4610
|
+
export type UserEventPayload174Configuration$Outbound = {
|
|
4597
4611
|
id: string;
|
|
4598
4612
|
name?: string | undefined;
|
|
4599
4613
|
};
|
|
4600
4614
|
/** @internal */
|
|
4601
|
-
export declare const
|
|
4602
|
-
export declare function
|
|
4603
|
-
export declare function
|
|
4615
|
+
export declare const UserEventPayload174Configuration$outboundSchema: z.ZodType<UserEventPayload174Configuration$Outbound, z.ZodTypeDef, UserEventPayload174Configuration>;
|
|
4616
|
+
export declare function userEventPayload174ConfigurationToJSON(userEventPayload174Configuration: UserEventPayload174Configuration): string;
|
|
4617
|
+
export declare function userEventPayload174ConfigurationFromJSON(jsonString: string): SafeParseResult<UserEventPayload174Configuration, SDKValidationError>;
|
|
4604
4618
|
/** @internal */
|
|
4605
4619
|
export declare const UserEventPayloadPeering$inboundSchema: z.ZodType<UserEventPayloadPeering, z.ZodTypeDef, unknown>;
|
|
4606
4620
|
/** @internal */
|
|
@@ -4613,40 +4627,40 @@ export declare const UserEventPayloadPeering$outboundSchema: z.ZodType<UserEvent
|
|
|
4613
4627
|
export declare function userEventPayloadPeeringToJSON(userEventPayloadPeering: UserEventPayloadPeering): string;
|
|
4614
4628
|
export declare function userEventPayloadPeeringFromJSON(jsonString: string): SafeParseResult<UserEventPayloadPeering, SDKValidationError>;
|
|
4615
4629
|
/** @internal */
|
|
4616
|
-
export declare const
|
|
4630
|
+
export declare const OneHundredAndSeventyFour$inboundSchema: z.ZodType<OneHundredAndSeventyFour, z.ZodTypeDef, unknown>;
|
|
4617
4631
|
/** @internal */
|
|
4618
|
-
export type
|
|
4619
|
-
team:
|
|
4620
|
-
configuration:
|
|
4632
|
+
export type OneHundredAndSeventyFour$Outbound = {
|
|
4633
|
+
team: UserEventPayload174Team$Outbound;
|
|
4634
|
+
configuration: UserEventPayload174Configuration$Outbound;
|
|
4621
4635
|
peering: UserEventPayloadPeering$Outbound;
|
|
4622
4636
|
newName?: string | undefined;
|
|
4623
4637
|
};
|
|
4624
4638
|
/** @internal */
|
|
4625
|
-
export declare const
|
|
4626
|
-
export declare function
|
|
4627
|
-
export declare function
|
|
4639
|
+
export declare const OneHundredAndSeventyFour$outboundSchema: z.ZodType<OneHundredAndSeventyFour$Outbound, z.ZodTypeDef, OneHundredAndSeventyFour>;
|
|
4640
|
+
export declare function oneHundredAndSeventyFourToJSON(oneHundredAndSeventyFour: OneHundredAndSeventyFour): string;
|
|
4641
|
+
export declare function oneHundredAndSeventyFourFromJSON(jsonString: string): SafeParseResult<OneHundredAndSeventyFour, SDKValidationError>;
|
|
4628
4642
|
/** @internal */
|
|
4629
|
-
export declare const
|
|
4643
|
+
export declare const UserEventPayload173Team$inboundSchema: z.ZodType<UserEventPayload173Team, z.ZodTypeDef, unknown>;
|
|
4630
4644
|
/** @internal */
|
|
4631
|
-
export type
|
|
4645
|
+
export type UserEventPayload173Team$Outbound = {
|
|
4632
4646
|
id: string;
|
|
4633
4647
|
name: string;
|
|
4634
4648
|
};
|
|
4635
4649
|
/** @internal */
|
|
4636
|
-
export declare const
|
|
4637
|
-
export declare function
|
|
4638
|
-
export declare function
|
|
4650
|
+
export declare const UserEventPayload173Team$outboundSchema: z.ZodType<UserEventPayload173Team$Outbound, z.ZodTypeDef, UserEventPayload173Team>;
|
|
4651
|
+
export declare function userEventPayload173TeamToJSON(userEventPayload173Team: UserEventPayload173Team): string;
|
|
4652
|
+
export declare function userEventPayload173TeamFromJSON(jsonString: string): SafeParseResult<UserEventPayload173Team, SDKValidationError>;
|
|
4639
4653
|
/** @internal */
|
|
4640
|
-
export declare const
|
|
4654
|
+
export declare const UserEventPayload173Configuration$inboundSchema: z.ZodType<UserEventPayload173Configuration, z.ZodTypeDef, unknown>;
|
|
4641
4655
|
/** @internal */
|
|
4642
|
-
export type
|
|
4656
|
+
export type UserEventPayload173Configuration$Outbound = {
|
|
4643
4657
|
id: string;
|
|
4644
4658
|
name?: string | undefined;
|
|
4645
4659
|
};
|
|
4646
4660
|
/** @internal */
|
|
4647
|
-
export declare const
|
|
4648
|
-
export declare function
|
|
4649
|
-
export declare function
|
|
4661
|
+
export declare const UserEventPayload173Configuration$outboundSchema: z.ZodType<UserEventPayload173Configuration$Outbound, z.ZodTypeDef, UserEventPayload173Configuration>;
|
|
4662
|
+
export declare function userEventPayload173ConfigurationToJSON(userEventPayload173Configuration: UserEventPayload173Configuration): string;
|
|
4663
|
+
export declare function userEventPayload173ConfigurationFromJSON(jsonString: string): SafeParseResult<UserEventPayload173Configuration, SDKValidationError>;
|
|
4650
4664
|
/** @internal */
|
|
4651
4665
|
export declare const PayloadPeering$inboundSchema: z.ZodType<PayloadPeering, z.ZodTypeDef, unknown>;
|
|
4652
4666
|
/** @internal */
|
|
@@ -4659,39 +4673,39 @@ export declare const PayloadPeering$outboundSchema: z.ZodType<PayloadPeering$Out
|
|
|
4659
4673
|
export declare function payloadPeeringToJSON(payloadPeering: PayloadPeering): string;
|
|
4660
4674
|
export declare function payloadPeeringFromJSON(jsonString: string): SafeParseResult<PayloadPeering, SDKValidationError>;
|
|
4661
4675
|
/** @internal */
|
|
4662
|
-
export declare const
|
|
4676
|
+
export declare const OneHundredAndSeventyThree$inboundSchema: z.ZodType<OneHundredAndSeventyThree, z.ZodTypeDef, unknown>;
|
|
4663
4677
|
/** @internal */
|
|
4664
|
-
export type
|
|
4665
|
-
team:
|
|
4666
|
-
configuration:
|
|
4678
|
+
export type OneHundredAndSeventyThree$Outbound = {
|
|
4679
|
+
team: UserEventPayload173Team$Outbound;
|
|
4680
|
+
configuration: UserEventPayload173Configuration$Outbound;
|
|
4667
4681
|
peering: PayloadPeering$Outbound;
|
|
4668
4682
|
};
|
|
4669
4683
|
/** @internal */
|
|
4670
|
-
export declare const
|
|
4671
|
-
export declare function
|
|
4672
|
-
export declare function
|
|
4684
|
+
export declare const OneHundredAndSeventyThree$outboundSchema: z.ZodType<OneHundredAndSeventyThree$Outbound, z.ZodTypeDef, OneHundredAndSeventyThree>;
|
|
4685
|
+
export declare function oneHundredAndSeventyThreeToJSON(oneHundredAndSeventyThree: OneHundredAndSeventyThree): string;
|
|
4686
|
+
export declare function oneHundredAndSeventyThreeFromJSON(jsonString: string): SafeParseResult<OneHundredAndSeventyThree, SDKValidationError>;
|
|
4673
4687
|
/** @internal */
|
|
4674
|
-
export declare const
|
|
4688
|
+
export declare const UserEventPayload172Team$inboundSchema: z.ZodType<UserEventPayload172Team, z.ZodTypeDef, unknown>;
|
|
4675
4689
|
/** @internal */
|
|
4676
|
-
export type
|
|
4690
|
+
export type UserEventPayload172Team$Outbound = {
|
|
4677
4691
|
id: string;
|
|
4678
4692
|
name: string;
|
|
4679
4693
|
};
|
|
4680
4694
|
/** @internal */
|
|
4681
|
-
export declare const
|
|
4682
|
-
export declare function
|
|
4683
|
-
export declare function
|
|
4695
|
+
export declare const UserEventPayload172Team$outboundSchema: z.ZodType<UserEventPayload172Team$Outbound, z.ZodTypeDef, UserEventPayload172Team>;
|
|
4696
|
+
export declare function userEventPayload172TeamToJSON(userEventPayload172Team: UserEventPayload172Team): string;
|
|
4697
|
+
export declare function userEventPayload172TeamFromJSON(jsonString: string): SafeParseResult<UserEventPayload172Team, SDKValidationError>;
|
|
4684
4698
|
/** @internal */
|
|
4685
|
-
export declare const
|
|
4699
|
+
export declare const UserEventPayload172Configuration$inboundSchema: z.ZodType<UserEventPayload172Configuration, z.ZodTypeDef, unknown>;
|
|
4686
4700
|
/** @internal */
|
|
4687
|
-
export type
|
|
4701
|
+
export type UserEventPayload172Configuration$Outbound = {
|
|
4688
4702
|
id: string;
|
|
4689
4703
|
name?: string | undefined;
|
|
4690
4704
|
};
|
|
4691
4705
|
/** @internal */
|
|
4692
|
-
export declare const
|
|
4693
|
-
export declare function
|
|
4694
|
-
export declare function
|
|
4706
|
+
export declare const UserEventPayload172Configuration$outboundSchema: z.ZodType<UserEventPayload172Configuration$Outbound, z.ZodTypeDef, UserEventPayload172Configuration>;
|
|
4707
|
+
export declare function userEventPayload172ConfigurationToJSON(userEventPayload172Configuration: UserEventPayload172Configuration): string;
|
|
4708
|
+
export declare function userEventPayload172ConfigurationFromJSON(jsonString: string): SafeParseResult<UserEventPayload172Configuration, SDKValidationError>;
|
|
4695
4709
|
/** @internal */
|
|
4696
4710
|
export declare const Peering$inboundSchema: z.ZodType<Peering, z.ZodTypeDef, unknown>;
|
|
4697
4711
|
/** @internal */
|
|
@@ -4706,17 +4720,17 @@ export declare const Peering$outboundSchema: z.ZodType<Peering$Outbound, z.ZodTy
|
|
|
4706
4720
|
export declare function peeringToJSON(peering: Peering): string;
|
|
4707
4721
|
export declare function peeringFromJSON(jsonString: string): SafeParseResult<Peering, SDKValidationError>;
|
|
4708
4722
|
/** @internal */
|
|
4709
|
-
export declare const
|
|
4723
|
+
export declare const OneHundredAndSeventyTwo$inboundSchema: z.ZodType<OneHundredAndSeventyTwo, z.ZodTypeDef, unknown>;
|
|
4710
4724
|
/** @internal */
|
|
4711
|
-
export type
|
|
4712
|
-
team:
|
|
4713
|
-
configuration:
|
|
4725
|
+
export type OneHundredAndSeventyTwo$Outbound = {
|
|
4726
|
+
team: UserEventPayload172Team$Outbound;
|
|
4727
|
+
configuration: UserEventPayload172Configuration$Outbound;
|
|
4714
4728
|
peering: Peering$Outbound;
|
|
4715
4729
|
};
|
|
4716
4730
|
/** @internal */
|
|
4717
|
-
export declare const
|
|
4718
|
-
export declare function
|
|
4719
|
-
export declare function
|
|
4731
|
+
export declare const OneHundredAndSeventyTwo$outboundSchema: z.ZodType<OneHundredAndSeventyTwo$Outbound, z.ZodTypeDef, OneHundredAndSeventyTwo>;
|
|
4732
|
+
export declare function oneHundredAndSeventyTwoToJSON(oneHundredAndSeventyTwo: OneHundredAndSeventyTwo): string;
|
|
4733
|
+
export declare function oneHundredAndSeventyTwoFromJSON(jsonString: string): SafeParseResult<OneHundredAndSeventyTwo, SDKValidationError>;
|
|
4720
4734
|
/** @internal */
|
|
4721
4735
|
export declare const App$inboundSchema: z.ZodType<App, z.ZodTypeDef, unknown>;
|
|
4722
4736
|
/** @internal */
|
|
@@ -4729,26 +4743,26 @@ export declare const App$outboundSchema: z.ZodType<App$Outbound, z.ZodTypeDef, A
|
|
|
4729
4743
|
export declare function appToJSON(app: App): string;
|
|
4730
4744
|
export declare function appFromJSON(jsonString: string): SafeParseResult<App, SDKValidationError>;
|
|
4731
4745
|
/** @internal */
|
|
4732
|
-
export declare const
|
|
4746
|
+
export declare const OneHundredAndSeventyOne$inboundSchema: z.ZodType<OneHundredAndSeventyOne, z.ZodTypeDef, unknown>;
|
|
4733
4747
|
/** @internal */
|
|
4734
|
-
export type
|
|
4748
|
+
export type OneHundredAndSeventyOne$Outbound = {
|
|
4735
4749
|
appName: string;
|
|
4736
4750
|
appId?: string | undefined;
|
|
4737
4751
|
app?: App$Outbound | undefined;
|
|
4738
4752
|
issuedBefore?: number | undefined;
|
|
4739
4753
|
};
|
|
4740
4754
|
/** @internal */
|
|
4741
|
-
export declare const
|
|
4742
|
-
export declare function
|
|
4743
|
-
export declare function
|
|
4755
|
+
export declare const OneHundredAndSeventyOne$outboundSchema: z.ZodType<OneHundredAndSeventyOne$Outbound, z.ZodTypeDef, OneHundredAndSeventyOne>;
|
|
4756
|
+
export declare function oneHundredAndSeventyOneToJSON(oneHundredAndSeventyOne: OneHundredAndSeventyOne): string;
|
|
4757
|
+
export declare function oneHundredAndSeventyOneFromJSON(jsonString: string): SafeParseResult<OneHundredAndSeventyOne, SDKValidationError>;
|
|
4744
4758
|
/** @internal */
|
|
4745
|
-
export declare const
|
|
4759
|
+
export declare const UserEventPayload170Type$inboundSchema: z.ZodNativeEnum<typeof UserEventPayload170Type>;
|
|
4746
4760
|
/** @internal */
|
|
4747
|
-
export declare const
|
|
4761
|
+
export declare const UserEventPayload170Type$outboundSchema: z.ZodNativeEnum<typeof UserEventPayload170Type>;
|
|
4748
4762
|
/** @internal */
|
|
4749
|
-
export declare const
|
|
4763
|
+
export declare const UserEventPayload170BeforeType$inboundSchema: z.ZodNativeEnum<typeof UserEventPayload170BeforeType>;
|
|
4750
4764
|
/** @internal */
|
|
4751
|
-
export declare const
|
|
4765
|
+
export declare const UserEventPayload170BeforeType$outboundSchema: z.ZodNativeEnum<typeof UserEventPayload170BeforeType>;
|
|
4752
4766
|
/** @internal */
|
|
4753
4767
|
export declare const PayloadItems$inboundSchema: z.ZodType<PayloadItems, z.ZodTypeDef, unknown>;
|
|
4754
4768
|
/** @internal */
|
|
@@ -4760,22 +4774,22 @@ export declare const PayloadItems$outboundSchema: z.ZodType<PayloadItems$Outboun
|
|
|
4760
4774
|
export declare function payloadItemsToJSON(payloadItems: PayloadItems): string;
|
|
4761
4775
|
export declare function payloadItemsFromJSON(jsonString: string): SafeParseResult<PayloadItems, SDKValidationError>;
|
|
4762
4776
|
/** @internal */
|
|
4763
|
-
export declare const
|
|
4777
|
+
export declare const UserEventPayloadProjectIds$inboundSchema: z.ZodType<UserEventPayloadProjectIds, z.ZodTypeDef, unknown>;
|
|
4764
4778
|
/** @internal */
|
|
4765
|
-
export type
|
|
4779
|
+
export type UserEventPayloadProjectIds$Outbound = {
|
|
4766
4780
|
type: string;
|
|
4767
4781
|
required: boolean;
|
|
4768
4782
|
items: PayloadItems$Outbound;
|
|
4769
4783
|
};
|
|
4770
4784
|
/** @internal */
|
|
4771
|
-
export declare const
|
|
4772
|
-
export declare function
|
|
4773
|
-
export declare function
|
|
4785
|
+
export declare const UserEventPayloadProjectIds$outboundSchema: z.ZodType<UserEventPayloadProjectIds$Outbound, z.ZodTypeDef, UserEventPayloadProjectIds>;
|
|
4786
|
+
export declare function userEventPayloadProjectIdsToJSON(userEventPayloadProjectIds: UserEventPayloadProjectIds): string;
|
|
4787
|
+
export declare function userEventPayloadProjectIdsFromJSON(jsonString: string): SafeParseResult<UserEventPayloadProjectIds, SDKValidationError>;
|
|
4774
4788
|
/** @internal */
|
|
4775
4789
|
export declare const PayloadResources$inboundSchema: z.ZodType<PayloadResources, z.ZodTypeDef, unknown>;
|
|
4776
4790
|
/** @internal */
|
|
4777
4791
|
export type PayloadResources$Outbound = {
|
|
4778
|
-
projectIds:
|
|
4792
|
+
projectIds: UserEventPayloadProjectIds$Outbound;
|
|
4779
4793
|
};
|
|
4780
4794
|
/** @internal */
|
|
4781
4795
|
export declare const PayloadResources$outboundSchema: z.ZodType<PayloadResources$Outbound, z.ZodTypeDef, PayloadResources>;
|
|
@@ -4792,13 +4806,13 @@ export declare const Before$outboundSchema: z.ZodType<Before$Outbound, z.ZodType
|
|
|
4792
4806
|
export declare function beforeToJSON(before: Before): string;
|
|
4793
4807
|
export declare function beforeFromJSON(jsonString: string): SafeParseResult<Before, SDKValidationError>;
|
|
4794
4808
|
/** @internal */
|
|
4795
|
-
export declare const
|
|
4809
|
+
export declare const UserEventPayload170AfterType$inboundSchema: z.ZodNativeEnum<typeof UserEventPayload170AfterType>;
|
|
4796
4810
|
/** @internal */
|
|
4797
|
-
export declare const
|
|
4811
|
+
export declare const UserEventPayload170AfterType$outboundSchema: z.ZodNativeEnum<typeof UserEventPayload170AfterType>;
|
|
4798
4812
|
/** @internal */
|
|
4799
|
-
export declare const
|
|
4813
|
+
export declare const UserEventPayload170AfterResourcesType$inboundSchema: z.ZodNativeEnum<typeof UserEventPayload170AfterResourcesType>;
|
|
4800
4814
|
/** @internal */
|
|
4801
|
-
export declare const
|
|
4815
|
+
export declare const UserEventPayload170AfterResourcesType$outboundSchema: z.ZodNativeEnum<typeof UserEventPayload170AfterResourcesType>;
|
|
4802
4816
|
/** @internal */
|
|
4803
4817
|
export declare const UserEventPayloadItems$inboundSchema: z.ZodType<UserEventPayloadItems, z.ZodTypeDef, unknown>;
|
|
4804
4818
|
/** @internal */
|
|
@@ -4810,22 +4824,22 @@ export declare const UserEventPayloadItems$outboundSchema: z.ZodType<UserEventPa
|
|
|
4810
4824
|
export declare function userEventPayloadItemsToJSON(userEventPayloadItems: UserEventPayloadItems): string;
|
|
4811
4825
|
export declare function userEventPayloadItemsFromJSON(jsonString: string): SafeParseResult<UserEventPayloadItems, SDKValidationError>;
|
|
4812
4826
|
/** @internal */
|
|
4813
|
-
export declare const
|
|
4827
|
+
export declare const UserEventPayload170ProjectIds$inboundSchema: z.ZodType<UserEventPayload170ProjectIds, z.ZodTypeDef, unknown>;
|
|
4814
4828
|
/** @internal */
|
|
4815
|
-
export type
|
|
4829
|
+
export type UserEventPayload170ProjectIds$Outbound = {
|
|
4816
4830
|
type: string;
|
|
4817
4831
|
required: boolean;
|
|
4818
4832
|
items: UserEventPayloadItems$Outbound;
|
|
4819
4833
|
};
|
|
4820
4834
|
/** @internal */
|
|
4821
|
-
export declare const
|
|
4822
|
-
export declare function
|
|
4823
|
-
export declare function
|
|
4835
|
+
export declare const UserEventPayload170ProjectIds$outboundSchema: z.ZodType<UserEventPayload170ProjectIds$Outbound, z.ZodTypeDef, UserEventPayload170ProjectIds>;
|
|
4836
|
+
export declare function userEventPayload170ProjectIdsToJSON(userEventPayload170ProjectIds: UserEventPayload170ProjectIds): string;
|
|
4837
|
+
export declare function userEventPayload170ProjectIdsFromJSON(jsonString: string): SafeParseResult<UserEventPayload170ProjectIds, SDKValidationError>;
|
|
4824
4838
|
/** @internal */
|
|
4825
4839
|
export declare const UserEventPayloadResources$inboundSchema: z.ZodType<UserEventPayloadResources, z.ZodTypeDef, unknown>;
|
|
4826
4840
|
/** @internal */
|
|
4827
4841
|
export type UserEventPayloadResources$Outbound = {
|
|
4828
|
-
projectIds:
|
|
4842
|
+
projectIds: UserEventPayload170ProjectIds$Outbound;
|
|
4829
4843
|
};
|
|
4830
4844
|
/** @internal */
|
|
4831
4845
|
export declare const UserEventPayloadResources$outboundSchema: z.ZodType<UserEventPayloadResources$Outbound, z.ZodTypeDef, UserEventPayloadResources>;
|
|
@@ -4842,9 +4856,9 @@ export declare const After$outboundSchema: z.ZodType<After$Outbound, z.ZodTypeDe
|
|
|
4842
4856
|
export declare function afterToJSON(after: After): string;
|
|
4843
4857
|
export declare function afterFromJSON(jsonString: string): SafeParseResult<After, SDKValidationError>;
|
|
4844
4858
|
/** @internal */
|
|
4845
|
-
export declare const
|
|
4859
|
+
export declare const OneHundredAndSeventy$inboundSchema: z.ZodType<OneHundredAndSeventy, z.ZodTypeDef, unknown>;
|
|
4846
4860
|
/** @internal */
|
|
4847
|
-
export type
|
|
4861
|
+
export type OneHundredAndSeventy$Outbound = {
|
|
4848
4862
|
appName: string;
|
|
4849
4863
|
appId?: string | undefined;
|
|
4850
4864
|
installationId?: string | undefined;
|
|
@@ -4852,17 +4866,17 @@ export type OneHundredAndSixtyNine$Outbound = {
|
|
|
4852
4866
|
after?: After$Outbound | undefined;
|
|
4853
4867
|
};
|
|
4854
4868
|
/** @internal */
|
|
4855
|
-
export declare const
|
|
4856
|
-
export declare function
|
|
4857
|
-
export declare function
|
|
4869
|
+
export declare const OneHundredAndSeventy$outboundSchema: z.ZodType<OneHundredAndSeventy$Outbound, z.ZodTypeDef, OneHundredAndSeventy>;
|
|
4870
|
+
export declare function oneHundredAndSeventyToJSON(oneHundredAndSeventy: OneHundredAndSeventy): string;
|
|
4871
|
+
export declare function oneHundredAndSeventyFromJSON(jsonString: string): SafeParseResult<OneHundredAndSeventy, SDKValidationError>;
|
|
4858
4872
|
/** @internal */
|
|
4859
|
-
export declare const
|
|
4873
|
+
export declare const UserEventPayload169Type$inboundSchema: z.ZodNativeEnum<typeof UserEventPayload169Type>;
|
|
4860
4874
|
/** @internal */
|
|
4861
|
-
export declare const
|
|
4875
|
+
export declare const UserEventPayload169Type$outboundSchema: z.ZodNativeEnum<typeof UserEventPayload169Type>;
|
|
4862
4876
|
/** @internal */
|
|
4863
|
-
export declare const
|
|
4877
|
+
export declare const UserEventPayload169ResourcesType$inboundSchema: z.ZodNativeEnum<typeof UserEventPayload169ResourcesType>;
|
|
4864
4878
|
/** @internal */
|
|
4865
|
-
export declare const
|
|
4879
|
+
export declare const UserEventPayload169ResourcesType$outboundSchema: z.ZodNativeEnum<typeof UserEventPayload169ResourcesType>;
|
|
4866
4880
|
/** @internal */
|
|
4867
4881
|
export declare const Items$inboundSchema: z.ZodType<Items, z.ZodTypeDef, unknown>;
|
|
4868
4882
|
/** @internal */
|
|
@@ -4874,34 +4888,46 @@ export declare const Items$outboundSchema: z.ZodType<Items$Outbound, z.ZodTypeDe
|
|
|
4874
4888
|
export declare function itemsToJSON(items: Items): string;
|
|
4875
4889
|
export declare function itemsFromJSON(jsonString: string): SafeParseResult<Items, SDKValidationError>;
|
|
4876
4890
|
/** @internal */
|
|
4877
|
-
export declare const
|
|
4891
|
+
export declare const PayloadProjectIds$inboundSchema: z.ZodType<PayloadProjectIds, z.ZodTypeDef, unknown>;
|
|
4878
4892
|
/** @internal */
|
|
4879
|
-
export type
|
|
4893
|
+
export type PayloadProjectIds$Outbound = {
|
|
4880
4894
|
type: string;
|
|
4881
4895
|
required: boolean;
|
|
4882
4896
|
items: Items$Outbound;
|
|
4883
4897
|
};
|
|
4884
4898
|
/** @internal */
|
|
4885
|
-
export declare const
|
|
4886
|
-
export declare function
|
|
4887
|
-
export declare function
|
|
4899
|
+
export declare const PayloadProjectIds$outboundSchema: z.ZodType<PayloadProjectIds$Outbound, z.ZodTypeDef, PayloadProjectIds>;
|
|
4900
|
+
export declare function payloadProjectIdsToJSON(payloadProjectIds: PayloadProjectIds): string;
|
|
4901
|
+
export declare function payloadProjectIdsFromJSON(jsonString: string): SafeParseResult<PayloadProjectIds, SDKValidationError>;
|
|
4888
4902
|
/** @internal */
|
|
4889
4903
|
export declare const Resources$inboundSchema: z.ZodType<Resources, z.ZodTypeDef, unknown>;
|
|
4890
4904
|
/** @internal */
|
|
4891
4905
|
export type Resources$Outbound = {
|
|
4892
|
-
projectIds:
|
|
4906
|
+
projectIds: PayloadProjectIds$Outbound;
|
|
4893
4907
|
};
|
|
4894
4908
|
/** @internal */
|
|
4895
4909
|
export declare const Resources$outboundSchema: z.ZodType<Resources$Outbound, z.ZodTypeDef, Resources>;
|
|
4896
4910
|
export declare function resourcesToJSON(resources: Resources): string;
|
|
4897
4911
|
export declare function resourcesFromJSON(jsonString: string): SafeParseResult<Resources, SDKValidationError>;
|
|
4898
4912
|
/** @internal */
|
|
4913
|
+
export declare const OneHundredAndSixtyNine$inboundSchema: z.ZodType<OneHundredAndSixtyNine, z.ZodTypeDef, unknown>;
|
|
4914
|
+
/** @internal */
|
|
4915
|
+
export type OneHundredAndSixtyNine$Outbound = {
|
|
4916
|
+
appName: string;
|
|
4917
|
+
appId?: string | undefined;
|
|
4918
|
+
resources?: Resources$Outbound | undefined;
|
|
4919
|
+
};
|
|
4920
|
+
/** @internal */
|
|
4921
|
+
export declare const OneHundredAndSixtyNine$outboundSchema: z.ZodType<OneHundredAndSixtyNine$Outbound, z.ZodTypeDef, OneHundredAndSixtyNine>;
|
|
4922
|
+
export declare function oneHundredAndSixtyNineToJSON(oneHundredAndSixtyNine: OneHundredAndSixtyNine): string;
|
|
4923
|
+
export declare function oneHundredAndSixtyNineFromJSON(jsonString: string): SafeParseResult<OneHundredAndSixtyNine, SDKValidationError>;
|
|
4924
|
+
/** @internal */
|
|
4899
4925
|
export declare const OneHundredAndSixtyEight$inboundSchema: z.ZodType<OneHundredAndSixtyEight, z.ZodTypeDef, unknown>;
|
|
4900
4926
|
/** @internal */
|
|
4901
4927
|
export type OneHundredAndSixtyEight$Outbound = {
|
|
4902
4928
|
appName: string;
|
|
4903
4929
|
appId?: string | undefined;
|
|
4904
|
-
|
|
4930
|
+
secretLastFourChars?: string | undefined;
|
|
4905
4931
|
};
|
|
4906
4932
|
/** @internal */
|
|
4907
4933
|
export declare const OneHundredAndSixtyEight$outboundSchema: z.ZodType<OneHundredAndSixtyEight$Outbound, z.ZodTypeDef, OneHundredAndSixtyEight>;
|
|
@@ -4913,24 +4939,12 @@ export declare const OneHundredAndSixtySeven$inboundSchema: z.ZodType<OneHundred
|
|
|
4913
4939
|
export type OneHundredAndSixtySeven$Outbound = {
|
|
4914
4940
|
appName: string;
|
|
4915
4941
|
appId?: string | undefined;
|
|
4916
|
-
secretLastFourChars?: string | undefined;
|
|
4917
4942
|
};
|
|
4918
4943
|
/** @internal */
|
|
4919
4944
|
export declare const OneHundredAndSixtySeven$outboundSchema: z.ZodType<OneHundredAndSixtySeven$Outbound, z.ZodTypeDef, OneHundredAndSixtySeven>;
|
|
4920
4945
|
export declare function oneHundredAndSixtySevenToJSON(oneHundredAndSixtySeven: OneHundredAndSixtySeven): string;
|
|
4921
4946
|
export declare function oneHundredAndSixtySevenFromJSON(jsonString: string): SafeParseResult<OneHundredAndSixtySeven, SDKValidationError>;
|
|
4922
4947
|
/** @internal */
|
|
4923
|
-
export declare const OneHundredAndSixtySix$inboundSchema: z.ZodType<OneHundredAndSixtySix, z.ZodTypeDef, unknown>;
|
|
4924
|
-
/** @internal */
|
|
4925
|
-
export type OneHundredAndSixtySix$Outbound = {
|
|
4926
|
-
appName: string;
|
|
4927
|
-
appId?: string | undefined;
|
|
4928
|
-
};
|
|
4929
|
-
/** @internal */
|
|
4930
|
-
export declare const OneHundredAndSixtySix$outboundSchema: z.ZodType<OneHundredAndSixtySix$Outbound, z.ZodTypeDef, OneHundredAndSixtySix>;
|
|
4931
|
-
export declare function oneHundredAndSixtySixToJSON(oneHundredAndSixtySix: OneHundredAndSixtySix): string;
|
|
4932
|
-
export declare function oneHundredAndSixtySixFromJSON(jsonString: string): SafeParseResult<OneHundredAndSixtySix, SDKValidationError>;
|
|
4933
|
-
/** @internal */
|
|
4934
4948
|
export declare const NextScopes$inboundSchema: z.ZodNativeEnum<typeof NextScopes>;
|
|
4935
4949
|
/** @internal */
|
|
4936
4950
|
export declare const NextScopes$outboundSchema: z.ZodNativeEnum<typeof NextScopes>;
|
|
@@ -4953,9 +4967,9 @@ export declare const NextAcceptedPermissionSets$outboundSchema: z.ZodType<NextAc
|
|
|
4953
4967
|
export declare function nextAcceptedPermissionSetsToJSON(nextAcceptedPermissionSets: NextAcceptedPermissionSets): string;
|
|
4954
4968
|
export declare function nextAcceptedPermissionSetsFromJSON(jsonString: string): SafeParseResult<NextAcceptedPermissionSets, SDKValidationError>;
|
|
4955
4969
|
/** @internal */
|
|
4956
|
-
export declare const
|
|
4970
|
+
export declare const OneHundredAndSixtySix$inboundSchema: z.ZodType<OneHundredAndSixtySix, z.ZodTypeDef, unknown>;
|
|
4957
4971
|
/** @internal */
|
|
4958
|
-
export type
|
|
4972
|
+
export type OneHundredAndSixtySix$Outbound = {
|
|
4959
4973
|
appName: string;
|
|
4960
4974
|
appId?: string | undefined;
|
|
4961
4975
|
nextScopes: Array<string>;
|
|
@@ -4963,9 +4977,9 @@ export type OneHundredAndSixtyFive$Outbound = {
|
|
|
4963
4977
|
nextAcceptedPermissionSets?: NextAcceptedPermissionSets$Outbound | undefined;
|
|
4964
4978
|
};
|
|
4965
4979
|
/** @internal */
|
|
4966
|
-
export declare const
|
|
4967
|
-
export declare function
|
|
4968
|
-
export declare function
|
|
4980
|
+
export declare const OneHundredAndSixtySix$outboundSchema: z.ZodType<OneHundredAndSixtySix$Outbound, z.ZodTypeDef, OneHundredAndSixtySix>;
|
|
4981
|
+
export declare function oneHundredAndSixtySixToJSON(oneHundredAndSixtySix: OneHundredAndSixtySix): string;
|
|
4982
|
+
export declare function oneHundredAndSixtySixFromJSON(jsonString: string): SafeParseResult<OneHundredAndSixtySix, SDKValidationError>;
|
|
4969
4983
|
/** @internal */
|
|
4970
4984
|
export declare const PayloadScopes$inboundSchema: z.ZodNativeEnum<typeof PayloadScopes>;
|
|
4971
4985
|
/** @internal */
|
|
@@ -4989,9 +5003,9 @@ export declare const AcceptedPermissionSets$outboundSchema: z.ZodType<AcceptedPe
|
|
|
4989
5003
|
export declare function acceptedPermissionSetsToJSON(acceptedPermissionSets: AcceptedPermissionSets): string;
|
|
4990
5004
|
export declare function acceptedPermissionSetsFromJSON(jsonString: string): SafeParseResult<AcceptedPermissionSets, SDKValidationError>;
|
|
4991
5005
|
/** @internal */
|
|
4992
|
-
export declare const
|
|
5006
|
+
export declare const OneHundredAndSixtyFive$inboundSchema: z.ZodType<OneHundredAndSixtyFive, z.ZodTypeDef, unknown>;
|
|
4993
5007
|
/** @internal */
|
|
4994
|
-
export type
|
|
5008
|
+
export type OneHundredAndSixtyFive$Outbound = {
|
|
4995
5009
|
appName: string;
|
|
4996
5010
|
appId?: string | undefined;
|
|
4997
5011
|
scopes: Array<string>;
|
|
@@ -4999,34 +5013,34 @@ export type OneHundredAndSixtyFour$Outbound = {
|
|
|
4999
5013
|
acceptedPermissionSets?: AcceptedPermissionSets$Outbound | undefined;
|
|
5000
5014
|
};
|
|
5001
5015
|
/** @internal */
|
|
5002
|
-
export declare const
|
|
5003
|
-
export declare function
|
|
5004
|
-
export declare function
|
|
5016
|
+
export declare const OneHundredAndSixtyFive$outboundSchema: z.ZodType<OneHundredAndSixtyFive$Outbound, z.ZodTypeDef, OneHundredAndSixtyFive>;
|
|
5017
|
+
export declare function oneHundredAndSixtyFiveToJSON(oneHundredAndSixtyFive: OneHundredAndSixtyFive): string;
|
|
5018
|
+
export declare function oneHundredAndSixtyFiveFromJSON(jsonString: string): SafeParseResult<OneHundredAndSixtyFive, SDKValidationError>;
|
|
5005
5019
|
/** @internal */
|
|
5006
|
-
export declare const
|
|
5020
|
+
export declare const OneHundredAndSixtyFour$inboundSchema: z.ZodType<OneHundredAndSixtyFour, z.ZodTypeDef, unknown>;
|
|
5007
5021
|
/** @internal */
|
|
5008
|
-
export type
|
|
5022
|
+
export type OneHundredAndSixtyFour$Outbound = {
|
|
5009
5023
|
oldName: string;
|
|
5010
5024
|
newName: string;
|
|
5011
5025
|
};
|
|
5012
5026
|
/** @internal */
|
|
5013
|
-
export declare const
|
|
5014
|
-
export declare function
|
|
5015
|
-
export declare function
|
|
5027
|
+
export declare const OneHundredAndSixtyFour$outboundSchema: z.ZodType<OneHundredAndSixtyFour$Outbound, z.ZodTypeDef, OneHundredAndSixtyFour>;
|
|
5028
|
+
export declare function oneHundredAndSixtyFourToJSON(oneHundredAndSixtyFour: OneHundredAndSixtyFour): string;
|
|
5029
|
+
export declare function oneHundredAndSixtyFourFromJSON(jsonString: string): SafeParseResult<OneHundredAndSixtyFour, SDKValidationError>;
|
|
5016
5030
|
/** @internal */
|
|
5017
5031
|
export declare const Tier$inboundSchema: z.ZodNativeEnum<typeof Tier>;
|
|
5018
5032
|
/** @internal */
|
|
5019
5033
|
export declare const Tier$outboundSchema: z.ZodNativeEnum<typeof Tier>;
|
|
5020
5034
|
/** @internal */
|
|
5021
|
-
export declare const
|
|
5035
|
+
export declare const OneHundredAndSixtyThree$inboundSchema: z.ZodType<OneHundredAndSixtyThree, z.ZodTypeDef, unknown>;
|
|
5022
5036
|
/** @internal */
|
|
5023
|
-
export type
|
|
5037
|
+
export type OneHundredAndSixtyThree$Outbound = {
|
|
5024
5038
|
tier: string;
|
|
5025
5039
|
};
|
|
5026
5040
|
/** @internal */
|
|
5027
|
-
export declare const
|
|
5028
|
-
export declare function
|
|
5029
|
-
export declare function
|
|
5041
|
+
export declare const OneHundredAndSixtyThree$outboundSchema: z.ZodType<OneHundredAndSixtyThree$Outbound, z.ZodTypeDef, OneHundredAndSixtyThree>;
|
|
5042
|
+
export declare function oneHundredAndSixtyThreeToJSON(oneHundredAndSixtyThree: OneHundredAndSixtyThree): string;
|
|
5043
|
+
export declare function oneHundredAndSixtyThreeFromJSON(jsonString: string): SafeParseResult<OneHundredAndSixtyThree, SDKValidationError>;
|
|
5030
5044
|
/** @internal */
|
|
5031
5045
|
export declare const ProjectWebAnalytics$inboundSchema: z.ZodType<ProjectWebAnalytics, z.ZodTypeDef, unknown>;
|
|
5032
5046
|
/** @internal */
|
|
@@ -5056,18 +5070,18 @@ export declare const PrevProjectWebAnalytics$outboundSchema: z.ZodType<PrevProje
|
|
|
5056
5070
|
export declare function prevProjectWebAnalyticsToJSON(prevProjectWebAnalytics: PrevProjectWebAnalytics): string;
|
|
5057
5071
|
export declare function prevProjectWebAnalyticsFromJSON(jsonString: string): SafeParseResult<PrevProjectWebAnalytics, SDKValidationError>;
|
|
5058
5072
|
/** @internal */
|
|
5059
|
-
export declare const
|
|
5073
|
+
export declare const OneHundredAndSixtyTwo$inboundSchema: z.ZodType<OneHundredAndSixtyTwo, z.ZodTypeDef, unknown>;
|
|
5060
5074
|
/** @internal */
|
|
5061
|
-
export type
|
|
5075
|
+
export type OneHundredAndSixtyTwo$Outbound = {
|
|
5062
5076
|
projectId: string;
|
|
5063
5077
|
projectName: string;
|
|
5064
5078
|
projectWebAnalytics?: ProjectWebAnalytics$Outbound | undefined;
|
|
5065
5079
|
prevProjectWebAnalytics?: PrevProjectWebAnalytics$Outbound | null | undefined;
|
|
5066
5080
|
};
|
|
5067
5081
|
/** @internal */
|
|
5068
|
-
export declare const
|
|
5069
|
-
export declare function
|
|
5070
|
-
export declare function
|
|
5082
|
+
export declare const OneHundredAndSixtyTwo$outboundSchema: z.ZodType<OneHundredAndSixtyTwo$Outbound, z.ZodTypeDef, OneHundredAndSixtyTwo>;
|
|
5083
|
+
export declare function oneHundredAndSixtyTwoToJSON(oneHundredAndSixtyTwo: OneHundredAndSixtyTwo): string;
|
|
5084
|
+
export declare function oneHundredAndSixtyTwoFromJSON(jsonString: string): SafeParseResult<OneHundredAndSixtyTwo, SDKValidationError>;
|
|
5071
5085
|
/** @internal */
|
|
5072
5086
|
export declare const Microfrontends3$inboundSchema: z.ZodType<Microfrontends3, z.ZodTypeDef, unknown>;
|
|
5073
5087
|
/** @internal */
|
|
@@ -5122,17 +5136,17 @@ export declare const Microfrontends$outboundSchema: z.ZodType<Microfrontends$Out
|
|
|
5122
5136
|
export declare function microfrontendsToJSON(microfrontends: Microfrontends): string;
|
|
5123
5137
|
export declare function microfrontendsFromJSON(jsonString: string): SafeParseResult<Microfrontends, SDKValidationError>;
|
|
5124
5138
|
/** @internal */
|
|
5125
|
-
export declare const
|
|
5139
|
+
export declare const UserEventPayload161Project$inboundSchema: z.ZodType<UserEventPayload161Project, z.ZodTypeDef, unknown>;
|
|
5126
5140
|
/** @internal */
|
|
5127
|
-
export type
|
|
5141
|
+
export type UserEventPayload161Project$Outbound = {
|
|
5128
5142
|
id: string;
|
|
5129
5143
|
name: string;
|
|
5130
5144
|
microfrontends?: Microfrontends1$Outbound | Microfrontends2$Outbound | Microfrontends3$Outbound | undefined;
|
|
5131
5145
|
};
|
|
5132
5146
|
/** @internal */
|
|
5133
|
-
export declare const
|
|
5134
|
-
export declare function
|
|
5135
|
-
export declare function
|
|
5147
|
+
export declare const UserEventPayload161Project$outboundSchema: z.ZodType<UserEventPayload161Project$Outbound, z.ZodTypeDef, UserEventPayload161Project>;
|
|
5148
|
+
export declare function userEventPayload161ProjectToJSON(userEventPayload161Project: UserEventPayload161Project): string;
|
|
5149
|
+
export declare function userEventPayload161ProjectFromJSON(jsonString: string): SafeParseResult<UserEventPayload161Project, SDKValidationError>;
|
|
5136
5150
|
/** @internal */
|
|
5137
5151
|
export declare const UserEventMicrofrontends3$inboundSchema: z.ZodType<UserEventMicrofrontends3, z.ZodTypeDef, unknown>;
|
|
5138
5152
|
/** @internal */
|
|
@@ -5187,20 +5201,20 @@ export declare const PayloadMicrofrontends$outboundSchema: z.ZodType<PayloadMicr
|
|
|
5187
5201
|
export declare function payloadMicrofrontendsToJSON(payloadMicrofrontends: PayloadMicrofrontends): string;
|
|
5188
5202
|
export declare function payloadMicrofrontendsFromJSON(jsonString: string): SafeParseResult<PayloadMicrofrontends, SDKValidationError>;
|
|
5189
5203
|
/** @internal */
|
|
5190
|
-
export declare const
|
|
5204
|
+
export declare const UserEventPayload161PrevProject$inboundSchema: z.ZodType<UserEventPayload161PrevProject, z.ZodTypeDef, unknown>;
|
|
5191
5205
|
/** @internal */
|
|
5192
|
-
export type
|
|
5206
|
+
export type UserEventPayload161PrevProject$Outbound = {
|
|
5193
5207
|
microfrontends?: UserEventMicrofrontends1$Outbound | UserEventMicrofrontends2$Outbound | UserEventMicrofrontends3$Outbound | undefined;
|
|
5194
5208
|
};
|
|
5195
5209
|
/** @internal */
|
|
5196
|
-
export declare const
|
|
5197
|
-
export declare function
|
|
5198
|
-
export declare function
|
|
5210
|
+
export declare const UserEventPayload161PrevProject$outboundSchema: z.ZodType<UserEventPayload161PrevProject$Outbound, z.ZodTypeDef, UserEventPayload161PrevProject>;
|
|
5211
|
+
export declare function userEventPayload161PrevProjectToJSON(userEventPayload161PrevProject: UserEventPayload161PrevProject): string;
|
|
5212
|
+
export declare function userEventPayload161PrevProjectFromJSON(jsonString: string): SafeParseResult<UserEventPayload161PrevProject, SDKValidationError>;
|
|
5199
5213
|
/** @internal */
|
|
5200
5214
|
export declare const PayloadPrev$inboundSchema: z.ZodType<PayloadPrev, z.ZodTypeDef, unknown>;
|
|
5201
5215
|
/** @internal */
|
|
5202
5216
|
export type PayloadPrev$Outbound = {
|
|
5203
|
-
project:
|
|
5217
|
+
project: UserEventPayload161PrevProject$Outbound;
|
|
5204
5218
|
};
|
|
5205
5219
|
/** @internal */
|
|
5206
5220
|
export declare const PayloadPrev$outboundSchema: z.ZodType<PayloadPrev$Outbound, z.ZodTypeDef, PayloadPrev>;
|
|
@@ -5219,28 +5233,28 @@ export declare const PayloadGroup$outboundSchema: z.ZodType<PayloadGroup$Outboun
|
|
|
5219
5233
|
export declare function payloadGroupToJSON(payloadGroup: PayloadGroup): string;
|
|
5220
5234
|
export declare function payloadGroupFromJSON(jsonString: string): SafeParseResult<PayloadGroup, SDKValidationError>;
|
|
5221
5235
|
/** @internal */
|
|
5222
|
-
export declare const
|
|
5236
|
+
export declare const OneHundredAndSixtyOne$inboundSchema: z.ZodType<OneHundredAndSixtyOne, z.ZodTypeDef, unknown>;
|
|
5223
5237
|
/** @internal */
|
|
5224
|
-
export type
|
|
5225
|
-
project:
|
|
5238
|
+
export type OneHundredAndSixtyOne$Outbound = {
|
|
5239
|
+
project: UserEventPayload161Project$Outbound;
|
|
5226
5240
|
prev: PayloadPrev$Outbound;
|
|
5227
5241
|
group: PayloadGroup$Outbound;
|
|
5228
5242
|
};
|
|
5229
5243
|
/** @internal */
|
|
5230
|
-
export declare const
|
|
5231
|
-
export declare function
|
|
5232
|
-
export declare function
|
|
5244
|
+
export declare const OneHundredAndSixtyOne$outboundSchema: z.ZodType<OneHundredAndSixtyOne$Outbound, z.ZodTypeDef, OneHundredAndSixtyOne>;
|
|
5245
|
+
export declare function oneHundredAndSixtyOneToJSON(oneHundredAndSixtyOne: OneHundredAndSixtyOne): string;
|
|
5246
|
+
export declare function oneHundredAndSixtyOneFromJSON(jsonString: string): SafeParseResult<OneHundredAndSixtyOne, SDKValidationError>;
|
|
5233
5247
|
/** @internal */
|
|
5234
|
-
export declare const
|
|
5248
|
+
export declare const UserEventPayload160Project$inboundSchema: z.ZodType<UserEventPayload160Project, z.ZodTypeDef, unknown>;
|
|
5235
5249
|
/** @internal */
|
|
5236
|
-
export type
|
|
5250
|
+
export type UserEventPayload160Project$Outbound = {
|
|
5237
5251
|
id: string;
|
|
5238
5252
|
name: string;
|
|
5239
5253
|
};
|
|
5240
5254
|
/** @internal */
|
|
5241
|
-
export declare const
|
|
5242
|
-
export declare function
|
|
5243
|
-
export declare function
|
|
5255
|
+
export declare const UserEventPayload160Project$outboundSchema: z.ZodType<UserEventPayload160Project$Outbound, z.ZodTypeDef, UserEventPayload160Project>;
|
|
5256
|
+
export declare function userEventPayload160ProjectToJSON(userEventPayload160Project: UserEventPayload160Project): string;
|
|
5257
|
+
export declare function userEventPayload160ProjectFromJSON(jsonString: string): SafeParseResult<UserEventPayload160Project, SDKValidationError>;
|
|
5244
5258
|
/** @internal */
|
|
5245
5259
|
export declare const Group$inboundSchema: z.ZodType<Group, z.ZodTypeDef, unknown>;
|
|
5246
5260
|
/** @internal */
|
|
@@ -5254,16 +5268,16 @@ export declare const Group$outboundSchema: z.ZodType<Group$Outbound, z.ZodTypeDe
|
|
|
5254
5268
|
export declare function groupToJSON(group: Group): string;
|
|
5255
5269
|
export declare function groupFromJSON(jsonString: string): SafeParseResult<Group, SDKValidationError>;
|
|
5256
5270
|
/** @internal */
|
|
5257
|
-
export declare const
|
|
5271
|
+
export declare const OneHundredAndSixty$inboundSchema: z.ZodType<OneHundredAndSixty, z.ZodTypeDef, unknown>;
|
|
5258
5272
|
/** @internal */
|
|
5259
|
-
export type
|
|
5260
|
-
project:
|
|
5273
|
+
export type OneHundredAndSixty$Outbound = {
|
|
5274
|
+
project: UserEventPayload160Project$Outbound;
|
|
5261
5275
|
group: Group$Outbound;
|
|
5262
5276
|
};
|
|
5263
5277
|
/** @internal */
|
|
5264
|
-
export declare const
|
|
5265
|
-
export declare function
|
|
5266
|
-
export declare function
|
|
5278
|
+
export declare const OneHundredAndSixty$outboundSchema: z.ZodType<OneHundredAndSixty$Outbound, z.ZodTypeDef, OneHundredAndSixty>;
|
|
5279
|
+
export declare function oneHundredAndSixtyToJSON(oneHundredAndSixty: OneHundredAndSixty): string;
|
|
5280
|
+
export declare function oneHundredAndSixtyFromJSON(jsonString: string): SafeParseResult<OneHundredAndSixty, SDKValidationError>;
|
|
5267
5281
|
/** @internal */
|
|
5268
5282
|
export declare const Prev$inboundSchema: z.ZodType<Prev, z.ZodTypeDef, unknown>;
|
|
5269
5283
|
/** @internal */
|
|
@@ -5277,9 +5291,9 @@ export declare const Prev$outboundSchema: z.ZodType<Prev$Outbound, z.ZodTypeDef,
|
|
|
5277
5291
|
export declare function prevToJSON(prev: Prev): string;
|
|
5278
5292
|
export declare function prevFromJSON(jsonString: string): SafeParseResult<Prev, SDKValidationError>;
|
|
5279
5293
|
/** @internal */
|
|
5280
|
-
export declare const
|
|
5294
|
+
export declare const OneHundredAndFiftyNine$inboundSchema: z.ZodType<OneHundredAndFiftyNine, z.ZodTypeDef, unknown>;
|
|
5281
5295
|
/** @internal */
|
|
5282
|
-
export type
|
|
5296
|
+
export type OneHundredAndFiftyNine$Outbound = {
|
|
5283
5297
|
id: string;
|
|
5284
5298
|
slug?: string | undefined;
|
|
5285
5299
|
name?: string | undefined;
|
|
@@ -5287,30 +5301,42 @@ export type OneHundredAndFiftyEight$Outbound = {
|
|
|
5287
5301
|
prev: Prev$Outbound;
|
|
5288
5302
|
};
|
|
5289
5303
|
/** @internal */
|
|
5304
|
+
export declare const OneHundredAndFiftyNine$outboundSchema: z.ZodType<OneHundredAndFiftyNine$Outbound, z.ZodTypeDef, OneHundredAndFiftyNine>;
|
|
5305
|
+
export declare function oneHundredAndFiftyNineToJSON(oneHundredAndFiftyNine: OneHundredAndFiftyNine): string;
|
|
5306
|
+
export declare function oneHundredAndFiftyNineFromJSON(jsonString: string): SafeParseResult<OneHundredAndFiftyNine, SDKValidationError>;
|
|
5307
|
+
/** @internal */
|
|
5308
|
+
export declare const OneHundredAndFiftyEight$inboundSchema: z.ZodType<OneHundredAndFiftyEight, z.ZodTypeDef, unknown>;
|
|
5309
|
+
/** @internal */
|
|
5310
|
+
export type OneHundredAndFiftyEight$Outbound = {
|
|
5311
|
+
id: string;
|
|
5312
|
+
slug: string;
|
|
5313
|
+
name: string;
|
|
5314
|
+
};
|
|
5315
|
+
/** @internal */
|
|
5290
5316
|
export declare const OneHundredAndFiftyEight$outboundSchema: z.ZodType<OneHundredAndFiftyEight$Outbound, z.ZodTypeDef, OneHundredAndFiftyEight>;
|
|
5291
5317
|
export declare function oneHundredAndFiftyEightToJSON(oneHundredAndFiftyEight: OneHundredAndFiftyEight): string;
|
|
5292
5318
|
export declare function oneHundredAndFiftyEightFromJSON(jsonString: string): SafeParseResult<OneHundredAndFiftyEight, SDKValidationError>;
|
|
5293
5319
|
/** @internal */
|
|
5320
|
+
export declare const UserEventPayload157Action$inboundSchema: z.ZodNativeEnum<typeof UserEventPayload157Action>;
|
|
5321
|
+
/** @internal */
|
|
5322
|
+
export declare const UserEventPayload157Action$outboundSchema: z.ZodNativeEnum<typeof UserEventPayload157Action>;
|
|
5323
|
+
/** @internal */
|
|
5294
5324
|
export declare const OneHundredAndFiftySeven$inboundSchema: z.ZodType<OneHundredAndFiftySeven, z.ZodTypeDef, unknown>;
|
|
5295
5325
|
/** @internal */
|
|
5296
5326
|
export type OneHundredAndFiftySeven$Outbound = {
|
|
5297
|
-
|
|
5298
|
-
slug: string;
|
|
5299
|
-
name: string;
|
|
5327
|
+
action: string;
|
|
5300
5328
|
};
|
|
5301
5329
|
/** @internal */
|
|
5302
5330
|
export declare const OneHundredAndFiftySeven$outboundSchema: z.ZodType<OneHundredAndFiftySeven$Outbound, z.ZodTypeDef, OneHundredAndFiftySeven>;
|
|
5303
5331
|
export declare function oneHundredAndFiftySevenToJSON(oneHundredAndFiftySeven: OneHundredAndFiftySeven): string;
|
|
5304
5332
|
export declare function oneHundredAndFiftySevenFromJSON(jsonString: string): SafeParseResult<OneHundredAndFiftySeven, SDKValidationError>;
|
|
5305
5333
|
/** @internal */
|
|
5306
|
-
export declare const UserEventPayload156Action$inboundSchema: z.ZodNativeEnum<typeof UserEventPayload156Action>;
|
|
5307
|
-
/** @internal */
|
|
5308
|
-
export declare const UserEventPayload156Action$outboundSchema: z.ZodNativeEnum<typeof UserEventPayload156Action>;
|
|
5309
|
-
/** @internal */
|
|
5310
5334
|
export declare const OneHundredAndFiftySix$inboundSchema: z.ZodType<OneHundredAndFiftySix, z.ZodTypeDef, unknown>;
|
|
5311
5335
|
/** @internal */
|
|
5312
5336
|
export type OneHundredAndFiftySix$Outbound = {
|
|
5313
|
-
|
|
5337
|
+
edgeConfigId: string;
|
|
5338
|
+
edgeConfigSlug: string;
|
|
5339
|
+
edgeConfigTokenIds: Array<string>;
|
|
5314
5340
|
};
|
|
5315
5341
|
/** @internal */
|
|
5316
5342
|
export declare const OneHundredAndFiftySix$outboundSchema: z.ZodType<OneHundredAndFiftySix$Outbound, z.ZodTypeDef, OneHundredAndFiftySix>;
|
|
@@ -5322,7 +5348,8 @@ export declare const OneHundredAndFiftyFive$inboundSchema: z.ZodType<OneHundredA
|
|
|
5322
5348
|
export type OneHundredAndFiftyFive$Outbound = {
|
|
5323
5349
|
edgeConfigId: string;
|
|
5324
5350
|
edgeConfigSlug: string;
|
|
5325
|
-
|
|
5351
|
+
edgeConfigTokenId: string;
|
|
5352
|
+
label: string;
|
|
5326
5353
|
};
|
|
5327
5354
|
/** @internal */
|
|
5328
5355
|
export declare const OneHundredAndFiftyFive$outboundSchema: z.ZodType<OneHundredAndFiftyFive$Outbound, z.ZodTypeDef, OneHundredAndFiftyFive>;
|
|
@@ -5334,8 +5361,7 @@ export declare const OneHundredAndFiftyFour$inboundSchema: z.ZodType<OneHundredA
|
|
|
5334
5361
|
export type OneHundredAndFiftyFour$Outbound = {
|
|
5335
5362
|
edgeConfigId: string;
|
|
5336
5363
|
edgeConfigSlug: string;
|
|
5337
|
-
|
|
5338
|
-
label: string;
|
|
5364
|
+
edgeConfigDigest: string;
|
|
5339
5365
|
};
|
|
5340
5366
|
/** @internal */
|
|
5341
5367
|
export declare const OneHundredAndFiftyFour$outboundSchema: z.ZodType<OneHundredAndFiftyFour$Outbound, z.ZodTypeDef, OneHundredAndFiftyFour>;
|
|
@@ -5345,9 +5371,8 @@ export declare function oneHundredAndFiftyFourFromJSON(jsonString: string): Safe
|
|
|
5345
5371
|
export declare const OneHundredAndFiftyThree$inboundSchema: z.ZodType<OneHundredAndFiftyThree, z.ZodTypeDef, unknown>;
|
|
5346
5372
|
/** @internal */
|
|
5347
5373
|
export type OneHundredAndFiftyThree$Outbound = {
|
|
5348
|
-
|
|
5349
|
-
|
|
5350
|
-
edgeConfigDigest: string;
|
|
5374
|
+
projectName: string;
|
|
5375
|
+
srcImages: Array<string>;
|
|
5351
5376
|
};
|
|
5352
5377
|
/** @internal */
|
|
5353
5378
|
export declare const OneHundredAndFiftyThree$outboundSchema: z.ZodType<OneHundredAndFiftyThree$Outbound, z.ZodTypeDef, OneHundredAndFiftyThree>;
|
|
@@ -5358,32 +5383,21 @@ export declare const OneHundredAndFiftyTwo$inboundSchema: z.ZodType<OneHundredAn
|
|
|
5358
5383
|
/** @internal */
|
|
5359
5384
|
export type OneHundredAndFiftyTwo$Outbound = {
|
|
5360
5385
|
projectName: string;
|
|
5361
|
-
|
|
5386
|
+
tags: Array<string>;
|
|
5387
|
+
target?: string | undefined;
|
|
5362
5388
|
};
|
|
5363
5389
|
/** @internal */
|
|
5364
5390
|
export declare const OneHundredAndFiftyTwo$outboundSchema: z.ZodType<OneHundredAndFiftyTwo$Outbound, z.ZodTypeDef, OneHundredAndFiftyTwo>;
|
|
5365
5391
|
export declare function oneHundredAndFiftyTwoToJSON(oneHundredAndFiftyTwo: OneHundredAndFiftyTwo): string;
|
|
5366
5392
|
export declare function oneHundredAndFiftyTwoFromJSON(jsonString: string): SafeParseResult<OneHundredAndFiftyTwo, SDKValidationError>;
|
|
5367
5393
|
/** @internal */
|
|
5368
|
-
export declare const
|
|
5369
|
-
/** @internal */
|
|
5370
|
-
export type OneHundredAndFiftyOne$Outbound = {
|
|
5371
|
-
projectName: string;
|
|
5372
|
-
tags: Array<string>;
|
|
5373
|
-
target?: string | undefined;
|
|
5374
|
-
};
|
|
5375
|
-
/** @internal */
|
|
5376
|
-
export declare const OneHundredAndFiftyOne$outboundSchema: z.ZodType<OneHundredAndFiftyOne$Outbound, z.ZodTypeDef, OneHundredAndFiftyOne>;
|
|
5377
|
-
export declare function oneHundredAndFiftyOneToJSON(oneHundredAndFiftyOne: OneHundredAndFiftyOne): string;
|
|
5378
|
-
export declare function oneHundredAndFiftyOneFromJSON(jsonString: string): SafeParseResult<OneHundredAndFiftyOne, SDKValidationError>;
|
|
5394
|
+
export declare const UserEventPayload151Role$inboundSchema: z.ZodNativeEnum<typeof UserEventPayload151Role>;
|
|
5379
5395
|
/** @internal */
|
|
5380
|
-
export declare const
|
|
5396
|
+
export declare const UserEventPayload151Role$outboundSchema: z.ZodNativeEnum<typeof UserEventPayload151Role>;
|
|
5381
5397
|
/** @internal */
|
|
5382
|
-
export declare const
|
|
5398
|
+
export declare const UserEventPayload151Project$inboundSchema: z.ZodType<UserEventPayload151Project, z.ZodTypeDef, unknown>;
|
|
5383
5399
|
/** @internal */
|
|
5384
|
-
export
|
|
5385
|
-
/** @internal */
|
|
5386
|
-
export type UserEventPayload150Project$Outbound = {
|
|
5400
|
+
export type UserEventPayload151Project$Outbound = {
|
|
5387
5401
|
name: string;
|
|
5388
5402
|
role: string;
|
|
5389
5403
|
invitedUserName: string;
|
|
@@ -5391,34 +5405,34 @@ export type UserEventPayload150Project$Outbound = {
|
|
|
5391
5405
|
invitedUserId?: string | undefined;
|
|
5392
5406
|
};
|
|
5393
5407
|
/** @internal */
|
|
5394
|
-
export declare const
|
|
5395
|
-
export declare function
|
|
5396
|
-
export declare function
|
|
5408
|
+
export declare const UserEventPayload151Project$outboundSchema: z.ZodType<UserEventPayload151Project$Outbound, z.ZodTypeDef, UserEventPayload151Project>;
|
|
5409
|
+
export declare function userEventPayload151ProjectToJSON(userEventPayload151Project: UserEventPayload151Project): string;
|
|
5410
|
+
export declare function userEventPayload151ProjectFromJSON(jsonString: string): SafeParseResult<UserEventPayload151Project, SDKValidationError>;
|
|
5397
5411
|
/** @internal */
|
|
5398
|
-
export declare const
|
|
5412
|
+
export declare const OneHundredAndFiftyOne$inboundSchema: z.ZodType<OneHundredAndFiftyOne, z.ZodTypeDef, unknown>;
|
|
5399
5413
|
/** @internal */
|
|
5400
|
-
export type
|
|
5401
|
-
project:
|
|
5414
|
+
export type OneHundredAndFiftyOne$Outbound = {
|
|
5415
|
+
project: UserEventPayload151Project$Outbound;
|
|
5402
5416
|
};
|
|
5403
5417
|
/** @internal */
|
|
5404
|
-
export declare const
|
|
5405
|
-
export declare function
|
|
5406
|
-
export declare function
|
|
5418
|
+
export declare const OneHundredAndFiftyOne$outboundSchema: z.ZodType<OneHundredAndFiftyOne$Outbound, z.ZodTypeDef, OneHundredAndFiftyOne>;
|
|
5419
|
+
export declare function oneHundredAndFiftyOneToJSON(oneHundredAndFiftyOne: OneHundredAndFiftyOne): string;
|
|
5420
|
+
export declare function oneHundredAndFiftyOneFromJSON(jsonString: string): SafeParseResult<OneHundredAndFiftyOne, SDKValidationError>;
|
|
5407
5421
|
/** @internal */
|
|
5408
|
-
export declare const
|
|
5422
|
+
export declare const UserEventPayload150Project$inboundSchema: z.ZodType<UserEventPayload150Project, z.ZodTypeDef, unknown>;
|
|
5409
5423
|
/** @internal */
|
|
5410
|
-
export type
|
|
5424
|
+
export type UserEventPayload150Project$Outbound = {
|
|
5411
5425
|
id: string;
|
|
5412
5426
|
name: string;
|
|
5413
5427
|
};
|
|
5414
5428
|
/** @internal */
|
|
5415
|
-
export declare const
|
|
5416
|
-
export declare function
|
|
5417
|
-
export declare function
|
|
5429
|
+
export declare const UserEventPayload150Project$outboundSchema: z.ZodType<UserEventPayload150Project$Outbound, z.ZodTypeDef, UserEventPayload150Project>;
|
|
5430
|
+
export declare function userEventPayload150ProjectToJSON(userEventPayload150Project: UserEventPayload150Project): string;
|
|
5431
|
+
export declare function userEventPayload150ProjectFromJSON(jsonString: string): SafeParseResult<UserEventPayload150Project, SDKValidationError>;
|
|
5418
5432
|
/** @internal */
|
|
5419
|
-
export declare const
|
|
5433
|
+
export declare const UserEventPayload150Role$inboundSchema: z.ZodNativeEnum<typeof UserEventPayload150Role>;
|
|
5420
5434
|
/** @internal */
|
|
5421
|
-
export declare const
|
|
5435
|
+
export declare const UserEventPayload150Role$outboundSchema: z.ZodNativeEnum<typeof UserEventPayload150Role>;
|
|
5422
5436
|
/** @internal */
|
|
5423
5437
|
export declare const PayloadPreviousRole$inboundSchema: z.ZodNativeEnum<typeof PayloadPreviousRole>;
|
|
5424
5438
|
/** @internal */
|
|
@@ -5438,31 +5452,31 @@ export declare const PayloadProjectMembership$outboundSchema: z.ZodType<PayloadP
|
|
|
5438
5452
|
export declare function payloadProjectMembershipToJSON(payloadProjectMembership: PayloadProjectMembership): string;
|
|
5439
5453
|
export declare function payloadProjectMembershipFromJSON(jsonString: string): SafeParseResult<PayloadProjectMembership, SDKValidationError>;
|
|
5440
5454
|
/** @internal */
|
|
5441
|
-
export declare const
|
|
5455
|
+
export declare const OneHundredAndFifty$inboundSchema: z.ZodType<OneHundredAndFifty, z.ZodTypeDef, unknown>;
|
|
5442
5456
|
/** @internal */
|
|
5443
|
-
export type
|
|
5444
|
-
project:
|
|
5457
|
+
export type OneHundredAndFifty$Outbound = {
|
|
5458
|
+
project: UserEventPayload150Project$Outbound;
|
|
5445
5459
|
projectMembership: PayloadProjectMembership$Outbound;
|
|
5446
5460
|
};
|
|
5447
5461
|
/** @internal */
|
|
5448
|
-
export declare const
|
|
5449
|
-
export declare function
|
|
5450
|
-
export declare function
|
|
5462
|
+
export declare const OneHundredAndFifty$outboundSchema: z.ZodType<OneHundredAndFifty$Outbound, z.ZodTypeDef, OneHundredAndFifty>;
|
|
5463
|
+
export declare function oneHundredAndFiftyToJSON(oneHundredAndFifty: OneHundredAndFifty): string;
|
|
5464
|
+
export declare function oneHundredAndFiftyFromJSON(jsonString: string): SafeParseResult<OneHundredAndFifty, SDKValidationError>;
|
|
5451
5465
|
/** @internal */
|
|
5452
|
-
export declare const
|
|
5466
|
+
export declare const UserEventPayload149Project$inboundSchema: z.ZodType<UserEventPayload149Project, z.ZodTypeDef, unknown>;
|
|
5453
5467
|
/** @internal */
|
|
5454
|
-
export type
|
|
5468
|
+
export type UserEventPayload149Project$Outbound = {
|
|
5455
5469
|
name: string;
|
|
5456
5470
|
id?: string | undefined;
|
|
5457
5471
|
};
|
|
5458
5472
|
/** @internal */
|
|
5459
|
-
export declare const
|
|
5460
|
-
export declare function
|
|
5461
|
-
export declare function
|
|
5473
|
+
export declare const UserEventPayload149Project$outboundSchema: z.ZodType<UserEventPayload149Project$Outbound, z.ZodTypeDef, UserEventPayload149Project>;
|
|
5474
|
+
export declare function userEventPayload149ProjectToJSON(userEventPayload149Project: UserEventPayload149Project): string;
|
|
5475
|
+
export declare function userEventPayload149ProjectFromJSON(jsonString: string): SafeParseResult<UserEventPayload149Project, SDKValidationError>;
|
|
5462
5476
|
/** @internal */
|
|
5463
|
-
export declare const
|
|
5477
|
+
export declare const UserEventPayload149Role$inboundSchema: z.ZodNativeEnum<typeof UserEventPayload149Role>;
|
|
5464
5478
|
/** @internal */
|
|
5465
|
-
export declare const
|
|
5479
|
+
export declare const UserEventPayload149Role$outboundSchema: z.ZodNativeEnum<typeof UserEventPayload149Role>;
|
|
5466
5480
|
/** @internal */
|
|
5467
5481
|
export declare const RemovedMembership$inboundSchema: z.ZodType<RemovedMembership, z.ZodTypeDef, unknown>;
|
|
5468
5482
|
/** @internal */
|
|
@@ -5477,31 +5491,31 @@ export declare const RemovedMembership$outboundSchema: z.ZodType<RemovedMembersh
|
|
|
5477
5491
|
export declare function removedMembershipToJSON(removedMembership: RemovedMembership): string;
|
|
5478
5492
|
export declare function removedMembershipFromJSON(jsonString: string): SafeParseResult<RemovedMembership, SDKValidationError>;
|
|
5479
5493
|
/** @internal */
|
|
5480
|
-
export declare const
|
|
5494
|
+
export declare const OneHundredAndFortyNine$inboundSchema: z.ZodType<OneHundredAndFortyNine, z.ZodTypeDef, unknown>;
|
|
5481
5495
|
/** @internal */
|
|
5482
|
-
export type
|
|
5483
|
-
project:
|
|
5496
|
+
export type OneHundredAndFortyNine$Outbound = {
|
|
5497
|
+
project: UserEventPayload149Project$Outbound;
|
|
5484
5498
|
removedMembership: RemovedMembership$Outbound;
|
|
5485
5499
|
};
|
|
5486
5500
|
/** @internal */
|
|
5487
|
-
export declare const
|
|
5488
|
-
export declare function
|
|
5489
|
-
export declare function
|
|
5501
|
+
export declare const OneHundredAndFortyNine$outboundSchema: z.ZodType<OneHundredAndFortyNine$Outbound, z.ZodTypeDef, OneHundredAndFortyNine>;
|
|
5502
|
+
export declare function oneHundredAndFortyNineToJSON(oneHundredAndFortyNine: OneHundredAndFortyNine): string;
|
|
5503
|
+
export declare function oneHundredAndFortyNineFromJSON(jsonString: string): SafeParseResult<OneHundredAndFortyNine, SDKValidationError>;
|
|
5490
5504
|
/** @internal */
|
|
5491
|
-
export declare const
|
|
5505
|
+
export declare const UserEventPayload148Project$inboundSchema: z.ZodType<UserEventPayload148Project, z.ZodTypeDef, unknown>;
|
|
5492
5506
|
/** @internal */
|
|
5493
|
-
export type
|
|
5507
|
+
export type UserEventPayload148Project$Outbound = {
|
|
5494
5508
|
name: string;
|
|
5495
5509
|
id?: string | undefined;
|
|
5496
5510
|
};
|
|
5497
5511
|
/** @internal */
|
|
5498
|
-
export declare const
|
|
5499
|
-
export declare function
|
|
5500
|
-
export declare function
|
|
5512
|
+
export declare const UserEventPayload148Project$outboundSchema: z.ZodType<UserEventPayload148Project$Outbound, z.ZodTypeDef, UserEventPayload148Project>;
|
|
5513
|
+
export declare function userEventPayload148ProjectToJSON(userEventPayload148Project: UserEventPayload148Project): string;
|
|
5514
|
+
export declare function userEventPayload148ProjectFromJSON(jsonString: string): SafeParseResult<UserEventPayload148Project, SDKValidationError>;
|
|
5501
5515
|
/** @internal */
|
|
5502
|
-
export declare const
|
|
5516
|
+
export declare const UserEventPayload148Role$inboundSchema: z.ZodNativeEnum<typeof UserEventPayload148Role>;
|
|
5503
5517
|
/** @internal */
|
|
5504
|
-
export declare const
|
|
5518
|
+
export declare const UserEventPayload148Role$outboundSchema: z.ZodNativeEnum<typeof UserEventPayload148Role>;
|
|
5505
5519
|
/** @internal */
|
|
5506
5520
|
export declare const ProjectMembership$inboundSchema: z.ZodType<ProjectMembership, z.ZodTypeDef, unknown>;
|
|
5507
5521
|
/** @internal */
|
|
@@ -5516,11 +5530,24 @@ export declare const ProjectMembership$outboundSchema: z.ZodType<ProjectMembersh
|
|
|
5516
5530
|
export declare function projectMembershipToJSON(projectMembership: ProjectMembership): string;
|
|
5517
5531
|
export declare function projectMembershipFromJSON(jsonString: string): SafeParseResult<ProjectMembership, SDKValidationError>;
|
|
5518
5532
|
/** @internal */
|
|
5533
|
+
export declare const OneHundredAndFortyEight$inboundSchema: z.ZodType<OneHundredAndFortyEight, z.ZodTypeDef, unknown>;
|
|
5534
|
+
/** @internal */
|
|
5535
|
+
export type OneHundredAndFortyEight$Outbound = {
|
|
5536
|
+
project: UserEventPayload148Project$Outbound;
|
|
5537
|
+
projectMembership: ProjectMembership$Outbound | null;
|
|
5538
|
+
};
|
|
5539
|
+
/** @internal */
|
|
5540
|
+
export declare const OneHundredAndFortyEight$outboundSchema: z.ZodType<OneHundredAndFortyEight$Outbound, z.ZodTypeDef, OneHundredAndFortyEight>;
|
|
5541
|
+
export declare function oneHundredAndFortyEightToJSON(oneHundredAndFortyEight: OneHundredAndFortyEight): string;
|
|
5542
|
+
export declare function oneHundredAndFortyEightFromJSON(jsonString: string): SafeParseResult<OneHundredAndFortyEight, SDKValidationError>;
|
|
5543
|
+
/** @internal */
|
|
5519
5544
|
export declare const OneHundredAndFortySeven$inboundSchema: z.ZodType<OneHundredAndFortySeven, z.ZodTypeDef, unknown>;
|
|
5520
5545
|
/** @internal */
|
|
5521
5546
|
export type OneHundredAndFortySeven$Outbound = {
|
|
5522
|
-
|
|
5523
|
-
|
|
5547
|
+
previousProjectName: string;
|
|
5548
|
+
newProjectName: string;
|
|
5549
|
+
originAccountName: string;
|
|
5550
|
+
transferId?: string | undefined;
|
|
5524
5551
|
};
|
|
5525
5552
|
/** @internal */
|
|
5526
5553
|
export declare const OneHundredAndFortySeven$outboundSchema: z.ZodType<OneHundredAndFortySeven$Outbound, z.ZodTypeDef, OneHundredAndFortySeven>;
|
|
@@ -5532,7 +5559,7 @@ export declare const OneHundredAndFortySix$inboundSchema: z.ZodType<OneHundredAn
|
|
|
5532
5559
|
export type OneHundredAndFortySix$Outbound = {
|
|
5533
5560
|
previousProjectName: string;
|
|
5534
5561
|
newProjectName: string;
|
|
5535
|
-
|
|
5562
|
+
destinationAccountName: string;
|
|
5536
5563
|
transferId?: string | undefined;
|
|
5537
5564
|
};
|
|
5538
5565
|
/** @internal */
|
|
@@ -5543,9 +5570,8 @@ export declare function oneHundredAndFortySixFromJSON(jsonString: string): SafeP
|
|
|
5543
5570
|
export declare const OneHundredAndFortyFive$inboundSchema: z.ZodType<OneHundredAndFortyFive, z.ZodTypeDef, unknown>;
|
|
5544
5571
|
/** @internal */
|
|
5545
5572
|
export type OneHundredAndFortyFive$Outbound = {
|
|
5546
|
-
|
|
5547
|
-
|
|
5548
|
-
destinationAccountName: string;
|
|
5573
|
+
projectName: string;
|
|
5574
|
+
destinationAccountName: string | null;
|
|
5549
5575
|
transferId?: string | undefined;
|
|
5550
5576
|
};
|
|
5551
5577
|
/** @internal */
|
|
@@ -5556,8 +5582,11 @@ export declare function oneHundredAndFortyFiveFromJSON(jsonString: string): Safe
|
|
|
5556
5582
|
export declare const OneHundredAndFortyFour$inboundSchema: z.ZodType<OneHundredAndFortyFour, z.ZodTypeDef, unknown>;
|
|
5557
5583
|
/** @internal */
|
|
5558
5584
|
export type OneHundredAndFortyFour$Outbound = {
|
|
5585
|
+
projectId: string;
|
|
5559
5586
|
projectName: string;
|
|
5560
|
-
|
|
5587
|
+
originAccountName: string;
|
|
5588
|
+
destinationAccountName: string;
|
|
5589
|
+
destinationAccountId: string;
|
|
5561
5590
|
transferId?: string | undefined;
|
|
5562
5591
|
};
|
|
5563
5592
|
/** @internal */
|
|
@@ -5568,12 +5597,12 @@ export declare function oneHundredAndFortyFourFromJSON(jsonString: string): Safe
|
|
|
5568
5597
|
export declare const OneHundredAndFortyThree$inboundSchema: z.ZodType<OneHundredAndFortyThree, z.ZodTypeDef, unknown>;
|
|
5569
5598
|
/** @internal */
|
|
5570
5599
|
export type OneHundredAndFortyThree$Outbound = {
|
|
5571
|
-
|
|
5572
|
-
|
|
5573
|
-
|
|
5574
|
-
|
|
5575
|
-
|
|
5576
|
-
|
|
5600
|
+
requestedTeamName: string;
|
|
5601
|
+
requestedUserName?: string | undefined;
|
|
5602
|
+
gitUsername?: string | undefined;
|
|
5603
|
+
githubUsername?: string | undefined;
|
|
5604
|
+
gitlabUsername?: string | undefined;
|
|
5605
|
+
bitbucketUsername?: string | undefined;
|
|
5577
5606
|
};
|
|
5578
5607
|
/** @internal */
|
|
5579
5608
|
export declare const OneHundredAndFortyThree$outboundSchema: z.ZodType<OneHundredAndFortyThree$Outbound, z.ZodTypeDef, OneHundredAndFortyThree>;
|
|
@@ -5583,12 +5612,12 @@ export declare function oneHundredAndFortyThreeFromJSON(jsonString: string): Saf
|
|
|
5583
5612
|
export declare const OneHundredAndFortyTwo$inboundSchema: z.ZodType<OneHundredAndFortyTwo, z.ZodTypeDef, unknown>;
|
|
5584
5613
|
/** @internal */
|
|
5585
5614
|
export type OneHundredAndFortyTwo$Outbound = {
|
|
5586
|
-
|
|
5587
|
-
|
|
5588
|
-
gitUsername?: string | undefined;
|
|
5589
|
-
githubUsername?: string | undefined;
|
|
5590
|
-
gitlabUsername?: string | undefined;
|
|
5591
|
-
bitbucketUsername?: string | undefined;
|
|
5615
|
+
teamName: string;
|
|
5616
|
+
username?: string | undefined;
|
|
5617
|
+
gitUsername?: string | null | undefined;
|
|
5618
|
+
githubUsername?: string | null | undefined;
|
|
5619
|
+
gitlabUsername?: string | null | undefined;
|
|
5620
|
+
bitbucketUsername?: string | null | undefined;
|
|
5592
5621
|
};
|
|
5593
5622
|
/** @internal */
|
|
5594
5623
|
export declare const OneHundredAndFortyTwo$outboundSchema: z.ZodType<OneHundredAndFortyTwo$Outbound, z.ZodTypeDef, OneHundredAndFortyTwo>;
|
|
@@ -5600,10 +5629,12 @@ export declare const OneHundredAndFortyOne$inboundSchema: z.ZodType<OneHundredAn
|
|
|
5600
5629
|
export type OneHundredAndFortyOne$Outbound = {
|
|
5601
5630
|
teamName: string;
|
|
5602
5631
|
username?: string | undefined;
|
|
5603
|
-
gitUsername?: string |
|
|
5632
|
+
gitUsername?: string | undefined;
|
|
5604
5633
|
githubUsername?: string | null | undefined;
|
|
5605
5634
|
gitlabUsername?: string | null | undefined;
|
|
5606
5635
|
bitbucketUsername?: string | null | undefined;
|
|
5636
|
+
updatedUid?: string | undefined;
|
|
5637
|
+
teamId?: string | undefined;
|
|
5607
5638
|
};
|
|
5608
5639
|
/** @internal */
|
|
5609
5640
|
export declare const OneHundredAndFortyOne$outboundSchema: z.ZodType<OneHundredAndFortyOne$Outbound, z.ZodTypeDef, OneHundredAndFortyOne>;
|
|
@@ -5613,14 +5644,8 @@ export declare function oneHundredAndFortyOneFromJSON(jsonString: string): SafeP
|
|
|
5613
5644
|
export declare const OneHundredAndForty$inboundSchema: z.ZodType<OneHundredAndForty, z.ZodTypeDef, unknown>;
|
|
5614
5645
|
/** @internal */
|
|
5615
5646
|
export type OneHundredAndForty$Outbound = {
|
|
5616
|
-
|
|
5617
|
-
|
|
5618
|
-
gitUsername?: string | undefined;
|
|
5619
|
-
githubUsername?: string | null | undefined;
|
|
5620
|
-
gitlabUsername?: string | null | undefined;
|
|
5621
|
-
bitbucketUsername?: string | null | undefined;
|
|
5622
|
-
updatedUid?: string | undefined;
|
|
5623
|
-
teamId?: string | undefined;
|
|
5647
|
+
price?: number | undefined;
|
|
5648
|
+
currency?: string | undefined;
|
|
5624
5649
|
};
|
|
5625
5650
|
/** @internal */
|
|
5626
5651
|
export declare const OneHundredAndForty$outboundSchema: z.ZodType<OneHundredAndForty$Outbound, z.ZodTypeDef, OneHundredAndForty>;
|
|
@@ -5630,8 +5655,8 @@ export declare function oneHundredAndFortyFromJSON(jsonString: string): SafePars
|
|
|
5630
5655
|
export declare const OneHundredAndThirtyNine$inboundSchema: z.ZodType<OneHundredAndThirtyNine, z.ZodTypeDef, unknown>;
|
|
5631
5656
|
/** @internal */
|
|
5632
5657
|
export type OneHundredAndThirtyNine$Outbound = {
|
|
5633
|
-
|
|
5634
|
-
|
|
5658
|
+
previewDeploymentSuffix?: string | null | undefined;
|
|
5659
|
+
previousPreviewDeploymentSuffix?: string | null | undefined;
|
|
5635
5660
|
};
|
|
5636
5661
|
/** @internal */
|
|
5637
5662
|
export declare const OneHundredAndThirtyNine$outboundSchema: z.ZodType<OneHundredAndThirtyNine$Outbound, z.ZodTypeDef, OneHundredAndThirtyNine>;
|
|
@@ -5641,8 +5666,9 @@ export declare function oneHundredAndThirtyNineFromJSON(jsonString: string): Saf
|
|
|
5641
5666
|
export declare const OneHundredAndThirtyEight$inboundSchema: z.ZodType<OneHundredAndThirtyEight, z.ZodTypeDef, unknown>;
|
|
5642
5667
|
/** @internal */
|
|
5643
5668
|
export type OneHundredAndThirtyEight$Outbound = {
|
|
5644
|
-
|
|
5645
|
-
|
|
5669
|
+
price?: number | undefined;
|
|
5670
|
+
currency?: string | undefined;
|
|
5671
|
+
enabled?: boolean | undefined;
|
|
5646
5672
|
};
|
|
5647
5673
|
/** @internal */
|
|
5648
5674
|
export declare const OneHundredAndThirtyEight$outboundSchema: z.ZodType<OneHundredAndThirtyEight$Outbound, z.ZodTypeDef, OneHundredAndThirtyEight>;
|
|
@@ -5652,9 +5678,7 @@ export declare function oneHundredAndThirtyEightFromJSON(jsonString: string): Sa
|
|
|
5652
5678
|
export declare const OneHundredAndThirtySeven$inboundSchema: z.ZodType<OneHundredAndThirtySeven, z.ZodTypeDef, unknown>;
|
|
5653
5679
|
/** @internal */
|
|
5654
5680
|
export type OneHundredAndThirtySeven$Outbound = {
|
|
5655
|
-
|
|
5656
|
-
currency?: string | undefined;
|
|
5657
|
-
enabled?: boolean | undefined;
|
|
5681
|
+
username: string;
|
|
5658
5682
|
};
|
|
5659
5683
|
/** @internal */
|
|
5660
5684
|
export declare const OneHundredAndThirtySeven$outboundSchema: z.ZodType<OneHundredAndThirtySeven$Outbound, z.ZodTypeDef, OneHundredAndThirtySeven>;
|
|
@@ -5664,7 +5688,8 @@ export declare function oneHundredAndThirtySevenFromJSON(jsonString: string): Sa
|
|
|
5664
5688
|
export declare const OneHundredAndThirtySix$inboundSchema: z.ZodType<OneHundredAndThirtySix, z.ZodTypeDef, unknown>;
|
|
5665
5689
|
/** @internal */
|
|
5666
5690
|
export type OneHundredAndThirtySix$Outbound = {
|
|
5667
|
-
|
|
5691
|
+
email: string;
|
|
5692
|
+
prevEmail: string;
|
|
5668
5693
|
};
|
|
5669
5694
|
/** @internal */
|
|
5670
5695
|
export declare const OneHundredAndThirtySix$outboundSchema: z.ZodType<OneHundredAndThirtySix$Outbound, z.ZodTypeDef, OneHundredAndThirtySix>;
|
|
@@ -5674,8 +5699,7 @@ export declare function oneHundredAndThirtySixFromJSON(jsonString: string): Safe
|
|
|
5674
5699
|
export declare const OneHundredAndThirtyFive$inboundSchema: z.ZodType<OneHundredAndThirtyFive, z.ZodTypeDef, unknown>;
|
|
5675
5700
|
/** @internal */
|
|
5676
5701
|
export type OneHundredAndThirtyFive$Outbound = {
|
|
5677
|
-
|
|
5678
|
-
prevEmail: string;
|
|
5702
|
+
mfaEnabled: boolean;
|
|
5679
5703
|
};
|
|
5680
5704
|
/** @internal */
|
|
5681
5705
|
export declare const OneHundredAndThirtyFive$outboundSchema: z.ZodType<OneHundredAndThirtyFive$Outbound, z.ZodTypeDef, OneHundredAndThirtyFive>;
|
|
@@ -5685,24 +5709,14 @@ export declare function oneHundredAndThirtyFiveFromJSON(jsonString: string): Saf
|
|
|
5685
5709
|
export declare const OneHundredAndThirtyFour$inboundSchema: z.ZodType<OneHundredAndThirtyFour, z.ZodTypeDef, unknown>;
|
|
5686
5710
|
/** @internal */
|
|
5687
5711
|
export type OneHundredAndThirtyFour$Outbound = {
|
|
5688
|
-
|
|
5712
|
+
enabled: boolean;
|
|
5713
|
+
totpVerified: boolean;
|
|
5689
5714
|
};
|
|
5690
5715
|
/** @internal */
|
|
5691
5716
|
export declare const OneHundredAndThirtyFour$outboundSchema: z.ZodType<OneHundredAndThirtyFour$Outbound, z.ZodTypeDef, OneHundredAndThirtyFour>;
|
|
5692
5717
|
export declare function oneHundredAndThirtyFourToJSON(oneHundredAndThirtyFour: OneHundredAndThirtyFour): string;
|
|
5693
5718
|
export declare function oneHundredAndThirtyFourFromJSON(jsonString: string): SafeParseResult<OneHundredAndThirtyFour, SDKValidationError>;
|
|
5694
5719
|
/** @internal */
|
|
5695
|
-
export declare const OneHundredAndThirtyThree$inboundSchema: z.ZodType<OneHundredAndThirtyThree, z.ZodTypeDef, unknown>;
|
|
5696
|
-
/** @internal */
|
|
5697
|
-
export type OneHundredAndThirtyThree$Outbound = {
|
|
5698
|
-
enabled: boolean;
|
|
5699
|
-
totpVerified: boolean;
|
|
5700
|
-
};
|
|
5701
|
-
/** @internal */
|
|
5702
|
-
export declare const OneHundredAndThirtyThree$outboundSchema: z.ZodType<OneHundredAndThirtyThree$Outbound, z.ZodTypeDef, OneHundredAndThirtyThree>;
|
|
5703
|
-
export declare function oneHundredAndThirtyThreeToJSON(oneHundredAndThirtyThree: OneHundredAndThirtyThree): string;
|
|
5704
|
-
export declare function oneHundredAndThirtyThreeFromJSON(jsonString: string): SafeParseResult<OneHundredAndThirtyThree, SDKValidationError>;
|
|
5705
|
-
/** @internal */
|
|
5706
5720
|
export declare const PayloadPrevious$inboundSchema: z.ZodType<PayloadPrevious, z.ZodTypeDef, unknown>;
|
|
5707
5721
|
/** @internal */
|
|
5708
5722
|
export type PayloadPrevious$Outbound = {
|
|
@@ -5725,16 +5739,16 @@ export declare const PayloadNext$outboundSchema: z.ZodType<PayloadNext$Outbound,
|
|
|
5725
5739
|
export declare function payloadNextToJSON(payloadNext: PayloadNext): string;
|
|
5726
5740
|
export declare function payloadNextFromJSON(jsonString: string): SafeParseResult<PayloadNext, SDKValidationError>;
|
|
5727
5741
|
/** @internal */
|
|
5728
|
-
export declare const
|
|
5742
|
+
export declare const OneHundredAndThirtyThree$inboundSchema: z.ZodType<OneHundredAndThirtyThree, z.ZodTypeDef, unknown>;
|
|
5729
5743
|
/** @internal */
|
|
5730
|
-
export type
|
|
5744
|
+
export type OneHundredAndThirtyThree$Outbound = {
|
|
5731
5745
|
previous: PayloadPrevious$Outbound;
|
|
5732
5746
|
next: PayloadNext$Outbound;
|
|
5733
5747
|
};
|
|
5734
5748
|
/** @internal */
|
|
5735
|
-
export declare const
|
|
5736
|
-
export declare function
|
|
5737
|
-
export declare function
|
|
5749
|
+
export declare const OneHundredAndThirtyThree$outboundSchema: z.ZodType<OneHundredAndThirtyThree$Outbound, z.ZodTypeDef, OneHundredAndThirtyThree>;
|
|
5750
|
+
export declare function oneHundredAndThirtyThreeToJSON(oneHundredAndThirtyThree: OneHundredAndThirtyThree): string;
|
|
5751
|
+
export declare function oneHundredAndThirtyThreeFromJSON(jsonString: string): SafeParseResult<OneHundredAndThirtyThree, SDKValidationError>;
|
|
5738
5752
|
/** @internal */
|
|
5739
5753
|
export declare const PayloadRemoteCaching$inboundSchema: z.ZodType<PayloadRemoteCaching, z.ZodTypeDef, unknown>;
|
|
5740
5754
|
/** @internal */
|
|
@@ -5742,14 +5756,24 @@ export type PayloadRemoteCaching$Outbound = {
|
|
|
5742
5756
|
enabled?: boolean | undefined;
|
|
5743
5757
|
};
|
|
5744
5758
|
/** @internal */
|
|
5745
|
-
export declare const PayloadRemoteCaching$outboundSchema: z.ZodType<PayloadRemoteCaching$Outbound, z.ZodTypeDef, PayloadRemoteCaching>;
|
|
5746
|
-
export declare function payloadRemoteCachingToJSON(payloadRemoteCaching: PayloadRemoteCaching): string;
|
|
5747
|
-
export declare function payloadRemoteCachingFromJSON(jsonString: string): SafeParseResult<PayloadRemoteCaching, SDKValidationError>;
|
|
5759
|
+
export declare const PayloadRemoteCaching$outboundSchema: z.ZodType<PayloadRemoteCaching$Outbound, z.ZodTypeDef, PayloadRemoteCaching>;
|
|
5760
|
+
export declare function payloadRemoteCachingToJSON(payloadRemoteCaching: PayloadRemoteCaching): string;
|
|
5761
|
+
export declare function payloadRemoteCachingFromJSON(jsonString: string): SafeParseResult<PayloadRemoteCaching, SDKValidationError>;
|
|
5762
|
+
/** @internal */
|
|
5763
|
+
export declare const OneHundredAndThirtyTwo$inboundSchema: z.ZodType<OneHundredAndThirtyTwo, z.ZodTypeDef, unknown>;
|
|
5764
|
+
/** @internal */
|
|
5765
|
+
export type OneHundredAndThirtyTwo$Outbound = {
|
|
5766
|
+
remoteCaching?: PayloadRemoteCaching$Outbound | undefined;
|
|
5767
|
+
};
|
|
5768
|
+
/** @internal */
|
|
5769
|
+
export declare const OneHundredAndThirtyTwo$outboundSchema: z.ZodType<OneHundredAndThirtyTwo$Outbound, z.ZodTypeDef, OneHundredAndThirtyTwo>;
|
|
5770
|
+
export declare function oneHundredAndThirtyTwoToJSON(oneHundredAndThirtyTwo: OneHundredAndThirtyTwo): string;
|
|
5771
|
+
export declare function oneHundredAndThirtyTwoFromJSON(jsonString: string): SafeParseResult<OneHundredAndThirtyTwo, SDKValidationError>;
|
|
5748
5772
|
/** @internal */
|
|
5749
5773
|
export declare const OneHundredAndThirtyOne$inboundSchema: z.ZodType<OneHundredAndThirtyOne, z.ZodTypeDef, unknown>;
|
|
5750
5774
|
/** @internal */
|
|
5751
5775
|
export type OneHundredAndThirtyOne$Outbound = {
|
|
5752
|
-
|
|
5776
|
+
slug?: string | undefined;
|
|
5753
5777
|
};
|
|
5754
5778
|
/** @internal */
|
|
5755
5779
|
export declare const OneHundredAndThirtyOne$outboundSchema: z.ZodType<OneHundredAndThirtyOne$Outbound, z.ZodTypeDef, OneHundredAndThirtyOne>;
|
|
@@ -5759,7 +5783,7 @@ export declare function oneHundredAndThirtyOneFromJSON(jsonString: string): Safe
|
|
|
5759
5783
|
export declare const OneHundredAndThirty$inboundSchema: z.ZodType<OneHundredAndThirty, z.ZodTypeDef, unknown>;
|
|
5760
5784
|
/** @internal */
|
|
5761
5785
|
export type OneHundredAndThirty$Outbound = {
|
|
5762
|
-
|
|
5786
|
+
name?: string | undefined;
|
|
5763
5787
|
};
|
|
5764
5788
|
/** @internal */
|
|
5765
5789
|
export declare const OneHundredAndThirty$outboundSchema: z.ZodType<OneHundredAndThirty$Outbound, z.ZodTypeDef, OneHundredAndThirty>;
|
|
@@ -5769,45 +5793,35 @@ export declare function oneHundredAndThirtyFromJSON(jsonString: string): SafePar
|
|
|
5769
5793
|
export declare const OneHundredAndTwentyNine$inboundSchema: z.ZodType<OneHundredAndTwentyNine, z.ZodTypeDef, unknown>;
|
|
5770
5794
|
/** @internal */
|
|
5771
5795
|
export type OneHundredAndTwentyNine$Outbound = {
|
|
5772
|
-
|
|
5796
|
+
enforced: boolean;
|
|
5773
5797
|
};
|
|
5774
5798
|
/** @internal */
|
|
5775
5799
|
export declare const OneHundredAndTwentyNine$outboundSchema: z.ZodType<OneHundredAndTwentyNine$Outbound, z.ZodTypeDef, OneHundredAndTwentyNine>;
|
|
5776
5800
|
export declare function oneHundredAndTwentyNineToJSON(oneHundredAndTwentyNine: OneHundredAndTwentyNine): string;
|
|
5777
5801
|
export declare function oneHundredAndTwentyNineFromJSON(jsonString: string): SafeParseResult<OneHundredAndTwentyNine, SDKValidationError>;
|
|
5778
5802
|
/** @internal */
|
|
5779
|
-
export declare const
|
|
5780
|
-
/** @internal */
|
|
5781
|
-
export type OneHundredAndTwentyEight$Outbound = {
|
|
5782
|
-
enforced: boolean;
|
|
5783
|
-
};
|
|
5784
|
-
/** @internal */
|
|
5785
|
-
export declare const OneHundredAndTwentyEight$outboundSchema: z.ZodType<OneHundredAndTwentyEight$Outbound, z.ZodTypeDef, OneHundredAndTwentyEight>;
|
|
5786
|
-
export declare function oneHundredAndTwentyEightToJSON(oneHundredAndTwentyEight: OneHundredAndTwentyEight): string;
|
|
5787
|
-
export declare function oneHundredAndTwentyEightFromJSON(jsonString: string): SafeParseResult<OneHundredAndTwentyEight, SDKValidationError>;
|
|
5788
|
-
/** @internal */
|
|
5789
|
-
export declare const UserEventPayload127User$inboundSchema: z.ZodType<UserEventPayload127User, z.ZodTypeDef, unknown>;
|
|
5803
|
+
export declare const UserEventPayload128User$inboundSchema: z.ZodType<UserEventPayload128User, z.ZodTypeDef, unknown>;
|
|
5790
5804
|
/** @internal */
|
|
5791
|
-
export type
|
|
5805
|
+
export type UserEventPayload128User$Outbound = {
|
|
5792
5806
|
id: string;
|
|
5793
5807
|
username: string;
|
|
5794
5808
|
};
|
|
5795
5809
|
/** @internal */
|
|
5796
|
-
export declare const
|
|
5797
|
-
export declare function
|
|
5798
|
-
export declare function
|
|
5810
|
+
export declare const UserEventPayload128User$outboundSchema: z.ZodType<UserEventPayload128User$Outbound, z.ZodTypeDef, UserEventPayload128User>;
|
|
5811
|
+
export declare function userEventPayload128UserToJSON(userEventPayload128User: UserEventPayload128User): string;
|
|
5812
|
+
export declare function userEventPayload128UserFromJSON(jsonString: string): SafeParseResult<UserEventPayload128User, SDKValidationError>;
|
|
5799
5813
|
/** @internal */
|
|
5800
|
-
export declare const
|
|
5814
|
+
export declare const OneHundredAndTwentyEight$inboundSchema: z.ZodType<OneHundredAndTwentyEight, z.ZodTypeDef, unknown>;
|
|
5801
5815
|
/** @internal */
|
|
5802
|
-
export type
|
|
5816
|
+
export type OneHundredAndTwentyEight$Outbound = {
|
|
5803
5817
|
entitlement: string;
|
|
5804
|
-
user:
|
|
5818
|
+
user: UserEventPayload128User$Outbound;
|
|
5805
5819
|
previousCanceledAt?: string | undefined;
|
|
5806
5820
|
};
|
|
5807
5821
|
/** @internal */
|
|
5808
|
-
export declare const
|
|
5809
|
-
export declare function
|
|
5810
|
-
export declare function
|
|
5822
|
+
export declare const OneHundredAndTwentyEight$outboundSchema: z.ZodType<OneHundredAndTwentyEight$Outbound, z.ZodTypeDef, OneHundredAndTwentyEight>;
|
|
5823
|
+
export declare function oneHundredAndTwentyEightToJSON(oneHundredAndTwentyEight: OneHundredAndTwentyEight): string;
|
|
5824
|
+
export declare function oneHundredAndTwentyEightFromJSON(jsonString: string): SafeParseResult<OneHundredAndTwentyEight, SDKValidationError>;
|
|
5811
5825
|
/** @internal */
|
|
5812
5826
|
export declare const UserEventPayloadUser$inboundSchema: z.ZodType<UserEventPayloadUser, z.ZodTypeDef, unknown>;
|
|
5813
5827
|
/** @internal */
|
|
@@ -5820,16 +5834,16 @@ export declare const UserEventPayloadUser$outboundSchema: z.ZodType<UserEventPay
|
|
|
5820
5834
|
export declare function userEventPayloadUserToJSON(userEventPayloadUser: UserEventPayloadUser): string;
|
|
5821
5835
|
export declare function userEventPayloadUserFromJSON(jsonString: string): SafeParseResult<UserEventPayloadUser, SDKValidationError>;
|
|
5822
5836
|
/** @internal */
|
|
5823
|
-
export declare const
|
|
5837
|
+
export declare const OneHundredAndTwentySeven$inboundSchema: z.ZodType<OneHundredAndTwentySeven, z.ZodTypeDef, unknown>;
|
|
5824
5838
|
/** @internal */
|
|
5825
|
-
export type
|
|
5839
|
+
export type OneHundredAndTwentySeven$Outbound = {
|
|
5826
5840
|
entitlement: string;
|
|
5827
5841
|
user: UserEventPayloadUser$Outbound;
|
|
5828
5842
|
};
|
|
5829
5843
|
/** @internal */
|
|
5830
|
-
export declare const
|
|
5831
|
-
export declare function
|
|
5832
|
-
export declare function
|
|
5844
|
+
export declare const OneHundredAndTwentySeven$outboundSchema: z.ZodType<OneHundredAndTwentySeven$Outbound, z.ZodTypeDef, OneHundredAndTwentySeven>;
|
|
5845
|
+
export declare function oneHundredAndTwentySevenToJSON(oneHundredAndTwentySeven: OneHundredAndTwentySeven): string;
|
|
5846
|
+
export declare function oneHundredAndTwentySevenFromJSON(jsonString: string): SafeParseResult<OneHundredAndTwentySeven, SDKValidationError>;
|
|
5833
5847
|
/** @internal */
|
|
5834
5848
|
export declare const UpdatedUser$inboundSchema: z.ZodType<UpdatedUser, z.ZodTypeDef, unknown>;
|
|
5835
5849
|
/** @internal */
|
|
@@ -5842,9 +5856,9 @@ export declare const UpdatedUser$outboundSchema: z.ZodType<UpdatedUser$Outbound,
|
|
|
5842
5856
|
export declare function updatedUserToJSON(updatedUser: UpdatedUser): string;
|
|
5843
5857
|
export declare function updatedUserFromJSON(jsonString: string): SafeParseResult<UpdatedUser, SDKValidationError>;
|
|
5844
5858
|
/** @internal */
|
|
5845
|
-
export declare const
|
|
5859
|
+
export declare const OneHundredAndTwentySix$inboundSchema: z.ZodType<OneHundredAndTwentySix, z.ZodTypeDef, unknown>;
|
|
5846
5860
|
/** @internal */
|
|
5847
|
-
export type
|
|
5861
|
+
export type OneHundredAndTwentySix$Outbound = {
|
|
5848
5862
|
directoryType?: string | undefined;
|
|
5849
5863
|
updatedUser?: UpdatedUser$Outbound | undefined;
|
|
5850
5864
|
role?: string | undefined;
|
|
@@ -5852,13 +5866,13 @@ export type OneHundredAndTwentyFive$Outbound = {
|
|
|
5852
5866
|
updatedUid?: string | undefined;
|
|
5853
5867
|
};
|
|
5854
5868
|
/** @internal */
|
|
5855
|
-
export declare const
|
|
5856
|
-
export declare function
|
|
5857
|
-
export declare function
|
|
5869
|
+
export declare const OneHundredAndTwentySix$outboundSchema: z.ZodType<OneHundredAndTwentySix$Outbound, z.ZodTypeDef, OneHundredAndTwentySix>;
|
|
5870
|
+
export declare function oneHundredAndTwentySixToJSON(oneHundredAndTwentySix: OneHundredAndTwentySix): string;
|
|
5871
|
+
export declare function oneHundredAndTwentySixFromJSON(jsonString: string): SafeParseResult<OneHundredAndTwentySix, SDKValidationError>;
|
|
5858
5872
|
/** @internal */
|
|
5859
|
-
export declare const
|
|
5873
|
+
export declare const OneHundredAndTwentyFive$inboundSchema: z.ZodType<OneHundredAndTwentyFive, z.ZodTypeDef, unknown>;
|
|
5860
5874
|
/** @internal */
|
|
5861
|
-
export type
|
|
5875
|
+
export type OneHundredAndTwentyFive$Outbound = {
|
|
5862
5876
|
role?: string | undefined;
|
|
5863
5877
|
uid: string;
|
|
5864
5878
|
origin?: string | undefined;
|
|
@@ -5867,9 +5881,9 @@ export type OneHundredAndTwentyFour$Outbound = {
|
|
|
5867
5881
|
entitlements?: Array<string> | undefined;
|
|
5868
5882
|
};
|
|
5869
5883
|
/** @internal */
|
|
5870
|
-
export declare const
|
|
5871
|
-
export declare function
|
|
5872
|
-
export declare function
|
|
5884
|
+
export declare const OneHundredAndTwentyFive$outboundSchema: z.ZodType<OneHundredAndTwentyFive$Outbound, z.ZodTypeDef, OneHundredAndTwentyFive>;
|
|
5885
|
+
export declare function oneHundredAndTwentyFiveToJSON(oneHundredAndTwentyFive: OneHundredAndTwentyFive): string;
|
|
5886
|
+
export declare function oneHundredAndTwentyFiveFromJSON(jsonString: string): SafeParseResult<OneHundredAndTwentyFive, SDKValidationError>;
|
|
5873
5887
|
/** @internal */
|
|
5874
5888
|
export declare const DeletedUser$inboundSchema: z.ZodType<DeletedUser, z.ZodTypeDef, unknown>;
|
|
5875
5889
|
/** @internal */
|
|
@@ -5894,9 +5908,9 @@ export declare const NewPlan$inboundSchema: z.ZodNativeEnum<typeof NewPlan>;
|
|
|
5894
5908
|
/** @internal */
|
|
5895
5909
|
export declare const NewPlan$outboundSchema: z.ZodNativeEnum<typeof NewPlan>;
|
|
5896
5910
|
/** @internal */
|
|
5897
|
-
export declare const
|
|
5911
|
+
export declare const OneHundredAndTwentyFour$inboundSchema: z.ZodType<OneHundredAndTwentyFour, z.ZodTypeDef, unknown>;
|
|
5898
5912
|
/** @internal */
|
|
5899
|
-
export type
|
|
5913
|
+
export type OneHundredAndTwentyFour$Outbound = {
|
|
5900
5914
|
deletedUser?: DeletedUser$Outbound | undefined;
|
|
5901
5915
|
deletedUid?: string | undefined;
|
|
5902
5916
|
githubUsername?: string | null | undefined;
|
|
@@ -5910,9 +5924,9 @@ export type OneHundredAndTwentyThree$Outbound = {
|
|
|
5910
5924
|
automated?: boolean | undefined;
|
|
5911
5925
|
};
|
|
5912
5926
|
/** @internal */
|
|
5913
|
-
export declare const
|
|
5914
|
-
export declare function
|
|
5915
|
-
export declare function
|
|
5927
|
+
export declare const OneHundredAndTwentyFour$outboundSchema: z.ZodType<OneHundredAndTwentyFour$Outbound, z.ZodTypeDef, OneHundredAndTwentyFour>;
|
|
5928
|
+
export declare function oneHundredAndTwentyFourToJSON(oneHundredAndTwentyFour: OneHundredAndTwentyFour): string;
|
|
5929
|
+
export declare function oneHundredAndTwentyFourFromJSON(jsonString: string): SafeParseResult<OneHundredAndTwentyFour, SDKValidationError>;
|
|
5916
5930
|
/** @internal */
|
|
5917
5931
|
export declare const InvitedUser$inboundSchema: z.ZodType<InvitedUser, z.ZodTypeDef, unknown>;
|
|
5918
5932
|
/** @internal */
|
|
@@ -5925,9 +5939,9 @@ export declare const InvitedUser$outboundSchema: z.ZodType<InvitedUser$Outbound,
|
|
|
5925
5939
|
export declare function invitedUserToJSON(invitedUser: InvitedUser): string;
|
|
5926
5940
|
export declare function invitedUserFromJSON(jsonString: string): SafeParseResult<InvitedUser, SDKValidationError>;
|
|
5927
5941
|
/** @internal */
|
|
5928
|
-
export declare const
|
|
5942
|
+
export declare const OneHundredAndTwentyThree$inboundSchema: z.ZodType<OneHundredAndTwentyThree, z.ZodTypeDef, unknown>;
|
|
5929
5943
|
/** @internal */
|
|
5930
|
-
export type
|
|
5944
|
+
export type OneHundredAndTwentyThree$Outbound = {
|
|
5931
5945
|
directoryType?: string | undefined;
|
|
5932
5946
|
ssoType?: string | undefined;
|
|
5933
5947
|
invitedUser?: InvitedUser$Outbound | undefined;
|
|
@@ -5937,9 +5951,9 @@ export type OneHundredAndTwentyTwo$Outbound = {
|
|
|
5937
5951
|
invitedUid?: string | undefined;
|
|
5938
5952
|
};
|
|
5939
5953
|
/** @internal */
|
|
5940
|
-
export declare const
|
|
5941
|
-
export declare function
|
|
5942
|
-
export declare function
|
|
5954
|
+
export declare const OneHundredAndTwentyThree$outboundSchema: z.ZodType<OneHundredAndTwentyThree$Outbound, z.ZodTypeDef, OneHundredAndTwentyThree>;
|
|
5955
|
+
export declare function oneHundredAndTwentyThreeToJSON(oneHundredAndTwentyThree: OneHundredAndTwentyThree): string;
|
|
5956
|
+
export declare function oneHundredAndTwentyThreeFromJSON(jsonString: string): SafeParseResult<OneHundredAndTwentyThree, SDKValidationError>;
|
|
5943
5957
|
/** @internal */
|
|
5944
5958
|
export declare const Reasons$inboundSchema: z.ZodType<Reasons, z.ZodTypeDef, unknown>;
|
|
5945
5959
|
/** @internal */
|
|
@@ -5952,9 +5966,9 @@ export declare const Reasons$outboundSchema: z.ZodType<Reasons$Outbound, z.ZodTy
|
|
|
5952
5966
|
export declare function reasonsToJSON(reasons: Reasons): string;
|
|
5953
5967
|
export declare function reasonsFromJSON(jsonString: string): SafeParseResult<Reasons, SDKValidationError>;
|
|
5954
5968
|
/** @internal */
|
|
5955
|
-
export declare const
|
|
5969
|
+
export declare const UserEventPayload122Role$inboundSchema: z.ZodNativeEnum<typeof UserEventPayload122Role>;
|
|
5956
5970
|
/** @internal */
|
|
5957
|
-
export declare const
|
|
5971
|
+
export declare const UserEventPayload122Role$outboundSchema: z.ZodNativeEnum<typeof UserEventPayload122Role>;
|
|
5958
5972
|
/** @internal */
|
|
5959
5973
|
export declare const PayloadRemovedUsers$inboundSchema: z.ZodType<PayloadRemovedUsers, z.ZodTypeDef, unknown>;
|
|
5960
5974
|
/** @internal */
|
|
@@ -5968,9 +5982,9 @@ export declare const PayloadRemovedUsers$outboundSchema: z.ZodType<PayloadRemove
|
|
|
5968
5982
|
export declare function payloadRemovedUsersToJSON(payloadRemovedUsers: PayloadRemovedUsers): string;
|
|
5969
5983
|
export declare function payloadRemovedUsersFromJSON(jsonString: string): SafeParseResult<PayloadRemovedUsers, SDKValidationError>;
|
|
5970
5984
|
/** @internal */
|
|
5971
|
-
export declare const
|
|
5985
|
+
export declare const OneHundredAndTwentyTwo$inboundSchema: z.ZodType<OneHundredAndTwentyTwo, z.ZodTypeDef, unknown>;
|
|
5972
5986
|
/** @internal */
|
|
5973
|
-
export type
|
|
5987
|
+
export type OneHundredAndTwentyTwo$Outbound = {
|
|
5974
5988
|
slug: string;
|
|
5975
5989
|
teamId: string;
|
|
5976
5990
|
by: string;
|
|
@@ -5983,19 +5997,19 @@ export type OneHundredAndTwentyOne$Outbound = {
|
|
|
5983
5997
|
timestamp?: number | undefined;
|
|
5984
5998
|
};
|
|
5985
5999
|
/** @internal */
|
|
5986
|
-
export declare const
|
|
5987
|
-
export declare function
|
|
5988
|
-
export declare function
|
|
6000
|
+
export declare const OneHundredAndTwentyTwo$outboundSchema: z.ZodType<OneHundredAndTwentyTwo$Outbound, z.ZodTypeDef, OneHundredAndTwentyTwo>;
|
|
6001
|
+
export declare function oneHundredAndTwentyTwoToJSON(oneHundredAndTwentyTwo: OneHundredAndTwentyTwo): string;
|
|
6002
|
+
export declare function oneHundredAndTwentyTwoFromJSON(jsonString: string): SafeParseResult<OneHundredAndTwentyTwo, SDKValidationError>;
|
|
5989
6003
|
/** @internal */
|
|
5990
|
-
export declare const
|
|
6004
|
+
export declare const OneHundredAndTwentyOne$inboundSchema: z.ZodType<OneHundredAndTwentyOne, z.ZodTypeDef, unknown>;
|
|
5991
6005
|
/** @internal */
|
|
5992
|
-
export type
|
|
6006
|
+
export type OneHundredAndTwentyOne$Outbound = {
|
|
5993
6007
|
slug: string;
|
|
5994
6008
|
};
|
|
5995
6009
|
/** @internal */
|
|
5996
|
-
export declare const
|
|
5997
|
-
export declare function
|
|
5998
|
-
export declare function
|
|
6010
|
+
export declare const OneHundredAndTwentyOne$outboundSchema: z.ZodType<OneHundredAndTwentyOne$Outbound, z.ZodTypeDef, OneHundredAndTwentyOne>;
|
|
6011
|
+
export declare function oneHundredAndTwentyOneToJSON(oneHundredAndTwentyOne: OneHundredAndTwentyOne): string;
|
|
6012
|
+
export declare function oneHundredAndTwentyOneFromJSON(jsonString: string): SafeParseResult<OneHundredAndTwentyOne, SDKValidationError>;
|
|
5999
6013
|
/** @internal */
|
|
6000
6014
|
export declare const Store$inboundSchema: z.ZodType<Store, z.ZodTypeDef, unknown>;
|
|
6001
6015
|
/** @internal */
|
|
@@ -6008,38 +6022,38 @@ export declare const Store$outboundSchema: z.ZodType<Store$Outbound, z.ZodTypeDe
|
|
|
6008
6022
|
export declare function storeToJSON(store: Store): string;
|
|
6009
6023
|
export declare function storeFromJSON(jsonString: string): SafeParseResult<Store, SDKValidationError>;
|
|
6010
6024
|
/** @internal */
|
|
6011
|
-
export declare const
|
|
6025
|
+
export declare const OneHundredAndTwenty$inboundSchema: z.ZodType<OneHundredAndTwenty, z.ZodTypeDef, unknown>;
|
|
6012
6026
|
/** @internal */
|
|
6013
|
-
export type
|
|
6027
|
+
export type OneHundredAndTwenty$Outbound = {
|
|
6014
6028
|
store: Store$Outbound;
|
|
6015
6029
|
ownerId?: string | undefined;
|
|
6016
6030
|
};
|
|
6017
6031
|
/** @internal */
|
|
6018
|
-
export declare const
|
|
6019
|
-
export declare function
|
|
6020
|
-
export declare function
|
|
6032
|
+
export declare const OneHundredAndTwenty$outboundSchema: z.ZodType<OneHundredAndTwenty$Outbound, z.ZodTypeDef, OneHundredAndTwenty>;
|
|
6033
|
+
export declare function oneHundredAndTwentyToJSON(oneHundredAndTwenty: OneHundredAndTwenty): string;
|
|
6034
|
+
export declare function oneHundredAndTwentyFromJSON(jsonString: string): SafeParseResult<OneHundredAndTwenty, SDKValidationError>;
|
|
6021
6035
|
/** @internal */
|
|
6022
6036
|
export declare const StoreType$inboundSchema: z.ZodNativeEnum<typeof StoreType>;
|
|
6023
6037
|
/** @internal */
|
|
6024
6038
|
export declare const StoreType$outboundSchema: z.ZodNativeEnum<typeof StoreType>;
|
|
6025
6039
|
/** @internal */
|
|
6026
|
-
export declare const
|
|
6040
|
+
export declare const OneHundredAndNineteen$inboundSchema: z.ZodType<OneHundredAndNineteen, z.ZodTypeDef, unknown>;
|
|
6027
6041
|
/** @internal */
|
|
6028
|
-
export type
|
|
6042
|
+
export type OneHundredAndNineteen$Outbound = {
|
|
6029
6043
|
storeType: string;
|
|
6030
6044
|
};
|
|
6031
6045
|
/** @internal */
|
|
6032
|
-
export declare const
|
|
6033
|
-
export declare function
|
|
6034
|
-
export declare function
|
|
6046
|
+
export declare const OneHundredAndNineteen$outboundSchema: z.ZodType<OneHundredAndNineteen$Outbound, z.ZodTypeDef, OneHundredAndNineteen>;
|
|
6047
|
+
export declare function oneHundredAndNineteenToJSON(oneHundredAndNineteen: OneHundredAndNineteen): string;
|
|
6048
|
+
export declare function oneHundredAndNineteenFromJSON(jsonString: string): SafeParseResult<OneHundredAndNineteen, SDKValidationError>;
|
|
6035
6049
|
/** @internal */
|
|
6036
6050
|
export declare const UserEventPayloadType$inboundSchema: z.ZodNativeEnum<typeof UserEventPayloadType>;
|
|
6037
6051
|
/** @internal */
|
|
6038
6052
|
export declare const UserEventPayloadType$outboundSchema: z.ZodNativeEnum<typeof UserEventPayloadType>;
|
|
6039
6053
|
/** @internal */
|
|
6040
|
-
export declare const
|
|
6054
|
+
export declare const OneHundredAndEighteen$inboundSchema: z.ZodType<OneHundredAndEighteen, z.ZodTypeDef, unknown>;
|
|
6041
6055
|
/** @internal */
|
|
6042
|
-
export type
|
|
6056
|
+
export type OneHundredAndEighteen$Outbound = {
|
|
6043
6057
|
id: string;
|
|
6044
6058
|
name?: string | undefined;
|
|
6045
6059
|
computeUnitsMax?: number | undefined;
|
|
@@ -6048,23 +6062,23 @@ export type OneHundredAndSeventeen$Outbound = {
|
|
|
6048
6062
|
type: string;
|
|
6049
6063
|
};
|
|
6050
6064
|
/** @internal */
|
|
6051
|
-
export declare const
|
|
6052
|
-
export declare function
|
|
6053
|
-
export declare function
|
|
6065
|
+
export declare const OneHundredAndEighteen$outboundSchema: z.ZodType<OneHundredAndEighteen$Outbound, z.ZodTypeDef, OneHundredAndEighteen>;
|
|
6066
|
+
export declare function oneHundredAndEighteenToJSON(oneHundredAndEighteen: OneHundredAndEighteen): string;
|
|
6067
|
+
export declare function oneHundredAndEighteenFromJSON(jsonString: string): SafeParseResult<OneHundredAndEighteen, SDKValidationError>;
|
|
6054
6068
|
/** @internal */
|
|
6055
|
-
export declare const
|
|
6069
|
+
export declare const OneHundredAndSeventeen$inboundSchema: z.ZodType<OneHundredAndSeventeen, z.ZodTypeDef, unknown>;
|
|
6056
6070
|
/** @internal */
|
|
6057
|
-
export type
|
|
6071
|
+
export type OneHundredAndSeventeen$Outbound = {
|
|
6058
6072
|
webhookUrl?: string | undefined;
|
|
6059
6073
|
};
|
|
6060
6074
|
/** @internal */
|
|
6061
|
-
export declare const
|
|
6062
|
-
export declare function
|
|
6063
|
-
export declare function
|
|
6075
|
+
export declare const OneHundredAndSeventeen$outboundSchema: z.ZodType<OneHundredAndSeventeen$Outbound, z.ZodTypeDef, OneHundredAndSeventeen>;
|
|
6076
|
+
export declare function oneHundredAndSeventeenToJSON(oneHundredAndSeventeen: OneHundredAndSeventeen): string;
|
|
6077
|
+
export declare function oneHundredAndSeventeenFromJSON(jsonString: string): SafeParseResult<OneHundredAndSeventeen, SDKValidationError>;
|
|
6064
6078
|
/** @internal */
|
|
6065
|
-
export declare const
|
|
6079
|
+
export declare const UserEventPayload116Type$inboundSchema: z.ZodNativeEnum<typeof UserEventPayload116Type>;
|
|
6066
6080
|
/** @internal */
|
|
6067
|
-
export declare const
|
|
6081
|
+
export declare const UserEventPayload116Type$outboundSchema: z.ZodNativeEnum<typeof UserEventPayload116Type>;
|
|
6068
6082
|
/** @internal */
|
|
6069
6083
|
export declare const PayloadPricingPlan$inboundSchema: z.ZodNativeEnum<typeof PayloadPricingPlan>;
|
|
6070
6084
|
/** @internal */
|
|
@@ -6092,20 +6106,20 @@ export declare const UserEventPayloadBudget$outboundSchema: z.ZodType<UserEventP
|
|
|
6092
6106
|
export declare function userEventPayloadBudgetToJSON(userEventPayloadBudget: UserEventPayloadBudget): string;
|
|
6093
6107
|
export declare function userEventPayloadBudgetFromJSON(jsonString: string): SafeParseResult<UserEventPayloadBudget, SDKValidationError>;
|
|
6094
6108
|
/** @internal */
|
|
6095
|
-
export declare const
|
|
6109
|
+
export declare const OneHundredAndSixteen$inboundSchema: z.ZodType<OneHundredAndSixteen, z.ZodTypeDef, unknown>;
|
|
6096
6110
|
/** @internal */
|
|
6097
|
-
export type
|
|
6111
|
+
export type OneHundredAndSixteen$Outbound = {
|
|
6098
6112
|
budget: UserEventPayloadBudget$Outbound;
|
|
6099
6113
|
webhookUrl?: string | undefined;
|
|
6100
6114
|
};
|
|
6101
6115
|
/** @internal */
|
|
6102
|
-
export declare const
|
|
6103
|
-
export declare function
|
|
6104
|
-
export declare function
|
|
6116
|
+
export declare const OneHundredAndSixteen$outboundSchema: z.ZodType<OneHundredAndSixteen$Outbound, z.ZodTypeDef, OneHundredAndSixteen>;
|
|
6117
|
+
export declare function oneHundredAndSixteenToJSON(oneHundredAndSixteen: OneHundredAndSixteen): string;
|
|
6118
|
+
export declare function oneHundredAndSixteenFromJSON(jsonString: string): SafeParseResult<OneHundredAndSixteen, SDKValidationError>;
|
|
6105
6119
|
/** @internal */
|
|
6106
|
-
export declare const
|
|
6120
|
+
export declare const UserEventPayload115Type$inboundSchema: z.ZodNativeEnum<typeof UserEventPayload115Type>;
|
|
6107
6121
|
/** @internal */
|
|
6108
|
-
export declare const
|
|
6122
|
+
export declare const UserEventPayload115Type$outboundSchema: z.ZodNativeEnum<typeof UserEventPayload115Type>;
|
|
6109
6123
|
/** @internal */
|
|
6110
6124
|
export declare const PricingPlan$inboundSchema: z.ZodNativeEnum<typeof PricingPlan>;
|
|
6111
6125
|
/** @internal */
|
|
@@ -6133,19 +6147,19 @@ export declare const PayloadBudget$outboundSchema: z.ZodType<PayloadBudget$Outbo
|
|
|
6133
6147
|
export declare function payloadBudgetToJSON(payloadBudget: PayloadBudget): string;
|
|
6134
6148
|
export declare function payloadBudgetFromJSON(jsonString: string): SafeParseResult<PayloadBudget, SDKValidationError>;
|
|
6135
6149
|
/** @internal */
|
|
6136
|
-
export declare const
|
|
6150
|
+
export declare const OneHundredAndFifteen$inboundSchema: z.ZodType<OneHundredAndFifteen, z.ZodTypeDef, unknown>;
|
|
6137
6151
|
/** @internal */
|
|
6138
|
-
export type
|
|
6152
|
+
export type OneHundredAndFifteen$Outbound = {
|
|
6139
6153
|
budget: PayloadBudget$Outbound;
|
|
6140
6154
|
};
|
|
6141
6155
|
/** @internal */
|
|
6142
|
-
export declare const
|
|
6143
|
-
export declare function
|
|
6144
|
-
export declare function
|
|
6156
|
+
export declare const OneHundredAndFifteen$outboundSchema: z.ZodType<OneHundredAndFifteen$Outbound, z.ZodTypeDef, OneHundredAndFifteen>;
|
|
6157
|
+
export declare function oneHundredAndFifteenToJSON(oneHundredAndFifteen: OneHundredAndFifteen): string;
|
|
6158
|
+
export declare function oneHundredAndFifteenFromJSON(jsonString: string): SafeParseResult<OneHundredAndFifteen, SDKValidationError>;
|
|
6145
6159
|
/** @internal */
|
|
6146
|
-
export declare const
|
|
6160
|
+
export declare const UserEventPayload114Type$inboundSchema: z.ZodNativeEnum<typeof UserEventPayload114Type>;
|
|
6147
6161
|
/** @internal */
|
|
6148
|
-
export declare const
|
|
6162
|
+
export declare const UserEventPayload114Type$outboundSchema: z.ZodNativeEnum<typeof UserEventPayload114Type>;
|
|
6149
6163
|
/** @internal */
|
|
6150
6164
|
export declare const UserEventPayloadPricingPlan$inboundSchema: z.ZodNativeEnum<typeof UserEventPayloadPricingPlan>;
|
|
6151
6165
|
/** @internal */
|
|
@@ -6183,15 +6197,15 @@ export declare const Budget$outboundSchema: z.ZodType<Budget$Outbound, z.ZodType
|
|
|
6183
6197
|
export declare function budgetToJSON(budget: Budget): string;
|
|
6184
6198
|
export declare function budgetFromJSON(jsonString: string): SafeParseResult<Budget, SDKValidationError>;
|
|
6185
6199
|
/** @internal */
|
|
6186
|
-
export declare const
|
|
6200
|
+
export declare const OneHundredAndFourteen$inboundSchema: z.ZodType<OneHundredAndFourteen, z.ZodTypeDef, unknown>;
|
|
6187
6201
|
/** @internal */
|
|
6188
|
-
export type
|
|
6202
|
+
export type OneHundredAndFourteen$Outbound = {
|
|
6189
6203
|
budget: Budget$Outbound;
|
|
6190
6204
|
};
|
|
6191
6205
|
/** @internal */
|
|
6192
|
-
export declare const
|
|
6193
|
-
export declare function
|
|
6194
|
-
export declare function
|
|
6206
|
+
export declare const OneHundredAndFourteen$outboundSchema: z.ZodType<OneHundredAndFourteen$Outbound, z.ZodTypeDef, OneHundredAndFourteen>;
|
|
6207
|
+
export declare function oneHundredAndFourteenToJSON(oneHundredAndFourteen: OneHundredAndFourteen): string;
|
|
6208
|
+
export declare function oneHundredAndFourteenFromJSON(jsonString: string): SafeParseResult<OneHundredAndFourteen, SDKValidationError>;
|
|
6195
6209
|
/** @internal */
|
|
6196
6210
|
export declare const ScalingRules$inboundSchema: z.ZodType<ScalingRules, z.ZodTypeDef, unknown>;
|
|
6197
6211
|
/** @internal */
|
|
@@ -6204,9 +6218,9 @@ export declare const ScalingRules$outboundSchema: z.ZodType<ScalingRules$Outboun
|
|
|
6204
6218
|
export declare function scalingRulesToJSON(scalingRules: ScalingRules): string;
|
|
6205
6219
|
export declare function scalingRulesFromJSON(jsonString: string): SafeParseResult<ScalingRules, SDKValidationError>;
|
|
6206
6220
|
/** @internal */
|
|
6207
|
-
export declare const
|
|
6221
|
+
export declare const OneHundredAndThirteen$inboundSchema: z.ZodType<OneHundredAndThirteen, z.ZodTypeDef, unknown>;
|
|
6208
6222
|
/** @internal */
|
|
6209
|
-
export type
|
|
6223
|
+
export type OneHundredAndThirteen$Outbound = {
|
|
6210
6224
|
scalingRules: {
|
|
6211
6225
|
[k: string]: ScalingRules$Outbound;
|
|
6212
6226
|
};
|
|
@@ -6215,31 +6229,31 @@ export type OneHundredAndTwelve$Outbound = {
|
|
|
6215
6229
|
url: string;
|
|
6216
6230
|
};
|
|
6217
6231
|
/** @internal */
|
|
6218
|
-
export declare const
|
|
6219
|
-
export declare function
|
|
6220
|
-
export declare function
|
|
6232
|
+
export declare const OneHundredAndThirteen$outboundSchema: z.ZodType<OneHundredAndThirteen$Outbound, z.ZodTypeDef, OneHundredAndThirteen>;
|
|
6233
|
+
export declare function oneHundredAndThirteenToJSON(oneHundredAndThirteen: OneHundredAndThirteen): string;
|
|
6234
|
+
export declare function oneHundredAndThirteenFromJSON(jsonString: string): SafeParseResult<OneHundredAndThirteen, SDKValidationError>;
|
|
6221
6235
|
/** @internal */
|
|
6222
|
-
export declare const
|
|
6236
|
+
export declare const OneHundredAndTwelve$inboundSchema: z.ZodType<OneHundredAndTwelve, z.ZodTypeDef, unknown>;
|
|
6223
6237
|
/** @internal */
|
|
6224
|
-
export type
|
|
6238
|
+
export type OneHundredAndTwelve$Outbound = {
|
|
6225
6239
|
bio: string;
|
|
6226
6240
|
};
|
|
6227
6241
|
/** @internal */
|
|
6228
|
-
export declare const
|
|
6229
|
-
export declare function
|
|
6230
|
-
export declare function
|
|
6242
|
+
export declare const OneHundredAndTwelve$outboundSchema: z.ZodType<OneHundredAndTwelve$Outbound, z.ZodTypeDef, OneHundredAndTwelve>;
|
|
6243
|
+
export declare function oneHundredAndTwelveToJSON(oneHundredAndTwelve: OneHundredAndTwelve): string;
|
|
6244
|
+
export declare function oneHundredAndTwelveFromJSON(jsonString: string): SafeParseResult<OneHundredAndTwelve, SDKValidationError>;
|
|
6231
6245
|
/** @internal */
|
|
6232
|
-
export declare const
|
|
6246
|
+
export declare const OneHundredAndEleven$inboundSchema: z.ZodType<OneHundredAndEleven, z.ZodTypeDef, unknown>;
|
|
6233
6247
|
/** @internal */
|
|
6234
|
-
export type
|
|
6248
|
+
export type OneHundredAndEleven$Outbound = {
|
|
6235
6249
|
oldName: string;
|
|
6236
6250
|
newName: string;
|
|
6237
6251
|
uid?: string | undefined;
|
|
6238
6252
|
};
|
|
6239
6253
|
/** @internal */
|
|
6240
|
-
export declare const
|
|
6241
|
-
export declare function
|
|
6242
|
-
export declare function
|
|
6254
|
+
export declare const OneHundredAndEleven$outboundSchema: z.ZodType<OneHundredAndEleven$Outbound, z.ZodTypeDef, OneHundredAndEleven>;
|
|
6255
|
+
export declare function oneHundredAndElevenToJSON(oneHundredAndEleven: OneHundredAndEleven): string;
|
|
6256
|
+
export declare function oneHundredAndElevenFromJSON(jsonString: string): SafeParseResult<OneHundredAndEleven, SDKValidationError>;
|
|
6243
6257
|
/** @internal */
|
|
6244
6258
|
export declare const Name2$inboundSchema: z.ZodType<Name2, z.ZodTypeDef, unknown>;
|
|
6245
6259
|
/** @internal */
|
|
@@ -6259,27 +6273,27 @@ export declare const Name$outboundSchema: z.ZodType<Name$Outbound, z.ZodTypeDef,
|
|
|
6259
6273
|
export declare function nameToJSON(name: Name): string;
|
|
6260
6274
|
export declare function nameFromJSON(jsonString: string): SafeParseResult<Name, SDKValidationError>;
|
|
6261
6275
|
/** @internal */
|
|
6262
|
-
export declare const
|
|
6276
|
+
export declare const OneHundredAndTen$inboundSchema: z.ZodType<OneHundredAndTen, z.ZodTypeDef, unknown>;
|
|
6263
6277
|
/** @internal */
|
|
6264
|
-
export type
|
|
6278
|
+
export type OneHundredAndTen$Outbound = {
|
|
6265
6279
|
uid: string;
|
|
6266
6280
|
name: Name2$Outbound | string;
|
|
6267
6281
|
};
|
|
6268
6282
|
/** @internal */
|
|
6269
|
-
export declare const
|
|
6270
|
-
export declare function
|
|
6271
|
-
export declare function
|
|
6283
|
+
export declare const OneHundredAndTen$outboundSchema: z.ZodType<OneHundredAndTen$Outbound, z.ZodTypeDef, OneHundredAndTen>;
|
|
6284
|
+
export declare function oneHundredAndTenToJSON(oneHundredAndTen: OneHundredAndTen): string;
|
|
6285
|
+
export declare function oneHundredAndTenFromJSON(jsonString: string): SafeParseResult<OneHundredAndTen, SDKValidationError>;
|
|
6272
6286
|
/** @internal */
|
|
6273
|
-
export declare const
|
|
6287
|
+
export declare const UserEventPayload109Team$inboundSchema: z.ZodType<UserEventPayload109Team, z.ZodTypeDef, unknown>;
|
|
6274
6288
|
/** @internal */
|
|
6275
|
-
export type
|
|
6289
|
+
export type UserEventPayload109Team$Outbound = {
|
|
6276
6290
|
id: string;
|
|
6277
6291
|
name?: string | undefined;
|
|
6278
6292
|
};
|
|
6279
6293
|
/** @internal */
|
|
6280
|
-
export declare const
|
|
6281
|
-
export declare function
|
|
6282
|
-
export declare function
|
|
6294
|
+
export declare const UserEventPayload109Team$outboundSchema: z.ZodType<UserEventPayload109Team$Outbound, z.ZodTypeDef, UserEventPayload109Team>;
|
|
6295
|
+
export declare function userEventPayload109TeamToJSON(userEventPayload109Team: UserEventPayload109Team): string;
|
|
6296
|
+
export declare function userEventPayload109TeamFromJSON(jsonString: string): SafeParseResult<UserEventPayload109Team, SDKValidationError>;
|
|
6283
6297
|
/** @internal */
|
|
6284
6298
|
export declare const PayloadPreviousRule$inboundSchema: z.ZodType<PayloadPreviousRule, z.ZodTypeDef, unknown>;
|
|
6285
6299
|
/** @internal */
|
|
@@ -6291,27 +6305,27 @@ export declare const PayloadPreviousRule$outboundSchema: z.ZodType<PayloadPrevio
|
|
|
6291
6305
|
export declare function payloadPreviousRuleToJSON(payloadPreviousRule: PayloadPreviousRule): string;
|
|
6292
6306
|
export declare function payloadPreviousRuleFromJSON(jsonString: string): SafeParseResult<PayloadPreviousRule, SDKValidationError>;
|
|
6293
6307
|
/** @internal */
|
|
6294
|
-
export declare const
|
|
6308
|
+
export declare const OneHundredAndNine$inboundSchema: z.ZodType<OneHundredAndNine, z.ZodTypeDef, unknown>;
|
|
6295
6309
|
/** @internal */
|
|
6296
|
-
export type
|
|
6297
|
-
team:
|
|
6310
|
+
export type OneHundredAndNine$Outbound = {
|
|
6311
|
+
team: UserEventPayload109Team$Outbound;
|
|
6298
6312
|
previousRule: PayloadPreviousRule$Outbound;
|
|
6299
6313
|
};
|
|
6300
6314
|
/** @internal */
|
|
6301
|
-
export declare const
|
|
6302
|
-
export declare function
|
|
6303
|
-
export declare function
|
|
6315
|
+
export declare const OneHundredAndNine$outboundSchema: z.ZodType<OneHundredAndNine$Outbound, z.ZodTypeDef, OneHundredAndNine>;
|
|
6316
|
+
export declare function oneHundredAndNineToJSON(oneHundredAndNine: OneHundredAndNine): string;
|
|
6317
|
+
export declare function oneHundredAndNineFromJSON(jsonString: string): SafeParseResult<OneHundredAndNine, SDKValidationError>;
|
|
6304
6318
|
/** @internal */
|
|
6305
|
-
export declare const
|
|
6319
|
+
export declare const UserEventPayload108Team$inboundSchema: z.ZodType<UserEventPayload108Team, z.ZodTypeDef, unknown>;
|
|
6306
6320
|
/** @internal */
|
|
6307
|
-
export type
|
|
6321
|
+
export type UserEventPayload108Team$Outbound = {
|
|
6308
6322
|
id: string;
|
|
6309
6323
|
name?: string | undefined;
|
|
6310
6324
|
};
|
|
6311
6325
|
/** @internal */
|
|
6312
|
-
export declare const
|
|
6313
|
-
export declare function
|
|
6314
|
-
export declare function
|
|
6326
|
+
export declare const UserEventPayload108Team$outboundSchema: z.ZodType<UserEventPayload108Team$Outbound, z.ZodTypeDef, UserEventPayload108Team>;
|
|
6327
|
+
export declare function userEventPayload108TeamToJSON(userEventPayload108Team: UserEventPayload108Team): string;
|
|
6328
|
+
export declare function userEventPayload108TeamFromJSON(jsonString: string): SafeParseResult<UserEventPayload108Team, SDKValidationError>;
|
|
6315
6329
|
/** @internal */
|
|
6316
6330
|
export declare const PreviousRule$inboundSchema: z.ZodType<PreviousRule, z.ZodTypeDef, unknown>;
|
|
6317
6331
|
/** @internal */
|
|
@@ -6333,12 +6347,22 @@ export declare const NextRule$outboundSchema: z.ZodType<NextRule$Outbound, z.Zod
|
|
|
6333
6347
|
export declare function nextRuleToJSON(nextRule: NextRule): string;
|
|
6334
6348
|
export declare function nextRuleFromJSON(jsonString: string): SafeParseResult<NextRule, SDKValidationError>;
|
|
6335
6349
|
/** @internal */
|
|
6350
|
+
export declare const OneHundredAndEight$inboundSchema: z.ZodType<OneHundredAndEight, z.ZodTypeDef, unknown>;
|
|
6351
|
+
/** @internal */
|
|
6352
|
+
export type OneHundredAndEight$Outbound = {
|
|
6353
|
+
team: UserEventPayload108Team$Outbound;
|
|
6354
|
+
previousRule?: PreviousRule$Outbound | undefined;
|
|
6355
|
+
nextRule?: NextRule$Outbound | undefined;
|
|
6356
|
+
};
|
|
6357
|
+
/** @internal */
|
|
6358
|
+
export declare const OneHundredAndEight$outboundSchema: z.ZodType<OneHundredAndEight$Outbound, z.ZodTypeDef, OneHundredAndEight>;
|
|
6359
|
+
export declare function oneHundredAndEightToJSON(oneHundredAndEight: OneHundredAndEight): string;
|
|
6360
|
+
export declare function oneHundredAndEightFromJSON(jsonString: string): SafeParseResult<OneHundredAndEight, SDKValidationError>;
|
|
6361
|
+
/** @internal */
|
|
6336
6362
|
export declare const OneHundredAndSeven$inboundSchema: z.ZodType<OneHundredAndSeven, z.ZodTypeDef, unknown>;
|
|
6337
6363
|
/** @internal */
|
|
6338
6364
|
export type OneHundredAndSeven$Outbound = {
|
|
6339
|
-
|
|
6340
|
-
previousRule?: PreviousRule$Outbound | undefined;
|
|
6341
|
-
nextRule?: NextRule$Outbound | undefined;
|
|
6365
|
+
email: string;
|
|
6342
6366
|
};
|
|
6343
6367
|
/** @internal */
|
|
6344
6368
|
export declare const OneHundredAndSeven$outboundSchema: z.ZodType<OneHundredAndSeven$Outbound, z.ZodTypeDef, OneHundredAndSeven>;
|
|
@@ -6349,6 +6373,7 @@ export declare const OneHundredAndSix$inboundSchema: z.ZodType<OneHundredAndSix,
|
|
|
6349
6373
|
/** @internal */
|
|
6350
6374
|
export type OneHundredAndSix$Outbound = {
|
|
6351
6375
|
email: string;
|
|
6376
|
+
verified: boolean;
|
|
6352
6377
|
};
|
|
6353
6378
|
/** @internal */
|
|
6354
6379
|
export declare const OneHundredAndSix$outboundSchema: z.ZodType<OneHundredAndSix$Outbound, z.ZodTypeDef, OneHundredAndSix>;
|
|
@@ -6358,8 +6383,8 @@ export declare function oneHundredAndSixFromJSON(jsonString: string): SafeParseR
|
|
|
6358
6383
|
export declare const OneHundredAndFive$inboundSchema: z.ZodType<OneHundredAndFive, z.ZodTypeDef, unknown>;
|
|
6359
6384
|
/** @internal */
|
|
6360
6385
|
export type OneHundredAndFive$Outbound = {
|
|
6361
|
-
|
|
6362
|
-
|
|
6386
|
+
instances: number;
|
|
6387
|
+
url: string;
|
|
6363
6388
|
};
|
|
6364
6389
|
/** @internal */
|
|
6365
6390
|
export declare const OneHundredAndFive$outboundSchema: z.ZodType<OneHundredAndFive$Outbound, z.ZodTypeDef, OneHundredAndFive>;
|
|
@@ -6369,8 +6394,9 @@ export declare function oneHundredAndFiveFromJSON(jsonString: string): SafeParse
|
|
|
6369
6394
|
export declare const OneHundredAndFour$inboundSchema: z.ZodType<OneHundredAndFour, z.ZodTypeDef, unknown>;
|
|
6370
6395
|
/** @internal */
|
|
6371
6396
|
export type OneHundredAndFour$Outbound = {
|
|
6372
|
-
|
|
6373
|
-
|
|
6397
|
+
gitProvider: string;
|
|
6398
|
+
gitProviderGroupDescriptor: string;
|
|
6399
|
+
gitScope: string;
|
|
6374
6400
|
};
|
|
6375
6401
|
/** @internal */
|
|
6376
6402
|
export declare const OneHundredAndFour$outboundSchema: z.ZodType<OneHundredAndFour$Outbound, z.ZodTypeDef, OneHundredAndFour>;
|
|
@@ -6380,9 +6406,10 @@ export declare function oneHundredAndFourFromJSON(jsonString: string): SafeParse
|
|
|
6380
6406
|
export declare const OneHundredAndThree$inboundSchema: z.ZodType<OneHundredAndThree, z.ZodTypeDef, unknown>;
|
|
6381
6407
|
/** @internal */
|
|
6382
6408
|
export type OneHundredAndThree$Outbound = {
|
|
6383
|
-
|
|
6384
|
-
|
|
6385
|
-
|
|
6409
|
+
projectId: string;
|
|
6410
|
+
projectName: string;
|
|
6411
|
+
targetDeploymentId?: string | undefined;
|
|
6412
|
+
newTargetPercentage?: number | undefined;
|
|
6386
6413
|
};
|
|
6387
6414
|
/** @internal */
|
|
6388
6415
|
export declare const OneHundredAndThree$outboundSchema: z.ZodType<OneHundredAndThree$Outbound, z.ZodTypeDef, OneHundredAndThree>;
|
|
@@ -6395,7 +6422,6 @@ export type OneHundredAndTwo$Outbound = {
|
|
|
6395
6422
|
projectId: string;
|
|
6396
6423
|
projectName: string;
|
|
6397
6424
|
targetDeploymentId?: string | undefined;
|
|
6398
|
-
newTargetPercentage?: number | undefined;
|
|
6399
6425
|
};
|
|
6400
6426
|
/** @internal */
|
|
6401
6427
|
export declare const OneHundredAndTwo$outboundSchema: z.ZodType<OneHundredAndTwo$Outbound, z.ZodTypeDef, OneHundredAndTwo>;
|
|
@@ -6407,7 +6433,8 @@ export declare const OneHundredAndOne$inboundSchema: z.ZodType<OneHundredAndOne,
|
|
|
6407
6433
|
export type OneHundredAndOne$Outbound = {
|
|
6408
6434
|
projectId: string;
|
|
6409
6435
|
projectName: string;
|
|
6410
|
-
|
|
6436
|
+
elasticConcurrencyEnabled: boolean;
|
|
6437
|
+
oldElasticConcurrencyEnabled: boolean;
|
|
6411
6438
|
};
|
|
6412
6439
|
/** @internal */
|
|
6413
6440
|
export declare const OneHundredAndOne$outboundSchema: z.ZodType<OneHundredAndOne$Outbound, z.ZodTypeDef, OneHundredAndOne>;
|
|
@@ -6419,27 +6446,14 @@ export declare const OneHundred$inboundSchema: z.ZodType<OneHundred, z.ZodTypeDe
|
|
|
6419
6446
|
export type OneHundred$Outbound = {
|
|
6420
6447
|
projectId: string;
|
|
6421
6448
|
projectName: string;
|
|
6422
|
-
|
|
6423
|
-
|
|
6449
|
+
buildMachineType?: string | undefined;
|
|
6450
|
+
oldBuildMachineType?: string | undefined;
|
|
6424
6451
|
};
|
|
6425
6452
|
/** @internal */
|
|
6426
6453
|
export declare const OneHundred$outboundSchema: z.ZodType<OneHundred$Outbound, z.ZodTypeDef, OneHundred>;
|
|
6427
6454
|
export declare function oneHundredToJSON(oneHundred: OneHundred): string;
|
|
6428
6455
|
export declare function oneHundredFromJSON(jsonString: string): SafeParseResult<OneHundred, SDKValidationError>;
|
|
6429
6456
|
/** @internal */
|
|
6430
|
-
export declare const NinetyNine$inboundSchema: z.ZodType<NinetyNine, z.ZodTypeDef, unknown>;
|
|
6431
|
-
/** @internal */
|
|
6432
|
-
export type NinetyNine$Outbound = {
|
|
6433
|
-
projectId: string;
|
|
6434
|
-
projectName: string;
|
|
6435
|
-
buildMachineType?: string | undefined;
|
|
6436
|
-
oldBuildMachineType?: string | undefined;
|
|
6437
|
-
};
|
|
6438
|
-
/** @internal */
|
|
6439
|
-
export declare const NinetyNine$outboundSchema: z.ZodType<NinetyNine$Outbound, z.ZodTypeDef, NinetyNine>;
|
|
6440
|
-
export declare function ninetyNineToJSON(ninetyNine: NinetyNine): string;
|
|
6441
|
-
export declare function ninetyNineFromJSON(jsonString: string): SafeParseResult<NinetyNine, SDKValidationError>;
|
|
6442
|
-
/** @internal */
|
|
6443
6457
|
export declare const StaticIps$inboundSchema: z.ZodType<StaticIps, z.ZodTypeDef, unknown>;
|
|
6444
6458
|
/** @internal */
|
|
6445
6459
|
export type StaticIps$Outbound = {
|
|
@@ -6452,21 +6466,21 @@ export declare const StaticIps$outboundSchema: z.ZodType<StaticIps$Outbound, z.Z
|
|
|
6452
6466
|
export declare function staticIpsToJSON(staticIps: StaticIps): string;
|
|
6453
6467
|
export declare function staticIpsFromJSON(jsonString: string): SafeParseResult<StaticIps, SDKValidationError>;
|
|
6454
6468
|
/** @internal */
|
|
6455
|
-
export declare const
|
|
6469
|
+
export declare const UserEventPayload99Project$inboundSchema: z.ZodType<UserEventPayload99Project, z.ZodTypeDef, unknown>;
|
|
6456
6470
|
/** @internal */
|
|
6457
|
-
export type
|
|
6471
|
+
export type UserEventPayload99Project$Outbound = {
|
|
6458
6472
|
id: string;
|
|
6459
6473
|
staticIps: StaticIps$Outbound;
|
|
6460
6474
|
};
|
|
6461
6475
|
/** @internal */
|
|
6462
|
-
export declare const
|
|
6463
|
-
export declare function
|
|
6464
|
-
export declare function
|
|
6476
|
+
export declare const UserEventPayload99Project$outboundSchema: z.ZodType<UserEventPayload99Project$Outbound, z.ZodTypeDef, UserEventPayload99Project>;
|
|
6477
|
+
export declare function userEventPayload99ProjectToJSON(userEventPayload99Project: UserEventPayload99Project): string;
|
|
6478
|
+
export declare function userEventPayload99ProjectFromJSON(jsonString: string): SafeParseResult<UserEventPayload99Project, SDKValidationError>;
|
|
6465
6479
|
/** @internal */
|
|
6466
6480
|
export declare const Next$inboundSchema: z.ZodType<Next, z.ZodTypeDef, unknown>;
|
|
6467
6481
|
/** @internal */
|
|
6468
6482
|
export type Next$Outbound = {
|
|
6469
|
-
project:
|
|
6483
|
+
project: UserEventPayload99Project$Outbound;
|
|
6470
6484
|
};
|
|
6471
6485
|
/** @internal */
|
|
6472
6486
|
export declare const Next$outboundSchema: z.ZodType<Next$Outbound, z.ZodTypeDef, Next>;
|
|
@@ -6485,89 +6499,89 @@ export declare const PayloadStaticIps$outboundSchema: z.ZodType<PayloadStaticIps
|
|
|
6485
6499
|
export declare function payloadStaticIpsToJSON(payloadStaticIps: PayloadStaticIps): string;
|
|
6486
6500
|
export declare function payloadStaticIpsFromJSON(jsonString: string): SafeParseResult<PayloadStaticIps, SDKValidationError>;
|
|
6487
6501
|
/** @internal */
|
|
6488
|
-
export declare const
|
|
6502
|
+
export declare const UserEventPayload99PreviousProject$inboundSchema: z.ZodType<UserEventPayload99PreviousProject, z.ZodTypeDef, unknown>;
|
|
6489
6503
|
/** @internal */
|
|
6490
|
-
export type
|
|
6504
|
+
export type UserEventPayload99PreviousProject$Outbound = {
|
|
6491
6505
|
id: string;
|
|
6492
6506
|
staticIps: PayloadStaticIps$Outbound;
|
|
6493
6507
|
};
|
|
6494
6508
|
/** @internal */
|
|
6495
|
-
export declare const
|
|
6496
|
-
export declare function
|
|
6497
|
-
export declare function
|
|
6509
|
+
export declare const UserEventPayload99PreviousProject$outboundSchema: z.ZodType<UserEventPayload99PreviousProject$Outbound, z.ZodTypeDef, UserEventPayload99PreviousProject>;
|
|
6510
|
+
export declare function userEventPayload99PreviousProjectToJSON(userEventPayload99PreviousProject: UserEventPayload99PreviousProject): string;
|
|
6511
|
+
export declare function userEventPayload99PreviousProjectFromJSON(jsonString: string): SafeParseResult<UserEventPayload99PreviousProject, SDKValidationError>;
|
|
6498
6512
|
/** @internal */
|
|
6499
6513
|
export declare const Previous$inboundSchema: z.ZodType<Previous, z.ZodTypeDef, unknown>;
|
|
6500
6514
|
/** @internal */
|
|
6501
6515
|
export type Previous$Outbound = {
|
|
6502
|
-
project:
|
|
6516
|
+
project: UserEventPayload99PreviousProject$Outbound;
|
|
6503
6517
|
};
|
|
6504
6518
|
/** @internal */
|
|
6505
6519
|
export declare const Previous$outboundSchema: z.ZodType<Previous$Outbound, z.ZodTypeDef, Previous>;
|
|
6506
6520
|
export declare function previousToJSON(previous: Previous): string;
|
|
6507
6521
|
export declare function previousFromJSON(jsonString: string): SafeParseResult<Previous, SDKValidationError>;
|
|
6508
6522
|
/** @internal */
|
|
6509
|
-
export declare const
|
|
6523
|
+
export declare const NinetyNine$inboundSchema: z.ZodType<NinetyNine, z.ZodTypeDef, unknown>;
|
|
6510
6524
|
/** @internal */
|
|
6511
|
-
export type
|
|
6525
|
+
export type NinetyNine$Outbound = {
|
|
6512
6526
|
next: Next$Outbound;
|
|
6513
6527
|
previous: Previous$Outbound;
|
|
6514
6528
|
};
|
|
6515
6529
|
/** @internal */
|
|
6516
|
-
export declare const
|
|
6517
|
-
export declare function
|
|
6518
|
-
export declare function
|
|
6530
|
+
export declare const NinetyNine$outboundSchema: z.ZodType<NinetyNine$Outbound, z.ZodTypeDef, NinetyNine>;
|
|
6531
|
+
export declare function ninetyNineToJSON(ninetyNine: NinetyNine): string;
|
|
6532
|
+
export declare function ninetyNineFromJSON(jsonString: string): SafeParseResult<NinetyNine, SDKValidationError>;
|
|
6519
6533
|
/** @internal */
|
|
6520
|
-
export declare const
|
|
6534
|
+
export declare const NinetyEight$inboundSchema: z.ZodType<NinetyEight, z.ZodTypeDef, unknown>;
|
|
6521
6535
|
/** @internal */
|
|
6522
|
-
export type
|
|
6536
|
+
export type NinetyEight$Outbound = {
|
|
6523
6537
|
source: string;
|
|
6524
6538
|
projectId: string;
|
|
6525
6539
|
};
|
|
6526
6540
|
/** @internal */
|
|
6527
|
-
export declare const
|
|
6528
|
-
export declare function
|
|
6529
|
-
export declare function
|
|
6541
|
+
export declare const NinetyEight$outboundSchema: z.ZodType<NinetyEight$Outbound, z.ZodTypeDef, NinetyEight>;
|
|
6542
|
+
export declare function ninetyEightToJSON(ninetyEight: NinetyEight): string;
|
|
6543
|
+
export declare function ninetyEightFromJSON(jsonString: string): SafeParseResult<NinetyEight, SDKValidationError>;
|
|
6530
6544
|
/** @internal */
|
|
6531
6545
|
export declare const PayloadReasonCode$inboundSchema: z.ZodNativeEnum<typeof PayloadReasonCode>;
|
|
6532
6546
|
/** @internal */
|
|
6533
6547
|
export declare const PayloadReasonCode$outboundSchema: z.ZodNativeEnum<typeof PayloadReasonCode>;
|
|
6534
6548
|
/** @internal */
|
|
6535
|
-
export declare const
|
|
6549
|
+
export declare const NinetySeven$inboundSchema: z.ZodType<NinetySeven, z.ZodTypeDef, unknown>;
|
|
6536
6550
|
/** @internal */
|
|
6537
|
-
export type
|
|
6551
|
+
export type NinetySeven$Outbound = {
|
|
6538
6552
|
projectId: string;
|
|
6539
6553
|
reasonCode?: string | undefined;
|
|
6540
6554
|
};
|
|
6541
6555
|
/** @internal */
|
|
6542
|
-
export declare const
|
|
6543
|
-
export declare function
|
|
6544
|
-
export declare function
|
|
6556
|
+
export declare const NinetySeven$outboundSchema: z.ZodType<NinetySeven$Outbound, z.ZodTypeDef, NinetySeven>;
|
|
6557
|
+
export declare function ninetySevenToJSON(ninetySeven: NinetySeven): string;
|
|
6558
|
+
export declare function ninetySevenFromJSON(jsonString: string): SafeParseResult<NinetySeven, SDKValidationError>;
|
|
6545
6559
|
/** @internal */
|
|
6546
6560
|
export declare const ReasonCode$inboundSchema: z.ZodNativeEnum<typeof ReasonCode>;
|
|
6547
6561
|
/** @internal */
|
|
6548
6562
|
export declare const ReasonCode$outboundSchema: z.ZodNativeEnum<typeof ReasonCode>;
|
|
6549
6563
|
/** @internal */
|
|
6550
|
-
export declare const
|
|
6564
|
+
export declare const NinetySix$inboundSchema: z.ZodType<NinetySix, z.ZodTypeDef, unknown>;
|
|
6551
6565
|
/** @internal */
|
|
6552
|
-
export type
|
|
6566
|
+
export type NinetySix$Outbound = {
|
|
6553
6567
|
projectId: string;
|
|
6554
6568
|
reasonCode?: string | undefined;
|
|
6555
6569
|
};
|
|
6556
6570
|
/** @internal */
|
|
6557
|
-
export declare const
|
|
6558
|
-
export declare function
|
|
6559
|
-
export declare function
|
|
6571
|
+
export declare const NinetySix$outboundSchema: z.ZodType<NinetySix$Outbound, z.ZodTypeDef, NinetySix>;
|
|
6572
|
+
export declare function ninetySixToJSON(ninetySix: NinetySix): string;
|
|
6573
|
+
export declare function ninetySixFromJSON(jsonString: string): SafeParseResult<NinetySix, SDKValidationError>;
|
|
6560
6574
|
/** @internal */
|
|
6561
|
-
export declare const
|
|
6575
|
+
export declare const UserEventPayload95Team$inboundSchema: z.ZodType<UserEventPayload95Team, z.ZodTypeDef, unknown>;
|
|
6562
6576
|
/** @internal */
|
|
6563
|
-
export type
|
|
6577
|
+
export type UserEventPayload95Team$Outbound = {
|
|
6564
6578
|
id: string;
|
|
6565
6579
|
name: string;
|
|
6566
6580
|
};
|
|
6567
6581
|
/** @internal */
|
|
6568
|
-
export declare const
|
|
6569
|
-
export declare function
|
|
6570
|
-
export declare function
|
|
6582
|
+
export declare const UserEventPayload95Team$outboundSchema: z.ZodType<UserEventPayload95Team$Outbound, z.ZodTypeDef, UserEventPayload95Team>;
|
|
6583
|
+
export declare function userEventPayload95TeamToJSON(userEventPayload95Team: UserEventPayload95Team): string;
|
|
6584
|
+
export declare function userEventPayload95TeamFromJSON(jsonString: string): SafeParseResult<UserEventPayload95Team, SDKValidationError>;
|
|
6571
6585
|
/** @internal */
|
|
6572
6586
|
export declare const EnvId2$inboundSchema: z.ZodNativeEnum<typeof EnvId2>;
|
|
6573
6587
|
/** @internal */
|
|
@@ -6649,57 +6663,57 @@ export declare const NewConnectConfigurations$outboundSchema: z.ZodType<NewConne
|
|
|
6649
6663
|
export declare function newConnectConfigurationsToJSON(newConnectConfigurations: NewConnectConfigurations): string;
|
|
6650
6664
|
export declare function newConnectConfigurationsFromJSON(jsonString: string): SafeParseResult<NewConnectConfigurations, SDKValidationError>;
|
|
6651
6665
|
/** @internal */
|
|
6652
|
-
export declare const
|
|
6666
|
+
export declare const UserEventPayload95Project$inboundSchema: z.ZodType<UserEventPayload95Project, z.ZodTypeDef, unknown>;
|
|
6653
6667
|
/** @internal */
|
|
6654
|
-
export type
|
|
6668
|
+
export type UserEventPayload95Project$Outbound = {
|
|
6655
6669
|
id: string;
|
|
6656
6670
|
name?: string | undefined;
|
|
6657
6671
|
oldConnectConfigurations: Array<OldConnectConfigurations$Outbound> | null;
|
|
6658
6672
|
newConnectConfigurations: Array<NewConnectConfigurations$Outbound> | null;
|
|
6659
6673
|
};
|
|
6660
6674
|
/** @internal */
|
|
6661
|
-
export declare const
|
|
6662
|
-
export declare function
|
|
6663
|
-
export declare function
|
|
6675
|
+
export declare const UserEventPayload95Project$outboundSchema: z.ZodType<UserEventPayload95Project$Outbound, z.ZodTypeDef, UserEventPayload95Project>;
|
|
6676
|
+
export declare function userEventPayload95ProjectToJSON(userEventPayload95Project: UserEventPayload95Project): string;
|
|
6677
|
+
export declare function userEventPayload95ProjectFromJSON(jsonString: string): SafeParseResult<UserEventPayload95Project, SDKValidationError>;
|
|
6664
6678
|
/** @internal */
|
|
6665
|
-
export declare const
|
|
6679
|
+
export declare const NinetyFive$inboundSchema: z.ZodType<NinetyFive, z.ZodTypeDef, unknown>;
|
|
6666
6680
|
/** @internal */
|
|
6667
|
-
export type
|
|
6668
|
-
team:
|
|
6669
|
-
project:
|
|
6681
|
+
export type NinetyFive$Outbound = {
|
|
6682
|
+
team: UserEventPayload95Team$Outbound;
|
|
6683
|
+
project: UserEventPayload95Project$Outbound;
|
|
6670
6684
|
};
|
|
6671
6685
|
/** @internal */
|
|
6672
|
-
export declare const
|
|
6673
|
-
export declare function
|
|
6674
|
-
export declare function
|
|
6686
|
+
export declare const NinetyFive$outboundSchema: z.ZodType<NinetyFive$Outbound, z.ZodTypeDef, NinetyFive>;
|
|
6687
|
+
export declare function ninetyFiveToJSON(ninetyFive: NinetyFive): string;
|
|
6688
|
+
export declare function ninetyFiveFromJSON(jsonString: string): SafeParseResult<NinetyFive, SDKValidationError>;
|
|
6675
6689
|
/** @internal */
|
|
6676
|
-
export declare const
|
|
6690
|
+
export declare const NinetyFour$inboundSchema: z.ZodType<NinetyFour, z.ZodTypeDef, unknown>;
|
|
6677
6691
|
/** @internal */
|
|
6678
|
-
export type
|
|
6692
|
+
export type NinetyFour$Outbound = {
|
|
6679
6693
|
name: string;
|
|
6680
6694
|
ownerId: string;
|
|
6681
6695
|
};
|
|
6682
6696
|
/** @internal */
|
|
6683
|
-
export declare const
|
|
6684
|
-
export declare function
|
|
6685
|
-
export declare function
|
|
6697
|
+
export declare const NinetyFour$outboundSchema: z.ZodType<NinetyFour$Outbound, z.ZodTypeDef, NinetyFour>;
|
|
6698
|
+
export declare function ninetyFourToJSON(ninetyFour: NinetyFour): string;
|
|
6699
|
+
export declare function ninetyFourFromJSON(jsonString: string): SafeParseResult<NinetyFour, SDKValidationError>;
|
|
6686
6700
|
/** @internal */
|
|
6687
|
-
export declare const
|
|
6701
|
+
export declare const UserEventPayload93Action$inboundSchema: z.ZodNativeEnum<typeof UserEventPayload93Action>;
|
|
6688
6702
|
/** @internal */
|
|
6689
|
-
export declare const
|
|
6703
|
+
export declare const UserEventPayload93Action$outboundSchema: z.ZodNativeEnum<typeof UserEventPayload93Action>;
|
|
6690
6704
|
/** @internal */
|
|
6691
|
-
export declare const
|
|
6705
|
+
export declare const NinetyThree$inboundSchema: z.ZodType<NinetyThree, z.ZodTypeDef, unknown>;
|
|
6692
6706
|
/** @internal */
|
|
6693
|
-
export type
|
|
6707
|
+
export type NinetyThree$Outbound = {
|
|
6694
6708
|
projectName: string;
|
|
6695
6709
|
action: string;
|
|
6696
6710
|
isEnvVar?: boolean | undefined;
|
|
6697
6711
|
note?: string | undefined;
|
|
6698
6712
|
};
|
|
6699
6713
|
/** @internal */
|
|
6700
|
-
export declare const
|
|
6701
|
-
export declare function
|
|
6702
|
-
export declare function
|
|
6714
|
+
export declare const NinetyThree$outboundSchema: z.ZodType<NinetyThree$Outbound, z.ZodTypeDef, NinetyThree>;
|
|
6715
|
+
export declare function ninetyThreeToJSON(ninetyThree: NinetyThree): string;
|
|
6716
|
+
export declare function ninetyThreeFromJSON(jsonString: string): SafeParseResult<NinetyThree, SDKValidationError>;
|
|
6703
6717
|
/** @internal */
|
|
6704
6718
|
export declare const Paths$inboundSchema: z.ZodType<Paths, z.ZodTypeDef, unknown>;
|
|
6705
6719
|
/** @internal */
|
|
@@ -6741,17 +6755,17 @@ export declare const OldOptionsAllowlist$outboundSchema: z.ZodType<OldOptionsAll
|
|
|
6741
6755
|
export declare function oldOptionsAllowlistToJSON(oldOptionsAllowlist: OldOptionsAllowlist): string;
|
|
6742
6756
|
export declare function oldOptionsAllowlistFromJSON(jsonString: string): SafeParseResult<OldOptionsAllowlist, SDKValidationError>;
|
|
6743
6757
|
/** @internal */
|
|
6744
|
-
export declare const
|
|
6758
|
+
export declare const NinetyTwo$inboundSchema: z.ZodType<NinetyTwo, z.ZodTypeDef, unknown>;
|
|
6745
6759
|
/** @internal */
|
|
6746
|
-
export type
|
|
6760
|
+
export type NinetyTwo$Outbound = {
|
|
6747
6761
|
projectName: string;
|
|
6748
6762
|
optionsAllowlist?: OptionsAllowlist$Outbound | null | undefined;
|
|
6749
6763
|
oldOptionsAllowlist?: OldOptionsAllowlist$Outbound | null | undefined;
|
|
6750
6764
|
};
|
|
6751
6765
|
/** @internal */
|
|
6752
|
-
export declare const
|
|
6753
|
-
export declare function
|
|
6754
|
-
export declare function
|
|
6766
|
+
export declare const NinetyTwo$outboundSchema: z.ZodType<NinetyTwo$Outbound, z.ZodTypeDef, NinetyTwo>;
|
|
6767
|
+
export declare function ninetyTwoToJSON(ninetyTwo: NinetyTwo): string;
|
|
6768
|
+
export declare function ninetyTwoFromJSON(jsonString: string): SafeParseResult<NinetyTwo, SDKValidationError>;
|
|
6755
6769
|
/** @internal */
|
|
6756
6770
|
export declare const TrustedIps$inboundSchema: z.ZodNativeEnum<typeof TrustedIps>;
|
|
6757
6771
|
/** @internal */
|
|
@@ -6761,9 +6775,9 @@ export declare const OldTrustedIps$inboundSchema: z.ZodNativeEnum<typeof OldTrus
|
|
|
6761
6775
|
/** @internal */
|
|
6762
6776
|
export declare const OldTrustedIps$outboundSchema: z.ZodNativeEnum<typeof OldTrustedIps>;
|
|
6763
6777
|
/** @internal */
|
|
6764
|
-
export declare const
|
|
6778
|
+
export declare const NinetyOne$inboundSchema: z.ZodType<NinetyOne, z.ZodTypeDef, unknown>;
|
|
6765
6779
|
/** @internal */
|
|
6766
|
-
export type
|
|
6780
|
+
export type NinetyOne$Outbound = {
|
|
6767
6781
|
projectName: string;
|
|
6768
6782
|
trustedIps?: string | null | undefined;
|
|
6769
6783
|
oldTrustedIps?: string | null | undefined;
|
|
@@ -6771,9 +6785,9 @@ export type Ninety$Outbound = {
|
|
|
6771
6785
|
removedAddresses?: Array<string> | null | undefined;
|
|
6772
6786
|
};
|
|
6773
6787
|
/** @internal */
|
|
6774
|
-
export declare const
|
|
6775
|
-
export declare function
|
|
6776
|
-
export declare function
|
|
6788
|
+
export declare const NinetyOne$outboundSchema: z.ZodType<NinetyOne$Outbound, z.ZodTypeDef, NinetyOne>;
|
|
6789
|
+
export declare function ninetyOneToJSON(ninetyOne: NinetyOne): string;
|
|
6790
|
+
export declare function ninetyOneFromJSON(jsonString: string): SafeParseResult<NinetyOne, SDKValidationError>;
|
|
6777
6791
|
/** @internal */
|
|
6778
6792
|
export declare const PasswordProtection2$inboundSchema: z.ZodNativeEnum<typeof PasswordProtection2>;
|
|
6779
6793
|
/** @internal */
|
|
@@ -6827,17 +6841,17 @@ export declare const OldPasswordProtection$outboundSchema: z.ZodType<OldPassword
|
|
|
6827
6841
|
export declare function oldPasswordProtectionToJSON(oldPasswordProtection: OldPasswordProtection): string;
|
|
6828
6842
|
export declare function oldPasswordProtectionFromJSON(jsonString: string): SafeParseResult<OldPasswordProtection, SDKValidationError>;
|
|
6829
6843
|
/** @internal */
|
|
6830
|
-
export declare const
|
|
6844
|
+
export declare const Ninety$inboundSchema: z.ZodType<Ninety, z.ZodTypeDef, unknown>;
|
|
6831
6845
|
/** @internal */
|
|
6832
|
-
export type
|
|
6846
|
+
export type Ninety$Outbound = {
|
|
6833
6847
|
projectName: string;
|
|
6834
6848
|
passwordProtection: PasswordProtection1$Outbound | string | null;
|
|
6835
6849
|
oldPasswordProtection: OldPasswordProtection1$Outbound | string | null;
|
|
6836
6850
|
};
|
|
6837
6851
|
/** @internal */
|
|
6838
|
-
export declare const
|
|
6839
|
-
export declare function
|
|
6840
|
-
export declare function
|
|
6852
|
+
export declare const Ninety$outboundSchema: z.ZodType<Ninety$Outbound, z.ZodTypeDef, Ninety>;
|
|
6853
|
+
export declare function ninetyToJSON(ninety: Ninety): string;
|
|
6854
|
+
export declare function ninetyFromJSON(jsonString: string): SafeParseResult<Ninety, SDKValidationError>;
|
|
6841
6855
|
/** @internal */
|
|
6842
6856
|
export declare const SsoProtection2$inboundSchema: z.ZodNativeEnum<typeof SsoProtection2>;
|
|
6843
6857
|
/** @internal */
|
|
@@ -6901,32 +6915,32 @@ export declare const OldSsoProtection$outboundSchema: z.ZodType<OldSsoProtection
|
|
|
6901
6915
|
export declare function oldSsoProtectionToJSON(oldSsoProtection: OldSsoProtection): string;
|
|
6902
6916
|
export declare function oldSsoProtectionFromJSON(jsonString: string): SafeParseResult<OldSsoProtection, SDKValidationError>;
|
|
6903
6917
|
/** @internal */
|
|
6904
|
-
export declare const
|
|
6918
|
+
export declare const EightyNine$inboundSchema: z.ZodType<EightyNine, z.ZodTypeDef, unknown>;
|
|
6905
6919
|
/** @internal */
|
|
6906
|
-
export type
|
|
6920
|
+
export type EightyNine$Outbound = {
|
|
6907
6921
|
projectName: string;
|
|
6908
6922
|
ssoProtection: SsoProtection1$Outbound | string | null;
|
|
6909
6923
|
oldSsoProtection: OldSsoProtection1$Outbound | string | null;
|
|
6910
6924
|
};
|
|
6911
6925
|
/** @internal */
|
|
6912
|
-
export declare const
|
|
6913
|
-
export declare function
|
|
6914
|
-
export declare function
|
|
6926
|
+
export declare const EightyNine$outboundSchema: z.ZodType<EightyNine$Outbound, z.ZodTypeDef, EightyNine>;
|
|
6927
|
+
export declare function eightyNineToJSON(eightyNine: EightyNine): string;
|
|
6928
|
+
export declare function eightyNineFromJSON(jsonString: string): SafeParseResult<EightyNine, SDKValidationError>;
|
|
6915
6929
|
/** @internal */
|
|
6916
|
-
export declare const
|
|
6930
|
+
export declare const EightyEight$inboundSchema: z.ZodType<EightyEight, z.ZodTypeDef, unknown>;
|
|
6917
6931
|
/** @internal */
|
|
6918
|
-
export type
|
|
6932
|
+
export type EightyEight$Outbound = {
|
|
6919
6933
|
projectName?: string | undefined;
|
|
6920
6934
|
projectId: string;
|
|
6921
6935
|
};
|
|
6922
6936
|
/** @internal */
|
|
6923
|
-
export declare const
|
|
6924
|
-
export declare function
|
|
6925
|
-
export declare function
|
|
6937
|
+
export declare const EightyEight$outboundSchema: z.ZodType<EightyEight$Outbound, z.ZodTypeDef, EightyEight>;
|
|
6938
|
+
export declare function eightyEightToJSON(eightyEight: EightyEight): string;
|
|
6939
|
+
export declare function eightyEightFromJSON(jsonString: string): SafeParseResult<EightyEight, SDKValidationError>;
|
|
6926
6940
|
/** @internal */
|
|
6927
|
-
export declare const
|
|
6941
|
+
export declare const EightySeven$inboundSchema: z.ZodType<EightySeven, z.ZodTypeDef, unknown>;
|
|
6928
6942
|
/** @internal */
|
|
6929
|
-
export type
|
|
6943
|
+
export type EightySeven$Outbound = {
|
|
6930
6944
|
projectName?: string | undefined;
|
|
6931
6945
|
projectId: string;
|
|
6932
6946
|
projectAnalytics?: {
|
|
@@ -6937,9 +6951,9 @@ export type EightySix$Outbound = {
|
|
|
6937
6951
|
} | null | undefined;
|
|
6938
6952
|
};
|
|
6939
6953
|
/** @internal */
|
|
6940
|
-
export declare const
|
|
6941
|
-
export declare function
|
|
6942
|
-
export declare function
|
|
6954
|
+
export declare const EightySeven$outboundSchema: z.ZodType<EightySeven$Outbound, z.ZodTypeDef, EightySeven>;
|
|
6955
|
+
export declare function eightySevenToJSON(eightySeven: EightySeven): string;
|
|
6956
|
+
export declare function eightySevenFromJSON(jsonString: string): SafeParseResult<EightySeven, SDKValidationError>;
|
|
6943
6957
|
/** @internal */
|
|
6944
6958
|
export declare const ProjectAnalytics$inboundSchema: z.ZodType<ProjectAnalytics, z.ZodTypeDef, unknown>;
|
|
6945
6959
|
/** @internal */
|
|
@@ -6973,29 +6987,29 @@ export declare const PrevProjectAnalytics$outboundSchema: z.ZodType<PrevProjectA
|
|
|
6973
6987
|
export declare function prevProjectAnalyticsToJSON(prevProjectAnalytics: PrevProjectAnalytics): string;
|
|
6974
6988
|
export declare function prevProjectAnalyticsFromJSON(jsonString: string): SafeParseResult<PrevProjectAnalytics, SDKValidationError>;
|
|
6975
6989
|
/** @internal */
|
|
6976
|
-
export declare const
|
|
6990
|
+
export declare const EightySix$inboundSchema: z.ZodType<EightySix, z.ZodTypeDef, unknown>;
|
|
6977
6991
|
/** @internal */
|
|
6978
|
-
export type
|
|
6992
|
+
export type EightySix$Outbound = {
|
|
6979
6993
|
projectName?: string | undefined;
|
|
6980
6994
|
projectId: string;
|
|
6981
6995
|
projectAnalytics: ProjectAnalytics$Outbound | null;
|
|
6982
6996
|
prevProjectAnalytics: PrevProjectAnalytics$Outbound | null;
|
|
6983
6997
|
};
|
|
6984
6998
|
/** @internal */
|
|
6985
|
-
export declare const
|
|
6986
|
-
export declare function
|
|
6987
|
-
export declare function
|
|
6999
|
+
export declare const EightySix$outboundSchema: z.ZodType<EightySix$Outbound, z.ZodTypeDef, EightySix>;
|
|
7000
|
+
export declare function eightySixToJSON(eightySix: EightySix): string;
|
|
7001
|
+
export declare function eightySixFromJSON(jsonString: string): SafeParseResult<EightySix, SDKValidationError>;
|
|
6988
7002
|
/** @internal */
|
|
6989
|
-
export declare const
|
|
7003
|
+
export declare const EightyFive$inboundSchema: z.ZodType<EightyFive, z.ZodTypeDef, unknown>;
|
|
6990
7004
|
/** @internal */
|
|
6991
|
-
export type
|
|
7005
|
+
export type EightyFive$Outbound = {
|
|
6992
7006
|
projectName: string;
|
|
6993
7007
|
branch: string;
|
|
6994
7008
|
};
|
|
6995
7009
|
/** @internal */
|
|
6996
|
-
export declare const
|
|
6997
|
-
export declare function
|
|
6998
|
-
export declare function
|
|
7010
|
+
export declare const EightyFive$outboundSchema: z.ZodType<EightyFive$Outbound, z.ZodTypeDef, EightyFive>;
|
|
7011
|
+
export declare function eightyFiveToJSON(eightyFive: EightyFive): string;
|
|
7012
|
+
export declare function eightyFiveFromJSON(jsonString: string): SafeParseResult<EightyFive, SDKValidationError>;
|
|
6999
7013
|
/** @internal */
|
|
7000
7014
|
export declare const UserEventPayloadRole$inboundSchema: z.ZodNativeEnum<typeof UserEventPayloadRole>;
|
|
7001
7015
|
/** @internal */
|
|
@@ -7046,9 +7060,9 @@ export declare const RemovedUsers$outboundSchema: z.ZodType<RemovedUsers$Outboun
|
|
|
7046
7060
|
export declare function removedUsersToJSON(removedUsers: RemovedUsers): string;
|
|
7047
7061
|
export declare function removedUsersFromJSON(jsonString: string): SafeParseResult<RemovedUsers, SDKValidationError>;
|
|
7048
7062
|
/** @internal */
|
|
7049
|
-
export declare const
|
|
7063
|
+
export declare const EightyFour$inboundSchema: z.ZodType<EightyFour, z.ZodTypeDef, unknown>;
|
|
7050
7064
|
/** @internal */
|
|
7051
|
-
export type
|
|
7065
|
+
export type EightyFour$Outbound = {
|
|
7052
7066
|
plan: string;
|
|
7053
7067
|
removedUsers?: {
|
|
7054
7068
|
[k: string]: RemovedUsers$Outbound;
|
|
@@ -7065,6 +7079,16 @@ export type EightyThree$Outbound = {
|
|
|
7065
7079
|
removedMemberCount?: number | undefined;
|
|
7066
7080
|
};
|
|
7067
7081
|
/** @internal */
|
|
7082
|
+
export declare const EightyFour$outboundSchema: z.ZodType<EightyFour$Outbound, z.ZodTypeDef, EightyFour>;
|
|
7083
|
+
export declare function eightyFourToJSON(eightyFour: EightyFour): string;
|
|
7084
|
+
export declare function eightyFourFromJSON(jsonString: string): SafeParseResult<EightyFour, SDKValidationError>;
|
|
7085
|
+
/** @internal */
|
|
7086
|
+
export declare const EightyThree$inboundSchema: z.ZodType<EightyThree, z.ZodTypeDef, unknown>;
|
|
7087
|
+
/** @internal */
|
|
7088
|
+
export type EightyThree$Outbound = {
|
|
7089
|
+
projectName: string;
|
|
7090
|
+
};
|
|
7091
|
+
/** @internal */
|
|
7068
7092
|
export declare const EightyThree$outboundSchema: z.ZodType<EightyThree$Outbound, z.ZodTypeDef, EightyThree>;
|
|
7069
7093
|
export declare function eightyThreeToJSON(eightyThree: EightyThree): string;
|
|
7070
7094
|
export declare function eightyThreeFromJSON(jsonString: string): SafeParseResult<EightyThree, SDKValidationError>;
|
|
@@ -7072,6 +7096,8 @@ export declare function eightyThreeFromJSON(jsonString: string): SafeParseResult
|
|
|
7072
7096
|
export declare const EightyTwo$inboundSchema: z.ZodType<EightyTwo, z.ZodTypeDef, unknown>;
|
|
7073
7097
|
/** @internal */
|
|
7074
7098
|
export type EightyTwo$Outbound = {
|
|
7099
|
+
projectId: string;
|
|
7100
|
+
toDeploymentId: string;
|
|
7075
7101
|
projectName: string;
|
|
7076
7102
|
};
|
|
7077
7103
|
/** @internal */
|
|
@@ -7082,9 +7108,8 @@ export declare function eightyTwoFromJSON(jsonString: string): SafeParseResult<E
|
|
|
7082
7108
|
export declare const EightyOne$inboundSchema: z.ZodType<EightyOne, z.ZodTypeDef, unknown>;
|
|
7083
7109
|
/** @internal */
|
|
7084
7110
|
export type EightyOne$Outbound = {
|
|
7085
|
-
|
|
7086
|
-
|
|
7087
|
-
projectName: string;
|
|
7111
|
+
drainUrl: string | null;
|
|
7112
|
+
integrationName?: string | undefined;
|
|
7088
7113
|
};
|
|
7089
7114
|
/** @internal */
|
|
7090
7115
|
export declare const EightyOne$outboundSchema: z.ZodType<EightyOne$Outbound, z.ZodTypeDef, EightyOne>;
|
|
@@ -7094,7 +7119,7 @@ export declare function eightyOneFromJSON(jsonString: string): SafeParseResult<E
|
|
|
7094
7119
|
export declare const Eighty$inboundSchema: z.ZodType<Eighty, z.ZodTypeDef, unknown>;
|
|
7095
7120
|
/** @internal */
|
|
7096
7121
|
export type Eighty$Outbound = {
|
|
7097
|
-
|
|
7122
|
+
logDrainUrl: string;
|
|
7098
7123
|
integrationName?: string | undefined;
|
|
7099
7124
|
};
|
|
7100
7125
|
/** @internal */
|
|
@@ -7105,7 +7130,7 @@ export declare function eightyFromJSON(jsonString: string): SafeParseResult<Eigh
|
|
|
7105
7130
|
export declare const SeventyNine$inboundSchema: z.ZodType<SeventyNine, z.ZodTypeDef, unknown>;
|
|
7106
7131
|
/** @internal */
|
|
7107
7132
|
export type SeventyNine$Outbound = {
|
|
7108
|
-
logDrainUrl: string;
|
|
7133
|
+
logDrainUrl: string | null;
|
|
7109
7134
|
integrationName?: string | undefined;
|
|
7110
7135
|
};
|
|
7111
7136
|
/** @internal */
|
|
@@ -7116,8 +7141,13 @@ export declare function seventyNineFromJSON(jsonString: string): SafeParseResult
|
|
|
7116
7141
|
export declare const SeventyEight$inboundSchema: z.ZodType<SeventyEight, z.ZodTypeDef, unknown>;
|
|
7117
7142
|
/** @internal */
|
|
7118
7143
|
export type SeventyEight$Outbound = {
|
|
7119
|
-
|
|
7120
|
-
|
|
7144
|
+
integrationId: string;
|
|
7145
|
+
configurationId: string;
|
|
7146
|
+
integrationSlug: string;
|
|
7147
|
+
integrationName: string;
|
|
7148
|
+
ownerId: string;
|
|
7149
|
+
projectIds?: Array<string> | undefined;
|
|
7150
|
+
confirmedScopes: Array<string>;
|
|
7121
7151
|
};
|
|
7122
7152
|
/** @internal */
|
|
7123
7153
|
export declare const SeventyEight$outboundSchema: z.ZodType<SeventyEight$Outbound, z.ZodTypeDef, SeventyEight>;
|
|
@@ -7127,27 +7157,38 @@ export declare function seventyEightFromJSON(jsonString: string): SafeParseResul
|
|
|
7127
7157
|
export declare const SeventySeven$inboundSchema: z.ZodType<SeventySeven, z.ZodTypeDef, unknown>;
|
|
7128
7158
|
/** @internal */
|
|
7129
7159
|
export type SeventySeven$Outbound = {
|
|
7130
|
-
|
|
7131
|
-
|
|
7132
|
-
|
|
7133
|
-
|
|
7134
|
-
|
|
7135
|
-
projectIds?: Array<string> | undefined;
|
|
7136
|
-
confirmedScopes: Array<string>;
|
|
7160
|
+
projectId: string;
|
|
7161
|
+
fromDeploymentId: string;
|
|
7162
|
+
toDeploymentId: string;
|
|
7163
|
+
projectName: string;
|
|
7164
|
+
reason?: string | undefined;
|
|
7137
7165
|
};
|
|
7138
7166
|
/** @internal */
|
|
7139
7167
|
export declare const SeventySeven$outboundSchema: z.ZodType<SeventySeven$Outbound, z.ZodTypeDef, SeventySeven>;
|
|
7140
7168
|
export declare function seventySevenToJSON(seventySeven: SeventySeven): string;
|
|
7141
7169
|
export declare function seventySevenFromJSON(jsonString: string): SafeParseResult<SeventySeven, SDKValidationError>;
|
|
7142
7170
|
/** @internal */
|
|
7171
|
+
export declare const ProjectIds2$inboundSchema: z.ZodNativeEnum<typeof ProjectIds2>;
|
|
7172
|
+
/** @internal */
|
|
7173
|
+
export declare const ProjectIds2$outboundSchema: z.ZodNativeEnum<typeof ProjectIds2>;
|
|
7174
|
+
/** @internal */
|
|
7175
|
+
export declare const ProjectIds$inboundSchema: z.ZodType<ProjectIds, z.ZodTypeDef, unknown>;
|
|
7176
|
+
/** @internal */
|
|
7177
|
+
export type ProjectIds$Outbound = Array<string> | string;
|
|
7178
|
+
/** @internal */
|
|
7179
|
+
export declare const ProjectIds$outboundSchema: z.ZodType<ProjectIds$Outbound, z.ZodTypeDef, ProjectIds>;
|
|
7180
|
+
export declare function projectIdsToJSON(projectIds: ProjectIds): string;
|
|
7181
|
+
export declare function projectIdsFromJSON(jsonString: string): SafeParseResult<ProjectIds, SDKValidationError>;
|
|
7182
|
+
/** @internal */
|
|
7143
7183
|
export declare const SeventySix$inboundSchema: z.ZodType<SeventySix, z.ZodTypeDef, unknown>;
|
|
7144
7184
|
/** @internal */
|
|
7145
7185
|
export type SeventySix$Outbound = {
|
|
7146
|
-
|
|
7147
|
-
|
|
7148
|
-
|
|
7149
|
-
|
|
7150
|
-
|
|
7186
|
+
integrationId: string;
|
|
7187
|
+
configurationId: string;
|
|
7188
|
+
integrationSlug: string;
|
|
7189
|
+
integrationName: string;
|
|
7190
|
+
ownerId: string;
|
|
7191
|
+
projectIds?: Array<string> | string | undefined;
|
|
7151
7192
|
};
|
|
7152
7193
|
/** @internal */
|
|
7153
7194
|
export declare const SeventySix$outboundSchema: z.ZodType<SeventySix$Outbound, z.ZodTypeDef, SeventySix>;
|
|
@@ -10082,7 +10123,7 @@ export declare function payload1FromJSON(jsonString: string): SafeParseResult<Pa
|
|
|
10082
10123
|
/** @internal */
|
|
10083
10124
|
export declare const Payload$inboundSchema: z.ZodType<Payload, z.ZodTypeDef, unknown>;
|
|
10084
10125
|
/** @internal */
|
|
10085
|
-
export type Payload$Outbound = SeventyFour$Outbound |
|
|
10126
|
+
export type Payload$Outbound = SeventyFour$Outbound | SeventyEight$Outbound | FortySeven$Outbound | FortyEight$Outbound | Sixty$Outbound | SixtySix$Outbound | SeventyTwo$Outbound | SeventyFive$Outbound | SeventySix$Outbound | OneHundredAndFortyFour$Outbound | OneHundredAndSeventyFive$Outbound | Payload2$Outbound | FiftyTwo$Outbound | SeventySeven$Outbound | OneHundredAndOne$Outbound | OneHundredAndThirteen$Outbound | OneHundredAndFiftyFive$Outbound | Fourteen$Outbound | Eighteen$Outbound | TwentyTwo$Outbound | ThirtySix$Outbound | ThirtySeven$Outbound | ThirtyEight$Outbound | ThirtyNine$Outbound | FortySix$Outbound | FiftyFive$Outbound | FiftySix$Outbound | FiftySeven$Outbound | SixtySeven$Outbound | SixtyEight$Outbound | SixtyNine$Outbound | SeventyOne$Outbound | EightyTwo$Outbound | EightySix$Outbound | EightyNine$Outbound | Ninety$Outbound | OneHundredAndFour$Outbound | OneHundredAndTwentyTwo$Outbound | OneHundredAndFortySix$Outbound | OneHundredAndFortySeven$Outbound | OneHundredAndFiftyFour$Outbound | OneHundredAndFiftySix$Outbound | OneHundredAndFiftyEight$Outbound | OneHundredAndSixtyOne$Outbound | OneHundredAndSeventyTwo$Outbound | OneHundredAndSeventyThree$Outbound | OneHundredAndSeventyFour$Outbound | Three$Outbound | Four$Outbound | Six$Outbound | Seven$Outbound | Eight$Outbound | Nineteen$Outbound | Twenty$Outbound | TwentyThree$Outbound | TwentySeven$Outbound | ThirtyThree$Outbound | FortyOne$Outbound | FortyTwo$Outbound | FortyThree$Outbound | Fifty$Outbound | FiftyOne$Outbound | FiftyFour$Outbound | SixtyOne$Outbound | SixtyFive$Outbound | Seventy$Outbound | SeventyThree$Outbound | EightyFive$Outbound | NinetyThree$Outbound | NinetyFour$Outbound | NinetyFive$Outbound | NinetyEight$Outbound | NinetyNine$Outbound | OneHundred$Outbound | OneHundredAndTwo$Outbound | OneHundredAndThree$Outbound | OneHundredAndFive$Outbound | OneHundredAndSix$Outbound | OneHundredAndNine$Outbound | OneHundredAndTen$Outbound | OneHundredAndEleven$Outbound | OneHundredAndEighteen$Outbound | OneHundredAndTwentySeven$Outbound | OneHundredAndTwentyEight$Outbound | OneHundredAndThirtyThree$Outbound | OneHundredAndThirtyFour$Outbound | OneHundredAndThirtySix$Outbound | OneHundredAndFortyFive$Outbound | OneHundredAndFortyEight$Outbound | OneHundredAndFortyNine$Outbound | OneHundredAndFifty$Outbound | OneHundredAndFiftyTwo$Outbound | OneHundredAndFiftyThree$Outbound | OneHundredAndFiftyNine$Outbound | OneHundredAndSixty$Outbound | OneHundredAndSixtyTwo$Outbound | OneHundredAndSixtyFour$Outbound | OneHundredAndSixtyFive$Outbound | OneHundredAndSixtySix$Outbound | Five$Outbound | Seventeen$Outbound | TwentyFour$Outbound | TwentySix$Outbound | TwentyEight$Outbound | ThirtyTwo$Outbound | ThirtyFour$Outbound | ThirtyFive$Outbound | Forty$Outbound | FortyFour$Outbound | FortyFive$Outbound | FortyNine$Outbound | FiftyThree$Outbound | FiftyEight$Outbound | FiftyNine$Outbound | SeventyNine$Outbound | Eighty$Outbound | EightyOne$Outbound | EightyThree$Outbound | EightyFour$Outbound | EightySeven$Outbound | EightyEight$Outbound | NinetyOne$Outbound | NinetyTwo$Outbound | NinetySix$Outbound | NinetySeven$Outbound | OneHundredAndSeven$Outbound | OneHundredAndEight$Outbound | OneHundredAndTwelve$Outbound | OneHundredAndFourteen$Outbound | OneHundredAndFifteen$Outbound | OneHundredAndSixteen$Outbound | OneHundredAndNineteen$Outbound | OneHundredAndTwenty$Outbound | OneHundredAndTwentyOne$Outbound | OneHundredAndTwentyFive$Outbound | OneHundredAndTwentySix$Outbound | OneHundredAndTwentyNine$Outbound | OneHundredAndThirtyFive$Outbound | OneHundredAndThirtySeven$Outbound | OneHundredAndFortyOne$Outbound | OneHundredAndFortyTwo$Outbound | OneHundredAndFortyThree$Outbound | OneHundredAndFiftyOne$Outbound | OneHundredAndFiftySeven$Outbound | OneHundredAndSixtyThree$Outbound | OneHundredAndSixtySeven$Outbound | OneHundredAndSixtyEight$Outbound | OneHundredAndSixtyNine$Outbound | OneHundredAndSeventy$Outbound | OneHundredAndSeventyOne$Outbound | Payload1$Outbound | Nine$Outbound | Ten$Outbound | Eleven$Outbound | Twelve$Outbound | Thirteen$Outbound | Fifteen$Outbound | Sixteen$Outbound | TwentyOne$Outbound | TwentyFive$Outbound | TwentyNine$Outbound | Thirty$Outbound | ThirtyOne$Outbound | SixtyTwo$Outbound | SixtyThree$Outbound | SixtyFour$Outbound | OneHundredAndSeventeen$Outbound | OneHundredAndTwentyThree$Outbound | OneHundredAndTwentyFour$Outbound | OneHundredAndThirty$Outbound | OneHundredAndThirtyOne$Outbound | OneHundredAndThirtyTwo$Outbound | OneHundredAndThirtyEight$Outbound | OneHundredAndThirtyNine$Outbound | OneHundredAndForty$Outbound;
|
|
10086
10127
|
/** @internal */
|
|
10087
10128
|
export declare const Payload$outboundSchema: z.ZodType<Payload$Outbound, z.ZodTypeDef, Payload>;
|
|
10088
10129
|
export declare function payloadToJSON(payload: Payload): string;
|
|
@@ -10101,7 +10142,7 @@ export type UserEvent$Outbound = {
|
|
|
10101
10142
|
userId: string;
|
|
10102
10143
|
principalId: string;
|
|
10103
10144
|
viaIds?: Array<string> | undefined;
|
|
10104
|
-
payload?: SeventyFour$Outbound |
|
|
10145
|
+
payload?: SeventyFour$Outbound | SeventyEight$Outbound | FortySeven$Outbound | FortyEight$Outbound | Sixty$Outbound | SixtySix$Outbound | SeventyTwo$Outbound | SeventyFive$Outbound | SeventySix$Outbound | OneHundredAndFortyFour$Outbound | OneHundredAndSeventyFive$Outbound | Payload2$Outbound | FiftyTwo$Outbound | SeventySeven$Outbound | OneHundredAndOne$Outbound | OneHundredAndThirteen$Outbound | OneHundredAndFiftyFive$Outbound | Fourteen$Outbound | Eighteen$Outbound | TwentyTwo$Outbound | ThirtySix$Outbound | ThirtySeven$Outbound | ThirtyEight$Outbound | ThirtyNine$Outbound | FortySix$Outbound | FiftyFive$Outbound | FiftySix$Outbound | FiftySeven$Outbound | SixtySeven$Outbound | SixtyEight$Outbound | SixtyNine$Outbound | SeventyOne$Outbound | EightyTwo$Outbound | EightySix$Outbound | EightyNine$Outbound | Ninety$Outbound | OneHundredAndFour$Outbound | OneHundredAndTwentyTwo$Outbound | OneHundredAndFortySix$Outbound | OneHundredAndFortySeven$Outbound | OneHundredAndFiftyFour$Outbound | OneHundredAndFiftySix$Outbound | OneHundredAndFiftyEight$Outbound | OneHundredAndSixtyOne$Outbound | OneHundredAndSeventyTwo$Outbound | OneHundredAndSeventyThree$Outbound | OneHundredAndSeventyFour$Outbound | Three$Outbound | Four$Outbound | Six$Outbound | Seven$Outbound | Eight$Outbound | Nineteen$Outbound | Twenty$Outbound | TwentyThree$Outbound | TwentySeven$Outbound | ThirtyThree$Outbound | FortyOne$Outbound | FortyTwo$Outbound | FortyThree$Outbound | Fifty$Outbound | FiftyOne$Outbound | FiftyFour$Outbound | SixtyOne$Outbound | SixtyFive$Outbound | Seventy$Outbound | SeventyThree$Outbound | EightyFive$Outbound | NinetyThree$Outbound | NinetyFour$Outbound | NinetyFive$Outbound | NinetyEight$Outbound | NinetyNine$Outbound | OneHundred$Outbound | OneHundredAndTwo$Outbound | OneHundredAndThree$Outbound | OneHundredAndFive$Outbound | OneHundredAndSix$Outbound | OneHundredAndNine$Outbound | OneHundredAndTen$Outbound | OneHundredAndEleven$Outbound | OneHundredAndEighteen$Outbound | OneHundredAndTwentySeven$Outbound | OneHundredAndTwentyEight$Outbound | OneHundredAndThirtyThree$Outbound | OneHundredAndThirtyFour$Outbound | OneHundredAndThirtySix$Outbound | OneHundredAndFortyFive$Outbound | OneHundredAndFortyEight$Outbound | OneHundredAndFortyNine$Outbound | OneHundredAndFifty$Outbound | OneHundredAndFiftyTwo$Outbound | OneHundredAndFiftyThree$Outbound | OneHundredAndFiftyNine$Outbound | OneHundredAndSixty$Outbound | OneHundredAndSixtyTwo$Outbound | OneHundredAndSixtyFour$Outbound | OneHundredAndSixtyFive$Outbound | OneHundredAndSixtySix$Outbound | Five$Outbound | Seventeen$Outbound | TwentyFour$Outbound | TwentySix$Outbound | TwentyEight$Outbound | ThirtyTwo$Outbound | ThirtyFour$Outbound | ThirtyFive$Outbound | Forty$Outbound | FortyFour$Outbound | FortyFive$Outbound | FortyNine$Outbound | FiftyThree$Outbound | FiftyEight$Outbound | FiftyNine$Outbound | SeventyNine$Outbound | Eighty$Outbound | EightyOne$Outbound | EightyThree$Outbound | EightyFour$Outbound | EightySeven$Outbound | EightyEight$Outbound | NinetyOne$Outbound | NinetyTwo$Outbound | NinetySix$Outbound | NinetySeven$Outbound | OneHundredAndSeven$Outbound | OneHundredAndEight$Outbound | OneHundredAndTwelve$Outbound | OneHundredAndFourteen$Outbound | OneHundredAndFifteen$Outbound | OneHundredAndSixteen$Outbound | OneHundredAndNineteen$Outbound | OneHundredAndTwenty$Outbound | OneHundredAndTwentyOne$Outbound | OneHundredAndTwentyFive$Outbound | OneHundredAndTwentySix$Outbound | OneHundredAndTwentyNine$Outbound | OneHundredAndThirtyFive$Outbound | OneHundredAndThirtySeven$Outbound | OneHundredAndFortyOne$Outbound | OneHundredAndFortyTwo$Outbound | OneHundredAndFortyThree$Outbound | OneHundredAndFiftyOne$Outbound | OneHundredAndFiftySeven$Outbound | OneHundredAndSixtyThree$Outbound | OneHundredAndSixtySeven$Outbound | OneHundredAndSixtyEight$Outbound | OneHundredAndSixtyNine$Outbound | OneHundredAndSeventy$Outbound | OneHundredAndSeventyOne$Outbound | Payload1$Outbound | Nine$Outbound | Ten$Outbound | Eleven$Outbound | Twelve$Outbound | Thirteen$Outbound | Fifteen$Outbound | Sixteen$Outbound | TwentyOne$Outbound | TwentyFive$Outbound | TwentyNine$Outbound | Thirty$Outbound | ThirtyOne$Outbound | SixtyTwo$Outbound | SixtyThree$Outbound | SixtyFour$Outbound | OneHundredAndSeventeen$Outbound | OneHundredAndTwentyThree$Outbound | OneHundredAndTwentyFour$Outbound | OneHundredAndThirty$Outbound | OneHundredAndThirtyOne$Outbound | OneHundredAndThirtyTwo$Outbound | OneHundredAndThirtyEight$Outbound | OneHundredAndThirtyNine$Outbound | OneHundredAndForty$Outbound | undefined;
|
|
10105
10146
|
};
|
|
10106
10147
|
/** @internal */
|
|
10107
10148
|
export declare const UserEvent$outboundSchema: z.ZodType<UserEvent$Outbound, z.ZodTypeDef, UserEvent>;
|