@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
package/esm/models/userevent.js
CHANGED
|
@@ -72,22 +72,22 @@ export const Method = {
|
|
|
72
72
|
PrivateKeyJwt: "private_key_jwt",
|
|
73
73
|
OidcToken: "oidc_token",
|
|
74
74
|
};
|
|
75
|
-
export const
|
|
75
|
+
export const UserEventPayload170Type = {
|
|
76
76
|
List: "list",
|
|
77
77
|
};
|
|
78
|
-
export const
|
|
78
|
+
export const UserEventPayload170BeforeType = {
|
|
79
79
|
String: "string",
|
|
80
80
|
};
|
|
81
|
-
export const
|
|
81
|
+
export const UserEventPayload170AfterType = {
|
|
82
82
|
List: "list",
|
|
83
83
|
};
|
|
84
|
-
export const
|
|
84
|
+
export const UserEventPayload170AfterResourcesType = {
|
|
85
85
|
String: "string",
|
|
86
86
|
};
|
|
87
|
-
export const
|
|
87
|
+
export const UserEventPayload169Type = {
|
|
88
88
|
List: "list",
|
|
89
89
|
};
|
|
90
|
-
export const
|
|
90
|
+
export const UserEventPayload169ResourcesType = {
|
|
91
91
|
String: "string",
|
|
92
92
|
};
|
|
93
93
|
export const NextScopes = {
|
|
@@ -103,7 +103,6 @@ export const NextPermissions = {
|
|
|
103
103
|
ReadDomain: "read:domain",
|
|
104
104
|
ReadWriteDomain: "read-write:domain",
|
|
105
105
|
ReadTeam: "read:team",
|
|
106
|
-
ReadWriteTeam: "read-write:team",
|
|
107
106
|
ReadBilling: "read:billing",
|
|
108
107
|
ReadWriteAiGatewayApiKey: "read-write:ai-gateway-api-key",
|
|
109
108
|
ReadProject: "read:project",
|
|
@@ -127,7 +126,6 @@ export const Permissions = {
|
|
|
127
126
|
ReadDomain: "read:domain",
|
|
128
127
|
ReadWriteDomain: "read-write:domain",
|
|
129
128
|
ReadTeam: "read:team",
|
|
130
|
-
ReadWriteTeam: "read-write:team",
|
|
131
129
|
ReadBilling: "read:billing",
|
|
132
130
|
ReadWriteAiGatewayApiKey: "read-write:ai-gateway-api-key",
|
|
133
131
|
ReadProject: "read:project",
|
|
@@ -142,16 +140,16 @@ export const Tier = {
|
|
|
142
140
|
Pro: "pro",
|
|
143
141
|
Plus: "plus",
|
|
144
142
|
};
|
|
145
|
-
export const
|
|
143
|
+
export const UserEventPayload157Action = {
|
|
146
144
|
Enable: "enable",
|
|
147
145
|
Disable: "disable",
|
|
148
146
|
};
|
|
149
|
-
export const
|
|
147
|
+
export const UserEventPayload151Role = {
|
|
150
148
|
Admin: "ADMIN",
|
|
151
149
|
ProjectDeveloper: "PROJECT_DEVELOPER",
|
|
152
150
|
ProjectViewer: "PROJECT_VIEWER",
|
|
153
151
|
};
|
|
154
|
-
export const
|
|
152
|
+
export const UserEventPayload150Role = {
|
|
155
153
|
Admin: "ADMIN",
|
|
156
154
|
ProjectDeveloper: "PROJECT_DEVELOPER",
|
|
157
155
|
ProjectViewer: "PROJECT_VIEWER",
|
|
@@ -161,12 +159,12 @@ export const PayloadPreviousRole = {
|
|
|
161
159
|
ProjectDeveloper: "PROJECT_DEVELOPER",
|
|
162
160
|
ProjectViewer: "PROJECT_VIEWER",
|
|
163
161
|
};
|
|
164
|
-
export const
|
|
162
|
+
export const UserEventPayload149Role = {
|
|
165
163
|
Admin: "ADMIN",
|
|
166
164
|
ProjectDeveloper: "PROJECT_DEVELOPER",
|
|
167
165
|
ProjectViewer: "PROJECT_VIEWER",
|
|
168
166
|
};
|
|
169
|
-
export const
|
|
167
|
+
export const UserEventPayload148Role = {
|
|
170
168
|
Admin: "ADMIN",
|
|
171
169
|
ProjectDeveloper: "PROJECT_DEVELOPER",
|
|
172
170
|
ProjectViewer: "PROJECT_VIEWER",
|
|
@@ -191,7 +189,7 @@ export const NewPlan = {
|
|
|
191
189
|
Enterprise: "enterprise",
|
|
192
190
|
Hobby: "hobby",
|
|
193
191
|
};
|
|
194
|
-
export const
|
|
192
|
+
export const UserEventPayload122Role = {
|
|
195
193
|
Owner: "OWNER",
|
|
196
194
|
Member: "MEMBER",
|
|
197
195
|
Developer: "DEVELOPER",
|
|
@@ -215,7 +213,7 @@ export const UserEventPayloadType = {
|
|
|
215
213
|
/**
|
|
216
214
|
* The budget type
|
|
217
215
|
*/
|
|
218
|
-
export const
|
|
216
|
+
export const UserEventPayload116Type = {
|
|
219
217
|
Fixed: "fixed",
|
|
220
218
|
};
|
|
221
219
|
/**
|
|
@@ -229,7 +227,7 @@ export const PayloadPricingPlan = {
|
|
|
229
227
|
/**
|
|
230
228
|
* The budget type
|
|
231
229
|
*/
|
|
232
|
-
export const
|
|
230
|
+
export const UserEventPayload115Type = {
|
|
233
231
|
Fixed: "fixed",
|
|
234
232
|
};
|
|
235
233
|
/**
|
|
@@ -243,7 +241,7 @@ export const PricingPlan = {
|
|
|
243
241
|
/**
|
|
244
242
|
* The budget type
|
|
245
243
|
*/
|
|
246
|
-
export const
|
|
244
|
+
export const UserEventPayload114Type = {
|
|
247
245
|
Fixed: "fixed",
|
|
248
246
|
};
|
|
249
247
|
/**
|
|
@@ -271,7 +269,7 @@ export const UserEventEnvId2 = {
|
|
|
271
269
|
Preview: "preview",
|
|
272
270
|
Production: "production",
|
|
273
271
|
};
|
|
274
|
-
export const
|
|
272
|
+
export const UserEventPayload93Action = {
|
|
275
273
|
Enabled: "enabled",
|
|
276
274
|
Disabled: "disabled",
|
|
277
275
|
Regenerated: "regenerated",
|
|
@@ -374,6 +372,9 @@ export const PayloadOrigin = {
|
|
|
374
372
|
Feedback: "feedback",
|
|
375
373
|
OrganizationTeams: "organization-teams",
|
|
376
374
|
};
|
|
375
|
+
export const ProjectIds2 = {
|
|
376
|
+
All: "all",
|
|
377
|
+
};
|
|
377
378
|
export const UserEventPayload72Action = {
|
|
378
379
|
Blocked: "blocked",
|
|
379
380
|
HardBlocked: "hard-blocked",
|
|
@@ -1038,7 +1039,7 @@ export function payloadAppFromJSON(jsonString) {
|
|
|
1038
1039
|
return safeParse(jsonString, (x) => PayloadApp$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PayloadApp' from JSON`);
|
|
1039
1040
|
}
|
|
1040
1041
|
/** @internal */
|
|
1041
|
-
export const
|
|
1042
|
+
export const OneHundredAndSeventyFive$inboundSchema = z.object({
|
|
1042
1043
|
grantType: GrantType$inboundSchema,
|
|
1043
1044
|
appName: types.string(),
|
|
1044
1045
|
atTTL: types.number(),
|
|
@@ -1051,7 +1052,7 @@ export const OneHundredAndSeventyFour$inboundSchema = z.object({
|
|
|
1051
1052
|
sessionId: types.optional(types.string()),
|
|
1052
1053
|
});
|
|
1053
1054
|
/** @internal */
|
|
1054
|
-
export const
|
|
1055
|
+
export const OneHundredAndSeventyFive$outboundSchema = z.object({
|
|
1055
1056
|
grantType: GrantType$outboundSchema,
|
|
1056
1057
|
appName: z.string(),
|
|
1057
1058
|
atTTL: z.number(),
|
|
@@ -1063,43 +1064,43 @@ export const OneHundredAndSeventyFour$outboundSchema = z.object({
|
|
|
1063
1064
|
publicId: z.string().optional(),
|
|
1064
1065
|
sessionId: z.string().optional(),
|
|
1065
1066
|
});
|
|
1066
|
-
export function
|
|
1067
|
-
return JSON.stringify(
|
|
1067
|
+
export function oneHundredAndSeventyFiveToJSON(oneHundredAndSeventyFive) {
|
|
1068
|
+
return JSON.stringify(OneHundredAndSeventyFive$outboundSchema.parse(oneHundredAndSeventyFive));
|
|
1068
1069
|
}
|
|
1069
|
-
export function
|
|
1070
|
-
return safeParse(jsonString, (x) =>
|
|
1070
|
+
export function oneHundredAndSeventyFiveFromJSON(jsonString) {
|
|
1071
|
+
return safeParse(jsonString, (x) => OneHundredAndSeventyFive$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndSeventyFive' from JSON`);
|
|
1071
1072
|
}
|
|
1072
1073
|
/** @internal */
|
|
1073
|
-
export const
|
|
1074
|
+
export const UserEventPayload174Team$inboundSchema = z.object({
|
|
1074
1075
|
id: types.string(),
|
|
1075
1076
|
name: types.string(),
|
|
1076
1077
|
});
|
|
1077
1078
|
/** @internal */
|
|
1078
|
-
export const
|
|
1079
|
+
export const UserEventPayload174Team$outboundSchema = z.object({
|
|
1079
1080
|
id: z.string(),
|
|
1080
1081
|
name: z.string(),
|
|
1081
1082
|
});
|
|
1082
|
-
export function
|
|
1083
|
-
return JSON.stringify(
|
|
1083
|
+
export function userEventPayload174TeamToJSON(userEventPayload174Team) {
|
|
1084
|
+
return JSON.stringify(UserEventPayload174Team$outboundSchema.parse(userEventPayload174Team));
|
|
1084
1085
|
}
|
|
1085
|
-
export function
|
|
1086
|
-
return safeParse(jsonString, (x) =>
|
|
1086
|
+
export function userEventPayload174TeamFromJSON(jsonString) {
|
|
1087
|
+
return safeParse(jsonString, (x) => UserEventPayload174Team$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload174Team' from JSON`);
|
|
1087
1088
|
}
|
|
1088
1089
|
/** @internal */
|
|
1089
|
-
export const
|
|
1090
|
+
export const UserEventPayload174Configuration$inboundSchema = z.object({
|
|
1090
1091
|
id: types.string(),
|
|
1091
1092
|
name: types.optional(types.string()),
|
|
1092
1093
|
});
|
|
1093
1094
|
/** @internal */
|
|
1094
|
-
export const
|
|
1095
|
+
export const UserEventPayload174Configuration$outboundSchema = z.object({
|
|
1095
1096
|
id: z.string(),
|
|
1096
1097
|
name: z.string().optional(),
|
|
1097
1098
|
});
|
|
1098
|
-
export function
|
|
1099
|
-
return JSON.stringify(
|
|
1099
|
+
export function userEventPayload174ConfigurationToJSON(userEventPayload174Configuration) {
|
|
1100
|
+
return JSON.stringify(UserEventPayload174Configuration$outboundSchema.parse(userEventPayload174Configuration));
|
|
1100
1101
|
}
|
|
1101
|
-
export function
|
|
1102
|
-
return safeParse(jsonString, (x) =>
|
|
1102
|
+
export function userEventPayload174ConfigurationFromJSON(jsonString) {
|
|
1103
|
+
return safeParse(jsonString, (x) => UserEventPayload174Configuration$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload174Configuration' from JSON`);
|
|
1103
1104
|
}
|
|
1104
1105
|
/** @internal */
|
|
1105
1106
|
export const UserEventPayloadPeering$inboundSchema = z.object({
|
|
@@ -1118,56 +1119,56 @@ export function userEventPayloadPeeringFromJSON(jsonString) {
|
|
|
1118
1119
|
return safeParse(jsonString, (x) => UserEventPayloadPeering$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayloadPeering' from JSON`);
|
|
1119
1120
|
}
|
|
1120
1121
|
/** @internal */
|
|
1121
|
-
export const
|
|
1122
|
-
team: z.lazy(() =>
|
|
1123
|
-
configuration: z.lazy(() =>
|
|
1122
|
+
export const OneHundredAndSeventyFour$inboundSchema = z.object({
|
|
1123
|
+
team: z.lazy(() => UserEventPayload174Team$inboundSchema),
|
|
1124
|
+
configuration: z.lazy(() => UserEventPayload174Configuration$inboundSchema),
|
|
1124
1125
|
peering: z.lazy(() => UserEventPayloadPeering$inboundSchema),
|
|
1125
1126
|
newName: types.optional(types.string()),
|
|
1126
1127
|
});
|
|
1127
1128
|
/** @internal */
|
|
1128
|
-
export const
|
|
1129
|
-
team: z.lazy(() =>
|
|
1130
|
-
configuration: z.lazy(() =>
|
|
1129
|
+
export const OneHundredAndSeventyFour$outboundSchema = z.object({
|
|
1130
|
+
team: z.lazy(() => UserEventPayload174Team$outboundSchema),
|
|
1131
|
+
configuration: z.lazy(() => UserEventPayload174Configuration$outboundSchema),
|
|
1131
1132
|
peering: z.lazy(() => UserEventPayloadPeering$outboundSchema),
|
|
1132
1133
|
newName: z.string().optional(),
|
|
1133
1134
|
});
|
|
1134
|
-
export function
|
|
1135
|
-
return JSON.stringify(
|
|
1135
|
+
export function oneHundredAndSeventyFourToJSON(oneHundredAndSeventyFour) {
|
|
1136
|
+
return JSON.stringify(OneHundredAndSeventyFour$outboundSchema.parse(oneHundredAndSeventyFour));
|
|
1136
1137
|
}
|
|
1137
|
-
export function
|
|
1138
|
-
return safeParse(jsonString, (x) =>
|
|
1138
|
+
export function oneHundredAndSeventyFourFromJSON(jsonString) {
|
|
1139
|
+
return safeParse(jsonString, (x) => OneHundredAndSeventyFour$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndSeventyFour' from JSON`);
|
|
1139
1140
|
}
|
|
1140
1141
|
/** @internal */
|
|
1141
|
-
export const
|
|
1142
|
+
export const UserEventPayload173Team$inboundSchema = z.object({
|
|
1142
1143
|
id: types.string(),
|
|
1143
1144
|
name: types.string(),
|
|
1144
1145
|
});
|
|
1145
1146
|
/** @internal */
|
|
1146
|
-
export const
|
|
1147
|
+
export const UserEventPayload173Team$outboundSchema = z.object({
|
|
1147
1148
|
id: z.string(),
|
|
1148
1149
|
name: z.string(),
|
|
1149
1150
|
});
|
|
1150
|
-
export function
|
|
1151
|
-
return JSON.stringify(
|
|
1151
|
+
export function userEventPayload173TeamToJSON(userEventPayload173Team) {
|
|
1152
|
+
return JSON.stringify(UserEventPayload173Team$outboundSchema.parse(userEventPayload173Team));
|
|
1152
1153
|
}
|
|
1153
|
-
export function
|
|
1154
|
-
return safeParse(jsonString, (x) =>
|
|
1154
|
+
export function userEventPayload173TeamFromJSON(jsonString) {
|
|
1155
|
+
return safeParse(jsonString, (x) => UserEventPayload173Team$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload173Team' from JSON`);
|
|
1155
1156
|
}
|
|
1156
1157
|
/** @internal */
|
|
1157
|
-
export const
|
|
1158
|
+
export const UserEventPayload173Configuration$inboundSchema = z.object({
|
|
1158
1159
|
id: types.string(),
|
|
1159
1160
|
name: types.optional(types.string()),
|
|
1160
1161
|
});
|
|
1161
1162
|
/** @internal */
|
|
1162
|
-
export const
|
|
1163
|
+
export const UserEventPayload173Configuration$outboundSchema = z.object({
|
|
1163
1164
|
id: z.string(),
|
|
1164
1165
|
name: z.string().optional(),
|
|
1165
1166
|
});
|
|
1166
|
-
export function
|
|
1167
|
-
return JSON.stringify(
|
|
1167
|
+
export function userEventPayload173ConfigurationToJSON(userEventPayload173Configuration) {
|
|
1168
|
+
return JSON.stringify(UserEventPayload173Configuration$outboundSchema.parse(userEventPayload173Configuration));
|
|
1168
1169
|
}
|
|
1169
|
-
export function
|
|
1170
|
-
return safeParse(jsonString, (x) =>
|
|
1170
|
+
export function userEventPayload173ConfigurationFromJSON(jsonString) {
|
|
1171
|
+
return safeParse(jsonString, (x) => UserEventPayload173Configuration$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload173Configuration' from JSON`);
|
|
1171
1172
|
}
|
|
1172
1173
|
/** @internal */
|
|
1173
1174
|
export const PayloadPeering$inboundSchema = z.object({
|
|
@@ -1186,54 +1187,54 @@ export function payloadPeeringFromJSON(jsonString) {
|
|
|
1186
1187
|
return safeParse(jsonString, (x) => PayloadPeering$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PayloadPeering' from JSON`);
|
|
1187
1188
|
}
|
|
1188
1189
|
/** @internal */
|
|
1189
|
-
export const
|
|
1190
|
-
team: z.lazy(() =>
|
|
1191
|
-
configuration: z.lazy(() =>
|
|
1190
|
+
export const OneHundredAndSeventyThree$inboundSchema = z.object({
|
|
1191
|
+
team: z.lazy(() => UserEventPayload173Team$inboundSchema),
|
|
1192
|
+
configuration: z.lazy(() => UserEventPayload173Configuration$inboundSchema),
|
|
1192
1193
|
peering: z.lazy(() => PayloadPeering$inboundSchema),
|
|
1193
1194
|
});
|
|
1194
1195
|
/** @internal */
|
|
1195
|
-
export const
|
|
1196
|
-
team: z.lazy(() =>
|
|
1197
|
-
configuration: z.lazy(() =>
|
|
1196
|
+
export const OneHundredAndSeventyThree$outboundSchema = z.object({
|
|
1197
|
+
team: z.lazy(() => UserEventPayload173Team$outboundSchema),
|
|
1198
|
+
configuration: z.lazy(() => UserEventPayload173Configuration$outboundSchema),
|
|
1198
1199
|
peering: z.lazy(() => PayloadPeering$outboundSchema),
|
|
1199
1200
|
});
|
|
1200
|
-
export function
|
|
1201
|
-
return JSON.stringify(
|
|
1201
|
+
export function oneHundredAndSeventyThreeToJSON(oneHundredAndSeventyThree) {
|
|
1202
|
+
return JSON.stringify(OneHundredAndSeventyThree$outboundSchema.parse(oneHundredAndSeventyThree));
|
|
1202
1203
|
}
|
|
1203
|
-
export function
|
|
1204
|
-
return safeParse(jsonString, (x) =>
|
|
1204
|
+
export function oneHundredAndSeventyThreeFromJSON(jsonString) {
|
|
1205
|
+
return safeParse(jsonString, (x) => OneHundredAndSeventyThree$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndSeventyThree' from JSON`);
|
|
1205
1206
|
}
|
|
1206
1207
|
/** @internal */
|
|
1207
|
-
export const
|
|
1208
|
+
export const UserEventPayload172Team$inboundSchema = z.object({
|
|
1208
1209
|
id: types.string(),
|
|
1209
1210
|
name: types.string(),
|
|
1210
1211
|
});
|
|
1211
1212
|
/** @internal */
|
|
1212
|
-
export const
|
|
1213
|
+
export const UserEventPayload172Team$outboundSchema = z.object({
|
|
1213
1214
|
id: z.string(),
|
|
1214
1215
|
name: z.string(),
|
|
1215
1216
|
});
|
|
1216
|
-
export function
|
|
1217
|
-
return JSON.stringify(
|
|
1217
|
+
export function userEventPayload172TeamToJSON(userEventPayload172Team) {
|
|
1218
|
+
return JSON.stringify(UserEventPayload172Team$outboundSchema.parse(userEventPayload172Team));
|
|
1218
1219
|
}
|
|
1219
|
-
export function
|
|
1220
|
-
return safeParse(jsonString, (x) =>
|
|
1220
|
+
export function userEventPayload172TeamFromJSON(jsonString) {
|
|
1221
|
+
return safeParse(jsonString, (x) => UserEventPayload172Team$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload172Team' from JSON`);
|
|
1221
1222
|
}
|
|
1222
1223
|
/** @internal */
|
|
1223
|
-
export const
|
|
1224
|
+
export const UserEventPayload172Configuration$inboundSchema = z.object({
|
|
1224
1225
|
id: types.string(),
|
|
1225
1226
|
name: types.optional(types.string()),
|
|
1226
1227
|
});
|
|
1227
1228
|
/** @internal */
|
|
1228
|
-
export const
|
|
1229
|
+
export const UserEventPayload172Configuration$outboundSchema = z.object({
|
|
1229
1230
|
id: z.string(),
|
|
1230
1231
|
name: z.string().optional(),
|
|
1231
1232
|
});
|
|
1232
|
-
export function
|
|
1233
|
-
return JSON.stringify(
|
|
1233
|
+
export function userEventPayload172ConfigurationToJSON(userEventPayload172Configuration) {
|
|
1234
|
+
return JSON.stringify(UserEventPayload172Configuration$outboundSchema.parse(userEventPayload172Configuration));
|
|
1234
1235
|
}
|
|
1235
|
-
export function
|
|
1236
|
-
return safeParse(jsonString, (x) =>
|
|
1236
|
+
export function userEventPayload172ConfigurationFromJSON(jsonString) {
|
|
1237
|
+
return safeParse(jsonString, (x) => UserEventPayload172Configuration$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload172Configuration' from JSON`);
|
|
1237
1238
|
}
|
|
1238
1239
|
/** @internal */
|
|
1239
1240
|
export const Peering$inboundSchema = z.object({
|
|
@@ -1256,22 +1257,22 @@ export function peeringFromJSON(jsonString) {
|
|
|
1256
1257
|
return safeParse(jsonString, (x) => Peering$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Peering' from JSON`);
|
|
1257
1258
|
}
|
|
1258
1259
|
/** @internal */
|
|
1259
|
-
export const
|
|
1260
|
-
team: z.lazy(() =>
|
|
1261
|
-
configuration: z.lazy(() =>
|
|
1260
|
+
export const OneHundredAndSeventyTwo$inboundSchema = z.object({
|
|
1261
|
+
team: z.lazy(() => UserEventPayload172Team$inboundSchema),
|
|
1262
|
+
configuration: z.lazy(() => UserEventPayload172Configuration$inboundSchema),
|
|
1262
1263
|
peering: z.lazy(() => Peering$inboundSchema),
|
|
1263
1264
|
});
|
|
1264
1265
|
/** @internal */
|
|
1265
|
-
export const
|
|
1266
|
-
team: z.lazy(() =>
|
|
1267
|
-
configuration: z.lazy(() =>
|
|
1266
|
+
export const OneHundredAndSeventyTwo$outboundSchema = z.object({
|
|
1267
|
+
team: z.lazy(() => UserEventPayload172Team$outboundSchema),
|
|
1268
|
+
configuration: z.lazy(() => UserEventPayload172Configuration$outboundSchema),
|
|
1268
1269
|
peering: z.lazy(() => Peering$outboundSchema),
|
|
1269
1270
|
});
|
|
1270
|
-
export function
|
|
1271
|
-
return JSON.stringify(
|
|
1271
|
+
export function oneHundredAndSeventyTwoToJSON(oneHundredAndSeventyTwo) {
|
|
1272
|
+
return JSON.stringify(OneHundredAndSeventyTwo$outboundSchema.parse(oneHundredAndSeventyTwo));
|
|
1272
1273
|
}
|
|
1273
|
-
export function
|
|
1274
|
-
return safeParse(jsonString, (x) =>
|
|
1274
|
+
export function oneHundredAndSeventyTwoFromJSON(jsonString) {
|
|
1275
|
+
return safeParse(jsonString, (x) => OneHundredAndSeventyTwo$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndSeventyTwo' from JSON`);
|
|
1275
1276
|
}
|
|
1276
1277
|
/** @internal */
|
|
1277
1278
|
export const App$inboundSchema = z
|
|
@@ -1292,40 +1293,40 @@ export function appFromJSON(jsonString) {
|
|
|
1292
1293
|
return safeParse(jsonString, (x) => App$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'App' from JSON`);
|
|
1293
1294
|
}
|
|
1294
1295
|
/** @internal */
|
|
1295
|
-
export const
|
|
1296
|
+
export const OneHundredAndSeventyOne$inboundSchema = z.object({
|
|
1296
1297
|
appName: types.string(),
|
|
1297
1298
|
appId: types.optional(types.string()),
|
|
1298
1299
|
app: types.optional(z.lazy(() => App$inboundSchema)),
|
|
1299
1300
|
issuedBefore: types.optional(types.number()),
|
|
1300
1301
|
});
|
|
1301
1302
|
/** @internal */
|
|
1302
|
-
export const
|
|
1303
|
+
export const OneHundredAndSeventyOne$outboundSchema = z.object({
|
|
1303
1304
|
appName: z.string(),
|
|
1304
1305
|
appId: z.string().optional(),
|
|
1305
1306
|
app: z.lazy(() => App$outboundSchema).optional(),
|
|
1306
1307
|
issuedBefore: z.number().optional(),
|
|
1307
1308
|
});
|
|
1308
|
-
export function
|
|
1309
|
-
return JSON.stringify(
|
|
1309
|
+
export function oneHundredAndSeventyOneToJSON(oneHundredAndSeventyOne) {
|
|
1310
|
+
return JSON.stringify(OneHundredAndSeventyOne$outboundSchema.parse(oneHundredAndSeventyOne));
|
|
1310
1311
|
}
|
|
1311
|
-
export function
|
|
1312
|
-
return safeParse(jsonString, (x) =>
|
|
1312
|
+
export function oneHundredAndSeventyOneFromJSON(jsonString) {
|
|
1313
|
+
return safeParse(jsonString, (x) => OneHundredAndSeventyOne$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndSeventyOne' from JSON`);
|
|
1313
1314
|
}
|
|
1314
1315
|
/** @internal */
|
|
1315
|
-
export const
|
|
1316
|
+
export const UserEventPayload170Type$inboundSchema = z.nativeEnum(UserEventPayload170Type);
|
|
1316
1317
|
/** @internal */
|
|
1317
|
-
export const
|
|
1318
|
+
export const UserEventPayload170Type$outboundSchema = UserEventPayload170Type$inboundSchema;
|
|
1318
1319
|
/** @internal */
|
|
1319
|
-
export const
|
|
1320
|
+
export const UserEventPayload170BeforeType$inboundSchema = z.nativeEnum(UserEventPayload170BeforeType);
|
|
1320
1321
|
/** @internal */
|
|
1321
|
-
export const
|
|
1322
|
+
export const UserEventPayload170BeforeType$outboundSchema = UserEventPayload170BeforeType$inboundSchema;
|
|
1322
1323
|
/** @internal */
|
|
1323
1324
|
export const PayloadItems$inboundSchema = z.object({
|
|
1324
|
-
type:
|
|
1325
|
+
type: UserEventPayload170BeforeType$inboundSchema,
|
|
1325
1326
|
});
|
|
1326
1327
|
/** @internal */
|
|
1327
1328
|
export const PayloadItems$outboundSchema = z.object({
|
|
1328
|
-
type:
|
|
1329
|
+
type: UserEventPayload170BeforeType$outboundSchema,
|
|
1329
1330
|
});
|
|
1330
1331
|
export function payloadItemsToJSON(payloadItems) {
|
|
1331
1332
|
return JSON.stringify(PayloadItems$outboundSchema.parse(payloadItems));
|
|
@@ -1334,30 +1335,30 @@ export function payloadItemsFromJSON(jsonString) {
|
|
|
1334
1335
|
return safeParse(jsonString, (x) => PayloadItems$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PayloadItems' from JSON`);
|
|
1335
1336
|
}
|
|
1336
1337
|
/** @internal */
|
|
1337
|
-
export const
|
|
1338
|
-
type:
|
|
1338
|
+
export const UserEventPayloadProjectIds$inboundSchema = z.object({
|
|
1339
|
+
type: UserEventPayload170Type$inboundSchema,
|
|
1339
1340
|
required: types.boolean(),
|
|
1340
1341
|
items: z.lazy(() => PayloadItems$inboundSchema),
|
|
1341
1342
|
});
|
|
1342
1343
|
/** @internal */
|
|
1343
|
-
export const
|
|
1344
|
-
type:
|
|
1344
|
+
export const UserEventPayloadProjectIds$outboundSchema = z.object({
|
|
1345
|
+
type: UserEventPayload170Type$outboundSchema,
|
|
1345
1346
|
required: z.boolean(),
|
|
1346
1347
|
items: z.lazy(() => PayloadItems$outboundSchema),
|
|
1347
1348
|
});
|
|
1348
|
-
export function
|
|
1349
|
-
return JSON.stringify(
|
|
1349
|
+
export function userEventPayloadProjectIdsToJSON(userEventPayloadProjectIds) {
|
|
1350
|
+
return JSON.stringify(UserEventPayloadProjectIds$outboundSchema.parse(userEventPayloadProjectIds));
|
|
1350
1351
|
}
|
|
1351
|
-
export function
|
|
1352
|
-
return safeParse(jsonString, (x) =>
|
|
1352
|
+
export function userEventPayloadProjectIdsFromJSON(jsonString) {
|
|
1353
|
+
return safeParse(jsonString, (x) => UserEventPayloadProjectIds$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayloadProjectIds' from JSON`);
|
|
1353
1354
|
}
|
|
1354
1355
|
/** @internal */
|
|
1355
1356
|
export const PayloadResources$inboundSchema = z.object({
|
|
1356
|
-
projectIds: z.lazy(() =>
|
|
1357
|
+
projectIds: z.lazy(() => UserEventPayloadProjectIds$inboundSchema),
|
|
1357
1358
|
});
|
|
1358
1359
|
/** @internal */
|
|
1359
1360
|
export const PayloadResources$outboundSchema = z.object({
|
|
1360
|
-
projectIds: z.lazy(() =>
|
|
1361
|
+
projectIds: z.lazy(() => UserEventPayloadProjectIds$outboundSchema),
|
|
1361
1362
|
});
|
|
1362
1363
|
export function payloadResourcesToJSON(payloadResources) {
|
|
1363
1364
|
return JSON.stringify(PayloadResources$outboundSchema.parse(payloadResources));
|
|
@@ -1381,20 +1382,20 @@ export function beforeFromJSON(jsonString) {
|
|
|
1381
1382
|
return safeParse(jsonString, (x) => Before$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Before' from JSON`);
|
|
1382
1383
|
}
|
|
1383
1384
|
/** @internal */
|
|
1384
|
-
export const
|
|
1385
|
+
export const UserEventPayload170AfterType$inboundSchema = z.nativeEnum(UserEventPayload170AfterType);
|
|
1385
1386
|
/** @internal */
|
|
1386
|
-
export const
|
|
1387
|
+
export const UserEventPayload170AfterType$outboundSchema = UserEventPayload170AfterType$inboundSchema;
|
|
1387
1388
|
/** @internal */
|
|
1388
|
-
export const
|
|
1389
|
+
export const UserEventPayload170AfterResourcesType$inboundSchema = z.nativeEnum(UserEventPayload170AfterResourcesType);
|
|
1389
1390
|
/** @internal */
|
|
1390
|
-
export const
|
|
1391
|
+
export const UserEventPayload170AfterResourcesType$outboundSchema = UserEventPayload170AfterResourcesType$inboundSchema;
|
|
1391
1392
|
/** @internal */
|
|
1392
1393
|
export const UserEventPayloadItems$inboundSchema = z.object({
|
|
1393
|
-
type:
|
|
1394
|
+
type: UserEventPayload170AfterResourcesType$inboundSchema,
|
|
1394
1395
|
});
|
|
1395
1396
|
/** @internal */
|
|
1396
1397
|
export const UserEventPayloadItems$outboundSchema = z.object({
|
|
1397
|
-
type:
|
|
1398
|
+
type: UserEventPayload170AfterResourcesType$outboundSchema,
|
|
1398
1399
|
});
|
|
1399
1400
|
export function userEventPayloadItemsToJSON(userEventPayloadItems) {
|
|
1400
1401
|
return JSON.stringify(UserEventPayloadItems$outboundSchema.parse(userEventPayloadItems));
|
|
@@ -1403,30 +1404,30 @@ export function userEventPayloadItemsFromJSON(jsonString) {
|
|
|
1403
1404
|
return safeParse(jsonString, (x) => UserEventPayloadItems$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayloadItems' from JSON`);
|
|
1404
1405
|
}
|
|
1405
1406
|
/** @internal */
|
|
1406
|
-
export const
|
|
1407
|
-
type:
|
|
1407
|
+
export const UserEventPayload170ProjectIds$inboundSchema = z.object({
|
|
1408
|
+
type: UserEventPayload170AfterType$inboundSchema,
|
|
1408
1409
|
required: types.boolean(),
|
|
1409
1410
|
items: z.lazy(() => UserEventPayloadItems$inboundSchema),
|
|
1410
1411
|
});
|
|
1411
1412
|
/** @internal */
|
|
1412
|
-
export const
|
|
1413
|
-
type:
|
|
1413
|
+
export const UserEventPayload170ProjectIds$outboundSchema = z.object({
|
|
1414
|
+
type: UserEventPayload170AfterType$outboundSchema,
|
|
1414
1415
|
required: z.boolean(),
|
|
1415
1416
|
items: z.lazy(() => UserEventPayloadItems$outboundSchema),
|
|
1416
1417
|
});
|
|
1417
|
-
export function
|
|
1418
|
-
return JSON.stringify(
|
|
1418
|
+
export function userEventPayload170ProjectIdsToJSON(userEventPayload170ProjectIds) {
|
|
1419
|
+
return JSON.stringify(UserEventPayload170ProjectIds$outboundSchema.parse(userEventPayload170ProjectIds));
|
|
1419
1420
|
}
|
|
1420
|
-
export function
|
|
1421
|
-
return safeParse(jsonString, (x) =>
|
|
1421
|
+
export function userEventPayload170ProjectIdsFromJSON(jsonString) {
|
|
1422
|
+
return safeParse(jsonString, (x) => UserEventPayload170ProjectIds$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload170ProjectIds' from JSON`);
|
|
1422
1423
|
}
|
|
1423
1424
|
/** @internal */
|
|
1424
1425
|
export const UserEventPayloadResources$inboundSchema = z.object({
|
|
1425
|
-
projectIds: z.lazy(() =>
|
|
1426
|
+
projectIds: z.lazy(() => UserEventPayload170ProjectIds$inboundSchema),
|
|
1426
1427
|
});
|
|
1427
1428
|
/** @internal */
|
|
1428
1429
|
export const UserEventPayloadResources$outboundSchema = z.object({
|
|
1429
|
-
projectIds: z.lazy(() =>
|
|
1430
|
+
projectIds: z.lazy(() => UserEventPayload170ProjectIds$outboundSchema),
|
|
1430
1431
|
});
|
|
1431
1432
|
export function userEventPayloadResourcesToJSON(userEventPayloadResources) {
|
|
1432
1433
|
return JSON.stringify(UserEventPayloadResources$outboundSchema.parse(userEventPayloadResources));
|
|
@@ -1450,7 +1451,7 @@ export function afterFromJSON(jsonString) {
|
|
|
1450
1451
|
return safeParse(jsonString, (x) => After$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'After' from JSON`);
|
|
1451
1452
|
}
|
|
1452
1453
|
/** @internal */
|
|
1453
|
-
export const
|
|
1454
|
+
export const OneHundredAndSeventy$inboundSchema = z.object({
|
|
1454
1455
|
appName: types.string(),
|
|
1455
1456
|
appId: types.optional(types.string()),
|
|
1456
1457
|
installationId: types.optional(types.string()),
|
|
@@ -1458,35 +1459,35 @@ export const OneHundredAndSixtyNine$inboundSchema = z.object({
|
|
|
1458
1459
|
after: types.optional(z.lazy(() => After$inboundSchema)),
|
|
1459
1460
|
});
|
|
1460
1461
|
/** @internal */
|
|
1461
|
-
export const
|
|
1462
|
+
export const OneHundredAndSeventy$outboundSchema = z.object({
|
|
1462
1463
|
appName: z.string(),
|
|
1463
1464
|
appId: z.string().optional(),
|
|
1464
1465
|
installationId: z.string().optional(),
|
|
1465
1466
|
before: z.lazy(() => Before$outboundSchema).optional(),
|
|
1466
1467
|
after: z.lazy(() => After$outboundSchema).optional(),
|
|
1467
1468
|
});
|
|
1468
|
-
export function
|
|
1469
|
-
return JSON.stringify(
|
|
1469
|
+
export function oneHundredAndSeventyToJSON(oneHundredAndSeventy) {
|
|
1470
|
+
return JSON.stringify(OneHundredAndSeventy$outboundSchema.parse(oneHundredAndSeventy));
|
|
1470
1471
|
}
|
|
1471
|
-
export function
|
|
1472
|
-
return safeParse(jsonString, (x) =>
|
|
1472
|
+
export function oneHundredAndSeventyFromJSON(jsonString) {
|
|
1473
|
+
return safeParse(jsonString, (x) => OneHundredAndSeventy$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndSeventy' from JSON`);
|
|
1473
1474
|
}
|
|
1474
1475
|
/** @internal */
|
|
1475
|
-
export const
|
|
1476
|
+
export const UserEventPayload169Type$inboundSchema = z.nativeEnum(UserEventPayload169Type);
|
|
1476
1477
|
/** @internal */
|
|
1477
|
-
export const
|
|
1478
|
+
export const UserEventPayload169Type$outboundSchema = UserEventPayload169Type$inboundSchema;
|
|
1478
1479
|
/** @internal */
|
|
1479
|
-
export const
|
|
1480
|
+
export const UserEventPayload169ResourcesType$inboundSchema = z.nativeEnum(UserEventPayload169ResourcesType);
|
|
1480
1481
|
/** @internal */
|
|
1481
|
-
export const
|
|
1482
|
+
export const UserEventPayload169ResourcesType$outboundSchema = UserEventPayload169ResourcesType$inboundSchema;
|
|
1482
1483
|
/** @internal */
|
|
1483
1484
|
export const Items$inboundSchema = z
|
|
1484
1485
|
.object({
|
|
1485
|
-
type:
|
|
1486
|
+
type: UserEventPayload169ResourcesType$inboundSchema,
|
|
1486
1487
|
});
|
|
1487
1488
|
/** @internal */
|
|
1488
1489
|
export const Items$outboundSchema = z.object({
|
|
1489
|
-
type:
|
|
1490
|
+
type: UserEventPayload169ResourcesType$outboundSchema,
|
|
1490
1491
|
});
|
|
1491
1492
|
export function itemsToJSON(items) {
|
|
1492
1493
|
return JSON.stringify(Items$outboundSchema.parse(items));
|
|
@@ -1495,30 +1496,30 @@ export function itemsFromJSON(jsonString) {
|
|
|
1495
1496
|
return safeParse(jsonString, (x) => Items$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Items' from JSON`);
|
|
1496
1497
|
}
|
|
1497
1498
|
/** @internal */
|
|
1498
|
-
export const
|
|
1499
|
-
type:
|
|
1499
|
+
export const PayloadProjectIds$inboundSchema = z.object({
|
|
1500
|
+
type: UserEventPayload169Type$inboundSchema,
|
|
1500
1501
|
required: types.boolean(),
|
|
1501
1502
|
items: z.lazy(() => Items$inboundSchema),
|
|
1502
1503
|
});
|
|
1503
1504
|
/** @internal */
|
|
1504
|
-
export const
|
|
1505
|
-
type:
|
|
1505
|
+
export const PayloadProjectIds$outboundSchema = z.object({
|
|
1506
|
+
type: UserEventPayload169Type$outboundSchema,
|
|
1506
1507
|
required: z.boolean(),
|
|
1507
1508
|
items: z.lazy(() => Items$outboundSchema),
|
|
1508
1509
|
});
|
|
1509
|
-
export function
|
|
1510
|
-
return JSON.stringify(
|
|
1510
|
+
export function payloadProjectIdsToJSON(payloadProjectIds) {
|
|
1511
|
+
return JSON.stringify(PayloadProjectIds$outboundSchema.parse(payloadProjectIds));
|
|
1511
1512
|
}
|
|
1512
|
-
export function
|
|
1513
|
-
return safeParse(jsonString, (x) =>
|
|
1513
|
+
export function payloadProjectIdsFromJSON(jsonString) {
|
|
1514
|
+
return safeParse(jsonString, (x) => PayloadProjectIds$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PayloadProjectIds' from JSON`);
|
|
1514
1515
|
}
|
|
1515
1516
|
/** @internal */
|
|
1516
1517
|
export const Resources$inboundSchema = z.object({
|
|
1517
|
-
projectIds: z.lazy(() =>
|
|
1518
|
+
projectIds: z.lazy(() => PayloadProjectIds$inboundSchema),
|
|
1518
1519
|
});
|
|
1519
1520
|
/** @internal */
|
|
1520
1521
|
export const Resources$outboundSchema = z.object({
|
|
1521
|
-
projectIds: z.lazy(() =>
|
|
1522
|
+
projectIds: z.lazy(() => PayloadProjectIds$outboundSchema),
|
|
1522
1523
|
});
|
|
1523
1524
|
export function resourcesToJSON(resources) {
|
|
1524
1525
|
return JSON.stringify(Resources$outboundSchema.parse(resources));
|
|
@@ -1527,56 +1528,56 @@ export function resourcesFromJSON(jsonString) {
|
|
|
1527
1528
|
return safeParse(jsonString, (x) => Resources$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Resources' from JSON`);
|
|
1528
1529
|
}
|
|
1529
1530
|
/** @internal */
|
|
1530
|
-
export const
|
|
1531
|
+
export const OneHundredAndSixtyNine$inboundSchema = z.object({
|
|
1531
1532
|
appName: types.string(),
|
|
1532
1533
|
appId: types.optional(types.string()),
|
|
1533
1534
|
resources: types.optional(z.lazy(() => Resources$inboundSchema)),
|
|
1534
1535
|
});
|
|
1535
1536
|
/** @internal */
|
|
1536
|
-
export const
|
|
1537
|
+
export const OneHundredAndSixtyNine$outboundSchema = z.object({
|
|
1537
1538
|
appName: z.string(),
|
|
1538
1539
|
appId: z.string().optional(),
|
|
1539
1540
|
resources: z.lazy(() => Resources$outboundSchema).optional(),
|
|
1540
1541
|
});
|
|
1541
|
-
export function
|
|
1542
|
-
return JSON.stringify(
|
|
1542
|
+
export function oneHundredAndSixtyNineToJSON(oneHundredAndSixtyNine) {
|
|
1543
|
+
return JSON.stringify(OneHundredAndSixtyNine$outboundSchema.parse(oneHundredAndSixtyNine));
|
|
1543
1544
|
}
|
|
1544
|
-
export function
|
|
1545
|
-
return safeParse(jsonString, (x) =>
|
|
1545
|
+
export function oneHundredAndSixtyNineFromJSON(jsonString) {
|
|
1546
|
+
return safeParse(jsonString, (x) => OneHundredAndSixtyNine$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndSixtyNine' from JSON`);
|
|
1546
1547
|
}
|
|
1547
1548
|
/** @internal */
|
|
1548
|
-
export const
|
|
1549
|
+
export const OneHundredAndSixtyEight$inboundSchema = z.object({
|
|
1549
1550
|
appName: types.string(),
|
|
1550
1551
|
appId: types.optional(types.string()),
|
|
1551
1552
|
secretLastFourChars: types.optional(types.string()),
|
|
1552
1553
|
});
|
|
1553
1554
|
/** @internal */
|
|
1554
|
-
export const
|
|
1555
|
+
export const OneHundredAndSixtyEight$outboundSchema = z.object({
|
|
1555
1556
|
appName: z.string(),
|
|
1556
1557
|
appId: z.string().optional(),
|
|
1557
1558
|
secretLastFourChars: z.string().optional(),
|
|
1558
1559
|
});
|
|
1559
|
-
export function
|
|
1560
|
-
return JSON.stringify(
|
|
1560
|
+
export function oneHundredAndSixtyEightToJSON(oneHundredAndSixtyEight) {
|
|
1561
|
+
return JSON.stringify(OneHundredAndSixtyEight$outboundSchema.parse(oneHundredAndSixtyEight));
|
|
1561
1562
|
}
|
|
1562
|
-
export function
|
|
1563
|
-
return safeParse(jsonString, (x) =>
|
|
1563
|
+
export function oneHundredAndSixtyEightFromJSON(jsonString) {
|
|
1564
|
+
return safeParse(jsonString, (x) => OneHundredAndSixtyEight$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndSixtyEight' from JSON`);
|
|
1564
1565
|
}
|
|
1565
1566
|
/** @internal */
|
|
1566
|
-
export const
|
|
1567
|
+
export const OneHundredAndSixtySeven$inboundSchema = z.object({
|
|
1567
1568
|
appName: types.string(),
|
|
1568
1569
|
appId: types.optional(types.string()),
|
|
1569
1570
|
});
|
|
1570
1571
|
/** @internal */
|
|
1571
|
-
export const
|
|
1572
|
+
export const OneHundredAndSixtySeven$outboundSchema = z.object({
|
|
1572
1573
|
appName: z.string(),
|
|
1573
1574
|
appId: z.string().optional(),
|
|
1574
1575
|
});
|
|
1575
|
-
export function
|
|
1576
|
-
return JSON.stringify(
|
|
1576
|
+
export function oneHundredAndSixtySevenToJSON(oneHundredAndSixtySeven) {
|
|
1577
|
+
return JSON.stringify(OneHundredAndSixtySeven$outboundSchema.parse(oneHundredAndSixtySeven));
|
|
1577
1578
|
}
|
|
1578
|
-
export function
|
|
1579
|
-
return safeParse(jsonString, (x) =>
|
|
1579
|
+
export function oneHundredAndSixtySevenFromJSON(jsonString) {
|
|
1580
|
+
return safeParse(jsonString, (x) => OneHundredAndSixtySeven$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndSixtySeven' from JSON`);
|
|
1580
1581
|
}
|
|
1581
1582
|
/** @internal */
|
|
1582
1583
|
export const NextScopes$inboundSchema = z
|
|
@@ -1607,7 +1608,7 @@ export function nextAcceptedPermissionSetsFromJSON(jsonString) {
|
|
|
1607
1608
|
return safeParse(jsonString, (x) => NextAcceptedPermissionSets$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'NextAcceptedPermissionSets' from JSON`);
|
|
1608
1609
|
}
|
|
1609
1610
|
/** @internal */
|
|
1610
|
-
export const
|
|
1611
|
+
export const OneHundredAndSixtySix$inboundSchema = z.object({
|
|
1611
1612
|
appName: types.string(),
|
|
1612
1613
|
appId: types.optional(types.string()),
|
|
1613
1614
|
nextScopes: z.array(NextScopes$inboundSchema),
|
|
@@ -1615,18 +1616,18 @@ export const OneHundredAndSixtyFive$inboundSchema = z.object({
|
|
|
1615
1616
|
nextAcceptedPermissionSets: types.optional(z.lazy(() => NextAcceptedPermissionSets$inboundSchema)),
|
|
1616
1617
|
});
|
|
1617
1618
|
/** @internal */
|
|
1618
|
-
export const
|
|
1619
|
+
export const OneHundredAndSixtySix$outboundSchema = z.object({
|
|
1619
1620
|
appName: z.string(),
|
|
1620
1621
|
appId: z.string().optional(),
|
|
1621
1622
|
nextScopes: z.array(NextScopes$outboundSchema),
|
|
1622
1623
|
nextPermissions: z.array(NextPermissions$outboundSchema).optional(),
|
|
1623
1624
|
nextAcceptedPermissionSets: z.lazy(() => NextAcceptedPermissionSets$outboundSchema).optional(),
|
|
1624
1625
|
});
|
|
1625
|
-
export function
|
|
1626
|
-
return JSON.stringify(
|
|
1626
|
+
export function oneHundredAndSixtySixToJSON(oneHundredAndSixtySix) {
|
|
1627
|
+
return JSON.stringify(OneHundredAndSixtySix$outboundSchema.parse(oneHundredAndSixtySix));
|
|
1627
1628
|
}
|
|
1628
|
-
export function
|
|
1629
|
-
return safeParse(jsonString, (x) =>
|
|
1629
|
+
export function oneHundredAndSixtySixFromJSON(jsonString) {
|
|
1630
|
+
return safeParse(jsonString, (x) => OneHundredAndSixtySix$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndSixtySix' from JSON`);
|
|
1630
1631
|
}
|
|
1631
1632
|
/** @internal */
|
|
1632
1633
|
export const PayloadScopes$inboundSchema = z.nativeEnum(PayloadScopes);
|
|
@@ -1656,7 +1657,7 @@ export function acceptedPermissionSetsFromJSON(jsonString) {
|
|
|
1656
1657
|
return safeParse(jsonString, (x) => AcceptedPermissionSets$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'AcceptedPermissionSets' from JSON`);
|
|
1657
1658
|
}
|
|
1658
1659
|
/** @internal */
|
|
1659
|
-
export const
|
|
1660
|
+
export const OneHundredAndSixtyFive$inboundSchema = z.object({
|
|
1660
1661
|
appName: types.string(),
|
|
1661
1662
|
appId: types.optional(types.string()),
|
|
1662
1663
|
scopes: z.array(PayloadScopes$inboundSchema),
|
|
@@ -1664,7 +1665,7 @@ export const OneHundredAndSixtyFour$inboundSchema = z.object({
|
|
|
1664
1665
|
acceptedPermissionSets: types.optional(z.lazy(() => AcceptedPermissionSets$inboundSchema)),
|
|
1665
1666
|
});
|
|
1666
1667
|
/** @internal */
|
|
1667
|
-
export const
|
|
1668
|
+
export const OneHundredAndSixtyFive$outboundSchema = z.object({
|
|
1668
1669
|
appName: z.string(),
|
|
1669
1670
|
appId: z.string().optional(),
|
|
1670
1671
|
scopes: z.array(PayloadScopes$outboundSchema),
|
|
@@ -1672,45 +1673,45 @@ export const OneHundredAndSixtyFour$outboundSchema = z.object({
|
|
|
1672
1673
|
acceptedPermissionSets: z.lazy(() => AcceptedPermissionSets$outboundSchema)
|
|
1673
1674
|
.optional(),
|
|
1674
1675
|
});
|
|
1675
|
-
export function
|
|
1676
|
-
return JSON.stringify(
|
|
1676
|
+
export function oneHundredAndSixtyFiveToJSON(oneHundredAndSixtyFive) {
|
|
1677
|
+
return JSON.stringify(OneHundredAndSixtyFive$outboundSchema.parse(oneHundredAndSixtyFive));
|
|
1677
1678
|
}
|
|
1678
|
-
export function
|
|
1679
|
-
return safeParse(jsonString, (x) =>
|
|
1679
|
+
export function oneHundredAndSixtyFiveFromJSON(jsonString) {
|
|
1680
|
+
return safeParse(jsonString, (x) => OneHundredAndSixtyFive$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndSixtyFive' from JSON`);
|
|
1680
1681
|
}
|
|
1681
1682
|
/** @internal */
|
|
1682
|
-
export const
|
|
1683
|
+
export const OneHundredAndSixtyFour$inboundSchema = z.object({
|
|
1683
1684
|
oldName: types.string(),
|
|
1684
1685
|
newName: types.string(),
|
|
1685
1686
|
});
|
|
1686
1687
|
/** @internal */
|
|
1687
|
-
export const
|
|
1688
|
+
export const OneHundredAndSixtyFour$outboundSchema = z.object({
|
|
1688
1689
|
oldName: z.string(),
|
|
1689
1690
|
newName: z.string(),
|
|
1690
1691
|
});
|
|
1691
|
-
export function
|
|
1692
|
-
return JSON.stringify(
|
|
1692
|
+
export function oneHundredAndSixtyFourToJSON(oneHundredAndSixtyFour) {
|
|
1693
|
+
return JSON.stringify(OneHundredAndSixtyFour$outboundSchema.parse(oneHundredAndSixtyFour));
|
|
1693
1694
|
}
|
|
1694
|
-
export function
|
|
1695
|
-
return safeParse(jsonString, (x) =>
|
|
1695
|
+
export function oneHundredAndSixtyFourFromJSON(jsonString) {
|
|
1696
|
+
return safeParse(jsonString, (x) => OneHundredAndSixtyFour$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndSixtyFour' from JSON`);
|
|
1696
1697
|
}
|
|
1697
1698
|
/** @internal */
|
|
1698
1699
|
export const Tier$inboundSchema = z.nativeEnum(Tier);
|
|
1699
1700
|
/** @internal */
|
|
1700
1701
|
export const Tier$outboundSchema = Tier$inboundSchema;
|
|
1701
1702
|
/** @internal */
|
|
1702
|
-
export const
|
|
1703
|
+
export const OneHundredAndSixtyThree$inboundSchema = z.object({
|
|
1703
1704
|
tier: Tier$inboundSchema,
|
|
1704
1705
|
});
|
|
1705
1706
|
/** @internal */
|
|
1706
|
-
export const
|
|
1707
|
+
export const OneHundredAndSixtyThree$outboundSchema = z.object({
|
|
1707
1708
|
tier: Tier$outboundSchema,
|
|
1708
1709
|
});
|
|
1709
|
-
export function
|
|
1710
|
-
return JSON.stringify(
|
|
1710
|
+
export function oneHundredAndSixtyThreeToJSON(oneHundredAndSixtyThree) {
|
|
1711
|
+
return JSON.stringify(OneHundredAndSixtyThree$outboundSchema.parse(oneHundredAndSixtyThree));
|
|
1711
1712
|
}
|
|
1712
|
-
export function
|
|
1713
|
-
return safeParse(jsonString, (x) =>
|
|
1713
|
+
export function oneHundredAndSixtyThreeFromJSON(jsonString) {
|
|
1714
|
+
return safeParse(jsonString, (x) => OneHundredAndSixtyThree$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndSixtyThree' from JSON`);
|
|
1714
1715
|
}
|
|
1715
1716
|
/** @internal */
|
|
1716
1717
|
export const ProjectWebAnalytics$inboundSchema = z.object({
|
|
@@ -1757,25 +1758,25 @@ export function prevProjectWebAnalyticsFromJSON(jsonString) {
|
|
|
1757
1758
|
return safeParse(jsonString, (x) => PrevProjectWebAnalytics$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PrevProjectWebAnalytics' from JSON`);
|
|
1758
1759
|
}
|
|
1759
1760
|
/** @internal */
|
|
1760
|
-
export const
|
|
1761
|
+
export const OneHundredAndSixtyTwo$inboundSchema = z.object({
|
|
1761
1762
|
projectId: types.string(),
|
|
1762
1763
|
projectName: types.string(),
|
|
1763
1764
|
projectWebAnalytics: types.optional(z.lazy(() => ProjectWebAnalytics$inboundSchema)),
|
|
1764
1765
|
prevProjectWebAnalytics: z.nullable(z.lazy(() => PrevProjectWebAnalytics$inboundSchema)).optional(),
|
|
1765
1766
|
});
|
|
1766
1767
|
/** @internal */
|
|
1767
|
-
export const
|
|
1768
|
+
export const OneHundredAndSixtyTwo$outboundSchema = z.object({
|
|
1768
1769
|
projectId: z.string(),
|
|
1769
1770
|
projectName: z.string(),
|
|
1770
1771
|
projectWebAnalytics: z.lazy(() => ProjectWebAnalytics$outboundSchema)
|
|
1771
1772
|
.optional(),
|
|
1772
1773
|
prevProjectWebAnalytics: z.nullable(z.lazy(() => PrevProjectWebAnalytics$outboundSchema)).optional(),
|
|
1773
1774
|
});
|
|
1774
|
-
export function
|
|
1775
|
-
return JSON.stringify(
|
|
1775
|
+
export function oneHundredAndSixtyTwoToJSON(oneHundredAndSixtyTwo) {
|
|
1776
|
+
return JSON.stringify(OneHundredAndSixtyTwo$outboundSchema.parse(oneHundredAndSixtyTwo));
|
|
1776
1777
|
}
|
|
1777
|
-
export function
|
|
1778
|
-
return safeParse(jsonString, (x) =>
|
|
1778
|
+
export function oneHundredAndSixtyTwoFromJSON(jsonString) {
|
|
1779
|
+
return safeParse(jsonString, (x) => OneHundredAndSixtyTwo$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndSixtyTwo' from JSON`);
|
|
1779
1780
|
}
|
|
1780
1781
|
/** @internal */
|
|
1781
1782
|
export const Microfrontends3$inboundSchema = z.object({
|
|
@@ -1868,7 +1869,7 @@ export function microfrontendsFromJSON(jsonString) {
|
|
|
1868
1869
|
return safeParse(jsonString, (x) => Microfrontends$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Microfrontends' from JSON`);
|
|
1869
1870
|
}
|
|
1870
1871
|
/** @internal */
|
|
1871
|
-
export const
|
|
1872
|
+
export const UserEventPayload161Project$inboundSchema = z.object({
|
|
1872
1873
|
id: types.string(),
|
|
1873
1874
|
name: types.string(),
|
|
1874
1875
|
microfrontends: types.optional(smartUnion([
|
|
@@ -1878,7 +1879,7 @@ export const UserEventPayload160Project$inboundSchema = z.object({
|
|
|
1878
1879
|
])),
|
|
1879
1880
|
});
|
|
1880
1881
|
/** @internal */
|
|
1881
|
-
export const
|
|
1882
|
+
export const UserEventPayload161Project$outboundSchema = z.object({
|
|
1882
1883
|
id: z.string(),
|
|
1883
1884
|
name: z.string(),
|
|
1884
1885
|
microfrontends: smartUnion([
|
|
@@ -1887,11 +1888,11 @@ export const UserEventPayload160Project$outboundSchema = z.object({
|
|
|
1887
1888
|
z.lazy(() => Microfrontends3$outboundSchema),
|
|
1888
1889
|
]).optional(),
|
|
1889
1890
|
});
|
|
1890
|
-
export function
|
|
1891
|
-
return JSON.stringify(
|
|
1891
|
+
export function userEventPayload161ProjectToJSON(userEventPayload161Project) {
|
|
1892
|
+
return JSON.stringify(UserEventPayload161Project$outboundSchema.parse(userEventPayload161Project));
|
|
1892
1893
|
}
|
|
1893
|
-
export function
|
|
1894
|
-
return safeParse(jsonString, (x) =>
|
|
1894
|
+
export function userEventPayload161ProjectFromJSON(jsonString) {
|
|
1895
|
+
return safeParse(jsonString, (x) => UserEventPayload161Project$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload161Project' from JSON`);
|
|
1895
1896
|
}
|
|
1896
1897
|
/** @internal */
|
|
1897
1898
|
export const UserEventMicrofrontends3$inboundSchema = z.object({
|
|
@@ -1984,7 +1985,7 @@ export function payloadMicrofrontendsFromJSON(jsonString) {
|
|
|
1984
1985
|
return safeParse(jsonString, (x) => PayloadMicrofrontends$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PayloadMicrofrontends' from JSON`);
|
|
1985
1986
|
}
|
|
1986
1987
|
/** @internal */
|
|
1987
|
-
export const
|
|
1988
|
+
export const UserEventPayload161PrevProject$inboundSchema = z.object({
|
|
1988
1989
|
microfrontends: types.optional(smartUnion([
|
|
1989
1990
|
z.lazy(() => UserEventMicrofrontends1$inboundSchema),
|
|
1990
1991
|
z.lazy(() => UserEventMicrofrontends2$inboundSchema),
|
|
@@ -1992,26 +1993,26 @@ export const UserEventPayload160PrevProject$inboundSchema = z.object({
|
|
|
1992
1993
|
])),
|
|
1993
1994
|
});
|
|
1994
1995
|
/** @internal */
|
|
1995
|
-
export const
|
|
1996
|
+
export const UserEventPayload161PrevProject$outboundSchema = z.object({
|
|
1996
1997
|
microfrontends: smartUnion([
|
|
1997
1998
|
z.lazy(() => UserEventMicrofrontends1$outboundSchema),
|
|
1998
1999
|
z.lazy(() => UserEventMicrofrontends2$outboundSchema),
|
|
1999
2000
|
z.lazy(() => UserEventMicrofrontends3$outboundSchema),
|
|
2000
2001
|
]).optional(),
|
|
2001
2002
|
});
|
|
2002
|
-
export function
|
|
2003
|
-
return JSON.stringify(
|
|
2003
|
+
export function userEventPayload161PrevProjectToJSON(userEventPayload161PrevProject) {
|
|
2004
|
+
return JSON.stringify(UserEventPayload161PrevProject$outboundSchema.parse(userEventPayload161PrevProject));
|
|
2004
2005
|
}
|
|
2005
|
-
export function
|
|
2006
|
-
return safeParse(jsonString, (x) =>
|
|
2006
|
+
export function userEventPayload161PrevProjectFromJSON(jsonString) {
|
|
2007
|
+
return safeParse(jsonString, (x) => UserEventPayload161PrevProject$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload161PrevProject' from JSON`);
|
|
2007
2008
|
}
|
|
2008
2009
|
/** @internal */
|
|
2009
2010
|
export const PayloadPrev$inboundSchema = z.object({
|
|
2010
|
-
project: z.lazy(() =>
|
|
2011
|
+
project: z.lazy(() => UserEventPayload161PrevProject$inboundSchema),
|
|
2011
2012
|
});
|
|
2012
2013
|
/** @internal */
|
|
2013
2014
|
export const PayloadPrev$outboundSchema = z.object({
|
|
2014
|
-
project: z.lazy(() =>
|
|
2015
|
+
project: z.lazy(() => UserEventPayload161PrevProject$outboundSchema),
|
|
2015
2016
|
});
|
|
2016
2017
|
export function payloadPrevToJSON(payloadPrev) {
|
|
2017
2018
|
return JSON.stringify(PayloadPrev$outboundSchema.parse(payloadPrev));
|
|
@@ -2038,38 +2039,38 @@ export function payloadGroupFromJSON(jsonString) {
|
|
|
2038
2039
|
return safeParse(jsonString, (x) => PayloadGroup$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PayloadGroup' from JSON`);
|
|
2039
2040
|
}
|
|
2040
2041
|
/** @internal */
|
|
2041
|
-
export const
|
|
2042
|
-
project: z.lazy(() =>
|
|
2042
|
+
export const OneHundredAndSixtyOne$inboundSchema = z.object({
|
|
2043
|
+
project: z.lazy(() => UserEventPayload161Project$inboundSchema),
|
|
2043
2044
|
prev: z.lazy(() => PayloadPrev$inboundSchema),
|
|
2044
2045
|
group: z.lazy(() => PayloadGroup$inboundSchema),
|
|
2045
2046
|
});
|
|
2046
2047
|
/** @internal */
|
|
2047
|
-
export const
|
|
2048
|
-
project: z.lazy(() =>
|
|
2048
|
+
export const OneHundredAndSixtyOne$outboundSchema = z.object({
|
|
2049
|
+
project: z.lazy(() => UserEventPayload161Project$outboundSchema),
|
|
2049
2050
|
prev: z.lazy(() => PayloadPrev$outboundSchema),
|
|
2050
2051
|
group: z.lazy(() => PayloadGroup$outboundSchema),
|
|
2051
2052
|
});
|
|
2052
|
-
export function
|
|
2053
|
-
return JSON.stringify(
|
|
2053
|
+
export function oneHundredAndSixtyOneToJSON(oneHundredAndSixtyOne) {
|
|
2054
|
+
return JSON.stringify(OneHundredAndSixtyOne$outboundSchema.parse(oneHundredAndSixtyOne));
|
|
2054
2055
|
}
|
|
2055
|
-
export function
|
|
2056
|
-
return safeParse(jsonString, (x) =>
|
|
2056
|
+
export function oneHundredAndSixtyOneFromJSON(jsonString) {
|
|
2057
|
+
return safeParse(jsonString, (x) => OneHundredAndSixtyOne$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndSixtyOne' from JSON`);
|
|
2057
2058
|
}
|
|
2058
2059
|
/** @internal */
|
|
2059
|
-
export const
|
|
2060
|
+
export const UserEventPayload160Project$inboundSchema = z.object({
|
|
2060
2061
|
id: types.string(),
|
|
2061
2062
|
name: types.string(),
|
|
2062
2063
|
});
|
|
2063
2064
|
/** @internal */
|
|
2064
|
-
export const
|
|
2065
|
+
export const UserEventPayload160Project$outboundSchema = z.object({
|
|
2065
2066
|
id: z.string(),
|
|
2066
2067
|
name: z.string(),
|
|
2067
2068
|
});
|
|
2068
|
-
export function
|
|
2069
|
-
return JSON.stringify(
|
|
2069
|
+
export function userEventPayload160ProjectToJSON(userEventPayload160Project) {
|
|
2070
|
+
return JSON.stringify(UserEventPayload160Project$outboundSchema.parse(userEventPayload160Project));
|
|
2070
2071
|
}
|
|
2071
|
-
export function
|
|
2072
|
-
return safeParse(jsonString, (x) =>
|
|
2072
|
+
export function userEventPayload160ProjectFromJSON(jsonString) {
|
|
2073
|
+
return safeParse(jsonString, (x) => UserEventPayload160Project$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload160Project' from JSON`);
|
|
2073
2074
|
}
|
|
2074
2075
|
/** @internal */
|
|
2075
2076
|
export const Group$inboundSchema = z
|
|
@@ -2091,20 +2092,20 @@ export function groupFromJSON(jsonString) {
|
|
|
2091
2092
|
return safeParse(jsonString, (x) => Group$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Group' from JSON`);
|
|
2092
2093
|
}
|
|
2093
2094
|
/** @internal */
|
|
2094
|
-
export const
|
|
2095
|
-
project: z.lazy(() =>
|
|
2095
|
+
export const OneHundredAndSixty$inboundSchema = z.object({
|
|
2096
|
+
project: z.lazy(() => UserEventPayload160Project$inboundSchema),
|
|
2096
2097
|
group: z.lazy(() => Group$inboundSchema),
|
|
2097
2098
|
});
|
|
2098
2099
|
/** @internal */
|
|
2099
|
-
export const
|
|
2100
|
-
project: z.lazy(() =>
|
|
2100
|
+
export const OneHundredAndSixty$outboundSchema = z.object({
|
|
2101
|
+
project: z.lazy(() => UserEventPayload160Project$outboundSchema),
|
|
2101
2102
|
group: z.lazy(() => Group$outboundSchema),
|
|
2102
2103
|
});
|
|
2103
|
-
export function
|
|
2104
|
-
return JSON.stringify(
|
|
2104
|
+
export function oneHundredAndSixtyToJSON(oneHundredAndSixty) {
|
|
2105
|
+
return JSON.stringify(OneHundredAndSixty$outboundSchema.parse(oneHundredAndSixty));
|
|
2105
2106
|
}
|
|
2106
|
-
export function
|
|
2107
|
-
return safeParse(jsonString, (x) =>
|
|
2107
|
+
export function oneHundredAndSixtyFromJSON(jsonString) {
|
|
2108
|
+
return safeParse(jsonString, (x) => OneHundredAndSixty$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndSixty' from JSON`);
|
|
2108
2109
|
}
|
|
2109
2110
|
/** @internal */
|
|
2110
2111
|
export const Prev$inboundSchema = z
|
|
@@ -2126,7 +2127,7 @@ export function prevFromJSON(jsonString) {
|
|
|
2126
2127
|
return safeParse(jsonString, (x) => Prev$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Prev' from JSON`);
|
|
2127
2128
|
}
|
|
2128
2129
|
/** @internal */
|
|
2129
|
-
export const
|
|
2130
|
+
export const OneHundredAndFiftyNine$inboundSchema = z.object({
|
|
2130
2131
|
id: types.string(),
|
|
2131
2132
|
slug: types.optional(types.string()),
|
|
2132
2133
|
name: types.optional(types.string()),
|
|
@@ -2134,31 +2135,49 @@ export const OneHundredAndFiftyEight$inboundSchema = z.object({
|
|
|
2134
2135
|
prev: z.lazy(() => Prev$inboundSchema),
|
|
2135
2136
|
});
|
|
2136
2137
|
/** @internal */
|
|
2137
|
-
export const
|
|
2138
|
+
export const OneHundredAndFiftyNine$outboundSchema = z.object({
|
|
2138
2139
|
id: z.string(),
|
|
2139
2140
|
slug: z.string().optional(),
|
|
2140
2141
|
name: z.string().optional(),
|
|
2141
2142
|
fallbackEnvironment: z.string().optional(),
|
|
2142
2143
|
prev: z.lazy(() => Prev$outboundSchema),
|
|
2143
2144
|
});
|
|
2144
|
-
export function
|
|
2145
|
-
return JSON.stringify(
|
|
2145
|
+
export function oneHundredAndFiftyNineToJSON(oneHundredAndFiftyNine) {
|
|
2146
|
+
return JSON.stringify(OneHundredAndFiftyNine$outboundSchema.parse(oneHundredAndFiftyNine));
|
|
2146
2147
|
}
|
|
2147
|
-
export function
|
|
2148
|
-
return safeParse(jsonString, (x) =>
|
|
2148
|
+
export function oneHundredAndFiftyNineFromJSON(jsonString) {
|
|
2149
|
+
return safeParse(jsonString, (x) => OneHundredAndFiftyNine$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndFiftyNine' from JSON`);
|
|
2149
2150
|
}
|
|
2150
2151
|
/** @internal */
|
|
2151
|
-
export const
|
|
2152
|
+
export const OneHundredAndFiftyEight$inboundSchema = z.object({
|
|
2152
2153
|
id: types.string(),
|
|
2153
2154
|
slug: types.string(),
|
|
2154
2155
|
name: types.string(),
|
|
2155
2156
|
});
|
|
2156
2157
|
/** @internal */
|
|
2157
|
-
export const
|
|
2158
|
+
export const OneHundredAndFiftyEight$outboundSchema = z.object({
|
|
2158
2159
|
id: z.string(),
|
|
2159
2160
|
slug: z.string(),
|
|
2160
2161
|
name: z.string(),
|
|
2161
2162
|
});
|
|
2163
|
+
export function oneHundredAndFiftyEightToJSON(oneHundredAndFiftyEight) {
|
|
2164
|
+
return JSON.stringify(OneHundredAndFiftyEight$outboundSchema.parse(oneHundredAndFiftyEight));
|
|
2165
|
+
}
|
|
2166
|
+
export function oneHundredAndFiftyEightFromJSON(jsonString) {
|
|
2167
|
+
return safeParse(jsonString, (x) => OneHundredAndFiftyEight$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndFiftyEight' from JSON`);
|
|
2168
|
+
}
|
|
2169
|
+
/** @internal */
|
|
2170
|
+
export const UserEventPayload157Action$inboundSchema = z.nativeEnum(UserEventPayload157Action);
|
|
2171
|
+
/** @internal */
|
|
2172
|
+
export const UserEventPayload157Action$outboundSchema = UserEventPayload157Action$inboundSchema;
|
|
2173
|
+
/** @internal */
|
|
2174
|
+
export const OneHundredAndFiftySeven$inboundSchema = z.object({
|
|
2175
|
+
action: UserEventPayload157Action$inboundSchema,
|
|
2176
|
+
});
|
|
2177
|
+
/** @internal */
|
|
2178
|
+
export const OneHundredAndFiftySeven$outboundSchema = z.object({
|
|
2179
|
+
action: UserEventPayload157Action$outboundSchema,
|
|
2180
|
+
});
|
|
2162
2181
|
export function oneHundredAndFiftySevenToJSON(oneHundredAndFiftySeven) {
|
|
2163
2182
|
return JSON.stringify(OneHundredAndFiftySeven$outboundSchema.parse(oneHundredAndFiftySeven));
|
|
2164
2183
|
}
|
|
@@ -2166,16 +2185,16 @@ export function oneHundredAndFiftySevenFromJSON(jsonString) {
|
|
|
2166
2185
|
return safeParse(jsonString, (x) => OneHundredAndFiftySeven$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndFiftySeven' from JSON`);
|
|
2167
2186
|
}
|
|
2168
2187
|
/** @internal */
|
|
2169
|
-
export const UserEventPayload156Action$inboundSchema = z.nativeEnum(UserEventPayload156Action);
|
|
2170
|
-
/** @internal */
|
|
2171
|
-
export const UserEventPayload156Action$outboundSchema = UserEventPayload156Action$inboundSchema;
|
|
2172
|
-
/** @internal */
|
|
2173
2188
|
export const OneHundredAndFiftySix$inboundSchema = z.object({
|
|
2174
|
-
|
|
2189
|
+
edgeConfigId: types.string(),
|
|
2190
|
+
edgeConfigSlug: types.string(),
|
|
2191
|
+
edgeConfigTokenIds: z.array(types.string()),
|
|
2175
2192
|
});
|
|
2176
2193
|
/** @internal */
|
|
2177
2194
|
export const OneHundredAndFiftySix$outboundSchema = z.object({
|
|
2178
|
-
|
|
2195
|
+
edgeConfigId: z.string(),
|
|
2196
|
+
edgeConfigSlug: z.string(),
|
|
2197
|
+
edgeConfigTokenIds: z.array(z.string()),
|
|
2179
2198
|
});
|
|
2180
2199
|
export function oneHundredAndFiftySixToJSON(oneHundredAndFiftySix) {
|
|
2181
2200
|
return JSON.stringify(OneHundredAndFiftySix$outboundSchema.parse(oneHundredAndFiftySix));
|
|
@@ -2187,13 +2206,15 @@ export function oneHundredAndFiftySixFromJSON(jsonString) {
|
|
|
2187
2206
|
export const OneHundredAndFiftyFive$inboundSchema = z.object({
|
|
2188
2207
|
edgeConfigId: types.string(),
|
|
2189
2208
|
edgeConfigSlug: types.string(),
|
|
2190
|
-
|
|
2209
|
+
edgeConfigTokenId: types.string(),
|
|
2210
|
+
label: types.string(),
|
|
2191
2211
|
});
|
|
2192
2212
|
/** @internal */
|
|
2193
2213
|
export const OneHundredAndFiftyFive$outboundSchema = z.object({
|
|
2194
2214
|
edgeConfigId: z.string(),
|
|
2195
2215
|
edgeConfigSlug: z.string(),
|
|
2196
|
-
|
|
2216
|
+
edgeConfigTokenId: z.string(),
|
|
2217
|
+
label: z.string(),
|
|
2197
2218
|
});
|
|
2198
2219
|
export function oneHundredAndFiftyFiveToJSON(oneHundredAndFiftyFive) {
|
|
2199
2220
|
return JSON.stringify(OneHundredAndFiftyFive$outboundSchema.parse(oneHundredAndFiftyFive));
|
|
@@ -2205,15 +2226,13 @@ export function oneHundredAndFiftyFiveFromJSON(jsonString) {
|
|
|
2205
2226
|
export const OneHundredAndFiftyFour$inboundSchema = z.object({
|
|
2206
2227
|
edgeConfigId: types.string(),
|
|
2207
2228
|
edgeConfigSlug: types.string(),
|
|
2208
|
-
|
|
2209
|
-
label: types.string(),
|
|
2229
|
+
edgeConfigDigest: types.string(),
|
|
2210
2230
|
});
|
|
2211
2231
|
/** @internal */
|
|
2212
2232
|
export const OneHundredAndFiftyFour$outboundSchema = z.object({
|
|
2213
2233
|
edgeConfigId: z.string(),
|
|
2214
2234
|
edgeConfigSlug: z.string(),
|
|
2215
|
-
|
|
2216
|
-
label: z.string(),
|
|
2235
|
+
edgeConfigDigest: z.string(),
|
|
2217
2236
|
});
|
|
2218
2237
|
export function oneHundredAndFiftyFourToJSON(oneHundredAndFiftyFour) {
|
|
2219
2238
|
return JSON.stringify(OneHundredAndFiftyFour$outboundSchema.parse(oneHundredAndFiftyFour));
|
|
@@ -2223,15 +2242,13 @@ export function oneHundredAndFiftyFourFromJSON(jsonString) {
|
|
|
2223
2242
|
}
|
|
2224
2243
|
/** @internal */
|
|
2225
2244
|
export const OneHundredAndFiftyThree$inboundSchema = z.object({
|
|
2226
|
-
|
|
2227
|
-
|
|
2228
|
-
edgeConfigDigest: types.string(),
|
|
2245
|
+
projectName: types.string(),
|
|
2246
|
+
srcImages: z.array(types.string()),
|
|
2229
2247
|
});
|
|
2230
2248
|
/** @internal */
|
|
2231
2249
|
export const OneHundredAndFiftyThree$outboundSchema = z.object({
|
|
2232
|
-
|
|
2233
|
-
|
|
2234
|
-
edgeConfigDigest: z.string(),
|
|
2250
|
+
projectName: z.string(),
|
|
2251
|
+
srcImages: z.array(z.string()),
|
|
2235
2252
|
});
|
|
2236
2253
|
export function oneHundredAndFiftyThreeToJSON(oneHundredAndFiftyThree) {
|
|
2237
2254
|
return JSON.stringify(OneHundredAndFiftyThree$outboundSchema.parse(oneHundredAndFiftyThree));
|
|
@@ -2242,12 +2259,14 @@ export function oneHundredAndFiftyThreeFromJSON(jsonString) {
|
|
|
2242
2259
|
/** @internal */
|
|
2243
2260
|
export const OneHundredAndFiftyTwo$inboundSchema = z.object({
|
|
2244
2261
|
projectName: types.string(),
|
|
2245
|
-
|
|
2262
|
+
tags: z.array(types.string()),
|
|
2263
|
+
target: types.optional(types.string()),
|
|
2246
2264
|
});
|
|
2247
2265
|
/** @internal */
|
|
2248
2266
|
export const OneHundredAndFiftyTwo$outboundSchema = z.object({
|
|
2249
2267
|
projectName: z.string(),
|
|
2250
|
-
|
|
2268
|
+
tags: z.array(z.string()),
|
|
2269
|
+
target: z.string().optional(),
|
|
2251
2270
|
});
|
|
2252
2271
|
export function oneHundredAndFiftyTwoToJSON(oneHundredAndFiftyTwo) {
|
|
2253
2272
|
return JSON.stringify(OneHundredAndFiftyTwo$outboundSchema.parse(oneHundredAndFiftyTwo));
|
|
@@ -2256,90 +2275,72 @@ export function oneHundredAndFiftyTwoFromJSON(jsonString) {
|
|
|
2256
2275
|
return safeParse(jsonString, (x) => OneHundredAndFiftyTwo$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndFiftyTwo' from JSON`);
|
|
2257
2276
|
}
|
|
2258
2277
|
/** @internal */
|
|
2259
|
-
export const
|
|
2260
|
-
projectName: types.string(),
|
|
2261
|
-
tags: z.array(types.string()),
|
|
2262
|
-
target: types.optional(types.string()),
|
|
2263
|
-
});
|
|
2264
|
-
/** @internal */
|
|
2265
|
-
export const OneHundredAndFiftyOne$outboundSchema = z.object({
|
|
2266
|
-
projectName: z.string(),
|
|
2267
|
-
tags: z.array(z.string()),
|
|
2268
|
-
target: z.string().optional(),
|
|
2269
|
-
});
|
|
2270
|
-
export function oneHundredAndFiftyOneToJSON(oneHundredAndFiftyOne) {
|
|
2271
|
-
return JSON.stringify(OneHundredAndFiftyOne$outboundSchema.parse(oneHundredAndFiftyOne));
|
|
2272
|
-
}
|
|
2273
|
-
export function oneHundredAndFiftyOneFromJSON(jsonString) {
|
|
2274
|
-
return safeParse(jsonString, (x) => OneHundredAndFiftyOne$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndFiftyOne' from JSON`);
|
|
2275
|
-
}
|
|
2276
|
-
/** @internal */
|
|
2277
|
-
export const UserEventPayload150Role$inboundSchema = z.nativeEnum(UserEventPayload150Role);
|
|
2278
|
+
export const UserEventPayload151Role$inboundSchema = z.nativeEnum(UserEventPayload151Role);
|
|
2278
2279
|
/** @internal */
|
|
2279
|
-
export const
|
|
2280
|
+
export const UserEventPayload151Role$outboundSchema = UserEventPayload151Role$inboundSchema;
|
|
2280
2281
|
/** @internal */
|
|
2281
|
-
export const
|
|
2282
|
+
export const UserEventPayload151Project$inboundSchema = z.object({
|
|
2282
2283
|
name: types.string(),
|
|
2283
|
-
role:
|
|
2284
|
+
role: UserEventPayload151Role$inboundSchema,
|
|
2284
2285
|
invitedUserName: types.string(),
|
|
2285
2286
|
id: types.optional(types.string()),
|
|
2286
2287
|
invitedUserId: types.optional(types.string()),
|
|
2287
2288
|
});
|
|
2288
2289
|
/** @internal */
|
|
2289
|
-
export const
|
|
2290
|
+
export const UserEventPayload151Project$outboundSchema = z.object({
|
|
2290
2291
|
name: z.string(),
|
|
2291
|
-
role:
|
|
2292
|
+
role: UserEventPayload151Role$outboundSchema,
|
|
2292
2293
|
invitedUserName: z.string(),
|
|
2293
2294
|
id: z.string().optional(),
|
|
2294
2295
|
invitedUserId: z.string().optional(),
|
|
2295
2296
|
});
|
|
2296
|
-
export function
|
|
2297
|
-
return JSON.stringify(
|
|
2297
|
+
export function userEventPayload151ProjectToJSON(userEventPayload151Project) {
|
|
2298
|
+
return JSON.stringify(UserEventPayload151Project$outboundSchema.parse(userEventPayload151Project));
|
|
2298
2299
|
}
|
|
2299
|
-
export function
|
|
2300
|
-
return safeParse(jsonString, (x) =>
|
|
2300
|
+
export function userEventPayload151ProjectFromJSON(jsonString) {
|
|
2301
|
+
return safeParse(jsonString, (x) => UserEventPayload151Project$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload151Project' from JSON`);
|
|
2301
2302
|
}
|
|
2302
2303
|
/** @internal */
|
|
2303
|
-
export const
|
|
2304
|
-
project: z.lazy(() =>
|
|
2304
|
+
export const OneHundredAndFiftyOne$inboundSchema = z.object({
|
|
2305
|
+
project: z.lazy(() => UserEventPayload151Project$inboundSchema),
|
|
2305
2306
|
});
|
|
2306
2307
|
/** @internal */
|
|
2307
|
-
export const
|
|
2308
|
-
project: z.lazy(() =>
|
|
2308
|
+
export const OneHundredAndFiftyOne$outboundSchema = z.object({
|
|
2309
|
+
project: z.lazy(() => UserEventPayload151Project$outboundSchema),
|
|
2309
2310
|
});
|
|
2310
|
-
export function
|
|
2311
|
-
return JSON.stringify(
|
|
2311
|
+
export function oneHundredAndFiftyOneToJSON(oneHundredAndFiftyOne) {
|
|
2312
|
+
return JSON.stringify(OneHundredAndFiftyOne$outboundSchema.parse(oneHundredAndFiftyOne));
|
|
2312
2313
|
}
|
|
2313
|
-
export function
|
|
2314
|
-
return safeParse(jsonString, (x) =>
|
|
2314
|
+
export function oneHundredAndFiftyOneFromJSON(jsonString) {
|
|
2315
|
+
return safeParse(jsonString, (x) => OneHundredAndFiftyOne$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndFiftyOne' from JSON`);
|
|
2315
2316
|
}
|
|
2316
2317
|
/** @internal */
|
|
2317
|
-
export const
|
|
2318
|
+
export const UserEventPayload150Project$inboundSchema = z.object({
|
|
2318
2319
|
id: types.string(),
|
|
2319
2320
|
name: types.string(),
|
|
2320
2321
|
});
|
|
2321
2322
|
/** @internal */
|
|
2322
|
-
export const
|
|
2323
|
+
export const UserEventPayload150Project$outboundSchema = z.object({
|
|
2323
2324
|
id: z.string(),
|
|
2324
2325
|
name: z.string(),
|
|
2325
2326
|
});
|
|
2326
|
-
export function
|
|
2327
|
-
return JSON.stringify(
|
|
2327
|
+
export function userEventPayload150ProjectToJSON(userEventPayload150Project) {
|
|
2328
|
+
return JSON.stringify(UserEventPayload150Project$outboundSchema.parse(userEventPayload150Project));
|
|
2328
2329
|
}
|
|
2329
|
-
export function
|
|
2330
|
-
return safeParse(jsonString, (x) =>
|
|
2330
|
+
export function userEventPayload150ProjectFromJSON(jsonString) {
|
|
2331
|
+
return safeParse(jsonString, (x) => UserEventPayload150Project$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload150Project' from JSON`);
|
|
2331
2332
|
}
|
|
2332
2333
|
/** @internal */
|
|
2333
|
-
export const
|
|
2334
|
+
export const UserEventPayload150Role$inboundSchema = z.nativeEnum(UserEventPayload150Role);
|
|
2334
2335
|
/** @internal */
|
|
2335
|
-
export const
|
|
2336
|
+
export const UserEventPayload150Role$outboundSchema = UserEventPayload150Role$inboundSchema;
|
|
2336
2337
|
/** @internal */
|
|
2337
2338
|
export const PayloadPreviousRole$inboundSchema = z.nativeEnum(PayloadPreviousRole);
|
|
2338
2339
|
/** @internal */
|
|
2339
2340
|
export const PayloadPreviousRole$outboundSchema = PayloadPreviousRole$inboundSchema;
|
|
2340
2341
|
/** @internal */
|
|
2341
2342
|
export const PayloadProjectMembership$inboundSchema = z.object({
|
|
2342
|
-
role: types.optional(
|
|
2343
|
+
role: types.optional(UserEventPayload150Role$inboundSchema),
|
|
2343
2344
|
uid: types.optional(types.string()),
|
|
2344
2345
|
createdAt: types.optional(types.number()),
|
|
2345
2346
|
username: types.optional(types.string()),
|
|
@@ -2347,7 +2348,7 @@ export const PayloadProjectMembership$inboundSchema = z.object({
|
|
|
2347
2348
|
});
|
|
2348
2349
|
/** @internal */
|
|
2349
2350
|
export const PayloadProjectMembership$outboundSchema = z.object({
|
|
2350
|
-
role:
|
|
2351
|
+
role: UserEventPayload150Role$outboundSchema.optional(),
|
|
2351
2352
|
uid: z.string().optional(),
|
|
2352
2353
|
createdAt: z.number().optional(),
|
|
2353
2354
|
username: z.string().optional(),
|
|
@@ -2360,51 +2361,51 @@ export function payloadProjectMembershipFromJSON(jsonString) {
|
|
|
2360
2361
|
return safeParse(jsonString, (x) => PayloadProjectMembership$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PayloadProjectMembership' from JSON`);
|
|
2361
2362
|
}
|
|
2362
2363
|
/** @internal */
|
|
2363
|
-
export const
|
|
2364
|
-
project: z.lazy(() =>
|
|
2364
|
+
export const OneHundredAndFifty$inboundSchema = z.object({
|
|
2365
|
+
project: z.lazy(() => UserEventPayload150Project$inboundSchema),
|
|
2365
2366
|
projectMembership: z.lazy(() => PayloadProjectMembership$inboundSchema),
|
|
2366
2367
|
});
|
|
2367
2368
|
/** @internal */
|
|
2368
|
-
export const
|
|
2369
|
-
project: z.lazy(() =>
|
|
2369
|
+
export const OneHundredAndFifty$outboundSchema = z.object({
|
|
2370
|
+
project: z.lazy(() => UserEventPayload150Project$outboundSchema),
|
|
2370
2371
|
projectMembership: z.lazy(() => PayloadProjectMembership$outboundSchema),
|
|
2371
2372
|
});
|
|
2372
|
-
export function
|
|
2373
|
-
return JSON.stringify(
|
|
2373
|
+
export function oneHundredAndFiftyToJSON(oneHundredAndFifty) {
|
|
2374
|
+
return JSON.stringify(OneHundredAndFifty$outboundSchema.parse(oneHundredAndFifty));
|
|
2374
2375
|
}
|
|
2375
|
-
export function
|
|
2376
|
-
return safeParse(jsonString, (x) =>
|
|
2376
|
+
export function oneHundredAndFiftyFromJSON(jsonString) {
|
|
2377
|
+
return safeParse(jsonString, (x) => OneHundredAndFifty$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndFifty' from JSON`);
|
|
2377
2378
|
}
|
|
2378
2379
|
/** @internal */
|
|
2379
|
-
export const
|
|
2380
|
+
export const UserEventPayload149Project$inboundSchema = z.object({
|
|
2380
2381
|
name: types.string(),
|
|
2381
2382
|
id: types.optional(types.string()),
|
|
2382
2383
|
});
|
|
2383
2384
|
/** @internal */
|
|
2384
|
-
export const
|
|
2385
|
+
export const UserEventPayload149Project$outboundSchema = z.object({
|
|
2385
2386
|
name: z.string(),
|
|
2386
2387
|
id: z.string().optional(),
|
|
2387
2388
|
});
|
|
2388
|
-
export function
|
|
2389
|
-
return JSON.stringify(
|
|
2389
|
+
export function userEventPayload149ProjectToJSON(userEventPayload149Project) {
|
|
2390
|
+
return JSON.stringify(UserEventPayload149Project$outboundSchema.parse(userEventPayload149Project));
|
|
2390
2391
|
}
|
|
2391
|
-
export function
|
|
2392
|
-
return safeParse(jsonString, (x) =>
|
|
2392
|
+
export function userEventPayload149ProjectFromJSON(jsonString) {
|
|
2393
|
+
return safeParse(jsonString, (x) => UserEventPayload149Project$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload149Project' from JSON`);
|
|
2393
2394
|
}
|
|
2394
2395
|
/** @internal */
|
|
2395
|
-
export const
|
|
2396
|
+
export const UserEventPayload149Role$inboundSchema = z.nativeEnum(UserEventPayload149Role);
|
|
2396
2397
|
/** @internal */
|
|
2397
|
-
export const
|
|
2398
|
+
export const UserEventPayload149Role$outboundSchema = UserEventPayload149Role$inboundSchema;
|
|
2398
2399
|
/** @internal */
|
|
2399
2400
|
export const RemovedMembership$inboundSchema = z.object({
|
|
2400
|
-
role:
|
|
2401
|
+
role: UserEventPayload149Role$inboundSchema,
|
|
2401
2402
|
uid: types.string(),
|
|
2402
2403
|
createdAt: types.number(),
|
|
2403
2404
|
username: types.optional(types.string()),
|
|
2404
2405
|
});
|
|
2405
2406
|
/** @internal */
|
|
2406
2407
|
export const RemovedMembership$outboundSchema = z.object({
|
|
2407
|
-
role:
|
|
2408
|
+
role: UserEventPayload149Role$outboundSchema,
|
|
2408
2409
|
uid: z.string(),
|
|
2409
2410
|
createdAt: z.number(),
|
|
2410
2411
|
username: z.string().optional(),
|
|
@@ -2416,51 +2417,51 @@ export function removedMembershipFromJSON(jsonString) {
|
|
|
2416
2417
|
return safeParse(jsonString, (x) => RemovedMembership$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'RemovedMembership' from JSON`);
|
|
2417
2418
|
}
|
|
2418
2419
|
/** @internal */
|
|
2419
|
-
export const
|
|
2420
|
-
project: z.lazy(() =>
|
|
2420
|
+
export const OneHundredAndFortyNine$inboundSchema = z.object({
|
|
2421
|
+
project: z.lazy(() => UserEventPayload149Project$inboundSchema),
|
|
2421
2422
|
removedMembership: z.lazy(() => RemovedMembership$inboundSchema),
|
|
2422
2423
|
});
|
|
2423
2424
|
/** @internal */
|
|
2424
|
-
export const
|
|
2425
|
-
project: z.lazy(() =>
|
|
2425
|
+
export const OneHundredAndFortyNine$outboundSchema = z.object({
|
|
2426
|
+
project: z.lazy(() => UserEventPayload149Project$outboundSchema),
|
|
2426
2427
|
removedMembership: z.lazy(() => RemovedMembership$outboundSchema),
|
|
2427
2428
|
});
|
|
2428
|
-
export function
|
|
2429
|
-
return JSON.stringify(
|
|
2429
|
+
export function oneHundredAndFortyNineToJSON(oneHundredAndFortyNine) {
|
|
2430
|
+
return JSON.stringify(OneHundredAndFortyNine$outboundSchema.parse(oneHundredAndFortyNine));
|
|
2430
2431
|
}
|
|
2431
|
-
export function
|
|
2432
|
-
return safeParse(jsonString, (x) =>
|
|
2432
|
+
export function oneHundredAndFortyNineFromJSON(jsonString) {
|
|
2433
|
+
return safeParse(jsonString, (x) => OneHundredAndFortyNine$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndFortyNine' from JSON`);
|
|
2433
2434
|
}
|
|
2434
2435
|
/** @internal */
|
|
2435
|
-
export const
|
|
2436
|
+
export const UserEventPayload148Project$inboundSchema = z.object({
|
|
2436
2437
|
name: types.string(),
|
|
2437
2438
|
id: types.optional(types.string()),
|
|
2438
2439
|
});
|
|
2439
2440
|
/** @internal */
|
|
2440
|
-
export const
|
|
2441
|
+
export const UserEventPayload148Project$outboundSchema = z.object({
|
|
2441
2442
|
name: z.string(),
|
|
2442
2443
|
id: z.string().optional(),
|
|
2443
2444
|
});
|
|
2444
|
-
export function
|
|
2445
|
-
return JSON.stringify(
|
|
2445
|
+
export function userEventPayload148ProjectToJSON(userEventPayload148Project) {
|
|
2446
|
+
return JSON.stringify(UserEventPayload148Project$outboundSchema.parse(userEventPayload148Project));
|
|
2446
2447
|
}
|
|
2447
|
-
export function
|
|
2448
|
-
return safeParse(jsonString, (x) =>
|
|
2448
|
+
export function userEventPayload148ProjectFromJSON(jsonString) {
|
|
2449
|
+
return safeParse(jsonString, (x) => UserEventPayload148Project$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload148Project' from JSON`);
|
|
2449
2450
|
}
|
|
2450
2451
|
/** @internal */
|
|
2451
|
-
export const
|
|
2452
|
+
export const UserEventPayload148Role$inboundSchema = z.nativeEnum(UserEventPayload148Role);
|
|
2452
2453
|
/** @internal */
|
|
2453
|
-
export const
|
|
2454
|
+
export const UserEventPayload148Role$outboundSchema = UserEventPayload148Role$inboundSchema;
|
|
2454
2455
|
/** @internal */
|
|
2455
2456
|
export const ProjectMembership$inboundSchema = z.object({
|
|
2456
|
-
role:
|
|
2457
|
+
role: UserEventPayload148Role$inboundSchema,
|
|
2457
2458
|
uid: types.string(),
|
|
2458
2459
|
createdAt: types.number(),
|
|
2459
2460
|
username: types.optional(types.string()),
|
|
2460
2461
|
});
|
|
2461
2462
|
/** @internal */
|
|
2462
2463
|
export const ProjectMembership$outboundSchema = z.object({
|
|
2463
|
-
role:
|
|
2464
|
+
role: UserEventPayload148Role$outboundSchema,
|
|
2464
2465
|
uid: z.string(),
|
|
2465
2466
|
createdAt: z.number(),
|
|
2466
2467
|
username: z.string().optional(),
|
|
@@ -2472,81 +2473,81 @@ export function projectMembershipFromJSON(jsonString) {
|
|
|
2472
2473
|
return safeParse(jsonString, (x) => ProjectMembership$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'ProjectMembership' from JSON`);
|
|
2473
2474
|
}
|
|
2474
2475
|
/** @internal */
|
|
2475
|
-
export const
|
|
2476
|
-
project: z.lazy(() =>
|
|
2476
|
+
export const OneHundredAndFortyEight$inboundSchema = z.object({
|
|
2477
|
+
project: z.lazy(() => UserEventPayload148Project$inboundSchema),
|
|
2477
2478
|
projectMembership: types.nullable(z.lazy(() => ProjectMembership$inboundSchema)),
|
|
2478
2479
|
});
|
|
2479
2480
|
/** @internal */
|
|
2480
|
-
export const
|
|
2481
|
-
project: z.lazy(() =>
|
|
2481
|
+
export const OneHundredAndFortyEight$outboundSchema = z.object({
|
|
2482
|
+
project: z.lazy(() => UserEventPayload148Project$outboundSchema),
|
|
2482
2483
|
projectMembership: z.nullable(z.lazy(() => ProjectMembership$outboundSchema)),
|
|
2483
2484
|
});
|
|
2484
|
-
export function
|
|
2485
|
-
return JSON.stringify(
|
|
2485
|
+
export function oneHundredAndFortyEightToJSON(oneHundredAndFortyEight) {
|
|
2486
|
+
return JSON.stringify(OneHundredAndFortyEight$outboundSchema.parse(oneHundredAndFortyEight));
|
|
2486
2487
|
}
|
|
2487
|
-
export function
|
|
2488
|
-
return safeParse(jsonString, (x) =>
|
|
2488
|
+
export function oneHundredAndFortyEightFromJSON(jsonString) {
|
|
2489
|
+
return safeParse(jsonString, (x) => OneHundredAndFortyEight$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndFortyEight' from JSON`);
|
|
2489
2490
|
}
|
|
2490
2491
|
/** @internal */
|
|
2491
|
-
export const
|
|
2492
|
+
export const OneHundredAndFortySeven$inboundSchema = z.object({
|
|
2492
2493
|
previousProjectName: types.string(),
|
|
2493
2494
|
newProjectName: types.string(),
|
|
2494
2495
|
originAccountName: types.string(),
|
|
2495
2496
|
transferId: types.optional(types.string()),
|
|
2496
2497
|
});
|
|
2497
2498
|
/** @internal */
|
|
2498
|
-
export const
|
|
2499
|
+
export const OneHundredAndFortySeven$outboundSchema = z.object({
|
|
2499
2500
|
previousProjectName: z.string(),
|
|
2500
2501
|
newProjectName: z.string(),
|
|
2501
2502
|
originAccountName: z.string(),
|
|
2502
2503
|
transferId: z.string().optional(),
|
|
2503
2504
|
});
|
|
2504
|
-
export function
|
|
2505
|
-
return JSON.stringify(
|
|
2505
|
+
export function oneHundredAndFortySevenToJSON(oneHundredAndFortySeven) {
|
|
2506
|
+
return JSON.stringify(OneHundredAndFortySeven$outboundSchema.parse(oneHundredAndFortySeven));
|
|
2506
2507
|
}
|
|
2507
|
-
export function
|
|
2508
|
-
return safeParse(jsonString, (x) =>
|
|
2508
|
+
export function oneHundredAndFortySevenFromJSON(jsonString) {
|
|
2509
|
+
return safeParse(jsonString, (x) => OneHundredAndFortySeven$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndFortySeven' from JSON`);
|
|
2509
2510
|
}
|
|
2510
2511
|
/** @internal */
|
|
2511
|
-
export const
|
|
2512
|
+
export const OneHundredAndFortySix$inboundSchema = z.object({
|
|
2512
2513
|
previousProjectName: types.string(),
|
|
2513
2514
|
newProjectName: types.string(),
|
|
2514
2515
|
destinationAccountName: types.string(),
|
|
2515
2516
|
transferId: types.optional(types.string()),
|
|
2516
2517
|
});
|
|
2517
2518
|
/** @internal */
|
|
2518
|
-
export const
|
|
2519
|
+
export const OneHundredAndFortySix$outboundSchema = z.object({
|
|
2519
2520
|
previousProjectName: z.string(),
|
|
2520
2521
|
newProjectName: z.string(),
|
|
2521
2522
|
destinationAccountName: z.string(),
|
|
2522
2523
|
transferId: z.string().optional(),
|
|
2523
2524
|
});
|
|
2524
|
-
export function
|
|
2525
|
-
return JSON.stringify(
|
|
2525
|
+
export function oneHundredAndFortySixToJSON(oneHundredAndFortySix) {
|
|
2526
|
+
return JSON.stringify(OneHundredAndFortySix$outboundSchema.parse(oneHundredAndFortySix));
|
|
2526
2527
|
}
|
|
2527
|
-
export function
|
|
2528
|
-
return safeParse(jsonString, (x) =>
|
|
2528
|
+
export function oneHundredAndFortySixFromJSON(jsonString) {
|
|
2529
|
+
return safeParse(jsonString, (x) => OneHundredAndFortySix$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndFortySix' from JSON`);
|
|
2529
2530
|
}
|
|
2530
2531
|
/** @internal */
|
|
2531
|
-
export const
|
|
2532
|
+
export const OneHundredAndFortyFive$inboundSchema = z.object({
|
|
2532
2533
|
projectName: types.string(),
|
|
2533
2534
|
destinationAccountName: types.nullable(types.string()),
|
|
2534
2535
|
transferId: types.optional(types.string()),
|
|
2535
2536
|
});
|
|
2536
2537
|
/** @internal */
|
|
2537
|
-
export const
|
|
2538
|
+
export const OneHundredAndFortyFive$outboundSchema = z.object({
|
|
2538
2539
|
projectName: z.string(),
|
|
2539
2540
|
destinationAccountName: z.nullable(z.string()),
|
|
2540
2541
|
transferId: z.string().optional(),
|
|
2541
2542
|
});
|
|
2542
|
-
export function
|
|
2543
|
-
return JSON.stringify(
|
|
2543
|
+
export function oneHundredAndFortyFiveToJSON(oneHundredAndFortyFive) {
|
|
2544
|
+
return JSON.stringify(OneHundredAndFortyFive$outboundSchema.parse(oneHundredAndFortyFive));
|
|
2544
2545
|
}
|
|
2545
|
-
export function
|
|
2546
|
-
return safeParse(jsonString, (x) =>
|
|
2546
|
+
export function oneHundredAndFortyFiveFromJSON(jsonString) {
|
|
2547
|
+
return safeParse(jsonString, (x) => OneHundredAndFortyFive$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndFortyFive' from JSON`);
|
|
2547
2548
|
}
|
|
2548
2549
|
/** @internal */
|
|
2549
|
-
export const
|
|
2550
|
+
export const OneHundredAndFortyFour$inboundSchema = z.object({
|
|
2550
2551
|
projectId: types.string(),
|
|
2551
2552
|
projectName: types.string(),
|
|
2552
2553
|
originAccountName: types.string(),
|
|
@@ -2555,7 +2556,7 @@ export const OneHundredAndFortyThree$inboundSchema = z.object({
|
|
|
2555
2556
|
transferId: types.optional(types.string()),
|
|
2556
2557
|
});
|
|
2557
2558
|
/** @internal */
|
|
2558
|
-
export const
|
|
2559
|
+
export const OneHundredAndFortyFour$outboundSchema = z.object({
|
|
2559
2560
|
projectId: z.string(),
|
|
2560
2561
|
projectName: z.string(),
|
|
2561
2562
|
originAccountName: z.string(),
|
|
@@ -2563,14 +2564,14 @@ export const OneHundredAndFortyThree$outboundSchema = z.object({
|
|
|
2563
2564
|
destinationAccountId: z.string(),
|
|
2564
2565
|
transferId: z.string().optional(),
|
|
2565
2566
|
});
|
|
2566
|
-
export function
|
|
2567
|
-
return JSON.stringify(
|
|
2567
|
+
export function oneHundredAndFortyFourToJSON(oneHundredAndFortyFour) {
|
|
2568
|
+
return JSON.stringify(OneHundredAndFortyFour$outboundSchema.parse(oneHundredAndFortyFour));
|
|
2568
2569
|
}
|
|
2569
|
-
export function
|
|
2570
|
-
return safeParse(jsonString, (x) =>
|
|
2570
|
+
export function oneHundredAndFortyFourFromJSON(jsonString) {
|
|
2571
|
+
return safeParse(jsonString, (x) => OneHundredAndFortyFour$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndFortyFour' from JSON`);
|
|
2571
2572
|
}
|
|
2572
2573
|
/** @internal */
|
|
2573
|
-
export const
|
|
2574
|
+
export const OneHundredAndFortyThree$inboundSchema = z.object({
|
|
2574
2575
|
requestedTeamName: types.string(),
|
|
2575
2576
|
requestedUserName: types.optional(types.string()),
|
|
2576
2577
|
gitUsername: types.optional(types.string()),
|
|
@@ -2579,7 +2580,7 @@ export const OneHundredAndFortyTwo$inboundSchema = z.object({
|
|
|
2579
2580
|
bitbucketUsername: types.optional(types.string()),
|
|
2580
2581
|
});
|
|
2581
2582
|
/** @internal */
|
|
2582
|
-
export const
|
|
2583
|
+
export const OneHundredAndFortyThree$outboundSchema = z.object({
|
|
2583
2584
|
requestedTeamName: z.string(),
|
|
2584
2585
|
requestedUserName: z.string().optional(),
|
|
2585
2586
|
gitUsername: z.string().optional(),
|
|
@@ -2587,14 +2588,14 @@ export const OneHundredAndFortyTwo$outboundSchema = z.object({
|
|
|
2587
2588
|
gitlabUsername: z.string().optional(),
|
|
2588
2589
|
bitbucketUsername: z.string().optional(),
|
|
2589
2590
|
});
|
|
2590
|
-
export function
|
|
2591
|
-
return JSON.stringify(
|
|
2591
|
+
export function oneHundredAndFortyThreeToJSON(oneHundredAndFortyThree) {
|
|
2592
|
+
return JSON.stringify(OneHundredAndFortyThree$outboundSchema.parse(oneHundredAndFortyThree));
|
|
2592
2593
|
}
|
|
2593
|
-
export function
|
|
2594
|
-
return safeParse(jsonString, (x) =>
|
|
2594
|
+
export function oneHundredAndFortyThreeFromJSON(jsonString) {
|
|
2595
|
+
return safeParse(jsonString, (x) => OneHundredAndFortyThree$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndFortyThree' from JSON`);
|
|
2595
2596
|
}
|
|
2596
2597
|
/** @internal */
|
|
2597
|
-
export const
|
|
2598
|
+
export const OneHundredAndFortyTwo$inboundSchema = z.object({
|
|
2598
2599
|
teamName: types.string(),
|
|
2599
2600
|
username: types.optional(types.string()),
|
|
2600
2601
|
gitUsername: z.nullable(types.string()).optional(),
|
|
@@ -2603,7 +2604,7 @@ export const OneHundredAndFortyOne$inboundSchema = z.object({
|
|
|
2603
2604
|
bitbucketUsername: z.nullable(types.string()).optional(),
|
|
2604
2605
|
});
|
|
2605
2606
|
/** @internal */
|
|
2606
|
-
export const
|
|
2607
|
+
export const OneHundredAndFortyTwo$outboundSchema = z.object({
|
|
2607
2608
|
teamName: z.string(),
|
|
2608
2609
|
username: z.string().optional(),
|
|
2609
2610
|
gitUsername: z.nullable(z.string()).optional(),
|
|
@@ -2611,14 +2612,14 @@ export const OneHundredAndFortyOne$outboundSchema = z.object({
|
|
|
2611
2612
|
gitlabUsername: z.nullable(z.string()).optional(),
|
|
2612
2613
|
bitbucketUsername: z.nullable(z.string()).optional(),
|
|
2613
2614
|
});
|
|
2614
|
-
export function
|
|
2615
|
-
return JSON.stringify(
|
|
2615
|
+
export function oneHundredAndFortyTwoToJSON(oneHundredAndFortyTwo) {
|
|
2616
|
+
return JSON.stringify(OneHundredAndFortyTwo$outboundSchema.parse(oneHundredAndFortyTwo));
|
|
2616
2617
|
}
|
|
2617
|
-
export function
|
|
2618
|
-
return safeParse(jsonString, (x) =>
|
|
2618
|
+
export function oneHundredAndFortyTwoFromJSON(jsonString) {
|
|
2619
|
+
return safeParse(jsonString, (x) => OneHundredAndFortyTwo$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndFortyTwo' from JSON`);
|
|
2619
2620
|
}
|
|
2620
2621
|
/** @internal */
|
|
2621
|
-
export const
|
|
2622
|
+
export const OneHundredAndFortyOne$inboundSchema = z.object({
|
|
2622
2623
|
teamName: types.string(),
|
|
2623
2624
|
username: types.optional(types.string()),
|
|
2624
2625
|
gitUsername: types.optional(types.string()),
|
|
@@ -2629,7 +2630,7 @@ export const OneHundredAndForty$inboundSchema = z.object({
|
|
|
2629
2630
|
teamId: types.optional(types.string()),
|
|
2630
2631
|
});
|
|
2631
2632
|
/** @internal */
|
|
2632
|
-
export const
|
|
2633
|
+
export const OneHundredAndFortyOne$outboundSchema = z.object({
|
|
2633
2634
|
teamName: z.string(),
|
|
2634
2635
|
username: z.string().optional(),
|
|
2635
2636
|
gitUsername: z.string().optional(),
|
|
@@ -2639,6 +2640,22 @@ export const OneHundredAndForty$outboundSchema = z.object({
|
|
|
2639
2640
|
updatedUid: z.string().optional(),
|
|
2640
2641
|
teamId: z.string().optional(),
|
|
2641
2642
|
});
|
|
2643
|
+
export function oneHundredAndFortyOneToJSON(oneHundredAndFortyOne) {
|
|
2644
|
+
return JSON.stringify(OneHundredAndFortyOne$outboundSchema.parse(oneHundredAndFortyOne));
|
|
2645
|
+
}
|
|
2646
|
+
export function oneHundredAndFortyOneFromJSON(jsonString) {
|
|
2647
|
+
return safeParse(jsonString, (x) => OneHundredAndFortyOne$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndFortyOne' from JSON`);
|
|
2648
|
+
}
|
|
2649
|
+
/** @internal */
|
|
2650
|
+
export const OneHundredAndForty$inboundSchema = z.object({
|
|
2651
|
+
price: types.optional(types.number()),
|
|
2652
|
+
currency: types.optional(types.string()),
|
|
2653
|
+
});
|
|
2654
|
+
/** @internal */
|
|
2655
|
+
export const OneHundredAndForty$outboundSchema = z.object({
|
|
2656
|
+
price: z.number().optional(),
|
|
2657
|
+
currency: z.string().optional(),
|
|
2658
|
+
});
|
|
2642
2659
|
export function oneHundredAndFortyToJSON(oneHundredAndForty) {
|
|
2643
2660
|
return JSON.stringify(OneHundredAndForty$outboundSchema.parse(oneHundredAndForty));
|
|
2644
2661
|
}
|
|
@@ -2647,13 +2664,13 @@ export function oneHundredAndFortyFromJSON(jsonString) {
|
|
|
2647
2664
|
}
|
|
2648
2665
|
/** @internal */
|
|
2649
2666
|
export const OneHundredAndThirtyNine$inboundSchema = z.object({
|
|
2650
|
-
|
|
2651
|
-
|
|
2667
|
+
previewDeploymentSuffix: z.nullable(types.string()).optional(),
|
|
2668
|
+
previousPreviewDeploymentSuffix: z.nullable(types.string()).optional(),
|
|
2652
2669
|
});
|
|
2653
2670
|
/** @internal */
|
|
2654
2671
|
export const OneHundredAndThirtyNine$outboundSchema = z.object({
|
|
2655
|
-
|
|
2656
|
-
|
|
2672
|
+
previewDeploymentSuffix: z.nullable(z.string()).optional(),
|
|
2673
|
+
previousPreviewDeploymentSuffix: z.nullable(z.string()).optional(),
|
|
2657
2674
|
});
|
|
2658
2675
|
export function oneHundredAndThirtyNineToJSON(oneHundredAndThirtyNine) {
|
|
2659
2676
|
return JSON.stringify(OneHundredAndThirtyNine$outboundSchema.parse(oneHundredAndThirtyNine));
|
|
@@ -2663,13 +2680,15 @@ export function oneHundredAndThirtyNineFromJSON(jsonString) {
|
|
|
2663
2680
|
}
|
|
2664
2681
|
/** @internal */
|
|
2665
2682
|
export const OneHundredAndThirtyEight$inboundSchema = z.object({
|
|
2666
|
-
|
|
2667
|
-
|
|
2683
|
+
price: types.optional(types.number()),
|
|
2684
|
+
currency: types.optional(types.string()),
|
|
2685
|
+
enabled: types.optional(types.boolean()),
|
|
2668
2686
|
});
|
|
2669
2687
|
/** @internal */
|
|
2670
2688
|
export const OneHundredAndThirtyEight$outboundSchema = z.object({
|
|
2671
|
-
|
|
2672
|
-
|
|
2689
|
+
price: z.number().optional(),
|
|
2690
|
+
currency: z.string().optional(),
|
|
2691
|
+
enabled: z.boolean().optional(),
|
|
2673
2692
|
});
|
|
2674
2693
|
export function oneHundredAndThirtyEightToJSON(oneHundredAndThirtyEight) {
|
|
2675
2694
|
return JSON.stringify(OneHundredAndThirtyEight$outboundSchema.parse(oneHundredAndThirtyEight));
|
|
@@ -2679,15 +2698,11 @@ export function oneHundredAndThirtyEightFromJSON(jsonString) {
|
|
|
2679
2698
|
}
|
|
2680
2699
|
/** @internal */
|
|
2681
2700
|
export const OneHundredAndThirtySeven$inboundSchema = z.object({
|
|
2682
|
-
|
|
2683
|
-
currency: types.optional(types.string()),
|
|
2684
|
-
enabled: types.optional(types.boolean()),
|
|
2701
|
+
username: types.string(),
|
|
2685
2702
|
});
|
|
2686
2703
|
/** @internal */
|
|
2687
2704
|
export const OneHundredAndThirtySeven$outboundSchema = z.object({
|
|
2688
|
-
|
|
2689
|
-
currency: z.string().optional(),
|
|
2690
|
-
enabled: z.boolean().optional(),
|
|
2705
|
+
username: z.string(),
|
|
2691
2706
|
});
|
|
2692
2707
|
export function oneHundredAndThirtySevenToJSON(oneHundredAndThirtySeven) {
|
|
2693
2708
|
return JSON.stringify(OneHundredAndThirtySeven$outboundSchema.parse(oneHundredAndThirtySeven));
|
|
@@ -2697,11 +2712,13 @@ export function oneHundredAndThirtySevenFromJSON(jsonString) {
|
|
|
2697
2712
|
}
|
|
2698
2713
|
/** @internal */
|
|
2699
2714
|
export const OneHundredAndThirtySix$inboundSchema = z.object({
|
|
2700
|
-
|
|
2715
|
+
email: types.string(),
|
|
2716
|
+
prevEmail: types.string(),
|
|
2701
2717
|
});
|
|
2702
2718
|
/** @internal */
|
|
2703
2719
|
export const OneHundredAndThirtySix$outboundSchema = z.object({
|
|
2704
|
-
|
|
2720
|
+
email: z.string(),
|
|
2721
|
+
prevEmail: z.string(),
|
|
2705
2722
|
});
|
|
2706
2723
|
export function oneHundredAndThirtySixToJSON(oneHundredAndThirtySix) {
|
|
2707
2724
|
return JSON.stringify(OneHundredAndThirtySix$outboundSchema.parse(oneHundredAndThirtySix));
|
|
@@ -2711,13 +2728,11 @@ export function oneHundredAndThirtySixFromJSON(jsonString) {
|
|
|
2711
2728
|
}
|
|
2712
2729
|
/** @internal */
|
|
2713
2730
|
export const OneHundredAndThirtyFive$inboundSchema = z.object({
|
|
2714
|
-
|
|
2715
|
-
prevEmail: types.string(),
|
|
2731
|
+
mfaEnabled: types.boolean(),
|
|
2716
2732
|
});
|
|
2717
2733
|
/** @internal */
|
|
2718
2734
|
export const OneHundredAndThirtyFive$outboundSchema = z.object({
|
|
2719
|
-
|
|
2720
|
-
prevEmail: z.string(),
|
|
2735
|
+
mfaEnabled: z.boolean(),
|
|
2721
2736
|
});
|
|
2722
2737
|
export function oneHundredAndThirtyFiveToJSON(oneHundredAndThirtyFive) {
|
|
2723
2738
|
return JSON.stringify(OneHundredAndThirtyFive$outboundSchema.parse(oneHundredAndThirtyFive));
|
|
@@ -2727,11 +2742,13 @@ export function oneHundredAndThirtyFiveFromJSON(jsonString) {
|
|
|
2727
2742
|
}
|
|
2728
2743
|
/** @internal */
|
|
2729
2744
|
export const OneHundredAndThirtyFour$inboundSchema = z.object({
|
|
2730
|
-
|
|
2745
|
+
enabled: types.boolean(),
|
|
2746
|
+
totpVerified: types.boolean(),
|
|
2731
2747
|
});
|
|
2732
2748
|
/** @internal */
|
|
2733
2749
|
export const OneHundredAndThirtyFour$outboundSchema = z.object({
|
|
2734
|
-
|
|
2750
|
+
enabled: z.boolean(),
|
|
2751
|
+
totpVerified: z.boolean(),
|
|
2735
2752
|
});
|
|
2736
2753
|
export function oneHundredAndThirtyFourToJSON(oneHundredAndThirtyFour) {
|
|
2737
2754
|
return JSON.stringify(OneHundredAndThirtyFour$outboundSchema.parse(oneHundredAndThirtyFour));
|
|
@@ -2740,22 +2757,6 @@ export function oneHundredAndThirtyFourFromJSON(jsonString) {
|
|
|
2740
2757
|
return safeParse(jsonString, (x) => OneHundredAndThirtyFour$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndThirtyFour' from JSON`);
|
|
2741
2758
|
}
|
|
2742
2759
|
/** @internal */
|
|
2743
|
-
export const OneHundredAndThirtyThree$inboundSchema = z.object({
|
|
2744
|
-
enabled: types.boolean(),
|
|
2745
|
-
totpVerified: types.boolean(),
|
|
2746
|
-
});
|
|
2747
|
-
/** @internal */
|
|
2748
|
-
export const OneHundredAndThirtyThree$outboundSchema = z.object({
|
|
2749
|
-
enabled: z.boolean(),
|
|
2750
|
-
totpVerified: z.boolean(),
|
|
2751
|
-
});
|
|
2752
|
-
export function oneHundredAndThirtyThreeToJSON(oneHundredAndThirtyThree) {
|
|
2753
|
-
return JSON.stringify(OneHundredAndThirtyThree$outboundSchema.parse(oneHundredAndThirtyThree));
|
|
2754
|
-
}
|
|
2755
|
-
export function oneHundredAndThirtyThreeFromJSON(jsonString) {
|
|
2756
|
-
return safeParse(jsonString, (x) => OneHundredAndThirtyThree$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndThirtyThree' from JSON`);
|
|
2757
|
-
}
|
|
2758
|
-
/** @internal */
|
|
2759
2760
|
export const PayloadPrevious$inboundSchema = z.object({
|
|
2760
2761
|
enabled: types.boolean(),
|
|
2761
2762
|
totpVerified: types.boolean(),
|
|
@@ -2788,20 +2789,20 @@ export function payloadNextFromJSON(jsonString) {
|
|
|
2788
2789
|
return safeParse(jsonString, (x) => PayloadNext$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PayloadNext' from JSON`);
|
|
2789
2790
|
}
|
|
2790
2791
|
/** @internal */
|
|
2791
|
-
export const
|
|
2792
|
+
export const OneHundredAndThirtyThree$inboundSchema = z.object({
|
|
2792
2793
|
previous: z.lazy(() => PayloadPrevious$inboundSchema),
|
|
2793
2794
|
next: z.lazy(() => PayloadNext$inboundSchema),
|
|
2794
2795
|
});
|
|
2795
2796
|
/** @internal */
|
|
2796
|
-
export const
|
|
2797
|
+
export const OneHundredAndThirtyThree$outboundSchema = z.object({
|
|
2797
2798
|
previous: z.lazy(() => PayloadPrevious$outboundSchema),
|
|
2798
2799
|
next: z.lazy(() => PayloadNext$outboundSchema),
|
|
2799
2800
|
});
|
|
2800
|
-
export function
|
|
2801
|
-
return JSON.stringify(
|
|
2801
|
+
export function oneHundredAndThirtyThreeToJSON(oneHundredAndThirtyThree) {
|
|
2802
|
+
return JSON.stringify(OneHundredAndThirtyThree$outboundSchema.parse(oneHundredAndThirtyThree));
|
|
2802
2803
|
}
|
|
2803
|
-
export function
|
|
2804
|
-
return safeParse(jsonString, (x) =>
|
|
2804
|
+
export function oneHundredAndThirtyThreeFromJSON(jsonString) {
|
|
2805
|
+
return safeParse(jsonString, (x) => OneHundredAndThirtyThree$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndThirtyThree' from JSON`);
|
|
2805
2806
|
}
|
|
2806
2807
|
/** @internal */
|
|
2807
2808
|
export const PayloadRemoteCaching$inboundSchema = z.object({
|
|
@@ -2818,13 +2819,27 @@ export function payloadRemoteCachingFromJSON(jsonString) {
|
|
|
2818
2819
|
return safeParse(jsonString, (x) => PayloadRemoteCaching$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PayloadRemoteCaching' from JSON`);
|
|
2819
2820
|
}
|
|
2820
2821
|
/** @internal */
|
|
2821
|
-
export const
|
|
2822
|
+
export const OneHundredAndThirtyTwo$inboundSchema = z.object({
|
|
2822
2823
|
remoteCaching: types.optional(z.lazy(() => PayloadRemoteCaching$inboundSchema)),
|
|
2823
2824
|
});
|
|
2824
2825
|
/** @internal */
|
|
2825
|
-
export const
|
|
2826
|
+
export const OneHundredAndThirtyTwo$outboundSchema = z.object({
|
|
2826
2827
|
remoteCaching: z.lazy(() => PayloadRemoteCaching$outboundSchema).optional(),
|
|
2827
2828
|
});
|
|
2829
|
+
export function oneHundredAndThirtyTwoToJSON(oneHundredAndThirtyTwo) {
|
|
2830
|
+
return JSON.stringify(OneHundredAndThirtyTwo$outboundSchema.parse(oneHundredAndThirtyTwo));
|
|
2831
|
+
}
|
|
2832
|
+
export function oneHundredAndThirtyTwoFromJSON(jsonString) {
|
|
2833
|
+
return safeParse(jsonString, (x) => OneHundredAndThirtyTwo$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndThirtyTwo' from JSON`);
|
|
2834
|
+
}
|
|
2835
|
+
/** @internal */
|
|
2836
|
+
export const OneHundredAndThirtyOne$inboundSchema = z.object({
|
|
2837
|
+
slug: types.optional(types.string()),
|
|
2838
|
+
});
|
|
2839
|
+
/** @internal */
|
|
2840
|
+
export const OneHundredAndThirtyOne$outboundSchema = z.object({
|
|
2841
|
+
slug: z.string().optional(),
|
|
2842
|
+
});
|
|
2828
2843
|
export function oneHundredAndThirtyOneToJSON(oneHundredAndThirtyOne) {
|
|
2829
2844
|
return JSON.stringify(OneHundredAndThirtyOne$outboundSchema.parse(oneHundredAndThirtyOne));
|
|
2830
2845
|
}
|
|
@@ -2833,11 +2848,11 @@ export function oneHundredAndThirtyOneFromJSON(jsonString) {
|
|
|
2833
2848
|
}
|
|
2834
2849
|
/** @internal */
|
|
2835
2850
|
export const OneHundredAndThirty$inboundSchema = z.object({
|
|
2836
|
-
|
|
2851
|
+
name: types.optional(types.string()),
|
|
2837
2852
|
});
|
|
2838
2853
|
/** @internal */
|
|
2839
2854
|
export const OneHundredAndThirty$outboundSchema = z.object({
|
|
2840
|
-
|
|
2855
|
+
name: z.string().optional(),
|
|
2841
2856
|
});
|
|
2842
2857
|
export function oneHundredAndThirtyToJSON(oneHundredAndThirty) {
|
|
2843
2858
|
return JSON.stringify(OneHundredAndThirty$outboundSchema.parse(oneHundredAndThirty));
|
|
@@ -2847,11 +2862,11 @@ export function oneHundredAndThirtyFromJSON(jsonString) {
|
|
|
2847
2862
|
}
|
|
2848
2863
|
/** @internal */
|
|
2849
2864
|
export const OneHundredAndTwentyNine$inboundSchema = z.object({
|
|
2850
|
-
|
|
2865
|
+
enforced: types.boolean(),
|
|
2851
2866
|
});
|
|
2852
2867
|
/** @internal */
|
|
2853
2868
|
export const OneHundredAndTwentyNine$outboundSchema = z.object({
|
|
2854
|
-
|
|
2869
|
+
enforced: z.boolean(),
|
|
2855
2870
|
});
|
|
2856
2871
|
export function oneHundredAndTwentyNineToJSON(oneHundredAndTwentyNine) {
|
|
2857
2872
|
return JSON.stringify(OneHundredAndTwentyNine$outboundSchema.parse(oneHundredAndTwentyNine));
|
|
@@ -2860,52 +2875,38 @@ export function oneHundredAndTwentyNineFromJSON(jsonString) {
|
|
|
2860
2875
|
return safeParse(jsonString, (x) => OneHundredAndTwentyNine$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndTwentyNine' from JSON`);
|
|
2861
2876
|
}
|
|
2862
2877
|
/** @internal */
|
|
2863
|
-
export const
|
|
2864
|
-
enforced: types.boolean(),
|
|
2865
|
-
});
|
|
2866
|
-
/** @internal */
|
|
2867
|
-
export const OneHundredAndTwentyEight$outboundSchema = z.object({
|
|
2868
|
-
enforced: z.boolean(),
|
|
2869
|
-
});
|
|
2870
|
-
export function oneHundredAndTwentyEightToJSON(oneHundredAndTwentyEight) {
|
|
2871
|
-
return JSON.stringify(OneHundredAndTwentyEight$outboundSchema.parse(oneHundredAndTwentyEight));
|
|
2872
|
-
}
|
|
2873
|
-
export function oneHundredAndTwentyEightFromJSON(jsonString) {
|
|
2874
|
-
return safeParse(jsonString, (x) => OneHundredAndTwentyEight$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndTwentyEight' from JSON`);
|
|
2875
|
-
}
|
|
2876
|
-
/** @internal */
|
|
2877
|
-
export const UserEventPayload127User$inboundSchema = z.object({
|
|
2878
|
+
export const UserEventPayload128User$inboundSchema = z.object({
|
|
2878
2879
|
id: types.string(),
|
|
2879
2880
|
username: types.string(),
|
|
2880
2881
|
});
|
|
2881
2882
|
/** @internal */
|
|
2882
|
-
export const
|
|
2883
|
+
export const UserEventPayload128User$outboundSchema = z.object({
|
|
2883
2884
|
id: z.string(),
|
|
2884
2885
|
username: z.string(),
|
|
2885
2886
|
});
|
|
2886
|
-
export function
|
|
2887
|
-
return JSON.stringify(
|
|
2887
|
+
export function userEventPayload128UserToJSON(userEventPayload128User) {
|
|
2888
|
+
return JSON.stringify(UserEventPayload128User$outboundSchema.parse(userEventPayload128User));
|
|
2888
2889
|
}
|
|
2889
|
-
export function
|
|
2890
|
-
return safeParse(jsonString, (x) =>
|
|
2890
|
+
export function userEventPayload128UserFromJSON(jsonString) {
|
|
2891
|
+
return safeParse(jsonString, (x) => UserEventPayload128User$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload128User' from JSON`);
|
|
2891
2892
|
}
|
|
2892
2893
|
/** @internal */
|
|
2893
|
-
export const
|
|
2894
|
+
export const OneHundredAndTwentyEight$inboundSchema = z.object({
|
|
2894
2895
|
entitlement: types.string(),
|
|
2895
|
-
user: z.lazy(() =>
|
|
2896
|
+
user: z.lazy(() => UserEventPayload128User$inboundSchema),
|
|
2896
2897
|
previousCanceledAt: types.optional(types.string()),
|
|
2897
2898
|
});
|
|
2898
2899
|
/** @internal */
|
|
2899
|
-
export const
|
|
2900
|
+
export const OneHundredAndTwentyEight$outboundSchema = z.object({
|
|
2900
2901
|
entitlement: z.string(),
|
|
2901
|
-
user: z.lazy(() =>
|
|
2902
|
+
user: z.lazy(() => UserEventPayload128User$outboundSchema),
|
|
2902
2903
|
previousCanceledAt: z.string().optional(),
|
|
2903
2904
|
});
|
|
2904
|
-
export function
|
|
2905
|
-
return JSON.stringify(
|
|
2905
|
+
export function oneHundredAndTwentyEightToJSON(oneHundredAndTwentyEight) {
|
|
2906
|
+
return JSON.stringify(OneHundredAndTwentyEight$outboundSchema.parse(oneHundredAndTwentyEight));
|
|
2906
2907
|
}
|
|
2907
|
-
export function
|
|
2908
|
-
return safeParse(jsonString, (x) =>
|
|
2908
|
+
export function oneHundredAndTwentyEightFromJSON(jsonString) {
|
|
2909
|
+
return safeParse(jsonString, (x) => OneHundredAndTwentyEight$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndTwentyEight' from JSON`);
|
|
2909
2910
|
}
|
|
2910
2911
|
/** @internal */
|
|
2911
2912
|
export const UserEventPayloadUser$inboundSchema = z.object({
|
|
@@ -2924,20 +2925,20 @@ export function userEventPayloadUserFromJSON(jsonString) {
|
|
|
2924
2925
|
return safeParse(jsonString, (x) => UserEventPayloadUser$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayloadUser' from JSON`);
|
|
2925
2926
|
}
|
|
2926
2927
|
/** @internal */
|
|
2927
|
-
export const
|
|
2928
|
+
export const OneHundredAndTwentySeven$inboundSchema = z.object({
|
|
2928
2929
|
entitlement: types.string(),
|
|
2929
2930
|
user: z.lazy(() => UserEventPayloadUser$inboundSchema),
|
|
2930
2931
|
});
|
|
2931
2932
|
/** @internal */
|
|
2932
|
-
export const
|
|
2933
|
+
export const OneHundredAndTwentySeven$outboundSchema = z.object({
|
|
2933
2934
|
entitlement: z.string(),
|
|
2934
2935
|
user: z.lazy(() => UserEventPayloadUser$outboundSchema),
|
|
2935
2936
|
});
|
|
2936
|
-
export function
|
|
2937
|
-
return JSON.stringify(
|
|
2937
|
+
export function oneHundredAndTwentySevenToJSON(oneHundredAndTwentySeven) {
|
|
2938
|
+
return JSON.stringify(OneHundredAndTwentySeven$outboundSchema.parse(oneHundredAndTwentySeven));
|
|
2938
2939
|
}
|
|
2939
|
-
export function
|
|
2940
|
-
return safeParse(jsonString, (x) =>
|
|
2940
|
+
export function oneHundredAndTwentySevenFromJSON(jsonString) {
|
|
2941
|
+
return safeParse(jsonString, (x) => OneHundredAndTwentySeven$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndTwentySeven' from JSON`);
|
|
2941
2942
|
}
|
|
2942
2943
|
/** @internal */
|
|
2943
2944
|
export const UpdatedUser$inboundSchema = z.object({
|
|
@@ -2956,7 +2957,7 @@ export function updatedUserFromJSON(jsonString) {
|
|
|
2956
2957
|
return safeParse(jsonString, (x) => UpdatedUser$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UpdatedUser' from JSON`);
|
|
2957
2958
|
}
|
|
2958
2959
|
/** @internal */
|
|
2959
|
-
export const
|
|
2960
|
+
export const OneHundredAndTwentySix$inboundSchema = z.object({
|
|
2960
2961
|
directoryType: types.optional(types.string()),
|
|
2961
2962
|
updatedUser: types.optional(z.lazy(() => UpdatedUser$inboundSchema)),
|
|
2962
2963
|
role: types.optional(types.string()),
|
|
@@ -2964,21 +2965,21 @@ export const OneHundredAndTwentyFive$inboundSchema = z.object({
|
|
|
2964
2965
|
updatedUid: types.optional(types.string()),
|
|
2965
2966
|
});
|
|
2966
2967
|
/** @internal */
|
|
2967
|
-
export const
|
|
2968
|
+
export const OneHundredAndTwentySix$outboundSchema = z.object({
|
|
2968
2969
|
directoryType: z.string().optional(),
|
|
2969
2970
|
updatedUser: z.lazy(() => UpdatedUser$outboundSchema).optional(),
|
|
2970
2971
|
role: z.string().optional(),
|
|
2971
2972
|
previousRole: z.string(),
|
|
2972
2973
|
updatedUid: z.string().optional(),
|
|
2973
2974
|
});
|
|
2974
|
-
export function
|
|
2975
|
-
return JSON.stringify(
|
|
2975
|
+
export function oneHundredAndTwentySixToJSON(oneHundredAndTwentySix) {
|
|
2976
|
+
return JSON.stringify(OneHundredAndTwentySix$outboundSchema.parse(oneHundredAndTwentySix));
|
|
2976
2977
|
}
|
|
2977
|
-
export function
|
|
2978
|
-
return safeParse(jsonString, (x) =>
|
|
2978
|
+
export function oneHundredAndTwentySixFromJSON(jsonString) {
|
|
2979
|
+
return safeParse(jsonString, (x) => OneHundredAndTwentySix$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndTwentySix' from JSON`);
|
|
2979
2980
|
}
|
|
2980
2981
|
/** @internal */
|
|
2981
|
-
export const
|
|
2982
|
+
export const OneHundredAndTwentyFive$inboundSchema = z.object({
|
|
2982
2983
|
role: types.optional(types.string()),
|
|
2983
2984
|
uid: types.string(),
|
|
2984
2985
|
origin: types.optional(types.string()),
|
|
@@ -2987,7 +2988,7 @@ export const OneHundredAndTwentyFour$inboundSchema = z.object({
|
|
|
2987
2988
|
entitlements: types.optional(z.array(types.string())),
|
|
2988
2989
|
});
|
|
2989
2990
|
/** @internal */
|
|
2990
|
-
export const
|
|
2991
|
+
export const OneHundredAndTwentyFive$outboundSchema = z.object({
|
|
2991
2992
|
role: z.string().optional(),
|
|
2992
2993
|
uid: z.string(),
|
|
2993
2994
|
origin: z.string().optional(),
|
|
@@ -2995,11 +2996,11 @@ export const OneHundredAndTwentyFour$outboundSchema = z.object({
|
|
|
2995
2996
|
teamPermissions: z.array(z.string()).optional(),
|
|
2996
2997
|
entitlements: z.array(z.string()).optional(),
|
|
2997
2998
|
});
|
|
2998
|
-
export function
|
|
2999
|
-
return JSON.stringify(
|
|
2999
|
+
export function oneHundredAndTwentyFiveToJSON(oneHundredAndTwentyFive) {
|
|
3000
|
+
return JSON.stringify(OneHundredAndTwentyFive$outboundSchema.parse(oneHundredAndTwentyFive));
|
|
3000
3001
|
}
|
|
3001
|
-
export function
|
|
3002
|
-
return safeParse(jsonString, (x) =>
|
|
3002
|
+
export function oneHundredAndTwentyFiveFromJSON(jsonString) {
|
|
3003
|
+
return safeParse(jsonString, (x) => OneHundredAndTwentyFive$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndTwentyFive' from JSON`);
|
|
3003
3004
|
}
|
|
3004
3005
|
/** @internal */
|
|
3005
3006
|
export const DeletedUser$inboundSchema = z.object({
|
|
@@ -3032,7 +3033,7 @@ export const NewPlan$inboundSchema = z
|
|
|
3032
3033
|
/** @internal */
|
|
3033
3034
|
export const NewPlan$outboundSchema = NewPlan$inboundSchema;
|
|
3034
3035
|
/** @internal */
|
|
3035
|
-
export const
|
|
3036
|
+
export const OneHundredAndTwentyFour$inboundSchema = z.object({
|
|
3036
3037
|
deletedUser: types.optional(z.lazy(() => DeletedUser$inboundSchema)),
|
|
3037
3038
|
deletedUid: types.optional(types.string()),
|
|
3038
3039
|
githubUsername: z.nullable(types.string()).optional(),
|
|
@@ -3046,7 +3047,7 @@ export const OneHundredAndTwentyThree$inboundSchema = z.object({
|
|
|
3046
3047
|
automated: types.optional(types.boolean()),
|
|
3047
3048
|
});
|
|
3048
3049
|
/** @internal */
|
|
3049
|
-
export const
|
|
3050
|
+
export const OneHundredAndTwentyFour$outboundSchema = z.object({
|
|
3050
3051
|
deletedUser: z.lazy(() => DeletedUser$outboundSchema).optional(),
|
|
3051
3052
|
deletedUid: z.string().optional(),
|
|
3052
3053
|
githubUsername: z.nullable(z.string()).optional(),
|
|
@@ -3059,11 +3060,11 @@ export const OneHundredAndTwentyThree$outboundSchema = z.object({
|
|
|
3059
3060
|
newPlan: NewPlan$outboundSchema.optional(),
|
|
3060
3061
|
automated: z.boolean().optional(),
|
|
3061
3062
|
});
|
|
3062
|
-
export function
|
|
3063
|
-
return JSON.stringify(
|
|
3063
|
+
export function oneHundredAndTwentyFourToJSON(oneHundredAndTwentyFour) {
|
|
3064
|
+
return JSON.stringify(OneHundredAndTwentyFour$outboundSchema.parse(oneHundredAndTwentyFour));
|
|
3064
3065
|
}
|
|
3065
|
-
export function
|
|
3066
|
-
return safeParse(jsonString, (x) =>
|
|
3066
|
+
export function oneHundredAndTwentyFourFromJSON(jsonString) {
|
|
3067
|
+
return safeParse(jsonString, (x) => OneHundredAndTwentyFour$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndTwentyFour' from JSON`);
|
|
3067
3068
|
}
|
|
3068
3069
|
/** @internal */
|
|
3069
3070
|
export const InvitedUser$inboundSchema = z.object({
|
|
@@ -3082,7 +3083,7 @@ export function invitedUserFromJSON(jsonString) {
|
|
|
3082
3083
|
return safeParse(jsonString, (x) => InvitedUser$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'InvitedUser' from JSON`);
|
|
3083
3084
|
}
|
|
3084
3085
|
/** @internal */
|
|
3085
|
-
export const
|
|
3086
|
+
export const OneHundredAndTwentyThree$inboundSchema = z.object({
|
|
3086
3087
|
directoryType: types.optional(types.string()),
|
|
3087
3088
|
ssoType: types.optional(types.string()),
|
|
3088
3089
|
invitedUser: types.optional(z.lazy(() => InvitedUser$inboundSchema)),
|
|
@@ -3092,7 +3093,7 @@ export const OneHundredAndTwentyTwo$inboundSchema = z.object({
|
|
|
3092
3093
|
invitedUid: types.optional(types.string()),
|
|
3093
3094
|
});
|
|
3094
3095
|
/** @internal */
|
|
3095
|
-
export const
|
|
3096
|
+
export const OneHundredAndTwentyThree$outboundSchema = z.object({
|
|
3096
3097
|
directoryType: z.string().optional(),
|
|
3097
3098
|
ssoType: z.string().optional(),
|
|
3098
3099
|
invitedUser: z.lazy(() => InvitedUser$outboundSchema).optional(),
|
|
@@ -3101,11 +3102,11 @@ export const OneHundredAndTwentyTwo$outboundSchema = z.object({
|
|
|
3101
3102
|
entitlements: z.array(z.string()).optional(),
|
|
3102
3103
|
invitedUid: z.string().optional(),
|
|
3103
3104
|
});
|
|
3104
|
-
export function
|
|
3105
|
-
return JSON.stringify(
|
|
3105
|
+
export function oneHundredAndTwentyThreeToJSON(oneHundredAndTwentyThree) {
|
|
3106
|
+
return JSON.stringify(OneHundredAndTwentyThree$outboundSchema.parse(oneHundredAndTwentyThree));
|
|
3106
3107
|
}
|
|
3107
|
-
export function
|
|
3108
|
-
return safeParse(jsonString, (x) =>
|
|
3108
|
+
export function oneHundredAndTwentyThreeFromJSON(jsonString) {
|
|
3109
|
+
return safeParse(jsonString, (x) => OneHundredAndTwentyThree$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndTwentyThree' from JSON`);
|
|
3109
3110
|
}
|
|
3110
3111
|
/** @internal */
|
|
3111
3112
|
export const Reasons$inboundSchema = z.object({
|
|
@@ -3124,18 +3125,18 @@ export function reasonsFromJSON(jsonString) {
|
|
|
3124
3125
|
return safeParse(jsonString, (x) => Reasons$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Reasons' from JSON`);
|
|
3125
3126
|
}
|
|
3126
3127
|
/** @internal */
|
|
3127
|
-
export const
|
|
3128
|
+
export const UserEventPayload122Role$inboundSchema = z.nativeEnum(UserEventPayload122Role);
|
|
3128
3129
|
/** @internal */
|
|
3129
|
-
export const
|
|
3130
|
+
export const UserEventPayload122Role$outboundSchema = UserEventPayload122Role$inboundSchema;
|
|
3130
3131
|
/** @internal */
|
|
3131
3132
|
export const PayloadRemovedUsers$inboundSchema = z.object({
|
|
3132
|
-
role:
|
|
3133
|
+
role: UserEventPayload122Role$inboundSchema,
|
|
3133
3134
|
confirmed: types.boolean(),
|
|
3134
3135
|
confirmedAt: types.optional(types.number()),
|
|
3135
3136
|
});
|
|
3136
3137
|
/** @internal */
|
|
3137
3138
|
export const PayloadRemovedUsers$outboundSchema = z.object({
|
|
3138
|
-
role:
|
|
3139
|
+
role: UserEventPayload122Role$outboundSchema,
|
|
3139
3140
|
confirmed: z.boolean(),
|
|
3140
3141
|
confirmedAt: z.number().optional(),
|
|
3141
3142
|
});
|
|
@@ -3146,7 +3147,7 @@ export function payloadRemovedUsersFromJSON(jsonString) {
|
|
|
3146
3147
|
return safeParse(jsonString, (x) => PayloadRemovedUsers$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PayloadRemovedUsers' from JSON`);
|
|
3147
3148
|
}
|
|
3148
3149
|
/** @internal */
|
|
3149
|
-
export const
|
|
3150
|
+
export const OneHundredAndTwentyTwo$inboundSchema = z.object({
|
|
3150
3151
|
slug: types.string(),
|
|
3151
3152
|
teamId: types.string(),
|
|
3152
3153
|
by: types.string(),
|
|
@@ -3157,7 +3158,7 @@ export const OneHundredAndTwentyOne$inboundSchema = z.object({
|
|
|
3157
3158
|
timestamp: types.optional(types.number()),
|
|
3158
3159
|
});
|
|
3159
3160
|
/** @internal */
|
|
3160
|
-
export const
|
|
3161
|
+
export const OneHundredAndTwentyTwo$outboundSchema = z.object({
|
|
3161
3162
|
slug: z.string(),
|
|
3162
3163
|
teamId: z.string(),
|
|
3163
3164
|
by: z.string(),
|
|
@@ -3168,25 +3169,25 @@ export const OneHundredAndTwentyOne$outboundSchema = z.object({
|
|
|
3168
3169
|
removedMemberCount: z.number().optional(),
|
|
3169
3170
|
timestamp: z.number().optional(),
|
|
3170
3171
|
});
|
|
3171
|
-
export function
|
|
3172
|
-
return JSON.stringify(
|
|
3172
|
+
export function oneHundredAndTwentyTwoToJSON(oneHundredAndTwentyTwo) {
|
|
3173
|
+
return JSON.stringify(OneHundredAndTwentyTwo$outboundSchema.parse(oneHundredAndTwentyTwo));
|
|
3173
3174
|
}
|
|
3174
|
-
export function
|
|
3175
|
-
return safeParse(jsonString, (x) =>
|
|
3175
|
+
export function oneHundredAndTwentyTwoFromJSON(jsonString) {
|
|
3176
|
+
return safeParse(jsonString, (x) => OneHundredAndTwentyTwo$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndTwentyTwo' from JSON`);
|
|
3176
3177
|
}
|
|
3177
3178
|
/** @internal */
|
|
3178
|
-
export const
|
|
3179
|
+
export const OneHundredAndTwentyOne$inboundSchema = z.object({
|
|
3179
3180
|
slug: types.string(),
|
|
3180
3181
|
});
|
|
3181
3182
|
/** @internal */
|
|
3182
|
-
export const
|
|
3183
|
+
export const OneHundredAndTwentyOne$outboundSchema = z.object({
|
|
3183
3184
|
slug: z.string(),
|
|
3184
3185
|
});
|
|
3185
|
-
export function
|
|
3186
|
-
return JSON.stringify(
|
|
3186
|
+
export function oneHundredAndTwentyOneToJSON(oneHundredAndTwentyOne) {
|
|
3187
|
+
return JSON.stringify(OneHundredAndTwentyOne$outboundSchema.parse(oneHundredAndTwentyOne));
|
|
3187
3188
|
}
|
|
3188
|
-
export function
|
|
3189
|
-
return safeParse(jsonString, (x) =>
|
|
3189
|
+
export function oneHundredAndTwentyOneFromJSON(jsonString) {
|
|
3190
|
+
return safeParse(jsonString, (x) => OneHundredAndTwentyOne$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndTwentyOne' from JSON`);
|
|
3190
3191
|
}
|
|
3191
3192
|
/** @internal */
|
|
3192
3193
|
export const Store$inboundSchema = z
|
|
@@ -3206,20 +3207,20 @@ export function storeFromJSON(jsonString) {
|
|
|
3206
3207
|
return safeParse(jsonString, (x) => Store$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Store' from JSON`);
|
|
3207
3208
|
}
|
|
3208
3209
|
/** @internal */
|
|
3209
|
-
export const
|
|
3210
|
+
export const OneHundredAndTwenty$inboundSchema = z.object({
|
|
3210
3211
|
store: z.lazy(() => Store$inboundSchema),
|
|
3211
3212
|
ownerId: types.optional(types.string()),
|
|
3212
3213
|
});
|
|
3213
3214
|
/** @internal */
|
|
3214
|
-
export const
|
|
3215
|
+
export const OneHundredAndTwenty$outboundSchema = z.object({
|
|
3215
3216
|
store: z.lazy(() => Store$outboundSchema),
|
|
3216
3217
|
ownerId: z.string().optional(),
|
|
3217
3218
|
});
|
|
3218
|
-
export function
|
|
3219
|
-
return JSON.stringify(
|
|
3219
|
+
export function oneHundredAndTwentyToJSON(oneHundredAndTwenty) {
|
|
3220
|
+
return JSON.stringify(OneHundredAndTwenty$outboundSchema.parse(oneHundredAndTwenty));
|
|
3220
3221
|
}
|
|
3221
|
-
export function
|
|
3222
|
-
return safeParse(jsonString, (x) =>
|
|
3222
|
+
export function oneHundredAndTwentyFromJSON(jsonString) {
|
|
3223
|
+
return safeParse(jsonString, (x) => OneHundredAndTwenty$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndTwenty' from JSON`);
|
|
3223
3224
|
}
|
|
3224
3225
|
/** @internal */
|
|
3225
3226
|
export const StoreType$inboundSchema = z
|
|
@@ -3227,25 +3228,25 @@ export const StoreType$inboundSchema = z
|
|
|
3227
3228
|
/** @internal */
|
|
3228
3229
|
export const StoreType$outboundSchema = StoreType$inboundSchema;
|
|
3229
3230
|
/** @internal */
|
|
3230
|
-
export const
|
|
3231
|
+
export const OneHundredAndNineteen$inboundSchema = z.object({
|
|
3231
3232
|
storeType: StoreType$inboundSchema,
|
|
3232
3233
|
});
|
|
3233
3234
|
/** @internal */
|
|
3234
|
-
export const
|
|
3235
|
+
export const OneHundredAndNineteen$outboundSchema = z.object({
|
|
3235
3236
|
storeType: StoreType$outboundSchema,
|
|
3236
3237
|
});
|
|
3237
|
-
export function
|
|
3238
|
-
return JSON.stringify(
|
|
3238
|
+
export function oneHundredAndNineteenToJSON(oneHundredAndNineteen) {
|
|
3239
|
+
return JSON.stringify(OneHundredAndNineteen$outboundSchema.parse(oneHundredAndNineteen));
|
|
3239
3240
|
}
|
|
3240
|
-
export function
|
|
3241
|
-
return safeParse(jsonString, (x) =>
|
|
3241
|
+
export function oneHundredAndNineteenFromJSON(jsonString) {
|
|
3242
|
+
return safeParse(jsonString, (x) => OneHundredAndNineteen$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndNineteen' from JSON`);
|
|
3242
3243
|
}
|
|
3243
3244
|
/** @internal */
|
|
3244
3245
|
export const UserEventPayloadType$inboundSchema = z.nativeEnum(UserEventPayloadType);
|
|
3245
3246
|
/** @internal */
|
|
3246
3247
|
export const UserEventPayloadType$outboundSchema = UserEventPayloadType$inboundSchema;
|
|
3247
3248
|
/** @internal */
|
|
3248
|
-
export const
|
|
3249
|
+
export const OneHundredAndEighteen$inboundSchema = z.object({
|
|
3249
3250
|
id: types.string(),
|
|
3250
3251
|
name: types.optional(types.string()),
|
|
3251
3252
|
computeUnitsMax: types.optional(types.number()),
|
|
@@ -3254,7 +3255,7 @@ export const OneHundredAndSeventeen$inboundSchema = z.object({
|
|
|
3254
3255
|
type: UserEventPayloadType$inboundSchema,
|
|
3255
3256
|
});
|
|
3256
3257
|
/** @internal */
|
|
3257
|
-
export const
|
|
3258
|
+
export const OneHundredAndEighteen$outboundSchema = z.object({
|
|
3258
3259
|
id: z.string(),
|
|
3259
3260
|
name: z.string().optional(),
|
|
3260
3261
|
computeUnitsMax: z.number().optional(),
|
|
@@ -3262,37 +3263,37 @@ export const OneHundredAndSeventeen$outboundSchema = z.object({
|
|
|
3262
3263
|
suspendTimeoutSeconds: z.number().optional(),
|
|
3263
3264
|
type: UserEventPayloadType$outboundSchema,
|
|
3264
3265
|
});
|
|
3265
|
-
export function
|
|
3266
|
-
return JSON.stringify(
|
|
3266
|
+
export function oneHundredAndEighteenToJSON(oneHundredAndEighteen) {
|
|
3267
|
+
return JSON.stringify(OneHundredAndEighteen$outboundSchema.parse(oneHundredAndEighteen));
|
|
3267
3268
|
}
|
|
3268
|
-
export function
|
|
3269
|
-
return safeParse(jsonString, (x) =>
|
|
3269
|
+
export function oneHundredAndEighteenFromJSON(jsonString) {
|
|
3270
|
+
return safeParse(jsonString, (x) => OneHundredAndEighteen$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndEighteen' from JSON`);
|
|
3270
3271
|
}
|
|
3271
3272
|
/** @internal */
|
|
3272
|
-
export const
|
|
3273
|
+
export const OneHundredAndSeventeen$inboundSchema = z.object({
|
|
3273
3274
|
webhookUrl: types.optional(types.string()),
|
|
3274
3275
|
});
|
|
3275
3276
|
/** @internal */
|
|
3276
|
-
export const
|
|
3277
|
+
export const OneHundredAndSeventeen$outboundSchema = z.object({
|
|
3277
3278
|
webhookUrl: z.string().optional(),
|
|
3278
3279
|
});
|
|
3279
|
-
export function
|
|
3280
|
-
return JSON.stringify(
|
|
3280
|
+
export function oneHundredAndSeventeenToJSON(oneHundredAndSeventeen) {
|
|
3281
|
+
return JSON.stringify(OneHundredAndSeventeen$outboundSchema.parse(oneHundredAndSeventeen));
|
|
3281
3282
|
}
|
|
3282
|
-
export function
|
|
3283
|
-
return safeParse(jsonString, (x) =>
|
|
3283
|
+
export function oneHundredAndSeventeenFromJSON(jsonString) {
|
|
3284
|
+
return safeParse(jsonString, (x) => OneHundredAndSeventeen$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndSeventeen' from JSON`);
|
|
3284
3285
|
}
|
|
3285
3286
|
/** @internal */
|
|
3286
|
-
export const
|
|
3287
|
+
export const UserEventPayload116Type$inboundSchema = z.nativeEnum(UserEventPayload116Type);
|
|
3287
3288
|
/** @internal */
|
|
3288
|
-
export const
|
|
3289
|
+
export const UserEventPayload116Type$outboundSchema = UserEventPayload116Type$inboundSchema;
|
|
3289
3290
|
/** @internal */
|
|
3290
3291
|
export const PayloadPricingPlan$inboundSchema = z.nativeEnum(PayloadPricingPlan);
|
|
3291
3292
|
/** @internal */
|
|
3292
3293
|
export const PayloadPricingPlan$outboundSchema = PayloadPricingPlan$inboundSchema;
|
|
3293
3294
|
/** @internal */
|
|
3294
3295
|
export const UserEventPayloadBudget$inboundSchema = z.object({
|
|
3295
|
-
type:
|
|
3296
|
+
type: UserEventPayload116Type$inboundSchema,
|
|
3296
3297
|
fixedBudget: types.number(),
|
|
3297
3298
|
previousSpend: z.array(types.number()),
|
|
3298
3299
|
notifiedAt: z.array(types.number()),
|
|
@@ -3308,7 +3309,7 @@ export const UserEventPayloadBudget$inboundSchema = z.object({
|
|
|
3308
3309
|
});
|
|
3309
3310
|
/** @internal */
|
|
3310
3311
|
export const UserEventPayloadBudget$outboundSchema = z.object({
|
|
3311
|
-
type:
|
|
3312
|
+
type: UserEventPayload116Type$outboundSchema,
|
|
3312
3313
|
fixedBudget: z.number(),
|
|
3313
3314
|
previousSpend: z.array(z.number()),
|
|
3314
3315
|
notifiedAt: z.array(z.number()),
|
|
@@ -3329,25 +3330,25 @@ export function userEventPayloadBudgetFromJSON(jsonString) {
|
|
|
3329
3330
|
return safeParse(jsonString, (x) => UserEventPayloadBudget$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayloadBudget' from JSON`);
|
|
3330
3331
|
}
|
|
3331
3332
|
/** @internal */
|
|
3332
|
-
export const
|
|
3333
|
+
export const OneHundredAndSixteen$inboundSchema = z.object({
|
|
3333
3334
|
budget: z.lazy(() => UserEventPayloadBudget$inboundSchema),
|
|
3334
3335
|
webhookUrl: types.optional(types.string()),
|
|
3335
3336
|
});
|
|
3336
3337
|
/** @internal */
|
|
3337
|
-
export const
|
|
3338
|
+
export const OneHundredAndSixteen$outboundSchema = z.object({
|
|
3338
3339
|
budget: z.lazy(() => UserEventPayloadBudget$outboundSchema),
|
|
3339
3340
|
webhookUrl: z.string().optional(),
|
|
3340
3341
|
});
|
|
3341
|
-
export function
|
|
3342
|
-
return JSON.stringify(
|
|
3342
|
+
export function oneHundredAndSixteenToJSON(oneHundredAndSixteen) {
|
|
3343
|
+
return JSON.stringify(OneHundredAndSixteen$outboundSchema.parse(oneHundredAndSixteen));
|
|
3343
3344
|
}
|
|
3344
|
-
export function
|
|
3345
|
-
return safeParse(jsonString, (x) =>
|
|
3345
|
+
export function oneHundredAndSixteenFromJSON(jsonString) {
|
|
3346
|
+
return safeParse(jsonString, (x) => OneHundredAndSixteen$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndSixteen' from JSON`);
|
|
3346
3347
|
}
|
|
3347
3348
|
/** @internal */
|
|
3348
|
-
export const
|
|
3349
|
+
export const UserEventPayload115Type$inboundSchema = z.nativeEnum(UserEventPayload115Type);
|
|
3349
3350
|
/** @internal */
|
|
3350
|
-
export const
|
|
3351
|
+
export const UserEventPayload115Type$outboundSchema = UserEventPayload115Type$inboundSchema;
|
|
3351
3352
|
/** @internal */
|
|
3352
3353
|
export const PricingPlan$inboundSchema = z
|
|
3353
3354
|
.nativeEnum(PricingPlan);
|
|
@@ -3355,7 +3356,7 @@ export const PricingPlan$inboundSchema = z
|
|
|
3355
3356
|
export const PricingPlan$outboundSchema = PricingPlan$inboundSchema;
|
|
3356
3357
|
/** @internal */
|
|
3357
3358
|
export const PayloadBudget$inboundSchema = z.object({
|
|
3358
|
-
type:
|
|
3359
|
+
type: UserEventPayload115Type$inboundSchema,
|
|
3359
3360
|
fixedBudget: types.number(),
|
|
3360
3361
|
previousSpend: z.array(types.number()),
|
|
3361
3362
|
notifiedAt: z.array(types.number()),
|
|
@@ -3371,7 +3372,7 @@ export const PayloadBudget$inboundSchema = z.object({
|
|
|
3371
3372
|
});
|
|
3372
3373
|
/** @internal */
|
|
3373
3374
|
export const PayloadBudget$outboundSchema = z.object({
|
|
3374
|
-
type:
|
|
3375
|
+
type: UserEventPayload115Type$outboundSchema,
|
|
3375
3376
|
fixedBudget: z.number(),
|
|
3376
3377
|
previousSpend: z.array(z.number()),
|
|
3377
3378
|
notifiedAt: z.array(z.number()),
|
|
@@ -3392,30 +3393,30 @@ export function payloadBudgetFromJSON(jsonString) {
|
|
|
3392
3393
|
return safeParse(jsonString, (x) => PayloadBudget$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PayloadBudget' from JSON`);
|
|
3393
3394
|
}
|
|
3394
3395
|
/** @internal */
|
|
3395
|
-
export const
|
|
3396
|
+
export const OneHundredAndFifteen$inboundSchema = z.object({
|
|
3396
3397
|
budget: z.lazy(() => PayloadBudget$inboundSchema),
|
|
3397
3398
|
});
|
|
3398
3399
|
/** @internal */
|
|
3399
|
-
export const
|
|
3400
|
+
export const OneHundredAndFifteen$outboundSchema = z.object({
|
|
3400
3401
|
budget: z.lazy(() => PayloadBudget$outboundSchema),
|
|
3401
3402
|
});
|
|
3402
|
-
export function
|
|
3403
|
-
return JSON.stringify(
|
|
3403
|
+
export function oneHundredAndFifteenToJSON(oneHundredAndFifteen) {
|
|
3404
|
+
return JSON.stringify(OneHundredAndFifteen$outboundSchema.parse(oneHundredAndFifteen));
|
|
3404
3405
|
}
|
|
3405
|
-
export function
|
|
3406
|
-
return safeParse(jsonString, (x) =>
|
|
3406
|
+
export function oneHundredAndFifteenFromJSON(jsonString) {
|
|
3407
|
+
return safeParse(jsonString, (x) => OneHundredAndFifteen$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndFifteen' from JSON`);
|
|
3407
3408
|
}
|
|
3408
3409
|
/** @internal */
|
|
3409
|
-
export const
|
|
3410
|
+
export const UserEventPayload114Type$inboundSchema = z.nativeEnum(UserEventPayload114Type);
|
|
3410
3411
|
/** @internal */
|
|
3411
|
-
export const
|
|
3412
|
+
export const UserEventPayload114Type$outboundSchema = UserEventPayload114Type$inboundSchema;
|
|
3412
3413
|
/** @internal */
|
|
3413
3414
|
export const UserEventPayloadPricingPlan$inboundSchema = z.nativeEnum(UserEventPayloadPricingPlan);
|
|
3414
3415
|
/** @internal */
|
|
3415
3416
|
export const UserEventPayloadPricingPlan$outboundSchema = UserEventPayloadPricingPlan$inboundSchema;
|
|
3416
3417
|
/** @internal */
|
|
3417
3418
|
export const BudgetItem$inboundSchema = z.object({
|
|
3418
|
-
type:
|
|
3419
|
+
type: UserEventPayload114Type$inboundSchema,
|
|
3419
3420
|
fixedBudget: types.number(),
|
|
3420
3421
|
previousSpend: z.array(types.number()),
|
|
3421
3422
|
notifiedAt: z.array(types.number()),
|
|
@@ -3431,7 +3432,7 @@ export const BudgetItem$inboundSchema = z.object({
|
|
|
3431
3432
|
});
|
|
3432
3433
|
/** @internal */
|
|
3433
3434
|
export const BudgetItem$outboundSchema = z.object({
|
|
3434
|
-
type:
|
|
3435
|
+
type: UserEventPayload114Type$outboundSchema,
|
|
3435
3436
|
fixedBudget: z.number(),
|
|
3436
3437
|
previousSpend: z.array(z.number()),
|
|
3437
3438
|
notifiedAt: z.array(z.number()),
|
|
@@ -3467,18 +3468,18 @@ export function budgetFromJSON(jsonString) {
|
|
|
3467
3468
|
return safeParse(jsonString, (x) => Budget$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Budget' from JSON`);
|
|
3468
3469
|
}
|
|
3469
3470
|
/** @internal */
|
|
3470
|
-
export const
|
|
3471
|
+
export const OneHundredAndFourteen$inboundSchema = z.object({
|
|
3471
3472
|
budget: z.lazy(() => Budget$inboundSchema),
|
|
3472
3473
|
});
|
|
3473
3474
|
/** @internal */
|
|
3474
|
-
export const
|
|
3475
|
+
export const OneHundredAndFourteen$outboundSchema = z.object({
|
|
3475
3476
|
budget: z.lazy(() => Budget$outboundSchema),
|
|
3476
3477
|
});
|
|
3477
|
-
export function
|
|
3478
|
-
return JSON.stringify(
|
|
3478
|
+
export function oneHundredAndFourteenToJSON(oneHundredAndFourteen) {
|
|
3479
|
+
return JSON.stringify(OneHundredAndFourteen$outboundSchema.parse(oneHundredAndFourteen));
|
|
3479
3480
|
}
|
|
3480
|
-
export function
|
|
3481
|
-
return safeParse(jsonString, (x) =>
|
|
3481
|
+
export function oneHundredAndFourteenFromJSON(jsonString) {
|
|
3482
|
+
return safeParse(jsonString, (x) => OneHundredAndFourteen$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndFourteen' from JSON`);
|
|
3482
3483
|
}
|
|
3483
3484
|
/** @internal */
|
|
3484
3485
|
export const ScalingRules$inboundSchema = z.object({
|
|
@@ -3497,56 +3498,56 @@ export function scalingRulesFromJSON(jsonString) {
|
|
|
3497
3498
|
return safeParse(jsonString, (x) => ScalingRules$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'ScalingRules' from JSON`);
|
|
3498
3499
|
}
|
|
3499
3500
|
/** @internal */
|
|
3500
|
-
export const
|
|
3501
|
+
export const OneHundredAndThirteen$inboundSchema = z.object({
|
|
3501
3502
|
scalingRules: z.record(z.lazy(() => ScalingRules$inboundSchema)),
|
|
3502
3503
|
min: types.number(),
|
|
3503
3504
|
max: types.number(),
|
|
3504
3505
|
url: types.string(),
|
|
3505
3506
|
});
|
|
3506
3507
|
/** @internal */
|
|
3507
|
-
export const
|
|
3508
|
+
export const OneHundredAndThirteen$outboundSchema = z.object({
|
|
3508
3509
|
scalingRules: z.record(z.lazy(() => ScalingRules$outboundSchema)),
|
|
3509
3510
|
min: z.number(),
|
|
3510
3511
|
max: z.number(),
|
|
3511
3512
|
url: z.string(),
|
|
3512
3513
|
});
|
|
3513
|
-
export function
|
|
3514
|
-
return JSON.stringify(
|
|
3514
|
+
export function oneHundredAndThirteenToJSON(oneHundredAndThirteen) {
|
|
3515
|
+
return JSON.stringify(OneHundredAndThirteen$outboundSchema.parse(oneHundredAndThirteen));
|
|
3515
3516
|
}
|
|
3516
|
-
export function
|
|
3517
|
-
return safeParse(jsonString, (x) =>
|
|
3517
|
+
export function oneHundredAndThirteenFromJSON(jsonString) {
|
|
3518
|
+
return safeParse(jsonString, (x) => OneHundredAndThirteen$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndThirteen' from JSON`);
|
|
3518
3519
|
}
|
|
3519
3520
|
/** @internal */
|
|
3520
|
-
export const
|
|
3521
|
+
export const OneHundredAndTwelve$inboundSchema = z.object({
|
|
3521
3522
|
bio: types.string(),
|
|
3522
3523
|
});
|
|
3523
3524
|
/** @internal */
|
|
3524
|
-
export const
|
|
3525
|
+
export const OneHundredAndTwelve$outboundSchema = z.object({
|
|
3525
3526
|
bio: z.string(),
|
|
3526
3527
|
});
|
|
3527
|
-
export function
|
|
3528
|
-
return JSON.stringify(
|
|
3528
|
+
export function oneHundredAndTwelveToJSON(oneHundredAndTwelve) {
|
|
3529
|
+
return JSON.stringify(OneHundredAndTwelve$outboundSchema.parse(oneHundredAndTwelve));
|
|
3529
3530
|
}
|
|
3530
|
-
export function
|
|
3531
|
-
return safeParse(jsonString, (x) =>
|
|
3531
|
+
export function oneHundredAndTwelveFromJSON(jsonString) {
|
|
3532
|
+
return safeParse(jsonString, (x) => OneHundredAndTwelve$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndTwelve' from JSON`);
|
|
3532
3533
|
}
|
|
3533
3534
|
/** @internal */
|
|
3534
|
-
export const
|
|
3535
|
+
export const OneHundredAndEleven$inboundSchema = z.object({
|
|
3535
3536
|
oldName: types.string(),
|
|
3536
3537
|
newName: types.string(),
|
|
3537
3538
|
uid: types.optional(types.string()),
|
|
3538
3539
|
});
|
|
3539
3540
|
/** @internal */
|
|
3540
|
-
export const
|
|
3541
|
+
export const OneHundredAndEleven$outboundSchema = z.object({
|
|
3541
3542
|
oldName: z.string(),
|
|
3542
3543
|
newName: z.string(),
|
|
3543
3544
|
uid: z.string().optional(),
|
|
3544
3545
|
});
|
|
3545
|
-
export function
|
|
3546
|
-
return JSON.stringify(
|
|
3546
|
+
export function oneHundredAndElevenToJSON(oneHundredAndEleven) {
|
|
3547
|
+
return JSON.stringify(OneHundredAndEleven$outboundSchema.parse(oneHundredAndEleven));
|
|
3547
3548
|
}
|
|
3548
|
-
export function
|
|
3549
|
-
return safeParse(jsonString, (x) =>
|
|
3549
|
+
export function oneHundredAndElevenFromJSON(jsonString) {
|
|
3550
|
+
return safeParse(jsonString, (x) => OneHundredAndEleven$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndEleven' from JSON`);
|
|
3550
3551
|
}
|
|
3551
3552
|
/** @internal */
|
|
3552
3553
|
export const Name2$inboundSchema = z
|
|
@@ -3574,36 +3575,36 @@ export function nameFromJSON(jsonString) {
|
|
|
3574
3575
|
return safeParse(jsonString, (x) => Name$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Name' from JSON`);
|
|
3575
3576
|
}
|
|
3576
3577
|
/** @internal */
|
|
3577
|
-
export const
|
|
3578
|
+
export const OneHundredAndTen$inboundSchema = z.object({
|
|
3578
3579
|
uid: types.string(),
|
|
3579
3580
|
name: smartUnion([z.lazy(() => Name2$inboundSchema), types.string()]),
|
|
3580
3581
|
});
|
|
3581
3582
|
/** @internal */
|
|
3582
|
-
export const
|
|
3583
|
+
export const OneHundredAndTen$outboundSchema = z.object({
|
|
3583
3584
|
uid: z.string(),
|
|
3584
3585
|
name: smartUnion([z.lazy(() => Name2$outboundSchema), z.string()]),
|
|
3585
3586
|
});
|
|
3586
|
-
export function
|
|
3587
|
-
return JSON.stringify(
|
|
3587
|
+
export function oneHundredAndTenToJSON(oneHundredAndTen) {
|
|
3588
|
+
return JSON.stringify(OneHundredAndTen$outboundSchema.parse(oneHundredAndTen));
|
|
3588
3589
|
}
|
|
3589
|
-
export function
|
|
3590
|
-
return safeParse(jsonString, (x) =>
|
|
3590
|
+
export function oneHundredAndTenFromJSON(jsonString) {
|
|
3591
|
+
return safeParse(jsonString, (x) => OneHundredAndTen$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndTen' from JSON`);
|
|
3591
3592
|
}
|
|
3592
3593
|
/** @internal */
|
|
3593
|
-
export const
|
|
3594
|
+
export const UserEventPayload109Team$inboundSchema = z.object({
|
|
3594
3595
|
id: types.string(),
|
|
3595
3596
|
name: types.optional(types.string()),
|
|
3596
3597
|
});
|
|
3597
3598
|
/** @internal */
|
|
3598
|
-
export const
|
|
3599
|
+
export const UserEventPayload109Team$outboundSchema = z.object({
|
|
3599
3600
|
id: z.string(),
|
|
3600
3601
|
name: z.string().optional(),
|
|
3601
3602
|
});
|
|
3602
|
-
export function
|
|
3603
|
-
return JSON.stringify(
|
|
3603
|
+
export function userEventPayload109TeamToJSON(userEventPayload109Team) {
|
|
3604
|
+
return JSON.stringify(UserEventPayload109Team$outboundSchema.parse(userEventPayload109Team));
|
|
3604
3605
|
}
|
|
3605
|
-
export function
|
|
3606
|
-
return safeParse(jsonString, (x) =>
|
|
3606
|
+
export function userEventPayload109TeamFromJSON(jsonString) {
|
|
3607
|
+
return safeParse(jsonString, (x) => UserEventPayload109Team$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload109Team' from JSON`);
|
|
3607
3608
|
}
|
|
3608
3609
|
/** @internal */
|
|
3609
3610
|
export const PayloadPreviousRule$inboundSchema = z.object({
|
|
@@ -3620,36 +3621,36 @@ export function payloadPreviousRuleFromJSON(jsonString) {
|
|
|
3620
3621
|
return safeParse(jsonString, (x) => PayloadPreviousRule$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PayloadPreviousRule' from JSON`);
|
|
3621
3622
|
}
|
|
3622
3623
|
/** @internal */
|
|
3623
|
-
export const
|
|
3624
|
-
team: z.lazy(() =>
|
|
3624
|
+
export const OneHundredAndNine$inboundSchema = z.object({
|
|
3625
|
+
team: z.lazy(() => UserEventPayload109Team$inboundSchema),
|
|
3625
3626
|
previousRule: z.lazy(() => PayloadPreviousRule$inboundSchema),
|
|
3626
3627
|
});
|
|
3627
3628
|
/** @internal */
|
|
3628
|
-
export const
|
|
3629
|
-
team: z.lazy(() =>
|
|
3629
|
+
export const OneHundredAndNine$outboundSchema = z.object({
|
|
3630
|
+
team: z.lazy(() => UserEventPayload109Team$outboundSchema),
|
|
3630
3631
|
previousRule: z.lazy(() => PayloadPreviousRule$outboundSchema),
|
|
3631
3632
|
});
|
|
3632
|
-
export function
|
|
3633
|
-
return JSON.stringify(
|
|
3633
|
+
export function oneHundredAndNineToJSON(oneHundredAndNine) {
|
|
3634
|
+
return JSON.stringify(OneHundredAndNine$outboundSchema.parse(oneHundredAndNine));
|
|
3634
3635
|
}
|
|
3635
|
-
export function
|
|
3636
|
-
return safeParse(jsonString, (x) =>
|
|
3636
|
+
export function oneHundredAndNineFromJSON(jsonString) {
|
|
3637
|
+
return safeParse(jsonString, (x) => OneHundredAndNine$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndNine' from JSON`);
|
|
3637
3638
|
}
|
|
3638
3639
|
/** @internal */
|
|
3639
|
-
export const
|
|
3640
|
+
export const UserEventPayload108Team$inboundSchema = z.object({
|
|
3640
3641
|
id: types.string(),
|
|
3641
3642
|
name: types.optional(types.string()),
|
|
3642
3643
|
});
|
|
3643
3644
|
/** @internal */
|
|
3644
|
-
export const
|
|
3645
|
+
export const UserEventPayload108Team$outboundSchema = z.object({
|
|
3645
3646
|
id: z.string(),
|
|
3646
3647
|
name: z.string().optional(),
|
|
3647
3648
|
});
|
|
3648
|
-
export function
|
|
3649
|
-
return JSON.stringify(
|
|
3649
|
+
export function userEventPayload108TeamToJSON(userEventPayload108Team) {
|
|
3650
|
+
return JSON.stringify(UserEventPayload108Team$outboundSchema.parse(userEventPayload108Team));
|
|
3650
3651
|
}
|
|
3651
|
-
export function
|
|
3652
|
-
return safeParse(jsonString, (x) =>
|
|
3652
|
+
export function userEventPayload108TeamFromJSON(jsonString) {
|
|
3653
|
+
return safeParse(jsonString, (x) => UserEventPayload108Team$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload108Team' from JSON`);
|
|
3653
3654
|
}
|
|
3654
3655
|
/** @internal */
|
|
3655
3656
|
export const PreviousRule$inboundSchema = z.object({
|
|
@@ -3680,17 +3681,31 @@ export function nextRuleFromJSON(jsonString) {
|
|
|
3680
3681
|
return safeParse(jsonString, (x) => NextRule$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'NextRule' from JSON`);
|
|
3681
3682
|
}
|
|
3682
3683
|
/** @internal */
|
|
3683
|
-
export const
|
|
3684
|
-
team: z.lazy(() =>
|
|
3684
|
+
export const OneHundredAndEight$inboundSchema = z.object({
|
|
3685
|
+
team: z.lazy(() => UserEventPayload108Team$inboundSchema),
|
|
3685
3686
|
previousRule: types.optional(z.lazy(() => PreviousRule$inboundSchema)),
|
|
3686
3687
|
nextRule: types.optional(z.lazy(() => NextRule$inboundSchema)),
|
|
3687
3688
|
});
|
|
3688
3689
|
/** @internal */
|
|
3689
|
-
export const
|
|
3690
|
-
team: z.lazy(() =>
|
|
3690
|
+
export const OneHundredAndEight$outboundSchema = z.object({
|
|
3691
|
+
team: z.lazy(() => UserEventPayload108Team$outboundSchema),
|
|
3691
3692
|
previousRule: z.lazy(() => PreviousRule$outboundSchema).optional(),
|
|
3692
3693
|
nextRule: z.lazy(() => NextRule$outboundSchema).optional(),
|
|
3693
3694
|
});
|
|
3695
|
+
export function oneHundredAndEightToJSON(oneHundredAndEight) {
|
|
3696
|
+
return JSON.stringify(OneHundredAndEight$outboundSchema.parse(oneHundredAndEight));
|
|
3697
|
+
}
|
|
3698
|
+
export function oneHundredAndEightFromJSON(jsonString) {
|
|
3699
|
+
return safeParse(jsonString, (x) => OneHundredAndEight$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundredAndEight' from JSON`);
|
|
3700
|
+
}
|
|
3701
|
+
/** @internal */
|
|
3702
|
+
export const OneHundredAndSeven$inboundSchema = z.object({
|
|
3703
|
+
email: types.string(),
|
|
3704
|
+
});
|
|
3705
|
+
/** @internal */
|
|
3706
|
+
export const OneHundredAndSeven$outboundSchema = z.object({
|
|
3707
|
+
email: z.string(),
|
|
3708
|
+
});
|
|
3694
3709
|
export function oneHundredAndSevenToJSON(oneHundredAndSeven) {
|
|
3695
3710
|
return JSON.stringify(OneHundredAndSeven$outboundSchema.parse(oneHundredAndSeven));
|
|
3696
3711
|
}
|
|
@@ -3700,10 +3715,12 @@ export function oneHundredAndSevenFromJSON(jsonString) {
|
|
|
3700
3715
|
/** @internal */
|
|
3701
3716
|
export const OneHundredAndSix$inboundSchema = z.object({
|
|
3702
3717
|
email: types.string(),
|
|
3718
|
+
verified: types.boolean(),
|
|
3703
3719
|
});
|
|
3704
3720
|
/** @internal */
|
|
3705
3721
|
export const OneHundredAndSix$outboundSchema = z.object({
|
|
3706
3722
|
email: z.string(),
|
|
3723
|
+
verified: z.boolean(),
|
|
3707
3724
|
});
|
|
3708
3725
|
export function oneHundredAndSixToJSON(oneHundredAndSix) {
|
|
3709
3726
|
return JSON.stringify(OneHundredAndSix$outboundSchema.parse(oneHundredAndSix));
|
|
@@ -3713,13 +3730,13 @@ export function oneHundredAndSixFromJSON(jsonString) {
|
|
|
3713
3730
|
}
|
|
3714
3731
|
/** @internal */
|
|
3715
3732
|
export const OneHundredAndFive$inboundSchema = z.object({
|
|
3716
|
-
|
|
3717
|
-
|
|
3733
|
+
instances: types.number(),
|
|
3734
|
+
url: types.string(),
|
|
3718
3735
|
});
|
|
3719
3736
|
/** @internal */
|
|
3720
3737
|
export const OneHundredAndFive$outboundSchema = z.object({
|
|
3721
|
-
|
|
3722
|
-
|
|
3738
|
+
instances: z.number(),
|
|
3739
|
+
url: z.string(),
|
|
3723
3740
|
});
|
|
3724
3741
|
export function oneHundredAndFiveToJSON(oneHundredAndFive) {
|
|
3725
3742
|
return JSON.stringify(OneHundredAndFive$outboundSchema.parse(oneHundredAndFive));
|
|
@@ -3729,13 +3746,15 @@ export function oneHundredAndFiveFromJSON(jsonString) {
|
|
|
3729
3746
|
}
|
|
3730
3747
|
/** @internal */
|
|
3731
3748
|
export const OneHundredAndFour$inboundSchema = z.object({
|
|
3732
|
-
|
|
3733
|
-
|
|
3749
|
+
gitProvider: types.string(),
|
|
3750
|
+
gitProviderGroupDescriptor: types.string(),
|
|
3751
|
+
gitScope: types.string(),
|
|
3734
3752
|
});
|
|
3735
3753
|
/** @internal */
|
|
3736
3754
|
export const OneHundredAndFour$outboundSchema = z.object({
|
|
3737
|
-
|
|
3738
|
-
|
|
3755
|
+
gitProvider: z.string(),
|
|
3756
|
+
gitProviderGroupDescriptor: z.string(),
|
|
3757
|
+
gitScope: z.string(),
|
|
3739
3758
|
});
|
|
3740
3759
|
export function oneHundredAndFourToJSON(oneHundredAndFour) {
|
|
3741
3760
|
return JSON.stringify(OneHundredAndFour$outboundSchema.parse(oneHundredAndFour));
|
|
@@ -3745,15 +3764,17 @@ export function oneHundredAndFourFromJSON(jsonString) {
|
|
|
3745
3764
|
}
|
|
3746
3765
|
/** @internal */
|
|
3747
3766
|
export const OneHundredAndThree$inboundSchema = z.object({
|
|
3748
|
-
|
|
3749
|
-
|
|
3750
|
-
|
|
3767
|
+
projectId: types.string(),
|
|
3768
|
+
projectName: types.string(),
|
|
3769
|
+
targetDeploymentId: types.optional(types.string()),
|
|
3770
|
+
newTargetPercentage: types.optional(types.number()),
|
|
3751
3771
|
});
|
|
3752
3772
|
/** @internal */
|
|
3753
3773
|
export const OneHundredAndThree$outboundSchema = z.object({
|
|
3754
|
-
|
|
3755
|
-
|
|
3756
|
-
|
|
3774
|
+
projectId: z.string(),
|
|
3775
|
+
projectName: z.string(),
|
|
3776
|
+
targetDeploymentId: z.string().optional(),
|
|
3777
|
+
newTargetPercentage: z.number().optional(),
|
|
3757
3778
|
});
|
|
3758
3779
|
export function oneHundredAndThreeToJSON(oneHundredAndThree) {
|
|
3759
3780
|
return JSON.stringify(OneHundredAndThree$outboundSchema.parse(oneHundredAndThree));
|
|
@@ -3766,14 +3787,12 @@ export const OneHundredAndTwo$inboundSchema = z.object({
|
|
|
3766
3787
|
projectId: types.string(),
|
|
3767
3788
|
projectName: types.string(),
|
|
3768
3789
|
targetDeploymentId: types.optional(types.string()),
|
|
3769
|
-
newTargetPercentage: types.optional(types.number()),
|
|
3770
3790
|
});
|
|
3771
3791
|
/** @internal */
|
|
3772
3792
|
export const OneHundredAndTwo$outboundSchema = z.object({
|
|
3773
3793
|
projectId: z.string(),
|
|
3774
3794
|
projectName: z.string(),
|
|
3775
3795
|
targetDeploymentId: z.string().optional(),
|
|
3776
|
-
newTargetPercentage: z.number().optional(),
|
|
3777
3796
|
});
|
|
3778
3797
|
export function oneHundredAndTwoToJSON(oneHundredAndTwo) {
|
|
3779
3798
|
return JSON.stringify(OneHundredAndTwo$outboundSchema.parse(oneHundredAndTwo));
|
|
@@ -3785,13 +3804,15 @@ export function oneHundredAndTwoFromJSON(jsonString) {
|
|
|
3785
3804
|
export const OneHundredAndOne$inboundSchema = z.object({
|
|
3786
3805
|
projectId: types.string(),
|
|
3787
3806
|
projectName: types.string(),
|
|
3788
|
-
|
|
3807
|
+
elasticConcurrencyEnabled: types.boolean(),
|
|
3808
|
+
oldElasticConcurrencyEnabled: types.boolean(),
|
|
3789
3809
|
});
|
|
3790
3810
|
/** @internal */
|
|
3791
3811
|
export const OneHundredAndOne$outboundSchema = z.object({
|
|
3792
3812
|
projectId: z.string(),
|
|
3793
3813
|
projectName: z.string(),
|
|
3794
|
-
|
|
3814
|
+
elasticConcurrencyEnabled: z.boolean(),
|
|
3815
|
+
oldElasticConcurrencyEnabled: z.boolean(),
|
|
3795
3816
|
});
|
|
3796
3817
|
export function oneHundredAndOneToJSON(oneHundredAndOne) {
|
|
3797
3818
|
return JSON.stringify(OneHundredAndOne$outboundSchema.parse(oneHundredAndOne));
|
|
@@ -3803,15 +3824,15 @@ export function oneHundredAndOneFromJSON(jsonString) {
|
|
|
3803
3824
|
export const OneHundred$inboundSchema = z.object({
|
|
3804
3825
|
projectId: types.string(),
|
|
3805
3826
|
projectName: types.string(),
|
|
3806
|
-
|
|
3807
|
-
|
|
3827
|
+
buildMachineType: types.optional(types.string()),
|
|
3828
|
+
oldBuildMachineType: types.optional(types.string()),
|
|
3808
3829
|
});
|
|
3809
3830
|
/** @internal */
|
|
3810
3831
|
export const OneHundred$outboundSchema = z.object({
|
|
3811
3832
|
projectId: z.string(),
|
|
3812
3833
|
projectName: z.string(),
|
|
3813
|
-
|
|
3814
|
-
|
|
3834
|
+
buildMachineType: z.string().optional(),
|
|
3835
|
+
oldBuildMachineType: z.string().optional(),
|
|
3815
3836
|
});
|
|
3816
3837
|
export function oneHundredToJSON(oneHundred) {
|
|
3817
3838
|
return JSON.stringify(OneHundred$outboundSchema.parse(oneHundred));
|
|
@@ -3820,26 +3841,6 @@ export function oneHundredFromJSON(jsonString) {
|
|
|
3820
3841
|
return safeParse(jsonString, (x) => OneHundred$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OneHundred' from JSON`);
|
|
3821
3842
|
}
|
|
3822
3843
|
/** @internal */
|
|
3823
|
-
export const NinetyNine$inboundSchema = z.object({
|
|
3824
|
-
projectId: types.string(),
|
|
3825
|
-
projectName: types.string(),
|
|
3826
|
-
buildMachineType: types.optional(types.string()),
|
|
3827
|
-
oldBuildMachineType: types.optional(types.string()),
|
|
3828
|
-
});
|
|
3829
|
-
/** @internal */
|
|
3830
|
-
export const NinetyNine$outboundSchema = z.object({
|
|
3831
|
-
projectId: z.string(),
|
|
3832
|
-
projectName: z.string(),
|
|
3833
|
-
buildMachineType: z.string().optional(),
|
|
3834
|
-
oldBuildMachineType: z.string().optional(),
|
|
3835
|
-
});
|
|
3836
|
-
export function ninetyNineToJSON(ninetyNine) {
|
|
3837
|
-
return JSON.stringify(NinetyNine$outboundSchema.parse(ninetyNine));
|
|
3838
|
-
}
|
|
3839
|
-
export function ninetyNineFromJSON(jsonString) {
|
|
3840
|
-
return safeParse(jsonString, (x) => NinetyNine$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'NinetyNine' from JSON`);
|
|
3841
|
-
}
|
|
3842
|
-
/** @internal */
|
|
3843
3844
|
export const StaticIps$inboundSchema = z.object({
|
|
3844
3845
|
builds: types.optional(types.boolean()),
|
|
3845
3846
|
enabled: types.boolean(),
|
|
@@ -3858,29 +3859,29 @@ export function staticIpsFromJSON(jsonString) {
|
|
|
3858
3859
|
return safeParse(jsonString, (x) => StaticIps$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'StaticIps' from JSON`);
|
|
3859
3860
|
}
|
|
3860
3861
|
/** @internal */
|
|
3861
|
-
export const
|
|
3862
|
+
export const UserEventPayload99Project$inboundSchema = z.object({
|
|
3862
3863
|
id: types.string(),
|
|
3863
3864
|
staticIps: z.lazy(() => StaticIps$inboundSchema),
|
|
3864
3865
|
});
|
|
3865
3866
|
/** @internal */
|
|
3866
|
-
export const
|
|
3867
|
+
export const UserEventPayload99Project$outboundSchema = z.object({
|
|
3867
3868
|
id: z.string(),
|
|
3868
3869
|
staticIps: z.lazy(() => StaticIps$outboundSchema),
|
|
3869
3870
|
});
|
|
3870
|
-
export function
|
|
3871
|
-
return JSON.stringify(
|
|
3871
|
+
export function userEventPayload99ProjectToJSON(userEventPayload99Project) {
|
|
3872
|
+
return JSON.stringify(UserEventPayload99Project$outboundSchema.parse(userEventPayload99Project));
|
|
3872
3873
|
}
|
|
3873
|
-
export function
|
|
3874
|
-
return safeParse(jsonString, (x) =>
|
|
3874
|
+
export function userEventPayload99ProjectFromJSON(jsonString) {
|
|
3875
|
+
return safeParse(jsonString, (x) => UserEventPayload99Project$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload99Project' from JSON`);
|
|
3875
3876
|
}
|
|
3876
3877
|
/** @internal */
|
|
3877
3878
|
export const Next$inboundSchema = z
|
|
3878
3879
|
.object({
|
|
3879
|
-
project: z.lazy(() =>
|
|
3880
|
+
project: z.lazy(() => UserEventPayload99Project$inboundSchema),
|
|
3880
3881
|
});
|
|
3881
3882
|
/** @internal */
|
|
3882
3883
|
export const Next$outboundSchema = z.object({
|
|
3883
|
-
project: z.lazy(() =>
|
|
3884
|
+
project: z.lazy(() => UserEventPayload99Project$outboundSchema),
|
|
3884
3885
|
});
|
|
3885
3886
|
export function nextToJSON(next) {
|
|
3886
3887
|
return JSON.stringify(Next$outboundSchema.parse(next));
|
|
@@ -3907,28 +3908,28 @@ export function payloadStaticIpsFromJSON(jsonString) {
|
|
|
3907
3908
|
return safeParse(jsonString, (x) => PayloadStaticIps$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PayloadStaticIps' from JSON`);
|
|
3908
3909
|
}
|
|
3909
3910
|
/** @internal */
|
|
3910
|
-
export const
|
|
3911
|
+
export const UserEventPayload99PreviousProject$inboundSchema = z.object({
|
|
3911
3912
|
id: types.string(),
|
|
3912
3913
|
staticIps: z.lazy(() => PayloadStaticIps$inboundSchema),
|
|
3913
3914
|
});
|
|
3914
3915
|
/** @internal */
|
|
3915
|
-
export const
|
|
3916
|
+
export const UserEventPayload99PreviousProject$outboundSchema = z.object({
|
|
3916
3917
|
id: z.string(),
|
|
3917
3918
|
staticIps: z.lazy(() => PayloadStaticIps$outboundSchema),
|
|
3918
3919
|
});
|
|
3919
|
-
export function
|
|
3920
|
-
return JSON.stringify(
|
|
3920
|
+
export function userEventPayload99PreviousProjectToJSON(userEventPayload99PreviousProject) {
|
|
3921
|
+
return JSON.stringify(UserEventPayload99PreviousProject$outboundSchema.parse(userEventPayload99PreviousProject));
|
|
3921
3922
|
}
|
|
3922
|
-
export function
|
|
3923
|
-
return safeParse(jsonString, (x) =>
|
|
3923
|
+
export function userEventPayload99PreviousProjectFromJSON(jsonString) {
|
|
3924
|
+
return safeParse(jsonString, (x) => UserEventPayload99PreviousProject$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload99PreviousProject' from JSON`);
|
|
3924
3925
|
}
|
|
3925
3926
|
/** @internal */
|
|
3926
3927
|
export const Previous$inboundSchema = z.object({
|
|
3927
|
-
project: z.lazy(() =>
|
|
3928
|
+
project: z.lazy(() => UserEventPayload99PreviousProject$inboundSchema),
|
|
3928
3929
|
});
|
|
3929
3930
|
/** @internal */
|
|
3930
3931
|
export const Previous$outboundSchema = z.object({
|
|
3931
|
-
project: z.lazy(() =>
|
|
3932
|
+
project: z.lazy(() => UserEventPayload99PreviousProject$outboundSchema),
|
|
3932
3933
|
});
|
|
3933
3934
|
export function previousToJSON(previous) {
|
|
3934
3935
|
return JSON.stringify(Previous$outboundSchema.parse(previous));
|
|
@@ -3937,56 +3938,56 @@ export function previousFromJSON(jsonString) {
|
|
|
3937
3938
|
return safeParse(jsonString, (x) => Previous$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Previous' from JSON`);
|
|
3938
3939
|
}
|
|
3939
3940
|
/** @internal */
|
|
3940
|
-
export const
|
|
3941
|
+
export const NinetyNine$inboundSchema = z.object({
|
|
3941
3942
|
next: z.lazy(() => Next$inboundSchema),
|
|
3942
3943
|
previous: z.lazy(() => Previous$inboundSchema),
|
|
3943
3944
|
});
|
|
3944
3945
|
/** @internal */
|
|
3945
|
-
export const
|
|
3946
|
+
export const NinetyNine$outboundSchema = z.object({
|
|
3946
3947
|
next: z.lazy(() => Next$outboundSchema),
|
|
3947
3948
|
previous: z.lazy(() => Previous$outboundSchema),
|
|
3948
3949
|
});
|
|
3949
|
-
export function
|
|
3950
|
-
return JSON.stringify(
|
|
3950
|
+
export function ninetyNineToJSON(ninetyNine) {
|
|
3951
|
+
return JSON.stringify(NinetyNine$outboundSchema.parse(ninetyNine));
|
|
3951
3952
|
}
|
|
3952
|
-
export function
|
|
3953
|
-
return safeParse(jsonString, (x) =>
|
|
3953
|
+
export function ninetyNineFromJSON(jsonString) {
|
|
3954
|
+
return safeParse(jsonString, (x) => NinetyNine$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'NinetyNine' from JSON`);
|
|
3954
3955
|
}
|
|
3955
3956
|
/** @internal */
|
|
3956
|
-
export const
|
|
3957
|
+
export const NinetyEight$inboundSchema = z.object({
|
|
3957
3958
|
source: types.string(),
|
|
3958
3959
|
projectId: types.string(),
|
|
3959
3960
|
});
|
|
3960
3961
|
/** @internal */
|
|
3961
|
-
export const
|
|
3962
|
+
export const NinetyEight$outboundSchema = z.object({
|
|
3962
3963
|
source: z.string(),
|
|
3963
3964
|
projectId: z.string(),
|
|
3964
3965
|
});
|
|
3965
|
-
export function
|
|
3966
|
-
return JSON.stringify(
|
|
3966
|
+
export function ninetyEightToJSON(ninetyEight) {
|
|
3967
|
+
return JSON.stringify(NinetyEight$outboundSchema.parse(ninetyEight));
|
|
3967
3968
|
}
|
|
3968
|
-
export function
|
|
3969
|
-
return safeParse(jsonString, (x) =>
|
|
3969
|
+
export function ninetyEightFromJSON(jsonString) {
|
|
3970
|
+
return safeParse(jsonString, (x) => NinetyEight$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'NinetyEight' from JSON`);
|
|
3970
3971
|
}
|
|
3971
3972
|
/** @internal */
|
|
3972
3973
|
export const PayloadReasonCode$inboundSchema = z.nativeEnum(PayloadReasonCode);
|
|
3973
3974
|
/** @internal */
|
|
3974
3975
|
export const PayloadReasonCode$outboundSchema = PayloadReasonCode$inboundSchema;
|
|
3975
3976
|
/** @internal */
|
|
3976
|
-
export const
|
|
3977
|
+
export const NinetySeven$inboundSchema = z.object({
|
|
3977
3978
|
projectId: types.string(),
|
|
3978
3979
|
reasonCode: types.optional(PayloadReasonCode$inboundSchema),
|
|
3979
3980
|
});
|
|
3980
3981
|
/** @internal */
|
|
3981
|
-
export const
|
|
3982
|
+
export const NinetySeven$outboundSchema = z.object({
|
|
3982
3983
|
projectId: z.string(),
|
|
3983
3984
|
reasonCode: PayloadReasonCode$outboundSchema.optional(),
|
|
3984
3985
|
});
|
|
3985
|
-
export function
|
|
3986
|
-
return JSON.stringify(
|
|
3986
|
+
export function ninetySevenToJSON(ninetySeven) {
|
|
3987
|
+
return JSON.stringify(NinetySeven$outboundSchema.parse(ninetySeven));
|
|
3987
3988
|
}
|
|
3988
|
-
export function
|
|
3989
|
-
return safeParse(jsonString, (x) =>
|
|
3989
|
+
export function ninetySevenFromJSON(jsonString) {
|
|
3990
|
+
return safeParse(jsonString, (x) => NinetySeven$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'NinetySeven' from JSON`);
|
|
3990
3991
|
}
|
|
3991
3992
|
/** @internal */
|
|
3992
3993
|
export const ReasonCode$inboundSchema = z
|
|
@@ -3994,36 +3995,36 @@ export const ReasonCode$inboundSchema = z
|
|
|
3994
3995
|
/** @internal */
|
|
3995
3996
|
export const ReasonCode$outboundSchema = ReasonCode$inboundSchema;
|
|
3996
3997
|
/** @internal */
|
|
3997
|
-
export const
|
|
3998
|
+
export const NinetySix$inboundSchema = z.object({
|
|
3998
3999
|
projectId: types.string(),
|
|
3999
4000
|
reasonCode: types.optional(ReasonCode$inboundSchema),
|
|
4000
4001
|
});
|
|
4001
4002
|
/** @internal */
|
|
4002
|
-
export const
|
|
4003
|
+
export const NinetySix$outboundSchema = z.object({
|
|
4003
4004
|
projectId: z.string(),
|
|
4004
4005
|
reasonCode: ReasonCode$outboundSchema.optional(),
|
|
4005
4006
|
});
|
|
4006
|
-
export function
|
|
4007
|
-
return JSON.stringify(
|
|
4007
|
+
export function ninetySixToJSON(ninetySix) {
|
|
4008
|
+
return JSON.stringify(NinetySix$outboundSchema.parse(ninetySix));
|
|
4008
4009
|
}
|
|
4009
|
-
export function
|
|
4010
|
-
return safeParse(jsonString, (x) =>
|
|
4010
|
+
export function ninetySixFromJSON(jsonString) {
|
|
4011
|
+
return safeParse(jsonString, (x) => NinetySix$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'NinetySix' from JSON`);
|
|
4011
4012
|
}
|
|
4012
4013
|
/** @internal */
|
|
4013
|
-
export const
|
|
4014
|
+
export const UserEventPayload95Team$inboundSchema = z.object({
|
|
4014
4015
|
id: types.string(),
|
|
4015
4016
|
name: types.string(),
|
|
4016
4017
|
});
|
|
4017
4018
|
/** @internal */
|
|
4018
|
-
export const
|
|
4019
|
+
export const UserEventPayload95Team$outboundSchema = z.object({
|
|
4019
4020
|
id: z.string(),
|
|
4020
4021
|
name: z.string(),
|
|
4021
4022
|
});
|
|
4022
|
-
export function
|
|
4023
|
-
return JSON.stringify(
|
|
4023
|
+
export function userEventPayload95TeamToJSON(userEventPayload95Team) {
|
|
4024
|
+
return JSON.stringify(UserEventPayload95Team$outboundSchema.parse(userEventPayload95Team));
|
|
4024
4025
|
}
|
|
4025
|
-
export function
|
|
4026
|
-
return safeParse(jsonString, (x) =>
|
|
4026
|
+
export function userEventPayload95TeamFromJSON(jsonString) {
|
|
4027
|
+
return safeParse(jsonString, (x) => UserEventPayload95Team$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload95Team' from JSON`);
|
|
4027
4028
|
}
|
|
4028
4029
|
/** @internal */
|
|
4029
4030
|
export const EnvId2$inboundSchema = z
|
|
@@ -4145,80 +4146,80 @@ export function newConnectConfigurationsFromJSON(jsonString) {
|
|
|
4145
4146
|
return safeParse(jsonString, (x) => NewConnectConfigurations$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'NewConnectConfigurations' from JSON`);
|
|
4146
4147
|
}
|
|
4147
4148
|
/** @internal */
|
|
4148
|
-
export const
|
|
4149
|
+
export const UserEventPayload95Project$inboundSchema = z.object({
|
|
4149
4150
|
id: types.string(),
|
|
4150
4151
|
name: types.optional(types.string()),
|
|
4151
4152
|
oldConnectConfigurations: types.nullable(z.array(z.lazy(() => OldConnectConfigurations$inboundSchema))),
|
|
4152
4153
|
newConnectConfigurations: types.nullable(z.array(z.lazy(() => NewConnectConfigurations$inboundSchema))),
|
|
4153
4154
|
});
|
|
4154
4155
|
/** @internal */
|
|
4155
|
-
export const
|
|
4156
|
+
export const UserEventPayload95Project$outboundSchema = z.object({
|
|
4156
4157
|
id: z.string(),
|
|
4157
4158
|
name: z.string().optional(),
|
|
4158
4159
|
oldConnectConfigurations: z.nullable(z.array(z.lazy(() => OldConnectConfigurations$outboundSchema))),
|
|
4159
4160
|
newConnectConfigurations: z.nullable(z.array(z.lazy(() => NewConnectConfigurations$outboundSchema))),
|
|
4160
4161
|
});
|
|
4161
|
-
export function
|
|
4162
|
-
return JSON.stringify(
|
|
4162
|
+
export function userEventPayload95ProjectToJSON(userEventPayload95Project) {
|
|
4163
|
+
return JSON.stringify(UserEventPayload95Project$outboundSchema.parse(userEventPayload95Project));
|
|
4163
4164
|
}
|
|
4164
|
-
export function
|
|
4165
|
-
return safeParse(jsonString, (x) =>
|
|
4165
|
+
export function userEventPayload95ProjectFromJSON(jsonString) {
|
|
4166
|
+
return safeParse(jsonString, (x) => UserEventPayload95Project$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UserEventPayload95Project' from JSON`);
|
|
4166
4167
|
}
|
|
4167
4168
|
/** @internal */
|
|
4168
|
-
export const
|
|
4169
|
-
team: z.lazy(() =>
|
|
4170
|
-
project: z.lazy(() =>
|
|
4169
|
+
export const NinetyFive$inboundSchema = z.object({
|
|
4170
|
+
team: z.lazy(() => UserEventPayload95Team$inboundSchema),
|
|
4171
|
+
project: z.lazy(() => UserEventPayload95Project$inboundSchema),
|
|
4171
4172
|
});
|
|
4172
4173
|
/** @internal */
|
|
4173
|
-
export const
|
|
4174
|
-
team: z.lazy(() =>
|
|
4175
|
-
project: z.lazy(() =>
|
|
4174
|
+
export const NinetyFive$outboundSchema = z.object({
|
|
4175
|
+
team: z.lazy(() => UserEventPayload95Team$outboundSchema),
|
|
4176
|
+
project: z.lazy(() => UserEventPayload95Project$outboundSchema),
|
|
4176
4177
|
});
|
|
4177
|
-
export function
|
|
4178
|
-
return JSON.stringify(
|
|
4178
|
+
export function ninetyFiveToJSON(ninetyFive) {
|
|
4179
|
+
return JSON.stringify(NinetyFive$outboundSchema.parse(ninetyFive));
|
|
4179
4180
|
}
|
|
4180
|
-
export function
|
|
4181
|
-
return safeParse(jsonString, (x) =>
|
|
4181
|
+
export function ninetyFiveFromJSON(jsonString) {
|
|
4182
|
+
return safeParse(jsonString, (x) => NinetyFive$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'NinetyFive' from JSON`);
|
|
4182
4183
|
}
|
|
4183
4184
|
/** @internal */
|
|
4184
|
-
export const
|
|
4185
|
+
export const NinetyFour$inboundSchema = z.object({
|
|
4185
4186
|
name: types.string(),
|
|
4186
4187
|
ownerId: types.string(),
|
|
4187
4188
|
});
|
|
4188
4189
|
/** @internal */
|
|
4189
|
-
export const
|
|
4190
|
+
export const NinetyFour$outboundSchema = z.object({
|
|
4190
4191
|
name: z.string(),
|
|
4191
4192
|
ownerId: z.string(),
|
|
4192
4193
|
});
|
|
4193
|
-
export function
|
|
4194
|
-
return JSON.stringify(
|
|
4194
|
+
export function ninetyFourToJSON(ninetyFour) {
|
|
4195
|
+
return JSON.stringify(NinetyFour$outboundSchema.parse(ninetyFour));
|
|
4195
4196
|
}
|
|
4196
|
-
export function
|
|
4197
|
-
return safeParse(jsonString, (x) =>
|
|
4197
|
+
export function ninetyFourFromJSON(jsonString) {
|
|
4198
|
+
return safeParse(jsonString, (x) => NinetyFour$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'NinetyFour' from JSON`);
|
|
4198
4199
|
}
|
|
4199
4200
|
/** @internal */
|
|
4200
|
-
export const
|
|
4201
|
+
export const UserEventPayload93Action$inboundSchema = z.nativeEnum(UserEventPayload93Action);
|
|
4201
4202
|
/** @internal */
|
|
4202
|
-
export const
|
|
4203
|
+
export const UserEventPayload93Action$outboundSchema = UserEventPayload93Action$inboundSchema;
|
|
4203
4204
|
/** @internal */
|
|
4204
|
-
export const
|
|
4205
|
+
export const NinetyThree$inboundSchema = z.object({
|
|
4205
4206
|
projectName: types.string(),
|
|
4206
|
-
action:
|
|
4207
|
+
action: UserEventPayload93Action$inboundSchema,
|
|
4207
4208
|
isEnvVar: types.optional(types.boolean()),
|
|
4208
4209
|
note: types.optional(types.string()),
|
|
4209
4210
|
});
|
|
4210
4211
|
/** @internal */
|
|
4211
|
-
export const
|
|
4212
|
+
export const NinetyThree$outboundSchema = z.object({
|
|
4212
4213
|
projectName: z.string(),
|
|
4213
|
-
action:
|
|
4214
|
+
action: UserEventPayload93Action$outboundSchema,
|
|
4214
4215
|
isEnvVar: z.boolean().optional(),
|
|
4215
4216
|
note: z.string().optional(),
|
|
4216
4217
|
});
|
|
4217
|
-
export function
|
|
4218
|
-
return JSON.stringify(
|
|
4218
|
+
export function ninetyThreeToJSON(ninetyThree) {
|
|
4219
|
+
return JSON.stringify(NinetyThree$outboundSchema.parse(ninetyThree));
|
|
4219
4220
|
}
|
|
4220
|
-
export function
|
|
4221
|
-
return safeParse(jsonString, (x) =>
|
|
4221
|
+
export function ninetyThreeFromJSON(jsonString) {
|
|
4222
|
+
return safeParse(jsonString, (x) => NinetyThree$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'NinetyThree' from JSON`);
|
|
4222
4223
|
}
|
|
4223
4224
|
/** @internal */
|
|
4224
4225
|
export const Paths$inboundSchema = z
|
|
@@ -4278,24 +4279,24 @@ export function oldOptionsAllowlistFromJSON(jsonString) {
|
|
|
4278
4279
|
return safeParse(jsonString, (x) => OldOptionsAllowlist$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OldOptionsAllowlist' from JSON`);
|
|
4279
4280
|
}
|
|
4280
4281
|
/** @internal */
|
|
4281
|
-
export const
|
|
4282
|
+
export const NinetyTwo$inboundSchema = z.object({
|
|
4282
4283
|
projectName: types.string(),
|
|
4283
4284
|
optionsAllowlist: z.nullable(z.lazy(() => OptionsAllowlist$inboundSchema))
|
|
4284
4285
|
.optional(),
|
|
4285
4286
|
oldOptionsAllowlist: z.nullable(z.lazy(() => OldOptionsAllowlist$inboundSchema)).optional(),
|
|
4286
4287
|
});
|
|
4287
4288
|
/** @internal */
|
|
4288
|
-
export const
|
|
4289
|
+
export const NinetyTwo$outboundSchema = z.object({
|
|
4289
4290
|
projectName: z.string(),
|
|
4290
4291
|
optionsAllowlist: z.nullable(z.lazy(() => OptionsAllowlist$outboundSchema))
|
|
4291
4292
|
.optional(),
|
|
4292
4293
|
oldOptionsAllowlist: z.nullable(z.lazy(() => OldOptionsAllowlist$outboundSchema)).optional(),
|
|
4293
4294
|
});
|
|
4294
|
-
export function
|
|
4295
|
-
return JSON.stringify(
|
|
4295
|
+
export function ninetyTwoToJSON(ninetyTwo) {
|
|
4296
|
+
return JSON.stringify(NinetyTwo$outboundSchema.parse(ninetyTwo));
|
|
4296
4297
|
}
|
|
4297
|
-
export function
|
|
4298
|
-
return safeParse(jsonString, (x) =>
|
|
4298
|
+
export function ninetyTwoFromJSON(jsonString) {
|
|
4299
|
+
return safeParse(jsonString, (x) => NinetyTwo$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'NinetyTwo' from JSON`);
|
|
4299
4300
|
}
|
|
4300
4301
|
/** @internal */
|
|
4301
4302
|
export const TrustedIps$inboundSchema = z
|
|
@@ -4307,8 +4308,7 @@ export const OldTrustedIps$inboundSchema = z.nativeEnum(OldTrustedIps);
|
|
|
4307
4308
|
/** @internal */
|
|
4308
4309
|
export const OldTrustedIps$outboundSchema = OldTrustedIps$inboundSchema;
|
|
4309
4310
|
/** @internal */
|
|
4310
|
-
export const
|
|
4311
|
-
.object({
|
|
4311
|
+
export const NinetyOne$inboundSchema = z.object({
|
|
4312
4312
|
projectName: types.string(),
|
|
4313
4313
|
trustedIps: z.nullable(TrustedIps$inboundSchema).optional(),
|
|
4314
4314
|
oldTrustedIps: z.nullable(OldTrustedIps$inboundSchema).optional(),
|
|
@@ -4316,18 +4316,18 @@ export const Ninety$inboundSchema = z
|
|
|
4316
4316
|
removedAddresses: z.nullable(z.array(types.string())).optional(),
|
|
4317
4317
|
});
|
|
4318
4318
|
/** @internal */
|
|
4319
|
-
export const
|
|
4319
|
+
export const NinetyOne$outboundSchema = z.object({
|
|
4320
4320
|
projectName: z.string(),
|
|
4321
4321
|
trustedIps: z.nullable(TrustedIps$outboundSchema).optional(),
|
|
4322
4322
|
oldTrustedIps: z.nullable(OldTrustedIps$outboundSchema).optional(),
|
|
4323
4323
|
addedAddresses: z.nullable(z.array(z.string())).optional(),
|
|
4324
4324
|
removedAddresses: z.nullable(z.array(z.string())).optional(),
|
|
4325
4325
|
});
|
|
4326
|
-
export function
|
|
4327
|
-
return JSON.stringify(
|
|
4326
|
+
export function ninetyOneToJSON(ninetyOne) {
|
|
4327
|
+
return JSON.stringify(NinetyOne$outboundSchema.parse(ninetyOne));
|
|
4328
4328
|
}
|
|
4329
|
-
export function
|
|
4330
|
-
return safeParse(jsonString, (x) =>
|
|
4329
|
+
export function ninetyOneFromJSON(jsonString) {
|
|
4330
|
+
return safeParse(jsonString, (x) => NinetyOne$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'NinetyOne' from JSON`);
|
|
4331
4331
|
}
|
|
4332
4332
|
/** @internal */
|
|
4333
4333
|
export const PasswordProtection2$inboundSchema = z.nativeEnum(PasswordProtection2);
|
|
@@ -4406,7 +4406,8 @@ export function oldPasswordProtectionFromJSON(jsonString) {
|
|
|
4406
4406
|
return safeParse(jsonString, (x) => OldPasswordProtection$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OldPasswordProtection' from JSON`);
|
|
4407
4407
|
}
|
|
4408
4408
|
/** @internal */
|
|
4409
|
-
export const
|
|
4409
|
+
export const Ninety$inboundSchema = z
|
|
4410
|
+
.object({
|
|
4410
4411
|
projectName: types.string(),
|
|
4411
4412
|
passwordProtection: types.nullable(smartUnion([
|
|
4412
4413
|
z.lazy(() => PasswordProtection1$inboundSchema),
|
|
@@ -4418,7 +4419,7 @@ export const EightyNine$inboundSchema = z.object({
|
|
|
4418
4419
|
])),
|
|
4419
4420
|
});
|
|
4420
4421
|
/** @internal */
|
|
4421
|
-
export const
|
|
4422
|
+
export const Ninety$outboundSchema = z.object({
|
|
4422
4423
|
projectName: z.string(),
|
|
4423
4424
|
passwordProtection: z.nullable(smartUnion([
|
|
4424
4425
|
z.lazy(() => PasswordProtection1$outboundSchema),
|
|
@@ -4429,11 +4430,11 @@ export const EightyNine$outboundSchema = z.object({
|
|
|
4429
4430
|
OldPasswordProtection2$outboundSchema,
|
|
4430
4431
|
])),
|
|
4431
4432
|
});
|
|
4432
|
-
export function
|
|
4433
|
-
return JSON.stringify(
|
|
4433
|
+
export function ninetyToJSON(ninety) {
|
|
4434
|
+
return JSON.stringify(Ninety$outboundSchema.parse(ninety));
|
|
4434
4435
|
}
|
|
4435
|
-
export function
|
|
4436
|
-
return safeParse(jsonString, (x) =>
|
|
4436
|
+
export function ninetyFromJSON(jsonString) {
|
|
4437
|
+
return safeParse(jsonString, (x) => Ninety$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Ninety' from JSON`);
|
|
4437
4438
|
}
|
|
4438
4439
|
/** @internal */
|
|
4439
4440
|
export const SsoProtection2$inboundSchema = z.nativeEnum(SsoProtection2);
|
|
@@ -4525,7 +4526,7 @@ export function oldSsoProtectionFromJSON(jsonString) {
|
|
|
4525
4526
|
return safeParse(jsonString, (x) => OldSsoProtection$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'OldSsoProtection' from JSON`);
|
|
4526
4527
|
}
|
|
4527
4528
|
/** @internal */
|
|
4528
|
-
export const
|
|
4529
|
+
export const EightyNine$inboundSchema = z.object({
|
|
4529
4530
|
projectName: types.string(),
|
|
4530
4531
|
ssoProtection: types.nullable(smartUnion([
|
|
4531
4532
|
z.lazy(() => SsoProtection1$inboundSchema),
|
|
@@ -4537,7 +4538,7 @@ export const EightyEight$inboundSchema = z.object({
|
|
|
4537
4538
|
])),
|
|
4538
4539
|
});
|
|
4539
4540
|
/** @internal */
|
|
4540
|
-
export const
|
|
4541
|
+
export const EightyNine$outboundSchema = z.object({
|
|
4541
4542
|
projectName: z.string(),
|
|
4542
4543
|
ssoProtection: z.nullable(smartUnion([
|
|
4543
4544
|
z.lazy(() => SsoProtection1$outboundSchema),
|
|
@@ -4548,47 +4549,47 @@ export const EightyEight$outboundSchema = z.object({
|
|
|
4548
4549
|
OldSsoProtection2$outboundSchema,
|
|
4549
4550
|
])),
|
|
4550
4551
|
});
|
|
4551
|
-
export function
|
|
4552
|
-
return JSON.stringify(
|
|
4552
|
+
export function eightyNineToJSON(eightyNine) {
|
|
4553
|
+
return JSON.stringify(EightyNine$outboundSchema.parse(eightyNine));
|
|
4553
4554
|
}
|
|
4554
|
-
export function
|
|
4555
|
-
return safeParse(jsonString, (x) =>
|
|
4555
|
+
export function eightyNineFromJSON(jsonString) {
|
|
4556
|
+
return safeParse(jsonString, (x) => EightyNine$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'EightyNine' from JSON`);
|
|
4556
4557
|
}
|
|
4557
4558
|
/** @internal */
|
|
4558
|
-
export const
|
|
4559
|
+
export const EightyEight$inboundSchema = z.object({
|
|
4559
4560
|
projectName: types.optional(types.string()),
|
|
4560
4561
|
projectId: types.string(),
|
|
4561
4562
|
});
|
|
4562
4563
|
/** @internal */
|
|
4563
|
-
export const
|
|
4564
|
+
export const EightyEight$outboundSchema = z.object({
|
|
4564
4565
|
projectName: z.string().optional(),
|
|
4565
4566
|
projectId: z.string(),
|
|
4566
4567
|
});
|
|
4567
|
-
export function
|
|
4568
|
-
return JSON.stringify(
|
|
4568
|
+
export function eightyEightToJSON(eightyEight) {
|
|
4569
|
+
return JSON.stringify(EightyEight$outboundSchema.parse(eightyEight));
|
|
4569
4570
|
}
|
|
4570
|
-
export function
|
|
4571
|
-
return safeParse(jsonString, (x) =>
|
|
4571
|
+
export function eightyEightFromJSON(jsonString) {
|
|
4572
|
+
return safeParse(jsonString, (x) => EightyEight$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'EightyEight' from JSON`);
|
|
4572
4573
|
}
|
|
4573
4574
|
/** @internal */
|
|
4574
|
-
export const
|
|
4575
|
+
export const EightySeven$inboundSchema = z.object({
|
|
4575
4576
|
projectName: types.optional(types.string()),
|
|
4576
4577
|
projectId: types.string(),
|
|
4577
4578
|
projectAnalytics: types.optional(z.record(z.any())),
|
|
4578
4579
|
prevProjectAnalytics: z.nullable(z.record(z.any())).optional(),
|
|
4579
4580
|
});
|
|
4580
4581
|
/** @internal */
|
|
4581
|
-
export const
|
|
4582
|
+
export const EightySeven$outboundSchema = z.object({
|
|
4582
4583
|
projectName: z.string().optional(),
|
|
4583
4584
|
projectId: z.string(),
|
|
4584
4585
|
projectAnalytics: z.record(z.any()).optional(),
|
|
4585
4586
|
prevProjectAnalytics: z.nullable(z.record(z.any())).optional(),
|
|
4586
4587
|
});
|
|
4587
|
-
export function
|
|
4588
|
-
return JSON.stringify(
|
|
4588
|
+
export function eightySevenToJSON(eightySeven) {
|
|
4589
|
+
return JSON.stringify(EightySeven$outboundSchema.parse(eightySeven));
|
|
4589
4590
|
}
|
|
4590
|
-
export function
|
|
4591
|
-
return safeParse(jsonString, (x) =>
|
|
4591
|
+
export function eightySevenFromJSON(jsonString) {
|
|
4592
|
+
return safeParse(jsonString, (x) => EightySeven$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'EightySeven' from JSON`);
|
|
4592
4593
|
}
|
|
4593
4594
|
/** @internal */
|
|
4594
4595
|
export const ProjectAnalytics$inboundSchema = z.object({
|
|
@@ -4643,40 +4644,40 @@ export function prevProjectAnalyticsFromJSON(jsonString) {
|
|
|
4643
4644
|
return safeParse(jsonString, (x) => PrevProjectAnalytics$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PrevProjectAnalytics' from JSON`);
|
|
4644
4645
|
}
|
|
4645
4646
|
/** @internal */
|
|
4646
|
-
export const
|
|
4647
|
+
export const EightySix$inboundSchema = z.object({
|
|
4647
4648
|
projectName: types.optional(types.string()),
|
|
4648
4649
|
projectId: types.string(),
|
|
4649
4650
|
projectAnalytics: types.nullable(z.lazy(() => ProjectAnalytics$inboundSchema)),
|
|
4650
4651
|
prevProjectAnalytics: types.nullable(z.lazy(() => PrevProjectAnalytics$inboundSchema)),
|
|
4651
4652
|
});
|
|
4652
4653
|
/** @internal */
|
|
4653
|
-
export const
|
|
4654
|
+
export const EightySix$outboundSchema = z.object({
|
|
4654
4655
|
projectName: z.string().optional(),
|
|
4655
4656
|
projectId: z.string(),
|
|
4656
4657
|
projectAnalytics: z.nullable(z.lazy(() => ProjectAnalytics$outboundSchema)),
|
|
4657
4658
|
prevProjectAnalytics: z.nullable(z.lazy(() => PrevProjectAnalytics$outboundSchema)),
|
|
4658
4659
|
});
|
|
4659
|
-
export function
|
|
4660
|
-
return JSON.stringify(
|
|
4660
|
+
export function eightySixToJSON(eightySix) {
|
|
4661
|
+
return JSON.stringify(EightySix$outboundSchema.parse(eightySix));
|
|
4661
4662
|
}
|
|
4662
|
-
export function
|
|
4663
|
-
return safeParse(jsonString, (x) =>
|
|
4663
|
+
export function eightySixFromJSON(jsonString) {
|
|
4664
|
+
return safeParse(jsonString, (x) => EightySix$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'EightySix' from JSON`);
|
|
4664
4665
|
}
|
|
4665
4666
|
/** @internal */
|
|
4666
|
-
export const
|
|
4667
|
+
export const EightyFive$inboundSchema = z.object({
|
|
4667
4668
|
projectName: types.string(),
|
|
4668
4669
|
branch: types.string(),
|
|
4669
4670
|
});
|
|
4670
4671
|
/** @internal */
|
|
4671
|
-
export const
|
|
4672
|
+
export const EightyFive$outboundSchema = z.object({
|
|
4672
4673
|
projectName: z.string(),
|
|
4673
4674
|
branch: z.string(),
|
|
4674
4675
|
});
|
|
4675
|
-
export function
|
|
4676
|
-
return JSON.stringify(
|
|
4676
|
+
export function eightyFiveToJSON(eightyFive) {
|
|
4677
|
+
return JSON.stringify(EightyFive$outboundSchema.parse(eightyFive));
|
|
4677
4678
|
}
|
|
4678
|
-
export function
|
|
4679
|
-
return safeParse(jsonString, (x) =>
|
|
4679
|
+
export function eightyFiveFromJSON(jsonString) {
|
|
4680
|
+
return safeParse(jsonString, (x) => EightyFive$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'EightyFive' from JSON`);
|
|
4680
4681
|
}
|
|
4681
4682
|
/** @internal */
|
|
4682
4683
|
export const UserEventPayloadRole$inboundSchema = z.nativeEnum(UserEventPayloadRole);
|
|
@@ -4751,7 +4752,7 @@ export function removedUsersFromJSON(jsonString) {
|
|
|
4751
4752
|
return safeParse(jsonString, (x) => RemovedUsers$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'RemovedUsers' from JSON`);
|
|
4752
4753
|
}
|
|
4753
4754
|
/** @internal */
|
|
4754
|
-
export const
|
|
4755
|
+
export const EightyFour$inboundSchema = z.object({
|
|
4755
4756
|
plan: types.string(),
|
|
4756
4757
|
removedUsers: types.optional(z.record(z.lazy(() => RemovedUsers$inboundSchema))),
|
|
4757
4758
|
prevPlan: types.optional(types.string()),
|
|
@@ -4766,7 +4767,7 @@ export const EightyThree$inboundSchema = z.object({
|
|
|
4766
4767
|
removedMemberCount: types.optional(types.number()),
|
|
4767
4768
|
});
|
|
4768
4769
|
/** @internal */
|
|
4769
|
-
export const
|
|
4770
|
+
export const EightyFour$outboundSchema = z.object({
|
|
4770
4771
|
plan: z.string(),
|
|
4771
4772
|
removedUsers: z.record(z.lazy(() => RemovedUsers$outboundSchema)).optional(),
|
|
4772
4773
|
prevPlan: z.string().optional(),
|
|
@@ -4780,18 +4781,36 @@ export const EightyThree$outboundSchema = z.object({
|
|
|
4780
4781
|
timestamp: z.number().optional(),
|
|
4781
4782
|
removedMemberCount: z.number().optional(),
|
|
4782
4783
|
});
|
|
4783
|
-
export function
|
|
4784
|
-
return JSON.stringify(
|
|
4784
|
+
export function eightyFourToJSON(eightyFour) {
|
|
4785
|
+
return JSON.stringify(EightyFour$outboundSchema.parse(eightyFour));
|
|
4785
4786
|
}
|
|
4786
|
-
export function
|
|
4787
|
-
return safeParse(jsonString, (x) =>
|
|
4787
|
+
export function eightyFourFromJSON(jsonString) {
|
|
4788
|
+
return safeParse(jsonString, (x) => EightyFour$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'EightyFour' from JSON`);
|
|
4788
4789
|
}
|
|
4789
4790
|
/** @internal */
|
|
4790
|
-
export const
|
|
4791
|
+
export const EightyThree$inboundSchema = z.object({
|
|
4792
|
+
projectName: types.string(),
|
|
4793
|
+
});
|
|
4794
|
+
/** @internal */
|
|
4795
|
+
export const EightyThree$outboundSchema = z.object({
|
|
4796
|
+
projectName: z.string(),
|
|
4797
|
+
});
|
|
4798
|
+
export function eightyThreeToJSON(eightyThree) {
|
|
4799
|
+
return JSON.stringify(EightyThree$outboundSchema.parse(eightyThree));
|
|
4800
|
+
}
|
|
4801
|
+
export function eightyThreeFromJSON(jsonString) {
|
|
4802
|
+
return safeParse(jsonString, (x) => EightyThree$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'EightyThree' from JSON`);
|
|
4803
|
+
}
|
|
4804
|
+
/** @internal */
|
|
4805
|
+
export const EightyTwo$inboundSchema = z.object({
|
|
4806
|
+
projectId: types.string(),
|
|
4807
|
+
toDeploymentId: types.string(),
|
|
4791
4808
|
projectName: types.string(),
|
|
4792
4809
|
});
|
|
4793
4810
|
/** @internal */
|
|
4794
4811
|
export const EightyTwo$outboundSchema = z.object({
|
|
4812
|
+
projectId: z.string(),
|
|
4813
|
+
toDeploymentId: z.string(),
|
|
4795
4814
|
projectName: z.string(),
|
|
4796
4815
|
});
|
|
4797
4816
|
export function eightyTwoToJSON(eightyTwo) {
|
|
@@ -4802,15 +4821,13 @@ export function eightyTwoFromJSON(jsonString) {
|
|
|
4802
4821
|
}
|
|
4803
4822
|
/** @internal */
|
|
4804
4823
|
export const EightyOne$inboundSchema = z.object({
|
|
4805
|
-
|
|
4806
|
-
|
|
4807
|
-
projectName: types.string(),
|
|
4824
|
+
drainUrl: types.nullable(types.string()),
|
|
4825
|
+
integrationName: types.optional(types.string()),
|
|
4808
4826
|
});
|
|
4809
4827
|
/** @internal */
|
|
4810
4828
|
export const EightyOne$outboundSchema = z.object({
|
|
4811
|
-
|
|
4812
|
-
|
|
4813
|
-
projectName: z.string(),
|
|
4829
|
+
drainUrl: z.nullable(z.string()),
|
|
4830
|
+
integrationName: z.string().optional(),
|
|
4814
4831
|
});
|
|
4815
4832
|
export function eightyOneToJSON(eightyOne) {
|
|
4816
4833
|
return JSON.stringify(EightyOne$outboundSchema.parse(eightyOne));
|
|
@@ -4821,12 +4838,12 @@ export function eightyOneFromJSON(jsonString) {
|
|
|
4821
4838
|
/** @internal */
|
|
4822
4839
|
export const Eighty$inboundSchema = z
|
|
4823
4840
|
.object({
|
|
4824
|
-
|
|
4841
|
+
logDrainUrl: types.string(),
|
|
4825
4842
|
integrationName: types.optional(types.string()),
|
|
4826
4843
|
});
|
|
4827
4844
|
/** @internal */
|
|
4828
4845
|
export const Eighty$outboundSchema = z.object({
|
|
4829
|
-
|
|
4846
|
+
logDrainUrl: z.string(),
|
|
4830
4847
|
integrationName: z.string().optional(),
|
|
4831
4848
|
});
|
|
4832
4849
|
export function eightyToJSON(eighty) {
|
|
@@ -4837,12 +4854,12 @@ export function eightyFromJSON(jsonString) {
|
|
|
4837
4854
|
}
|
|
4838
4855
|
/** @internal */
|
|
4839
4856
|
export const SeventyNine$inboundSchema = z.object({
|
|
4840
|
-
logDrainUrl: types.string(),
|
|
4857
|
+
logDrainUrl: types.nullable(types.string()),
|
|
4841
4858
|
integrationName: types.optional(types.string()),
|
|
4842
4859
|
});
|
|
4843
4860
|
/** @internal */
|
|
4844
4861
|
export const SeventyNine$outboundSchema = z.object({
|
|
4845
|
-
logDrainUrl: z.string(),
|
|
4862
|
+
logDrainUrl: z.nullable(z.string()),
|
|
4846
4863
|
integrationName: z.string().optional(),
|
|
4847
4864
|
});
|
|
4848
4865
|
export function seventyNineToJSON(seventyNine) {
|
|
@@ -4853,22 +4870,6 @@ export function seventyNineFromJSON(jsonString) {
|
|
|
4853
4870
|
}
|
|
4854
4871
|
/** @internal */
|
|
4855
4872
|
export const SeventyEight$inboundSchema = z.object({
|
|
4856
|
-
logDrainUrl: types.nullable(types.string()),
|
|
4857
|
-
integrationName: types.optional(types.string()),
|
|
4858
|
-
});
|
|
4859
|
-
/** @internal */
|
|
4860
|
-
export const SeventyEight$outboundSchema = z.object({
|
|
4861
|
-
logDrainUrl: z.nullable(z.string()),
|
|
4862
|
-
integrationName: z.string().optional(),
|
|
4863
|
-
});
|
|
4864
|
-
export function seventyEightToJSON(seventyEight) {
|
|
4865
|
-
return JSON.stringify(SeventyEight$outboundSchema.parse(seventyEight));
|
|
4866
|
-
}
|
|
4867
|
-
export function seventyEightFromJSON(jsonString) {
|
|
4868
|
-
return safeParse(jsonString, (x) => SeventyEight$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'SeventyEight' from JSON`);
|
|
4869
|
-
}
|
|
4870
|
-
/** @internal */
|
|
4871
|
-
export const SeventySeven$inboundSchema = z.object({
|
|
4872
4873
|
integrationId: types.string(),
|
|
4873
4874
|
configurationId: types.string(),
|
|
4874
4875
|
integrationSlug: types.string(),
|
|
@@ -4878,7 +4879,7 @@ export const SeventySeven$inboundSchema = z.object({
|
|
|
4878
4879
|
confirmedScopes: z.array(types.string()),
|
|
4879
4880
|
});
|
|
4880
4881
|
/** @internal */
|
|
4881
|
-
export const
|
|
4882
|
+
export const SeventyEight$outboundSchema = z.object({
|
|
4882
4883
|
integrationId: z.string(),
|
|
4883
4884
|
configurationId: z.string(),
|
|
4884
4885
|
integrationSlug: z.string(),
|
|
@@ -4887,14 +4888,14 @@ export const SeventySeven$outboundSchema = z.object({
|
|
|
4887
4888
|
projectIds: z.array(z.string()).optional(),
|
|
4888
4889
|
confirmedScopes: z.array(z.string()),
|
|
4889
4890
|
});
|
|
4890
|
-
export function
|
|
4891
|
-
return JSON.stringify(
|
|
4891
|
+
export function seventyEightToJSON(seventyEight) {
|
|
4892
|
+
return JSON.stringify(SeventyEight$outboundSchema.parse(seventyEight));
|
|
4892
4893
|
}
|
|
4893
|
-
export function
|
|
4894
|
-
return safeParse(jsonString, (x) =>
|
|
4894
|
+
export function seventyEightFromJSON(jsonString) {
|
|
4895
|
+
return safeParse(jsonString, (x) => SeventyEight$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'SeventyEight' from JSON`);
|
|
4895
4896
|
}
|
|
4896
4897
|
/** @internal */
|
|
4897
|
-
export const
|
|
4898
|
+
export const SeventySeven$inboundSchema = z.object({
|
|
4898
4899
|
projectId: types.string(),
|
|
4899
4900
|
fromDeploymentId: types.string(),
|
|
4900
4901
|
toDeploymentId: types.string(),
|
|
@@ -4902,13 +4903,53 @@ export const SeventySix$inboundSchema = z.object({
|
|
|
4902
4903
|
reason: types.optional(types.string()),
|
|
4903
4904
|
});
|
|
4904
4905
|
/** @internal */
|
|
4905
|
-
export const
|
|
4906
|
+
export const SeventySeven$outboundSchema = z.object({
|
|
4906
4907
|
projectId: z.string(),
|
|
4907
4908
|
fromDeploymentId: z.string(),
|
|
4908
4909
|
toDeploymentId: z.string(),
|
|
4909
4910
|
projectName: z.string(),
|
|
4910
4911
|
reason: z.string().optional(),
|
|
4911
4912
|
});
|
|
4913
|
+
export function seventySevenToJSON(seventySeven) {
|
|
4914
|
+
return JSON.stringify(SeventySeven$outboundSchema.parse(seventySeven));
|
|
4915
|
+
}
|
|
4916
|
+
export function seventySevenFromJSON(jsonString) {
|
|
4917
|
+
return safeParse(jsonString, (x) => SeventySeven$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'SeventySeven' from JSON`);
|
|
4918
|
+
}
|
|
4919
|
+
/** @internal */
|
|
4920
|
+
export const ProjectIds2$inboundSchema = z
|
|
4921
|
+
.nativeEnum(ProjectIds2);
|
|
4922
|
+
/** @internal */
|
|
4923
|
+
export const ProjectIds2$outboundSchema = ProjectIds2$inboundSchema;
|
|
4924
|
+
/** @internal */
|
|
4925
|
+
export const ProjectIds$inboundSchema = smartUnion([z.array(types.string()), ProjectIds2$inboundSchema]);
|
|
4926
|
+
/** @internal */
|
|
4927
|
+
export const ProjectIds$outboundSchema = smartUnion([z.array(z.string()), ProjectIds2$outboundSchema]);
|
|
4928
|
+
export function projectIdsToJSON(projectIds) {
|
|
4929
|
+
return JSON.stringify(ProjectIds$outboundSchema.parse(projectIds));
|
|
4930
|
+
}
|
|
4931
|
+
export function projectIdsFromJSON(jsonString) {
|
|
4932
|
+
return safeParse(jsonString, (x) => ProjectIds$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'ProjectIds' from JSON`);
|
|
4933
|
+
}
|
|
4934
|
+
/** @internal */
|
|
4935
|
+
export const SeventySix$inboundSchema = z.object({
|
|
4936
|
+
integrationId: types.string(),
|
|
4937
|
+
configurationId: types.string(),
|
|
4938
|
+
integrationSlug: types.string(),
|
|
4939
|
+
integrationName: types.string(),
|
|
4940
|
+
ownerId: types.string(),
|
|
4941
|
+
projectIds: types.optional(smartUnion([z.array(types.string()), ProjectIds2$inboundSchema])),
|
|
4942
|
+
});
|
|
4943
|
+
/** @internal */
|
|
4944
|
+
export const SeventySix$outboundSchema = z.object({
|
|
4945
|
+
integrationId: z.string(),
|
|
4946
|
+
configurationId: z.string(),
|
|
4947
|
+
integrationSlug: z.string(),
|
|
4948
|
+
integrationName: z.string(),
|
|
4949
|
+
ownerId: z.string(),
|
|
4950
|
+
projectIds: smartUnion([z.array(z.string()), ProjectIds2$outboundSchema])
|
|
4951
|
+
.optional(),
|
|
4952
|
+
});
|
|
4912
4953
|
export function seventySixToJSON(seventySix) {
|
|
4913
4954
|
return JSON.stringify(SeventySix$outboundSchema.parse(seventySix));
|
|
4914
4955
|
}
|
|
@@ -9346,21 +9387,22 @@ export function payload1FromJSON(jsonString) {
|
|
|
9346
9387
|
/** @internal */
|
|
9347
9388
|
export const Payload$inboundSchema = smartUnion([
|
|
9348
9389
|
z.lazy(() => SeventyFour$inboundSchema),
|
|
9349
|
-
z.lazy(() =>
|
|
9390
|
+
z.lazy(() => SeventyEight$inboundSchema),
|
|
9350
9391
|
z.lazy(() => FortySeven$inboundSchema),
|
|
9351
9392
|
z.lazy(() => FortyEight$inboundSchema),
|
|
9352
9393
|
z.lazy(() => Sixty$inboundSchema),
|
|
9353
9394
|
z.lazy(() => SixtySix$inboundSchema),
|
|
9354
9395
|
z.lazy(() => SeventyTwo$inboundSchema),
|
|
9355
9396
|
z.lazy(() => SeventyFive$inboundSchema),
|
|
9356
|
-
z.lazy(() =>
|
|
9357
|
-
z.lazy(() =>
|
|
9397
|
+
z.lazy(() => SeventySix$inboundSchema),
|
|
9398
|
+
z.lazy(() => OneHundredAndFortyFour$inboundSchema),
|
|
9399
|
+
z.lazy(() => OneHundredAndSeventyFive$inboundSchema),
|
|
9358
9400
|
z.lazy(() => Payload2$inboundSchema),
|
|
9359
9401
|
z.lazy(() => FiftyTwo$inboundSchema),
|
|
9360
|
-
z.lazy(() =>
|
|
9361
|
-
z.lazy(() =>
|
|
9362
|
-
z.lazy(() =>
|
|
9363
|
-
z.lazy(() =>
|
|
9402
|
+
z.lazy(() => SeventySeven$inboundSchema),
|
|
9403
|
+
z.lazy(() => OneHundredAndOne$inboundSchema),
|
|
9404
|
+
z.lazy(() => OneHundredAndThirteen$inboundSchema),
|
|
9405
|
+
z.lazy(() => OneHundredAndFiftyFive$inboundSchema),
|
|
9364
9406
|
z.lazy(() => Fourteen$inboundSchema),
|
|
9365
9407
|
z.lazy(() => Eighteen$inboundSchema),
|
|
9366
9408
|
z.lazy(() => TwentyTwo$inboundSchema),
|
|
@@ -9376,21 +9418,21 @@ export const Payload$inboundSchema = smartUnion([
|
|
|
9376
9418
|
z.lazy(() => SixtyEight$inboundSchema),
|
|
9377
9419
|
z.lazy(() => SixtyNine$inboundSchema),
|
|
9378
9420
|
z.lazy(() => SeventyOne$inboundSchema),
|
|
9379
|
-
z.lazy(() =>
|
|
9380
|
-
z.lazy(() =>
|
|
9381
|
-
z.lazy(() => EightyEight$inboundSchema),
|
|
9421
|
+
z.lazy(() => EightyTwo$inboundSchema),
|
|
9422
|
+
z.lazy(() => EightySix$inboundSchema),
|
|
9382
9423
|
z.lazy(() => EightyNine$inboundSchema),
|
|
9383
|
-
z.lazy(() =>
|
|
9384
|
-
z.lazy(() =>
|
|
9385
|
-
z.lazy(() =>
|
|
9424
|
+
z.lazy(() => Ninety$inboundSchema),
|
|
9425
|
+
z.lazy(() => OneHundredAndFour$inboundSchema),
|
|
9426
|
+
z.lazy(() => OneHundredAndTwentyTwo$inboundSchema),
|
|
9386
9427
|
z.lazy(() => OneHundredAndFortySix$inboundSchema),
|
|
9387
|
-
z.lazy(() =>
|
|
9388
|
-
z.lazy(() =>
|
|
9389
|
-
z.lazy(() =>
|
|
9390
|
-
z.lazy(() =>
|
|
9391
|
-
z.lazy(() =>
|
|
9428
|
+
z.lazy(() => OneHundredAndFortySeven$inboundSchema),
|
|
9429
|
+
z.lazy(() => OneHundredAndFiftyFour$inboundSchema),
|
|
9430
|
+
z.lazy(() => OneHundredAndFiftySix$inboundSchema),
|
|
9431
|
+
z.lazy(() => OneHundredAndFiftyEight$inboundSchema),
|
|
9432
|
+
z.lazy(() => OneHundredAndSixtyOne$inboundSchema),
|
|
9392
9433
|
z.lazy(() => OneHundredAndSeventyTwo$inboundSchema),
|
|
9393
9434
|
z.lazy(() => OneHundredAndSeventyThree$inboundSchema),
|
|
9435
|
+
z.lazy(() => OneHundredAndSeventyFour$inboundSchema),
|
|
9394
9436
|
z.lazy(() => Three$inboundSchema),
|
|
9395
9437
|
z.lazy(() => Four$inboundSchema),
|
|
9396
9438
|
z.lazy(() => Six$inboundSchema),
|
|
@@ -9411,38 +9453,38 @@ export const Payload$inboundSchema = smartUnion([
|
|
|
9411
9453
|
z.lazy(() => SixtyFive$inboundSchema),
|
|
9412
9454
|
z.lazy(() => Seventy$inboundSchema),
|
|
9413
9455
|
z.lazy(() => SeventyThree$inboundSchema),
|
|
9414
|
-
z.lazy(() =>
|
|
9415
|
-
z.lazy(() => NinetyTwo$inboundSchema),
|
|
9456
|
+
z.lazy(() => EightyFive$inboundSchema),
|
|
9416
9457
|
z.lazy(() => NinetyThree$inboundSchema),
|
|
9417
9458
|
z.lazy(() => NinetyFour$inboundSchema),
|
|
9418
|
-
z.lazy(() =>
|
|
9459
|
+
z.lazy(() => NinetyFive$inboundSchema),
|
|
9419
9460
|
z.lazy(() => NinetyEight$inboundSchema),
|
|
9420
9461
|
z.lazy(() => NinetyNine$inboundSchema),
|
|
9421
|
-
z.lazy(() =>
|
|
9462
|
+
z.lazy(() => OneHundred$inboundSchema),
|
|
9422
9463
|
z.lazy(() => OneHundredAndTwo$inboundSchema),
|
|
9423
|
-
z.lazy(() =>
|
|
9464
|
+
z.lazy(() => OneHundredAndThree$inboundSchema),
|
|
9424
9465
|
z.lazy(() => OneHundredAndFive$inboundSchema),
|
|
9425
|
-
z.lazy(() =>
|
|
9466
|
+
z.lazy(() => OneHundredAndSix$inboundSchema),
|
|
9426
9467
|
z.lazy(() => OneHundredAndNine$inboundSchema),
|
|
9427
9468
|
z.lazy(() => OneHundredAndTen$inboundSchema),
|
|
9428
|
-
z.lazy(() =>
|
|
9429
|
-
z.lazy(() =>
|
|
9469
|
+
z.lazy(() => OneHundredAndEleven$inboundSchema),
|
|
9470
|
+
z.lazy(() => OneHundredAndEighteen$inboundSchema),
|
|
9430
9471
|
z.lazy(() => OneHundredAndTwentySeven$inboundSchema),
|
|
9431
|
-
z.lazy(() =>
|
|
9472
|
+
z.lazy(() => OneHundredAndTwentyEight$inboundSchema),
|
|
9432
9473
|
z.lazy(() => OneHundredAndThirtyThree$inboundSchema),
|
|
9433
|
-
z.lazy(() =>
|
|
9434
|
-
z.lazy(() =>
|
|
9435
|
-
z.lazy(() =>
|
|
9474
|
+
z.lazy(() => OneHundredAndThirtyFour$inboundSchema),
|
|
9475
|
+
z.lazy(() => OneHundredAndThirtySix$inboundSchema),
|
|
9476
|
+
z.lazy(() => OneHundredAndFortyFive$inboundSchema),
|
|
9436
9477
|
z.lazy(() => OneHundredAndFortyEight$inboundSchema),
|
|
9437
9478
|
z.lazy(() => OneHundredAndFortyNine$inboundSchema),
|
|
9438
|
-
z.lazy(() =>
|
|
9479
|
+
z.lazy(() => OneHundredAndFifty$inboundSchema),
|
|
9439
9480
|
z.lazy(() => OneHundredAndFiftyTwo$inboundSchema),
|
|
9440
|
-
z.lazy(() =>
|
|
9481
|
+
z.lazy(() => OneHundredAndFiftyThree$inboundSchema),
|
|
9441
9482
|
z.lazy(() => OneHundredAndFiftyNine$inboundSchema),
|
|
9442
|
-
z.lazy(() =>
|
|
9443
|
-
z.lazy(() =>
|
|
9483
|
+
z.lazy(() => OneHundredAndSixty$inboundSchema),
|
|
9484
|
+
z.lazy(() => OneHundredAndSixtyTwo$inboundSchema),
|
|
9444
9485
|
z.lazy(() => OneHundredAndSixtyFour$inboundSchema),
|
|
9445
9486
|
z.lazy(() => OneHundredAndSixtyFive$inboundSchema),
|
|
9487
|
+
z.lazy(() => OneHundredAndSixtySix$inboundSchema),
|
|
9446
9488
|
z.lazy(() => Five$inboundSchema),
|
|
9447
9489
|
z.lazy(() => Seventeen$inboundSchema),
|
|
9448
9490
|
z.lazy(() => TwentyFour$inboundSchema),
|
|
@@ -9458,42 +9500,42 @@ export const Payload$inboundSchema = smartUnion([
|
|
|
9458
9500
|
z.lazy(() => FiftyThree$inboundSchema),
|
|
9459
9501
|
z.lazy(() => FiftyEight$inboundSchema),
|
|
9460
9502
|
z.lazy(() => FiftyNine$inboundSchema),
|
|
9461
|
-
z.lazy(() => SeventyEight$inboundSchema),
|
|
9462
9503
|
z.lazy(() => SeventyNine$inboundSchema),
|
|
9463
9504
|
z.lazy(() => Eighty$inboundSchema),
|
|
9464
|
-
z.lazy(() =>
|
|
9505
|
+
z.lazy(() => EightyOne$inboundSchema),
|
|
9465
9506
|
z.lazy(() => EightyThree$inboundSchema),
|
|
9466
|
-
z.lazy(() =>
|
|
9507
|
+
z.lazy(() => EightyFour$inboundSchema),
|
|
9467
9508
|
z.lazy(() => EightySeven$inboundSchema),
|
|
9468
|
-
z.lazy(() =>
|
|
9509
|
+
z.lazy(() => EightyEight$inboundSchema),
|
|
9469
9510
|
z.lazy(() => NinetyOne$inboundSchema),
|
|
9470
|
-
z.lazy(() =>
|
|
9511
|
+
z.lazy(() => NinetyTwo$inboundSchema),
|
|
9471
9512
|
z.lazy(() => NinetySix$inboundSchema),
|
|
9472
|
-
z.lazy(() =>
|
|
9513
|
+
z.lazy(() => NinetySeven$inboundSchema),
|
|
9473
9514
|
z.lazy(() => OneHundredAndSeven$inboundSchema),
|
|
9474
|
-
z.lazy(() =>
|
|
9475
|
-
z.lazy(() =>
|
|
9515
|
+
z.lazy(() => OneHundredAndEight$inboundSchema),
|
|
9516
|
+
z.lazy(() => OneHundredAndTwelve$inboundSchema),
|
|
9476
9517
|
z.lazy(() => OneHundredAndFourteen$inboundSchema),
|
|
9477
9518
|
z.lazy(() => OneHundredAndFifteen$inboundSchema),
|
|
9478
|
-
z.lazy(() =>
|
|
9519
|
+
z.lazy(() => OneHundredAndSixteen$inboundSchema),
|
|
9479
9520
|
z.lazy(() => OneHundredAndNineteen$inboundSchema),
|
|
9480
9521
|
z.lazy(() => OneHundredAndTwenty$inboundSchema),
|
|
9481
|
-
z.lazy(() =>
|
|
9522
|
+
z.lazy(() => OneHundredAndTwentyOne$inboundSchema),
|
|
9482
9523
|
z.lazy(() => OneHundredAndTwentyFive$inboundSchema),
|
|
9483
|
-
z.lazy(() =>
|
|
9484
|
-
z.lazy(() =>
|
|
9485
|
-
z.lazy(() =>
|
|
9486
|
-
z.lazy(() =>
|
|
9524
|
+
z.lazy(() => OneHundredAndTwentySix$inboundSchema),
|
|
9525
|
+
z.lazy(() => OneHundredAndTwentyNine$inboundSchema),
|
|
9526
|
+
z.lazy(() => OneHundredAndThirtyFive$inboundSchema),
|
|
9527
|
+
z.lazy(() => OneHundredAndThirtySeven$inboundSchema),
|
|
9487
9528
|
z.lazy(() => OneHundredAndFortyOne$inboundSchema),
|
|
9488
9529
|
z.lazy(() => OneHundredAndFortyTwo$inboundSchema),
|
|
9489
|
-
z.lazy(() =>
|
|
9490
|
-
z.lazy(() =>
|
|
9491
|
-
z.lazy(() =>
|
|
9492
|
-
z.lazy(() =>
|
|
9530
|
+
z.lazy(() => OneHundredAndFortyThree$inboundSchema),
|
|
9531
|
+
z.lazy(() => OneHundredAndFiftyOne$inboundSchema),
|
|
9532
|
+
z.lazy(() => OneHundredAndFiftySeven$inboundSchema),
|
|
9533
|
+
z.lazy(() => OneHundredAndSixtyThree$inboundSchema),
|
|
9493
9534
|
z.lazy(() => OneHundredAndSixtySeven$inboundSchema),
|
|
9494
9535
|
z.lazy(() => OneHundredAndSixtyEight$inboundSchema),
|
|
9495
9536
|
z.lazy(() => OneHundredAndSixtyNine$inboundSchema),
|
|
9496
9537
|
z.lazy(() => OneHundredAndSeventy$inboundSchema),
|
|
9538
|
+
z.lazy(() => OneHundredAndSeventyOne$inboundSchema),
|
|
9497
9539
|
z.lazy(() => Payload1$inboundSchema),
|
|
9498
9540
|
z.lazy(() => Nine$inboundSchema),
|
|
9499
9541
|
z.lazy(() => Ten$inboundSchema),
|
|
@@ -9510,34 +9552,35 @@ export const Payload$inboundSchema = smartUnion([
|
|
|
9510
9552
|
z.lazy(() => SixtyTwo$inboundSchema),
|
|
9511
9553
|
z.lazy(() => SixtyThree$inboundSchema),
|
|
9512
9554
|
z.lazy(() => SixtyFour$inboundSchema),
|
|
9513
|
-
z.lazy(() =>
|
|
9514
|
-
z.lazy(() => OneHundredAndTwentyTwo$inboundSchema),
|
|
9555
|
+
z.lazy(() => OneHundredAndSeventeen$inboundSchema),
|
|
9515
9556
|
z.lazy(() => OneHundredAndTwentyThree$inboundSchema),
|
|
9516
|
-
z.lazy(() =>
|
|
9557
|
+
z.lazy(() => OneHundredAndTwentyFour$inboundSchema),
|
|
9517
9558
|
z.lazy(() => OneHundredAndThirty$inboundSchema),
|
|
9518
9559
|
z.lazy(() => OneHundredAndThirtyOne$inboundSchema),
|
|
9519
|
-
z.lazy(() =>
|
|
9560
|
+
z.lazy(() => OneHundredAndThirtyTwo$inboundSchema),
|
|
9520
9561
|
z.lazy(() => OneHundredAndThirtyEight$inboundSchema),
|
|
9521
9562
|
z.lazy(() => OneHundredAndThirtyNine$inboundSchema),
|
|
9563
|
+
z.lazy(() => OneHundredAndForty$inboundSchema),
|
|
9522
9564
|
]);
|
|
9523
9565
|
/** @internal */
|
|
9524
9566
|
export const Payload$outboundSchema = smartUnion([
|
|
9525
9567
|
z.lazy(() => SeventyFour$outboundSchema),
|
|
9526
|
-
z.lazy(() =>
|
|
9568
|
+
z.lazy(() => SeventyEight$outboundSchema),
|
|
9527
9569
|
z.lazy(() => FortySeven$outboundSchema),
|
|
9528
9570
|
z.lazy(() => FortyEight$outboundSchema),
|
|
9529
9571
|
z.lazy(() => Sixty$outboundSchema),
|
|
9530
9572
|
z.lazy(() => SixtySix$outboundSchema),
|
|
9531
9573
|
z.lazy(() => SeventyTwo$outboundSchema),
|
|
9532
9574
|
z.lazy(() => SeventyFive$outboundSchema),
|
|
9533
|
-
z.lazy(() =>
|
|
9534
|
-
z.lazy(() =>
|
|
9575
|
+
z.lazy(() => SeventySix$outboundSchema),
|
|
9576
|
+
z.lazy(() => OneHundredAndFortyFour$outboundSchema),
|
|
9577
|
+
z.lazy(() => OneHundredAndSeventyFive$outboundSchema),
|
|
9535
9578
|
z.lazy(() => Payload2$outboundSchema),
|
|
9536
9579
|
z.lazy(() => FiftyTwo$outboundSchema),
|
|
9537
|
-
z.lazy(() =>
|
|
9538
|
-
z.lazy(() =>
|
|
9539
|
-
z.lazy(() =>
|
|
9540
|
-
z.lazy(() =>
|
|
9580
|
+
z.lazy(() => SeventySeven$outboundSchema),
|
|
9581
|
+
z.lazy(() => OneHundredAndOne$outboundSchema),
|
|
9582
|
+
z.lazy(() => OneHundredAndThirteen$outboundSchema),
|
|
9583
|
+
z.lazy(() => OneHundredAndFiftyFive$outboundSchema),
|
|
9541
9584
|
z.lazy(() => Fourteen$outboundSchema),
|
|
9542
9585
|
z.lazy(() => Eighteen$outboundSchema),
|
|
9543
9586
|
z.lazy(() => TwentyTwo$outboundSchema),
|
|
@@ -9553,21 +9596,21 @@ export const Payload$outboundSchema = smartUnion([
|
|
|
9553
9596
|
z.lazy(() => SixtyEight$outboundSchema),
|
|
9554
9597
|
z.lazy(() => SixtyNine$outboundSchema),
|
|
9555
9598
|
z.lazy(() => SeventyOne$outboundSchema),
|
|
9556
|
-
z.lazy(() =>
|
|
9557
|
-
z.lazy(() =>
|
|
9558
|
-
z.lazy(() => EightyEight$outboundSchema),
|
|
9599
|
+
z.lazy(() => EightyTwo$outboundSchema),
|
|
9600
|
+
z.lazy(() => EightySix$outboundSchema),
|
|
9559
9601
|
z.lazy(() => EightyNine$outboundSchema),
|
|
9560
|
-
z.lazy(() =>
|
|
9561
|
-
z.lazy(() =>
|
|
9562
|
-
z.lazy(() =>
|
|
9602
|
+
z.lazy(() => Ninety$outboundSchema),
|
|
9603
|
+
z.lazy(() => OneHundredAndFour$outboundSchema),
|
|
9604
|
+
z.lazy(() => OneHundredAndTwentyTwo$outboundSchema),
|
|
9563
9605
|
z.lazy(() => OneHundredAndFortySix$outboundSchema),
|
|
9564
|
-
z.lazy(() =>
|
|
9565
|
-
z.lazy(() =>
|
|
9566
|
-
z.lazy(() =>
|
|
9567
|
-
z.lazy(() =>
|
|
9568
|
-
z.lazy(() =>
|
|
9606
|
+
z.lazy(() => OneHundredAndFortySeven$outboundSchema),
|
|
9607
|
+
z.lazy(() => OneHundredAndFiftyFour$outboundSchema),
|
|
9608
|
+
z.lazy(() => OneHundredAndFiftySix$outboundSchema),
|
|
9609
|
+
z.lazy(() => OneHundredAndFiftyEight$outboundSchema),
|
|
9610
|
+
z.lazy(() => OneHundredAndSixtyOne$outboundSchema),
|
|
9569
9611
|
z.lazy(() => OneHundredAndSeventyTwo$outboundSchema),
|
|
9570
9612
|
z.lazy(() => OneHundredAndSeventyThree$outboundSchema),
|
|
9613
|
+
z.lazy(() => OneHundredAndSeventyFour$outboundSchema),
|
|
9571
9614
|
z.lazy(() => Three$outboundSchema),
|
|
9572
9615
|
z.lazy(() => Four$outboundSchema),
|
|
9573
9616
|
z.lazy(() => Six$outboundSchema),
|
|
@@ -9588,38 +9631,38 @@ export const Payload$outboundSchema = smartUnion([
|
|
|
9588
9631
|
z.lazy(() => SixtyFive$outboundSchema),
|
|
9589
9632
|
z.lazy(() => Seventy$outboundSchema),
|
|
9590
9633
|
z.lazy(() => SeventyThree$outboundSchema),
|
|
9591
|
-
z.lazy(() =>
|
|
9592
|
-
z.lazy(() => NinetyTwo$outboundSchema),
|
|
9634
|
+
z.lazy(() => EightyFive$outboundSchema),
|
|
9593
9635
|
z.lazy(() => NinetyThree$outboundSchema),
|
|
9594
9636
|
z.lazy(() => NinetyFour$outboundSchema),
|
|
9595
|
-
z.lazy(() =>
|
|
9637
|
+
z.lazy(() => NinetyFive$outboundSchema),
|
|
9596
9638
|
z.lazy(() => NinetyEight$outboundSchema),
|
|
9597
9639
|
z.lazy(() => NinetyNine$outboundSchema),
|
|
9598
|
-
z.lazy(() =>
|
|
9640
|
+
z.lazy(() => OneHundred$outboundSchema),
|
|
9599
9641
|
z.lazy(() => OneHundredAndTwo$outboundSchema),
|
|
9600
|
-
z.lazy(() =>
|
|
9642
|
+
z.lazy(() => OneHundredAndThree$outboundSchema),
|
|
9601
9643
|
z.lazy(() => OneHundredAndFive$outboundSchema),
|
|
9602
|
-
z.lazy(() =>
|
|
9644
|
+
z.lazy(() => OneHundredAndSix$outboundSchema),
|
|
9603
9645
|
z.lazy(() => OneHundredAndNine$outboundSchema),
|
|
9604
9646
|
z.lazy(() => OneHundredAndTen$outboundSchema),
|
|
9605
|
-
z.lazy(() =>
|
|
9606
|
-
z.lazy(() =>
|
|
9647
|
+
z.lazy(() => OneHundredAndEleven$outboundSchema),
|
|
9648
|
+
z.lazy(() => OneHundredAndEighteen$outboundSchema),
|
|
9607
9649
|
z.lazy(() => OneHundredAndTwentySeven$outboundSchema),
|
|
9608
|
-
z.lazy(() =>
|
|
9650
|
+
z.lazy(() => OneHundredAndTwentyEight$outboundSchema),
|
|
9609
9651
|
z.lazy(() => OneHundredAndThirtyThree$outboundSchema),
|
|
9610
|
-
z.lazy(() =>
|
|
9611
|
-
z.lazy(() =>
|
|
9612
|
-
z.lazy(() =>
|
|
9652
|
+
z.lazy(() => OneHundredAndThirtyFour$outboundSchema),
|
|
9653
|
+
z.lazy(() => OneHundredAndThirtySix$outboundSchema),
|
|
9654
|
+
z.lazy(() => OneHundredAndFortyFive$outboundSchema),
|
|
9613
9655
|
z.lazy(() => OneHundredAndFortyEight$outboundSchema),
|
|
9614
9656
|
z.lazy(() => OneHundredAndFortyNine$outboundSchema),
|
|
9615
|
-
z.lazy(() =>
|
|
9657
|
+
z.lazy(() => OneHundredAndFifty$outboundSchema),
|
|
9616
9658
|
z.lazy(() => OneHundredAndFiftyTwo$outboundSchema),
|
|
9617
|
-
z.lazy(() =>
|
|
9659
|
+
z.lazy(() => OneHundredAndFiftyThree$outboundSchema),
|
|
9618
9660
|
z.lazy(() => OneHundredAndFiftyNine$outboundSchema),
|
|
9619
|
-
z.lazy(() =>
|
|
9620
|
-
z.lazy(() =>
|
|
9661
|
+
z.lazy(() => OneHundredAndSixty$outboundSchema),
|
|
9662
|
+
z.lazy(() => OneHundredAndSixtyTwo$outboundSchema),
|
|
9621
9663
|
z.lazy(() => OneHundredAndSixtyFour$outboundSchema),
|
|
9622
9664
|
z.lazy(() => OneHundredAndSixtyFive$outboundSchema),
|
|
9665
|
+
z.lazy(() => OneHundredAndSixtySix$outboundSchema),
|
|
9623
9666
|
z.lazy(() => Five$outboundSchema),
|
|
9624
9667
|
z.lazy(() => Seventeen$outboundSchema),
|
|
9625
9668
|
z.lazy(() => TwentyFour$outboundSchema),
|
|
@@ -9635,42 +9678,42 @@ export const Payload$outboundSchema = smartUnion([
|
|
|
9635
9678
|
z.lazy(() => FiftyThree$outboundSchema),
|
|
9636
9679
|
z.lazy(() => FiftyEight$outboundSchema),
|
|
9637
9680
|
z.lazy(() => FiftyNine$outboundSchema),
|
|
9638
|
-
z.lazy(() => SeventyEight$outboundSchema),
|
|
9639
9681
|
z.lazy(() => SeventyNine$outboundSchema),
|
|
9640
9682
|
z.lazy(() => Eighty$outboundSchema),
|
|
9641
|
-
z.lazy(() =>
|
|
9683
|
+
z.lazy(() => EightyOne$outboundSchema),
|
|
9642
9684
|
z.lazy(() => EightyThree$outboundSchema),
|
|
9643
|
-
z.lazy(() =>
|
|
9685
|
+
z.lazy(() => EightyFour$outboundSchema),
|
|
9644
9686
|
z.lazy(() => EightySeven$outboundSchema),
|
|
9645
|
-
z.lazy(() =>
|
|
9687
|
+
z.lazy(() => EightyEight$outboundSchema),
|
|
9646
9688
|
z.lazy(() => NinetyOne$outboundSchema),
|
|
9647
|
-
z.lazy(() =>
|
|
9689
|
+
z.lazy(() => NinetyTwo$outboundSchema),
|
|
9648
9690
|
z.lazy(() => NinetySix$outboundSchema),
|
|
9649
|
-
z.lazy(() =>
|
|
9691
|
+
z.lazy(() => NinetySeven$outboundSchema),
|
|
9650
9692
|
z.lazy(() => OneHundredAndSeven$outboundSchema),
|
|
9651
|
-
z.lazy(() =>
|
|
9652
|
-
z.lazy(() =>
|
|
9693
|
+
z.lazy(() => OneHundredAndEight$outboundSchema),
|
|
9694
|
+
z.lazy(() => OneHundredAndTwelve$outboundSchema),
|
|
9653
9695
|
z.lazy(() => OneHundredAndFourteen$outboundSchema),
|
|
9654
9696
|
z.lazy(() => OneHundredAndFifteen$outboundSchema),
|
|
9655
|
-
z.lazy(() =>
|
|
9697
|
+
z.lazy(() => OneHundredAndSixteen$outboundSchema),
|
|
9656
9698
|
z.lazy(() => OneHundredAndNineteen$outboundSchema),
|
|
9657
9699
|
z.lazy(() => OneHundredAndTwenty$outboundSchema),
|
|
9658
|
-
z.lazy(() =>
|
|
9700
|
+
z.lazy(() => OneHundredAndTwentyOne$outboundSchema),
|
|
9659
9701
|
z.lazy(() => OneHundredAndTwentyFive$outboundSchema),
|
|
9660
|
-
z.lazy(() =>
|
|
9661
|
-
z.lazy(() =>
|
|
9662
|
-
z.lazy(() =>
|
|
9663
|
-
z.lazy(() =>
|
|
9702
|
+
z.lazy(() => OneHundredAndTwentySix$outboundSchema),
|
|
9703
|
+
z.lazy(() => OneHundredAndTwentyNine$outboundSchema),
|
|
9704
|
+
z.lazy(() => OneHundredAndThirtyFive$outboundSchema),
|
|
9705
|
+
z.lazy(() => OneHundredAndThirtySeven$outboundSchema),
|
|
9664
9706
|
z.lazy(() => OneHundredAndFortyOne$outboundSchema),
|
|
9665
9707
|
z.lazy(() => OneHundredAndFortyTwo$outboundSchema),
|
|
9666
|
-
z.lazy(() =>
|
|
9667
|
-
z.lazy(() =>
|
|
9668
|
-
z.lazy(() =>
|
|
9669
|
-
z.lazy(() =>
|
|
9708
|
+
z.lazy(() => OneHundredAndFortyThree$outboundSchema),
|
|
9709
|
+
z.lazy(() => OneHundredAndFiftyOne$outboundSchema),
|
|
9710
|
+
z.lazy(() => OneHundredAndFiftySeven$outboundSchema),
|
|
9711
|
+
z.lazy(() => OneHundredAndSixtyThree$outboundSchema),
|
|
9670
9712
|
z.lazy(() => OneHundredAndSixtySeven$outboundSchema),
|
|
9671
9713
|
z.lazy(() => OneHundredAndSixtyEight$outboundSchema),
|
|
9672
9714
|
z.lazy(() => OneHundredAndSixtyNine$outboundSchema),
|
|
9673
9715
|
z.lazy(() => OneHundredAndSeventy$outboundSchema),
|
|
9716
|
+
z.lazy(() => OneHundredAndSeventyOne$outboundSchema),
|
|
9674
9717
|
z.lazy(() => Payload1$outboundSchema),
|
|
9675
9718
|
z.lazy(() => Nine$outboundSchema),
|
|
9676
9719
|
z.lazy(() => Ten$outboundSchema),
|
|
@@ -9687,15 +9730,15 @@ export const Payload$outboundSchema = smartUnion([
|
|
|
9687
9730
|
z.lazy(() => SixtyTwo$outboundSchema),
|
|
9688
9731
|
z.lazy(() => SixtyThree$outboundSchema),
|
|
9689
9732
|
z.lazy(() => SixtyFour$outboundSchema),
|
|
9690
|
-
z.lazy(() =>
|
|
9691
|
-
z.lazy(() => OneHundredAndTwentyTwo$outboundSchema),
|
|
9733
|
+
z.lazy(() => OneHundredAndSeventeen$outboundSchema),
|
|
9692
9734
|
z.lazy(() => OneHundredAndTwentyThree$outboundSchema),
|
|
9693
|
-
z.lazy(() =>
|
|
9735
|
+
z.lazy(() => OneHundredAndTwentyFour$outboundSchema),
|
|
9694
9736
|
z.lazy(() => OneHundredAndThirty$outboundSchema),
|
|
9695
9737
|
z.lazy(() => OneHundredAndThirtyOne$outboundSchema),
|
|
9696
|
-
z.lazy(() =>
|
|
9738
|
+
z.lazy(() => OneHundredAndThirtyTwo$outboundSchema),
|
|
9697
9739
|
z.lazy(() => OneHundredAndThirtyEight$outboundSchema),
|
|
9698
9740
|
z.lazy(() => OneHundredAndThirtyNine$outboundSchema),
|
|
9741
|
+
z.lazy(() => OneHundredAndForty$outboundSchema),
|
|
9699
9742
|
]);
|
|
9700
9743
|
export function payloadToJSON(payload) {
|
|
9701
9744
|
return JSON.stringify(Payload$outboundSchema.parse(payload));
|
|
@@ -9723,21 +9766,22 @@ export const UserEvent$inboundSchema = z.object({
|
|
|
9723
9766
|
viaIds: types.optional(z.array(types.string())),
|
|
9724
9767
|
payload: types.optional(smartUnion([
|
|
9725
9768
|
z.lazy(() => SeventyFour$inboundSchema),
|
|
9726
|
-
z.lazy(() =>
|
|
9769
|
+
z.lazy(() => SeventyEight$inboundSchema),
|
|
9727
9770
|
z.lazy(() => FortySeven$inboundSchema),
|
|
9728
9771
|
z.lazy(() => FortyEight$inboundSchema),
|
|
9729
9772
|
z.lazy(() => Sixty$inboundSchema),
|
|
9730
9773
|
z.lazy(() => SixtySix$inboundSchema),
|
|
9731
9774
|
z.lazy(() => SeventyTwo$inboundSchema),
|
|
9732
9775
|
z.lazy(() => SeventyFive$inboundSchema),
|
|
9733
|
-
z.lazy(() =>
|
|
9734
|
-
z.lazy(() =>
|
|
9776
|
+
z.lazy(() => SeventySix$inboundSchema),
|
|
9777
|
+
z.lazy(() => OneHundredAndFortyFour$inboundSchema),
|
|
9778
|
+
z.lazy(() => OneHundredAndSeventyFive$inboundSchema),
|
|
9735
9779
|
z.lazy(() => Payload2$inboundSchema),
|
|
9736
9780
|
z.lazy(() => FiftyTwo$inboundSchema),
|
|
9737
|
-
z.lazy(() =>
|
|
9738
|
-
z.lazy(() =>
|
|
9739
|
-
z.lazy(() =>
|
|
9740
|
-
z.lazy(() =>
|
|
9781
|
+
z.lazy(() => SeventySeven$inboundSchema),
|
|
9782
|
+
z.lazy(() => OneHundredAndOne$inboundSchema),
|
|
9783
|
+
z.lazy(() => OneHundredAndThirteen$inboundSchema),
|
|
9784
|
+
z.lazy(() => OneHundredAndFiftyFive$inboundSchema),
|
|
9741
9785
|
z.lazy(() => Fourteen$inboundSchema),
|
|
9742
9786
|
z.lazy(() => Eighteen$inboundSchema),
|
|
9743
9787
|
z.lazy(() => TwentyTwo$inboundSchema),
|
|
@@ -9753,21 +9797,21 @@ export const UserEvent$inboundSchema = z.object({
|
|
|
9753
9797
|
z.lazy(() => SixtyEight$inboundSchema),
|
|
9754
9798
|
z.lazy(() => SixtyNine$inboundSchema),
|
|
9755
9799
|
z.lazy(() => SeventyOne$inboundSchema),
|
|
9756
|
-
z.lazy(() =>
|
|
9757
|
-
z.lazy(() =>
|
|
9758
|
-
z.lazy(() => EightyEight$inboundSchema),
|
|
9800
|
+
z.lazy(() => EightyTwo$inboundSchema),
|
|
9801
|
+
z.lazy(() => EightySix$inboundSchema),
|
|
9759
9802
|
z.lazy(() => EightyNine$inboundSchema),
|
|
9760
|
-
z.lazy(() =>
|
|
9761
|
-
z.lazy(() =>
|
|
9762
|
-
z.lazy(() =>
|
|
9803
|
+
z.lazy(() => Ninety$inboundSchema),
|
|
9804
|
+
z.lazy(() => OneHundredAndFour$inboundSchema),
|
|
9805
|
+
z.lazy(() => OneHundredAndTwentyTwo$inboundSchema),
|
|
9763
9806
|
z.lazy(() => OneHundredAndFortySix$inboundSchema),
|
|
9764
|
-
z.lazy(() =>
|
|
9765
|
-
z.lazy(() =>
|
|
9766
|
-
z.lazy(() =>
|
|
9767
|
-
z.lazy(() =>
|
|
9768
|
-
z.lazy(() =>
|
|
9807
|
+
z.lazy(() => OneHundredAndFortySeven$inboundSchema),
|
|
9808
|
+
z.lazy(() => OneHundredAndFiftyFour$inboundSchema),
|
|
9809
|
+
z.lazy(() => OneHundredAndFiftySix$inboundSchema),
|
|
9810
|
+
z.lazy(() => OneHundredAndFiftyEight$inboundSchema),
|
|
9811
|
+
z.lazy(() => OneHundredAndSixtyOne$inboundSchema),
|
|
9769
9812
|
z.lazy(() => OneHundredAndSeventyTwo$inboundSchema),
|
|
9770
9813
|
z.lazy(() => OneHundredAndSeventyThree$inboundSchema),
|
|
9814
|
+
z.lazy(() => OneHundredAndSeventyFour$inboundSchema),
|
|
9771
9815
|
z.lazy(() => Three$inboundSchema),
|
|
9772
9816
|
z.lazy(() => Four$inboundSchema),
|
|
9773
9817
|
z.lazy(() => Six$inboundSchema),
|
|
@@ -9788,38 +9832,38 @@ export const UserEvent$inboundSchema = z.object({
|
|
|
9788
9832
|
z.lazy(() => SixtyFive$inboundSchema),
|
|
9789
9833
|
z.lazy(() => Seventy$inboundSchema),
|
|
9790
9834
|
z.lazy(() => SeventyThree$inboundSchema),
|
|
9791
|
-
z.lazy(() =>
|
|
9792
|
-
z.lazy(() => NinetyTwo$inboundSchema),
|
|
9835
|
+
z.lazy(() => EightyFive$inboundSchema),
|
|
9793
9836
|
z.lazy(() => NinetyThree$inboundSchema),
|
|
9794
9837
|
z.lazy(() => NinetyFour$inboundSchema),
|
|
9795
|
-
z.lazy(() =>
|
|
9838
|
+
z.lazy(() => NinetyFive$inboundSchema),
|
|
9796
9839
|
z.lazy(() => NinetyEight$inboundSchema),
|
|
9797
9840
|
z.lazy(() => NinetyNine$inboundSchema),
|
|
9798
|
-
z.lazy(() =>
|
|
9841
|
+
z.lazy(() => OneHundred$inboundSchema),
|
|
9799
9842
|
z.lazy(() => OneHundredAndTwo$inboundSchema),
|
|
9800
|
-
z.lazy(() =>
|
|
9843
|
+
z.lazy(() => OneHundredAndThree$inboundSchema),
|
|
9801
9844
|
z.lazy(() => OneHundredAndFive$inboundSchema),
|
|
9802
|
-
z.lazy(() =>
|
|
9845
|
+
z.lazy(() => OneHundredAndSix$inboundSchema),
|
|
9803
9846
|
z.lazy(() => OneHundredAndNine$inboundSchema),
|
|
9804
9847
|
z.lazy(() => OneHundredAndTen$inboundSchema),
|
|
9805
|
-
z.lazy(() =>
|
|
9806
|
-
z.lazy(() =>
|
|
9848
|
+
z.lazy(() => OneHundredAndEleven$inboundSchema),
|
|
9849
|
+
z.lazy(() => OneHundredAndEighteen$inboundSchema),
|
|
9807
9850
|
z.lazy(() => OneHundredAndTwentySeven$inboundSchema),
|
|
9808
|
-
z.lazy(() =>
|
|
9851
|
+
z.lazy(() => OneHundredAndTwentyEight$inboundSchema),
|
|
9809
9852
|
z.lazy(() => OneHundredAndThirtyThree$inboundSchema),
|
|
9810
|
-
z.lazy(() =>
|
|
9811
|
-
z.lazy(() =>
|
|
9812
|
-
z.lazy(() =>
|
|
9853
|
+
z.lazy(() => OneHundredAndThirtyFour$inboundSchema),
|
|
9854
|
+
z.lazy(() => OneHundredAndThirtySix$inboundSchema),
|
|
9855
|
+
z.lazy(() => OneHundredAndFortyFive$inboundSchema),
|
|
9813
9856
|
z.lazy(() => OneHundredAndFortyEight$inboundSchema),
|
|
9814
9857
|
z.lazy(() => OneHundredAndFortyNine$inboundSchema),
|
|
9815
|
-
z.lazy(() =>
|
|
9858
|
+
z.lazy(() => OneHundredAndFifty$inboundSchema),
|
|
9816
9859
|
z.lazy(() => OneHundredAndFiftyTwo$inboundSchema),
|
|
9817
|
-
z.lazy(() =>
|
|
9860
|
+
z.lazy(() => OneHundredAndFiftyThree$inboundSchema),
|
|
9818
9861
|
z.lazy(() => OneHundredAndFiftyNine$inboundSchema),
|
|
9819
|
-
z.lazy(() =>
|
|
9820
|
-
z.lazy(() =>
|
|
9862
|
+
z.lazy(() => OneHundredAndSixty$inboundSchema),
|
|
9863
|
+
z.lazy(() => OneHundredAndSixtyTwo$inboundSchema),
|
|
9821
9864
|
z.lazy(() => OneHundredAndSixtyFour$inboundSchema),
|
|
9822
9865
|
z.lazy(() => OneHundredAndSixtyFive$inboundSchema),
|
|
9866
|
+
z.lazy(() => OneHundredAndSixtySix$inboundSchema),
|
|
9823
9867
|
z.lazy(() => Five$inboundSchema),
|
|
9824
9868
|
z.lazy(() => Seventeen$inboundSchema),
|
|
9825
9869
|
z.lazy(() => TwentyFour$inboundSchema),
|
|
@@ -9835,42 +9879,42 @@ export const UserEvent$inboundSchema = z.object({
|
|
|
9835
9879
|
z.lazy(() => FiftyThree$inboundSchema),
|
|
9836
9880
|
z.lazy(() => FiftyEight$inboundSchema),
|
|
9837
9881
|
z.lazy(() => FiftyNine$inboundSchema),
|
|
9838
|
-
z.lazy(() => SeventyEight$inboundSchema),
|
|
9839
9882
|
z.lazy(() => SeventyNine$inboundSchema),
|
|
9840
9883
|
z.lazy(() => Eighty$inboundSchema),
|
|
9841
|
-
z.lazy(() =>
|
|
9884
|
+
z.lazy(() => EightyOne$inboundSchema),
|
|
9842
9885
|
z.lazy(() => EightyThree$inboundSchema),
|
|
9843
|
-
z.lazy(() =>
|
|
9886
|
+
z.lazy(() => EightyFour$inboundSchema),
|
|
9844
9887
|
z.lazy(() => EightySeven$inboundSchema),
|
|
9845
|
-
z.lazy(() =>
|
|
9888
|
+
z.lazy(() => EightyEight$inboundSchema),
|
|
9846
9889
|
z.lazy(() => NinetyOne$inboundSchema),
|
|
9847
|
-
z.lazy(() =>
|
|
9890
|
+
z.lazy(() => NinetyTwo$inboundSchema),
|
|
9848
9891
|
z.lazy(() => NinetySix$inboundSchema),
|
|
9849
|
-
z.lazy(() =>
|
|
9892
|
+
z.lazy(() => NinetySeven$inboundSchema),
|
|
9850
9893
|
z.lazy(() => OneHundredAndSeven$inboundSchema),
|
|
9851
|
-
z.lazy(() =>
|
|
9852
|
-
z.lazy(() =>
|
|
9894
|
+
z.lazy(() => OneHundredAndEight$inboundSchema),
|
|
9895
|
+
z.lazy(() => OneHundredAndTwelve$inboundSchema),
|
|
9853
9896
|
z.lazy(() => OneHundredAndFourteen$inboundSchema),
|
|
9854
9897
|
z.lazy(() => OneHundredAndFifteen$inboundSchema),
|
|
9855
|
-
z.lazy(() =>
|
|
9898
|
+
z.lazy(() => OneHundredAndSixteen$inboundSchema),
|
|
9856
9899
|
z.lazy(() => OneHundredAndNineteen$inboundSchema),
|
|
9857
9900
|
z.lazy(() => OneHundredAndTwenty$inboundSchema),
|
|
9858
|
-
z.lazy(() =>
|
|
9901
|
+
z.lazy(() => OneHundredAndTwentyOne$inboundSchema),
|
|
9859
9902
|
z.lazy(() => OneHundredAndTwentyFive$inboundSchema),
|
|
9860
|
-
z.lazy(() =>
|
|
9861
|
-
z.lazy(() =>
|
|
9862
|
-
z.lazy(() =>
|
|
9863
|
-
z.lazy(() =>
|
|
9903
|
+
z.lazy(() => OneHundredAndTwentySix$inboundSchema),
|
|
9904
|
+
z.lazy(() => OneHundredAndTwentyNine$inboundSchema),
|
|
9905
|
+
z.lazy(() => OneHundredAndThirtyFive$inboundSchema),
|
|
9906
|
+
z.lazy(() => OneHundredAndThirtySeven$inboundSchema),
|
|
9864
9907
|
z.lazy(() => OneHundredAndFortyOne$inboundSchema),
|
|
9865
9908
|
z.lazy(() => OneHundredAndFortyTwo$inboundSchema),
|
|
9866
|
-
z.lazy(() =>
|
|
9867
|
-
z.lazy(() =>
|
|
9868
|
-
z.lazy(() =>
|
|
9869
|
-
z.lazy(() =>
|
|
9909
|
+
z.lazy(() => OneHundredAndFortyThree$inboundSchema),
|
|
9910
|
+
z.lazy(() => OneHundredAndFiftyOne$inboundSchema),
|
|
9911
|
+
z.lazy(() => OneHundredAndFiftySeven$inboundSchema),
|
|
9912
|
+
z.lazy(() => OneHundredAndSixtyThree$inboundSchema),
|
|
9870
9913
|
z.lazy(() => OneHundredAndSixtySeven$inboundSchema),
|
|
9871
9914
|
z.lazy(() => OneHundredAndSixtyEight$inboundSchema),
|
|
9872
9915
|
z.lazy(() => OneHundredAndSixtyNine$inboundSchema),
|
|
9873
9916
|
z.lazy(() => OneHundredAndSeventy$inboundSchema),
|
|
9917
|
+
z.lazy(() => OneHundredAndSeventyOne$inboundSchema),
|
|
9874
9918
|
z.lazy(() => Payload1$inboundSchema),
|
|
9875
9919
|
z.lazy(() => Nine$inboundSchema),
|
|
9876
9920
|
z.lazy(() => Ten$inboundSchema),
|
|
@@ -9887,15 +9931,15 @@ export const UserEvent$inboundSchema = z.object({
|
|
|
9887
9931
|
z.lazy(() => SixtyTwo$inboundSchema),
|
|
9888
9932
|
z.lazy(() => SixtyThree$inboundSchema),
|
|
9889
9933
|
z.lazy(() => SixtyFour$inboundSchema),
|
|
9890
|
-
z.lazy(() =>
|
|
9891
|
-
z.lazy(() => OneHundredAndTwentyTwo$inboundSchema),
|
|
9934
|
+
z.lazy(() => OneHundredAndSeventeen$inboundSchema),
|
|
9892
9935
|
z.lazy(() => OneHundredAndTwentyThree$inboundSchema),
|
|
9893
|
-
z.lazy(() =>
|
|
9936
|
+
z.lazy(() => OneHundredAndTwentyFour$inboundSchema),
|
|
9894
9937
|
z.lazy(() => OneHundredAndThirty$inboundSchema),
|
|
9895
9938
|
z.lazy(() => OneHundredAndThirtyOne$inboundSchema),
|
|
9896
|
-
z.lazy(() =>
|
|
9939
|
+
z.lazy(() => OneHundredAndThirtyTwo$inboundSchema),
|
|
9897
9940
|
z.lazy(() => OneHundredAndThirtyEight$inboundSchema),
|
|
9898
9941
|
z.lazy(() => OneHundredAndThirtyNine$inboundSchema),
|
|
9942
|
+
z.lazy(() => OneHundredAndForty$inboundSchema),
|
|
9899
9943
|
])),
|
|
9900
9944
|
});
|
|
9901
9945
|
/** @internal */
|
|
@@ -9918,21 +9962,22 @@ export const UserEvent$outboundSchema = z.object({
|
|
|
9918
9962
|
viaIds: z.array(z.string()).optional(),
|
|
9919
9963
|
payload: smartUnion([
|
|
9920
9964
|
z.lazy(() => SeventyFour$outboundSchema),
|
|
9921
|
-
z.lazy(() =>
|
|
9965
|
+
z.lazy(() => SeventyEight$outboundSchema),
|
|
9922
9966
|
z.lazy(() => FortySeven$outboundSchema),
|
|
9923
9967
|
z.lazy(() => FortyEight$outboundSchema),
|
|
9924
9968
|
z.lazy(() => Sixty$outboundSchema),
|
|
9925
9969
|
z.lazy(() => SixtySix$outboundSchema),
|
|
9926
9970
|
z.lazy(() => SeventyTwo$outboundSchema),
|
|
9927
9971
|
z.lazy(() => SeventyFive$outboundSchema),
|
|
9928
|
-
z.lazy(() =>
|
|
9929
|
-
z.lazy(() =>
|
|
9972
|
+
z.lazy(() => SeventySix$outboundSchema),
|
|
9973
|
+
z.lazy(() => OneHundredAndFortyFour$outboundSchema),
|
|
9974
|
+
z.lazy(() => OneHundredAndSeventyFive$outboundSchema),
|
|
9930
9975
|
z.lazy(() => Payload2$outboundSchema),
|
|
9931
9976
|
z.lazy(() => FiftyTwo$outboundSchema),
|
|
9932
|
-
z.lazy(() =>
|
|
9933
|
-
z.lazy(() =>
|
|
9934
|
-
z.lazy(() =>
|
|
9935
|
-
z.lazy(() =>
|
|
9977
|
+
z.lazy(() => SeventySeven$outboundSchema),
|
|
9978
|
+
z.lazy(() => OneHundredAndOne$outboundSchema),
|
|
9979
|
+
z.lazy(() => OneHundredAndThirteen$outboundSchema),
|
|
9980
|
+
z.lazy(() => OneHundredAndFiftyFive$outboundSchema),
|
|
9936
9981
|
z.lazy(() => Fourteen$outboundSchema),
|
|
9937
9982
|
z.lazy(() => Eighteen$outboundSchema),
|
|
9938
9983
|
z.lazy(() => TwentyTwo$outboundSchema),
|
|
@@ -9948,21 +9993,21 @@ export const UserEvent$outboundSchema = z.object({
|
|
|
9948
9993
|
z.lazy(() => SixtyEight$outboundSchema),
|
|
9949
9994
|
z.lazy(() => SixtyNine$outboundSchema),
|
|
9950
9995
|
z.lazy(() => SeventyOne$outboundSchema),
|
|
9951
|
-
z.lazy(() =>
|
|
9952
|
-
z.lazy(() =>
|
|
9953
|
-
z.lazy(() => EightyEight$outboundSchema),
|
|
9996
|
+
z.lazy(() => EightyTwo$outboundSchema),
|
|
9997
|
+
z.lazy(() => EightySix$outboundSchema),
|
|
9954
9998
|
z.lazy(() => EightyNine$outboundSchema),
|
|
9955
|
-
z.lazy(() =>
|
|
9956
|
-
z.lazy(() =>
|
|
9957
|
-
z.lazy(() =>
|
|
9999
|
+
z.lazy(() => Ninety$outboundSchema),
|
|
10000
|
+
z.lazy(() => OneHundredAndFour$outboundSchema),
|
|
10001
|
+
z.lazy(() => OneHundredAndTwentyTwo$outboundSchema),
|
|
9958
10002
|
z.lazy(() => OneHundredAndFortySix$outboundSchema),
|
|
9959
|
-
z.lazy(() =>
|
|
9960
|
-
z.lazy(() =>
|
|
9961
|
-
z.lazy(() =>
|
|
9962
|
-
z.lazy(() =>
|
|
9963
|
-
z.lazy(() =>
|
|
10003
|
+
z.lazy(() => OneHundredAndFortySeven$outboundSchema),
|
|
10004
|
+
z.lazy(() => OneHundredAndFiftyFour$outboundSchema),
|
|
10005
|
+
z.lazy(() => OneHundredAndFiftySix$outboundSchema),
|
|
10006
|
+
z.lazy(() => OneHundredAndFiftyEight$outboundSchema),
|
|
10007
|
+
z.lazy(() => OneHundredAndSixtyOne$outboundSchema),
|
|
9964
10008
|
z.lazy(() => OneHundredAndSeventyTwo$outboundSchema),
|
|
9965
10009
|
z.lazy(() => OneHundredAndSeventyThree$outboundSchema),
|
|
10010
|
+
z.lazy(() => OneHundredAndSeventyFour$outboundSchema),
|
|
9966
10011
|
z.lazy(() => Three$outboundSchema),
|
|
9967
10012
|
z.lazy(() => Four$outboundSchema),
|
|
9968
10013
|
z.lazy(() => Six$outboundSchema),
|
|
@@ -9983,38 +10028,38 @@ export const UserEvent$outboundSchema = z.object({
|
|
|
9983
10028
|
z.lazy(() => SixtyFive$outboundSchema),
|
|
9984
10029
|
z.lazy(() => Seventy$outboundSchema),
|
|
9985
10030
|
z.lazy(() => SeventyThree$outboundSchema),
|
|
9986
|
-
z.lazy(() =>
|
|
9987
|
-
z.lazy(() => NinetyTwo$outboundSchema),
|
|
10031
|
+
z.lazy(() => EightyFive$outboundSchema),
|
|
9988
10032
|
z.lazy(() => NinetyThree$outboundSchema),
|
|
9989
10033
|
z.lazy(() => NinetyFour$outboundSchema),
|
|
9990
|
-
z.lazy(() =>
|
|
10034
|
+
z.lazy(() => NinetyFive$outboundSchema),
|
|
9991
10035
|
z.lazy(() => NinetyEight$outboundSchema),
|
|
9992
10036
|
z.lazy(() => NinetyNine$outboundSchema),
|
|
9993
|
-
z.lazy(() =>
|
|
10037
|
+
z.lazy(() => OneHundred$outboundSchema),
|
|
9994
10038
|
z.lazy(() => OneHundredAndTwo$outboundSchema),
|
|
9995
|
-
z.lazy(() =>
|
|
10039
|
+
z.lazy(() => OneHundredAndThree$outboundSchema),
|
|
9996
10040
|
z.lazy(() => OneHundredAndFive$outboundSchema),
|
|
9997
|
-
z.lazy(() =>
|
|
10041
|
+
z.lazy(() => OneHundredAndSix$outboundSchema),
|
|
9998
10042
|
z.lazy(() => OneHundredAndNine$outboundSchema),
|
|
9999
10043
|
z.lazy(() => OneHundredAndTen$outboundSchema),
|
|
10000
|
-
z.lazy(() =>
|
|
10001
|
-
z.lazy(() =>
|
|
10044
|
+
z.lazy(() => OneHundredAndEleven$outboundSchema),
|
|
10045
|
+
z.lazy(() => OneHundredAndEighteen$outboundSchema),
|
|
10002
10046
|
z.lazy(() => OneHundredAndTwentySeven$outboundSchema),
|
|
10003
|
-
z.lazy(() =>
|
|
10047
|
+
z.lazy(() => OneHundredAndTwentyEight$outboundSchema),
|
|
10004
10048
|
z.lazy(() => OneHundredAndThirtyThree$outboundSchema),
|
|
10005
|
-
z.lazy(() =>
|
|
10006
|
-
z.lazy(() =>
|
|
10007
|
-
z.lazy(() =>
|
|
10049
|
+
z.lazy(() => OneHundredAndThirtyFour$outboundSchema),
|
|
10050
|
+
z.lazy(() => OneHundredAndThirtySix$outboundSchema),
|
|
10051
|
+
z.lazy(() => OneHundredAndFortyFive$outboundSchema),
|
|
10008
10052
|
z.lazy(() => OneHundredAndFortyEight$outboundSchema),
|
|
10009
10053
|
z.lazy(() => OneHundredAndFortyNine$outboundSchema),
|
|
10010
|
-
z.lazy(() =>
|
|
10054
|
+
z.lazy(() => OneHundredAndFifty$outboundSchema),
|
|
10011
10055
|
z.lazy(() => OneHundredAndFiftyTwo$outboundSchema),
|
|
10012
|
-
z.lazy(() =>
|
|
10056
|
+
z.lazy(() => OneHundredAndFiftyThree$outboundSchema),
|
|
10013
10057
|
z.lazy(() => OneHundredAndFiftyNine$outboundSchema),
|
|
10014
|
-
z.lazy(() =>
|
|
10015
|
-
z.lazy(() =>
|
|
10058
|
+
z.lazy(() => OneHundredAndSixty$outboundSchema),
|
|
10059
|
+
z.lazy(() => OneHundredAndSixtyTwo$outboundSchema),
|
|
10016
10060
|
z.lazy(() => OneHundredAndSixtyFour$outboundSchema),
|
|
10017
10061
|
z.lazy(() => OneHundredAndSixtyFive$outboundSchema),
|
|
10062
|
+
z.lazy(() => OneHundredAndSixtySix$outboundSchema),
|
|
10018
10063
|
z.lazy(() => Five$outboundSchema),
|
|
10019
10064
|
z.lazy(() => Seventeen$outboundSchema),
|
|
10020
10065
|
z.lazy(() => TwentyFour$outboundSchema),
|
|
@@ -10030,42 +10075,42 @@ export const UserEvent$outboundSchema = z.object({
|
|
|
10030
10075
|
z.lazy(() => FiftyThree$outboundSchema),
|
|
10031
10076
|
z.lazy(() => FiftyEight$outboundSchema),
|
|
10032
10077
|
z.lazy(() => FiftyNine$outboundSchema),
|
|
10033
|
-
z.lazy(() => SeventyEight$outboundSchema),
|
|
10034
10078
|
z.lazy(() => SeventyNine$outboundSchema),
|
|
10035
10079
|
z.lazy(() => Eighty$outboundSchema),
|
|
10036
|
-
z.lazy(() =>
|
|
10080
|
+
z.lazy(() => EightyOne$outboundSchema),
|
|
10037
10081
|
z.lazy(() => EightyThree$outboundSchema),
|
|
10038
|
-
z.lazy(() =>
|
|
10082
|
+
z.lazy(() => EightyFour$outboundSchema),
|
|
10039
10083
|
z.lazy(() => EightySeven$outboundSchema),
|
|
10040
|
-
z.lazy(() =>
|
|
10084
|
+
z.lazy(() => EightyEight$outboundSchema),
|
|
10041
10085
|
z.lazy(() => NinetyOne$outboundSchema),
|
|
10042
|
-
z.lazy(() =>
|
|
10086
|
+
z.lazy(() => NinetyTwo$outboundSchema),
|
|
10043
10087
|
z.lazy(() => NinetySix$outboundSchema),
|
|
10044
|
-
z.lazy(() =>
|
|
10088
|
+
z.lazy(() => NinetySeven$outboundSchema),
|
|
10045
10089
|
z.lazy(() => OneHundredAndSeven$outboundSchema),
|
|
10046
|
-
z.lazy(() =>
|
|
10047
|
-
z.lazy(() =>
|
|
10090
|
+
z.lazy(() => OneHundredAndEight$outboundSchema),
|
|
10091
|
+
z.lazy(() => OneHundredAndTwelve$outboundSchema),
|
|
10048
10092
|
z.lazy(() => OneHundredAndFourteen$outboundSchema),
|
|
10049
10093
|
z.lazy(() => OneHundredAndFifteen$outboundSchema),
|
|
10050
|
-
z.lazy(() =>
|
|
10094
|
+
z.lazy(() => OneHundredAndSixteen$outboundSchema),
|
|
10051
10095
|
z.lazy(() => OneHundredAndNineteen$outboundSchema),
|
|
10052
10096
|
z.lazy(() => OneHundredAndTwenty$outboundSchema),
|
|
10053
|
-
z.lazy(() =>
|
|
10097
|
+
z.lazy(() => OneHundredAndTwentyOne$outboundSchema),
|
|
10054
10098
|
z.lazy(() => OneHundredAndTwentyFive$outboundSchema),
|
|
10055
|
-
z.lazy(() =>
|
|
10056
|
-
z.lazy(() =>
|
|
10057
|
-
z.lazy(() =>
|
|
10058
|
-
z.lazy(() =>
|
|
10099
|
+
z.lazy(() => OneHundredAndTwentySix$outboundSchema),
|
|
10100
|
+
z.lazy(() => OneHundredAndTwentyNine$outboundSchema),
|
|
10101
|
+
z.lazy(() => OneHundredAndThirtyFive$outboundSchema),
|
|
10102
|
+
z.lazy(() => OneHundredAndThirtySeven$outboundSchema),
|
|
10059
10103
|
z.lazy(() => OneHundredAndFortyOne$outboundSchema),
|
|
10060
10104
|
z.lazy(() => OneHundredAndFortyTwo$outboundSchema),
|
|
10061
|
-
z.lazy(() =>
|
|
10062
|
-
z.lazy(() =>
|
|
10063
|
-
z.lazy(() =>
|
|
10064
|
-
z.lazy(() =>
|
|
10105
|
+
z.lazy(() => OneHundredAndFortyThree$outboundSchema),
|
|
10106
|
+
z.lazy(() => OneHundredAndFiftyOne$outboundSchema),
|
|
10107
|
+
z.lazy(() => OneHundredAndFiftySeven$outboundSchema),
|
|
10108
|
+
z.lazy(() => OneHundredAndSixtyThree$outboundSchema),
|
|
10065
10109
|
z.lazy(() => OneHundredAndSixtySeven$outboundSchema),
|
|
10066
10110
|
z.lazy(() => OneHundredAndSixtyEight$outboundSchema),
|
|
10067
10111
|
z.lazy(() => OneHundredAndSixtyNine$outboundSchema),
|
|
10068
10112
|
z.lazy(() => OneHundredAndSeventy$outboundSchema),
|
|
10113
|
+
z.lazy(() => OneHundredAndSeventyOne$outboundSchema),
|
|
10069
10114
|
z.lazy(() => Payload1$outboundSchema),
|
|
10070
10115
|
z.lazy(() => Nine$outboundSchema),
|
|
10071
10116
|
z.lazy(() => Ten$outboundSchema),
|
|
@@ -10082,15 +10127,15 @@ export const UserEvent$outboundSchema = z.object({
|
|
|
10082
10127
|
z.lazy(() => SixtyTwo$outboundSchema),
|
|
10083
10128
|
z.lazy(() => SixtyThree$outboundSchema),
|
|
10084
10129
|
z.lazy(() => SixtyFour$outboundSchema),
|
|
10085
|
-
z.lazy(() =>
|
|
10086
|
-
z.lazy(() => OneHundredAndTwentyTwo$outboundSchema),
|
|
10130
|
+
z.lazy(() => OneHundredAndSeventeen$outboundSchema),
|
|
10087
10131
|
z.lazy(() => OneHundredAndTwentyThree$outboundSchema),
|
|
10088
|
-
z.lazy(() =>
|
|
10132
|
+
z.lazy(() => OneHundredAndTwentyFour$outboundSchema),
|
|
10089
10133
|
z.lazy(() => OneHundredAndThirty$outboundSchema),
|
|
10090
10134
|
z.lazy(() => OneHundredAndThirtyOne$outboundSchema),
|
|
10091
|
-
z.lazy(() =>
|
|
10135
|
+
z.lazy(() => OneHundredAndThirtyTwo$outboundSchema),
|
|
10092
10136
|
z.lazy(() => OneHundredAndThirtyEight$outboundSchema),
|
|
10093
10137
|
z.lazy(() => OneHundredAndThirtyNine$outboundSchema),
|
|
10138
|
+
z.lazy(() => OneHundredAndForty$outboundSchema),
|
|
10094
10139
|
]).optional(),
|
|
10095
10140
|
});
|
|
10096
10141
|
export function userEventToJSON(userEvent) {
|