@vercel/sdk 1.7.6 → 1.7.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/mcp-server.js +2208 -1993
- package/bin/mcp-server.js.map +32 -23
- 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.js +1 -1
- package/esm/models/createdeploymentop.d.ts +43 -43
- package/esm/models/createdeploymentop.d.ts.map +1 -1
- package/esm/models/createdeploymentop.js +27 -27
- package/esm/models/createdeploymentop.js.map +1 -1
- package/esm/models/createprojectop.d.ts +9 -0
- package/esm/models/createprojectop.d.ts.map +1 -1
- package/esm/models/createprojectop.js +6 -0
- package/esm/models/createprojectop.js.map +1 -1
- package/esm/models/createwebhookop.d.ts +6 -0
- package/esm/models/createwebhookop.d.ts.map +1 -1
- package/esm/models/createwebhookop.js +2 -0
- package/esm/models/createwebhookop.js.map +1 -1
- package/esm/models/getaliasop.d.ts +108 -0
- package/esm/models/getaliasop.d.ts.map +1 -1
- package/esm/models/getaliasop.js +84 -0
- package/esm/models/getaliasop.js.map +1 -1
- package/esm/models/getprojectsop.d.ts +9 -0
- package/esm/models/getprojectsop.d.ts.map +1 -1
- package/esm/models/getprojectsop.js +6 -0
- package/esm/models/getprojectsop.js.map +1 -1
- package/esm/models/getwebhookop.d.ts +3 -0
- package/esm/models/getwebhookop.d.ts.map +1 -1
- package/esm/models/getwebhookop.js +1 -0
- package/esm/models/getwebhookop.js.map +1 -1
- package/esm/models/getwebhooksop.d.ts +6 -0
- package/esm/models/getwebhooksop.d.ts.map +1 -1
- package/esm/models/getwebhooksop.js +2 -0
- package/esm/models/getwebhooksop.js.map +1 -1
- package/esm/models/importresourceop.d.ts +43 -6
- package/esm/models/importresourceop.d.ts.map +1 -1
- package/esm/models/importresourceop.js +31 -2
- package/esm/models/importresourceop.js.map +1 -1
- package/esm/models/listaliasesop.d.ts +108 -0
- package/esm/models/listaliasesop.d.ts.map +1 -1
- package/esm/models/listaliasesop.js +85 -0
- package/esm/models/listaliasesop.js.map +1 -1
- package/esm/models/listauthtokensop.d.ts +0 -5
- package/esm/models/listauthtokensop.d.ts.map +1 -1
- package/esm/models/listauthtokensop.js +0 -2
- package/esm/models/listauthtokensop.js.map +1 -1
- package/esm/models/teamlimited.d.ts +29 -2
- package/esm/models/teamlimited.d.ts.map +1 -1
- package/esm/models/teamlimited.js +31 -2
- package/esm/models/teamlimited.js.map +1 -1
- package/esm/models/updateprojectdatacacheop.d.ts +9 -0
- package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
- package/esm/models/updateprojectdatacacheop.js +6 -0
- package/esm/models/updateprojectdatacacheop.js.map +1 -1
- package/esm/models/updateprojectop.d.ts +18 -9
- package/esm/models/updateprojectop.d.ts.map +1 -1
- package/esm/models/updateprojectop.js +9 -3
- package/esm/models/updateprojectop.js.map +1 -1
- package/esm/models/updateresourcesecretsbyidop.d.ts +43 -6
- package/esm/models/updateresourcesecretsbyidop.d.ts.map +1 -1
- package/esm/models/updateresourcesecretsbyidop.js +31 -2
- package/esm/models/updateresourcesecretsbyidop.js.map +1 -1
- package/esm/models/updateresourcesecretsop.d.ts +43 -6
- package/esm/models/updateresourcesecretsop.d.ts.map +1 -1
- package/esm/models/updateresourcesecretsop.js +33 -2
- package/esm/models/updateresourcesecretsop.js.map +1 -1
- package/esm/models/userevent.d.ts +1096 -1068
- package/esm/models/userevent.d.ts.map +1 -1
- package/esm/models/userevent.js +1384 -1355
- package/esm/models/userevent.js.map +1 -1
- package/jsr.json +1 -1
- package/package.json +2 -2
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/createdeploymentop.ts +75 -53
- package/src/models/createprojectop.ts +15 -0
- package/src/models/createwebhookop.ts +2 -0
- package/src/models/getaliasop.ts +204 -0
- package/src/models/getprojectsop.ts +15 -0
- package/src/models/getwebhookop.ts +1 -0
- package/src/models/getwebhooksop.ts +2 -0
- package/src/models/importresourceop.ts +92 -4
- package/src/models/listaliasesop.ts +213 -0
- package/src/models/listauthtokensop.ts +0 -7
- package/src/models/teamlimited.ts +56 -4
- package/src/models/updateprojectdatacacheop.ts +15 -0
- package/src/models/updateprojectop.ts +18 -3
- package/src/models/updateresourcesecretsbyidop.ts +103 -4
- package/src/models/updateresourcesecretsop.ts +84 -4
- package/src/models/userevent.ts +2506 -2435
- package/vercel-spec.json +270 -34
package/vercel-spec.json
CHANGED
|
@@ -5921,6 +5921,10 @@
|
|
|
5921
5921
|
},
|
|
5922
5922
|
"type": "array",
|
|
5923
5923
|
"description": "An array of all the stages required during a deployment release. each stage requires an approval before advancing to the next stage."
|
|
5924
|
+
},
|
|
5925
|
+
"canaryResponseHeader": {
|
|
5926
|
+
"type": "boolean",
|
|
5927
|
+
"description": "Whether the request served by a canary deployment should return a header indicating a canary was served. Defaults to `false` when omitted."
|
|
5924
5928
|
}
|
|
5925
5929
|
},
|
|
5926
5930
|
"required": [
|
|
@@ -7322,6 +7326,18 @@
|
|
|
7322
7326
|
},
|
|
7323
7327
|
"type": "array"
|
|
7324
7328
|
},
|
|
7329
|
+
"projectCheck": {
|
|
7330
|
+
"items": {
|
|
7331
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
7332
|
+
},
|
|
7333
|
+
"type": "array"
|
|
7334
|
+
},
|
|
7335
|
+
"projectCheckRun": {
|
|
7336
|
+
"items": {
|
|
7337
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
7338
|
+
},
|
|
7339
|
+
"type": "array"
|
|
7340
|
+
},
|
|
7325
7341
|
"projectDeploymentHook": {
|
|
7326
7342
|
"items": {
|
|
7327
7343
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -12617,25 +12633,25 @@
|
|
|
12617
12633
|
"lambdas": {
|
|
12618
12634
|
"items": {
|
|
12619
12635
|
"properties": {
|
|
12620
|
-
"id": {
|
|
12621
|
-
"type": "string"
|
|
12622
|
-
},
|
|
12623
12636
|
"createdAt": {
|
|
12624
12637
|
"type": "number"
|
|
12625
12638
|
},
|
|
12626
|
-
"
|
|
12627
|
-
"nullable": true,
|
|
12639
|
+
"id": {
|
|
12628
12640
|
"type": "string"
|
|
12629
12641
|
},
|
|
12630
12642
|
"readyState": {
|
|
12631
12643
|
"type": "string",
|
|
12632
12644
|
"enum": [
|
|
12633
|
-
"BUILDING",
|
|
12634
12645
|
"ERROR",
|
|
12646
|
+
"BUILDING",
|
|
12635
12647
|
"INITIALIZING",
|
|
12636
12648
|
"READY"
|
|
12637
12649
|
]
|
|
12638
12650
|
},
|
|
12651
|
+
"entrypoint": {
|
|
12652
|
+
"nullable": true,
|
|
12653
|
+
"type": "string"
|
|
12654
|
+
},
|
|
12639
12655
|
"readyStateAt": {
|
|
12640
12656
|
"type": "number"
|
|
12641
12657
|
},
|
|
@@ -12747,9 +12763,9 @@
|
|
|
12747
12763
|
"type": {
|
|
12748
12764
|
"type": "string",
|
|
12749
12765
|
"enum": [
|
|
12766
|
+
"endsWith",
|
|
12750
12767
|
"startsWith",
|
|
12751
|
-
"equals"
|
|
12752
|
-
"endsWith"
|
|
12768
|
+
"equals"
|
|
12753
12769
|
],
|
|
12754
12770
|
"description": "The type of matching to perform"
|
|
12755
12771
|
},
|
|
@@ -13676,15 +13692,15 @@
|
|
|
13676
13692
|
"functionType": {
|
|
13677
13693
|
"type": "string",
|
|
13678
13694
|
"enum": [
|
|
13679
|
-
"
|
|
13680
|
-
"
|
|
13695
|
+
"standard",
|
|
13696
|
+
"fluid"
|
|
13681
13697
|
]
|
|
13682
13698
|
},
|
|
13683
13699
|
"functionMemoryType": {
|
|
13684
13700
|
"type": "string",
|
|
13685
13701
|
"enum": [
|
|
13686
|
-
"standard",
|
|
13687
13702
|
"standard_legacy",
|
|
13703
|
+
"standard",
|
|
13688
13704
|
"performance"
|
|
13689
13705
|
]
|
|
13690
13706
|
},
|
|
@@ -13914,11 +13930,11 @@
|
|
|
13914
13930
|
"type": "string",
|
|
13915
13931
|
"enum": [
|
|
13916
13932
|
"error",
|
|
13933
|
+
"resource",
|
|
13917
13934
|
"filesystem",
|
|
13918
13935
|
"hit",
|
|
13919
13936
|
"miss",
|
|
13920
|
-
"rewrite"
|
|
13921
|
-
"resource"
|
|
13937
|
+
"rewrite"
|
|
13922
13938
|
]
|
|
13923
13939
|
},
|
|
13924
13940
|
"src": {
|
|
@@ -14028,8 +14044,8 @@
|
|
|
14028
14044
|
"ownerType": {
|
|
14029
14045
|
"type": "string",
|
|
14030
14046
|
"enum": [
|
|
14031
|
-
"
|
|
14032
|
-
"
|
|
14047
|
+
"user",
|
|
14048
|
+
"team"
|
|
14033
14049
|
]
|
|
14034
14050
|
}
|
|
14035
14051
|
},
|
|
@@ -14081,8 +14097,8 @@
|
|
|
14081
14097
|
"ownerType": {
|
|
14082
14098
|
"type": "string",
|
|
14083
14099
|
"enum": [
|
|
14084
|
-
"
|
|
14085
|
-
"
|
|
14100
|
+
"user",
|
|
14101
|
+
"team"
|
|
14086
14102
|
]
|
|
14087
14103
|
}
|
|
14088
14104
|
},
|
|
@@ -14135,8 +14151,8 @@
|
|
|
14135
14151
|
"ownerType": {
|
|
14136
14152
|
"type": "string",
|
|
14137
14153
|
"enum": [
|
|
14138
|
-
"
|
|
14139
|
-
"
|
|
14154
|
+
"user",
|
|
14155
|
+
"team"
|
|
14140
14156
|
]
|
|
14141
14157
|
}
|
|
14142
14158
|
},
|
|
@@ -24159,8 +24175,19 @@
|
|
|
24159
24175
|
"environmentOverrides": {
|
|
24160
24176
|
"type": "object",
|
|
24161
24177
|
"description": "A map of environments to override values for the secret, used for setting different values across deployments in production, preview, and development environments. Note: the same value will be used for all deployments in the given environment.",
|
|
24162
|
-
"
|
|
24163
|
-
"
|
|
24178
|
+
"properties": {
|
|
24179
|
+
"development": {
|
|
24180
|
+
"type": "string",
|
|
24181
|
+
"description": "Value used for development environment."
|
|
24182
|
+
},
|
|
24183
|
+
"preview": {
|
|
24184
|
+
"type": "string",
|
|
24185
|
+
"description": "Value used for preview environment."
|
|
24186
|
+
},
|
|
24187
|
+
"production": {
|
|
24188
|
+
"type": "string",
|
|
24189
|
+
"description": "Value used for production environment."
|
|
24190
|
+
}
|
|
24164
24191
|
}
|
|
24165
24192
|
}
|
|
24166
24193
|
},
|
|
@@ -24282,8 +24309,19 @@
|
|
|
24282
24309
|
"environmentOverrides": {
|
|
24283
24310
|
"type": "object",
|
|
24284
24311
|
"description": "A map of environments to override values for the secret, used for setting different values across deployments in production, preview, and development environments. Note: the same value will be used for all deployments in the given environment.",
|
|
24285
|
-
"
|
|
24286
|
-
"
|
|
24312
|
+
"properties": {
|
|
24313
|
+
"development": {
|
|
24314
|
+
"type": "string",
|
|
24315
|
+
"description": "Value used for development environment."
|
|
24316
|
+
},
|
|
24317
|
+
"preview": {
|
|
24318
|
+
"type": "string",
|
|
24319
|
+
"description": "Value used for preview environment."
|
|
24320
|
+
},
|
|
24321
|
+
"production": {
|
|
24322
|
+
"type": "string",
|
|
24323
|
+
"description": "Value used for production environment."
|
|
24324
|
+
}
|
|
24287
24325
|
}
|
|
24288
24326
|
}
|
|
24289
24327
|
},
|
|
@@ -24538,8 +24576,19 @@
|
|
|
24538
24576
|
"environmentOverrides": {
|
|
24539
24577
|
"type": "object",
|
|
24540
24578
|
"description": "A map of environments to override values for the secret, used for setting different values across deployments in production, preview, and development environments. Note: the same value will be used for all deployments in the given environment.",
|
|
24541
|
-
"
|
|
24542
|
-
"
|
|
24579
|
+
"properties": {
|
|
24580
|
+
"development": {
|
|
24581
|
+
"type": "string",
|
|
24582
|
+
"description": "Value used for development environment."
|
|
24583
|
+
},
|
|
24584
|
+
"preview": {
|
|
24585
|
+
"type": "string",
|
|
24586
|
+
"description": "Value used for preview environment."
|
|
24587
|
+
},
|
|
24588
|
+
"production": {
|
|
24589
|
+
"type": "string",
|
|
24590
|
+
"description": "Value used for production environment."
|
|
24591
|
+
}
|
|
24543
24592
|
}
|
|
24544
24593
|
}
|
|
24545
24594
|
},
|
|
@@ -29558,6 +29607,10 @@
|
|
|
29558
29607
|
},
|
|
29559
29608
|
"type": "array",
|
|
29560
29609
|
"description": "An array of all the stages required during a deployment release. each stage requires an approval before advancing to the next stage."
|
|
29610
|
+
},
|
|
29611
|
+
"canaryResponseHeader": {
|
|
29612
|
+
"type": "boolean",
|
|
29613
|
+
"description": "Whether the request served by a canary deployment should return a header indicating a canary was served. Defaults to `false` when omitted."
|
|
29561
29614
|
}
|
|
29562
29615
|
},
|
|
29563
29616
|
"required": [
|
|
@@ -30959,6 +31012,18 @@
|
|
|
30959
31012
|
},
|
|
30960
31013
|
"type": "array"
|
|
30961
31014
|
},
|
|
31015
|
+
"projectCheck": {
|
|
31016
|
+
"items": {
|
|
31017
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
31018
|
+
},
|
|
31019
|
+
"type": "array"
|
|
31020
|
+
},
|
|
31021
|
+
"projectCheckRun": {
|
|
31022
|
+
"items": {
|
|
31023
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
31024
|
+
},
|
|
31025
|
+
"type": "array"
|
|
31026
|
+
},
|
|
30962
31027
|
"projectDeploymentHook": {
|
|
30963
31028
|
"items": {
|
|
30964
31029
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -33695,6 +33760,10 @@
|
|
|
33695
33760
|
},
|
|
33696
33761
|
"type": "array",
|
|
33697
33762
|
"description": "An array of all the stages required during a deployment release. each stage requires an approval before advancing to the next stage."
|
|
33763
|
+
},
|
|
33764
|
+
"canaryResponseHeader": {
|
|
33765
|
+
"type": "boolean",
|
|
33766
|
+
"description": "Whether the request served by a canary deployment should return a header indicating a canary was served. Defaults to `false` when omitted."
|
|
33698
33767
|
}
|
|
33699
33768
|
},
|
|
33700
33769
|
"required": [
|
|
@@ -35096,6 +35165,18 @@
|
|
|
35096
35165
|
},
|
|
35097
35166
|
"type": "array"
|
|
35098
35167
|
},
|
|
35168
|
+
"projectCheck": {
|
|
35169
|
+
"items": {
|
|
35170
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35171
|
+
},
|
|
35172
|
+
"type": "array"
|
|
35173
|
+
},
|
|
35174
|
+
"projectCheckRun": {
|
|
35175
|
+
"items": {
|
|
35176
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35177
|
+
},
|
|
35178
|
+
"type": "array"
|
|
35179
|
+
},
|
|
35099
35180
|
"projectDeploymentHook": {
|
|
35100
35181
|
"items": {
|
|
35101
35182
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -38017,6 +38098,10 @@
|
|
|
38017
38098
|
},
|
|
38018
38099
|
"type": "array",
|
|
38019
38100
|
"description": "An array of all the stages required during a deployment release. each stage requires an approval before advancing to the next stage."
|
|
38101
|
+
},
|
|
38102
|
+
"canaryResponseHeader": {
|
|
38103
|
+
"type": "boolean",
|
|
38104
|
+
"description": "Whether the request served by a canary deployment should return a header indicating a canary was served. Defaults to `false` when omitted."
|
|
38020
38105
|
}
|
|
38021
38106
|
},
|
|
38022
38107
|
"required": [
|
|
@@ -39418,6 +39503,18 @@
|
|
|
39418
39503
|
},
|
|
39419
39504
|
"type": "array"
|
|
39420
39505
|
},
|
|
39506
|
+
"projectCheck": {
|
|
39507
|
+
"items": {
|
|
39508
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
39509
|
+
},
|
|
39510
|
+
"type": "array"
|
|
39511
|
+
},
|
|
39512
|
+
"projectCheckRun": {
|
|
39513
|
+
"items": {
|
|
39514
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
39515
|
+
},
|
|
39516
|
+
"type": "array"
|
|
39517
|
+
},
|
|
39421
39518
|
"projectDeploymentHook": {
|
|
39422
39519
|
"items": {
|
|
39423
39520
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -40619,10 +40716,10 @@
|
|
|
40619
40716
|
"type": "string",
|
|
40620
40717
|
"enum": [
|
|
40621
40718
|
"system",
|
|
40622
|
-
"secret",
|
|
40623
40719
|
"encrypted",
|
|
40624
40720
|
"plain",
|
|
40625
|
-
"sensitive"
|
|
40721
|
+
"sensitive",
|
|
40722
|
+
"secret"
|
|
40626
40723
|
]
|
|
40627
40724
|
},
|
|
40628
40725
|
"sunsetSecretId": {
|
|
@@ -42043,6 +42140,10 @@
|
|
|
42043
42140
|
},
|
|
42044
42141
|
"type": "array",
|
|
42045
42142
|
"description": "An array of all the stages required during a deployment release. each stage requires an approval before advancing to the next stage."
|
|
42143
|
+
},
|
|
42144
|
+
"canaryResponseHeader": {
|
|
42145
|
+
"type": "boolean",
|
|
42146
|
+
"description": "Whether the request served by a canary deployment should return a header indicating a canary was served. Defaults to `false` when omitted."
|
|
42046
42147
|
}
|
|
42047
42148
|
},
|
|
42048
42149
|
"required": [
|
|
@@ -43444,6 +43545,18 @@
|
|
|
43444
43545
|
},
|
|
43445
43546
|
"type": "array"
|
|
43446
43547
|
},
|
|
43548
|
+
"projectCheck": {
|
|
43549
|
+
"items": {
|
|
43550
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
43551
|
+
},
|
|
43552
|
+
"type": "array"
|
|
43553
|
+
},
|
|
43554
|
+
"projectCheckRun": {
|
|
43555
|
+
"items": {
|
|
43556
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
43557
|
+
},
|
|
43558
|
+
"type": "array"
|
|
43559
|
+
},
|
|
43447
43560
|
"projectDeploymentHook": {
|
|
43448
43561
|
"items": {
|
|
43449
43562
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -43956,8 +44069,8 @@
|
|
|
43956
44069
|
"type": {
|
|
43957
44070
|
"type": "string",
|
|
43958
44071
|
"enum": [
|
|
43959
|
-
"host",
|
|
43960
44072
|
"path",
|
|
44073
|
+
"host",
|
|
43961
44074
|
"method",
|
|
43962
44075
|
"header",
|
|
43963
44076
|
"cookie",
|
|
@@ -44038,8 +44151,8 @@
|
|
|
44038
44151
|
"type": {
|
|
44039
44152
|
"type": "string",
|
|
44040
44153
|
"enum": [
|
|
44041
|
-
"host",
|
|
44042
44154
|
"path",
|
|
44155
|
+
"host",
|
|
44043
44156
|
"method",
|
|
44044
44157
|
"header",
|
|
44045
44158
|
"cookie",
|
|
@@ -60692,9 +60805,6 @@
|
|
|
60692
60805
|
},
|
|
60693
60806
|
"type": "array"
|
|
60694
60807
|
},
|
|
60695
|
-
"testingToken": {
|
|
60696
|
-
"$ref": "#/components/schemas/AuthToken"
|
|
60697
|
-
},
|
|
60698
60808
|
"pagination": {
|
|
60699
60809
|
"$ref": "#/components/schemas/Pagination"
|
|
60700
60810
|
}
|
|
@@ -61241,6 +61351,7 @@
|
|
|
61241
61351
|
"integration-resource.project-disconnected",
|
|
61242
61352
|
"project.created",
|
|
61243
61353
|
"project.removed",
|
|
61354
|
+
"project.domain.verified",
|
|
61244
61355
|
"project.rolling-release.started",
|
|
61245
61356
|
"project.rolling-release.aborted",
|
|
61246
61357
|
"project.rolling-release.completed",
|
|
@@ -61292,6 +61403,7 @@
|
|
|
61292
61403
|
"integration-resource.project-disconnected",
|
|
61293
61404
|
"project.created",
|
|
61294
61405
|
"project.removed",
|
|
61406
|
+
"project.domain.verified",
|
|
61295
61407
|
"project.rolling-release.started",
|
|
61296
61408
|
"project.rolling-release.aborted",
|
|
61297
61409
|
"project.rolling-release.completed",
|
|
@@ -61461,6 +61573,7 @@
|
|
|
61461
61573
|
"integration-resource.project-disconnected",
|
|
61462
61574
|
"project.created",
|
|
61463
61575
|
"project.removed",
|
|
61576
|
+
"project.domain.verified",
|
|
61464
61577
|
"project.rolling-release.started",
|
|
61465
61578
|
"project.rolling-release.aborted",
|
|
61466
61579
|
"project.rolling-release.completed",
|
|
@@ -61510,6 +61623,7 @@
|
|
|
61510
61623
|
"integration-resource.project-disconnected",
|
|
61511
61624
|
"project.created",
|
|
61512
61625
|
"project.removed",
|
|
61626
|
+
"project.domain.verified",
|
|
61513
61627
|
"project.rolling-release.started",
|
|
61514
61628
|
"project.rolling-release.aborted",
|
|
61515
61629
|
"project.rolling-release.completed",
|
|
@@ -61676,6 +61790,7 @@
|
|
|
61676
61790
|
"integration-resource.project-disconnected",
|
|
61677
61791
|
"project.created",
|
|
61678
61792
|
"project.removed",
|
|
61793
|
+
"project.domain.verified",
|
|
61679
61794
|
"project.rolling-release.started",
|
|
61680
61795
|
"project.rolling-release.aborted",
|
|
61681
61796
|
"project.rolling-release.completed",
|
|
@@ -61727,6 +61842,7 @@
|
|
|
61727
61842
|
"integration-resource.project-disconnected",
|
|
61728
61843
|
"project.created",
|
|
61729
61844
|
"project.removed",
|
|
61845
|
+
"project.domain.verified",
|
|
61730
61846
|
"project.rolling-release.started",
|
|
61731
61847
|
"project.rolling-release.aborted",
|
|
61732
61848
|
"project.rolling-release.completed",
|
|
@@ -61836,6 +61952,7 @@
|
|
|
61836
61952
|
"integration-resource.project-disconnected",
|
|
61837
61953
|
"project.created",
|
|
61838
61954
|
"project.removed",
|
|
61955
|
+
"project.domain.verified",
|
|
61839
61956
|
"project.rolling-release.started",
|
|
61840
61957
|
"project.rolling-release.aborted",
|
|
61841
61958
|
"project.rolling-release.completed",
|
|
@@ -61887,6 +62004,7 @@
|
|
|
61887
62004
|
"integration-resource.project-disconnected",
|
|
61888
62005
|
"project.created",
|
|
61889
62006
|
"project.removed",
|
|
62007
|
+
"project.domain.verified",
|
|
61890
62008
|
"project.rolling-release.started",
|
|
61891
62009
|
"project.rolling-release.aborted",
|
|
61892
62010
|
"project.rolling-release.completed",
|
|
@@ -62071,6 +62189,7 @@
|
|
|
62071
62189
|
"integration-resource.project-disconnected",
|
|
62072
62190
|
"project.created",
|
|
62073
62191
|
"project.removed",
|
|
62192
|
+
"project.domain.verified",
|
|
62074
62193
|
"project.rolling-release.started",
|
|
62075
62194
|
"project.rolling-release.aborted",
|
|
62076
62195
|
"project.rolling-release.completed",
|
|
@@ -62122,6 +62241,7 @@
|
|
|
62122
62241
|
"integration-resource.project-disconnected",
|
|
62123
62242
|
"project.created",
|
|
62124
62243
|
"project.removed",
|
|
62244
|
+
"project.domain.verified",
|
|
62125
62245
|
"project.rolling-release.started",
|
|
62126
62246
|
"project.rolling-release.aborted",
|
|
62127
62247
|
"project.rolling-release.completed",
|
|
@@ -62970,6 +63090,52 @@
|
|
|
62970
63090
|
},
|
|
62971
63091
|
"type": "object",
|
|
62972
63092
|
"description": "The protection bypass for the alias"
|
|
63093
|
+
},
|
|
63094
|
+
"microfrontends": {
|
|
63095
|
+
"properties": {
|
|
63096
|
+
"defaultApp": {
|
|
63097
|
+
"properties": {
|
|
63098
|
+
"projectId": {
|
|
63099
|
+
"type": "string"
|
|
63100
|
+
}
|
|
63101
|
+
},
|
|
63102
|
+
"required": [
|
|
63103
|
+
"projectId"
|
|
63104
|
+
],
|
|
63105
|
+
"type": "object"
|
|
63106
|
+
},
|
|
63107
|
+
"applications": {
|
|
63108
|
+
"additionalProperties": {
|
|
63109
|
+
"properties": {
|
|
63110
|
+
"fallbackHost": {
|
|
63111
|
+
"type": "string",
|
|
63112
|
+
"description": "This is always set and is the fallback host to send the request to if there is no deployment ID."
|
|
63113
|
+
},
|
|
63114
|
+
"deploymentId": {
|
|
63115
|
+
"type": "string",
|
|
63116
|
+
"description": "This is only set if there are changes to the application. This is the deployment ID to use for requests to that application. If this is unset, requests will be sent to the `fallbackHost`."
|
|
63117
|
+
},
|
|
63118
|
+
"deploymentUrl": {
|
|
63119
|
+
"type": "string",
|
|
63120
|
+
"description": "This is used and set in the exact same way as `deploymentId`."
|
|
63121
|
+
}
|
|
63122
|
+
},
|
|
63123
|
+
"required": [
|
|
63124
|
+
"fallbackHost"
|
|
63125
|
+
],
|
|
63126
|
+
"type": "object",
|
|
63127
|
+
"description": "A mapping from `projectId` to information that should be used if the path is routed to that particular project."
|
|
63128
|
+
},
|
|
63129
|
+
"type": "object",
|
|
63130
|
+
"description": "A mapping from `projectId` to information that should be used if the path is routed to that particular project."
|
|
63131
|
+
}
|
|
63132
|
+
},
|
|
63133
|
+
"required": [
|
|
63134
|
+
"defaultApp",
|
|
63135
|
+
"applications"
|
|
63136
|
+
],
|
|
63137
|
+
"type": "object",
|
|
63138
|
+
"description": "The microfrontends for the alias including the routing configuration"
|
|
62973
63139
|
}
|
|
62974
63140
|
},
|
|
62975
63141
|
"required": [
|
|
@@ -63381,6 +63547,52 @@
|
|
|
63381
63547
|
},
|
|
63382
63548
|
"type": "object",
|
|
63383
63549
|
"description": "The protection bypass for the alias"
|
|
63550
|
+
},
|
|
63551
|
+
"microfrontends": {
|
|
63552
|
+
"properties": {
|
|
63553
|
+
"defaultApp": {
|
|
63554
|
+
"properties": {
|
|
63555
|
+
"projectId": {
|
|
63556
|
+
"type": "string"
|
|
63557
|
+
}
|
|
63558
|
+
},
|
|
63559
|
+
"required": [
|
|
63560
|
+
"projectId"
|
|
63561
|
+
],
|
|
63562
|
+
"type": "object"
|
|
63563
|
+
},
|
|
63564
|
+
"applications": {
|
|
63565
|
+
"additionalProperties": {
|
|
63566
|
+
"properties": {
|
|
63567
|
+
"fallbackHost": {
|
|
63568
|
+
"type": "string",
|
|
63569
|
+
"description": "This is always set and is the fallback host to send the request to if there is no deployment ID."
|
|
63570
|
+
},
|
|
63571
|
+
"deploymentId": {
|
|
63572
|
+
"type": "string",
|
|
63573
|
+
"description": "This is only set if there are changes to the application. This is the deployment ID to use for requests to that application. If this is unset, requests will be sent to the `fallbackHost`."
|
|
63574
|
+
},
|
|
63575
|
+
"deploymentUrl": {
|
|
63576
|
+
"type": "string",
|
|
63577
|
+
"description": "This is used and set in the exact same way as `deploymentId`."
|
|
63578
|
+
}
|
|
63579
|
+
},
|
|
63580
|
+
"required": [
|
|
63581
|
+
"fallbackHost"
|
|
63582
|
+
],
|
|
63583
|
+
"type": "object",
|
|
63584
|
+
"description": "A mapping from `projectId` to information that should be used if the path is routed to that particular project."
|
|
63585
|
+
},
|
|
63586
|
+
"type": "object",
|
|
63587
|
+
"description": "A mapping from `projectId` to information that should be used if the path is routed to that particular project."
|
|
63588
|
+
}
|
|
63589
|
+
},
|
|
63590
|
+
"required": [
|
|
63591
|
+
"defaultApp",
|
|
63592
|
+
"applications"
|
|
63593
|
+
],
|
|
63594
|
+
"type": "object",
|
|
63595
|
+
"description": "The microfrontends for the alias including the routing configuration"
|
|
63384
63596
|
}
|
|
63385
63597
|
},
|
|
63386
63598
|
"required": [
|
|
@@ -70388,6 +70600,18 @@
|
|
|
70388
70600
|
"type": "object",
|
|
70389
70601
|
"description": "The payload of the event, if requested."
|
|
70390
70602
|
},
|
|
70603
|
+
{
|
|
70604
|
+
"properties": {
|
|
70605
|
+
"projectName": {
|
|
70606
|
+
"type": "string"
|
|
70607
|
+
}
|
|
70608
|
+
},
|
|
70609
|
+
"required": [
|
|
70610
|
+
"projectName"
|
|
70611
|
+
],
|
|
70612
|
+
"type": "object",
|
|
70613
|
+
"description": "The payload of the event, if requested."
|
|
70614
|
+
},
|
|
70391
70615
|
{
|
|
70392
70616
|
"properties": {
|
|
70393
70617
|
"plan": {
|
|
@@ -73376,8 +73600,20 @@
|
|
|
73376
73600
|
"type": "object",
|
|
73377
73601
|
"description": "When \"Single Sign-On (SAML)\" is configured, this object contains information that allows the client-side to identify whether or not this Team has SAML enforced."
|
|
73378
73602
|
},
|
|
73379
|
-
"
|
|
73380
|
-
"
|
|
73603
|
+
"mfa": {
|
|
73604
|
+
"properties": {
|
|
73605
|
+
"enforced": {
|
|
73606
|
+
"type": "boolean"
|
|
73607
|
+
},
|
|
73608
|
+
"updatedAt": {
|
|
73609
|
+
"type": "number"
|
|
73610
|
+
}
|
|
73611
|
+
},
|
|
73612
|
+
"required": [
|
|
73613
|
+
"enforced",
|
|
73614
|
+
"updatedAt"
|
|
73615
|
+
],
|
|
73616
|
+
"type": "object"
|
|
73381
73617
|
},
|
|
73382
73618
|
"id": {
|
|
73383
73619
|
"type": "string",
|