@vercel/sdk 1.15.0 → 1.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +42 -25
- package/bin/mcp-server.js +3040 -1304
- package/bin/mcp-server.js.map +60 -42
- package/docs/sdks/connect/README.md +10 -10
- package/docs/sdks/environment/README.md +512 -0
- package/docs/sdks/staticips/README.md +95 -0
- package/esm/__tests__/accessgroups.test.js +1 -3
- package/esm/__tests__/accessgroups.test.js.map +1 -1
- package/esm/__tests__/checks.test.js +1 -1
- package/esm/__tests__/checks.test.js.map +1 -1
- package/esm/__tests__/connect.test.js +10 -7
- package/esm/__tests__/connect.test.js.map +1 -1
- package/esm/__tests__/domains.test.js +10 -3
- package/esm/__tests__/domains.test.js.map +1 -1
- package/esm/__tests__/edgeconfig.test.js +6 -6
- package/esm/__tests__/edgeconfig.test.js.map +1 -1
- package/esm/__tests__/environment.test.js +164 -0
- package/esm/__tests__/environment.test.js.map +1 -1
- package/esm/__tests__/integrations.test.js +1 -1
- package/esm/__tests__/logdrains.test.js +1 -3
- package/esm/__tests__/logdrains.test.js.map +1 -1
- package/esm/__tests__/rollingrelease.test.js +2 -1
- package/esm/__tests__/rollingrelease.test.js.map +1 -1
- package/esm/__tests__/security.test.js +11 -1
- package/esm/__tests__/security.test.js.map +1 -1
- package/esm/funcs/connectUpdateStaticIps.d.ts +17 -0
- package/esm/funcs/connectUpdateStaticIps.d.ts.map +1 -0
- package/esm/funcs/{connectUpdateSharedConnectLinks.js → connectUpdateStaticIps.js} +8 -8
- package/esm/funcs/connectUpdateStaticIps.js.map +1 -0
- package/esm/funcs/environmentCreateSharedEnvVariable.d.ts +17 -0
- package/esm/funcs/environmentCreateSharedEnvVariable.d.ts.map +1 -0
- package/esm/funcs/environmentCreateSharedEnvVariable.js +83 -0
- package/esm/funcs/environmentCreateSharedEnvVariable.js.map +1 -0
- package/esm/funcs/environmentDeleteSharedEnvVariable.d.ts +17 -0
- package/esm/funcs/environmentDeleteSharedEnvVariable.d.ts.map +1 -0
- package/esm/funcs/environmentDeleteSharedEnvVariable.js +83 -0
- package/esm/funcs/environmentDeleteSharedEnvVariable.js.map +1 -0
- package/esm/funcs/environmentGetSharedEnvVar.d.ts +17 -0
- package/esm/funcs/environmentGetSharedEnvVar.d.ts.map +1 -0
- package/esm/funcs/environmentGetSharedEnvVar.js +88 -0
- package/esm/funcs/environmentGetSharedEnvVar.js.map +1 -0
- package/esm/funcs/environmentListSharedEnvVariable.d.ts +17 -0
- package/esm/funcs/environmentListSharedEnvVariable.d.ts.map +1 -0
- package/esm/funcs/environmentListSharedEnvVariable.js +89 -0
- package/esm/funcs/environmentListSharedEnvVariable.js.map +1 -0
- package/esm/funcs/environmentUnlinkSharedEnvVariable.d.ts +17 -0
- package/esm/funcs/environmentUnlinkSharedEnvVariable.d.ts.map +1 -0
- package/esm/funcs/environmentUnlinkSharedEnvVariable.js +92 -0
- package/esm/funcs/environmentUnlinkSharedEnvVariable.js.map +1 -0
- package/esm/funcs/environmentUpdateSharedEnvVariable.d.ts +17 -0
- package/esm/funcs/environmentUpdateSharedEnvVariable.d.ts.map +1 -0
- package/esm/funcs/environmentUpdateSharedEnvVariable.js +83 -0
- package/esm/funcs/environmentUpdateSharedEnvVariable.js.map +1 -0
- package/esm/funcs/integrationsCreateIntegrationStoreDirect.js +13 -2
- package/esm/funcs/integrationsCreateIntegrationStoreDirect.js.map +1 -1
- package/esm/lib/config.d.ts +3 -3
- package/esm/lib/config.js +3 -3
- package/esm/mcp-server/mcp-server.js +1 -1
- package/esm/mcp-server/server.d.ts.map +1 -1
- package/esm/mcp-server/server.js +20 -8
- package/esm/mcp-server/server.js.map +1 -1
- package/esm/mcp-server/tools/connectUpdateStaticIps.d.ts +7 -0
- package/esm/mcp-server/tools/connectUpdateStaticIps.d.ts.map +1 -0
- package/esm/mcp-server/tools/connectUpdateStaticIps.js +28 -0
- package/esm/mcp-server/tools/connectUpdateStaticIps.js.map +1 -0
- package/esm/mcp-server/tools/environmentCreateSharedEnvVariable.d.ts +7 -0
- package/esm/mcp-server/tools/environmentCreateSharedEnvVariable.d.ts.map +1 -0
- package/esm/mcp-server/tools/environmentCreateSharedEnvVariable.js +28 -0
- package/esm/mcp-server/tools/environmentCreateSharedEnvVariable.js.map +1 -0
- package/esm/mcp-server/tools/environmentDeleteSharedEnvVariable.d.ts +7 -0
- package/esm/mcp-server/tools/environmentDeleteSharedEnvVariable.d.ts.map +1 -0
- package/esm/mcp-server/tools/environmentDeleteSharedEnvVariable.js +28 -0
- package/esm/mcp-server/tools/environmentDeleteSharedEnvVariable.js.map +1 -0
- package/esm/mcp-server/tools/environmentGetSharedEnvVar.d.ts +7 -0
- package/esm/mcp-server/tools/environmentGetSharedEnvVar.d.ts.map +1 -0
- package/esm/mcp-server/tools/environmentGetSharedEnvVar.js +28 -0
- package/esm/mcp-server/tools/environmentGetSharedEnvVar.js.map +1 -0
- package/esm/mcp-server/tools/environmentListSharedEnvVariable.d.ts +7 -0
- package/esm/mcp-server/tools/environmentListSharedEnvVariable.d.ts.map +1 -0
- package/esm/mcp-server/tools/environmentListSharedEnvVariable.js +28 -0
- package/esm/mcp-server/tools/environmentListSharedEnvVariable.js.map +1 -0
- package/esm/mcp-server/tools/environmentUnlinkSharedEnvVariable.d.ts +7 -0
- package/esm/mcp-server/tools/environmentUnlinkSharedEnvVariable.d.ts.map +1 -0
- package/esm/mcp-server/tools/environmentUnlinkSharedEnvVariable.js +28 -0
- package/esm/mcp-server/tools/environmentUnlinkSharedEnvVariable.js.map +1 -0
- package/esm/mcp-server/tools/environmentUpdateSharedEnvVariable.d.ts +7 -0
- package/esm/mcp-server/tools/environmentUpdateSharedEnvVariable.d.ts.map +1 -0
- package/esm/mcp-server/tools/environmentUpdateSharedEnvVariable.js +28 -0
- package/esm/mcp-server/tools/environmentUpdateSharedEnvVariable.js.map +1 -0
- package/esm/models/buydomainsop.d.ts +4 -4
- package/esm/models/buydomainsop.d.ts.map +1 -1
- package/esm/models/buysingledomainop.d.ts +4 -4
- package/esm/models/buysingledomainop.d.ts.map +1 -1
- package/esm/models/canceldeploymentop.d.ts +3 -0
- package/esm/models/canceldeploymentop.d.ts.map +1 -1
- package/esm/models/canceldeploymentop.js +1 -0
- package/esm/models/canceldeploymentop.js.map +1 -1
- package/esm/models/createdeploymentop.d.ts +6 -0
- package/esm/models/createdeploymentop.d.ts.map +1 -1
- package/esm/models/createdeploymentop.js +2 -0
- package/esm/models/createdeploymentop.js.map +1 -1
- package/esm/models/createdrainop.d.ts +3 -0
- package/esm/models/createdrainop.d.ts.map +1 -1
- package/esm/models/createdrainop.js +1 -0
- package/esm/models/createdrainop.js.map +1 -1
- package/esm/models/createintegrationstoredirectop.d.ts +288 -285
- package/esm/models/createintegrationstoredirectop.d.ts.map +1 -1
- package/esm/models/createintegrationstoredirectop.js +352 -351
- package/esm/models/createintegrationstoredirectop.js.map +1 -1
- package/esm/models/createprojectenvop.d.ts +37 -37
- package/esm/models/createprojectenvop.d.ts.map +1 -1
- package/esm/models/createprojectenvop.js +44 -44
- package/esm/models/createprojectenvop.js.map +1 -1
- package/esm/models/createprojectop.d.ts +6 -0
- package/esm/models/createprojectop.d.ts.map +1 -1
- package/esm/models/createprojectop.js +2 -0
- package/esm/models/createprojectop.js.map +1 -1
- package/esm/models/createsharedenvvariableop.d.ts +746 -0
- package/esm/models/createsharedenvvariableop.d.ts.map +1 -0
- package/esm/models/createsharedenvvariableop.js +609 -0
- package/esm/models/createsharedenvvariableop.js.map +1 -0
- package/esm/models/deletesharedenvvariableop.d.ts +291 -0
- package/esm/models/deletesharedenvvariableop.d.ts.map +1 -0
- package/esm/models/deletesharedenvvariableop.js +291 -0
- package/esm/models/deletesharedenvvariableop.js.map +1 -0
- package/esm/models/getalllogdrainsop.d.ts +6 -0
- package/esm/models/getalllogdrainsop.d.ts.map +1 -1
- package/esm/models/getalllogdrainsop.js +2 -0
- package/esm/models/getalllogdrainsop.js.map +1 -1
- package/esm/models/getconfigurablelogdrainop.d.ts +3 -0
- package/esm/models/getconfigurablelogdrainop.d.ts.map +1 -1
- package/esm/models/getconfigurablelogdrainop.js +1 -0
- package/esm/models/getconfigurablelogdrainop.js.map +1 -1
- package/esm/models/getconfigurationproductsop.d.ts +375 -375
- package/esm/models/getconfigurationproductsop.js +465 -465
- package/esm/models/getcontactinfoschemaop.d.ts +2 -2
- package/esm/models/getcontactinfoschemaop.d.ts.map +1 -1
- package/esm/models/getdeploymentop.d.ts +3 -0
- package/esm/models/getdeploymentop.d.ts.map +1 -1
- package/esm/models/getdeploymentop.js +1 -0
- package/esm/models/getdeploymentop.js.map +1 -1
- package/esm/models/getdeploymentsop.d.ts +3 -0
- package/esm/models/getdeploymentsop.d.ts.map +1 -1
- package/esm/models/getdeploymentsop.js +1 -0
- package/esm/models/getdeploymentsop.js.map +1 -1
- package/esm/models/getdomainauthcodeop.d.ts +4 -4
- package/esm/models/getdomainauthcodeop.d.ts.map +1 -1
- package/esm/models/getdomainpriceop.d.ts +2 -2
- package/esm/models/getdomainpriceop.d.ts.map +1 -1
- package/esm/models/getdomaintransferinop.d.ts +2 -2
- package/esm/models/getdomaintransferinop.d.ts.map +1 -1
- package/esm/models/getdrainop.d.ts +3 -0
- package/esm/models/getdrainop.d.ts.map +1 -1
- package/esm/models/getdrainop.js +1 -0
- package/esm/models/getdrainop.js.map +1 -1
- package/esm/models/getdrainsop.d.ts +3 -0
- package/esm/models/getdrainsop.d.ts.map +1 -1
- package/esm/models/getdrainsop.js +1 -0
- package/esm/models/getdrainsop.js.map +1 -1
- package/esm/models/getinvoiceop.d.ts +3 -0
- package/esm/models/getinvoiceop.d.ts.map +1 -1
- package/esm/models/getinvoiceop.js +1 -0
- package/esm/models/getinvoiceop.js.map +1 -1
- package/esm/models/getorderop.d.ts +2 -2
- package/esm/models/getorderop.d.ts.map +1 -1
- package/esm/models/getprojectsop.d.ts +3 -0
- package/esm/models/getprojectsop.d.ts.map +1 -1
- package/esm/models/getprojectsop.js +1 -0
- package/esm/models/getprojectsop.js.map +1 -1
- package/esm/models/getsharedenvvarop.d.ts +227 -0
- package/esm/models/getsharedenvvarop.d.ts.map +1 -0
- package/esm/models/getsharedenvvarop.js +142 -0
- package/esm/models/getsharedenvvarop.js.map +1 -0
- package/esm/models/gettldpriceop.d.ts +2 -2
- package/esm/models/gettldpriceop.d.ts.map +1 -1
- package/esm/models/getwebhooksop.d.ts +3 -0
- package/esm/models/getwebhooksop.d.ts.map +1 -1
- package/esm/models/getwebhooksop.js +1 -0
- package/esm/models/getwebhooksop.js.map +1 -1
- package/esm/models/listsharedenvvariableop.d.ts +285 -0
- package/esm/models/listsharedenvvariableop.d.ts.map +1 -0
- package/esm/models/listsharedenvvariableop.js +198 -0
- package/esm/models/listsharedenvvariableop.js.map +1 -0
- package/esm/models/renewdomainop.d.ts +4 -4
- package/esm/models/renewdomainop.d.ts.map +1 -1
- package/esm/models/transferindomainop.d.ts +4 -4
- package/esm/models/transferindomainop.d.ts.map +1 -1
- package/esm/models/unlinksharedenvvariableop.d.ts +69 -0
- package/esm/models/unlinksharedenvvariableop.d.ts.map +1 -0
- package/esm/models/unlinksharedenvvariableop.js +62 -0
- package/esm/models/unlinksharedenvvariableop.js.map +1 -0
- package/esm/models/updatedomainautorenewop.d.ts +4 -4
- package/esm/models/updatedomainautorenewop.d.ts.map +1 -1
- package/esm/models/updatedomainnameserversop.d.ts +4 -4
- package/esm/models/updatedomainnameserversop.d.ts.map +1 -1
- package/esm/models/updatedrainop.d.ts +3 -0
- package/esm/models/updatedrainop.d.ts.map +1 -1
- package/esm/models/updatedrainop.js +1 -0
- package/esm/models/updatedrainop.js.map +1 -1
- package/esm/models/updateinstallationop.d.ts +32 -5
- package/esm/models/updateinstallationop.d.ts.map +1 -1
- package/esm/models/updateinstallationop.js +29 -4
- package/esm/models/updateinstallationop.js.map +1 -1
- package/esm/models/updateprojectdatacacheop.d.ts +3 -0
- package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
- package/esm/models/updateprojectdatacacheop.js +1 -0
- package/esm/models/updateprojectdatacacheop.js.map +1 -1
- package/esm/models/updateprojectop.d.ts +6 -0
- package/esm/models/updateprojectop.d.ts.map +1 -1
- package/esm/models/updateprojectop.js +2 -0
- package/esm/models/updateprojectop.js.map +1 -1
- package/esm/models/updatesharedenvvariableop.d.ts +629 -0
- package/esm/models/updatesharedenvvariableop.d.ts.map +1 -0
- package/esm/models/updatesharedenvvariableop.js +507 -0
- package/esm/models/updatesharedenvvariableop.js.map +1 -0
- package/esm/models/updatestaticipsop.d.ts +238 -0
- package/esm/models/updatestaticipsop.d.ts.map +1 -0
- package/esm/models/updatestaticipsop.js +239 -0
- package/esm/models/updatestaticipsop.js.map +1 -0
- package/esm/sdk/connect.d.ts +4 -4
- package/esm/sdk/connect.d.ts.map +1 -1
- package/esm/sdk/connect.js +5 -5
- package/esm/sdk/connect.js.map +1 -1
- package/esm/sdk/environment.d.ts +48 -0
- package/esm/sdk/environment.d.ts.map +1 -1
- package/esm/sdk/environment.js +60 -0
- package/esm/sdk/environment.js.map +1 -1
- package/esm/sdk/sdk.d.ts +5 -2
- package/esm/sdk/sdk.d.ts.map +1 -1
- package/esm/sdk/sdk.js +6 -2
- package/esm/sdk/sdk.js.map +1 -1
- package/esm/sdk/staticips.d.ts +12 -0
- package/esm/sdk/staticips.d.ts.map +1 -0
- package/esm/sdk/staticips.js +18 -0
- package/esm/sdk/staticips.js.map +1 -0
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/__tests__/accessgroups.test.ts +1 -3
- package/src/__tests__/checks.test.ts +1 -1
- package/src/__tests__/connect.test.ts +13 -7
- package/src/__tests__/domains.test.ts +10 -3
- package/src/__tests__/edgeconfig.test.ts +6 -6
- package/src/__tests__/environment.test.ts +184 -0
- package/src/__tests__/integrations.test.ts +1 -1
- package/src/__tests__/logdrains.test.ts +1 -3
- package/src/__tests__/rollingrelease.test.ts +2 -1
- package/src/__tests__/security.test.ts +11 -1
- package/src/funcs/{connectUpdateSharedConnectLinks.ts → connectUpdateStaticIps.ts} +16 -16
- package/src/funcs/environmentCreateSharedEnvVariable.ts +171 -0
- package/src/funcs/environmentDeleteSharedEnvVariable.ts +171 -0
- package/src/funcs/environmentGetSharedEnvVar.ts +177 -0
- package/src/funcs/environmentListSharedEnvVariable.ts +177 -0
- package/src/funcs/environmentUnlinkSharedEnvVariable.ts +181 -0
- package/src/funcs/environmentUpdateSharedEnvVariable.ts +171 -0
- package/src/funcs/integrationsCreateIntegrationStoreDirect.ts +13 -2
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +20 -8
- package/src/mcp-server/tools/connectUpdateStaticIps.ts +37 -0
- package/src/mcp-server/tools/environmentCreateSharedEnvVariable.ts +39 -0
- package/src/mcp-server/tools/environmentDeleteSharedEnvVariable.ts +39 -0
- package/src/mcp-server/tools/environmentGetSharedEnvVar.ts +38 -0
- package/src/mcp-server/tools/environmentListSharedEnvVariable.ts +39 -0
- package/src/mcp-server/tools/environmentUnlinkSharedEnvVariable.ts +39 -0
- package/src/mcp-server/tools/environmentUpdateSharedEnvVariable.ts +39 -0
- package/src/models/buydomainsop.ts +2 -2
- package/src/models/buysingledomainop.ts +2 -2
- package/src/models/canceldeploymentop.ts +1 -0
- package/src/models/createdeploymentop.ts +2 -0
- package/src/models/createdrainop.ts +1 -0
- package/src/models/createintegrationstoredirectop.ts +605 -604
- package/src/models/createprojectenvop.ts +86 -66
- package/src/models/createprojectop.ts +2 -0
- package/src/models/createsharedenvvariableop.ts +1298 -0
- package/src/models/deletesharedenvvariableop.ts +608 -0
- package/src/models/getalllogdrainsop.ts +2 -0
- package/src/models/getconfigurablelogdrainop.ts +1 -0
- package/src/models/getconfigurationproductsop.ts +802 -802
- package/src/models/getcontactinfoschemaop.ts +1 -1
- package/src/models/getdeploymentop.ts +1 -0
- package/src/models/getdeploymentsop.ts +1 -0
- package/src/models/getdomainauthcodeop.ts +2 -2
- package/src/models/getdomainpriceop.ts +1 -1
- package/src/models/getdomaintransferinop.ts +1 -1
- package/src/models/getdrainop.ts +1 -0
- package/src/models/getdrainsop.ts +1 -0
- package/src/models/getinvoiceop.ts +1 -0
- package/src/models/getorderop.ts +1 -1
- package/src/models/getprojectsop.ts +1 -0
- package/src/models/getsharedenvvarop.ts +336 -0
- package/src/models/gettldpriceop.ts +1 -1
- package/src/models/getwebhooksop.ts +1 -0
- package/src/models/listsharedenvvariableop.ts +458 -0
- package/src/models/renewdomainop.ts +2 -2
- package/src/models/transferindomainop.ts +2 -2
- package/src/models/unlinksharedenvvariableop.ts +152 -0
- package/src/models/updatedomainautorenewop.ts +2 -2
- package/src/models/updatedomainnameserversop.ts +2 -2
- package/src/models/updatedrainop.ts +1 -0
- package/src/models/updateinstallationop.ts +67 -11
- package/src/models/updateprojectdatacacheop.ts +1 -0
- package/src/models/updateprojectop.ts +2 -0
- package/src/models/updatesharedenvvariableop.ts +1105 -0
- package/src/models/updatestaticipsop.ts +530 -0
- package/src/sdk/connect.ts +10 -10
- package/src/sdk/environment.ts +132 -0
- package/src/sdk/sdk.ts +9 -3
- package/src/sdk/staticips.ts +30 -0
- package/vercel-spec.json +1623 -121
- package/esm/funcs/connectUpdateSharedConnectLinks.d.ts +0 -17
- package/esm/funcs/connectUpdateSharedConnectLinks.d.ts.map +0 -1
- package/esm/funcs/connectUpdateSharedConnectLinks.js.map +0 -1
- package/esm/mcp-server/tools/connectUpdateSharedConnectLinks.d.ts +0 -7
- package/esm/mcp-server/tools/connectUpdateSharedConnectLinks.d.ts.map +0 -1
- package/esm/mcp-server/tools/connectUpdateSharedConnectLinks.js +0 -28
- package/esm/mcp-server/tools/connectUpdateSharedConnectLinks.js.map +0 -1
- package/esm/models/updatesharedconnectlinksop.d.ts +0 -182
- package/esm/models/updatesharedconnectlinksop.d.ts.map +0 -1
- package/esm/models/updatesharedconnectlinksop.js +0 -179
- package/esm/models/updatesharedconnectlinksop.js.map +0 -1
- package/src/mcp-server/tools/connectUpdateSharedConnectLinks.ts +0 -38
- package/src/models/updatesharedconnectlinksop.ts +0 -402
package/vercel-spec.json
CHANGED
|
@@ -4666,6 +4666,7 @@
|
|
|
4666
4666
|
"express",
|
|
4667
4667
|
"h3",
|
|
4668
4668
|
"nestjs",
|
|
4669
|
+
"fastify",
|
|
4669
4670
|
"xmcp"
|
|
4670
4671
|
]
|
|
4671
4672
|
},
|
|
@@ -9441,6 +9442,7 @@
|
|
|
9441
9442
|
"express",
|
|
9442
9443
|
"h3",
|
|
9443
9444
|
"nestjs",
|
|
9445
|
+
"fastify",
|
|
9444
9446
|
"xmcp"
|
|
9445
9447
|
]
|
|
9446
9448
|
},
|
|
@@ -13223,6 +13225,7 @@
|
|
|
13223
13225
|
"express",
|
|
13224
13226
|
"h3",
|
|
13225
13227
|
"nestjs",
|
|
13228
|
+
"fastify",
|
|
13226
13229
|
"xmcp"
|
|
13227
13230
|
]
|
|
13228
13231
|
},
|
|
@@ -16217,6 +16220,7 @@
|
|
|
16217
16220
|
"express",
|
|
16218
16221
|
"h3",
|
|
16219
16222
|
"nestjs",
|
|
16223
|
+
"fastify",
|
|
16220
16224
|
"xmcp"
|
|
16221
16225
|
],
|
|
16222
16226
|
"nullable": true
|
|
@@ -16451,6 +16455,7 @@
|
|
|
16451
16455
|
"express",
|
|
16452
16456
|
"h3",
|
|
16453
16457
|
"nestjs",
|
|
16458
|
+
"fastify",
|
|
16454
16459
|
"xmcp"
|
|
16455
16460
|
]
|
|
16456
16461
|
},
|
|
@@ -24763,6 +24768,7 @@
|
|
|
24763
24768
|
"express",
|
|
24764
24769
|
"h3",
|
|
24765
24770
|
"nestjs",
|
|
24771
|
+
"fastify",
|
|
24766
24772
|
"xmcp"
|
|
24767
24773
|
]
|
|
24768
24774
|
},
|
|
@@ -25849,6 +25855,7 @@
|
|
|
25849
25855
|
"express",
|
|
25850
25856
|
"h3",
|
|
25851
25857
|
"nestjs",
|
|
25858
|
+
"fastify",
|
|
25852
25859
|
"xmcp"
|
|
25853
25860
|
]
|
|
25854
25861
|
},
|
|
@@ -25956,6 +25963,7 @@
|
|
|
25956
25963
|
"express",
|
|
25957
25964
|
"h3",
|
|
25958
25965
|
"nestjs",
|
|
25966
|
+
"fastify",
|
|
25959
25967
|
"xmcp"
|
|
25960
25968
|
]
|
|
25961
25969
|
},
|
|
@@ -27139,6 +27147,7 @@
|
|
|
27139
27147
|
"express",
|
|
27140
27148
|
"h3",
|
|
27141
27149
|
"nestjs",
|
|
27150
|
+
"fastify",
|
|
27142
27151
|
"xmcp"
|
|
27143
27152
|
]
|
|
27144
27153
|
},
|
|
@@ -28513,6 +28522,7 @@
|
|
|
28513
28522
|
"express",
|
|
28514
28523
|
"h3",
|
|
28515
28524
|
"nestjs",
|
|
28525
|
+
"fastify",
|
|
28516
28526
|
"xmcp"
|
|
28517
28527
|
]
|
|
28518
28528
|
},
|
|
@@ -29608,6 +29618,7 @@
|
|
|
29608
29618
|
"express",
|
|
29609
29619
|
"h3",
|
|
29610
29620
|
"nestjs",
|
|
29621
|
+
"fastify",
|
|
29611
29622
|
"xmcp"
|
|
29612
29623
|
]
|
|
29613
29624
|
},
|
|
@@ -30628,6 +30639,7 @@
|
|
|
30628
30639
|
"express",
|
|
30629
30640
|
"h3",
|
|
30630
30641
|
"nestjs",
|
|
30642
|
+
"fastify",
|
|
30631
30643
|
"xmcp"
|
|
30632
30644
|
]
|
|
30633
30645
|
},
|
|
@@ -33584,6 +33596,1461 @@
|
|
|
33584
33596
|
]
|
|
33585
33597
|
}
|
|
33586
33598
|
},
|
|
33599
|
+
"/v1/env": {
|
|
33600
|
+
"post": {
|
|
33601
|
+
"description": "Creates shared environment variable(s) for a team.",
|
|
33602
|
+
"operationId": "createSharedEnvVariable",
|
|
33603
|
+
"security": [
|
|
33604
|
+
{
|
|
33605
|
+
"bearerToken": []
|
|
33606
|
+
}
|
|
33607
|
+
],
|
|
33608
|
+
"summary": "Create one or more shared environment variables",
|
|
33609
|
+
"tags": [
|
|
33610
|
+
"environment"
|
|
33611
|
+
],
|
|
33612
|
+
"responses": {
|
|
33613
|
+
"201": {
|
|
33614
|
+
"description": "",
|
|
33615
|
+
"content": {
|
|
33616
|
+
"application/json": {
|
|
33617
|
+
"schema": {
|
|
33618
|
+
"properties": {
|
|
33619
|
+
"created": {
|
|
33620
|
+
"items": {
|
|
33621
|
+
"properties": {
|
|
33622
|
+
"created": {
|
|
33623
|
+
"type": "string",
|
|
33624
|
+
"format": "date-time",
|
|
33625
|
+
"description": "The date when the Shared Env Var was created.",
|
|
33626
|
+
"example": "2021-02-10T13:11:49.180Z"
|
|
33627
|
+
},
|
|
33628
|
+
"key": {
|
|
33629
|
+
"type": "string",
|
|
33630
|
+
"description": "The name of the Shared Env Var.",
|
|
33631
|
+
"example": "my-api-key"
|
|
33632
|
+
},
|
|
33633
|
+
"ownerId": {
|
|
33634
|
+
"nullable": true,
|
|
33635
|
+
"type": "string",
|
|
33636
|
+
"description": "The unique identifier of the owner (team) the Shared Env Var was created for.",
|
|
33637
|
+
"example": "team_LLHUOMOoDlqOp8wPE4kFo9pE"
|
|
33638
|
+
},
|
|
33639
|
+
"id": {
|
|
33640
|
+
"type": "string",
|
|
33641
|
+
"description": "The unique identifier of the Shared Env Var.",
|
|
33642
|
+
"example": "env_XCG7t7AIHuO2SBA8667zNUiM"
|
|
33643
|
+
},
|
|
33644
|
+
"createdBy": {
|
|
33645
|
+
"nullable": true,
|
|
33646
|
+
"type": "string",
|
|
33647
|
+
"description": "The unique identifier of the user who created the Shared Env Var.",
|
|
33648
|
+
"example": "2qDDuGFTWXBLDNnqZfWPDp1A"
|
|
33649
|
+
},
|
|
33650
|
+
"deletedBy": {
|
|
33651
|
+
"nullable": true,
|
|
33652
|
+
"type": "string",
|
|
33653
|
+
"description": "The unique identifier of the user who deleted the Shared Env Var.",
|
|
33654
|
+
"example": "2qDDuGFTWXBLDNnqZfWPDp1A"
|
|
33655
|
+
},
|
|
33656
|
+
"updatedBy": {
|
|
33657
|
+
"nullable": true,
|
|
33658
|
+
"type": "string",
|
|
33659
|
+
"description": "The unique identifier of the user who last updated the Shared Env Var.",
|
|
33660
|
+
"example": "2qDDuGFTWXBLDNnqZfWPDp1A"
|
|
33661
|
+
},
|
|
33662
|
+
"createdAt": {
|
|
33663
|
+
"type": "number",
|
|
33664
|
+
"description": "Timestamp for when the Shared Env Var was created.",
|
|
33665
|
+
"example": 1609492210000
|
|
33666
|
+
},
|
|
33667
|
+
"deletedAt": {
|
|
33668
|
+
"type": "number",
|
|
33669
|
+
"description": "Timestamp for when the Shared Env Var was (soft) deleted.",
|
|
33670
|
+
"example": 1609492210000
|
|
33671
|
+
},
|
|
33672
|
+
"updatedAt": {
|
|
33673
|
+
"type": "number",
|
|
33674
|
+
"description": "Timestamp for when the Shared Env Var was last updated.",
|
|
33675
|
+
"example": 1609492210000
|
|
33676
|
+
},
|
|
33677
|
+
"value": {
|
|
33678
|
+
"type": "string",
|
|
33679
|
+
"description": "The value of the Shared Env Var."
|
|
33680
|
+
},
|
|
33681
|
+
"projectId": {
|
|
33682
|
+
"items": {
|
|
33683
|
+
"type": "string"
|
|
33684
|
+
},
|
|
33685
|
+
"type": "array",
|
|
33686
|
+
"description": "The unique identifiers of the projects which the Shared Env Var is linked to.",
|
|
33687
|
+
"example": [
|
|
33688
|
+
"prj_2WjyKQmM8ZnGcJsPWMrHRHrE",
|
|
33689
|
+
"prj_2WjyKQmM8ZnGcJsPWMrasEFg"
|
|
33690
|
+
]
|
|
33691
|
+
},
|
|
33692
|
+
"type": {
|
|
33693
|
+
"type": "string",
|
|
33694
|
+
"enum": [
|
|
33695
|
+
"encrypted",
|
|
33696
|
+
"sensitive",
|
|
33697
|
+
"system",
|
|
33698
|
+
"plain"
|
|
33699
|
+
],
|
|
33700
|
+
"description": "The type of this cosmos doc instance, if blank, assume secret.",
|
|
33701
|
+
"example": "encrypted"
|
|
33702
|
+
},
|
|
33703
|
+
"target": {
|
|
33704
|
+
"items": {
|
|
33705
|
+
"type": "string",
|
|
33706
|
+
"enum": [
|
|
33707
|
+
"production",
|
|
33708
|
+
"preview",
|
|
33709
|
+
"development"
|
|
33710
|
+
],
|
|
33711
|
+
"description": "environments this env variable targets",
|
|
33712
|
+
"example": "production"
|
|
33713
|
+
},
|
|
33714
|
+
"type": "array",
|
|
33715
|
+
"description": "environments this env variable targets",
|
|
33716
|
+
"example": "production"
|
|
33717
|
+
},
|
|
33718
|
+
"applyToAllCustomEnvironments": {
|
|
33719
|
+
"type": "boolean",
|
|
33720
|
+
"description": "whether or not this env varible applies to custom environments"
|
|
33721
|
+
},
|
|
33722
|
+
"decrypted": {
|
|
33723
|
+
"type": "boolean",
|
|
33724
|
+
"description": "whether or not this env variable is decrypted"
|
|
33725
|
+
},
|
|
33726
|
+
"comment": {
|
|
33727
|
+
"type": "string",
|
|
33728
|
+
"description": "A user provided comment that describes what this Shared Env Var is for."
|
|
33729
|
+
},
|
|
33730
|
+
"lastEditedByDisplayName": {
|
|
33731
|
+
"type": "string",
|
|
33732
|
+
"description": "The last editor full name or username."
|
|
33733
|
+
}
|
|
33734
|
+
},
|
|
33735
|
+
"type": "object"
|
|
33736
|
+
},
|
|
33737
|
+
"type": "array"
|
|
33738
|
+
},
|
|
33739
|
+
"failed": {
|
|
33740
|
+
"items": {
|
|
33741
|
+
"properties": {
|
|
33742
|
+
"error": {
|
|
33743
|
+
"properties": {
|
|
33744
|
+
"code": {
|
|
33745
|
+
"type": "string"
|
|
33746
|
+
},
|
|
33747
|
+
"message": {
|
|
33748
|
+
"type": "string"
|
|
33749
|
+
},
|
|
33750
|
+
"key": {
|
|
33751
|
+
"type": "string"
|
|
33752
|
+
},
|
|
33753
|
+
"envVarId": {
|
|
33754
|
+
"type": "string"
|
|
33755
|
+
},
|
|
33756
|
+
"envVarKey": {
|
|
33757
|
+
"type": "string"
|
|
33758
|
+
},
|
|
33759
|
+
"action": {
|
|
33760
|
+
"type": "string"
|
|
33761
|
+
},
|
|
33762
|
+
"link": {
|
|
33763
|
+
"type": "string"
|
|
33764
|
+
},
|
|
33765
|
+
"value": {
|
|
33766
|
+
"oneOf": [
|
|
33767
|
+
{
|
|
33768
|
+
"type": "string"
|
|
33769
|
+
},
|
|
33770
|
+
{
|
|
33771
|
+
"items": {
|
|
33772
|
+
"type": "string",
|
|
33773
|
+
"enum": [
|
|
33774
|
+
"production",
|
|
33775
|
+
"preview",
|
|
33776
|
+
"development",
|
|
33777
|
+
"preview",
|
|
33778
|
+
"development"
|
|
33779
|
+
]
|
|
33780
|
+
},
|
|
33781
|
+
"type": "array"
|
|
33782
|
+
}
|
|
33783
|
+
]
|
|
33784
|
+
},
|
|
33785
|
+
"gitBranch": {
|
|
33786
|
+
"type": "string"
|
|
33787
|
+
},
|
|
33788
|
+
"target": {
|
|
33789
|
+
"oneOf": [
|
|
33790
|
+
{
|
|
33791
|
+
"items": {
|
|
33792
|
+
"type": "string",
|
|
33793
|
+
"enum": [
|
|
33794
|
+
"production",
|
|
33795
|
+
"preview",
|
|
33796
|
+
"development",
|
|
33797
|
+
"preview",
|
|
33798
|
+
"development"
|
|
33799
|
+
]
|
|
33800
|
+
},
|
|
33801
|
+
"type": "array"
|
|
33802
|
+
},
|
|
33803
|
+
{
|
|
33804
|
+
"type": "string",
|
|
33805
|
+
"enum": [
|
|
33806
|
+
"production",
|
|
33807
|
+
"preview",
|
|
33808
|
+
"development",
|
|
33809
|
+
"preview",
|
|
33810
|
+
"development"
|
|
33811
|
+
]
|
|
33812
|
+
}
|
|
33813
|
+
]
|
|
33814
|
+
},
|
|
33815
|
+
"project": {
|
|
33816
|
+
"type": "string"
|
|
33817
|
+
}
|
|
33818
|
+
},
|
|
33819
|
+
"required": [
|
|
33820
|
+
"code",
|
|
33821
|
+
"message"
|
|
33822
|
+
],
|
|
33823
|
+
"type": "object"
|
|
33824
|
+
}
|
|
33825
|
+
},
|
|
33826
|
+
"required": [
|
|
33827
|
+
"error"
|
|
33828
|
+
],
|
|
33829
|
+
"type": "object"
|
|
33830
|
+
},
|
|
33831
|
+
"type": "array"
|
|
33832
|
+
}
|
|
33833
|
+
},
|
|
33834
|
+
"required": [
|
|
33835
|
+
"created",
|
|
33836
|
+
"failed"
|
|
33837
|
+
],
|
|
33838
|
+
"type": "object"
|
|
33839
|
+
}
|
|
33840
|
+
}
|
|
33841
|
+
}
|
|
33842
|
+
},
|
|
33843
|
+
"400": {
|
|
33844
|
+
"description": "One of the provided values in the request body is invalid."
|
|
33845
|
+
},
|
|
33846
|
+
"401": {
|
|
33847
|
+
"description": "The request is not authorized."
|
|
33848
|
+
},
|
|
33849
|
+
"402": {
|
|
33850
|
+
"description": "The account was soft-blocked for an unhandled reason.\nThe account is missing a payment so payment method must be updated"
|
|
33851
|
+
},
|
|
33852
|
+
"403": {
|
|
33853
|
+
"description": "You do not have permission to access this resource."
|
|
33854
|
+
}
|
|
33855
|
+
},
|
|
33856
|
+
"parameters": [
|
|
33857
|
+
{
|
|
33858
|
+
"description": "The Team identifier to perform the request on behalf of.",
|
|
33859
|
+
"in": "query",
|
|
33860
|
+
"name": "teamId",
|
|
33861
|
+
"schema": {
|
|
33862
|
+
"type": "string",
|
|
33863
|
+
"example": "team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
33864
|
+
}
|
|
33865
|
+
},
|
|
33866
|
+
{
|
|
33867
|
+
"description": "The Team slug to perform the request on behalf of.",
|
|
33868
|
+
"in": "query",
|
|
33869
|
+
"name": "slug",
|
|
33870
|
+
"schema": {
|
|
33871
|
+
"type": "string",
|
|
33872
|
+
"example": "my-team-url-slug"
|
|
33873
|
+
}
|
|
33874
|
+
}
|
|
33875
|
+
],
|
|
33876
|
+
"requestBody": {
|
|
33877
|
+
"content": {
|
|
33878
|
+
"application/json": {
|
|
33879
|
+
"schema": {
|
|
33880
|
+
"type": "object",
|
|
33881
|
+
"required": [
|
|
33882
|
+
"evs"
|
|
33883
|
+
],
|
|
33884
|
+
"anyOf": [
|
|
33885
|
+
{
|
|
33886
|
+
"required": [
|
|
33887
|
+
"target"
|
|
33888
|
+
]
|
|
33889
|
+
},
|
|
33890
|
+
{
|
|
33891
|
+
"required": [
|
|
33892
|
+
"applyToAllCustomEnvironments"
|
|
33893
|
+
]
|
|
33894
|
+
}
|
|
33895
|
+
],
|
|
33896
|
+
"properties": {
|
|
33897
|
+
"evs": {
|
|
33898
|
+
"type": "array",
|
|
33899
|
+
"maximum": 50,
|
|
33900
|
+
"minimum": 1,
|
|
33901
|
+
"items": {
|
|
33902
|
+
"type": "object",
|
|
33903
|
+
"required": [
|
|
33904
|
+
"key",
|
|
33905
|
+
"value"
|
|
33906
|
+
],
|
|
33907
|
+
"properties": {
|
|
33908
|
+
"key": {
|
|
33909
|
+
"description": "The name of the Shared Environment Variable",
|
|
33910
|
+
"type": "string",
|
|
33911
|
+
"example": "API_URL"
|
|
33912
|
+
},
|
|
33913
|
+
"value": {
|
|
33914
|
+
"description": "The value of the Shared Environment Variable",
|
|
33915
|
+
"type": "string",
|
|
33916
|
+
"example": "https://api.vercel.com"
|
|
33917
|
+
},
|
|
33918
|
+
"comment": {
|
|
33919
|
+
"type": "string",
|
|
33920
|
+
"description": "A comment to add context on what this Shared Environment Variable is for",
|
|
33921
|
+
"example": "database connection string for production",
|
|
33922
|
+
"maxLength": 500
|
|
33923
|
+
}
|
|
33924
|
+
}
|
|
33925
|
+
}
|
|
33926
|
+
},
|
|
33927
|
+
"type": {
|
|
33928
|
+
"description": "The type of environment variable",
|
|
33929
|
+
"type": "string",
|
|
33930
|
+
"enum": [
|
|
33931
|
+
"encrypted",
|
|
33932
|
+
"sensitive"
|
|
33933
|
+
],
|
|
33934
|
+
"example": "encrypted"
|
|
33935
|
+
},
|
|
33936
|
+
"target": {
|
|
33937
|
+
"description": "The target environment of the Shared Environment Variable",
|
|
33938
|
+
"type": "array",
|
|
33939
|
+
"items": {
|
|
33940
|
+
"enum": [
|
|
33941
|
+
"production",
|
|
33942
|
+
"preview",
|
|
33943
|
+
"development"
|
|
33944
|
+
]
|
|
33945
|
+
},
|
|
33946
|
+
"example": [
|
|
33947
|
+
"production",
|
|
33948
|
+
"preview"
|
|
33949
|
+
]
|
|
33950
|
+
},
|
|
33951
|
+
"projectId": {
|
|
33952
|
+
"description": "Associate a Shared Environment Variable to projects.",
|
|
33953
|
+
"type": "array",
|
|
33954
|
+
"items": {
|
|
33955
|
+
"type": "string"
|
|
33956
|
+
},
|
|
33957
|
+
"example": [
|
|
33958
|
+
"prj_2WjyKQmM8ZnGcJsPWMrHRHrE",
|
|
33959
|
+
"prj_2WjyKQmM8ZnGcJsPWMrHRCRV"
|
|
33960
|
+
],
|
|
33961
|
+
"deprecated": true
|
|
33962
|
+
}
|
|
33963
|
+
}
|
|
33964
|
+
}
|
|
33965
|
+
}
|
|
33966
|
+
}
|
|
33967
|
+
}
|
|
33968
|
+
},
|
|
33969
|
+
"get": {
|
|
33970
|
+
"description": "Lists all Shared Environment Variables for a team, taking into account optional filters.",
|
|
33971
|
+
"operationId": "listSharedEnvVariable",
|
|
33972
|
+
"security": [
|
|
33973
|
+
{
|
|
33974
|
+
"bearerToken": []
|
|
33975
|
+
}
|
|
33976
|
+
],
|
|
33977
|
+
"summary": "Lists all Shared Environment Variables for a team",
|
|
33978
|
+
"tags": [
|
|
33979
|
+
"environment"
|
|
33980
|
+
],
|
|
33981
|
+
"responses": {
|
|
33982
|
+
"200": {
|
|
33983
|
+
"description": "",
|
|
33984
|
+
"content": {
|
|
33985
|
+
"application/json": {
|
|
33986
|
+
"schema": {
|
|
33987
|
+
"properties": {
|
|
33988
|
+
"data": {
|
|
33989
|
+
"items": {
|
|
33990
|
+
"properties": {
|
|
33991
|
+
"created": {
|
|
33992
|
+
"type": "string",
|
|
33993
|
+
"format": "date-time",
|
|
33994
|
+
"description": "The date when the Shared Env Var was created.",
|
|
33995
|
+
"example": "2021-02-10T13:11:49.180Z"
|
|
33996
|
+
},
|
|
33997
|
+
"key": {
|
|
33998
|
+
"type": "string",
|
|
33999
|
+
"description": "The name of the Shared Env Var.",
|
|
34000
|
+
"example": "my-api-key"
|
|
34001
|
+
},
|
|
34002
|
+
"ownerId": {
|
|
34003
|
+
"nullable": true,
|
|
34004
|
+
"type": "string",
|
|
34005
|
+
"description": "The unique identifier of the owner (team) the Shared Env Var was created for.",
|
|
34006
|
+
"example": "team_LLHUOMOoDlqOp8wPE4kFo9pE"
|
|
34007
|
+
},
|
|
34008
|
+
"id": {
|
|
34009
|
+
"type": "string",
|
|
34010
|
+
"description": "The unique identifier of the Shared Env Var.",
|
|
34011
|
+
"example": "env_XCG7t7AIHuO2SBA8667zNUiM"
|
|
34012
|
+
},
|
|
34013
|
+
"createdBy": {
|
|
34014
|
+
"nullable": true,
|
|
34015
|
+
"type": "string",
|
|
34016
|
+
"description": "The unique identifier of the user who created the Shared Env Var.",
|
|
34017
|
+
"example": "2qDDuGFTWXBLDNnqZfWPDp1A"
|
|
34018
|
+
},
|
|
34019
|
+
"deletedBy": {
|
|
34020
|
+
"nullable": true,
|
|
34021
|
+
"type": "string",
|
|
34022
|
+
"description": "The unique identifier of the user who deleted the Shared Env Var.",
|
|
34023
|
+
"example": "2qDDuGFTWXBLDNnqZfWPDp1A"
|
|
34024
|
+
},
|
|
34025
|
+
"updatedBy": {
|
|
34026
|
+
"nullable": true,
|
|
34027
|
+
"type": "string",
|
|
34028
|
+
"description": "The unique identifier of the user who last updated the Shared Env Var.",
|
|
34029
|
+
"example": "2qDDuGFTWXBLDNnqZfWPDp1A"
|
|
34030
|
+
},
|
|
34031
|
+
"createdAt": {
|
|
34032
|
+
"type": "number",
|
|
34033
|
+
"description": "Timestamp for when the Shared Env Var was created.",
|
|
34034
|
+
"example": 1609492210000
|
|
34035
|
+
},
|
|
34036
|
+
"deletedAt": {
|
|
34037
|
+
"type": "number",
|
|
34038
|
+
"description": "Timestamp for when the Shared Env Var was (soft) deleted.",
|
|
34039
|
+
"example": 1609492210000
|
|
34040
|
+
},
|
|
34041
|
+
"updatedAt": {
|
|
34042
|
+
"type": "number",
|
|
34043
|
+
"description": "Timestamp for when the Shared Env Var was last updated.",
|
|
34044
|
+
"example": 1609492210000
|
|
34045
|
+
},
|
|
34046
|
+
"value": {
|
|
34047
|
+
"type": "string",
|
|
34048
|
+
"description": "The value of the Shared Env Var."
|
|
34049
|
+
},
|
|
34050
|
+
"projectId": {
|
|
34051
|
+
"items": {
|
|
34052
|
+
"type": "string"
|
|
34053
|
+
},
|
|
34054
|
+
"type": "array",
|
|
34055
|
+
"description": "The unique identifiers of the projects which the Shared Env Var is linked to.",
|
|
34056
|
+
"example": [
|
|
34057
|
+
"prj_2WjyKQmM8ZnGcJsPWMrHRHrE",
|
|
34058
|
+
"prj_2WjyKQmM8ZnGcJsPWMrasEFg"
|
|
34059
|
+
]
|
|
34060
|
+
},
|
|
34061
|
+
"type": {
|
|
34062
|
+
"type": "string",
|
|
34063
|
+
"enum": [
|
|
34064
|
+
"encrypted",
|
|
34065
|
+
"sensitive",
|
|
34066
|
+
"system",
|
|
34067
|
+
"plain"
|
|
34068
|
+
],
|
|
34069
|
+
"description": "The type of this cosmos doc instance, if blank, assume secret.",
|
|
34070
|
+
"example": "encrypted"
|
|
34071
|
+
},
|
|
34072
|
+
"target": {
|
|
34073
|
+
"items": {
|
|
34074
|
+
"type": "string",
|
|
34075
|
+
"enum": [
|
|
34076
|
+
"production",
|
|
34077
|
+
"preview",
|
|
34078
|
+
"development"
|
|
34079
|
+
],
|
|
34080
|
+
"description": "environments this env variable targets",
|
|
34081
|
+
"example": "production"
|
|
34082
|
+
},
|
|
34083
|
+
"type": "array",
|
|
34084
|
+
"description": "environments this env variable targets",
|
|
34085
|
+
"example": "production"
|
|
34086
|
+
},
|
|
34087
|
+
"applyToAllCustomEnvironments": {
|
|
34088
|
+
"type": "boolean",
|
|
34089
|
+
"description": "whether or not this env varible applies to custom environments"
|
|
34090
|
+
},
|
|
34091
|
+
"decrypted": {
|
|
34092
|
+
"type": "boolean",
|
|
34093
|
+
"description": "whether or not this env variable is decrypted"
|
|
34094
|
+
},
|
|
34095
|
+
"comment": {
|
|
34096
|
+
"type": "string",
|
|
34097
|
+
"description": "A user provided comment that describes what this Shared Env Var is for."
|
|
34098
|
+
},
|
|
34099
|
+
"lastEditedByDisplayName": {
|
|
34100
|
+
"type": "string",
|
|
34101
|
+
"description": "The last editor full name or username."
|
|
34102
|
+
}
|
|
34103
|
+
},
|
|
34104
|
+
"type": "object"
|
|
34105
|
+
},
|
|
34106
|
+
"type": "array"
|
|
34107
|
+
},
|
|
34108
|
+
"pagination": {
|
|
34109
|
+
"$ref": "#/components/schemas/Pagination"
|
|
34110
|
+
}
|
|
34111
|
+
},
|
|
34112
|
+
"required": [
|
|
34113
|
+
"data",
|
|
34114
|
+
"pagination"
|
|
34115
|
+
],
|
|
34116
|
+
"type": "object"
|
|
34117
|
+
}
|
|
34118
|
+
}
|
|
34119
|
+
}
|
|
34120
|
+
},
|
|
34121
|
+
"400": {
|
|
34122
|
+
"description": "One of the provided values in the request query is invalid."
|
|
34123
|
+
},
|
|
34124
|
+
"401": {
|
|
34125
|
+
"description": "The request is not authorized."
|
|
34126
|
+
},
|
|
34127
|
+
"403": {
|
|
34128
|
+
"description": "You do not have permission to access this resource."
|
|
34129
|
+
},
|
|
34130
|
+
"404": {
|
|
34131
|
+
"description": ""
|
|
34132
|
+
}
|
|
34133
|
+
},
|
|
34134
|
+
"parameters": [
|
|
34135
|
+
{
|
|
34136
|
+
"name": "search",
|
|
34137
|
+
"in": "query",
|
|
34138
|
+
"schema": {
|
|
34139
|
+
"type": "string"
|
|
34140
|
+
}
|
|
34141
|
+
},
|
|
34142
|
+
{
|
|
34143
|
+
"name": "projectId",
|
|
34144
|
+
"description": "Filter SharedEnvVariables that belong to a project",
|
|
34145
|
+
"in": "query",
|
|
34146
|
+
"schema": {
|
|
34147
|
+
"description": "Filter SharedEnvVariables that belong to a project",
|
|
34148
|
+
"type": "string",
|
|
34149
|
+
"example": "prj_2WjyKQmM8ZnGcJsPWMrHRHrE"
|
|
34150
|
+
}
|
|
34151
|
+
},
|
|
34152
|
+
{
|
|
34153
|
+
"name": "ids",
|
|
34154
|
+
"description": "Filter SharedEnvVariables based on comma separated ids",
|
|
34155
|
+
"in": "query",
|
|
34156
|
+
"schema": {
|
|
34157
|
+
"description": "Filter SharedEnvVariables based on comma separated ids",
|
|
34158
|
+
"type": "string",
|
|
34159
|
+
"example": "env_2WjyKQmM8ZnGcJsPWMrHRHrE,env_2WjyKQmM8ZnGcJsPWMrHRCRV"
|
|
34160
|
+
}
|
|
34161
|
+
},
|
|
34162
|
+
{
|
|
34163
|
+
"name": "exclude_ids",
|
|
34164
|
+
"description": "Filter SharedEnvVariables based on comma separated ids",
|
|
34165
|
+
"in": "query",
|
|
34166
|
+
"schema": {
|
|
34167
|
+
"description": "Filter SharedEnvVariables based on comma separated ids",
|
|
34168
|
+
"type": "string",
|
|
34169
|
+
"example": "env_2WjyKQmM8ZnGcJsPWMrHRHrE,env_2WjyKQmM8ZnGcJsPWMrHRCRV"
|
|
34170
|
+
}
|
|
34171
|
+
},
|
|
34172
|
+
{
|
|
34173
|
+
"name": "exclude-ids",
|
|
34174
|
+
"description": "Filter SharedEnvVariables based on comma separated ids",
|
|
34175
|
+
"in": "query",
|
|
34176
|
+
"schema": {
|
|
34177
|
+
"description": "Filter SharedEnvVariables based on comma separated ids",
|
|
34178
|
+
"type": "string",
|
|
34179
|
+
"example": "env_2WjyKQmM8ZnGcJsPWMrHRHrE,env_2WjyKQmM8ZnGcJsPWMrHRCRV"
|
|
34180
|
+
}
|
|
34181
|
+
},
|
|
34182
|
+
{
|
|
34183
|
+
"name": "exclude_projectId",
|
|
34184
|
+
"description": "Filter SharedEnvVariables that belong to a project",
|
|
34185
|
+
"in": "query",
|
|
34186
|
+
"schema": {
|
|
34187
|
+
"description": "Filter SharedEnvVariables that belong to a project",
|
|
34188
|
+
"type": "string",
|
|
34189
|
+
"example": "prj_2WjyKQmM8ZnGcJsPWMrHRHrE"
|
|
34190
|
+
}
|
|
34191
|
+
},
|
|
34192
|
+
{
|
|
34193
|
+
"name": "exclude-projectId",
|
|
34194
|
+
"description": "Filter SharedEnvVariables that belong to a project",
|
|
34195
|
+
"in": "query",
|
|
34196
|
+
"schema": {
|
|
34197
|
+
"description": "Filter SharedEnvVariables that belong to a project",
|
|
34198
|
+
"type": "string",
|
|
34199
|
+
"example": "prj_2WjyKQmM8ZnGcJsPWMrHRHrE"
|
|
34200
|
+
}
|
|
34201
|
+
},
|
|
34202
|
+
{
|
|
34203
|
+
"description": "The Team identifier to perform the request on behalf of.",
|
|
34204
|
+
"in": "query",
|
|
34205
|
+
"name": "teamId",
|
|
34206
|
+
"schema": {
|
|
34207
|
+
"type": "string",
|
|
34208
|
+
"example": "team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
34209
|
+
}
|
|
34210
|
+
},
|
|
34211
|
+
{
|
|
34212
|
+
"description": "The Team slug to perform the request on behalf of.",
|
|
34213
|
+
"in": "query",
|
|
34214
|
+
"name": "slug",
|
|
34215
|
+
"schema": {
|
|
34216
|
+
"type": "string",
|
|
34217
|
+
"example": "my-team-url-slug"
|
|
34218
|
+
}
|
|
34219
|
+
}
|
|
34220
|
+
]
|
|
34221
|
+
},
|
|
34222
|
+
"patch": {
|
|
34223
|
+
"description": "Updates a given Shared Environment Variable for a Team.",
|
|
34224
|
+
"operationId": "updateSharedEnvVariable",
|
|
34225
|
+
"security": [
|
|
34226
|
+
{
|
|
34227
|
+
"bearerToken": []
|
|
34228
|
+
}
|
|
34229
|
+
],
|
|
34230
|
+
"summary": "Updates one or more shared environment variables",
|
|
34231
|
+
"tags": [
|
|
34232
|
+
"environment"
|
|
34233
|
+
],
|
|
34234
|
+
"responses": {
|
|
34235
|
+
"200": {
|
|
34236
|
+
"description": "",
|
|
34237
|
+
"content": {
|
|
34238
|
+
"application/json": {
|
|
34239
|
+
"schema": {
|
|
34240
|
+
"properties": {
|
|
34241
|
+
"updated": {
|
|
34242
|
+
"items": {
|
|
34243
|
+
"properties": {
|
|
34244
|
+
"created": {
|
|
34245
|
+
"type": "string",
|
|
34246
|
+
"format": "date-time",
|
|
34247
|
+
"description": "The date when the Shared Env Var was created.",
|
|
34248
|
+
"example": "2021-02-10T13:11:49.180Z"
|
|
34249
|
+
},
|
|
34250
|
+
"key": {
|
|
34251
|
+
"type": "string",
|
|
34252
|
+
"description": "The name of the Shared Env Var.",
|
|
34253
|
+
"example": "my-api-key"
|
|
34254
|
+
},
|
|
34255
|
+
"ownerId": {
|
|
34256
|
+
"nullable": true,
|
|
34257
|
+
"type": "string",
|
|
34258
|
+
"description": "The unique identifier of the owner (team) the Shared Env Var was created for.",
|
|
34259
|
+
"example": "team_LLHUOMOoDlqOp8wPE4kFo9pE"
|
|
34260
|
+
},
|
|
34261
|
+
"id": {
|
|
34262
|
+
"type": "string",
|
|
34263
|
+
"description": "The unique identifier of the Shared Env Var.",
|
|
34264
|
+
"example": "env_XCG7t7AIHuO2SBA8667zNUiM"
|
|
34265
|
+
},
|
|
34266
|
+
"createdBy": {
|
|
34267
|
+
"nullable": true,
|
|
34268
|
+
"type": "string",
|
|
34269
|
+
"description": "The unique identifier of the user who created the Shared Env Var.",
|
|
34270
|
+
"example": "2qDDuGFTWXBLDNnqZfWPDp1A"
|
|
34271
|
+
},
|
|
34272
|
+
"deletedBy": {
|
|
34273
|
+
"nullable": true,
|
|
34274
|
+
"type": "string",
|
|
34275
|
+
"description": "The unique identifier of the user who deleted the Shared Env Var.",
|
|
34276
|
+
"example": "2qDDuGFTWXBLDNnqZfWPDp1A"
|
|
34277
|
+
},
|
|
34278
|
+
"updatedBy": {
|
|
34279
|
+
"nullable": true,
|
|
34280
|
+
"type": "string",
|
|
34281
|
+
"description": "The unique identifier of the user who last updated the Shared Env Var.",
|
|
34282
|
+
"example": "2qDDuGFTWXBLDNnqZfWPDp1A"
|
|
34283
|
+
},
|
|
34284
|
+
"createdAt": {
|
|
34285
|
+
"type": "number",
|
|
34286
|
+
"description": "Timestamp for when the Shared Env Var was created.",
|
|
34287
|
+
"example": 1609492210000
|
|
34288
|
+
},
|
|
34289
|
+
"deletedAt": {
|
|
34290
|
+
"type": "number",
|
|
34291
|
+
"description": "Timestamp for when the Shared Env Var was (soft) deleted.",
|
|
34292
|
+
"example": 1609492210000
|
|
34293
|
+
},
|
|
34294
|
+
"updatedAt": {
|
|
34295
|
+
"type": "number",
|
|
34296
|
+
"description": "Timestamp for when the Shared Env Var was last updated.",
|
|
34297
|
+
"example": 1609492210000
|
|
34298
|
+
},
|
|
34299
|
+
"value": {
|
|
34300
|
+
"type": "string",
|
|
34301
|
+
"description": "The value of the Shared Env Var."
|
|
34302
|
+
},
|
|
34303
|
+
"projectId": {
|
|
34304
|
+
"items": {
|
|
34305
|
+
"type": "string"
|
|
34306
|
+
},
|
|
34307
|
+
"type": "array",
|
|
34308
|
+
"description": "The unique identifiers of the projects which the Shared Env Var is linked to.",
|
|
34309
|
+
"example": [
|
|
34310
|
+
"prj_2WjyKQmM8ZnGcJsPWMrHRHrE",
|
|
34311
|
+
"prj_2WjyKQmM8ZnGcJsPWMrasEFg"
|
|
34312
|
+
]
|
|
34313
|
+
},
|
|
34314
|
+
"type": {
|
|
34315
|
+
"type": "string",
|
|
34316
|
+
"enum": [
|
|
34317
|
+
"encrypted",
|
|
34318
|
+
"sensitive",
|
|
34319
|
+
"system",
|
|
34320
|
+
"plain"
|
|
34321
|
+
],
|
|
34322
|
+
"description": "The type of this cosmos doc instance, if blank, assume secret.",
|
|
34323
|
+
"example": "encrypted"
|
|
34324
|
+
},
|
|
34325
|
+
"target": {
|
|
34326
|
+
"items": {
|
|
34327
|
+
"type": "string",
|
|
34328
|
+
"enum": [
|
|
34329
|
+
"production",
|
|
34330
|
+
"preview",
|
|
34331
|
+
"development"
|
|
34332
|
+
],
|
|
34333
|
+
"description": "environments this env variable targets",
|
|
34334
|
+
"example": "production"
|
|
34335
|
+
},
|
|
34336
|
+
"type": "array",
|
|
34337
|
+
"description": "environments this env variable targets",
|
|
34338
|
+
"example": "production"
|
|
34339
|
+
},
|
|
34340
|
+
"applyToAllCustomEnvironments": {
|
|
34341
|
+
"type": "boolean",
|
|
34342
|
+
"description": "whether or not this env varible applies to custom environments"
|
|
34343
|
+
},
|
|
34344
|
+
"decrypted": {
|
|
34345
|
+
"type": "boolean",
|
|
34346
|
+
"description": "whether or not this env variable is decrypted"
|
|
34347
|
+
},
|
|
34348
|
+
"comment": {
|
|
34349
|
+
"type": "string",
|
|
34350
|
+
"description": "A user provided comment that describes what this Shared Env Var is for."
|
|
34351
|
+
},
|
|
34352
|
+
"lastEditedByDisplayName": {
|
|
34353
|
+
"type": "string",
|
|
34354
|
+
"description": "The last editor full name or username."
|
|
34355
|
+
}
|
|
34356
|
+
},
|
|
34357
|
+
"type": "object"
|
|
34358
|
+
},
|
|
34359
|
+
"type": "array"
|
|
34360
|
+
},
|
|
34361
|
+
"failed": {
|
|
34362
|
+
"items": {
|
|
34363
|
+
"properties": {
|
|
34364
|
+
"error": {
|
|
34365
|
+
"properties": {
|
|
34366
|
+
"code": {
|
|
34367
|
+
"type": "string"
|
|
34368
|
+
},
|
|
34369
|
+
"message": {
|
|
34370
|
+
"type": "string"
|
|
34371
|
+
},
|
|
34372
|
+
"key": {
|
|
34373
|
+
"type": "string"
|
|
34374
|
+
},
|
|
34375
|
+
"envVarId": {
|
|
34376
|
+
"type": "string"
|
|
34377
|
+
},
|
|
34378
|
+
"envVarKey": {
|
|
34379
|
+
"type": "string"
|
|
34380
|
+
},
|
|
34381
|
+
"action": {
|
|
34382
|
+
"type": "string"
|
|
34383
|
+
},
|
|
34384
|
+
"link": {
|
|
34385
|
+
"type": "string"
|
|
34386
|
+
},
|
|
34387
|
+
"value": {
|
|
34388
|
+
"oneOf": [
|
|
34389
|
+
{
|
|
34390
|
+
"type": "string"
|
|
34391
|
+
},
|
|
34392
|
+
{
|
|
34393
|
+
"items": {
|
|
34394
|
+
"type": "string",
|
|
34395
|
+
"enum": [
|
|
34396
|
+
"production",
|
|
34397
|
+
"preview",
|
|
34398
|
+
"development",
|
|
34399
|
+
"preview",
|
|
34400
|
+
"development"
|
|
34401
|
+
]
|
|
34402
|
+
},
|
|
34403
|
+
"type": "array"
|
|
34404
|
+
}
|
|
34405
|
+
]
|
|
34406
|
+
},
|
|
34407
|
+
"gitBranch": {
|
|
34408
|
+
"type": "string"
|
|
34409
|
+
},
|
|
34410
|
+
"target": {
|
|
34411
|
+
"oneOf": [
|
|
34412
|
+
{
|
|
34413
|
+
"items": {
|
|
34414
|
+
"type": "string",
|
|
34415
|
+
"enum": [
|
|
34416
|
+
"production",
|
|
34417
|
+
"preview",
|
|
34418
|
+
"development",
|
|
34419
|
+
"preview",
|
|
34420
|
+
"development"
|
|
34421
|
+
]
|
|
34422
|
+
},
|
|
34423
|
+
"type": "array"
|
|
34424
|
+
},
|
|
34425
|
+
{
|
|
34426
|
+
"type": "string",
|
|
34427
|
+
"enum": [
|
|
34428
|
+
"production",
|
|
34429
|
+
"preview",
|
|
34430
|
+
"development",
|
|
34431
|
+
"preview",
|
|
34432
|
+
"development"
|
|
34433
|
+
]
|
|
34434
|
+
}
|
|
34435
|
+
]
|
|
34436
|
+
},
|
|
34437
|
+
"project": {
|
|
34438
|
+
"type": "string"
|
|
34439
|
+
}
|
|
34440
|
+
},
|
|
34441
|
+
"required": [
|
|
34442
|
+
"code",
|
|
34443
|
+
"message"
|
|
34444
|
+
],
|
|
34445
|
+
"type": "object"
|
|
34446
|
+
}
|
|
34447
|
+
},
|
|
34448
|
+
"required": [
|
|
34449
|
+
"error"
|
|
34450
|
+
],
|
|
34451
|
+
"type": "object"
|
|
34452
|
+
},
|
|
34453
|
+
"type": "array"
|
|
34454
|
+
}
|
|
34455
|
+
},
|
|
34456
|
+
"required": [
|
|
34457
|
+
"updated",
|
|
34458
|
+
"failed"
|
|
34459
|
+
],
|
|
34460
|
+
"type": "object"
|
|
34461
|
+
}
|
|
34462
|
+
}
|
|
34463
|
+
}
|
|
34464
|
+
},
|
|
34465
|
+
"400": {
|
|
34466
|
+
"description": "One of the provided values in the request body is invalid."
|
|
34467
|
+
},
|
|
34468
|
+
"401": {
|
|
34469
|
+
"description": "The request is not authorized."
|
|
34470
|
+
},
|
|
34471
|
+
"402": {
|
|
34472
|
+
"description": "The account was soft-blocked for an unhandled reason.\nThe account is missing a payment so payment method must be updated"
|
|
34473
|
+
},
|
|
34474
|
+
"403": {
|
|
34475
|
+
"description": "You do not have permission to access this resource."
|
|
34476
|
+
}
|
|
34477
|
+
},
|
|
34478
|
+
"parameters": [
|
|
34479
|
+
{
|
|
34480
|
+
"description": "The Team identifier to perform the request on behalf of.",
|
|
34481
|
+
"in": "query",
|
|
34482
|
+
"name": "teamId",
|
|
34483
|
+
"schema": {
|
|
34484
|
+
"type": "string",
|
|
34485
|
+
"example": "team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
34486
|
+
}
|
|
34487
|
+
},
|
|
34488
|
+
{
|
|
34489
|
+
"description": "The Team slug to perform the request on behalf of.",
|
|
34490
|
+
"in": "query",
|
|
34491
|
+
"name": "slug",
|
|
34492
|
+
"schema": {
|
|
34493
|
+
"type": "string",
|
|
34494
|
+
"example": "my-team-url-slug"
|
|
34495
|
+
}
|
|
34496
|
+
}
|
|
34497
|
+
],
|
|
34498
|
+
"requestBody": {
|
|
34499
|
+
"content": {
|
|
34500
|
+
"application/json": {
|
|
34501
|
+
"schema": {
|
|
34502
|
+
"additionalProperties": false,
|
|
34503
|
+
"type": "object",
|
|
34504
|
+
"required": [
|
|
34505
|
+
"updates"
|
|
34506
|
+
],
|
|
34507
|
+
"properties": {
|
|
34508
|
+
"updates": {
|
|
34509
|
+
"type": "object",
|
|
34510
|
+
"additionalProperties": {
|
|
34511
|
+
"type": "object",
|
|
34512
|
+
"additionalProperties": false,
|
|
34513
|
+
"properties": {
|
|
34514
|
+
"key": {
|
|
34515
|
+
"description": "The name of the Shared Environment Variable",
|
|
34516
|
+
"type": "string",
|
|
34517
|
+
"example": "API_URL"
|
|
34518
|
+
},
|
|
34519
|
+
"value": {
|
|
34520
|
+
"description": "The value of the Shared Environment Variable",
|
|
34521
|
+
"type": "string",
|
|
34522
|
+
"example": "https://api.vercel.com"
|
|
34523
|
+
},
|
|
34524
|
+
"target": {
|
|
34525
|
+
"description": "The target environment of the Shared Environment Variable",
|
|
34526
|
+
"type": "array",
|
|
34527
|
+
"items": {
|
|
34528
|
+
"enum": [
|
|
34529
|
+
"production",
|
|
34530
|
+
"preview",
|
|
34531
|
+
"development"
|
|
34532
|
+
]
|
|
34533
|
+
},
|
|
34534
|
+
"example": [
|
|
34535
|
+
"production",
|
|
34536
|
+
"preview"
|
|
34537
|
+
]
|
|
34538
|
+
},
|
|
34539
|
+
"projectId": {
|
|
34540
|
+
"description": "Associate a Shared Environment Variable to projects.",
|
|
34541
|
+
"type": "array",
|
|
34542
|
+
"items": {
|
|
34543
|
+
"type": "string"
|
|
34544
|
+
},
|
|
34545
|
+
"example": [
|
|
34546
|
+
"prj_2WjyKQmM8ZnGcJsPWMrHRHrE",
|
|
34547
|
+
"prj_2WjyKQmM8ZnGcJsPWMrHRCRV"
|
|
34548
|
+
]
|
|
34549
|
+
},
|
|
34550
|
+
"projectIdUpdates": {
|
|
34551
|
+
"description": "Incrementally update project associations without specifying the full list",
|
|
34552
|
+
"type": "object",
|
|
34553
|
+
"additionalProperties": false,
|
|
34554
|
+
"properties": {
|
|
34555
|
+
"link": {
|
|
34556
|
+
"description": "Project IDs to add to this environment variable",
|
|
34557
|
+
"type": "array",
|
|
34558
|
+
"items": {
|
|
34559
|
+
"type": "string"
|
|
34560
|
+
},
|
|
34561
|
+
"example": [
|
|
34562
|
+
"prj_2WjyKQmM8ZnGcJsPWMrHRHrE"
|
|
34563
|
+
]
|
|
34564
|
+
},
|
|
34565
|
+
"unlink": {
|
|
34566
|
+
"description": "Project IDs to remove from this environment variable",
|
|
34567
|
+
"type": "array",
|
|
34568
|
+
"items": {
|
|
34569
|
+
"type": "string"
|
|
34570
|
+
},
|
|
34571
|
+
"example": [
|
|
34572
|
+
"prj_2WjyKQmM8ZnGcJsPWMrHRCRV"
|
|
34573
|
+
]
|
|
34574
|
+
}
|
|
34575
|
+
}
|
|
34576
|
+
},
|
|
34577
|
+
"type": {
|
|
34578
|
+
"description": "The new type of the Shared Environment Variable",
|
|
34579
|
+
"type": "string",
|
|
34580
|
+
"enum": [
|
|
34581
|
+
"encrypted",
|
|
34582
|
+
"sensitive"
|
|
34583
|
+
],
|
|
34584
|
+
"example": "encrypted"
|
|
34585
|
+
},
|
|
34586
|
+
"comment": {
|
|
34587
|
+
"type": "string",
|
|
34588
|
+
"description": "A comment to add context on what this Shared Environment Variable is for",
|
|
34589
|
+
"example": "database connection string for production",
|
|
34590
|
+
"maxLength": 500
|
|
34591
|
+
}
|
|
34592
|
+
}
|
|
34593
|
+
}
|
|
34594
|
+
}
|
|
34595
|
+
}
|
|
34596
|
+
}
|
|
34597
|
+
}
|
|
34598
|
+
}
|
|
34599
|
+
}
|
|
34600
|
+
},
|
|
34601
|
+
"delete": {
|
|
34602
|
+
"description": "Deletes one or many Shared Environment Variables for a given team.",
|
|
34603
|
+
"operationId": "deleteSharedEnvVariable",
|
|
34604
|
+
"security": [
|
|
34605
|
+
{
|
|
34606
|
+
"bearerToken": []
|
|
34607
|
+
}
|
|
34608
|
+
],
|
|
34609
|
+
"summary": "Delete one or more Env Var",
|
|
34610
|
+
"tags": [
|
|
34611
|
+
"environment"
|
|
34612
|
+
],
|
|
34613
|
+
"responses": {
|
|
34614
|
+
"200": {
|
|
34615
|
+
"description": "",
|
|
34616
|
+
"content": {
|
|
34617
|
+
"application/json": {
|
|
34618
|
+
"schema": {
|
|
34619
|
+
"properties": {
|
|
34620
|
+
"deleted": {
|
|
34621
|
+
"items": {
|
|
34622
|
+
"type": "string"
|
|
34623
|
+
},
|
|
34624
|
+
"type": "array"
|
|
34625
|
+
},
|
|
34626
|
+
"failed": {
|
|
34627
|
+
"items": {
|
|
34628
|
+
"properties": {
|
|
34629
|
+
"error": {
|
|
34630
|
+
"properties": {
|
|
34631
|
+
"code": {
|
|
34632
|
+
"type": "string"
|
|
34633
|
+
},
|
|
34634
|
+
"message": {
|
|
34635
|
+
"type": "string"
|
|
34636
|
+
},
|
|
34637
|
+
"key": {
|
|
34638
|
+
"type": "string"
|
|
34639
|
+
},
|
|
34640
|
+
"envVarId": {
|
|
34641
|
+
"type": "string"
|
|
34642
|
+
},
|
|
34643
|
+
"envVarKey": {
|
|
34644
|
+
"type": "string"
|
|
34645
|
+
},
|
|
34646
|
+
"action": {
|
|
34647
|
+
"type": "string"
|
|
34648
|
+
},
|
|
34649
|
+
"link": {
|
|
34650
|
+
"type": "string"
|
|
34651
|
+
},
|
|
34652
|
+
"value": {
|
|
34653
|
+
"oneOf": [
|
|
34654
|
+
{
|
|
34655
|
+
"type": "string"
|
|
34656
|
+
},
|
|
34657
|
+
{
|
|
34658
|
+
"items": {
|
|
34659
|
+
"type": "string",
|
|
34660
|
+
"enum": [
|
|
34661
|
+
"production",
|
|
34662
|
+
"preview",
|
|
34663
|
+
"development",
|
|
34664
|
+
"preview",
|
|
34665
|
+
"development"
|
|
34666
|
+
]
|
|
34667
|
+
},
|
|
34668
|
+
"type": "array"
|
|
34669
|
+
}
|
|
34670
|
+
]
|
|
34671
|
+
},
|
|
34672
|
+
"gitBranch": {
|
|
34673
|
+
"type": "string"
|
|
34674
|
+
},
|
|
34675
|
+
"target": {
|
|
34676
|
+
"oneOf": [
|
|
34677
|
+
{
|
|
34678
|
+
"items": {
|
|
34679
|
+
"type": "string",
|
|
34680
|
+
"enum": [
|
|
34681
|
+
"production",
|
|
34682
|
+
"preview",
|
|
34683
|
+
"development",
|
|
34684
|
+
"preview",
|
|
34685
|
+
"development"
|
|
34686
|
+
]
|
|
34687
|
+
},
|
|
34688
|
+
"type": "array"
|
|
34689
|
+
},
|
|
34690
|
+
{
|
|
34691
|
+
"type": "string",
|
|
34692
|
+
"enum": [
|
|
34693
|
+
"production",
|
|
34694
|
+
"preview",
|
|
34695
|
+
"development",
|
|
34696
|
+
"preview",
|
|
34697
|
+
"development"
|
|
34698
|
+
]
|
|
34699
|
+
}
|
|
34700
|
+
]
|
|
34701
|
+
},
|
|
34702
|
+
"project": {
|
|
34703
|
+
"type": "string"
|
|
34704
|
+
}
|
|
34705
|
+
},
|
|
34706
|
+
"required": [
|
|
34707
|
+
"code",
|
|
34708
|
+
"message"
|
|
34709
|
+
],
|
|
34710
|
+
"type": "object"
|
|
34711
|
+
}
|
|
34712
|
+
},
|
|
34713
|
+
"required": [
|
|
34714
|
+
"error"
|
|
34715
|
+
],
|
|
34716
|
+
"type": "object"
|
|
34717
|
+
},
|
|
34718
|
+
"type": "array"
|
|
34719
|
+
}
|
|
34720
|
+
},
|
|
34721
|
+
"required": [
|
|
34722
|
+
"deleted",
|
|
34723
|
+
"failed"
|
|
34724
|
+
],
|
|
34725
|
+
"type": "object"
|
|
34726
|
+
}
|
|
34727
|
+
}
|
|
34728
|
+
}
|
|
34729
|
+
},
|
|
34730
|
+
"400": {
|
|
34731
|
+
"description": "One of the provided values in the request body is invalid."
|
|
34732
|
+
},
|
|
34733
|
+
"401": {
|
|
34734
|
+
"description": "The request is not authorized."
|
|
34735
|
+
},
|
|
34736
|
+
"402": {
|
|
34737
|
+
"description": "The account was soft-blocked for an unhandled reason.\nThe account is missing a payment so payment method must be updated"
|
|
34738
|
+
},
|
|
34739
|
+
"403": {
|
|
34740
|
+
"description": "You do not have permission to access this resource."
|
|
34741
|
+
}
|
|
34742
|
+
},
|
|
34743
|
+
"parameters": [
|
|
34744
|
+
{
|
|
34745
|
+
"description": "The Team identifier to perform the request on behalf of.",
|
|
34746
|
+
"in": "query",
|
|
34747
|
+
"name": "teamId",
|
|
34748
|
+
"schema": {
|
|
34749
|
+
"type": "string",
|
|
34750
|
+
"example": "team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
34751
|
+
}
|
|
34752
|
+
},
|
|
34753
|
+
{
|
|
34754
|
+
"description": "The Team slug to perform the request on behalf of.",
|
|
34755
|
+
"in": "query",
|
|
34756
|
+
"name": "slug",
|
|
34757
|
+
"schema": {
|
|
34758
|
+
"type": "string",
|
|
34759
|
+
"example": "my-team-url-slug"
|
|
34760
|
+
}
|
|
34761
|
+
}
|
|
34762
|
+
],
|
|
34763
|
+
"requestBody": {
|
|
34764
|
+
"content": {
|
|
34765
|
+
"application/json": {
|
|
34766
|
+
"schema": {
|
|
34767
|
+
"type": "object",
|
|
34768
|
+
"required": [
|
|
34769
|
+
"ids"
|
|
34770
|
+
],
|
|
34771
|
+
"properties": {
|
|
34772
|
+
"ids": {
|
|
34773
|
+
"description": "IDs of the Shared Environment Variables to delete",
|
|
34774
|
+
"minimum": 1,
|
|
34775
|
+
"maximum": 50,
|
|
34776
|
+
"type": "array",
|
|
34777
|
+
"items": {
|
|
34778
|
+
"type": "string"
|
|
34779
|
+
},
|
|
34780
|
+
"example": [
|
|
34781
|
+
"env_abc123",
|
|
34782
|
+
"env_abc124"
|
|
34783
|
+
]
|
|
34784
|
+
}
|
|
34785
|
+
}
|
|
34786
|
+
}
|
|
34787
|
+
}
|
|
34788
|
+
}
|
|
34789
|
+
}
|
|
34790
|
+
}
|
|
34791
|
+
},
|
|
34792
|
+
"/v1/env/{id}": {
|
|
34793
|
+
"get": {
|
|
34794
|
+
"description": "Retrieve the decrypted value of a Shared Environment Variable by id.",
|
|
34795
|
+
"operationId": "getSharedEnvVar",
|
|
34796
|
+
"security": [
|
|
34797
|
+
{
|
|
34798
|
+
"bearerToken": []
|
|
34799
|
+
}
|
|
34800
|
+
],
|
|
34801
|
+
"summary": "Retrieve the decrypted value of a Shared Environment Variable by id.",
|
|
34802
|
+
"tags": [
|
|
34803
|
+
"environment"
|
|
34804
|
+
],
|
|
34805
|
+
"responses": {
|
|
34806
|
+
"200": {
|
|
34807
|
+
"description": "",
|
|
34808
|
+
"content": {
|
|
34809
|
+
"application/json": {
|
|
34810
|
+
"schema": {
|
|
34811
|
+
"properties": {
|
|
34812
|
+
"created": {
|
|
34813
|
+
"type": "string",
|
|
34814
|
+
"format": "date-time",
|
|
34815
|
+
"description": "The date when the Shared Env Var was created.",
|
|
34816
|
+
"example": "2021-02-10T13:11:49.180Z"
|
|
34817
|
+
},
|
|
34818
|
+
"key": {
|
|
34819
|
+
"type": "string",
|
|
34820
|
+
"description": "The name of the Shared Env Var.",
|
|
34821
|
+
"example": "my-api-key"
|
|
34822
|
+
},
|
|
34823
|
+
"ownerId": {
|
|
34824
|
+
"nullable": true,
|
|
34825
|
+
"type": "string",
|
|
34826
|
+
"description": "The unique identifier of the owner (team) the Shared Env Var was created for.",
|
|
34827
|
+
"example": "team_LLHUOMOoDlqOp8wPE4kFo9pE"
|
|
34828
|
+
},
|
|
34829
|
+
"id": {
|
|
34830
|
+
"type": "string",
|
|
34831
|
+
"description": "The unique identifier of the Shared Env Var.",
|
|
34832
|
+
"example": "env_XCG7t7AIHuO2SBA8667zNUiM"
|
|
34833
|
+
},
|
|
34834
|
+
"createdBy": {
|
|
34835
|
+
"nullable": true,
|
|
34836
|
+
"type": "string",
|
|
34837
|
+
"description": "The unique identifier of the user who created the Shared Env Var.",
|
|
34838
|
+
"example": "2qDDuGFTWXBLDNnqZfWPDp1A"
|
|
34839
|
+
},
|
|
34840
|
+
"deletedBy": {
|
|
34841
|
+
"nullable": true,
|
|
34842
|
+
"type": "string",
|
|
34843
|
+
"description": "The unique identifier of the user who deleted the Shared Env Var.",
|
|
34844
|
+
"example": "2qDDuGFTWXBLDNnqZfWPDp1A"
|
|
34845
|
+
},
|
|
34846
|
+
"updatedBy": {
|
|
34847
|
+
"nullable": true,
|
|
34848
|
+
"type": "string",
|
|
34849
|
+
"description": "The unique identifier of the user who last updated the Shared Env Var.",
|
|
34850
|
+
"example": "2qDDuGFTWXBLDNnqZfWPDp1A"
|
|
34851
|
+
},
|
|
34852
|
+
"createdAt": {
|
|
34853
|
+
"type": "number",
|
|
34854
|
+
"description": "Timestamp for when the Shared Env Var was created.",
|
|
34855
|
+
"example": 1609492210000
|
|
34856
|
+
},
|
|
34857
|
+
"deletedAt": {
|
|
34858
|
+
"type": "number",
|
|
34859
|
+
"description": "Timestamp for when the Shared Env Var was (soft) deleted.",
|
|
34860
|
+
"example": 1609492210000
|
|
34861
|
+
},
|
|
34862
|
+
"updatedAt": {
|
|
34863
|
+
"type": "number",
|
|
34864
|
+
"description": "Timestamp for when the Shared Env Var was last updated.",
|
|
34865
|
+
"example": 1609492210000
|
|
34866
|
+
},
|
|
34867
|
+
"value": {
|
|
34868
|
+
"type": "string",
|
|
34869
|
+
"description": "The value of the Shared Env Var."
|
|
34870
|
+
},
|
|
34871
|
+
"projectId": {
|
|
34872
|
+
"items": {
|
|
34873
|
+
"type": "string"
|
|
34874
|
+
},
|
|
34875
|
+
"type": "array",
|
|
34876
|
+
"description": "The unique identifiers of the projects which the Shared Env Var is linked to.",
|
|
34877
|
+
"example": [
|
|
34878
|
+
"prj_2WjyKQmM8ZnGcJsPWMrHRHrE",
|
|
34879
|
+
"prj_2WjyKQmM8ZnGcJsPWMrasEFg"
|
|
34880
|
+
]
|
|
34881
|
+
},
|
|
34882
|
+
"type": {
|
|
34883
|
+
"type": "string",
|
|
34884
|
+
"enum": [
|
|
34885
|
+
"encrypted",
|
|
34886
|
+
"sensitive",
|
|
34887
|
+
"system",
|
|
34888
|
+
"plain"
|
|
34889
|
+
],
|
|
34890
|
+
"description": "The type of this cosmos doc instance, if blank, assume secret.",
|
|
34891
|
+
"example": "encrypted"
|
|
34892
|
+
},
|
|
34893
|
+
"target": {
|
|
34894
|
+
"items": {
|
|
34895
|
+
"type": "string",
|
|
34896
|
+
"enum": [
|
|
34897
|
+
"production",
|
|
34898
|
+
"preview",
|
|
34899
|
+
"development"
|
|
34900
|
+
],
|
|
34901
|
+
"description": "environments this env variable targets",
|
|
34902
|
+
"example": "production"
|
|
34903
|
+
},
|
|
34904
|
+
"type": "array",
|
|
34905
|
+
"description": "environments this env variable targets",
|
|
34906
|
+
"example": "production"
|
|
34907
|
+
},
|
|
34908
|
+
"applyToAllCustomEnvironments": {
|
|
34909
|
+
"type": "boolean",
|
|
34910
|
+
"description": "whether or not this env varible applies to custom environments"
|
|
34911
|
+
},
|
|
34912
|
+
"decrypted": {
|
|
34913
|
+
"type": "boolean",
|
|
34914
|
+
"description": "whether or not this env variable is decrypted"
|
|
34915
|
+
},
|
|
34916
|
+
"comment": {
|
|
34917
|
+
"type": "string",
|
|
34918
|
+
"description": "A user provided comment that describes what this Shared Env Var is for."
|
|
34919
|
+
},
|
|
34920
|
+
"lastEditedByDisplayName": {
|
|
34921
|
+
"type": "string",
|
|
34922
|
+
"description": "The last editor full name or username."
|
|
34923
|
+
}
|
|
34924
|
+
},
|
|
34925
|
+
"type": "object"
|
|
34926
|
+
}
|
|
34927
|
+
}
|
|
34928
|
+
}
|
|
34929
|
+
},
|
|
34930
|
+
"400": {
|
|
34931
|
+
"description": "One of the provided values in the request query is invalid."
|
|
34932
|
+
},
|
|
34933
|
+
"401": {
|
|
34934
|
+
"description": "The request is not authorized."
|
|
34935
|
+
},
|
|
34936
|
+
"403": {
|
|
34937
|
+
"description": "You do not have permission to access this resource."
|
|
34938
|
+
}
|
|
34939
|
+
},
|
|
34940
|
+
"parameters": [
|
|
34941
|
+
{
|
|
34942
|
+
"name": "id",
|
|
34943
|
+
"description": "The unique ID for the Shared Environment Variable to get the decrypted value.",
|
|
34944
|
+
"in": "path",
|
|
34945
|
+
"required": true,
|
|
34946
|
+
"schema": {
|
|
34947
|
+
"description": "The unique ID for the Shared Environment Variable to get the decrypted value.",
|
|
34948
|
+
"type": "string"
|
|
34949
|
+
}
|
|
34950
|
+
},
|
|
34951
|
+
{
|
|
34952
|
+
"description": "The Team identifier to perform the request on behalf of.",
|
|
34953
|
+
"in": "query",
|
|
34954
|
+
"name": "teamId",
|
|
34955
|
+
"schema": {
|
|
34956
|
+
"type": "string",
|
|
34957
|
+
"example": "team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
34958
|
+
}
|
|
34959
|
+
},
|
|
34960
|
+
{
|
|
34961
|
+
"description": "The Team slug to perform the request on behalf of.",
|
|
34962
|
+
"in": "query",
|
|
34963
|
+
"name": "slug",
|
|
34964
|
+
"schema": {
|
|
34965
|
+
"type": "string",
|
|
34966
|
+
"example": "my-team-url-slug"
|
|
34967
|
+
}
|
|
34968
|
+
}
|
|
34969
|
+
]
|
|
34970
|
+
}
|
|
34971
|
+
},
|
|
34972
|
+
"/v1/env/{id}/unlink/{projectId}": {
|
|
34973
|
+
"patch": {
|
|
34974
|
+
"description": "Disconnects a shared environment variable for a given project",
|
|
34975
|
+
"operationId": "unlinkSharedEnvVariable",
|
|
34976
|
+
"security": [
|
|
34977
|
+
{
|
|
34978
|
+
"bearerToken": []
|
|
34979
|
+
}
|
|
34980
|
+
],
|
|
34981
|
+
"summary": "Disconnects a shared environment variable for a given project",
|
|
34982
|
+
"tags": [
|
|
34983
|
+
"environment"
|
|
34984
|
+
],
|
|
34985
|
+
"responses": {
|
|
34986
|
+
"200": {
|
|
34987
|
+
"description": "",
|
|
34988
|
+
"content": {
|
|
34989
|
+
"application/json": {
|
|
34990
|
+
"schema": {
|
|
34991
|
+
"properties": {
|
|
34992
|
+
"id": {
|
|
34993
|
+
"type": "string"
|
|
34994
|
+
}
|
|
34995
|
+
},
|
|
34996
|
+
"required": [
|
|
34997
|
+
"id"
|
|
34998
|
+
],
|
|
34999
|
+
"type": "object"
|
|
35000
|
+
}
|
|
35001
|
+
}
|
|
35002
|
+
}
|
|
35003
|
+
},
|
|
35004
|
+
"400": {
|
|
35005
|
+
"description": "One of the provided values in the request query is invalid."
|
|
35006
|
+
},
|
|
35007
|
+
"401": {
|
|
35008
|
+
"description": "The request is not authorized."
|
|
35009
|
+
},
|
|
35010
|
+
"403": {
|
|
35011
|
+
"description": "You do not have permission to access this resource."
|
|
35012
|
+
}
|
|
35013
|
+
},
|
|
35014
|
+
"parameters": [
|
|
35015
|
+
{
|
|
35016
|
+
"name": "id",
|
|
35017
|
+
"description": "The unique ID for the Shared Environment Variable to unlink from the project.",
|
|
35018
|
+
"in": "path",
|
|
35019
|
+
"required": true,
|
|
35020
|
+
"schema": {
|
|
35021
|
+
"description": "The unique ID for the Shared Environment Variable to unlink from the project.",
|
|
35022
|
+
"type": "string"
|
|
35023
|
+
}
|
|
35024
|
+
},
|
|
35025
|
+
{
|
|
35026
|
+
"name": "projectId",
|
|
35027
|
+
"in": "path",
|
|
35028
|
+
"required": true,
|
|
35029
|
+
"schema": {
|
|
35030
|
+
"type": "string"
|
|
35031
|
+
}
|
|
35032
|
+
},
|
|
35033
|
+
{
|
|
35034
|
+
"description": "The Team identifier to perform the request on behalf of.",
|
|
35035
|
+
"in": "query",
|
|
35036
|
+
"name": "teamId",
|
|
35037
|
+
"schema": {
|
|
35038
|
+
"type": "string",
|
|
35039
|
+
"example": "team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
35040
|
+
}
|
|
35041
|
+
},
|
|
35042
|
+
{
|
|
35043
|
+
"description": "The Team slug to perform the request on behalf of.",
|
|
35044
|
+
"in": "query",
|
|
35045
|
+
"name": "slug",
|
|
35046
|
+
"schema": {
|
|
35047
|
+
"type": "string",
|
|
35048
|
+
"example": "my-team-url-slug"
|
|
35049
|
+
}
|
|
35050
|
+
}
|
|
35051
|
+
]
|
|
35052
|
+
}
|
|
35053
|
+
},
|
|
33587
35054
|
"/v3/events": {
|
|
33588
35055
|
"get": {
|
|
33589
35056
|
"description": "Retrieves a list of \"events\" generated by the User on Vercel. Events are generated when the User performs a particular action, such as logging in, creating a deployment, and joining a Team (just to name a few). When the `teamId` parameter is supplied, then the events that are returned will be in relation to the Team that was specified.",
|
|
@@ -34143,31 +35610,39 @@
|
|
|
34143
35610
|
"additionalProperties": true
|
|
34144
35611
|
},
|
|
34145
35612
|
"notification": {
|
|
34146
|
-
"
|
|
34147
|
-
|
|
34148
|
-
|
|
34149
|
-
|
|
34150
|
-
|
|
34151
|
-
|
|
34152
|
-
|
|
34153
|
-
"
|
|
34154
|
-
|
|
34155
|
-
|
|
34156
|
-
|
|
34157
|
-
|
|
34158
|
-
|
|
34159
|
-
|
|
34160
|
-
|
|
34161
|
-
|
|
35613
|
+
"oneOf": [
|
|
35614
|
+
{
|
|
35615
|
+
"type": "object",
|
|
35616
|
+
"required": [
|
|
35617
|
+
"level",
|
|
35618
|
+
"title"
|
|
35619
|
+
],
|
|
35620
|
+
"properties": {
|
|
35621
|
+
"level": {
|
|
35622
|
+
"type": "string",
|
|
35623
|
+
"enum": [
|
|
35624
|
+
"info",
|
|
35625
|
+
"warn",
|
|
35626
|
+
"error"
|
|
35627
|
+
]
|
|
35628
|
+
},
|
|
35629
|
+
"title": {
|
|
35630
|
+
"type": "string"
|
|
35631
|
+
},
|
|
35632
|
+
"message": {
|
|
35633
|
+
"type": "string"
|
|
35634
|
+
},
|
|
35635
|
+
"href": {
|
|
35636
|
+
"type": "string",
|
|
35637
|
+
"format": "uri"
|
|
35638
|
+
}
|
|
35639
|
+
}
|
|
34162
35640
|
},
|
|
34163
|
-
|
|
35641
|
+
{
|
|
34164
35642
|
"type": "string"
|
|
34165
|
-
},
|
|
34166
|
-
"href": {
|
|
34167
|
-
"type": "string",
|
|
34168
|
-
"format": "uri"
|
|
34169
35643
|
}
|
|
34170
|
-
|
|
35644
|
+
],
|
|
35645
|
+
"description": "A notification to display to your customer. Send `null` to clear the current notification."
|
|
34171
35646
|
}
|
|
34172
35647
|
},
|
|
34173
35648
|
"additionalProperties": false
|
|
@@ -35939,6 +37414,7 @@
|
|
|
35939
37414
|
"state": {
|
|
35940
37415
|
"type": "string",
|
|
35941
37416
|
"enum": [
|
|
37417
|
+
"draft",
|
|
35942
37418
|
"pending",
|
|
35943
37419
|
"scheduled",
|
|
35944
37420
|
"invoiced",
|
|
@@ -37931,34 +39407,34 @@
|
|
|
37931
39407
|
"minLength": {
|
|
37932
39408
|
"type": "object",
|
|
37933
39409
|
"properties": {
|
|
37934
|
-
"__@BRAND@
|
|
39410
|
+
"__@BRAND@648348": {
|
|
37935
39411
|
"type": "object"
|
|
37936
39412
|
}
|
|
37937
39413
|
},
|
|
37938
39414
|
"required": [
|
|
37939
|
-
"__@BRAND@
|
|
39415
|
+
"__@BRAND@648348"
|
|
37940
39416
|
]
|
|
37941
39417
|
},
|
|
37942
39418
|
"maxLength": {
|
|
37943
39419
|
"type": "object",
|
|
37944
39420
|
"properties": {
|
|
37945
|
-
"__@BRAND@
|
|
39421
|
+
"__@BRAND@648348": {
|
|
37946
39422
|
"type": "object"
|
|
37947
39423
|
}
|
|
37948
39424
|
},
|
|
37949
39425
|
"required": [
|
|
37950
|
-
"__@BRAND@
|
|
39426
|
+
"__@BRAND@648348"
|
|
37951
39427
|
]
|
|
37952
39428
|
},
|
|
37953
39429
|
"pattern": {
|
|
37954
39430
|
"type": "object",
|
|
37955
39431
|
"properties": {
|
|
37956
|
-
"__@BRAND@
|
|
39432
|
+
"__@BRAND@648348": {
|
|
37957
39433
|
"type": "object"
|
|
37958
39434
|
}
|
|
37959
39435
|
},
|
|
37960
39436
|
"required": [
|
|
37961
|
-
"__@BRAND@
|
|
39437
|
+
"__@BRAND@648348"
|
|
37962
39438
|
]
|
|
37963
39439
|
},
|
|
37964
39440
|
"default": {
|
|
@@ -38641,34 +40117,34 @@
|
|
|
38641
40117
|
"minLength": {
|
|
38642
40118
|
"type": "object",
|
|
38643
40119
|
"properties": {
|
|
38644
|
-
"__@BRAND@
|
|
40120
|
+
"__@BRAND@648348": {
|
|
38645
40121
|
"type": "object"
|
|
38646
40122
|
}
|
|
38647
40123
|
},
|
|
38648
40124
|
"required": [
|
|
38649
|
-
"__@BRAND@
|
|
40125
|
+
"__@BRAND@648348"
|
|
38650
40126
|
]
|
|
38651
40127
|
},
|
|
38652
40128
|
"maxLength": {
|
|
38653
40129
|
"type": "object",
|
|
38654
40130
|
"properties": {
|
|
38655
|
-
"__@BRAND@
|
|
40131
|
+
"__@BRAND@648348": {
|
|
38656
40132
|
"type": "object"
|
|
38657
40133
|
}
|
|
38658
40134
|
},
|
|
38659
40135
|
"required": [
|
|
38660
|
-
"__@BRAND@
|
|
40136
|
+
"__@BRAND@648348"
|
|
38661
40137
|
]
|
|
38662
40138
|
},
|
|
38663
40139
|
"pattern": {
|
|
38664
40140
|
"type": "object",
|
|
38665
40141
|
"properties": {
|
|
38666
|
-
"__@BRAND@
|
|
40142
|
+
"__@BRAND@648348": {
|
|
38667
40143
|
"type": "object"
|
|
38668
40144
|
}
|
|
38669
40145
|
},
|
|
38670
40146
|
"required": [
|
|
38671
|
-
"__@BRAND@
|
|
40147
|
+
"__@BRAND@648348"
|
|
38672
40148
|
]
|
|
38673
40149
|
},
|
|
38674
40150
|
"default": {
|
|
@@ -38826,34 +40302,34 @@
|
|
|
38826
40302
|
"minLength": {
|
|
38827
40303
|
"type": "object",
|
|
38828
40304
|
"properties": {
|
|
38829
|
-
"__@BRAND@
|
|
40305
|
+
"__@BRAND@648348": {
|
|
38830
40306
|
"type": "object"
|
|
38831
40307
|
}
|
|
38832
40308
|
},
|
|
38833
40309
|
"required": [
|
|
38834
|
-
"__@BRAND@
|
|
40310
|
+
"__@BRAND@648348"
|
|
38835
40311
|
]
|
|
38836
40312
|
},
|
|
38837
40313
|
"maxLength": {
|
|
38838
40314
|
"type": "object",
|
|
38839
40315
|
"properties": {
|
|
38840
|
-
"__@BRAND@
|
|
40316
|
+
"__@BRAND@648348": {
|
|
38841
40317
|
"type": "object"
|
|
38842
40318
|
}
|
|
38843
40319
|
},
|
|
38844
40320
|
"required": [
|
|
38845
|
-
"__@BRAND@
|
|
40321
|
+
"__@BRAND@648348"
|
|
38846
40322
|
]
|
|
38847
40323
|
},
|
|
38848
40324
|
"pattern": {
|
|
38849
40325
|
"type": "object",
|
|
38850
40326
|
"properties": {
|
|
38851
|
-
"__@BRAND@
|
|
40327
|
+
"__@BRAND@648348": {
|
|
38852
40328
|
"type": "object"
|
|
38853
40329
|
}
|
|
38854
40330
|
},
|
|
38855
40331
|
"required": [
|
|
38856
|
-
"__@BRAND@
|
|
40332
|
+
"__@BRAND@648348"
|
|
38857
40333
|
]
|
|
38858
40334
|
},
|
|
38859
40335
|
"default": {
|
|
@@ -39164,12 +40640,12 @@
|
|
|
39164
40640
|
{
|
|
39165
40641
|
"type": "object",
|
|
39166
40642
|
"properties": {
|
|
39167
|
-
"__@BRAND@
|
|
40643
|
+
"__@BRAND@648348": {
|
|
39168
40644
|
"type": "object"
|
|
39169
40645
|
}
|
|
39170
40646
|
},
|
|
39171
40647
|
"required": [
|
|
39172
|
-
"__@BRAND@
|
|
40648
|
+
"__@BRAND@648348"
|
|
39173
40649
|
]
|
|
39174
40650
|
},
|
|
39175
40651
|
{
|
|
@@ -39177,12 +40653,12 @@
|
|
|
39177
40653
|
"value": {
|
|
39178
40654
|
"type": "object",
|
|
39179
40655
|
"properties": {
|
|
39180
|
-
"__@BRAND@
|
|
40656
|
+
"__@BRAND@648348": {
|
|
39181
40657
|
"type": "object"
|
|
39182
40658
|
}
|
|
39183
40659
|
},
|
|
39184
40660
|
"required": [
|
|
39185
|
-
"__@BRAND@
|
|
40661
|
+
"__@BRAND@648348"
|
|
39186
40662
|
]
|
|
39187
40663
|
},
|
|
39188
40664
|
"disabled": {
|
|
@@ -39251,34 +40727,34 @@
|
|
|
39251
40727
|
"minLength": {
|
|
39252
40728
|
"type": "object",
|
|
39253
40729
|
"properties": {
|
|
39254
|
-
"__@BRAND@
|
|
40730
|
+
"__@BRAND@648348": {
|
|
39255
40731
|
"type": "object"
|
|
39256
40732
|
}
|
|
39257
40733
|
},
|
|
39258
40734
|
"required": [
|
|
39259
|
-
"__@BRAND@
|
|
40735
|
+
"__@BRAND@648348"
|
|
39260
40736
|
]
|
|
39261
40737
|
},
|
|
39262
40738
|
"maxLength": {
|
|
39263
40739
|
"type": "object",
|
|
39264
40740
|
"properties": {
|
|
39265
|
-
"__@BRAND@
|
|
40741
|
+
"__@BRAND@648348": {
|
|
39266
40742
|
"type": "object"
|
|
39267
40743
|
}
|
|
39268
40744
|
},
|
|
39269
40745
|
"required": [
|
|
39270
|
-
"__@BRAND@
|
|
40746
|
+
"__@BRAND@648348"
|
|
39271
40747
|
]
|
|
39272
40748
|
},
|
|
39273
40749
|
"pattern": {
|
|
39274
40750
|
"type": "object",
|
|
39275
40751
|
"properties": {
|
|
39276
|
-
"__@BRAND@
|
|
40752
|
+
"__@BRAND@648348": {
|
|
39277
40753
|
"type": "object"
|
|
39278
40754
|
}
|
|
39279
40755
|
},
|
|
39280
40756
|
"required": [
|
|
39281
|
-
"__@BRAND@
|
|
40757
|
+
"__@BRAND@648348"
|
|
39282
40758
|
]
|
|
39283
40759
|
},
|
|
39284
40760
|
"default": {
|
|
@@ -39436,34 +40912,34 @@
|
|
|
39436
40912
|
"minLength": {
|
|
39437
40913
|
"type": "object",
|
|
39438
40914
|
"properties": {
|
|
39439
|
-
"__@BRAND@
|
|
40915
|
+
"__@BRAND@648348": {
|
|
39440
40916
|
"type": "object"
|
|
39441
40917
|
}
|
|
39442
40918
|
},
|
|
39443
40919
|
"required": [
|
|
39444
|
-
"__@BRAND@
|
|
40920
|
+
"__@BRAND@648348"
|
|
39445
40921
|
]
|
|
39446
40922
|
},
|
|
39447
40923
|
"maxLength": {
|
|
39448
40924
|
"type": "object",
|
|
39449
40925
|
"properties": {
|
|
39450
|
-
"__@BRAND@
|
|
40926
|
+
"__@BRAND@648348": {
|
|
39451
40927
|
"type": "object"
|
|
39452
40928
|
}
|
|
39453
40929
|
},
|
|
39454
40930
|
"required": [
|
|
39455
|
-
"__@BRAND@
|
|
40931
|
+
"__@BRAND@648348"
|
|
39456
40932
|
]
|
|
39457
40933
|
},
|
|
39458
40934
|
"pattern": {
|
|
39459
40935
|
"type": "object",
|
|
39460
40936
|
"properties": {
|
|
39461
|
-
"__@BRAND@
|
|
40937
|
+
"__@BRAND@648348": {
|
|
39462
40938
|
"type": "object"
|
|
39463
40939
|
}
|
|
39464
40940
|
},
|
|
39465
40941
|
"required": [
|
|
39466
|
-
"__@BRAND@
|
|
40942
|
+
"__@BRAND@648348"
|
|
39467
40943
|
]
|
|
39468
40944
|
},
|
|
39469
40945
|
"default": {
|
|
@@ -39552,12 +41028,12 @@
|
|
|
39552
41028
|
{
|
|
39553
41029
|
"type": "object",
|
|
39554
41030
|
"properties": {
|
|
39555
|
-
"__@BRAND@
|
|
41031
|
+
"__@BRAND@648348": {
|
|
39556
41032
|
"type": "object"
|
|
39557
41033
|
}
|
|
39558
41034
|
},
|
|
39559
41035
|
"required": [
|
|
39560
|
-
"__@BRAND@
|
|
41036
|
+
"__@BRAND@648348"
|
|
39561
41037
|
]
|
|
39562
41038
|
},
|
|
39563
41039
|
{
|
|
@@ -39565,12 +41041,12 @@
|
|
|
39565
41041
|
"value": {
|
|
39566
41042
|
"type": "object",
|
|
39567
41043
|
"properties": {
|
|
39568
|
-
"__@BRAND@
|
|
41044
|
+
"__@BRAND@648348": {
|
|
39569
41045
|
"type": "object"
|
|
39570
41046
|
}
|
|
39571
41047
|
},
|
|
39572
41048
|
"required": [
|
|
39573
|
-
"__@BRAND@
|
|
41049
|
+
"__@BRAND@648348"
|
|
39574
41050
|
]
|
|
39575
41051
|
},
|
|
39576
41052
|
"disabled": {
|
|
@@ -39756,12 +41232,12 @@
|
|
|
39756
41232
|
"items": {
|
|
39757
41233
|
"type": "object",
|
|
39758
41234
|
"properties": {
|
|
39759
|
-
"__@BRAND@
|
|
41235
|
+
"__@BRAND@648348": {
|
|
39760
41236
|
"type": "object"
|
|
39761
41237
|
}
|
|
39762
41238
|
},
|
|
39763
41239
|
"required": [
|
|
39764
|
-
"__@BRAND@
|
|
41240
|
+
"__@BRAND@648348"
|
|
39765
41241
|
]
|
|
39766
41242
|
},
|
|
39767
41243
|
"type": "array"
|
|
@@ -39770,12 +41246,12 @@
|
|
|
39770
41246
|
"items": {
|
|
39771
41247
|
"type": "object",
|
|
39772
41248
|
"properties": {
|
|
39773
|
-
"__@BRAND@
|
|
41249
|
+
"__@BRAND@648348": {
|
|
39774
41250
|
"type": "object"
|
|
39775
41251
|
}
|
|
39776
41252
|
},
|
|
39777
41253
|
"required": [
|
|
39778
|
-
"__@BRAND@
|
|
41254
|
+
"__@BRAND@648348"
|
|
39779
41255
|
]
|
|
39780
41256
|
},
|
|
39781
41257
|
"type": "array"
|
|
@@ -39809,34 +41285,34 @@
|
|
|
39809
41285
|
"minLength": {
|
|
39810
41286
|
"type": "object",
|
|
39811
41287
|
"properties": {
|
|
39812
|
-
"__@BRAND@
|
|
41288
|
+
"__@BRAND@648348": {
|
|
39813
41289
|
"type": "object"
|
|
39814
41290
|
}
|
|
39815
41291
|
},
|
|
39816
41292
|
"required": [
|
|
39817
|
-
"__@BRAND@
|
|
41293
|
+
"__@BRAND@648348"
|
|
39818
41294
|
]
|
|
39819
41295
|
},
|
|
39820
41296
|
"maxLength": {
|
|
39821
41297
|
"type": "object",
|
|
39822
41298
|
"properties": {
|
|
39823
|
-
"__@BRAND@
|
|
41299
|
+
"__@BRAND@648348": {
|
|
39824
41300
|
"type": "object"
|
|
39825
41301
|
}
|
|
39826
41302
|
},
|
|
39827
41303
|
"required": [
|
|
39828
|
-
"__@BRAND@
|
|
41304
|
+
"__@BRAND@648348"
|
|
39829
41305
|
]
|
|
39830
41306
|
},
|
|
39831
41307
|
"pattern": {
|
|
39832
41308
|
"type": "object",
|
|
39833
41309
|
"properties": {
|
|
39834
|
-
"__@BRAND@
|
|
41310
|
+
"__@BRAND@648348": {
|
|
39835
41311
|
"type": "object"
|
|
39836
41312
|
}
|
|
39837
41313
|
},
|
|
39838
41314
|
"required": [
|
|
39839
|
-
"__@BRAND@
|
|
41315
|
+
"__@BRAND@648348"
|
|
39840
41316
|
]
|
|
39841
41317
|
},
|
|
39842
41318
|
"default": {
|
|
@@ -39970,12 +41446,12 @@
|
|
|
39970
41446
|
"value": {
|
|
39971
41447
|
"type": "object",
|
|
39972
41448
|
"properties": {
|
|
39973
|
-
"__@BRAND@
|
|
41449
|
+
"__@BRAND@648348": {
|
|
39974
41450
|
"type": "object"
|
|
39975
41451
|
}
|
|
39976
41452
|
},
|
|
39977
41453
|
"required": [
|
|
39978
|
-
"__@BRAND@
|
|
41454
|
+
"__@BRAND@648348"
|
|
39979
41455
|
]
|
|
39980
41456
|
},
|
|
39981
41457
|
"disabled": {
|
|
@@ -42868,6 +44344,7 @@
|
|
|
42868
44344
|
"express",
|
|
42869
44345
|
"h3",
|
|
42870
44346
|
"nestjs",
|
|
44347
|
+
"fastify",
|
|
42871
44348
|
"xmcp"
|
|
42872
44349
|
]
|
|
42873
44350
|
},
|
|
@@ -47700,6 +49177,7 @@
|
|
|
47700
49177
|
"express",
|
|
47701
49178
|
"h3",
|
|
47702
49179
|
"nestjs",
|
|
49180
|
+
"fastify",
|
|
47703
49181
|
"xmcp"
|
|
47704
49182
|
]
|
|
47705
49183
|
},
|
|
@@ -51594,6 +53072,7 @@
|
|
|
51594
53072
|
"express",
|
|
51595
53073
|
"h3",
|
|
51596
53074
|
"nestjs",
|
|
53075
|
+
"fastify",
|
|
51597
53076
|
"xmcp"
|
|
51598
53077
|
]
|
|
51599
53078
|
},
|
|
@@ -52736,6 +54215,7 @@
|
|
|
52736
54215
|
"express",
|
|
52737
54216
|
"h3",
|
|
52738
54217
|
"nestjs",
|
|
54218
|
+
"fastify",
|
|
52739
54219
|
"xmcp"
|
|
52740
54220
|
]
|
|
52741
54221
|
},
|
|
@@ -57394,6 +58874,7 @@
|
|
|
57394
58874
|
"express",
|
|
57395
58875
|
"h3",
|
|
57396
58876
|
"nestjs",
|
|
58877
|
+
"fastify",
|
|
57397
58878
|
"xmcp"
|
|
57398
58879
|
]
|
|
57399
58880
|
},
|
|
@@ -61234,6 +62715,7 @@
|
|
|
61234
62715
|
"express",
|
|
61235
62716
|
"h3",
|
|
61236
62717
|
"nestjs",
|
|
62718
|
+
"fastify",
|
|
61237
62719
|
"xmcp"
|
|
61238
62720
|
],
|
|
61239
62721
|
"type": "string",
|
|
@@ -61677,16 +63159,17 @@
|
|
|
61677
63159
|
},
|
|
61678
63160
|
"/v1/projects/{idOrName}/shared-connect-links": {
|
|
61679
63161
|
"patch": {
|
|
61680
|
-
"description": "Allows
|
|
61681
|
-
"operationId": "
|
|
63162
|
+
"description": "Allows configuring Static IPs for a project",
|
|
63163
|
+
"operationId": "updateStaticIps",
|
|
61682
63164
|
"security": [
|
|
61683
63165
|
{
|
|
61684
63166
|
"bearerToken": []
|
|
61685
63167
|
}
|
|
61686
63168
|
],
|
|
61687
|
-
"summary": "
|
|
63169
|
+
"summary": "Configures Static IPs for a project",
|
|
61688
63170
|
"tags": [
|
|
61689
|
-
"connect"
|
|
63171
|
+
"connect",
|
|
63172
|
+
"static-ips"
|
|
61690
63173
|
],
|
|
61691
63174
|
"responses": {
|
|
61692
63175
|
"200": {
|
|
@@ -61704,8 +63187,8 @@
|
|
|
61704
63187
|
{
|
|
61705
63188
|
"type": "string",
|
|
61706
63189
|
"enum": [
|
|
61707
|
-
"
|
|
61708
|
-
"
|
|
63190
|
+
"production",
|
|
63191
|
+
"preview"
|
|
61709
63192
|
]
|
|
61710
63193
|
}
|
|
61711
63194
|
]
|
|
@@ -61816,23 +63299,36 @@
|
|
|
61816
63299
|
"application/json": {
|
|
61817
63300
|
"schema": {
|
|
61818
63301
|
"type": "object",
|
|
63302
|
+
"anyOf": [
|
|
63303
|
+
{
|
|
63304
|
+
"required": [
|
|
63305
|
+
"builds"
|
|
63306
|
+
]
|
|
63307
|
+
},
|
|
63308
|
+
{
|
|
63309
|
+
"required": [
|
|
63310
|
+
"regions"
|
|
63311
|
+
]
|
|
63312
|
+
}
|
|
63313
|
+
],
|
|
61819
63314
|
"properties": {
|
|
63315
|
+
"builds": {
|
|
63316
|
+
"type": "boolean",
|
|
63317
|
+
"description": "Whether to use Static IPs for builds."
|
|
63318
|
+
},
|
|
61820
63319
|
"regions": {
|
|
61821
63320
|
"type": "array",
|
|
61822
63321
|
"items": {
|
|
61823
63322
|
"type": "string",
|
|
61824
63323
|
"maxLength": 4,
|
|
61825
|
-
"description": "The region
|
|
63324
|
+
"description": "The region in which to enable Static IPs.",
|
|
61826
63325
|
"example": "iad1"
|
|
61827
63326
|
},
|
|
61828
63327
|
"minItems": 0,
|
|
61829
63328
|
"maxItems": 3,
|
|
61830
63329
|
"uniqueItems": true
|
|
61831
63330
|
}
|
|
61832
|
-
}
|
|
61833
|
-
"required": [
|
|
61834
|
-
"regions"
|
|
61835
|
-
]
|
|
63331
|
+
}
|
|
61836
63332
|
}
|
|
61837
63333
|
}
|
|
61838
63334
|
}
|
|
@@ -77245,6 +78741,7 @@
|
|
|
77245
78741
|
"express",
|
|
77246
78742
|
"h3",
|
|
77247
78743
|
"nestjs",
|
|
78744
|
+
"fastify",
|
|
77248
78745
|
"xmcp"
|
|
77249
78746
|
]
|
|
77250
78747
|
},
|
|
@@ -77544,34 +79041,34 @@
|
|
|
77544
79041
|
"maxLength": {
|
|
77545
79042
|
"type": "object",
|
|
77546
79043
|
"properties": {
|
|
77547
|
-
"__@BRAND@
|
|
79044
|
+
"__@BRAND@8684": {
|
|
77548
79045
|
"type": "object"
|
|
77549
79046
|
}
|
|
77550
79047
|
},
|
|
77551
79048
|
"required": [
|
|
77552
|
-
"__@BRAND@
|
|
79049
|
+
"__@BRAND@8684"
|
|
77553
79050
|
]
|
|
77554
79051
|
},
|
|
77555
79052
|
"minLength": {
|
|
77556
79053
|
"type": "object",
|
|
77557
79054
|
"properties": {
|
|
77558
|
-
"__@BRAND@
|
|
79055
|
+
"__@BRAND@8684": {
|
|
77559
79056
|
"type": "object"
|
|
77560
79057
|
}
|
|
77561
79058
|
},
|
|
77562
79059
|
"required": [
|
|
77563
|
-
"__@BRAND@
|
|
79060
|
+
"__@BRAND@8684"
|
|
77564
79061
|
]
|
|
77565
79062
|
},
|
|
77566
79063
|
"pattern": {
|
|
77567
79064
|
"type": "object",
|
|
77568
79065
|
"properties": {
|
|
77569
|
-
"__@BRAND@
|
|
79066
|
+
"__@BRAND@8684": {
|
|
77570
79067
|
"type": "object"
|
|
77571
79068
|
}
|
|
77572
79069
|
},
|
|
77573
79070
|
"required": [
|
|
77574
|
-
"__@BRAND@
|
|
79071
|
+
"__@BRAND@8684"
|
|
77575
79072
|
]
|
|
77576
79073
|
},
|
|
77577
79074
|
"description": {
|
|
@@ -78254,34 +79751,34 @@
|
|
|
78254
79751
|
"maxLength": {
|
|
78255
79752
|
"type": "object",
|
|
78256
79753
|
"properties": {
|
|
78257
|
-
"__@BRAND@
|
|
79754
|
+
"__@BRAND@8684": {
|
|
78258
79755
|
"type": "object"
|
|
78259
79756
|
}
|
|
78260
79757
|
},
|
|
78261
79758
|
"required": [
|
|
78262
|
-
"__@BRAND@
|
|
79759
|
+
"__@BRAND@8684"
|
|
78263
79760
|
]
|
|
78264
79761
|
},
|
|
78265
79762
|
"minLength": {
|
|
78266
79763
|
"type": "object",
|
|
78267
79764
|
"properties": {
|
|
78268
|
-
"__@BRAND@
|
|
79765
|
+
"__@BRAND@8684": {
|
|
78269
79766
|
"type": "object"
|
|
78270
79767
|
}
|
|
78271
79768
|
},
|
|
78272
79769
|
"required": [
|
|
78273
|
-
"__@BRAND@
|
|
79770
|
+
"__@BRAND@8684"
|
|
78274
79771
|
]
|
|
78275
79772
|
},
|
|
78276
79773
|
"pattern": {
|
|
78277
79774
|
"type": "object",
|
|
78278
79775
|
"properties": {
|
|
78279
|
-
"__@BRAND@
|
|
79776
|
+
"__@BRAND@8684": {
|
|
78280
79777
|
"type": "object"
|
|
78281
79778
|
}
|
|
78282
79779
|
},
|
|
78283
79780
|
"required": [
|
|
78284
|
-
"__@BRAND@
|
|
79781
|
+
"__@BRAND@8684"
|
|
78285
79782
|
]
|
|
78286
79783
|
},
|
|
78287
79784
|
"description": {
|
|
@@ -78430,34 +79927,34 @@
|
|
|
78430
79927
|
"minLength": {
|
|
78431
79928
|
"type": "object",
|
|
78432
79929
|
"properties": {
|
|
78433
|
-
"__@BRAND@
|
|
79930
|
+
"__@BRAND@8684": {
|
|
78434
79931
|
"type": "object"
|
|
78435
79932
|
}
|
|
78436
79933
|
},
|
|
78437
79934
|
"required": [
|
|
78438
|
-
"__@BRAND@
|
|
79935
|
+
"__@BRAND@8684"
|
|
78439
79936
|
]
|
|
78440
79937
|
},
|
|
78441
79938
|
"maxLength": {
|
|
78442
79939
|
"type": "object",
|
|
78443
79940
|
"properties": {
|
|
78444
|
-
"__@BRAND@
|
|
79941
|
+
"__@BRAND@8684": {
|
|
78445
79942
|
"type": "object"
|
|
78446
79943
|
}
|
|
78447
79944
|
},
|
|
78448
79945
|
"required": [
|
|
78449
|
-
"__@BRAND@
|
|
79946
|
+
"__@BRAND@8684"
|
|
78450
79947
|
]
|
|
78451
79948
|
},
|
|
78452
79949
|
"pattern": {
|
|
78453
79950
|
"type": "object",
|
|
78454
79951
|
"properties": {
|
|
78455
|
-
"__@BRAND@
|
|
79952
|
+
"__@BRAND@8684": {
|
|
78456
79953
|
"type": "object"
|
|
78457
79954
|
}
|
|
78458
79955
|
},
|
|
78459
79956
|
"required": [
|
|
78460
|
-
"__@BRAND@
|
|
79957
|
+
"__@BRAND@8684"
|
|
78461
79958
|
]
|
|
78462
79959
|
},
|
|
78463
79960
|
"default": {
|
|
@@ -78774,12 +80271,12 @@
|
|
|
78774
80271
|
{
|
|
78775
80272
|
"type": "object",
|
|
78776
80273
|
"properties": {
|
|
78777
|
-
"__@BRAND@
|
|
80274
|
+
"__@BRAND@8684": {
|
|
78778
80275
|
"type": "object"
|
|
78779
80276
|
}
|
|
78780
80277
|
},
|
|
78781
80278
|
"required": [
|
|
78782
|
-
"__@BRAND@
|
|
80279
|
+
"__@BRAND@8684"
|
|
78783
80280
|
]
|
|
78784
80281
|
},
|
|
78785
80282
|
{
|
|
@@ -78787,12 +80284,12 @@
|
|
|
78787
80284
|
"value": {
|
|
78788
80285
|
"type": "object",
|
|
78789
80286
|
"properties": {
|
|
78790
|
-
"__@BRAND@
|
|
80287
|
+
"__@BRAND@8684": {
|
|
78791
80288
|
"type": "object"
|
|
78792
80289
|
}
|
|
78793
80290
|
},
|
|
78794
80291
|
"required": [
|
|
78795
|
-
"__@BRAND@
|
|
80292
|
+
"__@BRAND@8684"
|
|
78796
80293
|
]
|
|
78797
80294
|
},
|
|
78798
80295
|
"disabled": {
|
|
@@ -78864,34 +80361,34 @@
|
|
|
78864
80361
|
"maxLength": {
|
|
78865
80362
|
"type": "object",
|
|
78866
80363
|
"properties": {
|
|
78867
|
-
"__@BRAND@
|
|
80364
|
+
"__@BRAND@8684": {
|
|
78868
80365
|
"type": "object"
|
|
78869
80366
|
}
|
|
78870
80367
|
},
|
|
78871
80368
|
"required": [
|
|
78872
|
-
"__@BRAND@
|
|
80369
|
+
"__@BRAND@8684"
|
|
78873
80370
|
]
|
|
78874
80371
|
},
|
|
78875
80372
|
"minLength": {
|
|
78876
80373
|
"type": "object",
|
|
78877
80374
|
"properties": {
|
|
78878
|
-
"__@BRAND@
|
|
80375
|
+
"__@BRAND@8684": {
|
|
78879
80376
|
"type": "object"
|
|
78880
80377
|
}
|
|
78881
80378
|
},
|
|
78882
80379
|
"required": [
|
|
78883
|
-
"__@BRAND@
|
|
80380
|
+
"__@BRAND@8684"
|
|
78884
80381
|
]
|
|
78885
80382
|
},
|
|
78886
80383
|
"pattern": {
|
|
78887
80384
|
"type": "object",
|
|
78888
80385
|
"properties": {
|
|
78889
|
-
"__@BRAND@
|
|
80386
|
+
"__@BRAND@8684": {
|
|
78890
80387
|
"type": "object"
|
|
78891
80388
|
}
|
|
78892
80389
|
},
|
|
78893
80390
|
"required": [
|
|
78894
|
-
"__@BRAND@
|
|
80391
|
+
"__@BRAND@8684"
|
|
78895
80392
|
]
|
|
78896
80393
|
},
|
|
78897
80394
|
"description": {
|
|
@@ -79041,34 +80538,34 @@
|
|
|
79041
80538
|
"maxLength": {
|
|
79042
80539
|
"type": "object",
|
|
79043
80540
|
"properties": {
|
|
79044
|
-
"__@BRAND@
|
|
80541
|
+
"__@BRAND@8684": {
|
|
79045
80542
|
"type": "object"
|
|
79046
80543
|
}
|
|
79047
80544
|
},
|
|
79048
80545
|
"required": [
|
|
79049
|
-
"__@BRAND@
|
|
80546
|
+
"__@BRAND@8684"
|
|
79050
80547
|
]
|
|
79051
80548
|
},
|
|
79052
80549
|
"minLength": {
|
|
79053
80550
|
"type": "object",
|
|
79054
80551
|
"properties": {
|
|
79055
|
-
"__@BRAND@
|
|
80552
|
+
"__@BRAND@8684": {
|
|
79056
80553
|
"type": "object"
|
|
79057
80554
|
}
|
|
79058
80555
|
},
|
|
79059
80556
|
"required": [
|
|
79060
|
-
"__@BRAND@
|
|
80557
|
+
"__@BRAND@8684"
|
|
79061
80558
|
]
|
|
79062
80559
|
},
|
|
79063
80560
|
"pattern": {
|
|
79064
80561
|
"type": "object",
|
|
79065
80562
|
"properties": {
|
|
79066
|
-
"__@BRAND@
|
|
80563
|
+
"__@BRAND@8684": {
|
|
79067
80564
|
"type": "object"
|
|
79068
80565
|
}
|
|
79069
80566
|
},
|
|
79070
80567
|
"required": [
|
|
79071
|
-
"__@BRAND@
|
|
80568
|
+
"__@BRAND@8684"
|
|
79072
80569
|
]
|
|
79073
80570
|
},
|
|
79074
80571
|
"description": {
|
|
@@ -79199,12 +80696,12 @@
|
|
|
79199
80696
|
"value": {
|
|
79200
80697
|
"type": "object",
|
|
79201
80698
|
"properties": {
|
|
79202
|
-
"__@BRAND@
|
|
80699
|
+
"__@BRAND@8684": {
|
|
79203
80700
|
"type": "object"
|
|
79204
80701
|
}
|
|
79205
80702
|
},
|
|
79206
80703
|
"required": [
|
|
79207
|
-
"__@BRAND@
|
|
80704
|
+
"__@BRAND@8684"
|
|
79208
80705
|
]
|
|
79209
80706
|
},
|
|
79210
80707
|
"disabled": {
|
|
@@ -79460,12 +80957,12 @@
|
|
|
79460
80957
|
"value": {
|
|
79461
80958
|
"type": "object",
|
|
79462
80959
|
"properties": {
|
|
79463
|
-
"__@BRAND@
|
|
80960
|
+
"__@BRAND@8684": {
|
|
79464
80961
|
"type": "object"
|
|
79465
80962
|
}
|
|
79466
80963
|
},
|
|
79467
80964
|
"required": [
|
|
79468
|
-
"__@BRAND@
|
|
80965
|
+
"__@BRAND@8684"
|
|
79469
80966
|
]
|
|
79470
80967
|
},
|
|
79471
80968
|
"disabled": {
|
|
@@ -79741,6 +81238,9 @@
|
|
|
79741
81238
|
},
|
|
79742
81239
|
"429": {
|
|
79743
81240
|
"description": ""
|
|
81241
|
+
},
|
|
81242
|
+
"500": {
|
|
81243
|
+
"description": ""
|
|
79744
81244
|
}
|
|
79745
81245
|
},
|
|
79746
81246
|
"parameters": [
|
|
@@ -83177,6 +84677,7 @@
|
|
|
83177
84677
|
"express",
|
|
83178
84678
|
"h3",
|
|
83179
84679
|
"nestjs",
|
|
84680
|
+
"fastify",
|
|
83180
84681
|
"xmcp"
|
|
83181
84682
|
]
|
|
83182
84683
|
},
|
|
@@ -86507,6 +88008,7 @@
|
|
|
86507
88008
|
"express",
|
|
86508
88009
|
"h3",
|
|
86509
88010
|
"nestjs",
|
|
88011
|
+
"fastify",
|
|
86510
88012
|
"xmcp"
|
|
86511
88013
|
]
|
|
86512
88014
|
},
|