@faable/deploy-sdk 1.0.21 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/FaableDeployApi.d.ts +28 -12
- package/dist/FaableDeployApi.d.ts.map +1 -1
- package/dist/FaableDeployApi.js +12 -0
- package/dist/api/api-types.d.ts +56 -0
- package/dist/api/api-types.d.ts.map +1 -1
- package/dist/api/types.d.ts +1041 -453
- package/dist/api/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/api/types.d.ts
CHANGED
|
@@ -31,14 +31,14 @@ export interface paths {
|
|
|
31
31
|
cookie?: never;
|
|
32
32
|
};
|
|
33
33
|
/**
|
|
34
|
-
* List
|
|
35
|
-
* @description List
|
|
34
|
+
* List Projects
|
|
35
|
+
* @description List Projects
|
|
36
36
|
*/
|
|
37
37
|
get: operations["project/list"];
|
|
38
38
|
put?: never;
|
|
39
39
|
/**
|
|
40
|
-
* Create
|
|
41
|
-
* @description Create
|
|
40
|
+
* Create Project
|
|
41
|
+
* @description Create Project
|
|
42
42
|
*/
|
|
43
43
|
post: operations["project/create"];
|
|
44
44
|
delete?: never;
|
|
@@ -55,21 +55,21 @@ export interface paths {
|
|
|
55
55
|
cookie?: never;
|
|
56
56
|
};
|
|
57
57
|
/**
|
|
58
|
-
* Get
|
|
59
|
-
* @description Get
|
|
58
|
+
* Get Project
|
|
59
|
+
* @description Get Project
|
|
60
60
|
*/
|
|
61
61
|
get: operations["project/get"];
|
|
62
62
|
put?: never;
|
|
63
63
|
/**
|
|
64
|
-
* Update
|
|
65
|
-
* @description Update
|
|
64
|
+
* Update Project
|
|
65
|
+
* @description Update Project
|
|
66
66
|
*/
|
|
67
67
|
post: operations["project/update"];
|
|
68
68
|
/**
|
|
69
|
-
* Delete
|
|
70
|
-
* @description Delete
|
|
69
|
+
* Delete Project
|
|
70
|
+
* @description Delete Project
|
|
71
71
|
*/
|
|
72
|
-
delete: operations["project/
|
|
72
|
+
delete: operations["project/delete"];
|
|
73
73
|
options?: never;
|
|
74
74
|
head?: never;
|
|
75
75
|
patch?: never;
|
|
@@ -83,14 +83,14 @@ export interface paths {
|
|
|
83
83
|
cookie?: never;
|
|
84
84
|
};
|
|
85
85
|
/**
|
|
86
|
-
* List
|
|
87
|
-
* @description List
|
|
86
|
+
* List Apps
|
|
87
|
+
* @description List Apps
|
|
88
88
|
*/
|
|
89
89
|
get: operations["app/list"];
|
|
90
90
|
put?: never;
|
|
91
91
|
/**
|
|
92
|
-
* Create
|
|
93
|
-
* @description Create
|
|
92
|
+
* Create App
|
|
93
|
+
* @description Create App
|
|
94
94
|
*/
|
|
95
95
|
post: operations["app/create"];
|
|
96
96
|
delete?: never;
|
|
@@ -107,21 +107,21 @@ export interface paths {
|
|
|
107
107
|
cookie?: never;
|
|
108
108
|
};
|
|
109
109
|
/**
|
|
110
|
-
* Get
|
|
111
|
-
* @description Get
|
|
110
|
+
* Get App
|
|
111
|
+
* @description Get App
|
|
112
112
|
*/
|
|
113
113
|
get: operations["app/get"];
|
|
114
114
|
put?: never;
|
|
115
115
|
/**
|
|
116
|
-
* Update
|
|
117
|
-
* @description Update
|
|
116
|
+
* Update App
|
|
117
|
+
* @description Update App
|
|
118
118
|
*/
|
|
119
119
|
post: operations["app/update"];
|
|
120
120
|
/**
|
|
121
|
-
* Delete
|
|
122
|
-
* @description Delete
|
|
121
|
+
* Delete App
|
|
122
|
+
* @description Delete App
|
|
123
123
|
*/
|
|
124
|
-
delete: operations["app/
|
|
124
|
+
delete: operations["app/delete"];
|
|
125
125
|
options?: never;
|
|
126
126
|
head?: never;
|
|
127
127
|
patch?: never;
|
|
@@ -227,6 +227,70 @@ export interface paths {
|
|
|
227
227
|
patch?: never;
|
|
228
228
|
trace?: never;
|
|
229
229
|
};
|
|
230
|
+
"/app/{id}/link-repository": {
|
|
231
|
+
parameters: {
|
|
232
|
+
query?: never;
|
|
233
|
+
header?: never;
|
|
234
|
+
path?: never;
|
|
235
|
+
cookie?: never;
|
|
236
|
+
};
|
|
237
|
+
get?: never;
|
|
238
|
+
put?: never;
|
|
239
|
+
/**
|
|
240
|
+
* Link a GitHub repository to an app
|
|
241
|
+
* @description Link a GitHub repository to an app after verifying the user has a connected GitHub identity with access to the repository.
|
|
242
|
+
*/
|
|
243
|
+
post: operations["app/link_repository"];
|
|
244
|
+
delete?: never;
|
|
245
|
+
options?: never;
|
|
246
|
+
head?: never;
|
|
247
|
+
patch?: never;
|
|
248
|
+
trace?: never;
|
|
249
|
+
};
|
|
250
|
+
"/app/{id}/unlink-repository": {
|
|
251
|
+
parameters: {
|
|
252
|
+
query?: never;
|
|
253
|
+
header?: never;
|
|
254
|
+
path?: never;
|
|
255
|
+
cookie?: never;
|
|
256
|
+
};
|
|
257
|
+
get?: never;
|
|
258
|
+
put?: never;
|
|
259
|
+
/**
|
|
260
|
+
* Unlink the GitHub repository from an app
|
|
261
|
+
* @description Unlink the GitHub repository from an app.
|
|
262
|
+
*/
|
|
263
|
+
post: operations["app/unlink_repository"];
|
|
264
|
+
delete?: never;
|
|
265
|
+
options?: never;
|
|
266
|
+
head?: never;
|
|
267
|
+
patch?: never;
|
|
268
|
+
trace?: never;
|
|
269
|
+
};
|
|
270
|
+
"/app/{id}/deploy-workflow": {
|
|
271
|
+
parameters: {
|
|
272
|
+
query?: never;
|
|
273
|
+
header?: never;
|
|
274
|
+
path?: never;
|
|
275
|
+
cookie?: never;
|
|
276
|
+
};
|
|
277
|
+
/**
|
|
278
|
+
* Get deploy workflow status
|
|
279
|
+
* @description Check whether the app’s linked repository has a GitHub Actions workflow that deploys to Faable.
|
|
280
|
+
*/
|
|
281
|
+
get: operations["app/get_deploy_workflow"];
|
|
282
|
+
put?: never;
|
|
283
|
+
/**
|
|
284
|
+
* Set up deploy workflow
|
|
285
|
+
* @description Commit the Faable deploy GitHub Actions workflow to the app’s linked repository (no-op if already present).
|
|
286
|
+
*/
|
|
287
|
+
post: operations["app/setup_deploy_workflow"];
|
|
288
|
+
delete?: never;
|
|
289
|
+
options?: never;
|
|
290
|
+
head?: never;
|
|
291
|
+
patch?: never;
|
|
292
|
+
trace?: never;
|
|
293
|
+
};
|
|
230
294
|
"/deployment": {
|
|
231
295
|
parameters: {
|
|
232
296
|
query?: never;
|
|
@@ -235,14 +299,14 @@ export interface paths {
|
|
|
235
299
|
cookie?: never;
|
|
236
300
|
};
|
|
237
301
|
/**
|
|
238
|
-
* List
|
|
239
|
-
* @description List
|
|
302
|
+
* List Deployments
|
|
303
|
+
* @description List Deployments
|
|
240
304
|
*/
|
|
241
305
|
get: operations["deployment/list"];
|
|
242
306
|
put?: never;
|
|
243
307
|
/**
|
|
244
|
-
* Create
|
|
245
|
-
* @description Create
|
|
308
|
+
* Create Deployment
|
|
309
|
+
* @description Create Deployment
|
|
246
310
|
*/
|
|
247
311
|
post: operations["deployment/create"];
|
|
248
312
|
delete?: never;
|
|
@@ -259,17 +323,17 @@ export interface paths {
|
|
|
259
323
|
cookie?: never;
|
|
260
324
|
};
|
|
261
325
|
/**
|
|
262
|
-
* Get
|
|
263
|
-
* @description Get
|
|
326
|
+
* Get Deployment
|
|
327
|
+
* @description Get Deployment
|
|
264
328
|
*/
|
|
265
329
|
get: operations["deployment/get"];
|
|
266
330
|
put?: never;
|
|
267
331
|
post?: never;
|
|
268
332
|
/**
|
|
269
|
-
* Delete
|
|
270
|
-
* @description Delete
|
|
333
|
+
* Delete Deployment
|
|
334
|
+
* @description Delete Deployment
|
|
271
335
|
*/
|
|
272
|
-
delete: operations["deployment/
|
|
336
|
+
delete: operations["deployment/delete"];
|
|
273
337
|
options?: never;
|
|
274
338
|
head?: never;
|
|
275
339
|
patch?: never;
|
|
@@ -283,14 +347,14 @@ export interface paths {
|
|
|
283
347
|
cookie?: never;
|
|
284
348
|
};
|
|
285
349
|
/**
|
|
286
|
-
* List
|
|
287
|
-
* @description List
|
|
350
|
+
* List Domains
|
|
351
|
+
* @description List Domains
|
|
288
352
|
*/
|
|
289
353
|
get: operations["domain/list"];
|
|
290
354
|
put?: never;
|
|
291
355
|
/**
|
|
292
|
-
* Create
|
|
293
|
-
* @description Create
|
|
356
|
+
* Create Domain
|
|
357
|
+
* @description Create Domain
|
|
294
358
|
*/
|
|
295
359
|
post: operations["domain/create"];
|
|
296
360
|
delete?: never;
|
|
@@ -307,21 +371,21 @@ export interface paths {
|
|
|
307
371
|
cookie?: never;
|
|
308
372
|
};
|
|
309
373
|
/**
|
|
310
|
-
* Get
|
|
311
|
-
* @description Get
|
|
374
|
+
* Get Domain
|
|
375
|
+
* @description Get Domain
|
|
312
376
|
*/
|
|
313
377
|
get: operations["domain/get"];
|
|
314
378
|
put?: never;
|
|
315
379
|
/**
|
|
316
|
-
* Update
|
|
317
|
-
* @description Update
|
|
380
|
+
* Update Domain
|
|
381
|
+
* @description Update Domain
|
|
318
382
|
*/
|
|
319
383
|
post: operations["domain/update"];
|
|
320
384
|
/**
|
|
321
|
-
* Delete
|
|
322
|
-
* @description Delete
|
|
385
|
+
* Delete Domain
|
|
386
|
+
* @description Delete Domain
|
|
323
387
|
*/
|
|
324
|
-
delete: operations["domain/
|
|
388
|
+
delete: operations["domain/delete"];
|
|
325
389
|
options?: never;
|
|
326
390
|
head?: never;
|
|
327
391
|
patch?: never;
|
|
@@ -435,14 +499,14 @@ export interface paths {
|
|
|
435
499
|
cookie?: never;
|
|
436
500
|
};
|
|
437
501
|
/**
|
|
438
|
-
* List
|
|
439
|
-
* @description List
|
|
502
|
+
* List Contacts
|
|
503
|
+
* @description List Contacts
|
|
440
504
|
*/
|
|
441
505
|
get: operations["contact/list"];
|
|
442
506
|
put?: never;
|
|
443
507
|
/**
|
|
444
|
-
* Create
|
|
445
|
-
* @description Create
|
|
508
|
+
* Create Contact
|
|
509
|
+
* @description Create Contact
|
|
446
510
|
*/
|
|
447
511
|
post: operations["contact/create"];
|
|
448
512
|
delete?: never;
|
|
@@ -459,21 +523,21 @@ export interface paths {
|
|
|
459
523
|
cookie?: never;
|
|
460
524
|
};
|
|
461
525
|
/**
|
|
462
|
-
* Get
|
|
463
|
-
* @description Get
|
|
526
|
+
* Get Contact
|
|
527
|
+
* @description Get Contact
|
|
464
528
|
*/
|
|
465
529
|
get: operations["contact/get"];
|
|
466
530
|
put?: never;
|
|
467
531
|
/**
|
|
468
|
-
* Update
|
|
469
|
-
* @description Update
|
|
532
|
+
* Update Contact
|
|
533
|
+
* @description Update Contact
|
|
470
534
|
*/
|
|
471
535
|
post: operations["contact/update"];
|
|
472
536
|
/**
|
|
473
|
-
* Delete
|
|
474
|
-
* @description Delete
|
|
537
|
+
* Delete Contact
|
|
538
|
+
* @description Delete Contact
|
|
475
539
|
*/
|
|
476
|
-
delete: operations["contact/
|
|
540
|
+
delete: operations["contact/delete"];
|
|
477
541
|
options?: never;
|
|
478
542
|
head?: never;
|
|
479
543
|
patch?: never;
|
|
@@ -487,14 +551,14 @@ export interface paths {
|
|
|
487
551
|
cookie?: never;
|
|
488
552
|
};
|
|
489
553
|
/**
|
|
490
|
-
* List
|
|
491
|
-
* @description List
|
|
554
|
+
* List Apikeys
|
|
555
|
+
* @description List Apikeys
|
|
492
556
|
*/
|
|
493
557
|
get: operations["apikey/list"];
|
|
494
558
|
put?: never;
|
|
495
559
|
/**
|
|
496
|
-
* Create
|
|
497
|
-
* @description Create
|
|
560
|
+
* Create Apikey
|
|
561
|
+
* @description Create Apikey
|
|
498
562
|
*/
|
|
499
563
|
post: operations["apikey/create"];
|
|
500
564
|
delete?: never;
|
|
@@ -511,21 +575,21 @@ export interface paths {
|
|
|
511
575
|
cookie?: never;
|
|
512
576
|
};
|
|
513
577
|
/**
|
|
514
|
-
* Get
|
|
515
|
-
* @description Get
|
|
578
|
+
* Get Apikey
|
|
579
|
+
* @description Get Apikey
|
|
516
580
|
*/
|
|
517
581
|
get: operations["apikey/get"];
|
|
518
582
|
put?: never;
|
|
519
583
|
/**
|
|
520
|
-
* Update
|
|
521
|
-
* @description Update
|
|
584
|
+
* Update Apikey
|
|
585
|
+
* @description Update Apikey
|
|
522
586
|
*/
|
|
523
587
|
post: operations["apikey/update"];
|
|
524
588
|
/**
|
|
525
|
-
* Delete
|
|
526
|
-
* @description Delete
|
|
589
|
+
* Delete Apikey
|
|
590
|
+
* @description Delete Apikey
|
|
527
591
|
*/
|
|
528
|
-
delete: operations["apikey/
|
|
592
|
+
delete: operations["apikey/delete"];
|
|
529
593
|
options?: never;
|
|
530
594
|
head?: never;
|
|
531
595
|
patch?: never;
|
|
@@ -659,6 +723,46 @@ export interface paths {
|
|
|
659
723
|
patch?: never;
|
|
660
724
|
trace?: never;
|
|
661
725
|
};
|
|
726
|
+
"/github/installations": {
|
|
727
|
+
parameters: {
|
|
728
|
+
query?: never;
|
|
729
|
+
header?: never;
|
|
730
|
+
path?: never;
|
|
731
|
+
cookie?: never;
|
|
732
|
+
};
|
|
733
|
+
/**
|
|
734
|
+
* List GitHub installations (organizations)
|
|
735
|
+
* @description List the GitHub organizations/accounts where the Faable GitHub App is installed for the authenticated user.
|
|
736
|
+
*/
|
|
737
|
+
get: operations["github/installations"];
|
|
738
|
+
put?: never;
|
|
739
|
+
post?: never;
|
|
740
|
+
delete?: never;
|
|
741
|
+
options?: never;
|
|
742
|
+
head?: never;
|
|
743
|
+
patch?: never;
|
|
744
|
+
trace?: never;
|
|
745
|
+
};
|
|
746
|
+
"/github/installations/{installation_id}/repositories": {
|
|
747
|
+
parameters: {
|
|
748
|
+
query?: never;
|
|
749
|
+
header?: never;
|
|
750
|
+
path?: never;
|
|
751
|
+
cookie?: never;
|
|
752
|
+
};
|
|
753
|
+
/**
|
|
754
|
+
* List repositories for an installation
|
|
755
|
+
* @description List the top repositories for a GitHub installation (organization), optionally filtered by a search term.
|
|
756
|
+
*/
|
|
757
|
+
get: operations["github/installation_repositories"];
|
|
758
|
+
put?: never;
|
|
759
|
+
post?: never;
|
|
760
|
+
delete?: never;
|
|
761
|
+
options?: never;
|
|
762
|
+
head?: never;
|
|
763
|
+
patch?: never;
|
|
764
|
+
trace?: never;
|
|
765
|
+
};
|
|
662
766
|
"/github/webhook": {
|
|
663
767
|
parameters: {
|
|
664
768
|
query?: never;
|
|
@@ -713,21 +817,10 @@ export interface components {
|
|
|
713
817
|
team: string;
|
|
714
818
|
user_id?: string;
|
|
715
819
|
collaborators: string[];
|
|
716
|
-
/** @description Project creation
|
|
820
|
+
/** @description Project creation date */
|
|
717
821
|
createdAt: string;
|
|
718
|
-
/** @description Project
|
|
719
|
-
updatedAt
|
|
720
|
-
};
|
|
721
|
-
ProjectCreate: {
|
|
722
|
-
name: string;
|
|
723
|
-
description?: string;
|
|
724
|
-
slug?: string;
|
|
725
|
-
collaborators?: string[];
|
|
726
|
-
};
|
|
727
|
-
ProjectUpdate: {
|
|
728
|
-
name?: string;
|
|
729
|
-
description?: string;
|
|
730
|
-
collaborators?: string[];
|
|
822
|
+
/** @description Project updated date */
|
|
823
|
+
updatedAt?: string;
|
|
731
824
|
};
|
|
732
825
|
/** @description Event Project Create */
|
|
733
826
|
EventProjectCreate: {
|
|
@@ -737,26 +830,38 @@ export interface components {
|
|
|
737
830
|
produced_at: number;
|
|
738
831
|
payload: components["schemas"]["Project"];
|
|
739
832
|
};
|
|
740
|
-
/** @description Event Project
|
|
741
|
-
|
|
833
|
+
/** @description Event Project Update */
|
|
834
|
+
EventProjectUpdate: {
|
|
742
835
|
/** @enum {string} */
|
|
743
|
-
type: "project.
|
|
836
|
+
type: "project.update";
|
|
744
837
|
/** @description Timestamp */
|
|
745
838
|
produced_at: number;
|
|
746
839
|
payload: components["schemas"]["Project"];
|
|
747
840
|
};
|
|
748
|
-
/** @description Event Project
|
|
749
|
-
|
|
841
|
+
/** @description Event Project Delete */
|
|
842
|
+
EventProjectDelete: {
|
|
750
843
|
/** @enum {string} */
|
|
751
|
-
type: "project.
|
|
844
|
+
type: "project.delete";
|
|
752
845
|
/** @description Timestamp */
|
|
753
846
|
produced_at: number;
|
|
754
847
|
payload: components["schemas"]["Project"];
|
|
755
848
|
};
|
|
849
|
+
ProjectCreate: {
|
|
850
|
+
name: string;
|
|
851
|
+
description?: string;
|
|
852
|
+
slug?: string;
|
|
853
|
+
collaborators?: string[];
|
|
854
|
+
};
|
|
855
|
+
ProjectUpdate: {
|
|
856
|
+
name?: string;
|
|
857
|
+
description?: string;
|
|
858
|
+
collaborators?: string[];
|
|
859
|
+
};
|
|
756
860
|
AppStatus: {
|
|
757
861
|
/**
|
|
758
862
|
* @description High-level summary of where the Database is in its lifecycle
|
|
759
863
|
* @default UNKNOWN
|
|
864
|
+
* @enum {unknown}
|
|
760
865
|
*/
|
|
761
866
|
phase: "UNKNOWN" | "QUEUED" | "BUILDING" | "ERROR" | "INITIALIZING" | "READY" | "CANCELED" | "TERMINATING";
|
|
762
867
|
/**
|
|
@@ -786,6 +891,7 @@ export interface components {
|
|
|
786
891
|
last_commited_purge_service: string | null;
|
|
787
892
|
};
|
|
788
893
|
AppRuntimeStrategy: string;
|
|
894
|
+
/** @enum {unknown} */
|
|
789
895
|
AppRuntime: "node" | "php";
|
|
790
896
|
/** @description App */
|
|
791
897
|
App: {
|
|
@@ -804,6 +910,7 @@ export interface components {
|
|
|
804
910
|
/**
|
|
805
911
|
* @description High-level summary of where the Database is in its lifecycle
|
|
806
912
|
* @default UNKNOWN
|
|
913
|
+
* @enum {unknown}
|
|
807
914
|
*/
|
|
808
915
|
region: "gui1" | "poz1" | "ams1";
|
|
809
916
|
status: components["schemas"]["AppStatus"];
|
|
@@ -814,28 +921,10 @@ export interface components {
|
|
|
814
921
|
metadata: {
|
|
815
922
|
[key: string]: unknown;
|
|
816
923
|
};
|
|
817
|
-
/** @description App creation
|
|
924
|
+
/** @description App creation date */
|
|
818
925
|
createdAt: string;
|
|
819
|
-
/** @description App
|
|
820
|
-
updatedAt
|
|
821
|
-
};
|
|
822
|
-
AppCreate: {
|
|
823
|
-
name: string;
|
|
824
|
-
runtime?: string;
|
|
825
|
-
description?: string;
|
|
826
|
-
github_repo?: string;
|
|
827
|
-
github_branch?: string;
|
|
828
|
-
github_installation_id?: string;
|
|
829
|
-
};
|
|
830
|
-
AppUpdate: {
|
|
831
|
-
name?: string;
|
|
832
|
-
description?: string;
|
|
833
|
-
runtime?: components["schemas"]["AppRuntime"];
|
|
834
|
-
runtime_strategy?: components["schemas"]["AppRuntimeStrategy"];
|
|
835
|
-
instance_type?: string;
|
|
836
|
-
repository?: string;
|
|
837
|
-
github_branch?: string;
|
|
838
|
-
github_installation_id?: string;
|
|
926
|
+
/** @description App updated date */
|
|
927
|
+
updatedAt?: string;
|
|
839
928
|
};
|
|
840
929
|
/** @description Event App Create */
|
|
841
930
|
EventAppCreate: {
|
|
@@ -845,26 +934,43 @@ export interface components {
|
|
|
845
934
|
produced_at: number;
|
|
846
935
|
payload: components["schemas"]["App"];
|
|
847
936
|
};
|
|
848
|
-
/** @description Event App
|
|
849
|
-
|
|
937
|
+
/** @description Event App Update */
|
|
938
|
+
EventAppUpdate: {
|
|
850
939
|
/** @enum {string} */
|
|
851
|
-
type: "app.
|
|
940
|
+
type: "app.update";
|
|
852
941
|
/** @description Timestamp */
|
|
853
942
|
produced_at: number;
|
|
854
943
|
payload: components["schemas"]["App"];
|
|
855
944
|
};
|
|
856
|
-
/** @description Event App
|
|
857
|
-
|
|
945
|
+
/** @description Event App Delete */
|
|
946
|
+
EventAppDelete: {
|
|
858
947
|
/** @enum {string} */
|
|
859
|
-
type: "app.
|
|
948
|
+
type: "app.delete";
|
|
860
949
|
/** @description Timestamp */
|
|
861
950
|
produced_at: number;
|
|
862
951
|
payload: components["schemas"]["App"];
|
|
863
952
|
};
|
|
953
|
+
AppCreate: {
|
|
954
|
+
name: string;
|
|
955
|
+
runtime?: string;
|
|
956
|
+
description?: string;
|
|
957
|
+
};
|
|
958
|
+
AppUpdate: {
|
|
959
|
+
name?: string;
|
|
960
|
+
description?: string;
|
|
961
|
+
runtime?: components["schemas"]["AppRuntime"];
|
|
962
|
+
runtime_strategy?: components["schemas"]["AppRuntimeStrategy"];
|
|
963
|
+
instance_type?: string;
|
|
964
|
+
};
|
|
965
|
+
DeployWorkflowStatus: {
|
|
966
|
+
configured: boolean;
|
|
967
|
+
workflow_path?: string;
|
|
968
|
+
};
|
|
864
969
|
DeploymentStatus: {
|
|
865
970
|
/**
|
|
866
971
|
* @description High-level summary of where the Deployment is in its lifecycle
|
|
867
972
|
* @default UNKNOWN
|
|
973
|
+
* @enum {unknown}
|
|
868
974
|
*/
|
|
869
975
|
phase: "UNKNOWN" | "QUEUED" | "BUILDING" | "ERROR" | "INITIALIZING" | "READY" | "CANCELED" | "TERMINATING";
|
|
870
976
|
};
|
|
@@ -877,21 +983,17 @@ export interface components {
|
|
|
877
983
|
image?: string;
|
|
878
984
|
github_commit?: string;
|
|
879
985
|
github_ref?: string;
|
|
986
|
+
github_actor?: string;
|
|
987
|
+
github_commit_message?: string;
|
|
880
988
|
status: components["schemas"]["DeploymentStatus"];
|
|
881
989
|
/** @default {} */
|
|
882
990
|
metadata: {
|
|
883
991
|
[key: string]: unknown;
|
|
884
992
|
};
|
|
885
|
-
/** @description Deployment creation
|
|
993
|
+
/** @description Deployment creation date */
|
|
886
994
|
createdAt: string;
|
|
887
|
-
/** @description Deployment
|
|
888
|
-
updatedAt
|
|
889
|
-
};
|
|
890
|
-
DeploymentCreate: {
|
|
891
|
-
app_id: string;
|
|
892
|
-
image?: string;
|
|
893
|
-
github_commit?: string;
|
|
894
|
-
github_ref?: string;
|
|
995
|
+
/** @description Deployment updated date */
|
|
996
|
+
updatedAt?: string;
|
|
895
997
|
};
|
|
896
998
|
/** @description Event Deployment Create */
|
|
897
999
|
EventDeploymentCreate: {
|
|
@@ -901,22 +1003,31 @@ export interface components {
|
|
|
901
1003
|
produced_at: number;
|
|
902
1004
|
payload: components["schemas"]["Deployment"];
|
|
903
1005
|
};
|
|
904
|
-
/** @description Event Deployment
|
|
905
|
-
|
|
1006
|
+
/** @description Event Deployment Update */
|
|
1007
|
+
EventDeploymentUpdate: {
|
|
906
1008
|
/** @enum {string} */
|
|
907
|
-
type: "deployment.
|
|
1009
|
+
type: "deployment.update";
|
|
908
1010
|
/** @description Timestamp */
|
|
909
1011
|
produced_at: number;
|
|
910
1012
|
payload: components["schemas"]["Deployment"];
|
|
911
1013
|
};
|
|
912
|
-
/** @description Event Deployment
|
|
913
|
-
|
|
1014
|
+
/** @description Event Deployment Delete */
|
|
1015
|
+
EventDeploymentDelete: {
|
|
914
1016
|
/** @enum {string} */
|
|
915
|
-
type: "deployment.
|
|
1017
|
+
type: "deployment.delete";
|
|
916
1018
|
/** @description Timestamp */
|
|
917
1019
|
produced_at: number;
|
|
918
1020
|
payload: components["schemas"]["Deployment"];
|
|
919
1021
|
};
|
|
1022
|
+
DeploymentCreate: {
|
|
1023
|
+
app_id: string;
|
|
1024
|
+
image?: string;
|
|
1025
|
+
github_commit?: string;
|
|
1026
|
+
github_ref?: string;
|
|
1027
|
+
github_actor?: string;
|
|
1028
|
+
github_commit_message?: string;
|
|
1029
|
+
type?: string;
|
|
1030
|
+
};
|
|
920
1031
|
/** @description Domain */
|
|
921
1032
|
Domain: {
|
|
922
1033
|
/** @description Domain ID */
|
|
@@ -938,25 +1049,10 @@ export interface components {
|
|
|
938
1049
|
metadata: {
|
|
939
1050
|
[key: string]: unknown;
|
|
940
1051
|
};
|
|
941
|
-
/** @description Domain creation
|
|
1052
|
+
/** @description Domain creation date */
|
|
942
1053
|
createdAt: string;
|
|
943
|
-
/** @description Domain
|
|
944
|
-
updatedAt
|
|
945
|
-
};
|
|
946
|
-
DomainCreate: {
|
|
947
|
-
fqdn: string;
|
|
948
|
-
/** @description Linked App */
|
|
949
|
-
app_id?: string;
|
|
950
|
-
/** @default true */
|
|
951
|
-
tls: boolean;
|
|
952
|
-
};
|
|
953
|
-
DomainUpdate: {
|
|
954
|
-
/**
|
|
955
|
-
* @description Link domain to this App
|
|
956
|
-
* @default null
|
|
957
|
-
*/
|
|
958
|
-
app_id: string | null;
|
|
959
|
-
active?: boolean;
|
|
1054
|
+
/** @description Domain updated date */
|
|
1055
|
+
updatedAt?: string;
|
|
960
1056
|
};
|
|
961
1057
|
/** @description Event Domain Create */
|
|
962
1058
|
EventDomainCreate: {
|
|
@@ -966,22 +1062,37 @@ export interface components {
|
|
|
966
1062
|
produced_at: number;
|
|
967
1063
|
payload: components["schemas"]["Domain"];
|
|
968
1064
|
};
|
|
969
|
-
/** @description Event Domain
|
|
970
|
-
|
|
1065
|
+
/** @description Event Domain Update */
|
|
1066
|
+
EventDomainUpdate: {
|
|
971
1067
|
/** @enum {string} */
|
|
972
|
-
type: "domain.
|
|
1068
|
+
type: "domain.update";
|
|
973
1069
|
/** @description Timestamp */
|
|
974
1070
|
produced_at: number;
|
|
975
1071
|
payload: components["schemas"]["Domain"];
|
|
976
1072
|
};
|
|
977
|
-
/** @description Event Domain
|
|
978
|
-
|
|
1073
|
+
/** @description Event Domain Delete */
|
|
1074
|
+
EventDomainDelete: {
|
|
979
1075
|
/** @enum {string} */
|
|
980
|
-
type: "domain.
|
|
1076
|
+
type: "domain.delete";
|
|
981
1077
|
/** @description Timestamp */
|
|
982
1078
|
produced_at: number;
|
|
983
1079
|
payload: components["schemas"]["Domain"];
|
|
984
1080
|
};
|
|
1081
|
+
DomainCreate: {
|
|
1082
|
+
fqdn: string;
|
|
1083
|
+
/** @description Linked App */
|
|
1084
|
+
app_id?: string;
|
|
1085
|
+
/** @default true */
|
|
1086
|
+
tls: boolean;
|
|
1087
|
+
};
|
|
1088
|
+
DomainUpdate: {
|
|
1089
|
+
/**
|
|
1090
|
+
* @description Link domain to this App
|
|
1091
|
+
* @default null
|
|
1092
|
+
*/
|
|
1093
|
+
app_id: string | null;
|
|
1094
|
+
active?: boolean;
|
|
1095
|
+
};
|
|
985
1096
|
/** @description Event Secret Create_batch */
|
|
986
1097
|
EventSecretCreate_batch: {
|
|
987
1098
|
/** @enum {string} */
|
|
@@ -1015,43 +1126,17 @@ export interface components {
|
|
|
1015
1126
|
metadata: {
|
|
1016
1127
|
[key: string]: unknown;
|
|
1017
1128
|
};
|
|
1018
|
-
/** @description Secret creation
|
|
1129
|
+
/** @description Secret creation date */
|
|
1019
1130
|
createdAt: string;
|
|
1020
|
-
/** @description Secret
|
|
1021
|
-
updatedAt
|
|
1131
|
+
/** @description Secret updated date */
|
|
1132
|
+
updatedAt?: string;
|
|
1022
1133
|
};
|
|
1023
1134
|
/** @description PaginatedResponse */
|
|
1024
1135
|
SecretPage: {
|
|
1025
|
-
/**
|
|
1026
|
-
* @description next cursor
|
|
1027
|
-
* @default null
|
|
1028
|
-
*/
|
|
1136
|
+
/** @description next cursor */
|
|
1029
1137
|
next: string | null;
|
|
1030
|
-
/** @description
|
|
1031
|
-
results:
|
|
1032
|
-
/** @description Secret ID */
|
|
1033
|
-
id: string;
|
|
1034
|
-
team: string;
|
|
1035
|
-
/** @description Secret is linked to App */
|
|
1036
|
-
app_id?: string;
|
|
1037
|
-
/** @description Secret is linked to App */
|
|
1038
|
-
profile_id?: string;
|
|
1039
|
-
/** @description Secret is linked to App */
|
|
1040
|
-
related: string;
|
|
1041
|
-
related_model: string;
|
|
1042
|
-
/** @description Secret name */
|
|
1043
|
-
name: string;
|
|
1044
|
-
/** @description Secret value */
|
|
1045
|
-
value: string;
|
|
1046
|
-
/** @default {} */
|
|
1047
|
-
metadata: {
|
|
1048
|
-
[key: string]: unknown;
|
|
1049
|
-
};
|
|
1050
|
-
/** @description Secret creation time */
|
|
1051
|
-
createdAt: string;
|
|
1052
|
-
/** @description Secret update time */
|
|
1053
|
-
updatedAt: string;
|
|
1054
|
-
}[];
|
|
1138
|
+
/** @description List of results */
|
|
1139
|
+
results: components["schemas"]["Secret"][];
|
|
1055
1140
|
};
|
|
1056
1141
|
/** @description Create Secrets by Batch */
|
|
1057
1142
|
SecretCreateBatch: {
|
|
@@ -1076,6 +1161,7 @@ export interface components {
|
|
|
1076
1161
|
/** @description Contact ID */
|
|
1077
1162
|
id: string;
|
|
1078
1163
|
team: string;
|
|
1164
|
+
/** @enum {unknown} */
|
|
1079
1165
|
contact_type: "primary" | "technical" | "security" | "emergency" | "billing";
|
|
1080
1166
|
email?: string;
|
|
1081
1167
|
phone?: string;
|
|
@@ -1083,22 +1169,13 @@ export interface components {
|
|
|
1083
1169
|
metadata: {
|
|
1084
1170
|
[key: string]: unknown;
|
|
1085
1171
|
};
|
|
1086
|
-
/** @description Contact creation
|
|
1172
|
+
/** @description Contact creation date */
|
|
1087
1173
|
createdAt: string;
|
|
1088
|
-
/** @description Contact
|
|
1089
|
-
updatedAt
|
|
1174
|
+
/** @description Contact updated date */
|
|
1175
|
+
updatedAt?: string;
|
|
1090
1176
|
};
|
|
1177
|
+
/** @enum {unknown} */
|
|
1091
1178
|
ContactType: "primary" | "technical" | "security" | "emergency" | "billing";
|
|
1092
|
-
ContactCreate: {
|
|
1093
|
-
contact_type: "primary" | "technical" | "security" | "emergency" | "billing";
|
|
1094
|
-
email?: string;
|
|
1095
|
-
phone?: string;
|
|
1096
|
-
};
|
|
1097
|
-
ContactUpdate: {
|
|
1098
|
-
contact_type?: "primary" | "technical" | "security" | "emergency" | "billing";
|
|
1099
|
-
email?: string;
|
|
1100
|
-
phone?: string;
|
|
1101
|
-
};
|
|
1102
1179
|
/** @description Event Contact Create */
|
|
1103
1180
|
EventContactCreate: {
|
|
1104
1181
|
/** @enum {string} */
|
|
@@ -1107,24 +1184,36 @@ export interface components {
|
|
|
1107
1184
|
produced_at: number;
|
|
1108
1185
|
payload: components["schemas"]["Contact"];
|
|
1109
1186
|
};
|
|
1110
|
-
/** @description Event Contact
|
|
1111
|
-
|
|
1187
|
+
/** @description Event Contact Update */
|
|
1188
|
+
EventContactUpdate: {
|
|
1112
1189
|
/** @enum {string} */
|
|
1113
|
-
type: "contact.
|
|
1190
|
+
type: "contact.update";
|
|
1114
1191
|
/** @description Timestamp */
|
|
1115
1192
|
produced_at: number;
|
|
1116
1193
|
payload: components["schemas"]["Contact"];
|
|
1117
1194
|
};
|
|
1118
|
-
/** @description Event Contact
|
|
1119
|
-
|
|
1195
|
+
/** @description Event Contact Delete */
|
|
1196
|
+
EventContactDelete: {
|
|
1120
1197
|
/** @enum {string} */
|
|
1121
|
-
type: "contact.
|
|
1198
|
+
type: "contact.delete";
|
|
1122
1199
|
/** @description Timestamp */
|
|
1123
1200
|
produced_at: number;
|
|
1124
1201
|
payload: components["schemas"]["Contact"];
|
|
1125
1202
|
};
|
|
1126
|
-
|
|
1127
|
-
|
|
1203
|
+
ContactCreate: {
|
|
1204
|
+
/** @enum {unknown} */
|
|
1205
|
+
contact_type: "primary" | "technical" | "security" | "emergency" | "billing";
|
|
1206
|
+
email?: string;
|
|
1207
|
+
phone?: string;
|
|
1208
|
+
};
|
|
1209
|
+
ContactUpdate: {
|
|
1210
|
+
/** @enum {unknown} */
|
|
1211
|
+
contact_type?: "primary" | "technical" | "security" | "emergency" | "billing";
|
|
1212
|
+
email?: string;
|
|
1213
|
+
phone?: string;
|
|
1214
|
+
};
|
|
1215
|
+
/** @description ApiKey */
|
|
1216
|
+
ApiKey: {
|
|
1128
1217
|
/** @description ApiKey ID */
|
|
1129
1218
|
id: string;
|
|
1130
1219
|
team: string;
|
|
@@ -1136,16 +1225,10 @@ export interface components {
|
|
|
1136
1225
|
metadata: {
|
|
1137
1226
|
[key: string]: unknown;
|
|
1138
1227
|
};
|
|
1139
|
-
/** @description ApiKey creation
|
|
1228
|
+
/** @description ApiKey creation date */
|
|
1140
1229
|
createdAt: string;
|
|
1141
|
-
/** @description ApiKey
|
|
1142
|
-
updatedAt
|
|
1143
|
-
};
|
|
1144
|
-
ApiKeyCreate: {
|
|
1145
|
-
description?: string;
|
|
1146
|
-
};
|
|
1147
|
-
ApiKeyUpdate: {
|
|
1148
|
-
description?: string;
|
|
1230
|
+
/** @description ApiKey updated date */
|
|
1231
|
+
updatedAt?: string;
|
|
1149
1232
|
};
|
|
1150
1233
|
/** @description Event Apikey Create */
|
|
1151
1234
|
EventApikeyCreate: {
|
|
@@ -1155,22 +1238,28 @@ export interface components {
|
|
|
1155
1238
|
produced_at: number;
|
|
1156
1239
|
payload: components["schemas"]["ApiKey"];
|
|
1157
1240
|
};
|
|
1158
|
-
/** @description Event Apikey
|
|
1159
|
-
|
|
1241
|
+
/** @description Event Apikey Update */
|
|
1242
|
+
EventApikeyUpdate: {
|
|
1160
1243
|
/** @enum {string} */
|
|
1161
|
-
type: "apikey.
|
|
1244
|
+
type: "apikey.update";
|
|
1162
1245
|
/** @description Timestamp */
|
|
1163
1246
|
produced_at: number;
|
|
1164
1247
|
payload: components["schemas"]["ApiKey"];
|
|
1165
1248
|
};
|
|
1166
|
-
/** @description Event Apikey
|
|
1167
|
-
|
|
1249
|
+
/** @description Event Apikey Delete */
|
|
1250
|
+
EventApikeyDelete: {
|
|
1168
1251
|
/** @enum {string} */
|
|
1169
|
-
type: "apikey.
|
|
1252
|
+
type: "apikey.delete";
|
|
1170
1253
|
/** @description Timestamp */
|
|
1171
1254
|
produced_at: number;
|
|
1172
1255
|
payload: components["schemas"]["ApiKey"];
|
|
1173
1256
|
};
|
|
1257
|
+
ApiKeyCreate: {
|
|
1258
|
+
description?: string;
|
|
1259
|
+
};
|
|
1260
|
+
ApiKeyUpdate: {
|
|
1261
|
+
description?: string;
|
|
1262
|
+
};
|
|
1174
1263
|
AppChecknameResponse: {
|
|
1175
1264
|
name: string;
|
|
1176
1265
|
slug: string;
|
|
@@ -1205,6 +1294,31 @@ export interface components {
|
|
|
1205
1294
|
status: components["schemas"]["DeploymentStatus"];
|
|
1206
1295
|
};
|
|
1207
1296
|
};
|
|
1297
|
+
GithubRepo: {
|
|
1298
|
+
id: number;
|
|
1299
|
+
/** @description owner/repo */
|
|
1300
|
+
full_name: string;
|
|
1301
|
+
private: boolean;
|
|
1302
|
+
default_branch: string;
|
|
1303
|
+
/** @description Id of the Faable GitHub App installation that grants access */
|
|
1304
|
+
installation_id: number;
|
|
1305
|
+
permissions?: {
|
|
1306
|
+
admin: boolean;
|
|
1307
|
+
push: boolean;
|
|
1308
|
+
pull: boolean;
|
|
1309
|
+
};
|
|
1310
|
+
};
|
|
1311
|
+
GithubInstallation: {
|
|
1312
|
+
installation_id: number;
|
|
1313
|
+
/** @description Org or user that owns the installation */
|
|
1314
|
+
account_login: string;
|
|
1315
|
+
/** @description Organization | User */
|
|
1316
|
+
account_type: string;
|
|
1317
|
+
/** @description Avatar of the org/user that owns the install */
|
|
1318
|
+
account_avatar_url?: string;
|
|
1319
|
+
/** @description GitHub App slug — used to build the install/configure URL */
|
|
1320
|
+
app_slug: string;
|
|
1321
|
+
};
|
|
1208
1322
|
};
|
|
1209
1323
|
responses: never;
|
|
1210
1324
|
parameters: never;
|
|
@@ -1246,12 +1360,16 @@ export interface operations {
|
|
|
1246
1360
|
"project/list": {
|
|
1247
1361
|
parameters: {
|
|
1248
1362
|
query?: {
|
|
1249
|
-
/** @description
|
|
1363
|
+
/** @description Number of items per page (max 200) */
|
|
1364
|
+
pageSize?: number;
|
|
1365
|
+
/** @description Cursor for next page */
|
|
1250
1366
|
cursor?: string;
|
|
1251
|
-
/** @description
|
|
1367
|
+
/** @description Cursor returned by the previous page */
|
|
1252
1368
|
next?: string;
|
|
1253
|
-
/** @description
|
|
1254
|
-
|
|
1369
|
+
/** @description Filter using a FaableQL query */
|
|
1370
|
+
query?: string;
|
|
1371
|
+
/** @description Full-text search across: `name`, `description`, `slug`. */
|
|
1372
|
+
q?: string;
|
|
1255
1373
|
};
|
|
1256
1374
|
header?: never;
|
|
1257
1375
|
path?: never;
|
|
@@ -1259,33 +1377,15 @@ export interface operations {
|
|
|
1259
1377
|
};
|
|
1260
1378
|
requestBody?: never;
|
|
1261
1379
|
responses: {
|
|
1262
|
-
/** @description
|
|
1380
|
+
/** @description Default Response */
|
|
1263
1381
|
200: {
|
|
1264
1382
|
headers: {
|
|
1265
1383
|
[name: string]: unknown;
|
|
1266
1384
|
};
|
|
1267
1385
|
content: {
|
|
1268
1386
|
"application/json": {
|
|
1269
|
-
/**
|
|
1270
|
-
* @description next cursor
|
|
1271
|
-
* @default null
|
|
1272
|
-
*/
|
|
1273
1387
|
next: string | null;
|
|
1274
|
-
|
|
1275
|
-
results: {
|
|
1276
|
-
/** @description Project ID */
|
|
1277
|
-
id: string;
|
|
1278
|
-
name: string;
|
|
1279
|
-
description: string;
|
|
1280
|
-
slug: string;
|
|
1281
|
-
team: string;
|
|
1282
|
-
user_id?: string;
|
|
1283
|
-
collaborators: string[];
|
|
1284
|
-
/** @description Project creation time */
|
|
1285
|
-
createdAt: string;
|
|
1286
|
-
/** @description Project update time */
|
|
1287
|
-
updatedAt: string;
|
|
1288
|
-
}[];
|
|
1388
|
+
results: components["schemas"]["Project"][];
|
|
1289
1389
|
};
|
|
1290
1390
|
};
|
|
1291
1391
|
};
|
|
@@ -1300,7 +1400,12 @@ export interface operations {
|
|
|
1300
1400
|
};
|
|
1301
1401
|
requestBody: {
|
|
1302
1402
|
content: {
|
|
1303
|
-
"application/json":
|
|
1403
|
+
"application/json": {
|
|
1404
|
+
name: string;
|
|
1405
|
+
description?: string;
|
|
1406
|
+
slug?: string;
|
|
1407
|
+
collaborators?: string[];
|
|
1408
|
+
};
|
|
1304
1409
|
};
|
|
1305
1410
|
};
|
|
1306
1411
|
responses: {
|
|
@@ -1310,7 +1415,20 @@ export interface operations {
|
|
|
1310
1415
|
[name: string]: unknown;
|
|
1311
1416
|
};
|
|
1312
1417
|
content: {
|
|
1313
|
-
"application/json":
|
|
1418
|
+
"application/json": {
|
|
1419
|
+
/** @description Project ID */
|
|
1420
|
+
id: string;
|
|
1421
|
+
name: string;
|
|
1422
|
+
description: string;
|
|
1423
|
+
slug: string;
|
|
1424
|
+
team: string;
|
|
1425
|
+
user_id?: string;
|
|
1426
|
+
collaborators: string[];
|
|
1427
|
+
/** @description Project creation date */
|
|
1428
|
+
createdAt: string;
|
|
1429
|
+
/** @description Project updated date */
|
|
1430
|
+
updatedAt?: string;
|
|
1431
|
+
};
|
|
1314
1432
|
};
|
|
1315
1433
|
};
|
|
1316
1434
|
};
|
|
@@ -1341,10 +1459,10 @@ export interface operations {
|
|
|
1341
1459
|
team: string;
|
|
1342
1460
|
user_id?: string;
|
|
1343
1461
|
collaborators: string[];
|
|
1344
|
-
/** @description Project creation
|
|
1462
|
+
/** @description Project creation date */
|
|
1345
1463
|
createdAt: string;
|
|
1346
|
-
/** @description Project
|
|
1347
|
-
updatedAt
|
|
1464
|
+
/** @description Project updated date */
|
|
1465
|
+
updatedAt?: string;
|
|
1348
1466
|
};
|
|
1349
1467
|
};
|
|
1350
1468
|
};
|
|
@@ -1361,7 +1479,11 @@ export interface operations {
|
|
|
1361
1479
|
};
|
|
1362
1480
|
requestBody: {
|
|
1363
1481
|
content: {
|
|
1364
|
-
"application/json":
|
|
1482
|
+
"application/json": {
|
|
1483
|
+
name?: string;
|
|
1484
|
+
description?: string;
|
|
1485
|
+
collaborators?: string[];
|
|
1486
|
+
};
|
|
1365
1487
|
};
|
|
1366
1488
|
};
|
|
1367
1489
|
responses: {
|
|
@@ -1371,12 +1493,25 @@ export interface operations {
|
|
|
1371
1493
|
[name: string]: unknown;
|
|
1372
1494
|
};
|
|
1373
1495
|
content: {
|
|
1374
|
-
"application/json":
|
|
1496
|
+
"application/json": {
|
|
1497
|
+
/** @description Project ID */
|
|
1498
|
+
id: string;
|
|
1499
|
+
name: string;
|
|
1500
|
+
description: string;
|
|
1501
|
+
slug: string;
|
|
1502
|
+
team: string;
|
|
1503
|
+
user_id?: string;
|
|
1504
|
+
collaborators: string[];
|
|
1505
|
+
/** @description Project creation date */
|
|
1506
|
+
createdAt: string;
|
|
1507
|
+
/** @description Project updated date */
|
|
1508
|
+
updatedAt?: string;
|
|
1509
|
+
};
|
|
1375
1510
|
};
|
|
1376
1511
|
};
|
|
1377
1512
|
};
|
|
1378
1513
|
};
|
|
1379
|
-
"project/
|
|
1514
|
+
"project/delete": {
|
|
1380
1515
|
parameters: {
|
|
1381
1516
|
query?: never;
|
|
1382
1517
|
header?: never;
|
|
@@ -1393,7 +1528,20 @@ export interface operations {
|
|
|
1393
1528
|
[name: string]: unknown;
|
|
1394
1529
|
};
|
|
1395
1530
|
content: {
|
|
1396
|
-
"application/json":
|
|
1531
|
+
"application/json": {
|
|
1532
|
+
/** @description Project ID */
|
|
1533
|
+
id: string;
|
|
1534
|
+
name: string;
|
|
1535
|
+
description: string;
|
|
1536
|
+
slug: string;
|
|
1537
|
+
team: string;
|
|
1538
|
+
user_id?: string;
|
|
1539
|
+
collaborators: string[];
|
|
1540
|
+
/** @description Project creation date */
|
|
1541
|
+
createdAt: string;
|
|
1542
|
+
/** @description Project updated date */
|
|
1543
|
+
updatedAt?: string;
|
|
1544
|
+
};
|
|
1397
1545
|
};
|
|
1398
1546
|
};
|
|
1399
1547
|
};
|
|
@@ -1401,12 +1549,14 @@ export interface operations {
|
|
|
1401
1549
|
"app/list": {
|
|
1402
1550
|
parameters: {
|
|
1403
1551
|
query?: {
|
|
1404
|
-
/** @description
|
|
1552
|
+
/** @description Number of items per page (max 200) */
|
|
1553
|
+
pageSize?: number;
|
|
1554
|
+
/** @description Cursor for next page */
|
|
1405
1555
|
cursor?: string;
|
|
1406
|
-
/** @description
|
|
1556
|
+
/** @description Cursor returned by the previous page */
|
|
1407
1557
|
next?: string;
|
|
1408
|
-
/** @description
|
|
1409
|
-
|
|
1558
|
+
/** @description Filter using a FaableQL query */
|
|
1559
|
+
query?: string;
|
|
1410
1560
|
};
|
|
1411
1561
|
header?: never;
|
|
1412
1562
|
path?: never;
|
|
@@ -1414,50 +1564,15 @@ export interface operations {
|
|
|
1414
1564
|
};
|
|
1415
1565
|
requestBody?: never;
|
|
1416
1566
|
responses: {
|
|
1417
|
-
/** @description
|
|
1567
|
+
/** @description Default Response */
|
|
1418
1568
|
200: {
|
|
1419
1569
|
headers: {
|
|
1420
1570
|
[name: string]: unknown;
|
|
1421
1571
|
};
|
|
1422
1572
|
content: {
|
|
1423
1573
|
"application/json": {
|
|
1424
|
-
/**
|
|
1425
|
-
* @description next cursor
|
|
1426
|
-
* @default null
|
|
1427
|
-
*/
|
|
1428
1574
|
next: string | null;
|
|
1429
|
-
|
|
1430
|
-
results: {
|
|
1431
|
-
/** @description App ID */
|
|
1432
|
-
id: string;
|
|
1433
|
-
team: string;
|
|
1434
|
-
name: string;
|
|
1435
|
-
description: string;
|
|
1436
|
-
slug: string;
|
|
1437
|
-
url: string;
|
|
1438
|
-
active: boolean;
|
|
1439
|
-
runtime: components["schemas"]["AppRuntime"];
|
|
1440
|
-
runtime_strategy: string | null;
|
|
1441
|
-
/** @description Faable instance types comprise varying combinations of CPU, memory, storage, and networking capacity. */
|
|
1442
|
-
instance_type: string;
|
|
1443
|
-
/**
|
|
1444
|
-
* @description High-level summary of where the Database is in its lifecycle
|
|
1445
|
-
* @default UNKNOWN
|
|
1446
|
-
*/
|
|
1447
|
-
region: "gui1" | "poz1" | "ams1";
|
|
1448
|
-
status: components["schemas"]["AppStatus"];
|
|
1449
|
-
repository?: string;
|
|
1450
|
-
github_branch?: string;
|
|
1451
|
-
github_installation_id?: string;
|
|
1452
|
-
/** @default {} */
|
|
1453
|
-
metadata: {
|
|
1454
|
-
[key: string]: unknown;
|
|
1455
|
-
};
|
|
1456
|
-
/** @description App creation time */
|
|
1457
|
-
createdAt: string;
|
|
1458
|
-
/** @description App update time */
|
|
1459
|
-
updatedAt: string;
|
|
1460
|
-
}[];
|
|
1575
|
+
results: components["schemas"]["App"][];
|
|
1461
1576
|
};
|
|
1462
1577
|
};
|
|
1463
1578
|
};
|
|
@@ -1472,7 +1587,11 @@ export interface operations {
|
|
|
1472
1587
|
};
|
|
1473
1588
|
requestBody: {
|
|
1474
1589
|
content: {
|
|
1475
|
-
"application/json":
|
|
1590
|
+
"application/json": {
|
|
1591
|
+
name: string;
|
|
1592
|
+
runtime?: string;
|
|
1593
|
+
description?: string;
|
|
1594
|
+
};
|
|
1476
1595
|
};
|
|
1477
1596
|
};
|
|
1478
1597
|
responses: {
|
|
@@ -1482,7 +1601,38 @@ export interface operations {
|
|
|
1482
1601
|
[name: string]: unknown;
|
|
1483
1602
|
};
|
|
1484
1603
|
content: {
|
|
1485
|
-
"application/json":
|
|
1604
|
+
"application/json": {
|
|
1605
|
+
/** @description App ID */
|
|
1606
|
+
id: string;
|
|
1607
|
+
team: string;
|
|
1608
|
+
name: string;
|
|
1609
|
+
description: string;
|
|
1610
|
+
slug: string;
|
|
1611
|
+
url: string;
|
|
1612
|
+
active: boolean;
|
|
1613
|
+
runtime: components["schemas"]["AppRuntime"];
|
|
1614
|
+
runtime_strategy: string | null;
|
|
1615
|
+
/** @description Faable instance types comprise varying combinations of CPU, memory, storage, and networking capacity. */
|
|
1616
|
+
instance_type: string;
|
|
1617
|
+
/**
|
|
1618
|
+
* @description High-level summary of where the Database is in its lifecycle
|
|
1619
|
+
* @default UNKNOWN
|
|
1620
|
+
* @enum {unknown}
|
|
1621
|
+
*/
|
|
1622
|
+
region: "gui1" | "poz1" | "ams1";
|
|
1623
|
+
status: components["schemas"]["AppStatus"];
|
|
1624
|
+
repository?: string;
|
|
1625
|
+
github_branch?: string;
|
|
1626
|
+
github_installation_id?: string;
|
|
1627
|
+
/** @default {} */
|
|
1628
|
+
metadata: {
|
|
1629
|
+
[key: string]: unknown;
|
|
1630
|
+
};
|
|
1631
|
+
/** @description App creation date */
|
|
1632
|
+
createdAt: string;
|
|
1633
|
+
/** @description App updated date */
|
|
1634
|
+
updatedAt?: string;
|
|
1635
|
+
};
|
|
1486
1636
|
};
|
|
1487
1637
|
};
|
|
1488
1638
|
};
|
|
@@ -1520,6 +1670,7 @@ export interface operations {
|
|
|
1520
1670
|
/**
|
|
1521
1671
|
* @description High-level summary of where the Database is in its lifecycle
|
|
1522
1672
|
* @default UNKNOWN
|
|
1673
|
+
* @enum {unknown}
|
|
1523
1674
|
*/
|
|
1524
1675
|
region: "gui1" | "poz1" | "ams1";
|
|
1525
1676
|
status: components["schemas"]["AppStatus"];
|
|
@@ -1530,10 +1681,10 @@ export interface operations {
|
|
|
1530
1681
|
metadata: {
|
|
1531
1682
|
[key: string]: unknown;
|
|
1532
1683
|
};
|
|
1533
|
-
/** @description App creation
|
|
1684
|
+
/** @description App creation date */
|
|
1534
1685
|
createdAt: string;
|
|
1535
|
-
/** @description App
|
|
1536
|
-
updatedAt
|
|
1686
|
+
/** @description App updated date */
|
|
1687
|
+
updatedAt?: string;
|
|
1537
1688
|
};
|
|
1538
1689
|
};
|
|
1539
1690
|
};
|
|
@@ -1550,7 +1701,13 @@ export interface operations {
|
|
|
1550
1701
|
};
|
|
1551
1702
|
requestBody: {
|
|
1552
1703
|
content: {
|
|
1553
|
-
"application/json":
|
|
1704
|
+
"application/json": {
|
|
1705
|
+
name?: string;
|
|
1706
|
+
description?: string;
|
|
1707
|
+
runtime?: components["schemas"]["AppRuntime"];
|
|
1708
|
+
runtime_strategy?: components["schemas"]["AppRuntimeStrategy"];
|
|
1709
|
+
instance_type?: string;
|
|
1710
|
+
};
|
|
1554
1711
|
};
|
|
1555
1712
|
};
|
|
1556
1713
|
responses: {
|
|
@@ -1560,12 +1717,43 @@ export interface operations {
|
|
|
1560
1717
|
[name: string]: unknown;
|
|
1561
1718
|
};
|
|
1562
1719
|
content: {
|
|
1563
|
-
"application/json":
|
|
1720
|
+
"application/json": {
|
|
1721
|
+
/** @description App ID */
|
|
1722
|
+
id: string;
|
|
1723
|
+
team: string;
|
|
1724
|
+
name: string;
|
|
1725
|
+
description: string;
|
|
1726
|
+
slug: string;
|
|
1727
|
+
url: string;
|
|
1728
|
+
active: boolean;
|
|
1729
|
+
runtime: components["schemas"]["AppRuntime"];
|
|
1730
|
+
runtime_strategy: string | null;
|
|
1731
|
+
/** @description Faable instance types comprise varying combinations of CPU, memory, storage, and networking capacity. */
|
|
1732
|
+
instance_type: string;
|
|
1733
|
+
/**
|
|
1734
|
+
* @description High-level summary of where the Database is in its lifecycle
|
|
1735
|
+
* @default UNKNOWN
|
|
1736
|
+
* @enum {unknown}
|
|
1737
|
+
*/
|
|
1738
|
+
region: "gui1" | "poz1" | "ams1";
|
|
1739
|
+
status: components["schemas"]["AppStatus"];
|
|
1740
|
+
repository?: string;
|
|
1741
|
+
github_branch?: string;
|
|
1742
|
+
github_installation_id?: string;
|
|
1743
|
+
/** @default {} */
|
|
1744
|
+
metadata: {
|
|
1745
|
+
[key: string]: unknown;
|
|
1746
|
+
};
|
|
1747
|
+
/** @description App creation date */
|
|
1748
|
+
createdAt: string;
|
|
1749
|
+
/** @description App updated date */
|
|
1750
|
+
updatedAt?: string;
|
|
1751
|
+
};
|
|
1564
1752
|
};
|
|
1565
1753
|
};
|
|
1566
1754
|
};
|
|
1567
1755
|
};
|
|
1568
|
-
"app/
|
|
1756
|
+
"app/delete": {
|
|
1569
1757
|
parameters: {
|
|
1570
1758
|
query?: never;
|
|
1571
1759
|
header?: never;
|
|
@@ -1582,7 +1770,38 @@ export interface operations {
|
|
|
1582
1770
|
[name: string]: unknown;
|
|
1583
1771
|
};
|
|
1584
1772
|
content: {
|
|
1585
|
-
"application/json":
|
|
1773
|
+
"application/json": {
|
|
1774
|
+
/** @description App ID */
|
|
1775
|
+
id: string;
|
|
1776
|
+
team: string;
|
|
1777
|
+
name: string;
|
|
1778
|
+
description: string;
|
|
1779
|
+
slug: string;
|
|
1780
|
+
url: string;
|
|
1781
|
+
active: boolean;
|
|
1782
|
+
runtime: components["schemas"]["AppRuntime"];
|
|
1783
|
+
runtime_strategy: string | null;
|
|
1784
|
+
/** @description Faable instance types comprise varying combinations of CPU, memory, storage, and networking capacity. */
|
|
1785
|
+
instance_type: string;
|
|
1786
|
+
/**
|
|
1787
|
+
* @description High-level summary of where the Database is in its lifecycle
|
|
1788
|
+
* @default UNKNOWN
|
|
1789
|
+
* @enum {unknown}
|
|
1790
|
+
*/
|
|
1791
|
+
region: "gui1" | "poz1" | "ams1";
|
|
1792
|
+
status: components["schemas"]["AppStatus"];
|
|
1793
|
+
repository?: string;
|
|
1794
|
+
github_branch?: string;
|
|
1795
|
+
github_installation_id?: string;
|
|
1796
|
+
/** @default {} */
|
|
1797
|
+
metadata: {
|
|
1798
|
+
[key: string]: unknown;
|
|
1799
|
+
};
|
|
1800
|
+
/** @description App creation date */
|
|
1801
|
+
createdAt: string;
|
|
1802
|
+
/** @description App updated date */
|
|
1803
|
+
updatedAt?: string;
|
|
1804
|
+
};
|
|
1586
1805
|
};
|
|
1587
1806
|
};
|
|
1588
1807
|
};
|
|
@@ -1686,7 +1905,12 @@ export interface operations {
|
|
|
1686
1905
|
};
|
|
1687
1906
|
"app/traffic": {
|
|
1688
1907
|
parameters: {
|
|
1689
|
-
query?:
|
|
1908
|
+
query?: {
|
|
1909
|
+
from?: number;
|
|
1910
|
+
to?: number;
|
|
1911
|
+
interval?: number;
|
|
1912
|
+
deployment_id?: string;
|
|
1913
|
+
};
|
|
1690
1914
|
header?: never;
|
|
1691
1915
|
path: {
|
|
1692
1916
|
app_id: string;
|
|
@@ -1700,19 +1924,174 @@ export interface operations {
|
|
|
1700
1924
|
headers: {
|
|
1701
1925
|
[name: string]: unknown;
|
|
1702
1926
|
};
|
|
1703
|
-
content
|
|
1927
|
+
content: {
|
|
1928
|
+
"application/json": {
|
|
1929
|
+
range: {
|
|
1930
|
+
from: number;
|
|
1931
|
+
to: number;
|
|
1932
|
+
interval: number;
|
|
1933
|
+
deployment_id?: string;
|
|
1934
|
+
};
|
|
1935
|
+
top_endpoints: {
|
|
1936
|
+
path: string;
|
|
1937
|
+
requests: number;
|
|
1938
|
+
resp_bytes: number;
|
|
1939
|
+
}[];
|
|
1940
|
+
status_codes: {
|
|
1941
|
+
status: number;
|
|
1942
|
+
requests: number;
|
|
1943
|
+
}[];
|
|
1944
|
+
methods: {
|
|
1945
|
+
method: string;
|
|
1946
|
+
requests: number;
|
|
1947
|
+
}[];
|
|
1948
|
+
transfer: {
|
|
1949
|
+
ts: string;
|
|
1950
|
+
inbound_bytes: number;
|
|
1951
|
+
outbound_bytes: number;
|
|
1952
|
+
requests: number;
|
|
1953
|
+
p50_ms: number;
|
|
1954
|
+
p95_ms: number;
|
|
1955
|
+
}[];
|
|
1956
|
+
origin_status_codes: {
|
|
1957
|
+
status: number;
|
|
1958
|
+
requests: number;
|
|
1959
|
+
}[];
|
|
1960
|
+
latency: {
|
|
1961
|
+
p50: number;
|
|
1962
|
+
p95: number;
|
|
1963
|
+
p99: number;
|
|
1964
|
+
samples: number;
|
|
1965
|
+
};
|
|
1966
|
+
top_referrers: {
|
|
1967
|
+
referer: string;
|
|
1968
|
+
requests: number;
|
|
1969
|
+
}[];
|
|
1970
|
+
top_user_agents: {
|
|
1971
|
+
user_agent: string;
|
|
1972
|
+
requests: number;
|
|
1973
|
+
}[];
|
|
1974
|
+
};
|
|
1975
|
+
};
|
|
1976
|
+
};
|
|
1977
|
+
};
|
|
1978
|
+
};
|
|
1979
|
+
"app/link_repository": {
|
|
1980
|
+
parameters: {
|
|
1981
|
+
query?: never;
|
|
1982
|
+
header?: never;
|
|
1983
|
+
path: {
|
|
1984
|
+
id: string;
|
|
1985
|
+
};
|
|
1986
|
+
cookie?: never;
|
|
1987
|
+
};
|
|
1988
|
+
requestBody: {
|
|
1989
|
+
content: {
|
|
1990
|
+
"application/json": {
|
|
1991
|
+
/** @description GitHub repository in "owner/repo" form */
|
|
1992
|
+
repository: string;
|
|
1993
|
+
/** @description Branch to deploy from. Defaults to the repo default. */
|
|
1994
|
+
github_branch?: string;
|
|
1995
|
+
/** @description Installation the repo belongs to. When provided, verification is scoped to it (faster) instead of scanning every installation. */
|
|
1996
|
+
github_installation_id?: string;
|
|
1997
|
+
};
|
|
1998
|
+
};
|
|
1999
|
+
};
|
|
2000
|
+
responses: {
|
|
2001
|
+
/** @description App */
|
|
2002
|
+
200: {
|
|
2003
|
+
headers: {
|
|
2004
|
+
[name: string]: unknown;
|
|
2005
|
+
};
|
|
2006
|
+
content: {
|
|
2007
|
+
"application/json": components["schemas"]["App"];
|
|
2008
|
+
};
|
|
2009
|
+
};
|
|
2010
|
+
};
|
|
2011
|
+
};
|
|
2012
|
+
"app/unlink_repository": {
|
|
2013
|
+
parameters: {
|
|
2014
|
+
query?: never;
|
|
2015
|
+
header?: never;
|
|
2016
|
+
path: {
|
|
2017
|
+
id: string;
|
|
2018
|
+
};
|
|
2019
|
+
cookie?: never;
|
|
2020
|
+
};
|
|
2021
|
+
requestBody?: never;
|
|
2022
|
+
responses: {
|
|
2023
|
+
/** @description App */
|
|
2024
|
+
200: {
|
|
2025
|
+
headers: {
|
|
2026
|
+
[name: string]: unknown;
|
|
2027
|
+
};
|
|
2028
|
+
content: {
|
|
2029
|
+
"application/json": components["schemas"]["App"];
|
|
2030
|
+
};
|
|
2031
|
+
};
|
|
2032
|
+
};
|
|
2033
|
+
};
|
|
2034
|
+
"app/get_deploy_workflow": {
|
|
2035
|
+
parameters: {
|
|
2036
|
+
query?: never;
|
|
2037
|
+
header?: never;
|
|
2038
|
+
path: {
|
|
2039
|
+
id: string;
|
|
2040
|
+
};
|
|
2041
|
+
cookie?: never;
|
|
2042
|
+
};
|
|
2043
|
+
requestBody?: never;
|
|
2044
|
+
responses: {
|
|
2045
|
+
/** @description Default Response */
|
|
2046
|
+
200: {
|
|
2047
|
+
headers: {
|
|
2048
|
+
[name: string]: unknown;
|
|
2049
|
+
};
|
|
2050
|
+
content: {
|
|
2051
|
+
"application/json": {
|
|
2052
|
+
configured: boolean;
|
|
2053
|
+
workflow_path?: string;
|
|
2054
|
+
};
|
|
2055
|
+
};
|
|
2056
|
+
};
|
|
2057
|
+
};
|
|
2058
|
+
};
|
|
2059
|
+
"app/setup_deploy_workflow": {
|
|
2060
|
+
parameters: {
|
|
2061
|
+
query?: never;
|
|
2062
|
+
header?: never;
|
|
2063
|
+
path: {
|
|
2064
|
+
id: string;
|
|
2065
|
+
};
|
|
2066
|
+
cookie?: never;
|
|
2067
|
+
};
|
|
2068
|
+
requestBody?: never;
|
|
2069
|
+
responses: {
|
|
2070
|
+
/** @description Default Response */
|
|
2071
|
+
200: {
|
|
2072
|
+
headers: {
|
|
2073
|
+
[name: string]: unknown;
|
|
2074
|
+
};
|
|
2075
|
+
content: {
|
|
2076
|
+
"application/json": {
|
|
2077
|
+
configured: boolean;
|
|
2078
|
+
workflow_path?: string;
|
|
2079
|
+
};
|
|
2080
|
+
};
|
|
1704
2081
|
};
|
|
1705
2082
|
};
|
|
1706
2083
|
};
|
|
1707
2084
|
"deployment/list": {
|
|
1708
2085
|
parameters: {
|
|
1709
2086
|
query?: {
|
|
1710
|
-
/** @description
|
|
2087
|
+
/** @description Number of items per page (max 200) */
|
|
2088
|
+
pageSize?: number;
|
|
2089
|
+
/** @description Cursor for next page */
|
|
1711
2090
|
cursor?: string;
|
|
1712
|
-
/** @description
|
|
2091
|
+
/** @description Cursor returned by the previous page */
|
|
1713
2092
|
next?: string;
|
|
1714
|
-
/** @description
|
|
1715
|
-
|
|
2093
|
+
/** @description Filter using a FaableQL query */
|
|
2094
|
+
query?: string;
|
|
1716
2095
|
};
|
|
1717
2096
|
header?: never;
|
|
1718
2097
|
path?: never;
|
|
@@ -1720,37 +2099,15 @@ export interface operations {
|
|
|
1720
2099
|
};
|
|
1721
2100
|
requestBody?: never;
|
|
1722
2101
|
responses: {
|
|
1723
|
-
/** @description
|
|
2102
|
+
/** @description Default Response */
|
|
1724
2103
|
200: {
|
|
1725
2104
|
headers: {
|
|
1726
2105
|
[name: string]: unknown;
|
|
1727
2106
|
};
|
|
1728
2107
|
content: {
|
|
1729
2108
|
"application/json": {
|
|
1730
|
-
/**
|
|
1731
|
-
* @description next cursor
|
|
1732
|
-
* @default null
|
|
1733
|
-
*/
|
|
1734
2109
|
next: string | null;
|
|
1735
|
-
|
|
1736
|
-
results: {
|
|
1737
|
-
/** @description Deployment ID */
|
|
1738
|
-
id: string;
|
|
1739
|
-
team: string;
|
|
1740
|
-
app_id: string;
|
|
1741
|
-
image?: string;
|
|
1742
|
-
github_commit?: string;
|
|
1743
|
-
github_ref?: string;
|
|
1744
|
-
status: components["schemas"]["DeploymentStatus"];
|
|
1745
|
-
/** @default {} */
|
|
1746
|
-
metadata: {
|
|
1747
|
-
[key: string]: unknown;
|
|
1748
|
-
};
|
|
1749
|
-
/** @description Deployment creation time */
|
|
1750
|
-
createdAt: string;
|
|
1751
|
-
/** @description Deployment update time */
|
|
1752
|
-
updatedAt: string;
|
|
1753
|
-
}[];
|
|
2110
|
+
results: components["schemas"]["Deployment"][];
|
|
1754
2111
|
};
|
|
1755
2112
|
};
|
|
1756
2113
|
};
|
|
@@ -1765,7 +2122,15 @@ export interface operations {
|
|
|
1765
2122
|
};
|
|
1766
2123
|
requestBody: {
|
|
1767
2124
|
content: {
|
|
1768
|
-
"application/json":
|
|
2125
|
+
"application/json": {
|
|
2126
|
+
app_id: string;
|
|
2127
|
+
image?: string;
|
|
2128
|
+
github_commit?: string;
|
|
2129
|
+
github_ref?: string;
|
|
2130
|
+
github_actor?: string;
|
|
2131
|
+
github_commit_message?: string;
|
|
2132
|
+
type?: string;
|
|
2133
|
+
};
|
|
1769
2134
|
};
|
|
1770
2135
|
};
|
|
1771
2136
|
responses: {
|
|
@@ -1775,7 +2140,26 @@ export interface operations {
|
|
|
1775
2140
|
[name: string]: unknown;
|
|
1776
2141
|
};
|
|
1777
2142
|
content: {
|
|
1778
|
-
"application/json":
|
|
2143
|
+
"application/json": {
|
|
2144
|
+
/** @description Deployment ID */
|
|
2145
|
+
id: string;
|
|
2146
|
+
team: string;
|
|
2147
|
+
app_id: string;
|
|
2148
|
+
image?: string;
|
|
2149
|
+
github_commit?: string;
|
|
2150
|
+
github_ref?: string;
|
|
2151
|
+
github_actor?: string;
|
|
2152
|
+
github_commit_message?: string;
|
|
2153
|
+
status: components["schemas"]["DeploymentStatus"];
|
|
2154
|
+
/** @default {} */
|
|
2155
|
+
metadata: {
|
|
2156
|
+
[key: string]: unknown;
|
|
2157
|
+
};
|
|
2158
|
+
/** @description Deployment creation date */
|
|
2159
|
+
createdAt: string;
|
|
2160
|
+
/** @description Deployment updated date */
|
|
2161
|
+
updatedAt?: string;
|
|
2162
|
+
};
|
|
1779
2163
|
};
|
|
1780
2164
|
};
|
|
1781
2165
|
};
|
|
@@ -1805,21 +2189,23 @@ export interface operations {
|
|
|
1805
2189
|
image?: string;
|
|
1806
2190
|
github_commit?: string;
|
|
1807
2191
|
github_ref?: string;
|
|
2192
|
+
github_actor?: string;
|
|
2193
|
+
github_commit_message?: string;
|
|
1808
2194
|
status: components["schemas"]["DeploymentStatus"];
|
|
1809
2195
|
/** @default {} */
|
|
1810
2196
|
metadata: {
|
|
1811
2197
|
[key: string]: unknown;
|
|
1812
2198
|
};
|
|
1813
|
-
/** @description Deployment creation
|
|
2199
|
+
/** @description Deployment creation date */
|
|
1814
2200
|
createdAt: string;
|
|
1815
|
-
/** @description Deployment
|
|
1816
|
-
updatedAt
|
|
2201
|
+
/** @description Deployment updated date */
|
|
2202
|
+
updatedAt?: string;
|
|
1817
2203
|
};
|
|
1818
2204
|
};
|
|
1819
2205
|
};
|
|
1820
2206
|
};
|
|
1821
2207
|
};
|
|
1822
|
-
"deployment/
|
|
2208
|
+
"deployment/delete": {
|
|
1823
2209
|
parameters: {
|
|
1824
2210
|
query?: never;
|
|
1825
2211
|
header?: never;
|
|
@@ -1836,7 +2222,26 @@ export interface operations {
|
|
|
1836
2222
|
[name: string]: unknown;
|
|
1837
2223
|
};
|
|
1838
2224
|
content: {
|
|
1839
|
-
"application/json":
|
|
2225
|
+
"application/json": {
|
|
2226
|
+
/** @description Deployment ID */
|
|
2227
|
+
id: string;
|
|
2228
|
+
team: string;
|
|
2229
|
+
app_id: string;
|
|
2230
|
+
image?: string;
|
|
2231
|
+
github_commit?: string;
|
|
2232
|
+
github_ref?: string;
|
|
2233
|
+
github_actor?: string;
|
|
2234
|
+
github_commit_message?: string;
|
|
2235
|
+
status: components["schemas"]["DeploymentStatus"];
|
|
2236
|
+
/** @default {} */
|
|
2237
|
+
metadata: {
|
|
2238
|
+
[key: string]: unknown;
|
|
2239
|
+
};
|
|
2240
|
+
/** @description Deployment creation date */
|
|
2241
|
+
createdAt: string;
|
|
2242
|
+
/** @description Deployment updated date */
|
|
2243
|
+
updatedAt?: string;
|
|
2244
|
+
};
|
|
1840
2245
|
};
|
|
1841
2246
|
};
|
|
1842
2247
|
};
|
|
@@ -1844,12 +2249,14 @@ export interface operations {
|
|
|
1844
2249
|
"domain/list": {
|
|
1845
2250
|
parameters: {
|
|
1846
2251
|
query?: {
|
|
1847
|
-
/** @description
|
|
2252
|
+
/** @description Number of items per page (max 200) */
|
|
2253
|
+
pageSize?: number;
|
|
2254
|
+
/** @description Cursor for next page */
|
|
1848
2255
|
cursor?: string;
|
|
1849
|
-
/** @description
|
|
2256
|
+
/** @description Cursor returned by the previous page */
|
|
1850
2257
|
next?: string;
|
|
1851
|
-
/** @description
|
|
1852
|
-
|
|
2258
|
+
/** @description Filter using a FaableQL query */
|
|
2259
|
+
query?: string;
|
|
1853
2260
|
};
|
|
1854
2261
|
header?: never;
|
|
1855
2262
|
path?: never;
|
|
@@ -1857,44 +2264,15 @@ export interface operations {
|
|
|
1857
2264
|
};
|
|
1858
2265
|
requestBody?: never;
|
|
1859
2266
|
responses: {
|
|
1860
|
-
/** @description
|
|
2267
|
+
/** @description Default Response */
|
|
1861
2268
|
200: {
|
|
1862
2269
|
headers: {
|
|
1863
2270
|
[name: string]: unknown;
|
|
1864
2271
|
};
|
|
1865
2272
|
content: {
|
|
1866
2273
|
"application/json": {
|
|
1867
|
-
/**
|
|
1868
|
-
* @description next cursor
|
|
1869
|
-
* @default null
|
|
1870
|
-
*/
|
|
1871
2274
|
next: string | null;
|
|
1872
|
-
|
|
1873
|
-
results: {
|
|
1874
|
-
/** @description Domain ID */
|
|
1875
|
-
id: string;
|
|
1876
|
-
team: string;
|
|
1877
|
-
/** @description Unique identifier of the domain */
|
|
1878
|
-
fqdn: string;
|
|
1879
|
-
/** @description TLS is enabled for this domain */
|
|
1880
|
-
tls: boolean;
|
|
1881
|
-
/**
|
|
1882
|
-
* @description Linked App
|
|
1883
|
-
* @default null
|
|
1884
|
-
*/
|
|
1885
|
-
app_id: string | null;
|
|
1886
|
-
/** @description If the domain has the ownership verified */
|
|
1887
|
-
verified: boolean;
|
|
1888
|
-
active: boolean;
|
|
1889
|
-
/** @default {} */
|
|
1890
|
-
metadata: {
|
|
1891
|
-
[key: string]: unknown;
|
|
1892
|
-
};
|
|
1893
|
-
/** @description Domain creation time */
|
|
1894
|
-
createdAt: string;
|
|
1895
|
-
/** @description Domain update time */
|
|
1896
|
-
updatedAt: string;
|
|
1897
|
-
}[];
|
|
2275
|
+
results: components["schemas"]["Domain"][];
|
|
1898
2276
|
};
|
|
1899
2277
|
};
|
|
1900
2278
|
};
|
|
@@ -1909,7 +2287,13 @@ export interface operations {
|
|
|
1909
2287
|
};
|
|
1910
2288
|
requestBody: {
|
|
1911
2289
|
content: {
|
|
1912
|
-
"application/json":
|
|
2290
|
+
"application/json": {
|
|
2291
|
+
fqdn: string;
|
|
2292
|
+
/** @description Linked App */
|
|
2293
|
+
app_id?: string;
|
|
2294
|
+
/** @default true */
|
|
2295
|
+
tls?: boolean;
|
|
2296
|
+
};
|
|
1913
2297
|
};
|
|
1914
2298
|
};
|
|
1915
2299
|
responses: {
|
|
@@ -1919,7 +2303,31 @@ export interface operations {
|
|
|
1919
2303
|
[name: string]: unknown;
|
|
1920
2304
|
};
|
|
1921
2305
|
content: {
|
|
1922
|
-
"application/json":
|
|
2306
|
+
"application/json": {
|
|
2307
|
+
/** @description Domain ID */
|
|
2308
|
+
id: string;
|
|
2309
|
+
team: string;
|
|
2310
|
+
/** @description Unique identifier of the domain */
|
|
2311
|
+
fqdn: string;
|
|
2312
|
+
/** @description TLS is enabled for this domain */
|
|
2313
|
+
tls: boolean;
|
|
2314
|
+
/**
|
|
2315
|
+
* @description Linked App
|
|
2316
|
+
* @default null
|
|
2317
|
+
*/
|
|
2318
|
+
app_id: string | null;
|
|
2319
|
+
/** @description If the domain has the ownership verified */
|
|
2320
|
+
verified: boolean;
|
|
2321
|
+
active: boolean;
|
|
2322
|
+
/** @default {} */
|
|
2323
|
+
metadata: {
|
|
2324
|
+
[key: string]: unknown;
|
|
2325
|
+
};
|
|
2326
|
+
/** @description Domain creation date */
|
|
2327
|
+
createdAt: string;
|
|
2328
|
+
/** @description Domain updated date */
|
|
2329
|
+
updatedAt?: string;
|
|
2330
|
+
};
|
|
1923
2331
|
};
|
|
1924
2332
|
};
|
|
1925
2333
|
};
|
|
@@ -1961,10 +2369,10 @@ export interface operations {
|
|
|
1961
2369
|
metadata: {
|
|
1962
2370
|
[key: string]: unknown;
|
|
1963
2371
|
};
|
|
1964
|
-
/** @description Domain creation
|
|
2372
|
+
/** @description Domain creation date */
|
|
1965
2373
|
createdAt: string;
|
|
1966
|
-
/** @description Domain
|
|
1967
|
-
updatedAt
|
|
2374
|
+
/** @description Domain updated date */
|
|
2375
|
+
updatedAt?: string;
|
|
1968
2376
|
};
|
|
1969
2377
|
};
|
|
1970
2378
|
};
|
|
@@ -1981,7 +2389,14 @@ export interface operations {
|
|
|
1981
2389
|
};
|
|
1982
2390
|
requestBody: {
|
|
1983
2391
|
content: {
|
|
1984
|
-
"application/json":
|
|
2392
|
+
"application/json": {
|
|
2393
|
+
/**
|
|
2394
|
+
* @description Link domain to this App
|
|
2395
|
+
* @default null
|
|
2396
|
+
*/
|
|
2397
|
+
app_id?: string | null;
|
|
2398
|
+
active?: boolean;
|
|
2399
|
+
};
|
|
1985
2400
|
};
|
|
1986
2401
|
};
|
|
1987
2402
|
responses: {
|
|
@@ -1991,12 +2406,36 @@ export interface operations {
|
|
|
1991
2406
|
[name: string]: unknown;
|
|
1992
2407
|
};
|
|
1993
2408
|
content: {
|
|
1994
|
-
"application/json":
|
|
2409
|
+
"application/json": {
|
|
2410
|
+
/** @description Domain ID */
|
|
2411
|
+
id: string;
|
|
2412
|
+
team: string;
|
|
2413
|
+
/** @description Unique identifier of the domain */
|
|
2414
|
+
fqdn: string;
|
|
2415
|
+
/** @description TLS is enabled for this domain */
|
|
2416
|
+
tls: boolean;
|
|
2417
|
+
/**
|
|
2418
|
+
* @description Linked App
|
|
2419
|
+
* @default null
|
|
2420
|
+
*/
|
|
2421
|
+
app_id: string | null;
|
|
2422
|
+
/** @description If the domain has the ownership verified */
|
|
2423
|
+
verified: boolean;
|
|
2424
|
+
active: boolean;
|
|
2425
|
+
/** @default {} */
|
|
2426
|
+
metadata: {
|
|
2427
|
+
[key: string]: unknown;
|
|
2428
|
+
};
|
|
2429
|
+
/** @description Domain creation date */
|
|
2430
|
+
createdAt: string;
|
|
2431
|
+
/** @description Domain updated date */
|
|
2432
|
+
updatedAt?: string;
|
|
2433
|
+
};
|
|
1995
2434
|
};
|
|
1996
2435
|
};
|
|
1997
2436
|
};
|
|
1998
2437
|
};
|
|
1999
|
-
"domain/
|
|
2438
|
+
"domain/delete": {
|
|
2000
2439
|
parameters: {
|
|
2001
2440
|
query?: never;
|
|
2002
2441
|
header?: never;
|
|
@@ -2013,7 +2452,31 @@ export interface operations {
|
|
|
2013
2452
|
[name: string]: unknown;
|
|
2014
2453
|
};
|
|
2015
2454
|
content: {
|
|
2016
|
-
"application/json":
|
|
2455
|
+
"application/json": {
|
|
2456
|
+
/** @description Domain ID */
|
|
2457
|
+
id: string;
|
|
2458
|
+
team: string;
|
|
2459
|
+
/** @description Unique identifier of the domain */
|
|
2460
|
+
fqdn: string;
|
|
2461
|
+
/** @description TLS is enabled for this domain */
|
|
2462
|
+
tls: boolean;
|
|
2463
|
+
/**
|
|
2464
|
+
* @description Linked App
|
|
2465
|
+
* @default null
|
|
2466
|
+
*/
|
|
2467
|
+
app_id: string | null;
|
|
2468
|
+
/** @description If the domain has the ownership verified */
|
|
2469
|
+
verified: boolean;
|
|
2470
|
+
active: boolean;
|
|
2471
|
+
/** @default {} */
|
|
2472
|
+
metadata: {
|
|
2473
|
+
[key: string]: unknown;
|
|
2474
|
+
};
|
|
2475
|
+
/** @description Domain creation date */
|
|
2476
|
+
createdAt: string;
|
|
2477
|
+
/** @description Domain updated date */
|
|
2478
|
+
updatedAt?: string;
|
|
2479
|
+
};
|
|
2017
2480
|
};
|
|
2018
2481
|
};
|
|
2019
2482
|
};
|
|
@@ -2140,12 +2603,14 @@ export interface operations {
|
|
|
2140
2603
|
"contact/list": {
|
|
2141
2604
|
parameters: {
|
|
2142
2605
|
query?: {
|
|
2143
|
-
/** @description
|
|
2606
|
+
/** @description Number of items per page (max 200) */
|
|
2607
|
+
pageSize?: number;
|
|
2608
|
+
/** @description Cursor for next page */
|
|
2144
2609
|
cursor?: string;
|
|
2145
|
-
/** @description
|
|
2610
|
+
/** @description Cursor returned by the previous page */
|
|
2146
2611
|
next?: string;
|
|
2147
|
-
/** @description
|
|
2148
|
-
|
|
2612
|
+
/** @description Filter using a FaableQL query */
|
|
2613
|
+
query?: string;
|
|
2149
2614
|
};
|
|
2150
2615
|
header?: never;
|
|
2151
2616
|
path?: never;
|
|
@@ -2153,35 +2618,15 @@ export interface operations {
|
|
|
2153
2618
|
};
|
|
2154
2619
|
requestBody?: never;
|
|
2155
2620
|
responses: {
|
|
2156
|
-
/** @description
|
|
2621
|
+
/** @description Default Response */
|
|
2157
2622
|
200: {
|
|
2158
2623
|
headers: {
|
|
2159
2624
|
[name: string]: unknown;
|
|
2160
2625
|
};
|
|
2161
2626
|
content: {
|
|
2162
2627
|
"application/json": {
|
|
2163
|
-
/**
|
|
2164
|
-
* @description next cursor
|
|
2165
|
-
* @default null
|
|
2166
|
-
*/
|
|
2167
2628
|
next: string | null;
|
|
2168
|
-
|
|
2169
|
-
results: {
|
|
2170
|
-
/** @description Contact ID */
|
|
2171
|
-
id: string;
|
|
2172
|
-
team: string;
|
|
2173
|
-
contact_type: "primary" | "technical" | "security" | "emergency" | "billing";
|
|
2174
|
-
email?: string;
|
|
2175
|
-
phone?: string;
|
|
2176
|
-
/** @default {} */
|
|
2177
|
-
metadata: {
|
|
2178
|
-
[key: string]: unknown;
|
|
2179
|
-
};
|
|
2180
|
-
/** @description Contact creation time */
|
|
2181
|
-
createdAt: string;
|
|
2182
|
-
/** @description Contact update time */
|
|
2183
|
-
updatedAt: string;
|
|
2184
|
-
}[];
|
|
2629
|
+
results: components["schemas"]["Contact"][];
|
|
2185
2630
|
};
|
|
2186
2631
|
};
|
|
2187
2632
|
};
|
|
@@ -2196,7 +2641,12 @@ export interface operations {
|
|
|
2196
2641
|
};
|
|
2197
2642
|
requestBody: {
|
|
2198
2643
|
content: {
|
|
2199
|
-
"application/json":
|
|
2644
|
+
"application/json": {
|
|
2645
|
+
/** @enum {unknown} */
|
|
2646
|
+
contact_type: "primary" | "technical" | "security" | "emergency" | "billing";
|
|
2647
|
+
email?: string;
|
|
2648
|
+
phone?: string;
|
|
2649
|
+
};
|
|
2200
2650
|
};
|
|
2201
2651
|
};
|
|
2202
2652
|
responses: {
|
|
@@ -2206,7 +2656,23 @@ export interface operations {
|
|
|
2206
2656
|
[name: string]: unknown;
|
|
2207
2657
|
};
|
|
2208
2658
|
content: {
|
|
2209
|
-
"application/json":
|
|
2659
|
+
"application/json": {
|
|
2660
|
+
/** @description Contact ID */
|
|
2661
|
+
id: string;
|
|
2662
|
+
team: string;
|
|
2663
|
+
/** @enum {unknown} */
|
|
2664
|
+
contact_type: "primary" | "technical" | "security" | "emergency" | "billing";
|
|
2665
|
+
email?: string;
|
|
2666
|
+
phone?: string;
|
|
2667
|
+
/** @default {} */
|
|
2668
|
+
metadata: {
|
|
2669
|
+
[key: string]: unknown;
|
|
2670
|
+
};
|
|
2671
|
+
/** @description Contact creation date */
|
|
2672
|
+
createdAt: string;
|
|
2673
|
+
/** @description Contact updated date */
|
|
2674
|
+
updatedAt?: string;
|
|
2675
|
+
};
|
|
2210
2676
|
};
|
|
2211
2677
|
};
|
|
2212
2678
|
};
|
|
@@ -2232,6 +2698,7 @@ export interface operations {
|
|
|
2232
2698
|
/** @description Contact ID */
|
|
2233
2699
|
id: string;
|
|
2234
2700
|
team: string;
|
|
2701
|
+
/** @enum {unknown} */
|
|
2235
2702
|
contact_type: "primary" | "technical" | "security" | "emergency" | "billing";
|
|
2236
2703
|
email?: string;
|
|
2237
2704
|
phone?: string;
|
|
@@ -2239,10 +2706,10 @@ export interface operations {
|
|
|
2239
2706
|
metadata: {
|
|
2240
2707
|
[key: string]: unknown;
|
|
2241
2708
|
};
|
|
2242
|
-
/** @description Contact creation
|
|
2709
|
+
/** @description Contact creation date */
|
|
2243
2710
|
createdAt: string;
|
|
2244
|
-
/** @description Contact
|
|
2245
|
-
updatedAt
|
|
2711
|
+
/** @description Contact updated date */
|
|
2712
|
+
updatedAt?: string;
|
|
2246
2713
|
};
|
|
2247
2714
|
};
|
|
2248
2715
|
};
|
|
@@ -2259,7 +2726,12 @@ export interface operations {
|
|
|
2259
2726
|
};
|
|
2260
2727
|
requestBody: {
|
|
2261
2728
|
content: {
|
|
2262
|
-
"application/json":
|
|
2729
|
+
"application/json": {
|
|
2730
|
+
/** @enum {unknown} */
|
|
2731
|
+
contact_type?: "primary" | "technical" | "security" | "emergency" | "billing";
|
|
2732
|
+
email?: string;
|
|
2733
|
+
phone?: string;
|
|
2734
|
+
};
|
|
2263
2735
|
};
|
|
2264
2736
|
};
|
|
2265
2737
|
responses: {
|
|
@@ -2269,12 +2741,28 @@ export interface operations {
|
|
|
2269
2741
|
[name: string]: unknown;
|
|
2270
2742
|
};
|
|
2271
2743
|
content: {
|
|
2272
|
-
"application/json":
|
|
2744
|
+
"application/json": {
|
|
2745
|
+
/** @description Contact ID */
|
|
2746
|
+
id: string;
|
|
2747
|
+
team: string;
|
|
2748
|
+
/** @enum {unknown} */
|
|
2749
|
+
contact_type: "primary" | "technical" | "security" | "emergency" | "billing";
|
|
2750
|
+
email?: string;
|
|
2751
|
+
phone?: string;
|
|
2752
|
+
/** @default {} */
|
|
2753
|
+
metadata: {
|
|
2754
|
+
[key: string]: unknown;
|
|
2755
|
+
};
|
|
2756
|
+
/** @description Contact creation date */
|
|
2757
|
+
createdAt: string;
|
|
2758
|
+
/** @description Contact updated date */
|
|
2759
|
+
updatedAt?: string;
|
|
2760
|
+
};
|
|
2273
2761
|
};
|
|
2274
2762
|
};
|
|
2275
2763
|
};
|
|
2276
2764
|
};
|
|
2277
|
-
"contact/
|
|
2765
|
+
"contact/delete": {
|
|
2278
2766
|
parameters: {
|
|
2279
2767
|
query?: never;
|
|
2280
2768
|
header?: never;
|
|
@@ -2291,7 +2779,23 @@ export interface operations {
|
|
|
2291
2779
|
[name: string]: unknown;
|
|
2292
2780
|
};
|
|
2293
2781
|
content: {
|
|
2294
|
-
"application/json":
|
|
2782
|
+
"application/json": {
|
|
2783
|
+
/** @description Contact ID */
|
|
2784
|
+
id: string;
|
|
2785
|
+
team: string;
|
|
2786
|
+
/** @enum {unknown} */
|
|
2787
|
+
contact_type: "primary" | "technical" | "security" | "emergency" | "billing";
|
|
2788
|
+
email?: string;
|
|
2789
|
+
phone?: string;
|
|
2790
|
+
/** @default {} */
|
|
2791
|
+
metadata: {
|
|
2792
|
+
[key: string]: unknown;
|
|
2793
|
+
};
|
|
2794
|
+
/** @description Contact creation date */
|
|
2795
|
+
createdAt: string;
|
|
2796
|
+
/** @description Contact updated date */
|
|
2797
|
+
updatedAt?: string;
|
|
2798
|
+
};
|
|
2295
2799
|
};
|
|
2296
2800
|
};
|
|
2297
2801
|
};
|
|
@@ -2299,12 +2803,14 @@ export interface operations {
|
|
|
2299
2803
|
"apikey/list": {
|
|
2300
2804
|
parameters: {
|
|
2301
2805
|
query?: {
|
|
2302
|
-
/** @description
|
|
2806
|
+
/** @description Number of items per page (max 200) */
|
|
2807
|
+
pageSize?: number;
|
|
2808
|
+
/** @description Cursor for next page */
|
|
2303
2809
|
cursor?: string;
|
|
2304
|
-
/** @description
|
|
2810
|
+
/** @description Cursor returned by the previous page */
|
|
2305
2811
|
next?: string;
|
|
2306
|
-
/** @description
|
|
2307
|
-
|
|
2812
|
+
/** @description Filter using a FaableQL query */
|
|
2813
|
+
query?: string;
|
|
2308
2814
|
};
|
|
2309
2815
|
header?: never;
|
|
2310
2816
|
path?: never;
|
|
@@ -2312,36 +2818,15 @@ export interface operations {
|
|
|
2312
2818
|
};
|
|
2313
2819
|
requestBody?: never;
|
|
2314
2820
|
responses: {
|
|
2315
|
-
/** @description
|
|
2821
|
+
/** @description Default Response */
|
|
2316
2822
|
200: {
|
|
2317
2823
|
headers: {
|
|
2318
2824
|
[name: string]: unknown;
|
|
2319
2825
|
};
|
|
2320
2826
|
content: {
|
|
2321
2827
|
"application/json": {
|
|
2322
|
-
/**
|
|
2323
|
-
* @description next cursor
|
|
2324
|
-
* @default null
|
|
2325
|
-
*/
|
|
2326
2828
|
next: string | null;
|
|
2327
|
-
|
|
2328
|
-
results: {
|
|
2329
|
-
/** @description ApiKey ID */
|
|
2330
|
-
id: string;
|
|
2331
|
-
team: string;
|
|
2332
|
-
apikey: string;
|
|
2333
|
-
user_id: string;
|
|
2334
|
-
description?: string;
|
|
2335
|
-
scopes?: string[];
|
|
2336
|
-
/** @default {} */
|
|
2337
|
-
metadata: {
|
|
2338
|
-
[key: string]: unknown;
|
|
2339
|
-
};
|
|
2340
|
-
/** @description ApiKey creation time */
|
|
2341
|
-
createdAt: string;
|
|
2342
|
-
/** @description ApiKey update time */
|
|
2343
|
-
updatedAt: string;
|
|
2344
|
-
}[];
|
|
2829
|
+
results: components["schemas"]["ApiKey"][];
|
|
2345
2830
|
};
|
|
2346
2831
|
};
|
|
2347
2832
|
};
|
|
@@ -2356,7 +2841,9 @@ export interface operations {
|
|
|
2356
2841
|
};
|
|
2357
2842
|
requestBody: {
|
|
2358
2843
|
content: {
|
|
2359
|
-
"application/json":
|
|
2844
|
+
"application/json": {
|
|
2845
|
+
description?: string;
|
|
2846
|
+
};
|
|
2360
2847
|
};
|
|
2361
2848
|
};
|
|
2362
2849
|
responses: {
|
|
@@ -2366,7 +2853,23 @@ export interface operations {
|
|
|
2366
2853
|
[name: string]: unknown;
|
|
2367
2854
|
};
|
|
2368
2855
|
content: {
|
|
2369
|
-
"application/json":
|
|
2856
|
+
"application/json": {
|
|
2857
|
+
/** @description ApiKey ID */
|
|
2858
|
+
id: string;
|
|
2859
|
+
team: string;
|
|
2860
|
+
apikey: string;
|
|
2861
|
+
user_id: string;
|
|
2862
|
+
description?: string;
|
|
2863
|
+
scopes?: string[];
|
|
2864
|
+
/** @default {} */
|
|
2865
|
+
metadata: {
|
|
2866
|
+
[key: string]: unknown;
|
|
2867
|
+
};
|
|
2868
|
+
/** @description ApiKey creation date */
|
|
2869
|
+
createdAt: string;
|
|
2870
|
+
/** @description ApiKey updated date */
|
|
2871
|
+
updatedAt?: string;
|
|
2872
|
+
};
|
|
2370
2873
|
};
|
|
2371
2874
|
};
|
|
2372
2875
|
};
|
|
@@ -2400,10 +2903,10 @@ export interface operations {
|
|
|
2400
2903
|
metadata: {
|
|
2401
2904
|
[key: string]: unknown;
|
|
2402
2905
|
};
|
|
2403
|
-
/** @description ApiKey creation
|
|
2906
|
+
/** @description ApiKey creation date */
|
|
2404
2907
|
createdAt: string;
|
|
2405
|
-
/** @description ApiKey
|
|
2406
|
-
updatedAt
|
|
2908
|
+
/** @description ApiKey updated date */
|
|
2909
|
+
updatedAt?: string;
|
|
2407
2910
|
};
|
|
2408
2911
|
};
|
|
2409
2912
|
};
|
|
@@ -2420,7 +2923,9 @@ export interface operations {
|
|
|
2420
2923
|
};
|
|
2421
2924
|
requestBody: {
|
|
2422
2925
|
content: {
|
|
2423
|
-
"application/json":
|
|
2926
|
+
"application/json": {
|
|
2927
|
+
description?: string;
|
|
2928
|
+
};
|
|
2424
2929
|
};
|
|
2425
2930
|
};
|
|
2426
2931
|
responses: {
|
|
@@ -2430,12 +2935,28 @@ export interface operations {
|
|
|
2430
2935
|
[name: string]: unknown;
|
|
2431
2936
|
};
|
|
2432
2937
|
content: {
|
|
2433
|
-
"application/json":
|
|
2938
|
+
"application/json": {
|
|
2939
|
+
/** @description ApiKey ID */
|
|
2940
|
+
id: string;
|
|
2941
|
+
team: string;
|
|
2942
|
+
apikey: string;
|
|
2943
|
+
user_id: string;
|
|
2944
|
+
description?: string;
|
|
2945
|
+
scopes?: string[];
|
|
2946
|
+
/** @default {} */
|
|
2947
|
+
metadata: {
|
|
2948
|
+
[key: string]: unknown;
|
|
2949
|
+
};
|
|
2950
|
+
/** @description ApiKey creation date */
|
|
2951
|
+
createdAt: string;
|
|
2952
|
+
/** @description ApiKey updated date */
|
|
2953
|
+
updatedAt?: string;
|
|
2954
|
+
};
|
|
2434
2955
|
};
|
|
2435
2956
|
};
|
|
2436
2957
|
};
|
|
2437
2958
|
};
|
|
2438
|
-
"apikey/
|
|
2959
|
+
"apikey/delete": {
|
|
2439
2960
|
parameters: {
|
|
2440
2961
|
query?: never;
|
|
2441
2962
|
header?: never;
|
|
@@ -2452,7 +2973,23 @@ export interface operations {
|
|
|
2452
2973
|
[name: string]: unknown;
|
|
2453
2974
|
};
|
|
2454
2975
|
content: {
|
|
2455
|
-
"application/json":
|
|
2976
|
+
"application/json": {
|
|
2977
|
+
/** @description ApiKey ID */
|
|
2978
|
+
id: string;
|
|
2979
|
+
team: string;
|
|
2980
|
+
apikey: string;
|
|
2981
|
+
user_id: string;
|
|
2982
|
+
description?: string;
|
|
2983
|
+
scopes?: string[];
|
|
2984
|
+
/** @default {} */
|
|
2985
|
+
metadata: {
|
|
2986
|
+
[key: string]: unknown;
|
|
2987
|
+
};
|
|
2988
|
+
/** @description ApiKey creation date */
|
|
2989
|
+
createdAt: string;
|
|
2990
|
+
/** @description ApiKey updated date */
|
|
2991
|
+
updatedAt?: string;
|
|
2992
|
+
};
|
|
2456
2993
|
};
|
|
2457
2994
|
};
|
|
2458
2995
|
};
|
|
@@ -2560,6 +3097,7 @@ export interface operations {
|
|
|
2560
3097
|
query?: {
|
|
2561
3098
|
installation_id?: string;
|
|
2562
3099
|
setup_action?: string;
|
|
3100
|
+
state?: string;
|
|
2563
3101
|
};
|
|
2564
3102
|
header?: never;
|
|
2565
3103
|
path?: never;
|
|
@@ -2602,6 +3140,56 @@ export interface operations {
|
|
|
2602
3140
|
};
|
|
2603
3141
|
};
|
|
2604
3142
|
};
|
|
3143
|
+
"github/installations": {
|
|
3144
|
+
parameters: {
|
|
3145
|
+
query?: never;
|
|
3146
|
+
header?: never;
|
|
3147
|
+
path?: never;
|
|
3148
|
+
cookie?: never;
|
|
3149
|
+
};
|
|
3150
|
+
requestBody?: never;
|
|
3151
|
+
responses: {
|
|
3152
|
+
/** @description Default Response */
|
|
3153
|
+
200: {
|
|
3154
|
+
headers: {
|
|
3155
|
+
[name: string]: unknown;
|
|
3156
|
+
};
|
|
3157
|
+
content: {
|
|
3158
|
+
"application/json": {
|
|
3159
|
+
installations: components["schemas"]["GithubInstallation"][];
|
|
3160
|
+
};
|
|
3161
|
+
};
|
|
3162
|
+
};
|
|
3163
|
+
};
|
|
3164
|
+
};
|
|
3165
|
+
"github/installation_repositories": {
|
|
3166
|
+
parameters: {
|
|
3167
|
+
query?: {
|
|
3168
|
+
/** @description Filter repos by name */
|
|
3169
|
+
q?: string;
|
|
3170
|
+
limit?: number;
|
|
3171
|
+
};
|
|
3172
|
+
header?: never;
|
|
3173
|
+
path: {
|
|
3174
|
+
installation_id: string;
|
|
3175
|
+
};
|
|
3176
|
+
cookie?: never;
|
|
3177
|
+
};
|
|
3178
|
+
requestBody?: never;
|
|
3179
|
+
responses: {
|
|
3180
|
+
/** @description Default Response */
|
|
3181
|
+
200: {
|
|
3182
|
+
headers: {
|
|
3183
|
+
[name: string]: unknown;
|
|
3184
|
+
};
|
|
3185
|
+
content: {
|
|
3186
|
+
"application/json": {
|
|
3187
|
+
repositories: components["schemas"]["GithubRepo"][];
|
|
3188
|
+
};
|
|
3189
|
+
};
|
|
3190
|
+
};
|
|
3191
|
+
};
|
|
3192
|
+
};
|
|
2605
3193
|
"github/webhook": {
|
|
2606
3194
|
parameters: {
|
|
2607
3195
|
query?: never;
|