@faable/deploy-sdk 2.11.0 → 2.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/FaableDeployApi.d.ts +44 -0
- package/dist/FaableDeployApi.d.ts.map +1 -1
- package/dist/api/api-types.d.ts +2 -0
- package/dist/api/api-types.d.ts.map +1 -1
- package/dist/api/generated-client.d.ts +155 -9
- package/dist/api/generated-client.d.ts.map +1 -1
- package/dist/api/generated-client.js +10 -0
- package/dist/api/types.d.ts +159 -8
- package/dist/api/types.d.ts.map +1 -1
- package/package.json +2 -2
- package/scripts/gen-client.mjs +15 -11
- package/spec/openapi.json +603 -15
package/spec/openapi.json
CHANGED
|
@@ -80,9 +80,71 @@
|
|
|
80
80
|
"items": {
|
|
81
81
|
"type": "string",
|
|
82
82
|
"format": "email"
|
|
83
|
+
},
|
|
84
|
+
"minItems": 1,
|
|
85
|
+
"maxItems": 10
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"additionalProperties": false
|
|
89
|
+
},
|
|
90
|
+
"ProjectInviteResult": {
|
|
91
|
+
"type": "object",
|
|
92
|
+
"required": [
|
|
93
|
+
"project",
|
|
94
|
+
"results"
|
|
95
|
+
],
|
|
96
|
+
"properties": {
|
|
97
|
+
"project": {
|
|
98
|
+
"$ref": "#/components/schemas/Project"
|
|
99
|
+
},
|
|
100
|
+
"results": {
|
|
101
|
+
"type": "array",
|
|
102
|
+
"items": {
|
|
103
|
+
"type": "object",
|
|
104
|
+
"required": [
|
|
105
|
+
"email",
|
|
106
|
+
"status"
|
|
107
|
+
],
|
|
108
|
+
"properties": {
|
|
109
|
+
"email": {
|
|
110
|
+
"type": "string"
|
|
111
|
+
},
|
|
112
|
+
"status": {
|
|
113
|
+
"anyOf": [
|
|
114
|
+
{
|
|
115
|
+
"type": "string",
|
|
116
|
+
"enum": [
|
|
117
|
+
"invited"
|
|
118
|
+
]
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"type": "string",
|
|
122
|
+
"enum": [
|
|
123
|
+
"invited_created_account"
|
|
124
|
+
]
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"type": "string",
|
|
128
|
+
"enum": [
|
|
129
|
+
"already_member"
|
|
130
|
+
]
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"type": "string",
|
|
134
|
+
"enum": [
|
|
135
|
+
"failed"
|
|
136
|
+
]
|
|
137
|
+
}
|
|
138
|
+
]
|
|
139
|
+
},
|
|
140
|
+
"user_id": {
|
|
141
|
+
"type": "string"
|
|
142
|
+
}
|
|
143
|
+
}
|
|
83
144
|
}
|
|
84
145
|
}
|
|
85
|
-
}
|
|
146
|
+
},
|
|
147
|
+
"additionalProperties": false
|
|
86
148
|
},
|
|
87
149
|
"Project": {
|
|
88
150
|
"type": "object",
|
|
@@ -121,6 +183,12 @@
|
|
|
121
183
|
"type": "string"
|
|
122
184
|
}
|
|
123
185
|
},
|
|
186
|
+
"owner_suspended": {
|
|
187
|
+
"type": "boolean"
|
|
188
|
+
},
|
|
189
|
+
"owner_email": {
|
|
190
|
+
"type": "string"
|
|
191
|
+
},
|
|
124
192
|
"createdAt": {
|
|
125
193
|
"type": "string",
|
|
126
194
|
"description": "Project creation date"
|
|
@@ -243,12 +311,6 @@
|
|
|
243
311
|
},
|
|
244
312
|
"description": {
|
|
245
313
|
"type": "string"
|
|
246
|
-
},
|
|
247
|
-
"collaborators": {
|
|
248
|
-
"type": "array",
|
|
249
|
-
"items": {
|
|
250
|
-
"type": "string"
|
|
251
|
-
}
|
|
252
314
|
}
|
|
253
315
|
},
|
|
254
316
|
"additionalProperties": false
|
|
@@ -419,6 +481,44 @@
|
|
|
419
481
|
"description": "Opaque revision token; changes whenever the app secrets change",
|
|
420
482
|
"nullable": true,
|
|
421
483
|
"default": null
|
|
484
|
+
},
|
|
485
|
+
"resource_health": {
|
|
486
|
+
"anyOf": [
|
|
487
|
+
{
|
|
488
|
+
"type": "object",
|
|
489
|
+
"required": [
|
|
490
|
+
"state",
|
|
491
|
+
"deployment",
|
|
492
|
+
"at"
|
|
493
|
+
],
|
|
494
|
+
"properties": {
|
|
495
|
+
"state": {
|
|
496
|
+
"type": "string",
|
|
497
|
+
"description": "The runtime exceeded its memory limit (OOMKilled)",
|
|
498
|
+
"enum": [
|
|
499
|
+
"memory_exceeded"
|
|
500
|
+
]
|
|
501
|
+
},
|
|
502
|
+
"deployment": {
|
|
503
|
+
"type": "string",
|
|
504
|
+
"description": "Deployment whose pod tripped the limit"
|
|
505
|
+
},
|
|
506
|
+
"at": {
|
|
507
|
+
"type": "string",
|
|
508
|
+
"description": "ISO time the limit was last observed being hit"
|
|
509
|
+
},
|
|
510
|
+
"container": {
|
|
511
|
+
"type": "string",
|
|
512
|
+
"description": "Container that was OOMKilled"
|
|
513
|
+
}
|
|
514
|
+
},
|
|
515
|
+
"description": "Resource-limit breach observed at runtime"
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
"type": "null"
|
|
519
|
+
}
|
|
520
|
+
],
|
|
521
|
+
"description": "Runtime resource-pressure flag (admin/owner-facing upgrade prompt)"
|
|
422
522
|
}
|
|
423
523
|
}
|
|
424
524
|
},
|
|
@@ -428,7 +528,8 @@
|
|
|
428
528
|
"AppRuntime": {
|
|
429
529
|
"enum": [
|
|
430
530
|
"node",
|
|
431
|
-
"php"
|
|
531
|
+
"php",
|
|
532
|
+
"python"
|
|
432
533
|
]
|
|
433
534
|
},
|
|
434
535
|
"AppMode": {
|
|
@@ -523,6 +624,42 @@
|
|
|
523
624
|
}
|
|
524
625
|
]
|
|
525
626
|
},
|
|
627
|
+
"detected": {
|
|
628
|
+
"anyOf": [
|
|
629
|
+
{
|
|
630
|
+
"type": "object",
|
|
631
|
+
"required": [
|
|
632
|
+
"buildpack",
|
|
633
|
+
"runtime"
|
|
634
|
+
],
|
|
635
|
+
"properties": {
|
|
636
|
+
"buildpack": {
|
|
637
|
+
"type": "string"
|
|
638
|
+
},
|
|
639
|
+
"framework": {
|
|
640
|
+
"type": "string"
|
|
641
|
+
},
|
|
642
|
+
"runtime": {
|
|
643
|
+
"type": "object",
|
|
644
|
+
"required": [
|
|
645
|
+
"name"
|
|
646
|
+
],
|
|
647
|
+
"properties": {
|
|
648
|
+
"name": {
|
|
649
|
+
"type": "string"
|
|
650
|
+
},
|
|
651
|
+
"version": {
|
|
652
|
+
"type": "string"
|
|
653
|
+
}
|
|
654
|
+
}
|
|
655
|
+
}
|
|
656
|
+
}
|
|
657
|
+
},
|
|
658
|
+
{
|
|
659
|
+
"type": "null"
|
|
660
|
+
}
|
|
661
|
+
]
|
|
662
|
+
},
|
|
526
663
|
"mode": {
|
|
527
664
|
"$ref": "#/components/schemas/AppMode"
|
|
528
665
|
},
|
|
@@ -645,6 +782,28 @@
|
|
|
645
782
|
],
|
|
646
783
|
"description": "Platform GitHub access health, maintained by installation lifecycle webhooks. Absent/null = ok; 'deleted' | 'suspended' | 'repo_removed' = access broken until re-linked."
|
|
647
784
|
},
|
|
785
|
+
"github_repo_hidden": {
|
|
786
|
+
"anyOf": [
|
|
787
|
+
{
|
|
788
|
+
"type": "string"
|
|
789
|
+
},
|
|
790
|
+
{
|
|
791
|
+
"type": "null"
|
|
792
|
+
}
|
|
793
|
+
],
|
|
794
|
+
"description": "The linked repository stopped being readable after the app was created, per the GitHub `repository` webhook. Absent/null = visible; 'deleted' | 'privatized' | 'archived' = the source was pulled after deploying (the analyzer re-scores the promoted deployment against our own build artifact)."
|
|
795
|
+
},
|
|
796
|
+
"github_disconnect_reason": {
|
|
797
|
+
"anyOf": [
|
|
798
|
+
{
|
|
799
|
+
"type": "string"
|
|
800
|
+
},
|
|
801
|
+
{
|
|
802
|
+
"type": "null"
|
|
803
|
+
}
|
|
804
|
+
],
|
|
805
|
+
"description": "Why the platform cleared the repository link automatically. Absent/null = never auto-disconnected (or re-linked since); 'push_flood' = the repo exceeded the hourly push limit and must be re-linked by the user."
|
|
806
|
+
},
|
|
648
807
|
"deploy_trigger": {
|
|
649
808
|
"anyOf": [
|
|
650
809
|
{
|
|
@@ -1099,6 +1258,7 @@
|
|
|
1099
1258
|
"enum": [
|
|
1100
1259
|
"node",
|
|
1101
1260
|
"python",
|
|
1261
|
+
"php",
|
|
1102
1262
|
"static"
|
|
1103
1263
|
]
|
|
1104
1264
|
},
|
|
@@ -1121,7 +1281,8 @@
|
|
|
1121
1281
|
"node-full",
|
|
1122
1282
|
"next-standalone",
|
|
1123
1283
|
"static",
|
|
1124
|
-
"python-venv"
|
|
1284
|
+
"python-venv",
|
|
1285
|
+
"php"
|
|
1125
1286
|
]
|
|
1126
1287
|
},
|
|
1127
1288
|
"start_command": {
|
|
@@ -1149,6 +1310,35 @@
|
|
|
1149
1310
|
}
|
|
1150
1311
|
}
|
|
1151
1312
|
},
|
|
1313
|
+
"DeploymentDetected": {
|
|
1314
|
+
"type": "object",
|
|
1315
|
+
"required": [
|
|
1316
|
+
"buildpack",
|
|
1317
|
+
"runtime"
|
|
1318
|
+
],
|
|
1319
|
+
"properties": {
|
|
1320
|
+
"buildpack": {
|
|
1321
|
+
"type": "string"
|
|
1322
|
+
},
|
|
1323
|
+
"framework": {
|
|
1324
|
+
"type": "string"
|
|
1325
|
+
},
|
|
1326
|
+
"runtime": {
|
|
1327
|
+
"type": "object",
|
|
1328
|
+
"required": [
|
|
1329
|
+
"name"
|
|
1330
|
+
],
|
|
1331
|
+
"properties": {
|
|
1332
|
+
"name": {
|
|
1333
|
+
"type": "string"
|
|
1334
|
+
},
|
|
1335
|
+
"version": {
|
|
1336
|
+
"type": "string"
|
|
1337
|
+
}
|
|
1338
|
+
}
|
|
1339
|
+
}
|
|
1340
|
+
}
|
|
1341
|
+
},
|
|
1152
1342
|
"Deployment": {
|
|
1153
1343
|
"type": "object",
|
|
1154
1344
|
"required": [
|
|
@@ -1212,6 +1402,9 @@
|
|
|
1212
1402
|
}
|
|
1213
1403
|
]
|
|
1214
1404
|
},
|
|
1405
|
+
"detected": {
|
|
1406
|
+
"$ref": "#/components/schemas/DeploymentDetected"
|
|
1407
|
+
},
|
|
1215
1408
|
"status": {
|
|
1216
1409
|
"$ref": "#/components/schemas/DeploymentStatus"
|
|
1217
1410
|
},
|
|
@@ -1355,6 +1548,9 @@
|
|
|
1355
1548
|
},
|
|
1356
1549
|
"type": {
|
|
1357
1550
|
"type": "string"
|
|
1551
|
+
},
|
|
1552
|
+
"detected": {
|
|
1553
|
+
"$ref": "#/components/schemas/DeploymentDetected"
|
|
1358
1554
|
}
|
|
1359
1555
|
}
|
|
1360
1556
|
},
|
|
@@ -1595,6 +1791,7 @@
|
|
|
1595
1791
|
"scope",
|
|
1596
1792
|
"source",
|
|
1597
1793
|
"action",
|
|
1794
|
+
"match",
|
|
1598
1795
|
"apply",
|
|
1599
1796
|
"rules",
|
|
1600
1797
|
"enabled",
|
|
@@ -1671,6 +1868,28 @@
|
|
|
1671
1868
|
"enum": [
|
|
1672
1869
|
"ratelimit"
|
|
1673
1870
|
]
|
|
1871
|
+
},
|
|
1872
|
+
{
|
|
1873
|
+
"type": "string",
|
|
1874
|
+
"enum": [
|
|
1875
|
+
"probe"
|
|
1876
|
+
]
|
|
1877
|
+
}
|
|
1878
|
+
]
|
|
1879
|
+
},
|
|
1880
|
+
"match": {
|
|
1881
|
+
"anyOf": [
|
|
1882
|
+
{
|
|
1883
|
+
"type": "string",
|
|
1884
|
+
"enum": [
|
|
1885
|
+
"path"
|
|
1886
|
+
]
|
|
1887
|
+
},
|
|
1888
|
+
{
|
|
1889
|
+
"type": "string",
|
|
1890
|
+
"enum": [
|
|
1891
|
+
"user_agent"
|
|
1892
|
+
]
|
|
1674
1893
|
}
|
|
1675
1894
|
]
|
|
1676
1895
|
},
|
|
@@ -1895,6 +2114,28 @@
|
|
|
1895
2114
|
"enum": [
|
|
1896
2115
|
"ratelimit"
|
|
1897
2116
|
]
|
|
2117
|
+
},
|
|
2118
|
+
{
|
|
2119
|
+
"type": "string",
|
|
2120
|
+
"enum": [
|
|
2121
|
+
"probe"
|
|
2122
|
+
]
|
|
2123
|
+
}
|
|
2124
|
+
]
|
|
2125
|
+
},
|
|
2126
|
+
"match": {
|
|
2127
|
+
"anyOf": [
|
|
2128
|
+
{
|
|
2129
|
+
"type": "string",
|
|
2130
|
+
"enum": [
|
|
2131
|
+
"path"
|
|
2132
|
+
]
|
|
2133
|
+
},
|
|
2134
|
+
{
|
|
2135
|
+
"type": "string",
|
|
2136
|
+
"enum": [
|
|
2137
|
+
"user_agent"
|
|
2138
|
+
]
|
|
1898
2139
|
}
|
|
1899
2140
|
]
|
|
1900
2141
|
},
|
|
@@ -1978,6 +2219,28 @@
|
|
|
1978
2219
|
"enum": [
|
|
1979
2220
|
"ratelimit"
|
|
1980
2221
|
]
|
|
2222
|
+
},
|
|
2223
|
+
{
|
|
2224
|
+
"type": "string",
|
|
2225
|
+
"enum": [
|
|
2226
|
+
"probe"
|
|
2227
|
+
]
|
|
2228
|
+
}
|
|
2229
|
+
]
|
|
2230
|
+
},
|
|
2231
|
+
"match": {
|
|
2232
|
+
"anyOf": [
|
|
2233
|
+
{
|
|
2234
|
+
"type": "string",
|
|
2235
|
+
"enum": [
|
|
2236
|
+
"path"
|
|
2237
|
+
]
|
|
2238
|
+
},
|
|
2239
|
+
{
|
|
2240
|
+
"type": "string",
|
|
2241
|
+
"enum": [
|
|
2242
|
+
"user_agent"
|
|
2243
|
+
]
|
|
1981
2244
|
}
|
|
1982
2245
|
]
|
|
1983
2246
|
},
|
|
@@ -3022,6 +3285,66 @@
|
|
|
3022
3285
|
"apikey": []
|
|
3023
3286
|
}
|
|
3024
3287
|
],
|
|
3288
|
+
"responses": {
|
|
3289
|
+
"200": {
|
|
3290
|
+
"description": "Default Response",
|
|
3291
|
+
"content": {
|
|
3292
|
+
"application/json": {
|
|
3293
|
+
"schema": {
|
|
3294
|
+
"$ref": "#/components/schemas/ProjectInviteResult"
|
|
3295
|
+
}
|
|
3296
|
+
}
|
|
3297
|
+
}
|
|
3298
|
+
}
|
|
3299
|
+
}
|
|
3300
|
+
}
|
|
3301
|
+
},
|
|
3302
|
+
"/project/{id}/collaborator/{user_id}": {
|
|
3303
|
+
"delete": {
|
|
3304
|
+
"operationId": "project/removeCollaborator",
|
|
3305
|
+
"summary": "Remove a collaborator from a project",
|
|
3306
|
+
"tags": [
|
|
3307
|
+
"projects"
|
|
3308
|
+
],
|
|
3309
|
+
"description": "Remove a collaborator from a project",
|
|
3310
|
+
"parameters": [
|
|
3311
|
+
{
|
|
3312
|
+
"schema": {
|
|
3313
|
+
"type": "string"
|
|
3314
|
+
},
|
|
3315
|
+
"in": "path",
|
|
3316
|
+
"name": "id",
|
|
3317
|
+
"required": true
|
|
3318
|
+
},
|
|
3319
|
+
{
|
|
3320
|
+
"schema": {
|
|
3321
|
+
"type": "string"
|
|
3322
|
+
},
|
|
3323
|
+
"in": "path",
|
|
3324
|
+
"name": "user_id",
|
|
3325
|
+
"required": true
|
|
3326
|
+
}
|
|
3327
|
+
],
|
|
3328
|
+
"security": [
|
|
3329
|
+
{
|
|
3330
|
+
"faable_user": []
|
|
3331
|
+
},
|
|
3332
|
+
{
|
|
3333
|
+
"faable_cli": []
|
|
3334
|
+
},
|
|
3335
|
+
{
|
|
3336
|
+
"faable_m2m": []
|
|
3337
|
+
},
|
|
3338
|
+
{
|
|
3339
|
+
"faable_machine": []
|
|
3340
|
+
},
|
|
3341
|
+
{
|
|
3342
|
+
"apikey_basic": []
|
|
3343
|
+
},
|
|
3344
|
+
{
|
|
3345
|
+
"apikey": []
|
|
3346
|
+
}
|
|
3347
|
+
],
|
|
3025
3348
|
"responses": {
|
|
3026
3349
|
"200": {
|
|
3027
3350
|
"description": "Project",
|
|
@@ -3251,6 +3574,12 @@
|
|
|
3251
3574
|
"type": "string"
|
|
3252
3575
|
}
|
|
3253
3576
|
},
|
|
3577
|
+
"owner_suspended": {
|
|
3578
|
+
"type": "boolean"
|
|
3579
|
+
},
|
|
3580
|
+
"owner_email": {
|
|
3581
|
+
"type": "string"
|
|
3582
|
+
},
|
|
3254
3583
|
"createdAt": {
|
|
3255
3584
|
"type": "string",
|
|
3256
3585
|
"description": "Project creation date"
|
|
@@ -3349,6 +3678,12 @@
|
|
|
3349
3678
|
"type": "string"
|
|
3350
3679
|
}
|
|
3351
3680
|
},
|
|
3681
|
+
"owner_suspended": {
|
|
3682
|
+
"type": "boolean"
|
|
3683
|
+
},
|
|
3684
|
+
"owner_email": {
|
|
3685
|
+
"type": "string"
|
|
3686
|
+
},
|
|
3352
3687
|
"createdAt": {
|
|
3353
3688
|
"type": "string",
|
|
3354
3689
|
"description": "Project creation date"
|
|
@@ -3388,12 +3723,6 @@
|
|
|
3388
3723
|
},
|
|
3389
3724
|
"description": {
|
|
3390
3725
|
"type": "string"
|
|
3391
|
-
},
|
|
3392
|
-
"collaborators": {
|
|
3393
|
-
"type": "array",
|
|
3394
|
-
"items": {
|
|
3395
|
-
"type": "string"
|
|
3396
|
-
}
|
|
3397
3726
|
}
|
|
3398
3727
|
},
|
|
3399
3728
|
"additionalProperties": false
|
|
@@ -3473,6 +3802,12 @@
|
|
|
3473
3802
|
"type": "string"
|
|
3474
3803
|
}
|
|
3475
3804
|
},
|
|
3805
|
+
"owner_suspended": {
|
|
3806
|
+
"type": "boolean"
|
|
3807
|
+
},
|
|
3808
|
+
"owner_email": {
|
|
3809
|
+
"type": "string"
|
|
3810
|
+
},
|
|
3476
3811
|
"createdAt": {
|
|
3477
3812
|
"type": "string",
|
|
3478
3813
|
"description": "Project creation date"
|
|
@@ -3569,6 +3904,12 @@
|
|
|
3569
3904
|
"type": "string"
|
|
3570
3905
|
}
|
|
3571
3906
|
},
|
|
3907
|
+
"owner_suspended": {
|
|
3908
|
+
"type": "boolean"
|
|
3909
|
+
},
|
|
3910
|
+
"owner_email": {
|
|
3911
|
+
"type": "string"
|
|
3912
|
+
},
|
|
3572
3913
|
"createdAt": {
|
|
3573
3914
|
"type": "string",
|
|
3574
3915
|
"description": "Project creation date"
|
|
@@ -3832,6 +4173,42 @@
|
|
|
3832
4173
|
}
|
|
3833
4174
|
]
|
|
3834
4175
|
},
|
|
4176
|
+
"detected": {
|
|
4177
|
+
"anyOf": [
|
|
4178
|
+
{
|
|
4179
|
+
"type": "object",
|
|
4180
|
+
"required": [
|
|
4181
|
+
"buildpack",
|
|
4182
|
+
"runtime"
|
|
4183
|
+
],
|
|
4184
|
+
"properties": {
|
|
4185
|
+
"buildpack": {
|
|
4186
|
+
"type": "string"
|
|
4187
|
+
},
|
|
4188
|
+
"framework": {
|
|
4189
|
+
"type": "string"
|
|
4190
|
+
},
|
|
4191
|
+
"runtime": {
|
|
4192
|
+
"type": "object",
|
|
4193
|
+
"required": [
|
|
4194
|
+
"name"
|
|
4195
|
+
],
|
|
4196
|
+
"properties": {
|
|
4197
|
+
"name": {
|
|
4198
|
+
"type": "string"
|
|
4199
|
+
},
|
|
4200
|
+
"version": {
|
|
4201
|
+
"type": "string"
|
|
4202
|
+
}
|
|
4203
|
+
}
|
|
4204
|
+
}
|
|
4205
|
+
}
|
|
4206
|
+
},
|
|
4207
|
+
{
|
|
4208
|
+
"type": "null"
|
|
4209
|
+
}
|
|
4210
|
+
]
|
|
4211
|
+
},
|
|
3835
4212
|
"mode": {
|
|
3836
4213
|
"$ref": "#/components/schemas/AppMode"
|
|
3837
4214
|
},
|
|
@@ -3954,6 +4331,28 @@
|
|
|
3954
4331
|
],
|
|
3955
4332
|
"description": "Platform GitHub access health, maintained by installation lifecycle webhooks. Absent/null = ok; 'deleted' | 'suspended' | 'repo_removed' = access broken until re-linked."
|
|
3956
4333
|
},
|
|
4334
|
+
"github_repo_hidden": {
|
|
4335
|
+
"anyOf": [
|
|
4336
|
+
{
|
|
4337
|
+
"type": "string"
|
|
4338
|
+
},
|
|
4339
|
+
{
|
|
4340
|
+
"type": "null"
|
|
4341
|
+
}
|
|
4342
|
+
],
|
|
4343
|
+
"description": "The linked repository stopped being readable after the app was created, per the GitHub `repository` webhook. Absent/null = visible; 'deleted' | 'privatized' | 'archived' = the source was pulled after deploying (the analyzer re-scores the promoted deployment against our own build artifact)."
|
|
4344
|
+
},
|
|
4345
|
+
"github_disconnect_reason": {
|
|
4346
|
+
"anyOf": [
|
|
4347
|
+
{
|
|
4348
|
+
"type": "string"
|
|
4349
|
+
},
|
|
4350
|
+
{
|
|
4351
|
+
"type": "null"
|
|
4352
|
+
}
|
|
4353
|
+
],
|
|
4354
|
+
"description": "Why the platform cleared the repository link automatically. Absent/null = never auto-disconnected (or re-linked since); 'push_flood' = the repo exceeded the hourly push limit and must be re-linked by the user."
|
|
4355
|
+
},
|
|
3957
4356
|
"deploy_trigger": {
|
|
3958
4357
|
"anyOf": [
|
|
3959
4358
|
{
|
|
@@ -4127,6 +4526,42 @@
|
|
|
4127
4526
|
}
|
|
4128
4527
|
]
|
|
4129
4528
|
},
|
|
4529
|
+
"detected": {
|
|
4530
|
+
"anyOf": [
|
|
4531
|
+
{
|
|
4532
|
+
"type": "object",
|
|
4533
|
+
"required": [
|
|
4534
|
+
"buildpack",
|
|
4535
|
+
"runtime"
|
|
4536
|
+
],
|
|
4537
|
+
"properties": {
|
|
4538
|
+
"buildpack": {
|
|
4539
|
+
"type": "string"
|
|
4540
|
+
},
|
|
4541
|
+
"framework": {
|
|
4542
|
+
"type": "string"
|
|
4543
|
+
},
|
|
4544
|
+
"runtime": {
|
|
4545
|
+
"type": "object",
|
|
4546
|
+
"required": [
|
|
4547
|
+
"name"
|
|
4548
|
+
],
|
|
4549
|
+
"properties": {
|
|
4550
|
+
"name": {
|
|
4551
|
+
"type": "string"
|
|
4552
|
+
},
|
|
4553
|
+
"version": {
|
|
4554
|
+
"type": "string"
|
|
4555
|
+
}
|
|
4556
|
+
}
|
|
4557
|
+
}
|
|
4558
|
+
}
|
|
4559
|
+
},
|
|
4560
|
+
{
|
|
4561
|
+
"type": "null"
|
|
4562
|
+
}
|
|
4563
|
+
]
|
|
4564
|
+
},
|
|
4130
4565
|
"mode": {
|
|
4131
4566
|
"$ref": "#/components/schemas/AppMode"
|
|
4132
4567
|
},
|
|
@@ -4249,6 +4684,28 @@
|
|
|
4249
4684
|
],
|
|
4250
4685
|
"description": "Platform GitHub access health, maintained by installation lifecycle webhooks. Absent/null = ok; 'deleted' | 'suspended' | 'repo_removed' = access broken until re-linked."
|
|
4251
4686
|
},
|
|
4687
|
+
"github_repo_hidden": {
|
|
4688
|
+
"anyOf": [
|
|
4689
|
+
{
|
|
4690
|
+
"type": "string"
|
|
4691
|
+
},
|
|
4692
|
+
{
|
|
4693
|
+
"type": "null"
|
|
4694
|
+
}
|
|
4695
|
+
],
|
|
4696
|
+
"description": "The linked repository stopped being readable after the app was created, per the GitHub `repository` webhook. Absent/null = visible; 'deleted' | 'privatized' | 'archived' = the source was pulled after deploying (the analyzer re-scores the promoted deployment against our own build artifact)."
|
|
4697
|
+
},
|
|
4698
|
+
"github_disconnect_reason": {
|
|
4699
|
+
"anyOf": [
|
|
4700
|
+
{
|
|
4701
|
+
"type": "string"
|
|
4702
|
+
},
|
|
4703
|
+
{
|
|
4704
|
+
"type": "null"
|
|
4705
|
+
}
|
|
4706
|
+
],
|
|
4707
|
+
"description": "Why the platform cleared the repository link automatically. Absent/null = never auto-disconnected (or re-linked since); 'push_flood' = the repo exceeded the hourly push limit and must be re-linked by the user."
|
|
4708
|
+
},
|
|
4252
4709
|
"deploy_trigger": {
|
|
4253
4710
|
"anyOf": [
|
|
4254
4711
|
{
|
|
@@ -4441,6 +4898,42 @@
|
|
|
4441
4898
|
}
|
|
4442
4899
|
]
|
|
4443
4900
|
},
|
|
4901
|
+
"detected": {
|
|
4902
|
+
"anyOf": [
|
|
4903
|
+
{
|
|
4904
|
+
"type": "object",
|
|
4905
|
+
"required": [
|
|
4906
|
+
"buildpack",
|
|
4907
|
+
"runtime"
|
|
4908
|
+
],
|
|
4909
|
+
"properties": {
|
|
4910
|
+
"buildpack": {
|
|
4911
|
+
"type": "string"
|
|
4912
|
+
},
|
|
4913
|
+
"framework": {
|
|
4914
|
+
"type": "string"
|
|
4915
|
+
},
|
|
4916
|
+
"runtime": {
|
|
4917
|
+
"type": "object",
|
|
4918
|
+
"required": [
|
|
4919
|
+
"name"
|
|
4920
|
+
],
|
|
4921
|
+
"properties": {
|
|
4922
|
+
"name": {
|
|
4923
|
+
"type": "string"
|
|
4924
|
+
},
|
|
4925
|
+
"version": {
|
|
4926
|
+
"type": "string"
|
|
4927
|
+
}
|
|
4928
|
+
}
|
|
4929
|
+
}
|
|
4930
|
+
}
|
|
4931
|
+
},
|
|
4932
|
+
{
|
|
4933
|
+
"type": "null"
|
|
4934
|
+
}
|
|
4935
|
+
]
|
|
4936
|
+
},
|
|
4444
4937
|
"mode": {
|
|
4445
4938
|
"$ref": "#/components/schemas/AppMode"
|
|
4446
4939
|
},
|
|
@@ -4563,6 +5056,28 @@
|
|
|
4563
5056
|
],
|
|
4564
5057
|
"description": "Platform GitHub access health, maintained by installation lifecycle webhooks. Absent/null = ok; 'deleted' | 'suspended' | 'repo_removed' = access broken until re-linked."
|
|
4565
5058
|
},
|
|
5059
|
+
"github_repo_hidden": {
|
|
5060
|
+
"anyOf": [
|
|
5061
|
+
{
|
|
5062
|
+
"type": "string"
|
|
5063
|
+
},
|
|
5064
|
+
{
|
|
5065
|
+
"type": "null"
|
|
5066
|
+
}
|
|
5067
|
+
],
|
|
5068
|
+
"description": "The linked repository stopped being readable after the app was created, per the GitHub `repository` webhook. Absent/null = visible; 'deleted' | 'privatized' | 'archived' = the source was pulled after deploying (the analyzer re-scores the promoted deployment against our own build artifact)."
|
|
5069
|
+
},
|
|
5070
|
+
"github_disconnect_reason": {
|
|
5071
|
+
"anyOf": [
|
|
5072
|
+
{
|
|
5073
|
+
"type": "string"
|
|
5074
|
+
},
|
|
5075
|
+
{
|
|
5076
|
+
"type": "null"
|
|
5077
|
+
}
|
|
5078
|
+
],
|
|
5079
|
+
"description": "Why the platform cleared the repository link automatically. Absent/null = never auto-disconnected (or re-linked since); 'push_flood' = the repo exceeded the hourly push limit and must be re-linked by the user."
|
|
5080
|
+
},
|
|
4566
5081
|
"deploy_trigger": {
|
|
4567
5082
|
"anyOf": [
|
|
4568
5083
|
{
|
|
@@ -4716,6 +5231,42 @@
|
|
|
4716
5231
|
}
|
|
4717
5232
|
]
|
|
4718
5233
|
},
|
|
5234
|
+
"detected": {
|
|
5235
|
+
"anyOf": [
|
|
5236
|
+
{
|
|
5237
|
+
"type": "object",
|
|
5238
|
+
"required": [
|
|
5239
|
+
"buildpack",
|
|
5240
|
+
"runtime"
|
|
5241
|
+
],
|
|
5242
|
+
"properties": {
|
|
5243
|
+
"buildpack": {
|
|
5244
|
+
"type": "string"
|
|
5245
|
+
},
|
|
5246
|
+
"framework": {
|
|
5247
|
+
"type": "string"
|
|
5248
|
+
},
|
|
5249
|
+
"runtime": {
|
|
5250
|
+
"type": "object",
|
|
5251
|
+
"required": [
|
|
5252
|
+
"name"
|
|
5253
|
+
],
|
|
5254
|
+
"properties": {
|
|
5255
|
+
"name": {
|
|
5256
|
+
"type": "string"
|
|
5257
|
+
},
|
|
5258
|
+
"version": {
|
|
5259
|
+
"type": "string"
|
|
5260
|
+
}
|
|
5261
|
+
}
|
|
5262
|
+
}
|
|
5263
|
+
}
|
|
5264
|
+
},
|
|
5265
|
+
{
|
|
5266
|
+
"type": "null"
|
|
5267
|
+
}
|
|
5268
|
+
]
|
|
5269
|
+
},
|
|
4719
5270
|
"mode": {
|
|
4720
5271
|
"$ref": "#/components/schemas/AppMode"
|
|
4721
5272
|
},
|
|
@@ -4838,6 +5389,28 @@
|
|
|
4838
5389
|
],
|
|
4839
5390
|
"description": "Platform GitHub access health, maintained by installation lifecycle webhooks. Absent/null = ok; 'deleted' | 'suspended' | 'repo_removed' = access broken until re-linked."
|
|
4840
5391
|
},
|
|
5392
|
+
"github_repo_hidden": {
|
|
5393
|
+
"anyOf": [
|
|
5394
|
+
{
|
|
5395
|
+
"type": "string"
|
|
5396
|
+
},
|
|
5397
|
+
{
|
|
5398
|
+
"type": "null"
|
|
5399
|
+
}
|
|
5400
|
+
],
|
|
5401
|
+
"description": "The linked repository stopped being readable after the app was created, per the GitHub `repository` webhook. Absent/null = visible; 'deleted' | 'privatized' | 'archived' = the source was pulled after deploying (the analyzer re-scores the promoted deployment against our own build artifact)."
|
|
5402
|
+
},
|
|
5403
|
+
"github_disconnect_reason": {
|
|
5404
|
+
"anyOf": [
|
|
5405
|
+
{
|
|
5406
|
+
"type": "string"
|
|
5407
|
+
},
|
|
5408
|
+
{
|
|
5409
|
+
"type": "null"
|
|
5410
|
+
}
|
|
5411
|
+
],
|
|
5412
|
+
"description": "Why the platform cleared the repository link automatically. Absent/null = never auto-disconnected (or re-linked since); 'push_flood' = the repo exceeded the hourly push limit and must be re-linked by the user."
|
|
5413
|
+
},
|
|
4841
5414
|
"deploy_trigger": {
|
|
4842
5415
|
"anyOf": [
|
|
4843
5416
|
{
|
|
@@ -6355,6 +6928,9 @@
|
|
|
6355
6928
|
}
|
|
6356
6929
|
]
|
|
6357
6930
|
},
|
|
6931
|
+
"detected": {
|
|
6932
|
+
"$ref": "#/components/schemas/DeploymentDetected"
|
|
6933
|
+
},
|
|
6358
6934
|
"status": {
|
|
6359
6935
|
"$ref": "#/components/schemas/DeploymentStatus"
|
|
6360
6936
|
},
|
|
@@ -6488,6 +7064,9 @@
|
|
|
6488
7064
|
}
|
|
6489
7065
|
]
|
|
6490
7066
|
},
|
|
7067
|
+
"detected": {
|
|
7068
|
+
"$ref": "#/components/schemas/DeploymentDetected"
|
|
7069
|
+
},
|
|
6491
7070
|
"status": {
|
|
6492
7071
|
"$ref": "#/components/schemas/DeploymentStatus"
|
|
6493
7072
|
},
|
|
@@ -6536,6 +7115,9 @@
|
|
|
6536
7115
|
},
|
|
6537
7116
|
"type": {
|
|
6538
7117
|
"type": "string"
|
|
7118
|
+
},
|
|
7119
|
+
"detected": {
|
|
7120
|
+
"$ref": "#/components/schemas/DeploymentDetected"
|
|
6539
7121
|
}
|
|
6540
7122
|
}
|
|
6541
7123
|
}
|
|
@@ -6640,6 +7222,9 @@
|
|
|
6640
7222
|
}
|
|
6641
7223
|
]
|
|
6642
7224
|
},
|
|
7225
|
+
"detected": {
|
|
7226
|
+
"$ref": "#/components/schemas/DeploymentDetected"
|
|
7227
|
+
},
|
|
6643
7228
|
"status": {
|
|
6644
7229
|
"$ref": "#/components/schemas/DeploymentStatus"
|
|
6645
7230
|
},
|
|
@@ -6771,6 +7356,9 @@
|
|
|
6771
7356
|
}
|
|
6772
7357
|
]
|
|
6773
7358
|
},
|
|
7359
|
+
"detected": {
|
|
7360
|
+
"$ref": "#/components/schemas/DeploymentDetected"
|
|
7361
|
+
},
|
|
6774
7362
|
"status": {
|
|
6775
7363
|
"$ref": "#/components/schemas/DeploymentStatus"
|
|
6776
7364
|
},
|