@vercel/sdk 1.6.11 → 1.6.12
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/bin/mcp-server.js +101 -52
- package/bin/mcp-server.js.map +15 -15
- package/docs/sdks/deployments/README.md +6 -4
- package/esm/__tests__/deployments.test.js +2 -1
- package/esm/__tests__/deployments.test.js.map +1 -1
- package/esm/__tests__/projects.test.js +13 -15
- package/esm/__tests__/projects.test.js.map +1 -1
- package/esm/funcs/deploymentsGetDeploymentEvents.d.ts +2 -2
- package/esm/funcs/deploymentsGetDeploymentEvents.d.ts.map +1 -1
- package/esm/funcs/deploymentsGetDeploymentEvents.js +2 -2
- package/esm/funcs/deploymentsGetDeploymentEvents.js.map +1 -1
- package/esm/lib/config.d.ts +2 -2
- package/esm/lib/config.js +2 -2
- package/esm/mcp-server/mcp-server.js +1 -1
- package/esm/mcp-server/server.js +1 -1
- package/esm/mcp-server/tools/deploymentsGetDeploymentEvents.d.ts.map +1 -1
- package/esm/mcp-server/tools/deploymentsGetDeploymentEvents.js +2 -1
- package/esm/mcp-server/tools/deploymentsGetDeploymentEvents.js.map +1 -1
- package/esm/models/createdeploymentop.d.ts +28 -28
- package/esm/models/createdeploymentop.d.ts.map +1 -1
- package/esm/models/createdeploymentop.js +12 -12
- package/esm/models/createdeploymentop.js.map +1 -1
- package/esm/models/createprojectenvop.d.ts +6 -6
- package/esm/models/createprojectenvop.js +2 -2
- package/esm/models/createprojectenvop.js.map +1 -1
- package/esm/models/createprojectop.d.ts +9 -9
- package/esm/models/createprojectop.js +3 -3
- package/esm/models/createprojectop.js.map +1 -1
- package/esm/models/editprojectenvop.d.ts +3 -3
- package/esm/models/editprojectenvop.js +1 -1
- package/esm/models/editprojectenvop.js.map +1 -1
- package/esm/models/filterprojectenvsop.d.ts +9 -9
- package/esm/models/filterprojectenvsop.js +3 -3
- package/esm/models/filterprojectenvsop.js.map +1 -1
- package/esm/models/getdeploymenteventsop.d.ts +129 -0
- package/esm/models/getdeploymenteventsop.d.ts.map +1 -1
- package/esm/models/getdeploymenteventsop.js +91 -0
- package/esm/models/getdeploymenteventsop.js.map +1 -1
- package/esm/models/removeprojectenvop.d.ts +9 -9
- package/esm/models/removeprojectenvop.js +3 -3
- package/esm/models/removeprojectenvop.js.map +1 -1
- package/esm/models/updateprojectop.d.ts +9 -9
- package/esm/models/updateprojectop.js +3 -3
- package/esm/models/updateprojectop.js.map +1 -1
- package/esm/sdk/deployments.d.ts +2 -2
- package/esm/sdk/deployments.d.ts.map +1 -1
- package/esm/sdk/deployments.js.map +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/__tests__/deployments.test.ts +2 -1
- package/src/__tests__/projects.test.ts +13 -15
- package/src/funcs/deploymentsGetDeploymentEvents.ts +6 -4
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/mcp-server/tools/deploymentsGetDeploymentEvents.ts +3 -1
- package/src/models/createdeploymentop.ts +16 -16
- package/src/models/createprojectenvop.ts +2 -2
- package/src/models/createprojectop.ts +3 -3
- package/src/models/editprojectenvop.ts +1 -1
- package/src/models/filterprojectenvsop.ts +3 -3
- package/src/models/getdeploymenteventsop.ts +209 -0
- package/src/models/removeprojectenvop.ts +3 -3
- package/src/models/updateprojectop.ts +3 -3
- package/src/sdk/deployments.ts +5 -2
- package/vercel-spec.json +119 -45
|
@@ -55,10 +55,10 @@ export type RemoveProjectEnvResponseBodyProjectsResponseTarget =
|
|
|
55
55
|
|
|
56
56
|
export const RemoveProjectEnvResponseBodyProjectsResponseType = {
|
|
57
57
|
System: "system",
|
|
58
|
+
Secret: "secret",
|
|
58
59
|
Encrypted: "encrypted",
|
|
59
60
|
Plain: "plain",
|
|
60
61
|
Sensitive: "sensitive",
|
|
61
|
-
Secret: "secret",
|
|
62
62
|
} as const;
|
|
63
63
|
export type RemoveProjectEnvResponseBodyProjectsResponseType = ClosedEnum<
|
|
64
64
|
typeof RemoveProjectEnvResponseBodyProjectsResponseType
|
|
@@ -405,10 +405,10 @@ export type RemoveProjectEnvResponseBodyProjectsTarget =
|
|
|
405
405
|
|
|
406
406
|
export const RemoveProjectEnvResponseBodyProjectsType = {
|
|
407
407
|
System: "system",
|
|
408
|
+
Secret: "secret",
|
|
408
409
|
Encrypted: "encrypted",
|
|
409
410
|
Plain: "plain",
|
|
410
411
|
Sensitive: "sensitive",
|
|
411
|
-
Secret: "secret",
|
|
412
412
|
} as const;
|
|
413
413
|
export type RemoveProjectEnvResponseBodyProjectsType = ClosedEnum<
|
|
414
414
|
typeof RemoveProjectEnvResponseBodyProjectsType
|
|
@@ -754,10 +754,10 @@ export type RemoveProjectEnvResponseBodyTarget =
|
|
|
754
754
|
|
|
755
755
|
export const RemoveProjectEnvResponseBodyType = {
|
|
756
756
|
System: "system",
|
|
757
|
+
Secret: "secret",
|
|
757
758
|
Encrypted: "encrypted",
|
|
758
759
|
Plain: "plain",
|
|
759
760
|
Sensitive: "sensitive",
|
|
760
|
-
Secret: "secret",
|
|
761
761
|
} as const;
|
|
762
762
|
export type RemoveProjectEnvResponseBodyType = ClosedEnum<
|
|
763
763
|
typeof RemoveProjectEnvResponseBodyType
|
|
@@ -507,10 +507,10 @@ export type UpdateProjectTarget = Array<string> | UpdateProjectTarget2;
|
|
|
507
507
|
|
|
508
508
|
export const UpdateProjectType = {
|
|
509
509
|
System: "system",
|
|
510
|
+
Secret: "secret",
|
|
510
511
|
Encrypted: "encrypted",
|
|
511
512
|
Plain: "plain",
|
|
512
513
|
Sensitive: "sensitive",
|
|
513
|
-
Secret: "secret",
|
|
514
514
|
} as const;
|
|
515
515
|
export type UpdateProjectType = ClosedEnum<typeof UpdateProjectType>;
|
|
516
516
|
|
|
@@ -1973,8 +1973,8 @@ export type UpdateProjectSrc = UpdateProjectSrc2 | string;
|
|
|
1973
1973
|
|
|
1974
1974
|
export const UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityType =
|
|
1975
1975
|
{
|
|
1976
|
-
Path: "path",
|
|
1977
1976
|
Host: "host",
|
|
1977
|
+
Path: "path",
|
|
1978
1978
|
Method: "method",
|
|
1979
1979
|
Header: "header",
|
|
1980
1980
|
Cookie: "cookie",
|
|
@@ -2015,8 +2015,8 @@ export type UpdateProjectHas = {
|
|
|
2015
2015
|
|
|
2016
2016
|
export const UpdateProjectProjectsResponse200ApplicationJSONResponseBodySecurityFirewallRoutesType =
|
|
2017
2017
|
{
|
|
2018
|
-
Path: "path",
|
|
2019
2018
|
Host: "host",
|
|
2019
|
+
Path: "path",
|
|
2020
2020
|
Method: "method",
|
|
2021
2021
|
Header: "header",
|
|
2022
2022
|
Cookie: "cookie",
|
package/src/sdk/deployments.ts
CHANGED
|
@@ -26,7 +26,10 @@ import {
|
|
|
26
26
|
DeleteDeploymentResponseBody,
|
|
27
27
|
} from "../models/deletedeploymentop.js";
|
|
28
28
|
import { FileTree } from "../models/filetree.js";
|
|
29
|
-
import {
|
|
29
|
+
import {
|
|
30
|
+
GetDeploymentEventsRequest,
|
|
31
|
+
GetDeploymentEventsResponseBody,
|
|
32
|
+
} from "../models/getdeploymenteventsop.js";
|
|
30
33
|
import { GetDeploymentFileContentsRequest } from "../models/getdeploymentfilecontentsop.js";
|
|
31
34
|
import {
|
|
32
35
|
GetDeploymentRequest,
|
|
@@ -54,7 +57,7 @@ export class Deployments extends ClientSDK {
|
|
|
54
57
|
async getDeploymentEvents(
|
|
55
58
|
request: GetDeploymentEventsRequest,
|
|
56
59
|
options?: RequestOptions,
|
|
57
|
-
): Promise<
|
|
60
|
+
): Promise<Array<GetDeploymentEventsResponseBody>> {
|
|
58
61
|
return unwrapAsync(deploymentsGetDeploymentEvents(
|
|
59
62
|
this,
|
|
60
63
|
request,
|
package/vercel-spec.json
CHANGED
|
@@ -8198,6 +8198,80 @@
|
|
|
8198
8198
|
},
|
|
8199
8199
|
"500": {
|
|
8200
8200
|
"description": ""
|
|
8201
|
+
},
|
|
8202
|
+
"200": {
|
|
8203
|
+
"description": "Successfully retrieved deployment logs",
|
|
8204
|
+
"content": {
|
|
8205
|
+
"application/json": {
|
|
8206
|
+
"schema": {
|
|
8207
|
+
"type": "array",
|
|
8208
|
+
"items": {
|
|
8209
|
+
"type": "object",
|
|
8210
|
+
"properties": {
|
|
8211
|
+
"created": {
|
|
8212
|
+
"type": "number",
|
|
8213
|
+
"description": "Unix timestamp when the log entry was created",
|
|
8214
|
+
"example": 1744583330135
|
|
8215
|
+
},
|
|
8216
|
+
"date": {
|
|
8217
|
+
"type": "number",
|
|
8218
|
+
"description": "Unix timestamp of the log entry date",
|
|
8219
|
+
"example": 1744583330135
|
|
8220
|
+
},
|
|
8221
|
+
"deploymentId": {
|
|
8222
|
+
"type": "string",
|
|
8223
|
+
"description": "Unique identifier for the deployment",
|
|
8224
|
+
"example": "dpl_GjyjUDa3gESegReEzVREj1sQ92b7"
|
|
8225
|
+
},
|
|
8226
|
+
"id": {
|
|
8227
|
+
"type": "string",
|
|
8228
|
+
"description": "Unique identifier for the log entry",
|
|
8229
|
+
"example": "1744583330135959366434900001"
|
|
8230
|
+
},
|
|
8231
|
+
"text": {
|
|
8232
|
+
"type": "string",
|
|
8233
|
+
"description": "Log message content",
|
|
8234
|
+
"example": "Cloning github link (Branch: yourbranchname, Commit: commithash)"
|
|
8235
|
+
},
|
|
8236
|
+
"type": {
|
|
8237
|
+
"type": "string",
|
|
8238
|
+
"description": "Type of log entry",
|
|
8239
|
+
"enum": [
|
|
8240
|
+
"stdout",
|
|
8241
|
+
"stderr"
|
|
8242
|
+
],
|
|
8243
|
+
"example": "stdout"
|
|
8244
|
+
},
|
|
8245
|
+
"serial": {
|
|
8246
|
+
"type": "string",
|
|
8247
|
+
"description": "Serial identifier for the log entry",
|
|
8248
|
+
"example": "1744583330135959366434900001"
|
|
8249
|
+
},
|
|
8250
|
+
"info": {
|
|
8251
|
+
"type": "object",
|
|
8252
|
+
"properties": {
|
|
8253
|
+
"type": {
|
|
8254
|
+
"type": "string",
|
|
8255
|
+
"description": "Type of operation",
|
|
8256
|
+
"example": "build"
|
|
8257
|
+
},
|
|
8258
|
+
"name": {
|
|
8259
|
+
"type": "string",
|
|
8260
|
+
"description": "Name of the build",
|
|
8261
|
+
"example": "bld_by3kz18kn"
|
|
8262
|
+
},
|
|
8263
|
+
"entrypoint": {
|
|
8264
|
+
"type": "string",
|
|
8265
|
+
"description": "Entrypoint for the build",
|
|
8266
|
+
"example": "."
|
|
8267
|
+
}
|
|
8268
|
+
}
|
|
8269
|
+
}
|
|
8270
|
+
}
|
|
8271
|
+
}
|
|
8272
|
+
}
|
|
8273
|
+
}
|
|
8274
|
+
}
|
|
8201
8275
|
}
|
|
8202
8276
|
},
|
|
8203
8277
|
"parameters": [
|
|
@@ -11982,25 +12056,25 @@
|
|
|
11982
12056
|
"lambdas": {
|
|
11983
12057
|
"items": {
|
|
11984
12058
|
"properties": {
|
|
11985
|
-
"id": {
|
|
11986
|
-
"type": "string"
|
|
11987
|
-
},
|
|
11988
12059
|
"createdAt": {
|
|
11989
12060
|
"type": "number"
|
|
11990
12061
|
},
|
|
11991
|
-
"
|
|
11992
|
-
"nullable": true,
|
|
12062
|
+
"id": {
|
|
11993
12063
|
"type": "string"
|
|
11994
12064
|
},
|
|
11995
12065
|
"readyState": {
|
|
11996
12066
|
"type": "string",
|
|
11997
12067
|
"enum": [
|
|
11998
|
-
"BUILDING",
|
|
11999
12068
|
"ERROR",
|
|
12069
|
+
"BUILDING",
|
|
12000
12070
|
"INITIALIZING",
|
|
12001
12071
|
"READY"
|
|
12002
12072
|
]
|
|
12003
12073
|
},
|
|
12074
|
+
"entrypoint": {
|
|
12075
|
+
"nullable": true,
|
|
12076
|
+
"type": "string"
|
|
12077
|
+
},
|
|
12004
12078
|
"readyStateAt": {
|
|
12005
12079
|
"type": "number"
|
|
12006
12080
|
},
|
|
@@ -12112,9 +12186,9 @@
|
|
|
12112
12186
|
"type": {
|
|
12113
12187
|
"type": "string",
|
|
12114
12188
|
"enum": [
|
|
12189
|
+
"endsWith",
|
|
12115
12190
|
"startsWith",
|
|
12116
|
-
"equals"
|
|
12117
|
-
"endsWith"
|
|
12191
|
+
"equals"
|
|
12118
12192
|
],
|
|
12119
12193
|
"description": "The type of matching to perform"
|
|
12120
12194
|
},
|
|
@@ -13031,15 +13105,15 @@
|
|
|
13031
13105
|
"functionType": {
|
|
13032
13106
|
"type": "string",
|
|
13033
13107
|
"enum": [
|
|
13034
|
-
"
|
|
13035
|
-
"
|
|
13108
|
+
"standard",
|
|
13109
|
+
"fluid"
|
|
13036
13110
|
]
|
|
13037
13111
|
},
|
|
13038
13112
|
"functionMemoryType": {
|
|
13039
13113
|
"type": "string",
|
|
13040
13114
|
"enum": [
|
|
13041
|
-
"standard",
|
|
13042
13115
|
"standard_legacy",
|
|
13116
|
+
"standard",
|
|
13043
13117
|
"performance"
|
|
13044
13118
|
]
|
|
13045
13119
|
},
|
|
@@ -13269,11 +13343,11 @@
|
|
|
13269
13343
|
"type": "string",
|
|
13270
13344
|
"enum": [
|
|
13271
13345
|
"error",
|
|
13346
|
+
"resource",
|
|
13272
13347
|
"filesystem",
|
|
13273
13348
|
"hit",
|
|
13274
13349
|
"miss",
|
|
13275
|
-
"rewrite"
|
|
13276
|
-
"resource"
|
|
13350
|
+
"rewrite"
|
|
13277
13351
|
]
|
|
13278
13352
|
},
|
|
13279
13353
|
"src": {
|
|
@@ -13383,8 +13457,8 @@
|
|
|
13383
13457
|
"ownerType": {
|
|
13384
13458
|
"type": "string",
|
|
13385
13459
|
"enum": [
|
|
13386
|
-
"
|
|
13387
|
-
"
|
|
13460
|
+
"user",
|
|
13461
|
+
"team"
|
|
13388
13462
|
]
|
|
13389
13463
|
}
|
|
13390
13464
|
},
|
|
@@ -13436,8 +13510,8 @@
|
|
|
13436
13510
|
"ownerType": {
|
|
13437
13511
|
"type": "string",
|
|
13438
13512
|
"enum": [
|
|
13439
|
-
"
|
|
13440
|
-
"
|
|
13513
|
+
"user",
|
|
13514
|
+
"team"
|
|
13441
13515
|
]
|
|
13442
13516
|
}
|
|
13443
13517
|
},
|
|
@@ -13490,8 +13564,8 @@
|
|
|
13490
13564
|
"ownerType": {
|
|
13491
13565
|
"type": "string",
|
|
13492
13566
|
"enum": [
|
|
13493
|
-
"
|
|
13494
|
-
"
|
|
13567
|
+
"user",
|
|
13568
|
+
"team"
|
|
13495
13569
|
]
|
|
13496
13570
|
}
|
|
13497
13571
|
},
|
|
@@ -31034,10 +31108,10 @@
|
|
|
31034
31108
|
"type": "string",
|
|
31035
31109
|
"enum": [
|
|
31036
31110
|
"system",
|
|
31111
|
+
"secret",
|
|
31037
31112
|
"encrypted",
|
|
31038
31113
|
"plain",
|
|
31039
|
-
"sensitive"
|
|
31040
|
-
"secret"
|
|
31114
|
+
"sensitive"
|
|
31041
31115
|
]
|
|
31042
31116
|
},
|
|
31043
31117
|
"sunsetSecretId": {
|
|
@@ -34365,8 +34439,8 @@
|
|
|
34365
34439
|
"type": {
|
|
34366
34440
|
"type": "string",
|
|
34367
34441
|
"enum": [
|
|
34368
|
-
"path",
|
|
34369
34442
|
"host",
|
|
34443
|
+
"path",
|
|
34370
34444
|
"method",
|
|
34371
34445
|
"header",
|
|
34372
34446
|
"cookie",
|
|
@@ -34447,8 +34521,8 @@
|
|
|
34447
34521
|
"type": {
|
|
34448
34522
|
"type": "string",
|
|
34449
34523
|
"enum": [
|
|
34450
|
-
"path",
|
|
34451
34524
|
"host",
|
|
34525
|
+
"path",
|
|
34452
34526
|
"method",
|
|
34453
34527
|
"header",
|
|
34454
34528
|
"cookie",
|
|
@@ -39234,10 +39308,10 @@
|
|
|
39234
39308
|
"type": "string",
|
|
39235
39309
|
"enum": [
|
|
39236
39310
|
"system",
|
|
39311
|
+
"secret",
|
|
39237
39312
|
"encrypted",
|
|
39238
39313
|
"plain",
|
|
39239
|
-
"sensitive"
|
|
39240
|
-
"secret"
|
|
39314
|
+
"sensitive"
|
|
39241
39315
|
]
|
|
39242
39316
|
},
|
|
39243
39317
|
"sunsetSecretId": {
|
|
@@ -42565,8 +42639,8 @@
|
|
|
42565
42639
|
"type": {
|
|
42566
42640
|
"type": "string",
|
|
42567
42641
|
"enum": [
|
|
42568
|
-
"path",
|
|
42569
42642
|
"host",
|
|
42643
|
+
"path",
|
|
42570
42644
|
"method",
|
|
42571
42645
|
"header",
|
|
42572
42646
|
"cookie",
|
|
@@ -42647,8 +42721,8 @@
|
|
|
42647
42721
|
"type": {
|
|
42648
42722
|
"type": "string",
|
|
42649
42723
|
"enum": [
|
|
42650
|
-
"path",
|
|
42651
42724
|
"host",
|
|
42725
|
+
"path",
|
|
42652
42726
|
"method",
|
|
42653
42727
|
"header",
|
|
42654
42728
|
"cookie",
|
|
@@ -46337,10 +46411,10 @@
|
|
|
46337
46411
|
"type": "string",
|
|
46338
46412
|
"enum": [
|
|
46339
46413
|
"system",
|
|
46414
|
+
"secret",
|
|
46340
46415
|
"encrypted",
|
|
46341
46416
|
"plain",
|
|
46342
|
-
"sensitive"
|
|
46343
|
-
"secret"
|
|
46417
|
+
"sensitive"
|
|
46344
46418
|
]
|
|
46345
46419
|
},
|
|
46346
46420
|
"sunsetSecretId": {
|
|
@@ -46750,10 +46824,10 @@
|
|
|
46750
46824
|
"type": "string",
|
|
46751
46825
|
"enum": [
|
|
46752
46826
|
"system",
|
|
46827
|
+
"secret",
|
|
46753
46828
|
"encrypted",
|
|
46754
46829
|
"plain",
|
|
46755
|
-
"sensitive"
|
|
46756
|
-
"secret"
|
|
46830
|
+
"sensitive"
|
|
46757
46831
|
]
|
|
46758
46832
|
},
|
|
46759
46833
|
"sunsetSecretId": {
|
|
@@ -47175,10 +47249,10 @@
|
|
|
47175
47249
|
"type": "string",
|
|
47176
47250
|
"enum": [
|
|
47177
47251
|
"system",
|
|
47252
|
+
"secret",
|
|
47178
47253
|
"encrypted",
|
|
47179
47254
|
"plain",
|
|
47180
|
-
"sensitive"
|
|
47181
|
-
"secret"
|
|
47255
|
+
"sensitive"
|
|
47182
47256
|
]
|
|
47183
47257
|
},
|
|
47184
47258
|
"sunsetSecretId": {
|
|
@@ -47734,10 +47808,10 @@
|
|
|
47734
47808
|
"type": "string",
|
|
47735
47809
|
"enum": [
|
|
47736
47810
|
"system",
|
|
47811
|
+
"secret",
|
|
47737
47812
|
"encrypted",
|
|
47738
47813
|
"plain",
|
|
47739
|
-
"sensitive"
|
|
47740
|
-
"secret"
|
|
47814
|
+
"sensitive"
|
|
47741
47815
|
]
|
|
47742
47816
|
},
|
|
47743
47817
|
"sunsetSecretId": {
|
|
@@ -48136,10 +48210,10 @@
|
|
|
48136
48210
|
"type": "string",
|
|
48137
48211
|
"enum": [
|
|
48138
48212
|
"system",
|
|
48213
|
+
"secret",
|
|
48139
48214
|
"encrypted",
|
|
48140
48215
|
"plain",
|
|
48141
|
-
"sensitive"
|
|
48142
|
-
"secret"
|
|
48216
|
+
"sensitive"
|
|
48143
48217
|
]
|
|
48144
48218
|
},
|
|
48145
48219
|
"sunsetSecretId": {
|
|
@@ -50219,10 +50293,10 @@
|
|
|
50219
50293
|
"type": "string",
|
|
50220
50294
|
"enum": [
|
|
50221
50295
|
"system",
|
|
50296
|
+
"secret",
|
|
50222
50297
|
"encrypted",
|
|
50223
50298
|
"plain",
|
|
50224
|
-
"sensitive"
|
|
50225
|
-
"secret"
|
|
50299
|
+
"sensitive"
|
|
50226
50300
|
]
|
|
50227
50301
|
},
|
|
50228
50302
|
"sunsetSecretId": {
|
|
@@ -50634,10 +50708,10 @@
|
|
|
50634
50708
|
"type": "string",
|
|
50635
50709
|
"enum": [
|
|
50636
50710
|
"system",
|
|
50711
|
+
"secret",
|
|
50637
50712
|
"encrypted",
|
|
50638
50713
|
"plain",
|
|
50639
|
-
"sensitive"
|
|
50640
|
-
"secret"
|
|
50714
|
+
"sensitive"
|
|
50641
50715
|
]
|
|
50642
50716
|
},
|
|
50643
50717
|
"sunsetSecretId": {
|
|
@@ -51044,10 +51118,10 @@
|
|
|
51044
51118
|
"type": "string",
|
|
51045
51119
|
"enum": [
|
|
51046
51120
|
"system",
|
|
51121
|
+
"secret",
|
|
51047
51122
|
"encrypted",
|
|
51048
51123
|
"plain",
|
|
51049
|
-
"sensitive"
|
|
51050
|
-
"secret"
|
|
51124
|
+
"sensitive"
|
|
51051
51125
|
]
|
|
51052
51126
|
},
|
|
51053
51127
|
"sunsetSecretId": {
|
|
@@ -51562,10 +51636,10 @@
|
|
|
51562
51636
|
"type": "string",
|
|
51563
51637
|
"enum": [
|
|
51564
51638
|
"system",
|
|
51639
|
+
"secret",
|
|
51565
51640
|
"encrypted",
|
|
51566
51641
|
"plain",
|
|
51567
|
-
"sensitive"
|
|
51568
|
-
"secret"
|
|
51642
|
+
"sensitive"
|
|
51569
51643
|
]
|
|
51570
51644
|
},
|
|
51571
51645
|
"sunsetSecretId": {
|