vercel-api-js 1.13.0 → 1.14.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/dist/{components-j923ydcw.cjs → components-l5748yis.cjs} +364 -52
- package/dist/{components-eqgrkxe2.js → components-nvgbng8u.js} +351 -51
- package/dist/components.cjs +15 -3
- package/dist/components.d.mts +278 -37
- package/dist/components.d.mts.map +1 -1
- package/dist/components.mjs +1 -1
- package/dist/effect.cjs +1 -1
- package/dist/effect.d.mts +31 -5
- package/dist/effect.d.mts.map +1 -1
- package/dist/effect.mjs +1 -1
- package/dist/index.cjs +789 -159
- package/dist/index.d.ts +16560 -37080
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/{schemas-kwntyl9n.js → schemas-bz496bmo.js} +7517 -2016
- package/dist/{schemas-nxmmau12.cjs → schemas-rypj5lzu.cjs} +8068 -2033
- package/dist/schemas.cjs +553 -19
- package/dist/schemas.d.mts +1723 -684
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +1 -1
- package/dist/types.cjs +1814 -460
- package/dist/types.d.mts +14781 -36593
- package/dist/types.d.mts.map +1 -1
- package/dist/types.mjs +1580 -322
- package/package.json +7 -8
|
@@ -1146,13 +1146,14 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
1146
1146
|
}
|
|
1147
1147
|
/**
|
|
1148
1148
|
* @summary Create a connector
|
|
1149
|
-
* @description Create a connector
|
|
1149
|
+
* @description Create a connector and optionally link it to a project. Use `type` with complete provider data, or use `service` with `connectionMethod` so Connect can supply the type, endpoints, templates, and defaults.
|
|
1150
1150
|
* @link /v1/connect/connectors
|
|
1151
|
-
*/ async function createConnector({ config } = {}) {
|
|
1151
|
+
*/ async function createConnector({ queryParams, config } = {}) {
|
|
1152
1152
|
const { client: request = client, ...requestConfig } = config ?? {};
|
|
1153
1153
|
const data = await request({
|
|
1154
1154
|
method: "POST",
|
|
1155
1155
|
url: `/v1/connect/connectors`,
|
|
1156
|
+
queryParams,
|
|
1156
1157
|
...requestConfig,
|
|
1157
1158
|
headers: {
|
|
1158
1159
|
...requestConfig.headers
|
|
@@ -1179,25 +1180,6 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
1179
1180
|
});
|
|
1180
1181
|
return data;
|
|
1181
1182
|
}
|
|
1182
|
-
/**
|
|
1183
|
-
* @summary Import Connect tokens
|
|
1184
|
-
* @description Import access and refresh tokens for a connector identified by the path parameter.
|
|
1185
|
-
* @link /v1/connect/token/{connector}/import
|
|
1186
|
-
*/ async function importConnectorTokens({ pathParams, config } = {}) {
|
|
1187
|
-
const { client: request = client, ...requestConfig } = config ?? {};
|
|
1188
|
-
if (!pathParams.connector) {
|
|
1189
|
-
throw new Error(`Missing required path parameter: connector`);
|
|
1190
|
-
}
|
|
1191
|
-
const data = await request({
|
|
1192
|
-
method: "POST",
|
|
1193
|
-
url: `/v1/connect/token/${pathParams.connector}/import`,
|
|
1194
|
-
...requestConfig,
|
|
1195
|
-
headers: {
|
|
1196
|
-
...requestConfig.headers
|
|
1197
|
-
}
|
|
1198
|
-
});
|
|
1199
|
-
return data;
|
|
1200
|
-
}
|
|
1201
1183
|
/**
|
|
1202
1184
|
* @summary Create a Connect authorization request
|
|
1203
1185
|
* @description Create an authorization request for a connector and return the URL and verifier details needed to complete the flow.
|
|
@@ -1217,25 +1199,6 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
1217
1199
|
});
|
|
1218
1200
|
return data;
|
|
1219
1201
|
}
|
|
1220
|
-
/**
|
|
1221
|
-
* @summary Create a Connect installation request
|
|
1222
|
-
* @description Create an installation request for a connector and return the URL and verifier details needed to complete the flow.
|
|
1223
|
-
* @link /v1/connect/install/{connector}
|
|
1224
|
-
*/ async function createConnectorInstallationRequest({ pathParams, config } = {}) {
|
|
1225
|
-
const { client: request = client, ...requestConfig } = config ?? {};
|
|
1226
|
-
if (!pathParams.connector) {
|
|
1227
|
-
throw new Error(`Missing required path parameter: connector`);
|
|
1228
|
-
}
|
|
1229
|
-
const data = await request({
|
|
1230
|
-
method: "POST",
|
|
1231
|
-
url: `/v1/connect/install/${pathParams.connector}`,
|
|
1232
|
-
...requestConfig,
|
|
1233
|
-
headers: {
|
|
1234
|
-
...requestConfig.headers
|
|
1235
|
-
}
|
|
1236
|
-
});
|
|
1237
|
-
return data;
|
|
1238
|
-
}
|
|
1239
1202
|
/**
|
|
1240
1203
|
* @summary Get deployment events
|
|
1241
1204
|
* @description Get the build logs of a deployment by deployment ID and build ID. It can work as an infinite stream of logs or as a JSON endpoint depending on the input parameters.
|
|
@@ -3330,6 +3293,25 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
3330
3293
|
});
|
|
3331
3294
|
return data;
|
|
3332
3295
|
}
|
|
3296
|
+
/**
|
|
3297
|
+
* @summary Revoke Installation Credential
|
|
3298
|
+
* @description Retires a superseded installation credential, so a partner can complete a rotation it started with `POST /credentials/rotate` — the leaked credential stops working without the customer having to reinstall. Authenticated by a live installation credential plus the integration's client secret. The credential to retire is named in the body rather than being the one that authenticates, so the ordinary flow is: rotate, store the replacement, then authenticate with the replacement and revoke the old one. Refuses to retire an installation's last live credential. Rotation exists so remediation is not customer-visible; revoking the only credential would undo that and leave the install needing a reinstall.
|
|
3299
|
+
* @link /v1/installations/{integrationConfigurationId}/credentials/revoke
|
|
3300
|
+
*/ async function revokeInstallationCredential({ pathParams, config } = {}) {
|
|
3301
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
3302
|
+
if (!pathParams.integrationConfigurationId) {
|
|
3303
|
+
throw new Error(`Missing required path parameter: integrationConfigurationId`);
|
|
3304
|
+
}
|
|
3305
|
+
const data = await request({
|
|
3306
|
+
method: "POST",
|
|
3307
|
+
url: `/v1/installations/${pathParams.integrationConfigurationId}/credentials/revoke`,
|
|
3308
|
+
...requestConfig,
|
|
3309
|
+
headers: {
|
|
3310
|
+
...requestConfig.headers
|
|
3311
|
+
}
|
|
3312
|
+
});
|
|
3313
|
+
return data;
|
|
3314
|
+
}
|
|
3333
3315
|
/**
|
|
3334
3316
|
* @summary Create Event
|
|
3335
3317
|
* @description Partner notifies Vercel of any changes made to an Installation or a Resource. Vercel is expected to use `list-resources` and other read APIs to get the new state.<br/> <br/> `resource.updated` event should be dispatched when any state of a resource linked to Vercel is modified by the partner.<br/> `installation.updated` event should be dispatched when an installation's billing plan is changed via the provider instead of Vercel.<br/> <br/> Resource update use cases: <br/> <br/> - The user renames a database in the partner’s application. The partner should dispatch a `resource.updated` event to notify Vercel to update the resource in Vercel’s datastores.<br/> - A resource has been suspended due to a lack of use. The partner should dispatch a `resource.updated` event to notify Vercel to update the resource's status in Vercel's datastores.<br/>
|
|
@@ -3785,6 +3767,276 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
3785
3767
|
});
|
|
3786
3768
|
return data;
|
|
3787
3769
|
}
|
|
3770
|
+
/**
|
|
3771
|
+
* @summary List issuers
|
|
3772
|
+
* @description Retrieve the list of KMS issuers that belong to the authenticated team. The results are paginated.
|
|
3773
|
+
* @link /v1/kms/issuers
|
|
3774
|
+
*/ async function listKmsIssuers({ queryParams, config } = {}) {
|
|
3775
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
3776
|
+
const data = await request({
|
|
3777
|
+
method: "GET",
|
|
3778
|
+
url: `/v1/kms/issuers`,
|
|
3779
|
+
queryParams,
|
|
3780
|
+
...requestConfig,
|
|
3781
|
+
headers: {
|
|
3782
|
+
...requestConfig.headers
|
|
3783
|
+
}
|
|
3784
|
+
});
|
|
3785
|
+
return data;
|
|
3786
|
+
}
|
|
3787
|
+
/**
|
|
3788
|
+
* @summary Create an issuer
|
|
3789
|
+
* @description Create a new KMS issuer for the authenticated team. An issuer owns the asymmetric signing keys that are used to sign tokens and messages.
|
|
3790
|
+
* @link /v1/kms/issuers
|
|
3791
|
+
*/ async function createKmsIssuer({ queryParams, config } = {}) {
|
|
3792
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
3793
|
+
const data = await request({
|
|
3794
|
+
method: "POST",
|
|
3795
|
+
url: `/v1/kms/issuers`,
|
|
3796
|
+
queryParams,
|
|
3797
|
+
...requestConfig,
|
|
3798
|
+
headers: {
|
|
3799
|
+
...requestConfig.headers
|
|
3800
|
+
}
|
|
3801
|
+
});
|
|
3802
|
+
return data;
|
|
3803
|
+
}
|
|
3804
|
+
/**
|
|
3805
|
+
* @summary Sign a message
|
|
3806
|
+
* @description Sign a raw message with a KMS issuer's active signing key. Authenticate the request with a Vercel OIDC token in the `Authorization: Bearer` header; the issuer's policies decide which workloads are allowed to sign.
|
|
3807
|
+
* @link /v1/kms/issuers/{issuerId}/sign/message
|
|
3808
|
+
*/ async function signKmsMessage({ pathParams, config } = {}) {
|
|
3809
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
3810
|
+
if (!pathParams.issuerId) {
|
|
3811
|
+
throw new Error(`Missing required path parameter: issuerId`);
|
|
3812
|
+
}
|
|
3813
|
+
const data = await request({
|
|
3814
|
+
method: "POST",
|
|
3815
|
+
url: `/v1/kms/issuers/${pathParams.issuerId}/sign/message`,
|
|
3816
|
+
...requestConfig,
|
|
3817
|
+
headers: {
|
|
3818
|
+
...requestConfig.headers
|
|
3819
|
+
}
|
|
3820
|
+
});
|
|
3821
|
+
return data;
|
|
3822
|
+
}
|
|
3823
|
+
/**
|
|
3824
|
+
* @summary Sign a token
|
|
3825
|
+
* @description Sign a JWT with a KMS issuer's active signing key. Authenticate the request with a Vercel OIDC token in the `Authorization: Bearer` header; the issuer's policies decide which workloads are allowed to sign.
|
|
3826
|
+
* @link /v1/kms/issuers/{issuerId}/sign/token
|
|
3827
|
+
*/ async function signKmsToken({ pathParams, config } = {}) {
|
|
3828
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
3829
|
+
if (!pathParams.issuerId) {
|
|
3830
|
+
throw new Error(`Missing required path parameter: issuerId`);
|
|
3831
|
+
}
|
|
3832
|
+
const data = await request({
|
|
3833
|
+
method: "POST",
|
|
3834
|
+
url: `/v1/kms/issuers/${pathParams.issuerId}/sign/token`,
|
|
3835
|
+
...requestConfig,
|
|
3836
|
+
headers: {
|
|
3837
|
+
...requestConfig.headers
|
|
3838
|
+
}
|
|
3839
|
+
});
|
|
3840
|
+
return data;
|
|
3841
|
+
}
|
|
3842
|
+
/**
|
|
3843
|
+
* @summary Create a signing key
|
|
3844
|
+
* @description Create a new signing key for a KMS issuer. Depending on the activation mode, the key is activated automatically once its public key has propagated, or manually via the activate endpoint.
|
|
3845
|
+
* @link /v1/kms/issuers/{issuerId}/keys
|
|
3846
|
+
*/ async function createKmsSigningKey({ pathParams, queryParams, config } = {}) {
|
|
3847
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
3848
|
+
if (!pathParams.issuerId) {
|
|
3849
|
+
throw new Error(`Missing required path parameter: issuerId`);
|
|
3850
|
+
}
|
|
3851
|
+
const data = await request({
|
|
3852
|
+
method: "POST",
|
|
3853
|
+
url: `/v1/kms/issuers/${pathParams.issuerId}/keys`,
|
|
3854
|
+
queryParams,
|
|
3855
|
+
...requestConfig,
|
|
3856
|
+
headers: {
|
|
3857
|
+
...requestConfig.headers
|
|
3858
|
+
}
|
|
3859
|
+
});
|
|
3860
|
+
return data;
|
|
3861
|
+
}
|
|
3862
|
+
/**
|
|
3863
|
+
* @summary Activate a signing key
|
|
3864
|
+
* @description Activate a pending signing key so the issuer starts signing with it.
|
|
3865
|
+
* @link /v1/kms/issuers/{issuerId}/keys/{keyId}/activate
|
|
3866
|
+
*/ async function activateKmsSigningKey({ pathParams, queryParams, config } = {}) {
|
|
3867
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
3868
|
+
if (!pathParams.issuerId) {
|
|
3869
|
+
throw new Error(`Missing required path parameter: issuerId`);
|
|
3870
|
+
}
|
|
3871
|
+
if (!pathParams.keyId) {
|
|
3872
|
+
throw new Error(`Missing required path parameter: keyId`);
|
|
3873
|
+
}
|
|
3874
|
+
const data = await request({
|
|
3875
|
+
method: "POST",
|
|
3876
|
+
url: `/v1/kms/issuers/${pathParams.issuerId}/keys/${pathParams.keyId}/activate`,
|
|
3877
|
+
queryParams,
|
|
3878
|
+
...requestConfig,
|
|
3879
|
+
headers: {
|
|
3880
|
+
...requestConfig.headers
|
|
3881
|
+
}
|
|
3882
|
+
});
|
|
3883
|
+
return data;
|
|
3884
|
+
}
|
|
3885
|
+
/**
|
|
3886
|
+
* @summary Revoke a signing key
|
|
3887
|
+
* @description Immediately revoke a signing key that is already scheduled for revocation.
|
|
3888
|
+
* @link /v1/kms/issuers/{issuerId}/keys/{keyId}/revoke
|
|
3889
|
+
*/ async function revokeKmsSigningKey({ pathParams, queryParams, config } = {}) {
|
|
3890
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
3891
|
+
if (!pathParams.issuerId) {
|
|
3892
|
+
throw new Error(`Missing required path parameter: issuerId`);
|
|
3893
|
+
}
|
|
3894
|
+
if (!pathParams.keyId) {
|
|
3895
|
+
throw new Error(`Missing required path parameter: keyId`);
|
|
3896
|
+
}
|
|
3897
|
+
const data = await request({
|
|
3898
|
+
method: "POST",
|
|
3899
|
+
url: `/v1/kms/issuers/${pathParams.issuerId}/keys/${pathParams.keyId}/revoke`,
|
|
3900
|
+
queryParams,
|
|
3901
|
+
...requestConfig,
|
|
3902
|
+
headers: {
|
|
3903
|
+
...requestConfig.headers
|
|
3904
|
+
}
|
|
3905
|
+
});
|
|
3906
|
+
return data;
|
|
3907
|
+
}
|
|
3908
|
+
/**
|
|
3909
|
+
* @summary Get an issuer
|
|
3910
|
+
* @description Retrieve a single KMS issuer by its ID. Accepts either a team bearer token (existing path) or an OIDC token authorized by one of the issuer's policies (e.g. a connex-grant token). The OIDC path returns the issuer without policies, since a policy token only proves signing access, not management access.
|
|
3911
|
+
* @link /v1/kms/issuers/{issuerId}
|
|
3912
|
+
*/ async function getKmsIssuer({ pathParams, queryParams, config } = {}) {
|
|
3913
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
3914
|
+
if (!pathParams.issuerId) {
|
|
3915
|
+
throw new Error(`Missing required path parameter: issuerId`);
|
|
3916
|
+
}
|
|
3917
|
+
const data = await request({
|
|
3918
|
+
method: "GET",
|
|
3919
|
+
url: `/v1/kms/issuers/${pathParams.issuerId}`,
|
|
3920
|
+
queryParams,
|
|
3921
|
+
...requestConfig,
|
|
3922
|
+
headers: {
|
|
3923
|
+
...requestConfig.headers
|
|
3924
|
+
}
|
|
3925
|
+
});
|
|
3926
|
+
return data;
|
|
3927
|
+
}
|
|
3928
|
+
/**
|
|
3929
|
+
* @summary Update an issuer
|
|
3930
|
+
* @description Update a KMS issuer's name or claims schema.
|
|
3931
|
+
* @link /v1/kms/issuers/{issuerId}
|
|
3932
|
+
*/ async function updateKmsIssuer({ pathParams, queryParams, config } = {}) {
|
|
3933
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
3934
|
+
if (!pathParams.issuerId) {
|
|
3935
|
+
throw new Error(`Missing required path parameter: issuerId`);
|
|
3936
|
+
}
|
|
3937
|
+
const data = await request({
|
|
3938
|
+
method: "PATCH",
|
|
3939
|
+
url: `/v1/kms/issuers/${pathParams.issuerId}`,
|
|
3940
|
+
queryParams,
|
|
3941
|
+
...requestConfig,
|
|
3942
|
+
headers: {
|
|
3943
|
+
...requestConfig.headers
|
|
3944
|
+
}
|
|
3945
|
+
});
|
|
3946
|
+
return data;
|
|
3947
|
+
}
|
|
3948
|
+
/**
|
|
3949
|
+
* @summary Delete an issuer
|
|
3950
|
+
* @description Delete a KMS issuer and its signing keys.
|
|
3951
|
+
* @link /v1/kms/issuers/{issuerId}
|
|
3952
|
+
*/ async function deleteKmsIssuer({ pathParams, queryParams, config } = {}) {
|
|
3953
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
3954
|
+
if (!pathParams.issuerId) {
|
|
3955
|
+
throw new Error(`Missing required path parameter: issuerId`);
|
|
3956
|
+
}
|
|
3957
|
+
const data = await request({
|
|
3958
|
+
method: "DELETE",
|
|
3959
|
+
url: `/v1/kms/issuers/${pathParams.issuerId}`,
|
|
3960
|
+
queryParams,
|
|
3961
|
+
...requestConfig,
|
|
3962
|
+
headers: {
|
|
3963
|
+
...requestConfig.headers
|
|
3964
|
+
}
|
|
3965
|
+
});
|
|
3966
|
+
return data;
|
|
3967
|
+
}
|
|
3968
|
+
/**
|
|
3969
|
+
* @summary Create an issuer policy
|
|
3970
|
+
* @description Attach a policy to a KMS issuer that grants a project's deployments permission to sign with it.
|
|
3971
|
+
* @link /v1/kms/issuers/{issuerId}/policies
|
|
3972
|
+
*/ async function createKmsIssuerPolicy({ pathParams, queryParams, config } = {}) {
|
|
3973
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
3974
|
+
if (!pathParams.issuerId) {
|
|
3975
|
+
throw new Error(`Missing required path parameter: issuerId`);
|
|
3976
|
+
}
|
|
3977
|
+
const data = await request({
|
|
3978
|
+
method: "POST",
|
|
3979
|
+
url: `/v1/kms/issuers/${pathParams.issuerId}/policies`,
|
|
3980
|
+
queryParams,
|
|
3981
|
+
...requestConfig,
|
|
3982
|
+
headers: {
|
|
3983
|
+
...requestConfig.headers
|
|
3984
|
+
}
|
|
3985
|
+
});
|
|
3986
|
+
return data;
|
|
3987
|
+
}
|
|
3988
|
+
/**
|
|
3989
|
+
* @summary Update an issuer policy
|
|
3990
|
+
* @description Update an existing KMS issuer policy's environments or token claims.
|
|
3991
|
+
* @link /v1/kms/issuers/{issuerId}/policies/{kind}/{policyKey}
|
|
3992
|
+
*/ async function updateKmsIssuerPolicy({ pathParams, queryParams, config } = {}) {
|
|
3993
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
3994
|
+
if (!pathParams.issuerId) {
|
|
3995
|
+
throw new Error(`Missing required path parameter: issuerId`);
|
|
3996
|
+
}
|
|
3997
|
+
if (!pathParams.kind) {
|
|
3998
|
+
throw new Error(`Missing required path parameter: kind`);
|
|
3999
|
+
}
|
|
4000
|
+
if (!pathParams.policyKey) {
|
|
4001
|
+
throw new Error(`Missing required path parameter: policyKey`);
|
|
4002
|
+
}
|
|
4003
|
+
const data = await request({
|
|
4004
|
+
method: "PATCH",
|
|
4005
|
+
url: `/v1/kms/issuers/${pathParams.issuerId}/policies/${pathParams.kind}/${pathParams.policyKey}`,
|
|
4006
|
+
queryParams,
|
|
4007
|
+
...requestConfig,
|
|
4008
|
+
headers: {
|
|
4009
|
+
...requestConfig.headers
|
|
4010
|
+
}
|
|
4011
|
+
});
|
|
4012
|
+
return data;
|
|
4013
|
+
}
|
|
4014
|
+
/**
|
|
4015
|
+
* @summary Delete an issuer policy
|
|
4016
|
+
* @description Remove a policy from a KMS issuer.
|
|
4017
|
+
* @link /v1/kms/issuers/{issuerId}/policies/{kind}/{policyKey}
|
|
4018
|
+
*/ async function deleteKmsIssuerPolicy({ pathParams, queryParams, config } = {}) {
|
|
4019
|
+
const { client: request = client, ...requestConfig } = config ?? {};
|
|
4020
|
+
if (!pathParams.issuerId) {
|
|
4021
|
+
throw new Error(`Missing required path parameter: issuerId`);
|
|
4022
|
+
}
|
|
4023
|
+
if (!pathParams.kind) {
|
|
4024
|
+
throw new Error(`Missing required path parameter: kind`);
|
|
4025
|
+
}
|
|
4026
|
+
if (!pathParams.policyKey) {
|
|
4027
|
+
throw new Error(`Missing required path parameter: policyKey`);
|
|
4028
|
+
}
|
|
4029
|
+
const data = await request({
|
|
4030
|
+
method: "DELETE",
|
|
4031
|
+
url: `/v1/kms/issuers/${pathParams.issuerId}/policies/${pathParams.kind}/${pathParams.policyKey}`,
|
|
4032
|
+
queryParams,
|
|
4033
|
+
...requestConfig,
|
|
4034
|
+
headers: {
|
|
4035
|
+
...requestConfig.headers
|
|
4036
|
+
}
|
|
4037
|
+
});
|
|
4038
|
+
return data;
|
|
4039
|
+
}
|
|
3788
4040
|
/**
|
|
3789
4041
|
* @summary Get logs for a deployment
|
|
3790
4042
|
* @description Returns a stream of logs for a given deployment.
|
|
@@ -6059,7 +6311,7 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
6059
6311
|
}
|
|
6060
6312
|
/**
|
|
6061
6313
|
* @summary Read Firewall Actions by Project
|
|
6062
|
-
* @description Retrieve firewall actions for a project
|
|
6314
|
+
* @description Retrieve firewall actions for a project Rule names are resolved against the project's *current* active firewall configuration and the team's active rulesets, so a rule that has since been renamed reports its new name and one that has been deleted reports `null`. System rules such as `sys_dos_mitigation` and `ip_blocking` have no configured name and always report `null`.
|
|
6063
6315
|
* @link /v1/security/firewall/events
|
|
6064
6316
|
*/ async function getSecurityFirewallEvents({ queryParams, config } = {}) {
|
|
6065
6317
|
const { client: request = client, ...requestConfig } = config ?? {};
|
|
@@ -6457,7 +6709,7 @@ const resolveUrl = (url, queryParams = {})=>{
|
|
|
6457
6709
|
}
|
|
6458
6710
|
/**
|
|
6459
6711
|
* @summary Update a microfrontends group
|
|
6460
|
-
* @description Updates
|
|
6712
|
+
* @description Updates a microfrontends group's settings.
|
|
6461
6713
|
* @link /v1/teams/{teamId}/microfrontends/{groupId}
|
|
6462
6714
|
*/ async function updateMicrofrontendsGroup({ pathParams, queryParams, config } = {}) {
|
|
6463
6715
|
const { client: request = client, ...requestConfig } = config ?? {};
|
|
@@ -7710,9 +7962,7 @@ const operationsByPath = {
|
|
|
7710
7962
|
"GET /v1/connect/networks/{networkId}": readNetwork,
|
|
7711
7963
|
"POST /v1/connect/connectors": createConnector,
|
|
7712
7964
|
"POST /v1/connect/token/{connector}": getConnectorToken,
|
|
7713
|
-
"POST /v1/connect/token/{connector}/import": importConnectorTokens,
|
|
7714
7965
|
"POST /v1/connect/authorize/{connector}": createConnectorAuthorizationRequest,
|
|
7715
|
-
"POST /v1/connect/install/{connector}": createConnectorInstallationRequest,
|
|
7716
7966
|
"GET /v3/deployments/{idOrUrl}/events": getDeploymentEvents,
|
|
7717
7967
|
"PATCH /v1/deployments/{deploymentId}/integrations/{integrationConfigurationId}/resources/{resourceId}/actions/{action}": updateIntegrationDeploymentAction,
|
|
7718
7968
|
"GET /v13/deployments/{idOrUrl}": getDeployment,
|
|
@@ -7819,6 +8069,7 @@ const operationsByPath = {
|
|
|
7819
8069
|
"GET /v1/installations/{integrationConfigurationId}/account": getAccountInfo,
|
|
7820
8070
|
"GET /v1/installations/{integrationConfigurationId}/member/{memberId}": getMember,
|
|
7821
8071
|
"POST /v1/installations/{integrationConfigurationId}/credentials/rotate": rotateInstallationCredential,
|
|
8072
|
+
"POST /v1/installations/{integrationConfigurationId}/credentials/revoke": revokeInstallationCredential,
|
|
7822
8073
|
"POST /v1/installations/{integrationConfigurationId}/events": createEvent,
|
|
7823
8074
|
"GET /v1/installations/{integrationConfigurationId}/resources": getIntegrationResources,
|
|
7824
8075
|
"GET /v1/installations/{integrationConfigurationId}/resources/{resourceId}": getIntegrationResource,
|
|
@@ -7842,6 +8093,19 @@ const operationsByPath = {
|
|
|
7842
8093
|
"POST /v2/integrations/log-drains": createLogDrain,
|
|
7843
8094
|
"DELETE /v1/integrations/log-drains/{id}": deleteIntegrationLogDrain,
|
|
7844
8095
|
"POST /api-keys": createApiKeys,
|
|
8096
|
+
"GET /v1/kms/issuers": listKmsIssuers,
|
|
8097
|
+
"POST /v1/kms/issuers": createKmsIssuer,
|
|
8098
|
+
"POST /v1/kms/issuers/{issuerId}/sign/message": signKmsMessage,
|
|
8099
|
+
"POST /v1/kms/issuers/{issuerId}/sign/token": signKmsToken,
|
|
8100
|
+
"POST /v1/kms/issuers/{issuerId}/keys": createKmsSigningKey,
|
|
8101
|
+
"POST /v1/kms/issuers/{issuerId}/keys/{keyId}/activate": activateKmsSigningKey,
|
|
8102
|
+
"POST /v1/kms/issuers/{issuerId}/keys/{keyId}/revoke": revokeKmsSigningKey,
|
|
8103
|
+
"GET /v1/kms/issuers/{issuerId}": getKmsIssuer,
|
|
8104
|
+
"PATCH /v1/kms/issuers/{issuerId}": updateKmsIssuer,
|
|
8105
|
+
"DELETE /v1/kms/issuers/{issuerId}": deleteKmsIssuer,
|
|
8106
|
+
"POST /v1/kms/issuers/{issuerId}/policies": createKmsIssuerPolicy,
|
|
8107
|
+
"PATCH /v1/kms/issuers/{issuerId}/policies/{kind}/{policyKey}": updateKmsIssuerPolicy,
|
|
8108
|
+
"DELETE /v1/kms/issuers/{issuerId}/policies/{kind}/{policyKey}": deleteKmsIssuerPolicy,
|
|
7845
8109
|
"GET /v1/projects/{projectId}/deployments/{deploymentId}/runtime-logs": getRuntimeLogs,
|
|
7846
8110
|
"POST /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items": createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems,
|
|
7847
8111
|
"PATCH /v1/installations/{integrationConfigurationId}/resources/{resourceId}/experimentation/items/{itemId}": updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId,
|
|
@@ -8115,9 +8379,7 @@ const operationsByTag = {
|
|
|
8115
8379
|
connect: {
|
|
8116
8380
|
createConnector,
|
|
8117
8381
|
getConnectorToken,
|
|
8118
|
-
|
|
8119
|
-
createConnectorAuthorizationRequest,
|
|
8120
|
-
createConnectorInstallationRequest
|
|
8382
|
+
createConnectorAuthorizationRequest
|
|
8121
8383
|
},
|
|
8122
8384
|
deployments: {
|
|
8123
8385
|
getDeploymentEvents,
|
|
@@ -8269,6 +8531,7 @@ const operationsByTag = {
|
|
|
8269
8531
|
getAccountInfo,
|
|
8270
8532
|
getMember,
|
|
8271
8533
|
rotateInstallationCredential,
|
|
8534
|
+
revokeInstallationCredential,
|
|
8272
8535
|
createEvent,
|
|
8273
8536
|
getIntegrationResources,
|
|
8274
8537
|
getIntegrationResource,
|
|
@@ -8297,6 +8560,21 @@ const operationsByTag = {
|
|
|
8297
8560
|
getAuthToken,
|
|
8298
8561
|
deleteAuthToken
|
|
8299
8562
|
},
|
|
8563
|
+
kms: {
|
|
8564
|
+
listKmsIssuers,
|
|
8565
|
+
createKmsIssuer,
|
|
8566
|
+
signKmsMessage,
|
|
8567
|
+
signKmsToken,
|
|
8568
|
+
createKmsSigningKey,
|
|
8569
|
+
activateKmsSigningKey,
|
|
8570
|
+
revokeKmsSigningKey,
|
|
8571
|
+
getKmsIssuer,
|
|
8572
|
+
updateKmsIssuer,
|
|
8573
|
+
deleteKmsIssuer,
|
|
8574
|
+
createKmsIssuerPolicy,
|
|
8575
|
+
updateKmsIssuerPolicy,
|
|
8576
|
+
deleteKmsIssuerPolicy
|
|
8577
|
+
},
|
|
8300
8578
|
logs: {
|
|
8301
8579
|
getRuntimeLogs
|
|
8302
8580
|
},
|
|
@@ -8646,9 +8924,7 @@ const tagDictionary = {
|
|
|
8646
8924
|
POST: [
|
|
8647
8925
|
"createConnector",
|
|
8648
8926
|
"getConnectorToken",
|
|
8649
|
-
"
|
|
8650
|
-
"createConnectorAuthorizationRequest",
|
|
8651
|
-
"createConnectorInstallationRequest"
|
|
8927
|
+
"createConnectorAuthorizationRequest"
|
|
8652
8928
|
]
|
|
8653
8929
|
},
|
|
8654
8930
|
deployments: {
|
|
@@ -8896,6 +9172,7 @@ const tagDictionary = {
|
|
|
8896
9172
|
],
|
|
8897
9173
|
POST: [
|
|
8898
9174
|
"rotateInstallationCredential",
|
|
9175
|
+
"revokeInstallationCredential",
|
|
8899
9176
|
"createEvent",
|
|
8900
9177
|
"submitBillingData",
|
|
8901
9178
|
"submitInvoice",
|
|
@@ -8929,6 +9206,29 @@ const tagDictionary = {
|
|
|
8929
9206
|
"deleteAuthToken"
|
|
8930
9207
|
]
|
|
8931
9208
|
},
|
|
9209
|
+
kms: {
|
|
9210
|
+
GET: [
|
|
9211
|
+
"listKmsIssuers",
|
|
9212
|
+
"getKmsIssuer"
|
|
9213
|
+
],
|
|
9214
|
+
POST: [
|
|
9215
|
+
"createKmsIssuer",
|
|
9216
|
+
"signKmsMessage",
|
|
9217
|
+
"signKmsToken",
|
|
9218
|
+
"createKmsSigningKey",
|
|
9219
|
+
"activateKmsSigningKey",
|
|
9220
|
+
"revokeKmsSigningKey",
|
|
9221
|
+
"createKmsIssuerPolicy"
|
|
9222
|
+
],
|
|
9223
|
+
PATCH: [
|
|
9224
|
+
"updateKmsIssuer",
|
|
9225
|
+
"updateKmsIssuerPolicy"
|
|
9226
|
+
],
|
|
9227
|
+
DELETE: [
|
|
9228
|
+
"deleteKmsIssuer",
|
|
9229
|
+
"deleteKmsIssuerPolicy"
|
|
9230
|
+
]
|
|
9231
|
+
},
|
|
8932
9232
|
logs: {
|
|
8933
9233
|
GET: [
|
|
8934
9234
|
"getRuntimeLogs"
|
|
@@ -9243,4 +9543,4 @@ const tagDictionary = {
|
|
|
9243
9543
|
}
|
|
9244
9544
|
};
|
|
9245
9545
|
|
|
9246
|
-
export { createOrTransferDomain as $, createAccessGroup as A, createAccessGroupProject as B, createAiGatewayRule as C, createAiGatewayVirtualModelConfig as D, createApiKeys as E, createAuthToken as F, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads as G, createCheck as H, createConfigurableLogDrain as I, createConnector as J, createConnectorAuthorizationRequest as K, createConnectorInstallationRequest as L, createCustomEnvironment as M, createDeployment as N, createDeploymentCheckRun as O, createDrain as P, createEdgeConfig as Q, createEdgeConfigToken as R, createEvent as S, createFlag as T, createFlagSegment as U, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems as V, createIntegrationStoreDirect as W, createLogDrain as X, createMicrofrontendsGroupWithApplications as Y, createNetwork as Z, createObservabilityQuery as _, operationsByPath as a, deleteStorageStoresBlobById as a$, createProject as a0, createProjectCheck as a1, createProjectEnv as a2, createProjectTransferRequest as a3, createRecord as a4, createRepository as a5, createSandboxesByNameForkV2 as a6, createSandboxesByNameForkV3 as a7, createSandboxesSessionsBySessionIdSnapshotV2 as a8, createSandboxesSessionsBySessionIdSnapshotV3 as a9, deleteConfiguration as aA, deleteDeployment as aB, deleteDomain as aC, deleteDrain as aD, deleteDrive as aE, deleteEdgeConfig as aF, deleteEdgeConfigSchema as aG, deleteEdgeConfigTokens as aH, deleteFlag as aI, deleteFlagSegment as aJ, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId as aK, deleteIntegrationLogDrain as aL, deleteIntegrationResource as aM, deleteMicrofrontendsGroup as aN, deleteNetwork as aO, deleteProject as aP, deleteProjectCheck as aQ, deleteRedirects as aR, deleteRepository as aS, deleteRepositoryImage as aT, deleteRollingReleaseConfig as aU, deleteRoutes as aV, deleteSandbox as aW, deleteSdkKey as aX, deleteSecurityFirewallConfigByConfigVersion as aY, deleteSessionSnapshot as aZ, deleteSharedEnvVariable as a_, createSandboxesV2 as aa, createSandboxesV3 as ab, createSandboxesV4 as ac, createSdkKey as ad, createSecurityFirewallConfigByConfigVersionActivate as ae, createSessionDirectory as af, createSharedEnvVariable as ag, createSpeedInsightsToggle as ah, createStorageStoresBlob as ai, createTeam as aj, createTraceSession as ak, createWebInsightsToggle as al, createWebhook as am, dangerouslyDeleteBySrcImages as an, dangerouslyDeleteByTags as ao, deleteAccessGroup as ap, deleteAccessGroupProject as aq, deleteAiGatewayRule as ar, deleteAiGatewayVirtualModelConfig as as, deleteAlias as at, deleteAllArtifacts as au, deleteAuthToken as av, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest as aw, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as ax, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference as ay, deleteConfigurableLogDrain as az, acceptProjectTransferRequest as b, getEdgeConfigToken as b$, deleteTeam as b0, deleteTeamInviteCode as b1, deleteWebhook as b2, downloadArtifact as b3, editProjectEnv as b4, editRedirect as b5, editRoute as b6, exchangeSsoToken as b7, extendSessionTimeout as b8, filterProjectEnvs as b9, getContactInfoSchema as bA, getCustomEnvironment as bB, getDeployment as bC, getDeploymentCheckRun as bD, getDeploymentEvents as bE, getDeploymentFeatureFlags as bF, getDeploymentFileContents as bG, getDeployments as bH, getDomain as bI, getDomainAuthCode as bJ, getDomainAvailability as bK, getDomainConfig as bL, getDomainContactVerification as bM, getDomainPrice as bN, getDomainProjectDomains as bO, getDomainTransferIn as bP, getDomainVerificationRecord as bQ, getDomains as bR, getDomainsRecordsByRecordId as bS, getDrain as bT, getDrains as bU, getEdgeConfig as bV, getEdgeConfigBackup as bW, getEdgeConfigBackups as bX, getEdgeConfigItem as bY, getEdgeConfigItems as bZ, getEdgeConfigSchema as b_, finalizeInstallation as ba, generateFirewallRule as bb, generateRoute as bc, getAccountInfo as bd, getActiveAttackStatus as be, getAiGatewayVirtualModelConfig as bf, getAlias as bg, getAllChecks as bh, getAllLogDrains as bi, getAuthToken as bj, getAuthUser as bk, getBillingPlans as bl, getBulkAvailability as bm, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest as bn, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as bo, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference as bp, getByTeamSlugByProjectSlugByRepositoryNameTagsList as bq, getBypassIp as br, getCertById as bs, getCerts as bt, getCheck as bu, getConfigurableLogDrain as bv, getConfiguration as bw, getConfigurationProducts as bx, getConfigurations as by, getConnectorToken as bz, client as c, gitNamespaces as c$, getEdgeConfigTokens as c0, getEdgeConfigs as c1, getFirewallConfig as c2, getFlag as c3, getFlagSegment as c4, getFlagSettings as c5, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig as c6, getIntegrationLogDrains as c7, getIntegrationResource as c8, getIntegrationResources as c9, getRepositoryTag as cA, getRollingRelease as cB, getRollingReleaseBillingStatus as cC, getRollingReleaseConfig as cD, getRoot as cE, getRouteVersions as cF, getRoutes as cG, getRuntimeLogs as cH, getSdkKeys as cI, getSecurityFirewallConfig as cJ, getSecurityFirewallEvents as cK, getSession as cL, getSessionCommand as cM, getSessionCommandLogs as cN, getSessionSnapshot as cO, getSharedEnvVar as cP, getStorageStoresById as cQ, getSupportedTlds as cR, getTeam as cS, getTeamAccessRequest as cT, getTeamMembers as cU, getTeams as cV, getTld as cW, getTldPrice as cX, getVersions as cY, getWebhook as cZ, getWebhooks as c_, getInvoice as ca, getMember as cb, getMicrofrontendsConfig as cc, getMicrofrontendsConfigForProject as cd, getMicrofrontendsGroups as ce, getMicrofrontendsInGroup as cf, getNamedSandbox as cg, getObservabilityConfigurationProjects as ch, getObservabilitySchema as ci, getObservabilitySchemaByMetricId as cj, getOrCreateDrive as ck, getOrder as cl, getProject as cm, getProjectCheck as cn, getProjectDomain as co, getProjectDomains as cp, getProjectEnv as cq, getProjectMembers as cr, getProjectToken as cs, getProjectTrace as ct, getProjects as cu, getProjectsByIdOrNameCustomEnvironments as cv, getRecords as cw, getRedirects as cx, getRepository as cy, getRepositoryImage as cz, addBypassIp as d, removeProjectMember as d$, importConnectorTokens as d0, importResource as d1, invalidateBySrcImages as d2, invalidateByTags as d3, inviteUserToTeam as d4, issueCert as d5, joinTeam as d6, killSessionCommand as d7, listAccessGroupMembers as d8, listAccessGroupProjects as d9, listSessionCommands as dA, listSessionSnapshots as dB, listSessions as dC, listSharedEnvVariable as dD, listTeamFlagSettings as dE, listTeamFlags as dF, listTeamFlagsV2 as dG, listUserEvents as dH, moveProjectDomain as dI, patchDomain as dJ, patchEdgeConfigItems as dK, patchEdgeConfigSchema as dL, patchTeam as dM, patchUrlProtectionBypass as dN, pauseProject as dO, postTeamDsyncRoles as dP, putFirewallConfig as dQ, readAccessGroup as dR, readAccessGroupProject as dS, readNetwork as dT, readSessionFile as dU, recordEvents as dV, removeBypassIp as dW, removeCert as dX, removeCustomEnvironment as dY, removeProjectDomain as dZ, removeProjectEnv as d_, listAccessGroups as da, listAiGatewayRules as db, listAiGatewayVirtualModelConfigs as dc, listAliases as dd, listAuthTokens as de, listBillingCharges as df, listCheckRuns as dg, listContractCommitments as dh, listDeploymentAliases as di, listDeploymentCheckRuns as dj, listDeploymentFiles as dk, listDrives as dl, listEventTypes as dm, listFlagSegments as dn, listFlagVersions as dp, listFlags as dq, listFlagsV2 as dr, listNetworks as ds, listProjectChecks as dt, listPromoteAliases as du, listRepositories as dv, listRepositoryImages as dw, listRepositoryPermissions as dx, listRepositoryTags as dy, listSandboxes as dz, addProjectDomain as e, updateResourceSecretsById as e$, removeRecord as e0, removeRepositoryPermission as e1, removeTeamMember as e2, renewDomain as e3, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as e4, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference as e5, replaceDomainsByDomainRecords as e6, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig as e7, requestAccessToTeam as e8, requestDelete as e9, updateCheck as eA, updateCustomEnvironment as eB, updateDeploymentCheckRun as eC, updateDomainAutoRenew as eD, updateDomainNameservers as eE, updateDrain as eF, updateEdgeConfig as eG, updateFirewallConfig as eH, updateFlag as eI, updateFlagSegment as eJ, updateFlagSettings as eK, updateInstallation as eL, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId as eM, updateIntegrationDeploymentAction as eN, updateInvoice as eO, updateMicrofrontends as eP, updateMicrofrontendsGroup as eQ, updateNetwork as eR, updateObservabilityConfigurationProject as eS, updateProject as eT, updateProjectCheck as eU, updateProjectDomain as eV, updateProjectProtectionBypass as eW, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescription as eX, updateRecord as eY, updateResource as eZ, updateResourceSecrets as e_, requestPromote as ea, requestRollback as eb, rerequestCheck as ec, restoreEdgeConfigBackup as ed, restoreRedirects as ee, rotateInstallationCredential as ef, runSessionCommand as eg, searchRepo as eh, stageRedirects as ei, stageRoutes as ej, startRollingRelease as ek, status as el, stopSession as em, submitBillingData as en, submitInvoice as eo, submitPrepaymentBalances as ep, testDrain as eq, transferInDomain as er, unlinkSharedEnvVariable as es, unpauseProject as et, updateAccessGroup as eu, updateAccessGroupProject as ev, updateAiGatewayRule as ew, updateAiGatewayVirtualModelConfig as ex, updateAttackChallengeMode as ey, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as ez, addProjectMember as f, updateRollingReleaseConfig as f0, updateRouteVersions as f1, updateSandbox as f2, updateSessionNetworkPolicy as f3, updateSharedEnvVariable as f4, updateStaticIps as f5, updateTeamMember as f6, updateVersion as f7, uploadArtifact as f8, uploadCert as f9, uploadFile as fa, uploadProjectAvatar as fb, verifyProjectDomain as fc, writeSessionFiles as fd, addRepositoryPermission as g, addRoute as h, aggregateEvents as i, aggregatePageviews as j, approveRollingReleaseStage as k, artifactQuery as l, assignAlias as m, batchRemoveProjectEnv as n, operationsByTag as o, buyCredits as p, buyDomains as q, buySingleDomain as r, cancelDeployment as s, tagDictionary as t, claimDomainOwnership as u, clearRepositoryPermissions as v, completeRollingRelease as w, connectIntegrationResourceToProject as x, countEvents as y, countPageviews as z };
|
|
9546
|
+
export { createMicrofrontendsGroupWithApplications as $, countPageviews as A, createAccessGroup as B, createAccessGroupProject as C, createAiGatewayRule as D, createAiGatewayVirtualModelConfig as E, createApiKeys as F, createAuthToken as G, createByTeamSlugByProjectSlugByRepositoryNameBlobsUploads as H, createCheck as I, createConfigurableLogDrain as J, createConnector as K, createConnectorAuthorizationRequest as L, createCustomEnvironment as M, createDeployment as N, createDeploymentCheckRun as O, createDrain as P, createEdgeConfig as Q, createEdgeConfigToken as R, createEvent as S, createFlag as T, createFlagSegment as U, createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems as V, createIntegrationStoreDirect as W, createKmsIssuer as X, createKmsIssuerPolicy as Y, createKmsSigningKey as Z, createLogDrain as _, operationsByPath as a, deleteSandbox as a$, createNetwork as a0, createObservabilityQuery as a1, createOrTransferDomain as a2, createProject as a3, createProjectCheck as a4, createProjectEnv as a5, createProjectTransferRequest as a6, createRecord as a7, createRepository as a8, createSandboxesByNameForkV2 as a9, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as aA, deleteByTeamSlugByProjectSlugByRepositoryNameManifestsByReference as aB, deleteConfigurableLogDrain as aC, deleteConfiguration as aD, deleteDeployment as aE, deleteDomain as aF, deleteDrain as aG, deleteDrive as aH, deleteEdgeConfig as aI, deleteEdgeConfigSchema as aJ, deleteEdgeConfigTokens as aK, deleteFlag as aL, deleteFlagSegment as aM, deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId as aN, deleteIntegrationLogDrain as aO, deleteIntegrationResource as aP, deleteKmsIssuer as aQ, deleteKmsIssuerPolicy as aR, deleteMicrofrontendsGroup as aS, deleteNetwork as aT, deleteProject as aU, deleteProjectCheck as aV, deleteRedirects as aW, deleteRepository as aX, deleteRepositoryImage as aY, deleteRollingReleaseConfig as aZ, deleteRoutes as a_, createSandboxesByNameForkV3 as aa, createSandboxesSessionsBySessionIdSnapshotV2 as ab, createSandboxesSessionsBySessionIdSnapshotV3 as ac, createSandboxesV2 as ad, createSandboxesV3 as ae, createSandboxesV4 as af, createSdkKey as ag, createSecurityFirewallConfigByConfigVersionActivate as ah, createSessionDirectory as ai, createSharedEnvVariable as aj, createSpeedInsightsToggle as ak, createStorageStoresBlob as al, createTeam as am, createTraceSession as an, createWebInsightsToggle as ao, createWebhook as ap, dangerouslyDeleteBySrcImages as aq, dangerouslyDeleteByTags as ar, deleteAccessGroup as as, deleteAccessGroupProject as at, deleteAiGatewayRule as au, deleteAiGatewayVirtualModelConfig as av, deleteAlias as aw, deleteAllArtifacts as ax, deleteAuthToken as ay, deleteByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest as az, acceptProjectTransferRequest as b, getEdgeConfigBackup as b$, deleteSdkKey as b0, deleteSecurityFirewallConfigByConfigVersion as b1, deleteSessionSnapshot as b2, deleteSharedEnvVariable as b3, deleteStorageStoresBlobById as b4, deleteTeam as b5, deleteTeamInviteCode as b6, deleteWebhook as b7, downloadArtifact as b8, editProjectEnv as b9, getConfigurableLogDrain as bA, getConfiguration as bB, getConfigurationProducts as bC, getConfigurations as bD, getConnectorToken as bE, getContactInfoSchema as bF, getCustomEnvironment as bG, getDeployment as bH, getDeploymentCheckRun as bI, getDeploymentEvents as bJ, getDeploymentFeatureFlags as bK, getDeploymentFileContents as bL, getDeployments as bM, getDomain as bN, getDomainAuthCode as bO, getDomainAvailability as bP, getDomainConfig as bQ, getDomainContactVerification as bR, getDomainPrice as bS, getDomainProjectDomains as bT, getDomainTransferIn as bU, getDomainVerificationRecord as bV, getDomains as bW, getDomainsRecordsByRecordId as bX, getDrain as bY, getDrains as bZ, getEdgeConfig as b_, editRedirect as ba, editRoute as bb, exchangeSsoToken as bc, extendSessionTimeout as bd, filterProjectEnvs as be, finalizeInstallation as bf, generateFirewallRule as bg, generateRoute as bh, getAccountInfo as bi, getActiveAttackStatus as bj, getAiGatewayVirtualModelConfig as bk, getAlias as bl, getAllChecks as bm, getAllLogDrains as bn, getAuthToken as bo, getAuthUser as bp, getBillingPlans as bq, getBulkAvailability as br, getByTeamSlugByProjectSlugByRepositoryNameBlobsByDigest as bs, getByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as bt, getByTeamSlugByProjectSlugByRepositoryNameManifestsByReference as bu, getByTeamSlugByProjectSlugByRepositoryNameTagsList as bv, getBypassIp as bw, getCertById as bx, getCerts as by, getCheck as bz, client as c, getTeams as c$, getEdgeConfigBackups as c0, getEdgeConfigItem as c1, getEdgeConfigItems as c2, getEdgeConfigSchema as c3, getEdgeConfigToken as c4, getEdgeConfigTokens as c5, getEdgeConfigs as c6, getFirewallConfig as c7, getFlag as c8, getFlagSegment as c9, getProjects as cA, getProjectsByIdOrNameCustomEnvironments as cB, getRecords as cC, getRedirects as cD, getRepository as cE, getRepositoryImage as cF, getRepositoryTag as cG, getRollingRelease as cH, getRollingReleaseBillingStatus as cI, getRollingReleaseConfig as cJ, getRoot as cK, getRouteVersions as cL, getRoutes as cM, getRuntimeLogs as cN, getSdkKeys as cO, getSecurityFirewallConfig as cP, getSecurityFirewallEvents as cQ, getSession as cR, getSessionCommand as cS, getSessionCommandLogs as cT, getSessionSnapshot as cU, getSharedEnvVar as cV, getStorageStoresById as cW, getSupportedTlds as cX, getTeam as cY, getTeamAccessRequest as cZ, getTeamMembers as c_, getFlagSettings as ca, getInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig as cb, getIntegrationLogDrains as cc, getIntegrationResource as cd, getIntegrationResources as ce, getInvoice as cf, getKmsIssuer as cg, getMember as ch, getMicrofrontendsConfig as ci, getMicrofrontendsConfigForProject as cj, getMicrofrontendsGroups as ck, getMicrofrontendsInGroup as cl, getNamedSandbox as cm, getObservabilityConfigurationProjects as cn, getObservabilitySchema as co, getObservabilitySchemaByMetricId as cp, getOrCreateDrive as cq, getOrder as cr, getProject as cs, getProjectCheck as ct, getProjectDomain as cu, getProjectDomains as cv, getProjectEnv as cw, getProjectMembers as cx, getProjectToken as cy, getProjectTrace as cz, activateKmsSigningKey as d, recordEvents as d$, getTld as d0, getTldPrice as d1, getVersions as d2, getWebhook as d3, getWebhooks as d4, gitNamespaces as d5, importResource as d6, invalidateBySrcImages as d7, invalidateByTags as d8, inviteUserToTeam as d9, listPromoteAliases as dA, listRepositories as dB, listRepositoryImages as dC, listRepositoryPermissions as dD, listRepositoryTags as dE, listSandboxes as dF, listSessionCommands as dG, listSessionSnapshots as dH, listSessions as dI, listSharedEnvVariable as dJ, listTeamFlagSettings as dK, listTeamFlags as dL, listTeamFlagsV2 as dM, listUserEvents as dN, moveProjectDomain as dO, patchDomain as dP, patchEdgeConfigItems as dQ, patchEdgeConfigSchema as dR, patchTeam as dS, patchUrlProtectionBypass as dT, pauseProject as dU, postTeamDsyncRoles as dV, putFirewallConfig as dW, readAccessGroup as dX, readAccessGroupProject as dY, readNetwork as dZ, readSessionFile as d_, issueCert as da, joinTeam as db, killSessionCommand as dc, listAccessGroupMembers as dd, listAccessGroupProjects as de, listAccessGroups as df, listAiGatewayRules as dg, listAiGatewayVirtualModelConfigs as dh, listAliases as di, listAuthTokens as dj, listBillingCharges as dk, listCheckRuns as dl, listContractCommitments as dm, listDeploymentAliases as dn, listDeploymentCheckRuns as dp, listDeploymentFiles as dq, listDrives as dr, listEventTypes as ds, listFlagSegments as dt, listFlagVersions as du, listFlags as dv, listFlagsV2 as dw, listKmsIssuers as dx, listNetworks as dy, listProjectChecks as dz, addBypassIp as e, updateMicrofrontends as e$, removeBypassIp as e0, removeCert as e1, removeCustomEnvironment as e2, removeProjectDomain as e3, removeProjectEnv as e4, removeProjectMember as e5, removeRecord as e6, removeRepositoryPermission as e7, removeTeamMember as e8, renewDomain as e9, testDrain as eA, transferInDomain as eB, unlinkSharedEnvVariable as eC, unpauseProject as eD, updateAccessGroup as eE, updateAccessGroupProject as eF, updateAiGatewayRule as eG, updateAiGatewayVirtualModelConfig as eH, updateAttackChallengeMode as eI, updateByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as eJ, updateCheck as eK, updateCustomEnvironment as eL, updateDeploymentCheckRun as eM, updateDomainAutoRenew as eN, updateDomainNameservers as eO, updateDrain as eP, updateEdgeConfig as eQ, updateFirewallConfig as eR, updateFlag as eS, updateFlagSegment as eT, updateFlagSettings as eU, updateInstallation as eV, updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId as eW, updateIntegrationDeploymentAction as eX, updateInvoice as eY, updateKmsIssuer as eZ, updateKmsIssuerPolicy as e_, replaceByTeamSlugByProjectSlugByRepositoryNameBlobsUploadsByUuid as ea, replaceByTeamSlugByProjectSlugByRepositoryNameManifestsByReference as eb, replaceDomainsByDomainRecords as ec, replaceInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationGlobalConfig as ed, requestAccessToTeam as ee, requestDelete as ef, requestPromote as eg, requestRollback as eh, rerequestCheck as ei, restoreEdgeConfigBackup as ej, restoreRedirects as ek, revokeInstallationCredential as el, revokeKmsSigningKey as em, rotateInstallationCredential as en, runSessionCommand as eo, searchRepo as ep, signKmsMessage as eq, signKmsToken as er, stageRedirects as es, stageRoutes as et, startRollingRelease as eu, status as ev, stopSession as ew, submitBillingData as ex, submitInvoice as ey, submitPrepaymentBalances as ez, addProjectDomain as f, updateMicrofrontendsGroup as f0, updateNetwork as f1, updateObservabilityConfigurationProject as f2, updateProject as f3, updateProjectCheck as f4, updateProjectDomain as f5, updateProjectProtectionBypass as f6, updateProjectsByProjectIdRollbackByDeploymentIdUpdateDescription as f7, updateRecord as f8, updateResource as f9, updateResourceSecrets as fa, updateResourceSecretsById as fb, updateRollingReleaseConfig as fc, updateRouteVersions as fd, updateSandbox as fe, updateSessionNetworkPolicy as ff, updateSharedEnvVariable as fg, updateStaticIps as fh, updateTeamMember as fi, updateVersion as fj, uploadArtifact as fk, uploadCert as fl, uploadFile as fm, uploadProjectAvatar as fn, verifyProjectDomain as fo, writeSessionFiles as fp, addProjectMember as g, addRepositoryPermission as h, addRoute as i, aggregateEvents as j, aggregatePageviews as k, approveRollingReleaseStage as l, artifactQuery as m, assignAlias as n, operationsByTag as o, batchRemoveProjectEnv as p, buyCredits as q, buyDomains as r, buySingleDomain as s, tagDictionary as t, cancelDeployment as u, claimDomainOwnership as v, clearRepositoryPermissions as w, completeRollingRelease as x, connectIntegrationResourceToProject as y, countEvents as z };
|
package/dist/components.cjs
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
2
|
|
|
3
|
-
var components = require('./components-
|
|
3
|
+
var components = require('./components-l5748yis.cjs');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
exports.acceptProjectTransferRequest = components.acceptProjectTransferRequest;
|
|
8
|
+
exports.activateKmsSigningKey = components.activateKmsSigningKey;
|
|
8
9
|
exports.addBypassIp = components.addBypassIp;
|
|
9
10
|
exports.addProjectDomain = components.addProjectDomain;
|
|
10
11
|
exports.addProjectMember = components.addProjectMember;
|
|
@@ -37,7 +38,6 @@ exports.createCheck = components.createCheck;
|
|
|
37
38
|
exports.createConfigurableLogDrain = components.createConfigurableLogDrain;
|
|
38
39
|
exports.createConnector = components.createConnector;
|
|
39
40
|
exports.createConnectorAuthorizationRequest = components.createConnectorAuthorizationRequest;
|
|
40
|
-
exports.createConnectorInstallationRequest = components.createConnectorInstallationRequest;
|
|
41
41
|
exports.createCustomEnvironment = components.createCustomEnvironment;
|
|
42
42
|
exports.createDeployment = components.createDeployment;
|
|
43
43
|
exports.createDeploymentCheckRun = components.createDeploymentCheckRun;
|
|
@@ -49,6 +49,9 @@ exports.createFlag = components.createFlag;
|
|
|
49
49
|
exports.createFlagSegment = components.createFlagSegment;
|
|
50
50
|
exports.createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems = components.createInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItems;
|
|
51
51
|
exports.createIntegrationStoreDirect = components.createIntegrationStoreDirect;
|
|
52
|
+
exports.createKmsIssuer = components.createKmsIssuer;
|
|
53
|
+
exports.createKmsIssuerPolicy = components.createKmsIssuerPolicy;
|
|
54
|
+
exports.createKmsSigningKey = components.createKmsSigningKey;
|
|
52
55
|
exports.createLogDrain = components.createLogDrain;
|
|
53
56
|
exports.createMicrofrontendsGroupWithApplications = components.createMicrofrontendsGroupWithApplications;
|
|
54
57
|
exports.createNetwork = components.createNetwork;
|
|
@@ -103,6 +106,8 @@ exports.deleteFlagSegment = components.deleteFlagSegment;
|
|
|
103
106
|
exports.deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId = components.deleteInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId;
|
|
104
107
|
exports.deleteIntegrationLogDrain = components.deleteIntegrationLogDrain;
|
|
105
108
|
exports.deleteIntegrationResource = components.deleteIntegrationResource;
|
|
109
|
+
exports.deleteKmsIssuer = components.deleteKmsIssuer;
|
|
110
|
+
exports.deleteKmsIssuerPolicy = components.deleteKmsIssuerPolicy;
|
|
106
111
|
exports.deleteMicrofrontendsGroup = components.deleteMicrofrontendsGroup;
|
|
107
112
|
exports.deleteNetwork = components.deleteNetwork;
|
|
108
113
|
exports.deleteProject = components.deleteProject;
|
|
@@ -193,6 +198,7 @@ exports.getIntegrationLogDrains = components.getIntegrationLogDrains;
|
|
|
193
198
|
exports.getIntegrationResource = components.getIntegrationResource;
|
|
194
199
|
exports.getIntegrationResources = components.getIntegrationResources;
|
|
195
200
|
exports.getInvoice = components.getInvoice;
|
|
201
|
+
exports.getKmsIssuer = components.getKmsIssuer;
|
|
196
202
|
exports.getMember = components.getMember;
|
|
197
203
|
exports.getMicrofrontendsConfig = components.getMicrofrontendsConfig;
|
|
198
204
|
exports.getMicrofrontendsConfigForProject = components.getMicrofrontendsConfigForProject;
|
|
@@ -246,7 +252,6 @@ exports.getVersions = components.getVersions;
|
|
|
246
252
|
exports.getWebhook = components.getWebhook;
|
|
247
253
|
exports.getWebhooks = components.getWebhooks;
|
|
248
254
|
exports.gitNamespaces = components.gitNamespaces;
|
|
249
|
-
exports.importConnectorTokens = components.importConnectorTokens;
|
|
250
255
|
exports.importResource = components.importResource;
|
|
251
256
|
exports.invalidateBySrcImages = components.invalidateBySrcImages;
|
|
252
257
|
exports.invalidateByTags = components.invalidateByTags;
|
|
@@ -273,6 +278,7 @@ exports.listFlagSegments = components.listFlagSegments;
|
|
|
273
278
|
exports.listFlagVersions = components.listFlagVersions;
|
|
274
279
|
exports.listFlags = components.listFlags;
|
|
275
280
|
exports.listFlagsV2 = components.listFlagsV2;
|
|
281
|
+
exports.listKmsIssuers = components.listKmsIssuers;
|
|
276
282
|
exports.listNetworks = components.listNetworks;
|
|
277
283
|
exports.listProjectChecks = components.listProjectChecks;
|
|
278
284
|
exports.listPromoteAliases = components.listPromoteAliases;
|
|
@@ -326,9 +332,13 @@ exports.requestRollback = components.requestRollback;
|
|
|
326
332
|
exports.rerequestCheck = components.rerequestCheck;
|
|
327
333
|
exports.restoreEdgeConfigBackup = components.restoreEdgeConfigBackup;
|
|
328
334
|
exports.restoreRedirects = components.restoreRedirects;
|
|
335
|
+
exports.revokeInstallationCredential = components.revokeInstallationCredential;
|
|
336
|
+
exports.revokeKmsSigningKey = components.revokeKmsSigningKey;
|
|
329
337
|
exports.rotateInstallationCredential = components.rotateInstallationCredential;
|
|
330
338
|
exports.runSessionCommand = components.runSessionCommand;
|
|
331
339
|
exports.searchRepo = components.searchRepo;
|
|
340
|
+
exports.signKmsMessage = components.signKmsMessage;
|
|
341
|
+
exports.signKmsToken = components.signKmsToken;
|
|
332
342
|
exports.stageRedirects = components.stageRedirects;
|
|
333
343
|
exports.stageRoutes = components.stageRoutes;
|
|
334
344
|
exports.startRollingRelease = components.startRollingRelease;
|
|
@@ -363,6 +373,8 @@ exports.updateInstallation = components.updateInstallation;
|
|
|
363
373
|
exports.updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId = components.updateInstallationsByIntegrationConfigurationIdResourcesByResourceIdExperimentationItemsByItemId;
|
|
364
374
|
exports.updateIntegrationDeploymentAction = components.updateIntegrationDeploymentAction;
|
|
365
375
|
exports.updateInvoice = components.updateInvoice;
|
|
376
|
+
exports.updateKmsIssuer = components.updateKmsIssuer;
|
|
377
|
+
exports.updateKmsIssuerPolicy = components.updateKmsIssuerPolicy;
|
|
366
378
|
exports.updateMicrofrontends = components.updateMicrofrontends;
|
|
367
379
|
exports.updateMicrofrontendsGroup = components.updateMicrofrontendsGroup;
|
|
368
380
|
exports.updateNetwork = components.updateNetwork;
|