@vercel/sdk 1.17.4 → 1.17.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 +1594 -1509
- package/bin/mcp-server.js.map +17 -17
- package/esm/__tests__/accessgroups.test.js +1 -3
- package/esm/__tests__/accessgroups.test.js.map +1 -1
- package/esm/__tests__/checks.test.js +1 -1
- package/esm/__tests__/checks.test.js.map +1 -1
- package/esm/__tests__/domains.test.js +11 -2
- package/esm/__tests__/domains.test.js.map +1 -1
- package/esm/__tests__/edgeconfig.test.js +6 -6
- package/esm/__tests__/edgeconfig.test.js.map +1 -1
- package/esm/__tests__/integrations.test.js +1 -1
- package/esm/__tests__/rollingrelease.test.js +6 -2
- package/esm/__tests__/rollingrelease.test.js.map +1 -1
- package/esm/__tests__/security.test.js +4 -4
- package/esm/__tests__/security.test.js.map +1 -1
- package/esm/__tests__/teams.test.js +2 -2
- package/esm/__tests__/teams.test.js.map +1 -1
- package/esm/funcs/marketplaceImportResource.js +2 -2
- package/esm/funcs/marketplaceImportResource.js.map +1 -1
- package/esm/lib/config.d.ts +3 -3
- package/esm/lib/config.js +3 -3
- package/esm/mcp-server/mcp-server.js +1 -1
- package/esm/mcp-server/server.js +1 -1
- package/esm/models/canceldeploymentop.d.ts +2 -37
- package/esm/models/canceldeploymentop.d.ts.map +1 -1
- package/esm/models/canceldeploymentop.js +2 -23
- package/esm/models/canceldeploymentop.js.map +1 -1
- package/esm/models/createdeploymentop.d.ts +2 -37
- package/esm/models/createdeploymentop.d.ts.map +1 -1
- package/esm/models/createdeploymentop.js +2 -22
- package/esm/models/createdeploymentop.js.map +1 -1
- package/esm/models/createintegrationstoredirectop.d.ts +152 -152
- package/esm/models/createintegrationstoredirectop.js +218 -218
- package/esm/models/createprojectop.d.ts +18 -18
- package/esm/models/createprojectop.d.ts.map +1 -1
- package/esm/models/createprojectop.js +18 -18
- package/esm/models/createprojectop.js.map +1 -1
- package/esm/models/getconfigurationproductsop.d.ts +200 -200
- package/esm/models/getconfigurationproductsop.js +290 -290
- package/esm/models/getdeploymentop.d.ts +2 -37
- package/esm/models/getdeploymentop.d.ts.map +1 -1
- package/esm/models/getdeploymentop.js +2 -22
- package/esm/models/getdeploymentop.js.map +1 -1
- package/esm/models/getmemberop.d.ts +4 -0
- package/esm/models/getmemberop.d.ts.map +1 -1
- package/esm/models/getmemberop.js +4 -0
- package/esm/models/getmemberop.js.map +1 -1
- package/esm/models/team.d.ts +21 -11
- package/esm/models/team.d.ts.map +1 -1
- package/esm/models/team.js +12 -8
- package/esm/models/team.js.map +1 -1
- package/esm/models/teamlimited.d.ts +10 -0
- package/esm/models/teamlimited.d.ts.map +1 -1
- package/esm/models/teamlimited.js +4 -0
- package/esm/models/teamlimited.js.map +1 -1
- package/esm/models/updateprojectop.d.ts +18 -18
- package/esm/models/updateprojectop.d.ts.map +1 -1
- package/esm/models/updateprojectop.js +18 -18
- package/esm/models/updateprojectop.js.map +1 -1
- package/esm/models/userevent.d.ts +1599 -1433
- package/esm/models/userevent.d.ts.map +1 -1
- package/esm/models/userevent.js +2124 -1947
- package/esm/models/userevent.js.map +1 -1
- package/esm/types/enums.d.ts +1 -8
- package/esm/types/enums.d.ts.map +1 -1
- package/esm/types/enums.js +1 -18
- package/esm/types/enums.js.map +1 -1
- package/esm/types/unrecognized.d.ts +10 -0
- package/esm/types/unrecognized.d.ts.map +1 -0
- package/esm/types/unrecognized.js +23 -0
- package/esm/types/unrecognized.js.map +1 -0
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/__tests__/accessgroups.test.ts +1 -3
- package/src/__tests__/checks.test.ts +1 -1
- package/src/__tests__/domains.test.ts +11 -2
- package/src/__tests__/edgeconfig.test.ts +6 -6
- package/src/__tests__/integrations.test.ts +1 -1
- package/src/__tests__/rollingrelease.test.ts +6 -2
- package/src/__tests__/security.test.ts +4 -4
- package/src/__tests__/teams.test.ts +2 -2
- package/src/funcs/marketplaceImportResource.ts +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/canceldeploymentop.ts +4 -76
- package/src/models/createdeploymentop.ts +4 -87
- package/src/models/createintegrationstoredirectop.ts +471 -471
- package/src/models/createprojectop.ts +30 -30
- package/src/models/getconfigurationproductsop.ts +627 -627
- package/src/models/getdeploymentop.ts +4 -88
- package/src/models/getmemberop.ts +8 -0
- package/src/models/team.ts +29 -15
- package/src/models/teamlimited.ts +14 -0
- package/src/models/updateprojectop.ts +30 -30
- package/src/models/userevent.ts +4882 -4390
- package/src/types/enums.ts +1 -21
- package/src/types/unrecognized.ts +27 -0
- package/vercel-spec.json +356 -244
package/vercel-spec.json
CHANGED
|
@@ -11553,6 +11553,12 @@
|
|
|
11553
11553
|
"type": "array"
|
|
11554
11554
|
}
|
|
11555
11555
|
]
|
|
11556
|
+
},
|
|
11557
|
+
"env": {
|
|
11558
|
+
"items": {
|
|
11559
|
+
"type": "string"
|
|
11560
|
+
},
|
|
11561
|
+
"type": "array"
|
|
11556
11562
|
}
|
|
11557
11563
|
},
|
|
11558
11564
|
"required": [
|
|
@@ -11911,33 +11917,6 @@
|
|
|
11911
11917
|
"isDefaultApp": {
|
|
11912
11918
|
"type": "boolean"
|
|
11913
11919
|
},
|
|
11914
|
-
"applications": {
|
|
11915
|
-
"additionalProperties": {
|
|
11916
|
-
"properties": {
|
|
11917
|
-
"isDefaultApp": {
|
|
11918
|
-
"type": "boolean"
|
|
11919
|
-
},
|
|
11920
|
-
"productionHost": {
|
|
11921
|
-
"type": "string",
|
|
11922
|
-
"description": "This is the production alias, it will always show the most up to date of each application."
|
|
11923
|
-
},
|
|
11924
|
-
"deploymentAlias": {
|
|
11925
|
-
"type": "string",
|
|
11926
|
-
"description": "Use the fixed deploymentAlias and deploymentHost so that the microfrontend preview stays in sync with the deployment. These are only present for mono-repos when a single commit creates multiple deployments. If they are not present, productionHost will be used."
|
|
11927
|
-
},
|
|
11928
|
-
"deploymentHost": {
|
|
11929
|
-
"type": "string"
|
|
11930
|
-
}
|
|
11931
|
-
},
|
|
11932
|
-
"required": [
|
|
11933
|
-
"productionHost"
|
|
11934
|
-
],
|
|
11935
|
-
"type": "object",
|
|
11936
|
-
"description": "A map of the other applications that are part of this group. Only defined on the default application. The field is set after deployments have been created, so can be undefined, but should be there for a successful deployment. Note: this field will be removed when MFE alias routing is fully rolled out."
|
|
11937
|
-
},
|
|
11938
|
-
"type": "object",
|
|
11939
|
-
"description": "A map of the other applications that are part of this group. Only defined on the default application. The field is set after deployments have been created, so can be undefined, but should be there for a successful deployment. Note: this field will be removed when MFE alias routing is fully rolled out."
|
|
11940
|
-
},
|
|
11941
11920
|
"mfeConfigUploadState": {
|
|
11942
11921
|
"type": "string",
|
|
11943
11922
|
"enum": [
|
|
@@ -15446,6 +15425,12 @@
|
|
|
15446
15425
|
"type": "array"
|
|
15447
15426
|
}
|
|
15448
15427
|
]
|
|
15428
|
+
},
|
|
15429
|
+
"env": {
|
|
15430
|
+
"items": {
|
|
15431
|
+
"type": "string"
|
|
15432
|
+
},
|
|
15433
|
+
"type": "array"
|
|
15449
15434
|
}
|
|
15450
15435
|
},
|
|
15451
15436
|
"required": [
|
|
@@ -15804,33 +15789,6 @@
|
|
|
15804
15789
|
"isDefaultApp": {
|
|
15805
15790
|
"type": "boolean"
|
|
15806
15791
|
},
|
|
15807
|
-
"applications": {
|
|
15808
|
-
"additionalProperties": {
|
|
15809
|
-
"properties": {
|
|
15810
|
-
"isDefaultApp": {
|
|
15811
|
-
"type": "boolean"
|
|
15812
|
-
},
|
|
15813
|
-
"productionHost": {
|
|
15814
|
-
"type": "string",
|
|
15815
|
-
"description": "This is the production alias, it will always show the most up to date of each application."
|
|
15816
|
-
},
|
|
15817
|
-
"deploymentAlias": {
|
|
15818
|
-
"type": "string",
|
|
15819
|
-
"description": "Use the fixed deploymentAlias and deploymentHost so that the microfrontend preview stays in sync with the deployment. These are only present for mono-repos when a single commit creates multiple deployments. If they are not present, productionHost will be used."
|
|
15820
|
-
},
|
|
15821
|
-
"deploymentHost": {
|
|
15822
|
-
"type": "string"
|
|
15823
|
-
}
|
|
15824
|
-
},
|
|
15825
|
-
"required": [
|
|
15826
|
-
"productionHost"
|
|
15827
|
-
],
|
|
15828
|
-
"type": "object",
|
|
15829
|
-
"description": "A map of the other applications that are part of this group. Only defined on the default application. The field is set after deployments have been created, so can be undefined, but should be there for a successful deployment. Note: this field will be removed when MFE alias routing is fully rolled out."
|
|
15830
|
-
},
|
|
15831
|
-
"type": "object",
|
|
15832
|
-
"description": "A map of the other applications that are part of this group. Only defined on the default application. The field is set after deployments have been created, so can be undefined, but should be there for a successful deployment. Note: this field will be removed when MFE alias routing is fully rolled out."
|
|
15833
|
-
},
|
|
15834
15792
|
"mfeConfigUploadState": {
|
|
15835
15793
|
"type": "string",
|
|
15836
15794
|
"enum": [
|
|
@@ -18731,6 +18689,12 @@
|
|
|
18731
18689
|
"type": "array"
|
|
18732
18690
|
}
|
|
18733
18691
|
]
|
|
18692
|
+
},
|
|
18693
|
+
"env": {
|
|
18694
|
+
"items": {
|
|
18695
|
+
"type": "string"
|
|
18696
|
+
},
|
|
18697
|
+
"type": "array"
|
|
18734
18698
|
}
|
|
18735
18699
|
},
|
|
18736
18700
|
"required": [
|
|
@@ -19089,33 +19053,6 @@
|
|
|
19089
19053
|
"isDefaultApp": {
|
|
19090
19054
|
"type": "boolean"
|
|
19091
19055
|
},
|
|
19092
|
-
"applications": {
|
|
19093
|
-
"additionalProperties": {
|
|
19094
|
-
"properties": {
|
|
19095
|
-
"isDefaultApp": {
|
|
19096
|
-
"type": "boolean"
|
|
19097
|
-
},
|
|
19098
|
-
"productionHost": {
|
|
19099
|
-
"type": "string",
|
|
19100
|
-
"description": "This is the production alias, it will always show the most up to date of each application."
|
|
19101
|
-
},
|
|
19102
|
-
"deploymentAlias": {
|
|
19103
|
-
"type": "string",
|
|
19104
|
-
"description": "Use the fixed deploymentAlias and deploymentHost so that the microfrontend preview stays in sync with the deployment. These are only present for mono-repos when a single commit creates multiple deployments. If they are not present, productionHost will be used."
|
|
19105
|
-
},
|
|
19106
|
-
"deploymentHost": {
|
|
19107
|
-
"type": "string"
|
|
19108
|
-
}
|
|
19109
|
-
},
|
|
19110
|
-
"required": [
|
|
19111
|
-
"productionHost"
|
|
19112
|
-
],
|
|
19113
|
-
"type": "object",
|
|
19114
|
-
"description": "A map of the other applications that are part of this group. Only defined on the default application. The field is set after deployments have been created, so can be undefined, but should be there for a successful deployment. Note: this field will be removed when MFE alias routing is fully rolled out."
|
|
19115
|
-
},
|
|
19116
|
-
"type": "object",
|
|
19117
|
-
"description": "A map of the other applications that are part of this group. Only defined on the default application. The field is set after deployments have been created, so can be undefined, but should be there for a successful deployment. Note: this field will be removed when MFE alias routing is fully rolled out."
|
|
19118
|
-
},
|
|
19119
19056
|
"mfeConfigUploadState": {
|
|
19120
19057
|
"type": "string",
|
|
19121
19058
|
"enum": [
|
|
@@ -36552,6 +36489,12 @@
|
|
|
36552
36489
|
"USER"
|
|
36553
36490
|
],
|
|
36554
36491
|
"description": "\"The `ADMIN` role, by default, is provided to users capable of installing integrations, while the `USER` role can be granted to Vercel users with the Vercel `Billing` or Vercel `Viewer` role, which are considered to be Read-Only roles.\""
|
|
36492
|
+
},
|
|
36493
|
+
"globalUserId": {
|
|
36494
|
+
"type": "string"
|
|
36495
|
+
},
|
|
36496
|
+
"userEmail": {
|
|
36497
|
+
"type": "string"
|
|
36555
36498
|
}
|
|
36556
36499
|
},
|
|
36557
36500
|
"required": [
|
|
@@ -37155,6 +37098,9 @@
|
|
|
37155
37098
|
},
|
|
37156
37099
|
"422": {
|
|
37157
37100
|
"description": ""
|
|
37101
|
+
},
|
|
37102
|
+
"429": {
|
|
37103
|
+
"description": ""
|
|
37158
37104
|
}
|
|
37159
37105
|
},
|
|
37160
37106
|
"parameters": [
|
|
@@ -40262,34 +40208,34 @@
|
|
|
40262
40208
|
"minLength": {
|
|
40263
40209
|
"type": "object",
|
|
40264
40210
|
"properties": {
|
|
40265
|
-
"__@BRAND@
|
|
40211
|
+
"__@BRAND@543241": {
|
|
40266
40212
|
"type": "object"
|
|
40267
40213
|
}
|
|
40268
40214
|
},
|
|
40269
40215
|
"required": [
|
|
40270
|
-
"__@BRAND@
|
|
40216
|
+
"__@BRAND@543241"
|
|
40271
40217
|
]
|
|
40272
40218
|
},
|
|
40273
40219
|
"maxLength": {
|
|
40274
40220
|
"type": "object",
|
|
40275
40221
|
"properties": {
|
|
40276
|
-
"__@BRAND@
|
|
40222
|
+
"__@BRAND@543241": {
|
|
40277
40223
|
"type": "object"
|
|
40278
40224
|
}
|
|
40279
40225
|
},
|
|
40280
40226
|
"required": [
|
|
40281
|
-
"__@BRAND@
|
|
40227
|
+
"__@BRAND@543241"
|
|
40282
40228
|
]
|
|
40283
40229
|
},
|
|
40284
40230
|
"pattern": {
|
|
40285
40231
|
"type": "object",
|
|
40286
40232
|
"properties": {
|
|
40287
|
-
"__@BRAND@
|
|
40233
|
+
"__@BRAND@543241": {
|
|
40288
40234
|
"type": "object"
|
|
40289
40235
|
}
|
|
40290
40236
|
},
|
|
40291
40237
|
"required": [
|
|
40292
|
-
"__@BRAND@
|
|
40238
|
+
"__@BRAND@543241"
|
|
40293
40239
|
]
|
|
40294
40240
|
},
|
|
40295
40241
|
"default": {
|
|
@@ -40972,34 +40918,34 @@
|
|
|
40972
40918
|
"minLength": {
|
|
40973
40919
|
"type": "object",
|
|
40974
40920
|
"properties": {
|
|
40975
|
-
"__@BRAND@
|
|
40921
|
+
"__@BRAND@543241": {
|
|
40976
40922
|
"type": "object"
|
|
40977
40923
|
}
|
|
40978
40924
|
},
|
|
40979
40925
|
"required": [
|
|
40980
|
-
"__@BRAND@
|
|
40926
|
+
"__@BRAND@543241"
|
|
40981
40927
|
]
|
|
40982
40928
|
},
|
|
40983
40929
|
"maxLength": {
|
|
40984
40930
|
"type": "object",
|
|
40985
40931
|
"properties": {
|
|
40986
|
-
"__@BRAND@
|
|
40932
|
+
"__@BRAND@543241": {
|
|
40987
40933
|
"type": "object"
|
|
40988
40934
|
}
|
|
40989
40935
|
},
|
|
40990
40936
|
"required": [
|
|
40991
|
-
"__@BRAND@
|
|
40937
|
+
"__@BRAND@543241"
|
|
40992
40938
|
]
|
|
40993
40939
|
},
|
|
40994
40940
|
"pattern": {
|
|
40995
40941
|
"type": "object",
|
|
40996
40942
|
"properties": {
|
|
40997
|
-
"__@BRAND@
|
|
40943
|
+
"__@BRAND@543241": {
|
|
40998
40944
|
"type": "object"
|
|
40999
40945
|
}
|
|
41000
40946
|
},
|
|
41001
40947
|
"required": [
|
|
41002
|
-
"__@BRAND@
|
|
40948
|
+
"__@BRAND@543241"
|
|
41003
40949
|
]
|
|
41004
40950
|
},
|
|
41005
40951
|
"default": {
|
|
@@ -41157,34 +41103,34 @@
|
|
|
41157
41103
|
"minLength": {
|
|
41158
41104
|
"type": "object",
|
|
41159
41105
|
"properties": {
|
|
41160
|
-
"__@BRAND@
|
|
41106
|
+
"__@BRAND@543241": {
|
|
41161
41107
|
"type": "object"
|
|
41162
41108
|
}
|
|
41163
41109
|
},
|
|
41164
41110
|
"required": [
|
|
41165
|
-
"__@BRAND@
|
|
41111
|
+
"__@BRAND@543241"
|
|
41166
41112
|
]
|
|
41167
41113
|
},
|
|
41168
41114
|
"maxLength": {
|
|
41169
41115
|
"type": "object",
|
|
41170
41116
|
"properties": {
|
|
41171
|
-
"__@BRAND@
|
|
41117
|
+
"__@BRAND@543241": {
|
|
41172
41118
|
"type": "object"
|
|
41173
41119
|
}
|
|
41174
41120
|
},
|
|
41175
41121
|
"required": [
|
|
41176
|
-
"__@BRAND@
|
|
41122
|
+
"__@BRAND@543241"
|
|
41177
41123
|
]
|
|
41178
41124
|
},
|
|
41179
41125
|
"pattern": {
|
|
41180
41126
|
"type": "object",
|
|
41181
41127
|
"properties": {
|
|
41182
|
-
"__@BRAND@
|
|
41128
|
+
"__@BRAND@543241": {
|
|
41183
41129
|
"type": "object"
|
|
41184
41130
|
}
|
|
41185
41131
|
},
|
|
41186
41132
|
"required": [
|
|
41187
|
-
"__@BRAND@
|
|
41133
|
+
"__@BRAND@543241"
|
|
41188
41134
|
]
|
|
41189
41135
|
},
|
|
41190
41136
|
"default": {
|
|
@@ -41495,12 +41441,12 @@
|
|
|
41495
41441
|
{
|
|
41496
41442
|
"type": "object",
|
|
41497
41443
|
"properties": {
|
|
41498
|
-
"__@BRAND@
|
|
41444
|
+
"__@BRAND@543241": {
|
|
41499
41445
|
"type": "object"
|
|
41500
41446
|
}
|
|
41501
41447
|
},
|
|
41502
41448
|
"required": [
|
|
41503
|
-
"__@BRAND@
|
|
41449
|
+
"__@BRAND@543241"
|
|
41504
41450
|
]
|
|
41505
41451
|
},
|
|
41506
41452
|
{
|
|
@@ -41508,12 +41454,12 @@
|
|
|
41508
41454
|
"value": {
|
|
41509
41455
|
"type": "object",
|
|
41510
41456
|
"properties": {
|
|
41511
|
-
"__@BRAND@
|
|
41457
|
+
"__@BRAND@543241": {
|
|
41512
41458
|
"type": "object"
|
|
41513
41459
|
}
|
|
41514
41460
|
},
|
|
41515
41461
|
"required": [
|
|
41516
|
-
"__@BRAND@
|
|
41462
|
+
"__@BRAND@543241"
|
|
41517
41463
|
]
|
|
41518
41464
|
},
|
|
41519
41465
|
"disabled": {
|
|
@@ -41582,34 +41528,34 @@
|
|
|
41582
41528
|
"minLength": {
|
|
41583
41529
|
"type": "object",
|
|
41584
41530
|
"properties": {
|
|
41585
|
-
"__@BRAND@
|
|
41531
|
+
"__@BRAND@543241": {
|
|
41586
41532
|
"type": "object"
|
|
41587
41533
|
}
|
|
41588
41534
|
},
|
|
41589
41535
|
"required": [
|
|
41590
|
-
"__@BRAND@
|
|
41536
|
+
"__@BRAND@543241"
|
|
41591
41537
|
]
|
|
41592
41538
|
},
|
|
41593
41539
|
"maxLength": {
|
|
41594
41540
|
"type": "object",
|
|
41595
41541
|
"properties": {
|
|
41596
|
-
"__@BRAND@
|
|
41542
|
+
"__@BRAND@543241": {
|
|
41597
41543
|
"type": "object"
|
|
41598
41544
|
}
|
|
41599
41545
|
},
|
|
41600
41546
|
"required": [
|
|
41601
|
-
"__@BRAND@
|
|
41547
|
+
"__@BRAND@543241"
|
|
41602
41548
|
]
|
|
41603
41549
|
},
|
|
41604
41550
|
"pattern": {
|
|
41605
41551
|
"type": "object",
|
|
41606
41552
|
"properties": {
|
|
41607
|
-
"__@BRAND@
|
|
41553
|
+
"__@BRAND@543241": {
|
|
41608
41554
|
"type": "object"
|
|
41609
41555
|
}
|
|
41610
41556
|
},
|
|
41611
41557
|
"required": [
|
|
41612
|
-
"__@BRAND@
|
|
41558
|
+
"__@BRAND@543241"
|
|
41613
41559
|
]
|
|
41614
41560
|
},
|
|
41615
41561
|
"default": {
|
|
@@ -41767,34 +41713,34 @@
|
|
|
41767
41713
|
"minLength": {
|
|
41768
41714
|
"type": "object",
|
|
41769
41715
|
"properties": {
|
|
41770
|
-
"__@BRAND@
|
|
41716
|
+
"__@BRAND@543241": {
|
|
41771
41717
|
"type": "object"
|
|
41772
41718
|
}
|
|
41773
41719
|
},
|
|
41774
41720
|
"required": [
|
|
41775
|
-
"__@BRAND@
|
|
41721
|
+
"__@BRAND@543241"
|
|
41776
41722
|
]
|
|
41777
41723
|
},
|
|
41778
41724
|
"maxLength": {
|
|
41779
41725
|
"type": "object",
|
|
41780
41726
|
"properties": {
|
|
41781
|
-
"__@BRAND@
|
|
41727
|
+
"__@BRAND@543241": {
|
|
41782
41728
|
"type": "object"
|
|
41783
41729
|
}
|
|
41784
41730
|
},
|
|
41785
41731
|
"required": [
|
|
41786
|
-
"__@BRAND@
|
|
41732
|
+
"__@BRAND@543241"
|
|
41787
41733
|
]
|
|
41788
41734
|
},
|
|
41789
41735
|
"pattern": {
|
|
41790
41736
|
"type": "object",
|
|
41791
41737
|
"properties": {
|
|
41792
|
-
"__@BRAND@
|
|
41738
|
+
"__@BRAND@543241": {
|
|
41793
41739
|
"type": "object"
|
|
41794
41740
|
}
|
|
41795
41741
|
},
|
|
41796
41742
|
"required": [
|
|
41797
|
-
"__@BRAND@
|
|
41743
|
+
"__@BRAND@543241"
|
|
41798
41744
|
]
|
|
41799
41745
|
},
|
|
41800
41746
|
"default": {
|
|
@@ -41883,12 +41829,12 @@
|
|
|
41883
41829
|
{
|
|
41884
41830
|
"type": "object",
|
|
41885
41831
|
"properties": {
|
|
41886
|
-
"__@BRAND@
|
|
41832
|
+
"__@BRAND@543241": {
|
|
41887
41833
|
"type": "object"
|
|
41888
41834
|
}
|
|
41889
41835
|
},
|
|
41890
41836
|
"required": [
|
|
41891
|
-
"__@BRAND@
|
|
41837
|
+
"__@BRAND@543241"
|
|
41892
41838
|
]
|
|
41893
41839
|
},
|
|
41894
41840
|
{
|
|
@@ -41896,12 +41842,12 @@
|
|
|
41896
41842
|
"value": {
|
|
41897
41843
|
"type": "object",
|
|
41898
41844
|
"properties": {
|
|
41899
|
-
"__@BRAND@
|
|
41845
|
+
"__@BRAND@543241": {
|
|
41900
41846
|
"type": "object"
|
|
41901
41847
|
}
|
|
41902
41848
|
},
|
|
41903
41849
|
"required": [
|
|
41904
|
-
"__@BRAND@
|
|
41850
|
+
"__@BRAND@543241"
|
|
41905
41851
|
]
|
|
41906
41852
|
},
|
|
41907
41853
|
"disabled": {
|
|
@@ -42087,12 +42033,12 @@
|
|
|
42087
42033
|
"items": {
|
|
42088
42034
|
"type": "object",
|
|
42089
42035
|
"properties": {
|
|
42090
|
-
"__@BRAND@
|
|
42036
|
+
"__@BRAND@543241": {
|
|
42091
42037
|
"type": "object"
|
|
42092
42038
|
}
|
|
42093
42039
|
},
|
|
42094
42040
|
"required": [
|
|
42095
|
-
"__@BRAND@
|
|
42041
|
+
"__@BRAND@543241"
|
|
42096
42042
|
]
|
|
42097
42043
|
},
|
|
42098
42044
|
"type": "array"
|
|
@@ -42101,12 +42047,12 @@
|
|
|
42101
42047
|
"items": {
|
|
42102
42048
|
"type": "object",
|
|
42103
42049
|
"properties": {
|
|
42104
|
-
"__@BRAND@
|
|
42050
|
+
"__@BRAND@543241": {
|
|
42105
42051
|
"type": "object"
|
|
42106
42052
|
}
|
|
42107
42053
|
},
|
|
42108
42054
|
"required": [
|
|
42109
|
-
"__@BRAND@
|
|
42055
|
+
"__@BRAND@543241"
|
|
42110
42056
|
]
|
|
42111
42057
|
},
|
|
42112
42058
|
"type": "array"
|
|
@@ -42140,34 +42086,34 @@
|
|
|
42140
42086
|
"minLength": {
|
|
42141
42087
|
"type": "object",
|
|
42142
42088
|
"properties": {
|
|
42143
|
-
"__@BRAND@
|
|
42089
|
+
"__@BRAND@543241": {
|
|
42144
42090
|
"type": "object"
|
|
42145
42091
|
}
|
|
42146
42092
|
},
|
|
42147
42093
|
"required": [
|
|
42148
|
-
"__@BRAND@
|
|
42094
|
+
"__@BRAND@543241"
|
|
42149
42095
|
]
|
|
42150
42096
|
},
|
|
42151
42097
|
"maxLength": {
|
|
42152
42098
|
"type": "object",
|
|
42153
42099
|
"properties": {
|
|
42154
|
-
"__@BRAND@
|
|
42100
|
+
"__@BRAND@543241": {
|
|
42155
42101
|
"type": "object"
|
|
42156
42102
|
}
|
|
42157
42103
|
},
|
|
42158
42104
|
"required": [
|
|
42159
|
-
"__@BRAND@
|
|
42105
|
+
"__@BRAND@543241"
|
|
42160
42106
|
]
|
|
42161
42107
|
},
|
|
42162
42108
|
"pattern": {
|
|
42163
42109
|
"type": "object",
|
|
42164
42110
|
"properties": {
|
|
42165
|
-
"__@BRAND@
|
|
42111
|
+
"__@BRAND@543241": {
|
|
42166
42112
|
"type": "object"
|
|
42167
42113
|
}
|
|
42168
42114
|
},
|
|
42169
42115
|
"required": [
|
|
42170
|
-
"__@BRAND@
|
|
42116
|
+
"__@BRAND@543241"
|
|
42171
42117
|
]
|
|
42172
42118
|
},
|
|
42173
42119
|
"default": {
|
|
@@ -42301,12 +42247,12 @@
|
|
|
42301
42247
|
"value": {
|
|
42302
42248
|
"type": "object",
|
|
42303
42249
|
"properties": {
|
|
42304
|
-
"__@BRAND@
|
|
42250
|
+
"__@BRAND@543241": {
|
|
42305
42251
|
"type": "object"
|
|
42306
42252
|
}
|
|
42307
42253
|
},
|
|
42308
42254
|
"required": [
|
|
42309
|
-
"__@BRAND@
|
|
42255
|
+
"__@BRAND@543241"
|
|
42310
42256
|
]
|
|
42311
42257
|
},
|
|
42312
42258
|
"disabled": {
|
|
@@ -49605,10 +49551,10 @@
|
|
|
49605
49551
|
"type": "string",
|
|
49606
49552
|
"enum": [
|
|
49607
49553
|
"system",
|
|
49608
|
-
"secret",
|
|
49609
49554
|
"encrypted",
|
|
49610
49555
|
"plain",
|
|
49611
|
-
"sensitive"
|
|
49556
|
+
"sensitive",
|
|
49557
|
+
"secret"
|
|
49612
49558
|
]
|
|
49613
49559
|
},
|
|
49614
49560
|
"sunsetSecretId": {
|
|
@@ -50621,17 +50567,17 @@
|
|
|
50621
50567
|
"github-limited"
|
|
50622
50568
|
]
|
|
50623
50569
|
},
|
|
50624
|
-
"
|
|
50570
|
+
"repo": {
|
|
50571
|
+
"type": "string"
|
|
50572
|
+
},
|
|
50573
|
+
"repoId": {
|
|
50625
50574
|
"type": "number"
|
|
50626
50575
|
},
|
|
50627
50576
|
"createdAt": {
|
|
50628
50577
|
"type": "number"
|
|
50629
50578
|
},
|
|
50630
|
-
"
|
|
50631
|
-
"type": "
|
|
50632
|
-
},
|
|
50633
|
-
"sourceless": {
|
|
50634
|
-
"type": "boolean"
|
|
50579
|
+
"updatedAt": {
|
|
50580
|
+
"type": "number"
|
|
50635
50581
|
},
|
|
50636
50582
|
"org": {
|
|
50637
50583
|
"type": "string"
|
|
@@ -50640,9 +50586,6 @@
|
|
|
50640
50586
|
"type": "number",
|
|
50641
50587
|
"description": "A new field, should be included in all new project links, is being added just in time when a deployment is created. This is needed for Protected Git scopes."
|
|
50642
50588
|
},
|
|
50643
|
-
"repoId": {
|
|
50644
|
-
"type": "number"
|
|
50645
|
-
},
|
|
50646
50589
|
"deployHooks": {
|
|
50647
50590
|
"items": {
|
|
50648
50591
|
"properties": {
|
|
@@ -50675,6 +50618,9 @@
|
|
|
50675
50618
|
"gitCredentialId": {
|
|
50676
50619
|
"type": "string"
|
|
50677
50620
|
},
|
|
50621
|
+
"sourceless": {
|
|
50622
|
+
"type": "boolean"
|
|
50623
|
+
},
|
|
50678
50624
|
"productionBranch": {
|
|
50679
50625
|
"type": "string"
|
|
50680
50626
|
}
|
|
@@ -51122,6 +51068,9 @@
|
|
|
51122
51068
|
},
|
|
51123
51069
|
"resourceConfig": {
|
|
51124
51070
|
"properties": {
|
|
51071
|
+
"elasticConcurrencyEnabled": {
|
|
51072
|
+
"type": "boolean"
|
|
51073
|
+
},
|
|
51125
51074
|
"fluid": {
|
|
51126
51075
|
"type": "boolean"
|
|
51127
51076
|
},
|
|
@@ -51145,9 +51094,6 @@
|
|
|
51145
51094
|
"functionZeroConfigFailover": {
|
|
51146
51095
|
"type": "boolean"
|
|
51147
51096
|
},
|
|
51148
|
-
"elasticConcurrencyEnabled": {
|
|
51149
|
-
"type": "boolean"
|
|
51150
|
-
},
|
|
51151
51097
|
"buildMachineType": {
|
|
51152
51098
|
"type": "string",
|
|
51153
51099
|
"enum": [
|
|
@@ -51248,6 +51194,9 @@
|
|
|
51248
51194
|
},
|
|
51249
51195
|
"defaultResourceConfig": {
|
|
51250
51196
|
"properties": {
|
|
51197
|
+
"elasticConcurrencyEnabled": {
|
|
51198
|
+
"type": "boolean"
|
|
51199
|
+
},
|
|
51251
51200
|
"fluid": {
|
|
51252
51201
|
"type": "boolean"
|
|
51253
51202
|
},
|
|
@@ -51271,9 +51220,6 @@
|
|
|
51271
51220
|
"functionZeroConfigFailover": {
|
|
51272
51221
|
"type": "boolean"
|
|
51273
51222
|
},
|
|
51274
|
-
"elasticConcurrencyEnabled": {
|
|
51275
|
-
"type": "boolean"
|
|
51276
|
-
},
|
|
51277
51223
|
"buildMachineType": {
|
|
51278
51224
|
"type": "string",
|
|
51279
51225
|
"enum": [
|
|
@@ -51340,8 +51286,8 @@
|
|
|
51340
51286
|
"deploymentType": {
|
|
51341
51287
|
"type": "string",
|
|
51342
51288
|
"enum": [
|
|
51343
|
-
"all",
|
|
51344
51289
|
"preview",
|
|
51290
|
+
"all",
|
|
51345
51291
|
"prod_deployment_urls_and_all_previews",
|
|
51346
51292
|
"all_except_custom_domains"
|
|
51347
51293
|
]
|
|
@@ -53116,11 +53062,11 @@
|
|
|
53116
53062
|
"deploymentType": {
|
|
53117
53063
|
"type": "string",
|
|
53118
53064
|
"enum": [
|
|
53119
|
-
"all",
|
|
53120
53065
|
"preview",
|
|
53066
|
+
"production",
|
|
53067
|
+
"all",
|
|
53121
53068
|
"prod_deployment_urls_and_all_previews",
|
|
53122
|
-
"all_except_custom_domains"
|
|
53123
|
-
"production"
|
|
53069
|
+
"all_except_custom_domains"
|
|
53124
53070
|
]
|
|
53125
53071
|
},
|
|
53126
53072
|
"addresses": {
|
|
@@ -53160,11 +53106,11 @@
|
|
|
53160
53106
|
"deploymentType": {
|
|
53161
53107
|
"type": "string",
|
|
53162
53108
|
"enum": [
|
|
53163
|
-
"all",
|
|
53164
53109
|
"preview",
|
|
53110
|
+
"production",
|
|
53111
|
+
"all",
|
|
53165
53112
|
"prod_deployment_urls_and_all_previews",
|
|
53166
|
-
"all_except_custom_domains"
|
|
53167
|
-
"production"
|
|
53113
|
+
"all_except_custom_domains"
|
|
53168
53114
|
]
|
|
53169
53115
|
}
|
|
53170
53116
|
},
|
|
@@ -59618,10 +59564,10 @@
|
|
|
59618
59564
|
"type": "string",
|
|
59619
59565
|
"enum": [
|
|
59620
59566
|
"system",
|
|
59621
|
-
"secret",
|
|
59622
59567
|
"encrypted",
|
|
59623
59568
|
"plain",
|
|
59624
|
-
"sensitive"
|
|
59569
|
+
"sensitive",
|
|
59570
|
+
"secret"
|
|
59625
59571
|
]
|
|
59626
59572
|
},
|
|
59627
59573
|
"sunsetSecretId": {
|
|
@@ -60634,17 +60580,17 @@
|
|
|
60634
60580
|
"github-limited"
|
|
60635
60581
|
]
|
|
60636
60582
|
},
|
|
60637
|
-
"
|
|
60583
|
+
"repo": {
|
|
60584
|
+
"type": "string"
|
|
60585
|
+
},
|
|
60586
|
+
"repoId": {
|
|
60638
60587
|
"type": "number"
|
|
60639
60588
|
},
|
|
60640
60589
|
"createdAt": {
|
|
60641
60590
|
"type": "number"
|
|
60642
60591
|
},
|
|
60643
|
-
"
|
|
60644
|
-
"type": "
|
|
60645
|
-
},
|
|
60646
|
-
"sourceless": {
|
|
60647
|
-
"type": "boolean"
|
|
60592
|
+
"updatedAt": {
|
|
60593
|
+
"type": "number"
|
|
60648
60594
|
},
|
|
60649
60595
|
"org": {
|
|
60650
60596
|
"type": "string"
|
|
@@ -60653,9 +60599,6 @@
|
|
|
60653
60599
|
"type": "number",
|
|
60654
60600
|
"description": "A new field, should be included in all new project links, is being added just in time when a deployment is created. This is needed for Protected Git scopes."
|
|
60655
60601
|
},
|
|
60656
|
-
"repoId": {
|
|
60657
|
-
"type": "number"
|
|
60658
|
-
},
|
|
60659
60602
|
"deployHooks": {
|
|
60660
60603
|
"items": {
|
|
60661
60604
|
"properties": {
|
|
@@ -60688,6 +60631,9 @@
|
|
|
60688
60631
|
"gitCredentialId": {
|
|
60689
60632
|
"type": "string"
|
|
60690
60633
|
},
|
|
60634
|
+
"sourceless": {
|
|
60635
|
+
"type": "boolean"
|
|
60636
|
+
},
|
|
60691
60637
|
"productionBranch": {
|
|
60692
60638
|
"type": "string"
|
|
60693
60639
|
}
|
|
@@ -61135,6 +61081,9 @@
|
|
|
61135
61081
|
},
|
|
61136
61082
|
"resourceConfig": {
|
|
61137
61083
|
"properties": {
|
|
61084
|
+
"elasticConcurrencyEnabled": {
|
|
61085
|
+
"type": "boolean"
|
|
61086
|
+
},
|
|
61138
61087
|
"fluid": {
|
|
61139
61088
|
"type": "boolean"
|
|
61140
61089
|
},
|
|
@@ -61158,9 +61107,6 @@
|
|
|
61158
61107
|
"functionZeroConfigFailover": {
|
|
61159
61108
|
"type": "boolean"
|
|
61160
61109
|
},
|
|
61161
|
-
"elasticConcurrencyEnabled": {
|
|
61162
|
-
"type": "boolean"
|
|
61163
|
-
},
|
|
61164
61110
|
"buildMachineType": {
|
|
61165
61111
|
"type": "string",
|
|
61166
61112
|
"enum": [
|
|
@@ -61261,6 +61207,9 @@
|
|
|
61261
61207
|
},
|
|
61262
61208
|
"defaultResourceConfig": {
|
|
61263
61209
|
"properties": {
|
|
61210
|
+
"elasticConcurrencyEnabled": {
|
|
61211
|
+
"type": "boolean"
|
|
61212
|
+
},
|
|
61264
61213
|
"fluid": {
|
|
61265
61214
|
"type": "boolean"
|
|
61266
61215
|
},
|
|
@@ -61284,9 +61233,6 @@
|
|
|
61284
61233
|
"functionZeroConfigFailover": {
|
|
61285
61234
|
"type": "boolean"
|
|
61286
61235
|
},
|
|
61287
|
-
"elasticConcurrencyEnabled": {
|
|
61288
|
-
"type": "boolean"
|
|
61289
|
-
},
|
|
61290
61236
|
"buildMachineType": {
|
|
61291
61237
|
"type": "string",
|
|
61292
61238
|
"enum": [
|
|
@@ -61353,8 +61299,8 @@
|
|
|
61353
61299
|
"deploymentType": {
|
|
61354
61300
|
"type": "string",
|
|
61355
61301
|
"enum": [
|
|
61356
|
-
"all",
|
|
61357
61302
|
"preview",
|
|
61303
|
+
"all",
|
|
61358
61304
|
"prod_deployment_urls_and_all_previews",
|
|
61359
61305
|
"all_except_custom_domains"
|
|
61360
61306
|
]
|
|
@@ -63129,11 +63075,11 @@
|
|
|
63129
63075
|
"deploymentType": {
|
|
63130
63076
|
"type": "string",
|
|
63131
63077
|
"enum": [
|
|
63132
|
-
"all",
|
|
63133
63078
|
"preview",
|
|
63079
|
+
"production",
|
|
63080
|
+
"all",
|
|
63134
63081
|
"prod_deployment_urls_and_all_previews",
|
|
63135
|
-
"all_except_custom_domains"
|
|
63136
|
-
"production"
|
|
63082
|
+
"all_except_custom_domains"
|
|
63137
63083
|
]
|
|
63138
63084
|
},
|
|
63139
63085
|
"addresses": {
|
|
@@ -63173,11 +63119,11 @@
|
|
|
63173
63119
|
"deploymentType": {
|
|
63174
63120
|
"type": "string",
|
|
63175
63121
|
"enum": [
|
|
63176
|
-
"all",
|
|
63177
63122
|
"preview",
|
|
63123
|
+
"production",
|
|
63124
|
+
"all",
|
|
63178
63125
|
"prod_deployment_urls_and_all_previews",
|
|
63179
|
-
"all_except_custom_domains"
|
|
63180
|
-
"production"
|
|
63126
|
+
"all_except_custom_domains"
|
|
63181
63127
|
]
|
|
63182
63128
|
}
|
|
63183
63129
|
},
|
|
@@ -80947,34 +80893,34 @@
|
|
|
80947
80893
|
"maxLength": {
|
|
80948
80894
|
"type": "object",
|
|
80949
80895
|
"properties": {
|
|
80950
|
-
"__@BRAND@
|
|
80896
|
+
"__@BRAND@8825": {
|
|
80951
80897
|
"type": "object"
|
|
80952
80898
|
}
|
|
80953
80899
|
},
|
|
80954
80900
|
"required": [
|
|
80955
|
-
"__@BRAND@
|
|
80901
|
+
"__@BRAND@8825"
|
|
80956
80902
|
]
|
|
80957
80903
|
},
|
|
80958
80904
|
"minLength": {
|
|
80959
80905
|
"type": "object",
|
|
80960
80906
|
"properties": {
|
|
80961
|
-
"__@BRAND@
|
|
80907
|
+
"__@BRAND@8825": {
|
|
80962
80908
|
"type": "object"
|
|
80963
80909
|
}
|
|
80964
80910
|
},
|
|
80965
80911
|
"required": [
|
|
80966
|
-
"__@BRAND@
|
|
80912
|
+
"__@BRAND@8825"
|
|
80967
80913
|
]
|
|
80968
80914
|
},
|
|
80969
80915
|
"pattern": {
|
|
80970
80916
|
"type": "object",
|
|
80971
80917
|
"properties": {
|
|
80972
|
-
"__@BRAND@
|
|
80918
|
+
"__@BRAND@8825": {
|
|
80973
80919
|
"type": "object"
|
|
80974
80920
|
}
|
|
80975
80921
|
},
|
|
80976
80922
|
"required": [
|
|
80977
|
-
"__@BRAND@
|
|
80923
|
+
"__@BRAND@8825"
|
|
80978
80924
|
]
|
|
80979
80925
|
},
|
|
80980
80926
|
"description": {
|
|
@@ -81657,34 +81603,34 @@
|
|
|
81657
81603
|
"maxLength": {
|
|
81658
81604
|
"type": "object",
|
|
81659
81605
|
"properties": {
|
|
81660
|
-
"__@BRAND@
|
|
81606
|
+
"__@BRAND@8825": {
|
|
81661
81607
|
"type": "object"
|
|
81662
81608
|
}
|
|
81663
81609
|
},
|
|
81664
81610
|
"required": [
|
|
81665
|
-
"__@BRAND@
|
|
81611
|
+
"__@BRAND@8825"
|
|
81666
81612
|
]
|
|
81667
81613
|
},
|
|
81668
81614
|
"minLength": {
|
|
81669
81615
|
"type": "object",
|
|
81670
81616
|
"properties": {
|
|
81671
|
-
"__@BRAND@
|
|
81617
|
+
"__@BRAND@8825": {
|
|
81672
81618
|
"type": "object"
|
|
81673
81619
|
}
|
|
81674
81620
|
},
|
|
81675
81621
|
"required": [
|
|
81676
|
-
"__@BRAND@
|
|
81622
|
+
"__@BRAND@8825"
|
|
81677
81623
|
]
|
|
81678
81624
|
},
|
|
81679
81625
|
"pattern": {
|
|
81680
81626
|
"type": "object",
|
|
81681
81627
|
"properties": {
|
|
81682
|
-
"__@BRAND@
|
|
81628
|
+
"__@BRAND@8825": {
|
|
81683
81629
|
"type": "object"
|
|
81684
81630
|
}
|
|
81685
81631
|
},
|
|
81686
81632
|
"required": [
|
|
81687
|
-
"__@BRAND@
|
|
81633
|
+
"__@BRAND@8825"
|
|
81688
81634
|
]
|
|
81689
81635
|
},
|
|
81690
81636
|
"description": {
|
|
@@ -81833,34 +81779,34 @@
|
|
|
81833
81779
|
"minLength": {
|
|
81834
81780
|
"type": "object",
|
|
81835
81781
|
"properties": {
|
|
81836
|
-
"__@BRAND@
|
|
81782
|
+
"__@BRAND@8825": {
|
|
81837
81783
|
"type": "object"
|
|
81838
81784
|
}
|
|
81839
81785
|
},
|
|
81840
81786
|
"required": [
|
|
81841
|
-
"__@BRAND@
|
|
81787
|
+
"__@BRAND@8825"
|
|
81842
81788
|
]
|
|
81843
81789
|
},
|
|
81844
81790
|
"maxLength": {
|
|
81845
81791
|
"type": "object",
|
|
81846
81792
|
"properties": {
|
|
81847
|
-
"__@BRAND@
|
|
81793
|
+
"__@BRAND@8825": {
|
|
81848
81794
|
"type": "object"
|
|
81849
81795
|
}
|
|
81850
81796
|
},
|
|
81851
81797
|
"required": [
|
|
81852
|
-
"__@BRAND@
|
|
81798
|
+
"__@BRAND@8825"
|
|
81853
81799
|
]
|
|
81854
81800
|
},
|
|
81855
81801
|
"pattern": {
|
|
81856
81802
|
"type": "object",
|
|
81857
81803
|
"properties": {
|
|
81858
|
-
"__@BRAND@
|
|
81804
|
+
"__@BRAND@8825": {
|
|
81859
81805
|
"type": "object"
|
|
81860
81806
|
}
|
|
81861
81807
|
},
|
|
81862
81808
|
"required": [
|
|
81863
|
-
"__@BRAND@
|
|
81809
|
+
"__@BRAND@8825"
|
|
81864
81810
|
]
|
|
81865
81811
|
},
|
|
81866
81812
|
"default": {
|
|
@@ -82177,12 +82123,12 @@
|
|
|
82177
82123
|
{
|
|
82178
82124
|
"type": "object",
|
|
82179
82125
|
"properties": {
|
|
82180
|
-
"__@BRAND@
|
|
82126
|
+
"__@BRAND@8825": {
|
|
82181
82127
|
"type": "object"
|
|
82182
82128
|
}
|
|
82183
82129
|
},
|
|
82184
82130
|
"required": [
|
|
82185
|
-
"__@BRAND@
|
|
82131
|
+
"__@BRAND@8825"
|
|
82186
82132
|
]
|
|
82187
82133
|
},
|
|
82188
82134
|
{
|
|
@@ -82190,12 +82136,12 @@
|
|
|
82190
82136
|
"value": {
|
|
82191
82137
|
"type": "object",
|
|
82192
82138
|
"properties": {
|
|
82193
|
-
"__@BRAND@
|
|
82139
|
+
"__@BRAND@8825": {
|
|
82194
82140
|
"type": "object"
|
|
82195
82141
|
}
|
|
82196
82142
|
},
|
|
82197
82143
|
"required": [
|
|
82198
|
-
"__@BRAND@
|
|
82144
|
+
"__@BRAND@8825"
|
|
82199
82145
|
]
|
|
82200
82146
|
},
|
|
82201
82147
|
"disabled": {
|
|
@@ -82267,34 +82213,34 @@
|
|
|
82267
82213
|
"maxLength": {
|
|
82268
82214
|
"type": "object",
|
|
82269
82215
|
"properties": {
|
|
82270
|
-
"__@BRAND@
|
|
82216
|
+
"__@BRAND@8825": {
|
|
82271
82217
|
"type": "object"
|
|
82272
82218
|
}
|
|
82273
82219
|
},
|
|
82274
82220
|
"required": [
|
|
82275
|
-
"__@BRAND@
|
|
82221
|
+
"__@BRAND@8825"
|
|
82276
82222
|
]
|
|
82277
82223
|
},
|
|
82278
82224
|
"minLength": {
|
|
82279
82225
|
"type": "object",
|
|
82280
82226
|
"properties": {
|
|
82281
|
-
"__@BRAND@
|
|
82227
|
+
"__@BRAND@8825": {
|
|
82282
82228
|
"type": "object"
|
|
82283
82229
|
}
|
|
82284
82230
|
},
|
|
82285
82231
|
"required": [
|
|
82286
|
-
"__@BRAND@
|
|
82232
|
+
"__@BRAND@8825"
|
|
82287
82233
|
]
|
|
82288
82234
|
},
|
|
82289
82235
|
"pattern": {
|
|
82290
82236
|
"type": "object",
|
|
82291
82237
|
"properties": {
|
|
82292
|
-
"__@BRAND@
|
|
82238
|
+
"__@BRAND@8825": {
|
|
82293
82239
|
"type": "object"
|
|
82294
82240
|
}
|
|
82295
82241
|
},
|
|
82296
82242
|
"required": [
|
|
82297
|
-
"__@BRAND@
|
|
82243
|
+
"__@BRAND@8825"
|
|
82298
82244
|
]
|
|
82299
82245
|
},
|
|
82300
82246
|
"description": {
|
|
@@ -82444,34 +82390,34 @@
|
|
|
82444
82390
|
"maxLength": {
|
|
82445
82391
|
"type": "object",
|
|
82446
82392
|
"properties": {
|
|
82447
|
-
"__@BRAND@
|
|
82393
|
+
"__@BRAND@8825": {
|
|
82448
82394
|
"type": "object"
|
|
82449
82395
|
}
|
|
82450
82396
|
},
|
|
82451
82397
|
"required": [
|
|
82452
|
-
"__@BRAND@
|
|
82398
|
+
"__@BRAND@8825"
|
|
82453
82399
|
]
|
|
82454
82400
|
},
|
|
82455
82401
|
"minLength": {
|
|
82456
82402
|
"type": "object",
|
|
82457
82403
|
"properties": {
|
|
82458
|
-
"__@BRAND@
|
|
82404
|
+
"__@BRAND@8825": {
|
|
82459
82405
|
"type": "object"
|
|
82460
82406
|
}
|
|
82461
82407
|
},
|
|
82462
82408
|
"required": [
|
|
82463
|
-
"__@BRAND@
|
|
82409
|
+
"__@BRAND@8825"
|
|
82464
82410
|
]
|
|
82465
82411
|
},
|
|
82466
82412
|
"pattern": {
|
|
82467
82413
|
"type": "object",
|
|
82468
82414
|
"properties": {
|
|
82469
|
-
"__@BRAND@
|
|
82415
|
+
"__@BRAND@8825": {
|
|
82470
82416
|
"type": "object"
|
|
82471
82417
|
}
|
|
82472
82418
|
},
|
|
82473
82419
|
"required": [
|
|
82474
|
-
"__@BRAND@
|
|
82420
|
+
"__@BRAND@8825"
|
|
82475
82421
|
]
|
|
82476
82422
|
},
|
|
82477
82423
|
"description": {
|
|
@@ -82602,12 +82548,12 @@
|
|
|
82602
82548
|
"value": {
|
|
82603
82549
|
"type": "object",
|
|
82604
82550
|
"properties": {
|
|
82605
|
-
"__@BRAND@
|
|
82551
|
+
"__@BRAND@8825": {
|
|
82606
82552
|
"type": "object"
|
|
82607
82553
|
}
|
|
82608
82554
|
},
|
|
82609
82555
|
"required": [
|
|
82610
|
-
"__@BRAND@
|
|
82556
|
+
"__@BRAND@8825"
|
|
82611
82557
|
]
|
|
82612
82558
|
},
|
|
82613
82559
|
"disabled": {
|
|
@@ -82863,12 +82809,12 @@
|
|
|
82863
82809
|
"value": {
|
|
82864
82810
|
"type": "object",
|
|
82865
82811
|
"properties": {
|
|
82866
|
-
"__@BRAND@
|
|
82812
|
+
"__@BRAND@8825": {
|
|
82867
82813
|
"type": "object"
|
|
82868
82814
|
}
|
|
82869
82815
|
},
|
|
82870
82816
|
"required": [
|
|
82871
|
-
"__@BRAND@
|
|
82817
|
+
"__@BRAND@8825"
|
|
82872
82818
|
]
|
|
82873
82819
|
},
|
|
82874
82820
|
"disabled": {
|
|
@@ -91815,9 +91761,9 @@
|
|
|
91815
91761
|
"action": {
|
|
91816
91762
|
"type": "string",
|
|
91817
91763
|
"enum": [
|
|
91764
|
+
"deleted",
|
|
91818
91765
|
"created",
|
|
91819
91766
|
"updated",
|
|
91820
|
-
"deleted",
|
|
91821
91767
|
"archived",
|
|
91822
91768
|
"unarchived"
|
|
91823
91769
|
]
|
|
@@ -91830,6 +91776,9 @@
|
|
|
91830
91776
|
},
|
|
91831
91777
|
"projectId": {
|
|
91832
91778
|
"type": "string"
|
|
91779
|
+
},
|
|
91780
|
+
"projectName": {
|
|
91781
|
+
"type": "string"
|
|
91833
91782
|
}
|
|
91834
91783
|
},
|
|
91835
91784
|
"required": [
|
|
@@ -91841,6 +91790,64 @@
|
|
|
91841
91790
|
"type": "object",
|
|
91842
91791
|
"description": "The payload of the event, if requested."
|
|
91843
91792
|
},
|
|
91793
|
+
{
|
|
91794
|
+
"properties": {
|
|
91795
|
+
"action": {
|
|
91796
|
+
"type": "string",
|
|
91797
|
+
"enum": [
|
|
91798
|
+
"added",
|
|
91799
|
+
"deleted",
|
|
91800
|
+
"rotated"
|
|
91801
|
+
]
|
|
91802
|
+
},
|
|
91803
|
+
"label": {
|
|
91804
|
+
"type": "string"
|
|
91805
|
+
},
|
|
91806
|
+
"projectName": {
|
|
91807
|
+
"type": "string"
|
|
91808
|
+
},
|
|
91809
|
+
"projectId": {
|
|
91810
|
+
"type": "string"
|
|
91811
|
+
},
|
|
91812
|
+
"environment": {
|
|
91813
|
+
"type": "string"
|
|
91814
|
+
}
|
|
91815
|
+
},
|
|
91816
|
+
"required": [
|
|
91817
|
+
"action",
|
|
91818
|
+
"environment"
|
|
91819
|
+
],
|
|
91820
|
+
"type": "object",
|
|
91821
|
+
"description": "The payload of the event, if requested."
|
|
91822
|
+
},
|
|
91823
|
+
{
|
|
91824
|
+
"properties": {
|
|
91825
|
+
"action": {
|
|
91826
|
+
"type": "string",
|
|
91827
|
+
"enum": [
|
|
91828
|
+
"read"
|
|
91829
|
+
]
|
|
91830
|
+
},
|
|
91831
|
+
"projectName": {
|
|
91832
|
+
"type": "string"
|
|
91833
|
+
},
|
|
91834
|
+
"projectId": {
|
|
91835
|
+
"type": "string"
|
|
91836
|
+
},
|
|
91837
|
+
"environment": {
|
|
91838
|
+
"items": {
|
|
91839
|
+
"type": "string"
|
|
91840
|
+
},
|
|
91841
|
+
"type": "array"
|
|
91842
|
+
}
|
|
91843
|
+
},
|
|
91844
|
+
"required": [
|
|
91845
|
+
"action",
|
|
91846
|
+
"environment"
|
|
91847
|
+
],
|
|
91848
|
+
"type": "object",
|
|
91849
|
+
"description": "The payload of the event, if requested."
|
|
91850
|
+
},
|
|
91844
91851
|
{
|
|
91845
91852
|
"properties": {
|
|
91846
91853
|
"accessGroup": {
|
|
@@ -92270,6 +92277,66 @@
|
|
|
92270
92277
|
"type": "object",
|
|
92271
92278
|
"description": "The payload of the event, if requested."
|
|
92272
92279
|
},
|
|
92280
|
+
{
|
|
92281
|
+
"properties": {
|
|
92282
|
+
"project": {
|
|
92283
|
+
"properties": {
|
|
92284
|
+
"id": {
|
|
92285
|
+
"type": "string"
|
|
92286
|
+
},
|
|
92287
|
+
"name": {
|
|
92288
|
+
"type": "string"
|
|
92289
|
+
}
|
|
92290
|
+
},
|
|
92291
|
+
"required": [
|
|
92292
|
+
"id",
|
|
92293
|
+
"name"
|
|
92294
|
+
],
|
|
92295
|
+
"type": "object"
|
|
92296
|
+
},
|
|
92297
|
+
"bulkRedirectsLimit": {
|
|
92298
|
+
"type": "number"
|
|
92299
|
+
},
|
|
92300
|
+
"prevBulkRedirectsLimit": {
|
|
92301
|
+
"type": "number"
|
|
92302
|
+
}
|
|
92303
|
+
},
|
|
92304
|
+
"required": [
|
|
92305
|
+
"project",
|
|
92306
|
+
"bulkRedirectsLimit",
|
|
92307
|
+
"prevBulkRedirectsLimit"
|
|
92308
|
+
],
|
|
92309
|
+
"type": "object",
|
|
92310
|
+
"description": "The payload of the event, if requested."
|
|
92311
|
+
},
|
|
92312
|
+
{
|
|
92313
|
+
"properties": {
|
|
92314
|
+
"project": {
|
|
92315
|
+
"properties": {
|
|
92316
|
+
"id": {
|
|
92317
|
+
"type": "string"
|
|
92318
|
+
},
|
|
92319
|
+
"name": {
|
|
92320
|
+
"type": "string"
|
|
92321
|
+
}
|
|
92322
|
+
},
|
|
92323
|
+
"required": [
|
|
92324
|
+
"id",
|
|
92325
|
+
"name"
|
|
92326
|
+
],
|
|
92327
|
+
"type": "object"
|
|
92328
|
+
},
|
|
92329
|
+
"versionId": {
|
|
92330
|
+
"type": "string"
|
|
92331
|
+
}
|
|
92332
|
+
},
|
|
92333
|
+
"required": [
|
|
92334
|
+
"project",
|
|
92335
|
+
"versionId"
|
|
92336
|
+
],
|
|
92337
|
+
"type": "object",
|
|
92338
|
+
"description": "The payload of the event, if requested."
|
|
92339
|
+
},
|
|
92273
92340
|
{
|
|
92274
92341
|
"properties": {
|
|
92275
92342
|
"cn": {
|
|
@@ -92480,6 +92547,30 @@
|
|
|
92480
92547
|
"type": "object",
|
|
92481
92548
|
"description": "The payload of the event, if requested."
|
|
92482
92549
|
},
|
|
92550
|
+
{
|
|
92551
|
+
"properties": {
|
|
92552
|
+
"configuration": {
|
|
92553
|
+
"properties": {
|
|
92554
|
+
"id": {
|
|
92555
|
+
"type": "string"
|
|
92556
|
+
},
|
|
92557
|
+
"name": {
|
|
92558
|
+
"type": "string"
|
|
92559
|
+
}
|
|
92560
|
+
},
|
|
92561
|
+
"required": [
|
|
92562
|
+
"id",
|
|
92563
|
+
"name"
|
|
92564
|
+
],
|
|
92565
|
+
"type": "object"
|
|
92566
|
+
}
|
|
92567
|
+
},
|
|
92568
|
+
"required": [
|
|
92569
|
+
"configuration"
|
|
92570
|
+
],
|
|
92571
|
+
"type": "object",
|
|
92572
|
+
"description": "The payload of the event, if requested."
|
|
92573
|
+
},
|
|
92483
92574
|
{
|
|
92484
92575
|
"properties": {
|
|
92485
92576
|
"team": {
|
|
@@ -93978,6 +94069,7 @@
|
|
|
93978
94069
|
"action": {
|
|
93979
94070
|
"type": "string",
|
|
93980
94071
|
"enum": [
|
|
94072
|
+
"blocked",
|
|
93981
94073
|
"hard-blocked",
|
|
93982
94074
|
"soft-blocked",
|
|
93983
94075
|
"unblocked"
|
|
@@ -94392,15 +94484,15 @@
|
|
|
94392
94484
|
},
|
|
94393
94485
|
"resourceConfig": {
|
|
94394
94486
|
"properties": {
|
|
94487
|
+
"elasticConcurrencyEnabled": {
|
|
94488
|
+
"type": "boolean"
|
|
94489
|
+
},
|
|
94395
94490
|
"nodeType": {
|
|
94396
94491
|
"type": "string"
|
|
94397
94492
|
},
|
|
94398
94493
|
"concurrentBuilds": {
|
|
94399
94494
|
"type": "number"
|
|
94400
94495
|
},
|
|
94401
|
-
"elasticConcurrencyEnabled": {
|
|
94402
|
-
"type": "boolean"
|
|
94403
|
-
},
|
|
94404
94496
|
"buildEntitlements": {
|
|
94405
94497
|
"properties": {
|
|
94406
94498
|
"enhancedBuilds": {
|
|
@@ -94777,15 +94869,6 @@
|
|
|
94777
94869
|
"CONTRIBUTOR"
|
|
94778
94870
|
]
|
|
94779
94871
|
},
|
|
94780
|
-
"confirmed": {
|
|
94781
|
-
"type": "boolean"
|
|
94782
|
-
},
|
|
94783
|
-
"confirmedAt": {
|
|
94784
|
-
"type": "number"
|
|
94785
|
-
},
|
|
94786
|
-
"accessRequestedAt": {
|
|
94787
|
-
"type": "number"
|
|
94788
|
-
},
|
|
94789
94872
|
"teamRoles": {
|
|
94790
94873
|
"items": {
|
|
94791
94874
|
"type": "string",
|
|
@@ -94819,6 +94902,15 @@
|
|
|
94819
94902
|
},
|
|
94820
94903
|
"type": "array"
|
|
94821
94904
|
},
|
|
94905
|
+
"confirmed": {
|
|
94906
|
+
"type": "boolean"
|
|
94907
|
+
},
|
|
94908
|
+
"confirmedAt": {
|
|
94909
|
+
"type": "number"
|
|
94910
|
+
},
|
|
94911
|
+
"accessRequestedAt": {
|
|
94912
|
+
"type": "number"
|
|
94913
|
+
},
|
|
94822
94914
|
"joinedFrom": {
|
|
94823
94915
|
"properties": {
|
|
94824
94916
|
"origin": {
|
|
@@ -98228,8 +98320,8 @@
|
|
|
98228
98320
|
"type": "string",
|
|
98229
98321
|
"enum": [
|
|
98230
98322
|
"redis",
|
|
98231
|
-
"postgres",
|
|
98232
98323
|
"edge-config",
|
|
98324
|
+
"postgres",
|
|
98233
98325
|
"blob",
|
|
98234
98326
|
"integration"
|
|
98235
98327
|
]
|
|
@@ -100571,16 +100663,16 @@
|
|
|
100571
100663
|
"properties": {
|
|
100572
100664
|
"connection": {
|
|
100573
100665
|
"properties": {
|
|
100574
|
-
"status": {
|
|
100575
|
-
"type": "string",
|
|
100576
|
-
"description": "Current status of the connection.",
|
|
100577
|
-
"example": "linked"
|
|
100578
|
-
},
|
|
100579
100666
|
"type": {
|
|
100580
100667
|
"type": "string",
|
|
100581
100668
|
"description": "The Identity Provider \"type\", for example Okta.",
|
|
100582
100669
|
"example": "OktaSAML"
|
|
100583
100670
|
},
|
|
100671
|
+
"status": {
|
|
100672
|
+
"type": "string",
|
|
100673
|
+
"description": "Current status of the connection.",
|
|
100674
|
+
"example": "linked"
|
|
100675
|
+
},
|
|
100584
100676
|
"state": {
|
|
100585
100677
|
"type": "string",
|
|
100586
100678
|
"description": "Current state of the connection.",
|
|
@@ -100595,11 +100687,16 @@
|
|
|
100595
100687
|
"type": "number",
|
|
100596
100688
|
"description": "Timestamp (in milliseconds) of when the last webhook event was received from WorkOS.",
|
|
100597
100689
|
"example": 1611796915677
|
|
100690
|
+
},
|
|
100691
|
+
"lastSyncedAt": {
|
|
100692
|
+
"type": "number",
|
|
100693
|
+
"description": "Timestamp (in milliseconds) of when the last directory sync was performed.",
|
|
100694
|
+
"example": 1611796915677
|
|
100598
100695
|
}
|
|
100599
100696
|
},
|
|
100600
100697
|
"required": [
|
|
100601
|
-
"status",
|
|
100602
100698
|
"type",
|
|
100699
|
+
"status",
|
|
100603
100700
|
"state",
|
|
100604
100701
|
"connectedAt"
|
|
100605
100702
|
],
|
|
@@ -100627,6 +100724,11 @@
|
|
|
100627
100724
|
"type": "number",
|
|
100628
100725
|
"description": "Timestamp (in milliseconds) of when the last webhook event was received from WorkOS.",
|
|
100629
100726
|
"example": 1611796915677
|
|
100727
|
+
},
|
|
100728
|
+
"lastSyncedAt": {
|
|
100729
|
+
"type": "number",
|
|
100730
|
+
"description": "Timestamp (in milliseconds) of when the last directory sync was performed.",
|
|
100731
|
+
"example": 1611796915677
|
|
100630
100732
|
}
|
|
100631
100733
|
},
|
|
100632
100734
|
"required": [
|
|
@@ -100973,6 +101075,9 @@
|
|
|
100973
101075
|
},
|
|
100974
101076
|
"type": "array"
|
|
100975
101077
|
},
|
|
101078
|
+
"teamId": {
|
|
101079
|
+
"type": "string"
|
|
101080
|
+
},
|
|
100976
101081
|
"confirmed": {
|
|
100977
101082
|
"type": "boolean"
|
|
100978
101083
|
},
|
|
@@ -101025,9 +101130,6 @@
|
|
|
101025
101130
|
},
|
|
101026
101131
|
"type": "array"
|
|
101027
101132
|
},
|
|
101028
|
-
"teamId": {
|
|
101029
|
-
"type": "string"
|
|
101030
|
-
},
|
|
101031
101133
|
"createdAt": {
|
|
101032
101134
|
"type": "number"
|
|
101033
101135
|
},
|
|
@@ -101039,14 +101141,14 @@
|
|
|
101039
101141
|
"origin": {
|
|
101040
101142
|
"type": "string",
|
|
101041
101143
|
"enum": [
|
|
101042
|
-
"saml",
|
|
101043
|
-
"gitlab",
|
|
101044
|
-
"bitbucket",
|
|
101045
|
-
"github",
|
|
101046
101144
|
"link",
|
|
101145
|
+
"saml",
|
|
101047
101146
|
"mail",
|
|
101048
101147
|
"import",
|
|
101049
101148
|
"teams",
|
|
101149
|
+
"github",
|
|
101150
|
+
"gitlab",
|
|
101151
|
+
"bitbucket",
|
|
101050
101152
|
"dsync",
|
|
101051
101153
|
"feedback",
|
|
101052
101154
|
"organization-teams"
|
|
@@ -101171,6 +101273,11 @@
|
|
|
101171
101273
|
"type": "number",
|
|
101172
101274
|
"description": "Timestamp (in milliseconds) of when the last webhook event was received from WorkOS.",
|
|
101173
101275
|
"example": 1611796915677
|
|
101276
|
+
},
|
|
101277
|
+
"lastSyncedAt": {
|
|
101278
|
+
"type": "number",
|
|
101279
|
+
"description": "Timestamp (in milliseconds) of when the last directory sync was performed.",
|
|
101280
|
+
"example": 1611796915677
|
|
101174
101281
|
}
|
|
101175
101282
|
},
|
|
101176
101283
|
"required": [
|
|
@@ -101203,6 +101310,11 @@
|
|
|
101203
101310
|
"type": "number",
|
|
101204
101311
|
"description": "Timestamp (in milliseconds) of when the last webhook event was received from WorkOS.",
|
|
101205
101312
|
"example": 1611796915677
|
|
101313
|
+
},
|
|
101314
|
+
"lastSyncedAt": {
|
|
101315
|
+
"type": "number",
|
|
101316
|
+
"description": "Timestamp (in milliseconds) of when the last directory sync was performed.",
|
|
101317
|
+
"example": 1611796915677
|
|
101206
101318
|
}
|
|
101207
101319
|
},
|
|
101208
101320
|
"required": [
|