@appwrite.io/console 1.4.7 → 1.5.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/README.md +2 -2
- package/dist/cjs/sdk.js +420 -48
- package/dist/cjs/sdk.js.map +1 -1
- package/dist/esm/sdk.js +420 -48
- package/dist/esm/sdk.js.map +1 -1
- package/dist/iife/sdk.js +420 -48
- package/package.json +1 -1
- package/src/client.ts +5 -3
- package/src/enums/image-format.ts +1 -0
- package/src/models.ts +64 -0
- package/src/services/account.ts +122 -0
- package/src/services/assistant.ts +2 -0
- package/src/services/avatars.ts +7 -42
- package/src/services/backups.ts +24 -0
- package/src/services/console.ts +14 -0
- package/src/services/databases.ts +96 -0
- package/src/services/functions.ts +55 -6
- package/src/services/graphql.ts +4 -0
- package/src/services/health.ts +52 -0
- package/src/services/locale.ts +16 -0
- package/src/services/messaging.ts +95 -3
- package/src/services/migrations.ts +24 -0
- package/src/services/organizations.ts +56 -0
- package/src/services/project.ts +12 -0
- package/src/services/projects.ts +92 -0
- package/src/services/proxy.ts +10 -0
- package/src/services/storage.ts +27 -18
- package/src/services/teams.ts +28 -0
- package/src/services/users.ts +86 -0
- package/src/services/vcs.ts +20 -0
- package/types/enums/image-format.d.ts +1 -0
- package/types/models.d.ts +64 -0
- package/types/services/messaging.d.ts +3 -3
|
@@ -35,6 +35,8 @@ export class Organizations {
|
|
|
35
35
|
'content-type': 'application/json',
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
+
payload['project'] = this.client.config.project;
|
|
39
|
+
|
|
38
40
|
|
|
39
41
|
return await this.client.call(
|
|
40
42
|
'get',
|
|
@@ -90,6 +92,8 @@ export class Organizations {
|
|
|
90
92
|
'content-type': 'application/json',
|
|
91
93
|
}
|
|
92
94
|
|
|
95
|
+
payload['project'] = this.client.config.project;
|
|
96
|
+
|
|
93
97
|
|
|
94
98
|
return await this.client.call(
|
|
95
99
|
'post',
|
|
@@ -119,6 +123,8 @@ export class Organizations {
|
|
|
119
123
|
'content-type': 'application/json',
|
|
120
124
|
}
|
|
121
125
|
|
|
126
|
+
payload['project'] = this.client.config.project;
|
|
127
|
+
|
|
122
128
|
|
|
123
129
|
return await this.client.call(
|
|
124
130
|
'delete',
|
|
@@ -152,6 +158,8 @@ export class Organizations {
|
|
|
152
158
|
'content-type': 'application/json',
|
|
153
159
|
}
|
|
154
160
|
|
|
161
|
+
payload['project'] = this.client.config.project;
|
|
162
|
+
|
|
155
163
|
|
|
156
164
|
return await this.client.call(
|
|
157
165
|
'get',
|
|
@@ -185,6 +193,8 @@ export class Organizations {
|
|
|
185
193
|
'content-type': 'application/json',
|
|
186
194
|
}
|
|
187
195
|
|
|
196
|
+
payload['project'] = this.client.config.project;
|
|
197
|
+
|
|
188
198
|
|
|
189
199
|
return await this.client.call(
|
|
190
200
|
'get',
|
|
@@ -221,6 +231,8 @@ export class Organizations {
|
|
|
221
231
|
'content-type': 'application/json',
|
|
222
232
|
}
|
|
223
233
|
|
|
234
|
+
payload['project'] = this.client.config.project;
|
|
235
|
+
|
|
224
236
|
|
|
225
237
|
return await this.client.call(
|
|
226
238
|
'patch',
|
|
@@ -250,6 +262,8 @@ export class Organizations {
|
|
|
250
262
|
'content-type': 'application/json',
|
|
251
263
|
}
|
|
252
264
|
|
|
265
|
+
payload['project'] = this.client.config.project;
|
|
266
|
+
|
|
253
267
|
|
|
254
268
|
return await this.client.call(
|
|
255
269
|
'delete',
|
|
@@ -283,6 +297,8 @@ export class Organizations {
|
|
|
283
297
|
'content-type': 'application/json',
|
|
284
298
|
}
|
|
285
299
|
|
|
300
|
+
payload['project'] = this.client.config.project;
|
|
301
|
+
|
|
286
302
|
|
|
287
303
|
return await this.client.call(
|
|
288
304
|
'get',
|
|
@@ -319,6 +335,8 @@ export class Organizations {
|
|
|
319
335
|
'content-type': 'application/json',
|
|
320
336
|
}
|
|
321
337
|
|
|
338
|
+
payload['project'] = this.client.config.project;
|
|
339
|
+
|
|
322
340
|
|
|
323
341
|
return await this.client.call(
|
|
324
342
|
'patch',
|
|
@@ -359,6 +377,8 @@ export class Organizations {
|
|
|
359
377
|
'content-type': 'application/json',
|
|
360
378
|
}
|
|
361
379
|
|
|
380
|
+
payload['project'] = this.client.config.project;
|
|
381
|
+
|
|
362
382
|
|
|
363
383
|
return await this.client.call(
|
|
364
384
|
'patch',
|
|
@@ -393,6 +413,8 @@ export class Organizations {
|
|
|
393
413
|
'content-type': 'application/json',
|
|
394
414
|
}
|
|
395
415
|
|
|
416
|
+
payload['project'] = this.client.config.project;
|
|
417
|
+
|
|
396
418
|
|
|
397
419
|
return await this.client.call(
|
|
398
420
|
'get',
|
|
@@ -429,6 +451,8 @@ export class Organizations {
|
|
|
429
451
|
'content-type': 'application/json',
|
|
430
452
|
}
|
|
431
453
|
|
|
454
|
+
payload['project'] = this.client.config.project;
|
|
455
|
+
|
|
432
456
|
|
|
433
457
|
return await this.client.call(
|
|
434
458
|
'post',
|
|
@@ -462,6 +486,8 @@ export class Organizations {
|
|
|
462
486
|
'content-type': 'application/json',
|
|
463
487
|
}
|
|
464
488
|
|
|
489
|
+
payload['project'] = this.client.config.project;
|
|
490
|
+
|
|
465
491
|
|
|
466
492
|
return await this.client.call(
|
|
467
493
|
'get',
|
|
@@ -495,6 +521,8 @@ export class Organizations {
|
|
|
495
521
|
'content-type': 'application/json',
|
|
496
522
|
}
|
|
497
523
|
|
|
524
|
+
payload['project'] = this.client.config.project;
|
|
525
|
+
|
|
498
526
|
|
|
499
527
|
return await this.client.call(
|
|
500
528
|
'get',
|
|
@@ -528,6 +556,8 @@ export class Organizations {
|
|
|
528
556
|
'content-type': 'application/json',
|
|
529
557
|
}
|
|
530
558
|
|
|
559
|
+
payload['project'] = this.client.config.project;
|
|
560
|
+
|
|
531
561
|
|
|
532
562
|
return await this.client.call(
|
|
533
563
|
'get',
|
|
@@ -561,6 +591,8 @@ export class Organizations {
|
|
|
561
591
|
'content-type': 'application/json',
|
|
562
592
|
}
|
|
563
593
|
|
|
594
|
+
payload['project'] = this.client.config.project;
|
|
595
|
+
|
|
564
596
|
|
|
565
597
|
return await this.client.call(
|
|
566
598
|
'get',
|
|
@@ -601,6 +633,8 @@ export class Organizations {
|
|
|
601
633
|
'content-type': 'application/json',
|
|
602
634
|
}
|
|
603
635
|
|
|
636
|
+
payload['project'] = this.client.config.project;
|
|
637
|
+
|
|
604
638
|
|
|
605
639
|
return await this.client.call(
|
|
606
640
|
'post',
|
|
@@ -634,6 +668,8 @@ export class Organizations {
|
|
|
634
668
|
'content-type': 'application/json',
|
|
635
669
|
}
|
|
636
670
|
|
|
671
|
+
payload['project'] = this.client.config.project;
|
|
672
|
+
|
|
637
673
|
|
|
638
674
|
return await this.client.call(
|
|
639
675
|
'get',
|
|
@@ -670,6 +706,8 @@ export class Organizations {
|
|
|
670
706
|
'content-type': 'application/json',
|
|
671
707
|
}
|
|
672
708
|
|
|
709
|
+
payload['project'] = this.client.config.project;
|
|
710
|
+
|
|
673
711
|
|
|
674
712
|
return await this.client.call(
|
|
675
713
|
'patch',
|
|
@@ -699,6 +737,8 @@ export class Organizations {
|
|
|
699
737
|
'content-type': 'application/json',
|
|
700
738
|
}
|
|
701
739
|
|
|
740
|
+
payload['project'] = this.client.config.project;
|
|
741
|
+
|
|
702
742
|
|
|
703
743
|
return await this.client.call(
|
|
704
744
|
'delete',
|
|
@@ -736,6 +776,8 @@ export class Organizations {
|
|
|
736
776
|
'content-type': 'application/json',
|
|
737
777
|
}
|
|
738
778
|
|
|
779
|
+
payload['project'] = this.client.config.project;
|
|
780
|
+
|
|
739
781
|
|
|
740
782
|
return await this.client.call(
|
|
741
783
|
'patch',
|
|
@@ -765,6 +807,8 @@ export class Organizations {
|
|
|
765
807
|
'content-type': 'application/json',
|
|
766
808
|
}
|
|
767
809
|
|
|
810
|
+
payload['project'] = this.client.config.project;
|
|
811
|
+
|
|
768
812
|
|
|
769
813
|
return await this.client.call(
|
|
770
814
|
'delete',
|
|
@@ -798,6 +842,8 @@ export class Organizations {
|
|
|
798
842
|
'content-type': 'application/json',
|
|
799
843
|
}
|
|
800
844
|
|
|
845
|
+
payload['project'] = this.client.config.project;
|
|
846
|
+
|
|
801
847
|
|
|
802
848
|
return await this.client.call(
|
|
803
849
|
'get',
|
|
@@ -827,6 +873,8 @@ export class Organizations {
|
|
|
827
873
|
'content-type': 'application/json',
|
|
828
874
|
}
|
|
829
875
|
|
|
876
|
+
payload['project'] = this.client.config.project;
|
|
877
|
+
|
|
830
878
|
|
|
831
879
|
return await this.client.call(
|
|
832
880
|
'get',
|
|
@@ -871,6 +919,8 @@ export class Organizations {
|
|
|
871
919
|
'content-type': 'application/json',
|
|
872
920
|
}
|
|
873
921
|
|
|
922
|
+
payload['project'] = this.client.config.project;
|
|
923
|
+
|
|
874
924
|
|
|
875
925
|
return await this.client.call(
|
|
876
926
|
'patch',
|
|
@@ -900,6 +950,8 @@ export class Organizations {
|
|
|
900
950
|
'content-type': 'application/json',
|
|
901
951
|
}
|
|
902
952
|
|
|
953
|
+
payload['project'] = this.client.config.project;
|
|
954
|
+
|
|
903
955
|
|
|
904
956
|
return await this.client.call(
|
|
905
957
|
'get',
|
|
@@ -936,6 +988,8 @@ export class Organizations {
|
|
|
936
988
|
'content-type': 'application/json',
|
|
937
989
|
}
|
|
938
990
|
|
|
991
|
+
payload['project'] = this.client.config.project;
|
|
992
|
+
|
|
939
993
|
|
|
940
994
|
return await this.client.call(
|
|
941
995
|
'patch',
|
|
@@ -973,6 +1027,8 @@ export class Organizations {
|
|
|
973
1027
|
'content-type': 'application/json',
|
|
974
1028
|
}
|
|
975
1029
|
|
|
1030
|
+
payload['project'] = this.client.config.project;
|
|
1031
|
+
|
|
976
1032
|
|
|
977
1033
|
return await this.client.call(
|
|
978
1034
|
'get',
|
package/src/services/project.ts
CHANGED
|
@@ -45,6 +45,8 @@ export class Project {
|
|
|
45
45
|
'content-type': 'application/json',
|
|
46
46
|
}
|
|
47
47
|
|
|
48
|
+
payload['project'] = this.client.config.project;
|
|
49
|
+
|
|
48
50
|
|
|
49
51
|
return await this.client.call(
|
|
50
52
|
'get',
|
|
@@ -70,6 +72,8 @@ export class Project {
|
|
|
70
72
|
'content-type': 'application/json',
|
|
71
73
|
}
|
|
72
74
|
|
|
75
|
+
payload['project'] = this.client.config.project;
|
|
76
|
+
|
|
73
77
|
|
|
74
78
|
return await this.client.call(
|
|
75
79
|
'get',
|
|
@@ -109,6 +113,8 @@ export class Project {
|
|
|
109
113
|
'content-type': 'application/json',
|
|
110
114
|
}
|
|
111
115
|
|
|
116
|
+
payload['project'] = this.client.config.project;
|
|
117
|
+
|
|
112
118
|
|
|
113
119
|
return await this.client.call(
|
|
114
120
|
'post',
|
|
@@ -138,6 +144,8 @@ export class Project {
|
|
|
138
144
|
'content-type': 'application/json',
|
|
139
145
|
}
|
|
140
146
|
|
|
147
|
+
payload['project'] = this.client.config.project;
|
|
148
|
+
|
|
141
149
|
|
|
142
150
|
return await this.client.call(
|
|
143
151
|
'get',
|
|
@@ -178,6 +186,8 @@ export class Project {
|
|
|
178
186
|
'content-type': 'application/json',
|
|
179
187
|
}
|
|
180
188
|
|
|
189
|
+
payload['project'] = this.client.config.project;
|
|
190
|
+
|
|
181
191
|
|
|
182
192
|
return await this.client.call(
|
|
183
193
|
'put',
|
|
@@ -207,6 +217,8 @@ export class Project {
|
|
|
207
217
|
'content-type': 'application/json',
|
|
208
218
|
}
|
|
209
219
|
|
|
220
|
+
payload['project'] = this.client.config.project;
|
|
221
|
+
|
|
210
222
|
|
|
211
223
|
return await this.client.call(
|
|
212
224
|
'delete',
|
package/src/services/projects.ts
CHANGED
|
@@ -45,6 +45,8 @@ export class Projects {
|
|
|
45
45
|
'content-type': 'application/json',
|
|
46
46
|
}
|
|
47
47
|
|
|
48
|
+
payload['project'] = this.client.config.project;
|
|
49
|
+
|
|
48
50
|
|
|
49
51
|
return await this.client.call(
|
|
50
52
|
'get',
|
|
@@ -131,6 +133,8 @@ export class Projects {
|
|
|
131
133
|
'content-type': 'application/json',
|
|
132
134
|
}
|
|
133
135
|
|
|
136
|
+
payload['project'] = this.client.config.project;
|
|
137
|
+
|
|
134
138
|
|
|
135
139
|
return await this.client.call(
|
|
136
140
|
'post',
|
|
@@ -160,6 +164,8 @@ export class Projects {
|
|
|
160
164
|
'content-type': 'application/json',
|
|
161
165
|
}
|
|
162
166
|
|
|
167
|
+
payload['project'] = this.client.config.project;
|
|
168
|
+
|
|
163
169
|
|
|
164
170
|
return await this.client.call(
|
|
165
171
|
'get',
|
|
@@ -232,6 +238,8 @@ export class Projects {
|
|
|
232
238
|
'content-type': 'application/json',
|
|
233
239
|
}
|
|
234
240
|
|
|
241
|
+
payload['project'] = this.client.config.project;
|
|
242
|
+
|
|
235
243
|
|
|
236
244
|
return await this.client.call(
|
|
237
245
|
'patch',
|
|
@@ -261,6 +269,8 @@ export class Projects {
|
|
|
261
269
|
'content-type': 'application/json',
|
|
262
270
|
}
|
|
263
271
|
|
|
272
|
+
payload['project'] = this.client.config.project;
|
|
273
|
+
|
|
264
274
|
|
|
265
275
|
return await this.client.call(
|
|
266
276
|
'delete',
|
|
@@ -304,6 +314,8 @@ export class Projects {
|
|
|
304
314
|
'content-type': 'application/json',
|
|
305
315
|
}
|
|
306
316
|
|
|
317
|
+
payload['project'] = this.client.config.project;
|
|
318
|
+
|
|
307
319
|
|
|
308
320
|
return await this.client.call(
|
|
309
321
|
'patch',
|
|
@@ -340,6 +352,8 @@ export class Projects {
|
|
|
340
352
|
'content-type': 'application/json',
|
|
341
353
|
}
|
|
342
354
|
|
|
355
|
+
payload['project'] = this.client.config.project;
|
|
356
|
+
|
|
343
357
|
|
|
344
358
|
return await this.client.call(
|
|
345
359
|
'patch',
|
|
@@ -376,6 +390,8 @@ export class Projects {
|
|
|
376
390
|
'content-type': 'application/json',
|
|
377
391
|
}
|
|
378
392
|
|
|
393
|
+
payload['project'] = this.client.config.project;
|
|
394
|
+
|
|
379
395
|
|
|
380
396
|
return await this.client.call(
|
|
381
397
|
'patch',
|
|
@@ -412,6 +428,8 @@ export class Projects {
|
|
|
412
428
|
'content-type': 'application/json',
|
|
413
429
|
}
|
|
414
430
|
|
|
431
|
+
payload['project'] = this.client.config.project;
|
|
432
|
+
|
|
415
433
|
|
|
416
434
|
return await this.client.call(
|
|
417
435
|
'patch',
|
|
@@ -448,6 +466,8 @@ export class Projects {
|
|
|
448
466
|
'content-type': 'application/json',
|
|
449
467
|
}
|
|
450
468
|
|
|
469
|
+
payload['project'] = this.client.config.project;
|
|
470
|
+
|
|
451
471
|
|
|
452
472
|
return await this.client.call(
|
|
453
473
|
'patch',
|
|
@@ -498,6 +518,8 @@ export class Projects {
|
|
|
498
518
|
'content-type': 'application/json',
|
|
499
519
|
}
|
|
500
520
|
|
|
521
|
+
payload['project'] = this.client.config.project;
|
|
522
|
+
|
|
501
523
|
|
|
502
524
|
return await this.client.call(
|
|
503
525
|
'patch',
|
|
@@ -534,6 +556,8 @@ export class Projects {
|
|
|
534
556
|
'content-type': 'application/json',
|
|
535
557
|
}
|
|
536
558
|
|
|
559
|
+
payload['project'] = this.client.config.project;
|
|
560
|
+
|
|
537
561
|
|
|
538
562
|
return await this.client.call(
|
|
539
563
|
'patch',
|
|
@@ -570,6 +594,8 @@ export class Projects {
|
|
|
570
594
|
'content-type': 'application/json',
|
|
571
595
|
}
|
|
572
596
|
|
|
597
|
+
payload['project'] = this.client.config.project;
|
|
598
|
+
|
|
573
599
|
|
|
574
600
|
return await this.client.call(
|
|
575
601
|
'patch',
|
|
@@ -606,6 +632,8 @@ export class Projects {
|
|
|
606
632
|
'content-type': 'application/json',
|
|
607
633
|
}
|
|
608
634
|
|
|
635
|
+
payload['project'] = this.client.config.project;
|
|
636
|
+
|
|
609
637
|
|
|
610
638
|
return await this.client.call(
|
|
611
639
|
'patch',
|
|
@@ -642,6 +670,8 @@ export class Projects {
|
|
|
642
670
|
'content-type': 'application/json',
|
|
643
671
|
}
|
|
644
672
|
|
|
673
|
+
payload['project'] = this.client.config.project;
|
|
674
|
+
|
|
645
675
|
|
|
646
676
|
return await this.client.call(
|
|
647
677
|
'patch',
|
|
@@ -678,6 +708,8 @@ export class Projects {
|
|
|
678
708
|
'content-type': 'application/json',
|
|
679
709
|
}
|
|
680
710
|
|
|
711
|
+
payload['project'] = this.client.config.project;
|
|
712
|
+
|
|
681
713
|
|
|
682
714
|
return await this.client.call(
|
|
683
715
|
'patch',
|
|
@@ -718,6 +750,8 @@ export class Projects {
|
|
|
718
750
|
'content-type': 'application/json',
|
|
719
751
|
}
|
|
720
752
|
|
|
753
|
+
payload['project'] = this.client.config.project;
|
|
754
|
+
|
|
721
755
|
|
|
722
756
|
return await this.client.call(
|
|
723
757
|
'patch',
|
|
@@ -758,6 +792,8 @@ export class Projects {
|
|
|
758
792
|
'content-type': 'application/json',
|
|
759
793
|
}
|
|
760
794
|
|
|
795
|
+
payload['project'] = this.client.config.project;
|
|
796
|
+
|
|
761
797
|
|
|
762
798
|
return await this.client.call(
|
|
763
799
|
'post',
|
|
@@ -787,6 +823,8 @@ export class Projects {
|
|
|
787
823
|
'content-type': 'application/json',
|
|
788
824
|
}
|
|
789
825
|
|
|
826
|
+
payload['project'] = this.client.config.project;
|
|
827
|
+
|
|
790
828
|
|
|
791
829
|
return await this.client.call(
|
|
792
830
|
'get',
|
|
@@ -834,6 +872,8 @@ export class Projects {
|
|
|
834
872
|
'content-type': 'application/json',
|
|
835
873
|
}
|
|
836
874
|
|
|
875
|
+
payload['project'] = this.client.config.project;
|
|
876
|
+
|
|
837
877
|
|
|
838
878
|
return await this.client.call(
|
|
839
879
|
'post',
|
|
@@ -867,6 +907,8 @@ export class Projects {
|
|
|
867
907
|
'content-type': 'application/json',
|
|
868
908
|
}
|
|
869
909
|
|
|
910
|
+
payload['project'] = this.client.config.project;
|
|
911
|
+
|
|
870
912
|
|
|
871
913
|
return await this.client.call(
|
|
872
914
|
'get',
|
|
@@ -918,6 +960,8 @@ export class Projects {
|
|
|
918
960
|
'content-type': 'application/json',
|
|
919
961
|
}
|
|
920
962
|
|
|
963
|
+
payload['project'] = this.client.config.project;
|
|
964
|
+
|
|
921
965
|
|
|
922
966
|
return await this.client.call(
|
|
923
967
|
'put',
|
|
@@ -951,6 +995,8 @@ export class Projects {
|
|
|
951
995
|
'content-type': 'application/json',
|
|
952
996
|
}
|
|
953
997
|
|
|
998
|
+
payload['project'] = this.client.config.project;
|
|
999
|
+
|
|
954
1000
|
|
|
955
1001
|
return await this.client.call(
|
|
956
1002
|
'delete',
|
|
@@ -999,6 +1045,8 @@ export class Projects {
|
|
|
999
1045
|
'content-type': 'application/json',
|
|
1000
1046
|
}
|
|
1001
1047
|
|
|
1048
|
+
payload['project'] = this.client.config.project;
|
|
1049
|
+
|
|
1002
1050
|
|
|
1003
1051
|
return await this.client.call(
|
|
1004
1052
|
'patch',
|
|
@@ -1028,6 +1076,8 @@ export class Projects {
|
|
|
1028
1076
|
'content-type': 'application/json',
|
|
1029
1077
|
}
|
|
1030
1078
|
|
|
1079
|
+
payload['project'] = this.client.config.project;
|
|
1080
|
+
|
|
1031
1081
|
|
|
1032
1082
|
return await this.client.call(
|
|
1033
1083
|
'get',
|
|
@@ -1083,6 +1133,8 @@ export class Projects {
|
|
|
1083
1133
|
'content-type': 'application/json',
|
|
1084
1134
|
}
|
|
1085
1135
|
|
|
1136
|
+
payload['project'] = this.client.config.project;
|
|
1137
|
+
|
|
1086
1138
|
|
|
1087
1139
|
return await this.client.call(
|
|
1088
1140
|
'post',
|
|
@@ -1116,6 +1168,8 @@ export class Projects {
|
|
|
1116
1168
|
'content-type': 'application/json',
|
|
1117
1169
|
}
|
|
1118
1170
|
|
|
1171
|
+
payload['project'] = this.client.config.project;
|
|
1172
|
+
|
|
1119
1173
|
|
|
1120
1174
|
return await this.client.call(
|
|
1121
1175
|
'get',
|
|
@@ -1168,6 +1222,8 @@ export class Projects {
|
|
|
1168
1222
|
'content-type': 'application/json',
|
|
1169
1223
|
}
|
|
1170
1224
|
|
|
1225
|
+
payload['project'] = this.client.config.project;
|
|
1226
|
+
|
|
1171
1227
|
|
|
1172
1228
|
return await this.client.call(
|
|
1173
1229
|
'put',
|
|
@@ -1201,6 +1257,8 @@ export class Projects {
|
|
|
1201
1257
|
'content-type': 'application/json',
|
|
1202
1258
|
}
|
|
1203
1259
|
|
|
1260
|
+
payload['project'] = this.client.config.project;
|
|
1261
|
+
|
|
1204
1262
|
|
|
1205
1263
|
return await this.client.call(
|
|
1206
1264
|
'delete',
|
|
@@ -1244,6 +1302,8 @@ export class Projects {
|
|
|
1244
1302
|
'content-type': 'application/json',
|
|
1245
1303
|
}
|
|
1246
1304
|
|
|
1305
|
+
payload['project'] = this.client.config.project;
|
|
1306
|
+
|
|
1247
1307
|
|
|
1248
1308
|
return await this.client.call(
|
|
1249
1309
|
'patch',
|
|
@@ -1280,6 +1340,8 @@ export class Projects {
|
|
|
1280
1340
|
'content-type': 'application/json',
|
|
1281
1341
|
}
|
|
1282
1342
|
|
|
1343
|
+
payload['project'] = this.client.config.project;
|
|
1344
|
+
|
|
1283
1345
|
|
|
1284
1346
|
return await this.client.call(
|
|
1285
1347
|
'patch',
|
|
@@ -1348,6 +1410,8 @@ export class Projects {
|
|
|
1348
1410
|
'content-type': 'application/json',
|
|
1349
1411
|
}
|
|
1350
1412
|
|
|
1413
|
+
payload['project'] = this.client.config.project;
|
|
1414
|
+
|
|
1351
1415
|
|
|
1352
1416
|
return await this.client.call(
|
|
1353
1417
|
'patch',
|
|
@@ -1425,6 +1489,8 @@ export class Projects {
|
|
|
1425
1489
|
'content-type': 'application/json',
|
|
1426
1490
|
}
|
|
1427
1491
|
|
|
1492
|
+
payload['project'] = this.client.config.project;
|
|
1493
|
+
|
|
1428
1494
|
|
|
1429
1495
|
return await this.client.call(
|
|
1430
1496
|
'post',
|
|
@@ -1461,6 +1527,8 @@ export class Projects {
|
|
|
1461
1527
|
'content-type': 'application/json',
|
|
1462
1528
|
}
|
|
1463
1529
|
|
|
1530
|
+
payload['project'] = this.client.config.project;
|
|
1531
|
+
|
|
1464
1532
|
|
|
1465
1533
|
return await this.client.call(
|
|
1466
1534
|
'patch',
|
|
@@ -1498,6 +1566,8 @@ export class Projects {
|
|
|
1498
1566
|
'content-type': 'application/json',
|
|
1499
1567
|
}
|
|
1500
1568
|
|
|
1569
|
+
payload['project'] = this.client.config.project;
|
|
1570
|
+
|
|
1501
1571
|
|
|
1502
1572
|
return await this.client.call(
|
|
1503
1573
|
'get',
|
|
@@ -1561,6 +1631,8 @@ export class Projects {
|
|
|
1561
1631
|
'content-type': 'application/json',
|
|
1562
1632
|
}
|
|
1563
1633
|
|
|
1634
|
+
payload['project'] = this.client.config.project;
|
|
1635
|
+
|
|
1564
1636
|
|
|
1565
1637
|
return await this.client.call(
|
|
1566
1638
|
'patch',
|
|
@@ -1598,6 +1670,8 @@ export class Projects {
|
|
|
1598
1670
|
'content-type': 'application/json',
|
|
1599
1671
|
}
|
|
1600
1672
|
|
|
1673
|
+
payload['project'] = this.client.config.project;
|
|
1674
|
+
|
|
1601
1675
|
|
|
1602
1676
|
return await this.client.call(
|
|
1603
1677
|
'delete',
|
|
@@ -1635,6 +1709,8 @@ export class Projects {
|
|
|
1635
1709
|
'content-type': 'application/json',
|
|
1636
1710
|
}
|
|
1637
1711
|
|
|
1712
|
+
payload['project'] = this.client.config.project;
|
|
1713
|
+
|
|
1638
1714
|
|
|
1639
1715
|
return await this.client.call(
|
|
1640
1716
|
'get',
|
|
@@ -1679,6 +1755,8 @@ export class Projects {
|
|
|
1679
1755
|
'content-type': 'application/json',
|
|
1680
1756
|
}
|
|
1681
1757
|
|
|
1758
|
+
payload['project'] = this.client.config.project;
|
|
1759
|
+
|
|
1682
1760
|
|
|
1683
1761
|
return await this.client.call(
|
|
1684
1762
|
'patch',
|
|
@@ -1716,6 +1794,8 @@ export class Projects {
|
|
|
1716
1794
|
'content-type': 'application/json',
|
|
1717
1795
|
}
|
|
1718
1796
|
|
|
1797
|
+
payload['project'] = this.client.config.project;
|
|
1798
|
+
|
|
1719
1799
|
|
|
1720
1800
|
return await this.client.call(
|
|
1721
1801
|
'delete',
|
|
@@ -1745,6 +1825,8 @@ export class Projects {
|
|
|
1745
1825
|
'content-type': 'application/json',
|
|
1746
1826
|
}
|
|
1747
1827
|
|
|
1828
|
+
payload['project'] = this.client.config.project;
|
|
1829
|
+
|
|
1748
1830
|
|
|
1749
1831
|
return await this.client.call(
|
|
1750
1832
|
'get',
|
|
@@ -1814,6 +1896,8 @@ export class Projects {
|
|
|
1814
1896
|
'content-type': 'application/json',
|
|
1815
1897
|
}
|
|
1816
1898
|
|
|
1899
|
+
payload['project'] = this.client.config.project;
|
|
1900
|
+
|
|
1817
1901
|
|
|
1818
1902
|
return await this.client.call(
|
|
1819
1903
|
'post',
|
|
@@ -1847,6 +1931,8 @@ export class Projects {
|
|
|
1847
1931
|
'content-type': 'application/json',
|
|
1848
1932
|
}
|
|
1849
1933
|
|
|
1934
|
+
payload['project'] = this.client.config.project;
|
|
1935
|
+
|
|
1850
1936
|
|
|
1851
1937
|
return await this.client.call(
|
|
1852
1938
|
'get',
|
|
@@ -1920,6 +2006,8 @@ export class Projects {
|
|
|
1920
2006
|
'content-type': 'application/json',
|
|
1921
2007
|
}
|
|
1922
2008
|
|
|
2009
|
+
payload['project'] = this.client.config.project;
|
|
2010
|
+
|
|
1923
2011
|
|
|
1924
2012
|
return await this.client.call(
|
|
1925
2013
|
'put',
|
|
@@ -1953,6 +2041,8 @@ export class Projects {
|
|
|
1953
2041
|
'content-type': 'application/json',
|
|
1954
2042
|
}
|
|
1955
2043
|
|
|
2044
|
+
payload['project'] = this.client.config.project;
|
|
2045
|
+
|
|
1956
2046
|
|
|
1957
2047
|
return await this.client.call(
|
|
1958
2048
|
'delete',
|
|
@@ -1986,6 +2076,8 @@ export class Projects {
|
|
|
1986
2076
|
'content-type': 'application/json',
|
|
1987
2077
|
}
|
|
1988
2078
|
|
|
2079
|
+
payload['project'] = this.client.config.project;
|
|
2080
|
+
|
|
1989
2081
|
|
|
1990
2082
|
return await this.client.call(
|
|
1991
2083
|
'patch',
|