@capgo/cli 0.9.0 → 0.10.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.
@@ -0,0 +1,2867 @@
1
+ /**
2
+ * This file was auto-generated by openapi-typescript.
3
+ * Do not make direct changes to the file.
4
+ */
5
+
6
+ export interface paths {
7
+ "/": {
8
+ get: {
9
+ responses: {
10
+ /** OK */
11
+ 200: unknown;
12
+ };
13
+ };
14
+ };
15
+ "/apikeys": {
16
+ get: {
17
+ parameters: {
18
+ query: {
19
+ id?: parameters["rowFilter.apikeys.id"];
20
+ created_at?: parameters["rowFilter.apikeys.created_at"];
21
+ user_id?: parameters["rowFilter.apikeys.user_id"];
22
+ key?: parameters["rowFilter.apikeys.key"];
23
+ mode?: parameters["rowFilter.apikeys.mode"];
24
+ updated_at?: parameters["rowFilter.apikeys.updated_at"];
25
+ /** Filtering Columns */
26
+ select?: parameters["select"];
27
+ /** Ordering */
28
+ order?: parameters["order"];
29
+ /** Limiting and Pagination */
30
+ offset?: parameters["offset"];
31
+ /** Limiting and Pagination */
32
+ limit?: parameters["limit"];
33
+ };
34
+ header: {
35
+ /** Limiting and Pagination */
36
+ Range?: parameters["range"];
37
+ /** Limiting and Pagination */
38
+ "Range-Unit"?: parameters["rangeUnit"];
39
+ /** Preference */
40
+ Prefer?: parameters["preferCount"];
41
+ };
42
+ };
43
+ responses: {
44
+ /** OK */
45
+ 200: {
46
+ schema: definitions["apikeys"][];
47
+ };
48
+ /** Partial Content */
49
+ 206: unknown;
50
+ };
51
+ };
52
+ post: {
53
+ parameters: {
54
+ body: {
55
+ /** apikeys */
56
+ apikeys?: definitions["apikeys"];
57
+ };
58
+ query: {
59
+ /** Filtering Columns */
60
+ select?: parameters["select"];
61
+ };
62
+ header: {
63
+ /** Preference */
64
+ Prefer?: parameters["preferReturn"];
65
+ };
66
+ };
67
+ responses: {
68
+ /** Created */
69
+ 201: unknown;
70
+ };
71
+ };
72
+ delete: {
73
+ parameters: {
74
+ query: {
75
+ id?: parameters["rowFilter.apikeys.id"];
76
+ created_at?: parameters["rowFilter.apikeys.created_at"];
77
+ user_id?: parameters["rowFilter.apikeys.user_id"];
78
+ key?: parameters["rowFilter.apikeys.key"];
79
+ mode?: parameters["rowFilter.apikeys.mode"];
80
+ updated_at?: parameters["rowFilter.apikeys.updated_at"];
81
+ };
82
+ header: {
83
+ /** Preference */
84
+ Prefer?: parameters["preferReturn"];
85
+ };
86
+ };
87
+ responses: {
88
+ /** No Content */
89
+ 204: never;
90
+ };
91
+ };
92
+ patch: {
93
+ parameters: {
94
+ query: {
95
+ id?: parameters["rowFilter.apikeys.id"];
96
+ created_at?: parameters["rowFilter.apikeys.created_at"];
97
+ user_id?: parameters["rowFilter.apikeys.user_id"];
98
+ key?: parameters["rowFilter.apikeys.key"];
99
+ mode?: parameters["rowFilter.apikeys.mode"];
100
+ updated_at?: parameters["rowFilter.apikeys.updated_at"];
101
+ };
102
+ body: {
103
+ /** apikeys */
104
+ apikeys?: definitions["apikeys"];
105
+ };
106
+ header: {
107
+ /** Preference */
108
+ Prefer?: parameters["preferReturn"];
109
+ };
110
+ };
111
+ responses: {
112
+ /** No Content */
113
+ 204: never;
114
+ };
115
+ };
116
+ };
117
+ "/app_stats": {
118
+ get: {
119
+ parameters: {
120
+ query: {
121
+ app_id?: parameters["rowFilter.app_stats.app_id"];
122
+ user_id?: parameters["rowFilter.app_stats.user_id"];
123
+ created_at?: parameters["rowFilter.app_stats.created_at"];
124
+ updated_at?: parameters["rowFilter.app_stats.updated_at"];
125
+ channels?: parameters["rowFilter.app_stats.channels"];
126
+ mlu?: parameters["rowFilter.app_stats.mlu"];
127
+ versions?: parameters["rowFilter.app_stats.versions"];
128
+ shared?: parameters["rowFilter.app_stats.shared"];
129
+ mlu_real?: parameters["rowFilter.app_stats.mlu_real"];
130
+ /** Filtering Columns */
131
+ select?: parameters["select"];
132
+ /** Ordering */
133
+ order?: parameters["order"];
134
+ /** Limiting and Pagination */
135
+ offset?: parameters["offset"];
136
+ /** Limiting and Pagination */
137
+ limit?: parameters["limit"];
138
+ };
139
+ header: {
140
+ /** Limiting and Pagination */
141
+ Range?: parameters["range"];
142
+ /** Limiting and Pagination */
143
+ "Range-Unit"?: parameters["rangeUnit"];
144
+ /** Preference */
145
+ Prefer?: parameters["preferCount"];
146
+ };
147
+ };
148
+ responses: {
149
+ /** OK */
150
+ 200: {
151
+ schema: definitions["app_stats"][];
152
+ };
153
+ /** Partial Content */
154
+ 206: unknown;
155
+ };
156
+ };
157
+ post: {
158
+ parameters: {
159
+ body: {
160
+ /** app_stats */
161
+ app_stats?: definitions["app_stats"];
162
+ };
163
+ query: {
164
+ /** Filtering Columns */
165
+ select?: parameters["select"];
166
+ };
167
+ header: {
168
+ /** Preference */
169
+ Prefer?: parameters["preferReturn"];
170
+ };
171
+ };
172
+ responses: {
173
+ /** Created */
174
+ 201: unknown;
175
+ };
176
+ };
177
+ delete: {
178
+ parameters: {
179
+ query: {
180
+ app_id?: parameters["rowFilter.app_stats.app_id"];
181
+ user_id?: parameters["rowFilter.app_stats.user_id"];
182
+ created_at?: parameters["rowFilter.app_stats.created_at"];
183
+ updated_at?: parameters["rowFilter.app_stats.updated_at"];
184
+ channels?: parameters["rowFilter.app_stats.channels"];
185
+ mlu?: parameters["rowFilter.app_stats.mlu"];
186
+ versions?: parameters["rowFilter.app_stats.versions"];
187
+ shared?: parameters["rowFilter.app_stats.shared"];
188
+ mlu_real?: parameters["rowFilter.app_stats.mlu_real"];
189
+ };
190
+ header: {
191
+ /** Preference */
192
+ Prefer?: parameters["preferReturn"];
193
+ };
194
+ };
195
+ responses: {
196
+ /** No Content */
197
+ 204: never;
198
+ };
199
+ };
200
+ patch: {
201
+ parameters: {
202
+ query: {
203
+ app_id?: parameters["rowFilter.app_stats.app_id"];
204
+ user_id?: parameters["rowFilter.app_stats.user_id"];
205
+ created_at?: parameters["rowFilter.app_stats.created_at"];
206
+ updated_at?: parameters["rowFilter.app_stats.updated_at"];
207
+ channels?: parameters["rowFilter.app_stats.channels"];
208
+ mlu?: parameters["rowFilter.app_stats.mlu"];
209
+ versions?: parameters["rowFilter.app_stats.versions"];
210
+ shared?: parameters["rowFilter.app_stats.shared"];
211
+ mlu_real?: parameters["rowFilter.app_stats.mlu_real"];
212
+ };
213
+ body: {
214
+ /** app_stats */
215
+ app_stats?: definitions["app_stats"];
216
+ };
217
+ header: {
218
+ /** Preference */
219
+ Prefer?: parameters["preferReturn"];
220
+ };
221
+ };
222
+ responses: {
223
+ /** No Content */
224
+ 204: never;
225
+ };
226
+ };
227
+ };
228
+ "/app_versions": {
229
+ get: {
230
+ parameters: {
231
+ query: {
232
+ id?: parameters["rowFilter.app_versions.id"];
233
+ created_at?: parameters["rowFilter.app_versions.created_at"];
234
+ app_id?: parameters["rowFilter.app_versions.app_id"];
235
+ name?: parameters["rowFilter.app_versions.name"];
236
+ bucket_id?: parameters["rowFilter.app_versions.bucket_id"];
237
+ user_id?: parameters["rowFilter.app_versions.user_id"];
238
+ updated_at?: parameters["rowFilter.app_versions.updated_at"];
239
+ deleted?: parameters["rowFilter.app_versions.deleted"];
240
+ external_url?: parameters["rowFilter.app_versions.external_url"];
241
+ /** Filtering Columns */
242
+ select?: parameters["select"];
243
+ /** Ordering */
244
+ order?: parameters["order"];
245
+ /** Limiting and Pagination */
246
+ offset?: parameters["offset"];
247
+ /** Limiting and Pagination */
248
+ limit?: parameters["limit"];
249
+ };
250
+ header: {
251
+ /** Limiting and Pagination */
252
+ Range?: parameters["range"];
253
+ /** Limiting and Pagination */
254
+ "Range-Unit"?: parameters["rangeUnit"];
255
+ /** Preference */
256
+ Prefer?: parameters["preferCount"];
257
+ };
258
+ };
259
+ responses: {
260
+ /** OK */
261
+ 200: {
262
+ schema: definitions["app_versions"][];
263
+ };
264
+ /** Partial Content */
265
+ 206: unknown;
266
+ };
267
+ };
268
+ post: {
269
+ parameters: {
270
+ body: {
271
+ /** app_versions */
272
+ app_versions?: definitions["app_versions"];
273
+ };
274
+ query: {
275
+ /** Filtering Columns */
276
+ select?: parameters["select"];
277
+ };
278
+ header: {
279
+ /** Preference */
280
+ Prefer?: parameters["preferReturn"];
281
+ };
282
+ };
283
+ responses: {
284
+ /** Created */
285
+ 201: unknown;
286
+ };
287
+ };
288
+ delete: {
289
+ parameters: {
290
+ query: {
291
+ id?: parameters["rowFilter.app_versions.id"];
292
+ created_at?: parameters["rowFilter.app_versions.created_at"];
293
+ app_id?: parameters["rowFilter.app_versions.app_id"];
294
+ name?: parameters["rowFilter.app_versions.name"];
295
+ bucket_id?: parameters["rowFilter.app_versions.bucket_id"];
296
+ user_id?: parameters["rowFilter.app_versions.user_id"];
297
+ updated_at?: parameters["rowFilter.app_versions.updated_at"];
298
+ deleted?: parameters["rowFilter.app_versions.deleted"];
299
+ external_url?: parameters["rowFilter.app_versions.external_url"];
300
+ };
301
+ header: {
302
+ /** Preference */
303
+ Prefer?: parameters["preferReturn"];
304
+ };
305
+ };
306
+ responses: {
307
+ /** No Content */
308
+ 204: never;
309
+ };
310
+ };
311
+ patch: {
312
+ parameters: {
313
+ query: {
314
+ id?: parameters["rowFilter.app_versions.id"];
315
+ created_at?: parameters["rowFilter.app_versions.created_at"];
316
+ app_id?: parameters["rowFilter.app_versions.app_id"];
317
+ name?: parameters["rowFilter.app_versions.name"];
318
+ bucket_id?: parameters["rowFilter.app_versions.bucket_id"];
319
+ user_id?: parameters["rowFilter.app_versions.user_id"];
320
+ updated_at?: parameters["rowFilter.app_versions.updated_at"];
321
+ deleted?: parameters["rowFilter.app_versions.deleted"];
322
+ external_url?: parameters["rowFilter.app_versions.external_url"];
323
+ };
324
+ body: {
325
+ /** app_versions */
326
+ app_versions?: definitions["app_versions"];
327
+ };
328
+ header: {
329
+ /** Preference */
330
+ Prefer?: parameters["preferReturn"];
331
+ };
332
+ };
333
+ responses: {
334
+ /** No Content */
335
+ 204: never;
336
+ };
337
+ };
338
+ };
339
+ "/apps": {
340
+ get: {
341
+ parameters: {
342
+ query: {
343
+ created_at?: parameters["rowFilter.apps.created_at"];
344
+ app_id?: parameters["rowFilter.apps.app_id"];
345
+ icon_url?: parameters["rowFilter.apps.icon_url"];
346
+ user_id?: parameters["rowFilter.apps.user_id"];
347
+ name?: parameters["rowFilter.apps.name"];
348
+ last_version?: parameters["rowFilter.apps.last_version"];
349
+ updated_at?: parameters["rowFilter.apps.updated_at"];
350
+ id?: parameters["rowFilter.apps.id"];
351
+ /** Filtering Columns */
352
+ select?: parameters["select"];
353
+ /** Ordering */
354
+ order?: parameters["order"];
355
+ /** Limiting and Pagination */
356
+ offset?: parameters["offset"];
357
+ /** Limiting and Pagination */
358
+ limit?: parameters["limit"];
359
+ };
360
+ header: {
361
+ /** Limiting and Pagination */
362
+ Range?: parameters["range"];
363
+ /** Limiting and Pagination */
364
+ "Range-Unit"?: parameters["rangeUnit"];
365
+ /** Preference */
366
+ Prefer?: parameters["preferCount"];
367
+ };
368
+ };
369
+ responses: {
370
+ /** OK */
371
+ 200: {
372
+ schema: definitions["apps"][];
373
+ };
374
+ /** Partial Content */
375
+ 206: unknown;
376
+ };
377
+ };
378
+ post: {
379
+ parameters: {
380
+ body: {
381
+ /** apps */
382
+ apps?: definitions["apps"];
383
+ };
384
+ query: {
385
+ /** Filtering Columns */
386
+ select?: parameters["select"];
387
+ };
388
+ header: {
389
+ /** Preference */
390
+ Prefer?: parameters["preferReturn"];
391
+ };
392
+ };
393
+ responses: {
394
+ /** Created */
395
+ 201: unknown;
396
+ };
397
+ };
398
+ delete: {
399
+ parameters: {
400
+ query: {
401
+ created_at?: parameters["rowFilter.apps.created_at"];
402
+ app_id?: parameters["rowFilter.apps.app_id"];
403
+ icon_url?: parameters["rowFilter.apps.icon_url"];
404
+ user_id?: parameters["rowFilter.apps.user_id"];
405
+ name?: parameters["rowFilter.apps.name"];
406
+ last_version?: parameters["rowFilter.apps.last_version"];
407
+ updated_at?: parameters["rowFilter.apps.updated_at"];
408
+ id?: parameters["rowFilter.apps.id"];
409
+ };
410
+ header: {
411
+ /** Preference */
412
+ Prefer?: parameters["preferReturn"];
413
+ };
414
+ };
415
+ responses: {
416
+ /** No Content */
417
+ 204: never;
418
+ };
419
+ };
420
+ patch: {
421
+ parameters: {
422
+ query: {
423
+ created_at?: parameters["rowFilter.apps.created_at"];
424
+ app_id?: parameters["rowFilter.apps.app_id"];
425
+ icon_url?: parameters["rowFilter.apps.icon_url"];
426
+ user_id?: parameters["rowFilter.apps.user_id"];
427
+ name?: parameters["rowFilter.apps.name"];
428
+ last_version?: parameters["rowFilter.apps.last_version"];
429
+ updated_at?: parameters["rowFilter.apps.updated_at"];
430
+ id?: parameters["rowFilter.apps.id"];
431
+ };
432
+ body: {
433
+ /** apps */
434
+ apps?: definitions["apps"];
435
+ };
436
+ header: {
437
+ /** Preference */
438
+ Prefer?: parameters["preferReturn"];
439
+ };
440
+ };
441
+ responses: {
442
+ /** No Content */
443
+ 204: never;
444
+ };
445
+ };
446
+ };
447
+ "/channel_devices": {
448
+ get: {
449
+ parameters: {
450
+ query: {
451
+ created_at?: parameters["rowFilter.channel_devices.created_at"];
452
+ channel_id?: parameters["rowFilter.channel_devices.channel_id"];
453
+ app_id?: parameters["rowFilter.channel_devices.app_id"];
454
+ updated_at?: parameters["rowFilter.channel_devices.updated_at"];
455
+ created_by?: parameters["rowFilter.channel_devices.created_by"];
456
+ device_id?: parameters["rowFilter.channel_devices.device_id"];
457
+ /** Filtering Columns */
458
+ select?: parameters["select"];
459
+ /** Ordering */
460
+ order?: parameters["order"];
461
+ /** Limiting and Pagination */
462
+ offset?: parameters["offset"];
463
+ /** Limiting and Pagination */
464
+ limit?: parameters["limit"];
465
+ };
466
+ header: {
467
+ /** Limiting and Pagination */
468
+ Range?: parameters["range"];
469
+ /** Limiting and Pagination */
470
+ "Range-Unit"?: parameters["rangeUnit"];
471
+ /** Preference */
472
+ Prefer?: parameters["preferCount"];
473
+ };
474
+ };
475
+ responses: {
476
+ /** OK */
477
+ 200: {
478
+ schema: definitions["channel_devices"][];
479
+ };
480
+ /** Partial Content */
481
+ 206: unknown;
482
+ };
483
+ };
484
+ post: {
485
+ parameters: {
486
+ body: {
487
+ /** channel_devices */
488
+ channel_devices?: definitions["channel_devices"];
489
+ };
490
+ query: {
491
+ /** Filtering Columns */
492
+ select?: parameters["select"];
493
+ };
494
+ header: {
495
+ /** Preference */
496
+ Prefer?: parameters["preferReturn"];
497
+ };
498
+ };
499
+ responses: {
500
+ /** Created */
501
+ 201: unknown;
502
+ };
503
+ };
504
+ delete: {
505
+ parameters: {
506
+ query: {
507
+ created_at?: parameters["rowFilter.channel_devices.created_at"];
508
+ channel_id?: parameters["rowFilter.channel_devices.channel_id"];
509
+ app_id?: parameters["rowFilter.channel_devices.app_id"];
510
+ updated_at?: parameters["rowFilter.channel_devices.updated_at"];
511
+ created_by?: parameters["rowFilter.channel_devices.created_by"];
512
+ device_id?: parameters["rowFilter.channel_devices.device_id"];
513
+ };
514
+ header: {
515
+ /** Preference */
516
+ Prefer?: parameters["preferReturn"];
517
+ };
518
+ };
519
+ responses: {
520
+ /** No Content */
521
+ 204: never;
522
+ };
523
+ };
524
+ patch: {
525
+ parameters: {
526
+ query: {
527
+ created_at?: parameters["rowFilter.channel_devices.created_at"];
528
+ channel_id?: parameters["rowFilter.channel_devices.channel_id"];
529
+ app_id?: parameters["rowFilter.channel_devices.app_id"];
530
+ updated_at?: parameters["rowFilter.channel_devices.updated_at"];
531
+ created_by?: parameters["rowFilter.channel_devices.created_by"];
532
+ device_id?: parameters["rowFilter.channel_devices.device_id"];
533
+ };
534
+ body: {
535
+ /** channel_devices */
536
+ channel_devices?: definitions["channel_devices"];
537
+ };
538
+ header: {
539
+ /** Preference */
540
+ Prefer?: parameters["preferReturn"];
541
+ };
542
+ };
543
+ responses: {
544
+ /** No Content */
545
+ 204: never;
546
+ };
547
+ };
548
+ };
549
+ "/channel_users": {
550
+ get: {
551
+ parameters: {
552
+ query: {
553
+ id?: parameters["rowFilter.channel_users.id"];
554
+ created_at?: parameters["rowFilter.channel_users.created_at"];
555
+ user_id?: parameters["rowFilter.channel_users.user_id"];
556
+ channel_id?: parameters["rowFilter.channel_users.channel_id"];
557
+ app_id?: parameters["rowFilter.channel_users.app_id"];
558
+ updated_at?: parameters["rowFilter.channel_users.updated_at"];
559
+ created_by?: parameters["rowFilter.channel_users.created_by"];
560
+ /** Filtering Columns */
561
+ select?: parameters["select"];
562
+ /** Ordering */
563
+ order?: parameters["order"];
564
+ /** Limiting and Pagination */
565
+ offset?: parameters["offset"];
566
+ /** Limiting and Pagination */
567
+ limit?: parameters["limit"];
568
+ };
569
+ header: {
570
+ /** Limiting and Pagination */
571
+ Range?: parameters["range"];
572
+ /** Limiting and Pagination */
573
+ "Range-Unit"?: parameters["rangeUnit"];
574
+ /** Preference */
575
+ Prefer?: parameters["preferCount"];
576
+ };
577
+ };
578
+ responses: {
579
+ /** OK */
580
+ 200: {
581
+ schema: definitions["channel_users"][];
582
+ };
583
+ /** Partial Content */
584
+ 206: unknown;
585
+ };
586
+ };
587
+ post: {
588
+ parameters: {
589
+ body: {
590
+ /** channel_users */
591
+ channel_users?: definitions["channel_users"];
592
+ };
593
+ query: {
594
+ /** Filtering Columns */
595
+ select?: parameters["select"];
596
+ };
597
+ header: {
598
+ /** Preference */
599
+ Prefer?: parameters["preferReturn"];
600
+ };
601
+ };
602
+ responses: {
603
+ /** Created */
604
+ 201: unknown;
605
+ };
606
+ };
607
+ delete: {
608
+ parameters: {
609
+ query: {
610
+ id?: parameters["rowFilter.channel_users.id"];
611
+ created_at?: parameters["rowFilter.channel_users.created_at"];
612
+ user_id?: parameters["rowFilter.channel_users.user_id"];
613
+ channel_id?: parameters["rowFilter.channel_users.channel_id"];
614
+ app_id?: parameters["rowFilter.channel_users.app_id"];
615
+ updated_at?: parameters["rowFilter.channel_users.updated_at"];
616
+ created_by?: parameters["rowFilter.channel_users.created_by"];
617
+ };
618
+ header: {
619
+ /** Preference */
620
+ Prefer?: parameters["preferReturn"];
621
+ };
622
+ };
623
+ responses: {
624
+ /** No Content */
625
+ 204: never;
626
+ };
627
+ };
628
+ patch: {
629
+ parameters: {
630
+ query: {
631
+ id?: parameters["rowFilter.channel_users.id"];
632
+ created_at?: parameters["rowFilter.channel_users.created_at"];
633
+ user_id?: parameters["rowFilter.channel_users.user_id"];
634
+ channel_id?: parameters["rowFilter.channel_users.channel_id"];
635
+ app_id?: parameters["rowFilter.channel_users.app_id"];
636
+ updated_at?: parameters["rowFilter.channel_users.updated_at"];
637
+ created_by?: parameters["rowFilter.channel_users.created_by"];
638
+ };
639
+ body: {
640
+ /** channel_users */
641
+ channel_users?: definitions["channel_users"];
642
+ };
643
+ header: {
644
+ /** Preference */
645
+ Prefer?: parameters["preferReturn"];
646
+ };
647
+ };
648
+ responses: {
649
+ /** No Content */
650
+ 204: never;
651
+ };
652
+ };
653
+ };
654
+ "/channels": {
655
+ get: {
656
+ parameters: {
657
+ query: {
658
+ id?: parameters["rowFilter.channels.id"];
659
+ created_at?: parameters["rowFilter.channels.created_at"];
660
+ name?: parameters["rowFilter.channels.name"];
661
+ app_id?: parameters["rowFilter.channels.app_id"];
662
+ version?: parameters["rowFilter.channels.version"];
663
+ created_by?: parameters["rowFilter.channels.created_by"];
664
+ updated_at?: parameters["rowFilter.channels.updated_at"];
665
+ public?: parameters["rowFilter.channels.public"];
666
+ disableAutoUpdateUnderNative?: parameters["rowFilter.channels.disableAutoUpdateUnderNative"];
667
+ disableAutoUpdateToMajor?: parameters["rowFilter.channels.disableAutoUpdateToMajor"];
668
+ beta?: parameters["rowFilter.channels.beta"];
669
+ /** Filtering Columns */
670
+ select?: parameters["select"];
671
+ /** Ordering */
672
+ order?: parameters["order"];
673
+ /** Limiting and Pagination */
674
+ offset?: parameters["offset"];
675
+ /** Limiting and Pagination */
676
+ limit?: parameters["limit"];
677
+ };
678
+ header: {
679
+ /** Limiting and Pagination */
680
+ Range?: parameters["range"];
681
+ /** Limiting and Pagination */
682
+ "Range-Unit"?: parameters["rangeUnit"];
683
+ /** Preference */
684
+ Prefer?: parameters["preferCount"];
685
+ };
686
+ };
687
+ responses: {
688
+ /** OK */
689
+ 200: {
690
+ schema: definitions["channels"][];
691
+ };
692
+ /** Partial Content */
693
+ 206: unknown;
694
+ };
695
+ };
696
+ post: {
697
+ parameters: {
698
+ body: {
699
+ /** channels */
700
+ channels?: definitions["channels"];
701
+ };
702
+ query: {
703
+ /** Filtering Columns */
704
+ select?: parameters["select"];
705
+ };
706
+ header: {
707
+ /** Preference */
708
+ Prefer?: parameters["preferReturn"];
709
+ };
710
+ };
711
+ responses: {
712
+ /** Created */
713
+ 201: unknown;
714
+ };
715
+ };
716
+ delete: {
717
+ parameters: {
718
+ query: {
719
+ id?: parameters["rowFilter.channels.id"];
720
+ created_at?: parameters["rowFilter.channels.created_at"];
721
+ name?: parameters["rowFilter.channels.name"];
722
+ app_id?: parameters["rowFilter.channels.app_id"];
723
+ version?: parameters["rowFilter.channels.version"];
724
+ created_by?: parameters["rowFilter.channels.created_by"];
725
+ updated_at?: parameters["rowFilter.channels.updated_at"];
726
+ public?: parameters["rowFilter.channels.public"];
727
+ disableAutoUpdateUnderNative?: parameters["rowFilter.channels.disableAutoUpdateUnderNative"];
728
+ disableAutoUpdateToMajor?: parameters["rowFilter.channels.disableAutoUpdateToMajor"];
729
+ beta?: parameters["rowFilter.channels.beta"];
730
+ };
731
+ header: {
732
+ /** Preference */
733
+ Prefer?: parameters["preferReturn"];
734
+ };
735
+ };
736
+ responses: {
737
+ /** No Content */
738
+ 204: never;
739
+ };
740
+ };
741
+ patch: {
742
+ parameters: {
743
+ query: {
744
+ id?: parameters["rowFilter.channels.id"];
745
+ created_at?: parameters["rowFilter.channels.created_at"];
746
+ name?: parameters["rowFilter.channels.name"];
747
+ app_id?: parameters["rowFilter.channels.app_id"];
748
+ version?: parameters["rowFilter.channels.version"];
749
+ created_by?: parameters["rowFilter.channels.created_by"];
750
+ updated_at?: parameters["rowFilter.channels.updated_at"];
751
+ public?: parameters["rowFilter.channels.public"];
752
+ disableAutoUpdateUnderNative?: parameters["rowFilter.channels.disableAutoUpdateUnderNative"];
753
+ disableAutoUpdateToMajor?: parameters["rowFilter.channels.disableAutoUpdateToMajor"];
754
+ beta?: parameters["rowFilter.channels.beta"];
755
+ };
756
+ body: {
757
+ /** channels */
758
+ channels?: definitions["channels"];
759
+ };
760
+ header: {
761
+ /** Preference */
762
+ Prefer?: parameters["preferReturn"];
763
+ };
764
+ };
765
+ responses: {
766
+ /** No Content */
767
+ 204: never;
768
+ };
769
+ };
770
+ };
771
+ "/devices": {
772
+ get: {
773
+ parameters: {
774
+ query: {
775
+ created_at?: parameters["rowFilter.devices.created_at"];
776
+ updated_at?: parameters["rowFilter.devices.updated_at"];
777
+ device_id?: parameters["rowFilter.devices.device_id"];
778
+ version?: parameters["rowFilter.devices.version"];
779
+ app_id?: parameters["rowFilter.devices.app_id"];
780
+ platform?: parameters["rowFilter.devices.platform"];
781
+ plugin_version?: parameters["rowFilter.devices.plugin_version"];
782
+ os_version?: parameters["rowFilter.devices.os_version"];
783
+ /** Filtering Columns */
784
+ select?: parameters["select"];
785
+ /** Ordering */
786
+ order?: parameters["order"];
787
+ /** Limiting and Pagination */
788
+ offset?: parameters["offset"];
789
+ /** Limiting and Pagination */
790
+ limit?: parameters["limit"];
791
+ };
792
+ header: {
793
+ /** Limiting and Pagination */
794
+ Range?: parameters["range"];
795
+ /** Limiting and Pagination */
796
+ "Range-Unit"?: parameters["rangeUnit"];
797
+ /** Preference */
798
+ Prefer?: parameters["preferCount"];
799
+ };
800
+ };
801
+ responses: {
802
+ /** OK */
803
+ 200: {
804
+ schema: definitions["devices"][];
805
+ };
806
+ /** Partial Content */
807
+ 206: unknown;
808
+ };
809
+ };
810
+ post: {
811
+ parameters: {
812
+ body: {
813
+ /** devices */
814
+ devices?: definitions["devices"];
815
+ };
816
+ query: {
817
+ /** Filtering Columns */
818
+ select?: parameters["select"];
819
+ };
820
+ header: {
821
+ /** Preference */
822
+ Prefer?: parameters["preferReturn"];
823
+ };
824
+ };
825
+ responses: {
826
+ /** Created */
827
+ 201: unknown;
828
+ };
829
+ };
830
+ delete: {
831
+ parameters: {
832
+ query: {
833
+ created_at?: parameters["rowFilter.devices.created_at"];
834
+ updated_at?: parameters["rowFilter.devices.updated_at"];
835
+ device_id?: parameters["rowFilter.devices.device_id"];
836
+ version?: parameters["rowFilter.devices.version"];
837
+ app_id?: parameters["rowFilter.devices.app_id"];
838
+ platform?: parameters["rowFilter.devices.platform"];
839
+ plugin_version?: parameters["rowFilter.devices.plugin_version"];
840
+ os_version?: parameters["rowFilter.devices.os_version"];
841
+ };
842
+ header: {
843
+ /** Preference */
844
+ Prefer?: parameters["preferReturn"];
845
+ };
846
+ };
847
+ responses: {
848
+ /** No Content */
849
+ 204: never;
850
+ };
851
+ };
852
+ patch: {
853
+ parameters: {
854
+ query: {
855
+ created_at?: parameters["rowFilter.devices.created_at"];
856
+ updated_at?: parameters["rowFilter.devices.updated_at"];
857
+ device_id?: parameters["rowFilter.devices.device_id"];
858
+ version?: parameters["rowFilter.devices.version"];
859
+ app_id?: parameters["rowFilter.devices.app_id"];
860
+ platform?: parameters["rowFilter.devices.platform"];
861
+ plugin_version?: parameters["rowFilter.devices.plugin_version"];
862
+ os_version?: parameters["rowFilter.devices.os_version"];
863
+ };
864
+ body: {
865
+ /** devices */
866
+ devices?: definitions["devices"];
867
+ };
868
+ header: {
869
+ /** Preference */
870
+ Prefer?: parameters["preferReturn"];
871
+ };
872
+ };
873
+ responses: {
874
+ /** No Content */
875
+ 204: never;
876
+ };
877
+ };
878
+ };
879
+ "/devices_onprem": {
880
+ get: {
881
+ parameters: {
882
+ query: {
883
+ created_at?: parameters["rowFilter.devices_onprem.created_at"];
884
+ updated_at?: parameters["rowFilter.devices_onprem.updated_at"];
885
+ platform?: parameters["rowFilter.devices_onprem.platform"];
886
+ plugin_version?: parameters["rowFilter.devices_onprem.plugin_version"];
887
+ version?: parameters["rowFilter.devices_onprem.version"];
888
+ app_id?: parameters["rowFilter.devices_onprem.app_id"];
889
+ device_id?: parameters["rowFilter.devices_onprem.device_id"];
890
+ os_version?: parameters["rowFilter.devices_onprem.os_version"];
891
+ id?: parameters["rowFilter.devices_onprem.id"];
892
+ /** Filtering Columns */
893
+ select?: parameters["select"];
894
+ /** Ordering */
895
+ order?: parameters["order"];
896
+ /** Limiting and Pagination */
897
+ offset?: parameters["offset"];
898
+ /** Limiting and Pagination */
899
+ limit?: parameters["limit"];
900
+ };
901
+ header: {
902
+ /** Limiting and Pagination */
903
+ Range?: parameters["range"];
904
+ /** Limiting and Pagination */
905
+ "Range-Unit"?: parameters["rangeUnit"];
906
+ /** Preference */
907
+ Prefer?: parameters["preferCount"];
908
+ };
909
+ };
910
+ responses: {
911
+ /** OK */
912
+ 200: {
913
+ schema: definitions["devices_onprem"][];
914
+ };
915
+ /** Partial Content */
916
+ 206: unknown;
917
+ };
918
+ };
919
+ post: {
920
+ parameters: {
921
+ body: {
922
+ /** devices_onprem */
923
+ devices_onprem?: definitions["devices_onprem"];
924
+ };
925
+ query: {
926
+ /** Filtering Columns */
927
+ select?: parameters["select"];
928
+ };
929
+ header: {
930
+ /** Preference */
931
+ Prefer?: parameters["preferReturn"];
932
+ };
933
+ };
934
+ responses: {
935
+ /** Created */
936
+ 201: unknown;
937
+ };
938
+ };
939
+ delete: {
940
+ parameters: {
941
+ query: {
942
+ created_at?: parameters["rowFilter.devices_onprem.created_at"];
943
+ updated_at?: parameters["rowFilter.devices_onprem.updated_at"];
944
+ platform?: parameters["rowFilter.devices_onprem.platform"];
945
+ plugin_version?: parameters["rowFilter.devices_onprem.plugin_version"];
946
+ version?: parameters["rowFilter.devices_onprem.version"];
947
+ app_id?: parameters["rowFilter.devices_onprem.app_id"];
948
+ device_id?: parameters["rowFilter.devices_onprem.device_id"];
949
+ os_version?: parameters["rowFilter.devices_onprem.os_version"];
950
+ id?: parameters["rowFilter.devices_onprem.id"];
951
+ };
952
+ header: {
953
+ /** Preference */
954
+ Prefer?: parameters["preferReturn"];
955
+ };
956
+ };
957
+ responses: {
958
+ /** No Content */
959
+ 204: never;
960
+ };
961
+ };
962
+ patch: {
963
+ parameters: {
964
+ query: {
965
+ created_at?: parameters["rowFilter.devices_onprem.created_at"];
966
+ updated_at?: parameters["rowFilter.devices_onprem.updated_at"];
967
+ platform?: parameters["rowFilter.devices_onprem.platform"];
968
+ plugin_version?: parameters["rowFilter.devices_onprem.plugin_version"];
969
+ version?: parameters["rowFilter.devices_onprem.version"];
970
+ app_id?: parameters["rowFilter.devices_onprem.app_id"];
971
+ device_id?: parameters["rowFilter.devices_onprem.device_id"];
972
+ os_version?: parameters["rowFilter.devices_onprem.os_version"];
973
+ id?: parameters["rowFilter.devices_onprem.id"];
974
+ };
975
+ body: {
976
+ /** devices_onprem */
977
+ devices_onprem?: definitions["devices_onprem"];
978
+ };
979
+ header: {
980
+ /** Preference */
981
+ Prefer?: parameters["preferReturn"];
982
+ };
983
+ };
984
+ responses: {
985
+ /** No Content */
986
+ 204: never;
987
+ };
988
+ };
989
+ };
990
+ "/devices_override": {
991
+ get: {
992
+ parameters: {
993
+ query: {
994
+ created_at?: parameters["rowFilter.devices_override.created_at"];
995
+ updated_at?: parameters["rowFilter.devices_override.updated_at"];
996
+ device_id?: parameters["rowFilter.devices_override.device_id"];
997
+ version?: parameters["rowFilter.devices_override.version"];
998
+ app_id?: parameters["rowFilter.devices_override.app_id"];
999
+ /** Filtering Columns */
1000
+ select?: parameters["select"];
1001
+ /** Ordering */
1002
+ order?: parameters["order"];
1003
+ /** Limiting and Pagination */
1004
+ offset?: parameters["offset"];
1005
+ /** Limiting and Pagination */
1006
+ limit?: parameters["limit"];
1007
+ };
1008
+ header: {
1009
+ /** Limiting and Pagination */
1010
+ Range?: parameters["range"];
1011
+ /** Limiting and Pagination */
1012
+ "Range-Unit"?: parameters["rangeUnit"];
1013
+ /** Preference */
1014
+ Prefer?: parameters["preferCount"];
1015
+ };
1016
+ };
1017
+ responses: {
1018
+ /** OK */
1019
+ 200: {
1020
+ schema: definitions["devices_override"][];
1021
+ };
1022
+ /** Partial Content */
1023
+ 206: unknown;
1024
+ };
1025
+ };
1026
+ post: {
1027
+ parameters: {
1028
+ body: {
1029
+ /** devices_override */
1030
+ devices_override?: definitions["devices_override"];
1031
+ };
1032
+ query: {
1033
+ /** Filtering Columns */
1034
+ select?: parameters["select"];
1035
+ };
1036
+ header: {
1037
+ /** Preference */
1038
+ Prefer?: parameters["preferReturn"];
1039
+ };
1040
+ };
1041
+ responses: {
1042
+ /** Created */
1043
+ 201: unknown;
1044
+ };
1045
+ };
1046
+ delete: {
1047
+ parameters: {
1048
+ query: {
1049
+ created_at?: parameters["rowFilter.devices_override.created_at"];
1050
+ updated_at?: parameters["rowFilter.devices_override.updated_at"];
1051
+ device_id?: parameters["rowFilter.devices_override.device_id"];
1052
+ version?: parameters["rowFilter.devices_override.version"];
1053
+ app_id?: parameters["rowFilter.devices_override.app_id"];
1054
+ };
1055
+ header: {
1056
+ /** Preference */
1057
+ Prefer?: parameters["preferReturn"];
1058
+ };
1059
+ };
1060
+ responses: {
1061
+ /** No Content */
1062
+ 204: never;
1063
+ };
1064
+ };
1065
+ patch: {
1066
+ parameters: {
1067
+ query: {
1068
+ created_at?: parameters["rowFilter.devices_override.created_at"];
1069
+ updated_at?: parameters["rowFilter.devices_override.updated_at"];
1070
+ device_id?: parameters["rowFilter.devices_override.device_id"];
1071
+ version?: parameters["rowFilter.devices_override.version"];
1072
+ app_id?: parameters["rowFilter.devices_override.app_id"];
1073
+ };
1074
+ body: {
1075
+ /** devices_override */
1076
+ devices_override?: definitions["devices_override"];
1077
+ };
1078
+ header: {
1079
+ /** Preference */
1080
+ Prefer?: parameters["preferReturn"];
1081
+ };
1082
+ };
1083
+ responses: {
1084
+ /** No Content */
1085
+ 204: never;
1086
+ };
1087
+ };
1088
+ };
1089
+ "/plans": {
1090
+ get: {
1091
+ parameters: {
1092
+ query: {
1093
+ created_at?: parameters["rowFilter.plans.created_at"];
1094
+ updated_at?: parameters["rowFilter.plans.updated_at"];
1095
+ name?: parameters["rowFilter.plans.name"];
1096
+ description?: parameters["rowFilter.plans.description"];
1097
+ price_m?: parameters["rowFilter.plans.price_m"];
1098
+ price_y?: parameters["rowFilter.plans.price_y"];
1099
+ stripe_id?: parameters["rowFilter.plans.stripe_id"];
1100
+ apps?: parameters["rowFilter.plans.apps"];
1101
+ channels?: parameters["rowFilter.plans.channels"];
1102
+ updates?: parameters["rowFilter.plans.updates"];
1103
+ versions?: parameters["rowFilter.plans.versions"];
1104
+ shared?: parameters["rowFilter.plans.shared"];
1105
+ abtest?: parameters["rowFilter.plans.abtest"];
1106
+ progressive_deploy?: parameters["rowFilter.plans.progressive_deploy"];
1107
+ id?: parameters["rowFilter.plans.id"];
1108
+ /** Filtering Columns */
1109
+ select?: parameters["select"];
1110
+ /** Ordering */
1111
+ order?: parameters["order"];
1112
+ /** Limiting and Pagination */
1113
+ offset?: parameters["offset"];
1114
+ /** Limiting and Pagination */
1115
+ limit?: parameters["limit"];
1116
+ };
1117
+ header: {
1118
+ /** Limiting and Pagination */
1119
+ Range?: parameters["range"];
1120
+ /** Limiting and Pagination */
1121
+ "Range-Unit"?: parameters["rangeUnit"];
1122
+ /** Preference */
1123
+ Prefer?: parameters["preferCount"];
1124
+ };
1125
+ };
1126
+ responses: {
1127
+ /** OK */
1128
+ 200: {
1129
+ schema: definitions["plans"][];
1130
+ };
1131
+ /** Partial Content */
1132
+ 206: unknown;
1133
+ };
1134
+ };
1135
+ post: {
1136
+ parameters: {
1137
+ body: {
1138
+ /** plans */
1139
+ plans?: definitions["plans"];
1140
+ };
1141
+ query: {
1142
+ /** Filtering Columns */
1143
+ select?: parameters["select"];
1144
+ };
1145
+ header: {
1146
+ /** Preference */
1147
+ Prefer?: parameters["preferReturn"];
1148
+ };
1149
+ };
1150
+ responses: {
1151
+ /** Created */
1152
+ 201: unknown;
1153
+ };
1154
+ };
1155
+ delete: {
1156
+ parameters: {
1157
+ query: {
1158
+ created_at?: parameters["rowFilter.plans.created_at"];
1159
+ updated_at?: parameters["rowFilter.plans.updated_at"];
1160
+ name?: parameters["rowFilter.plans.name"];
1161
+ description?: parameters["rowFilter.plans.description"];
1162
+ price_m?: parameters["rowFilter.plans.price_m"];
1163
+ price_y?: parameters["rowFilter.plans.price_y"];
1164
+ stripe_id?: parameters["rowFilter.plans.stripe_id"];
1165
+ apps?: parameters["rowFilter.plans.apps"];
1166
+ channels?: parameters["rowFilter.plans.channels"];
1167
+ updates?: parameters["rowFilter.plans.updates"];
1168
+ versions?: parameters["rowFilter.plans.versions"];
1169
+ shared?: parameters["rowFilter.plans.shared"];
1170
+ abtest?: parameters["rowFilter.plans.abtest"];
1171
+ progressive_deploy?: parameters["rowFilter.plans.progressive_deploy"];
1172
+ id?: parameters["rowFilter.plans.id"];
1173
+ };
1174
+ header: {
1175
+ /** Preference */
1176
+ Prefer?: parameters["preferReturn"];
1177
+ };
1178
+ };
1179
+ responses: {
1180
+ /** No Content */
1181
+ 204: never;
1182
+ };
1183
+ };
1184
+ patch: {
1185
+ parameters: {
1186
+ query: {
1187
+ created_at?: parameters["rowFilter.plans.created_at"];
1188
+ updated_at?: parameters["rowFilter.plans.updated_at"];
1189
+ name?: parameters["rowFilter.plans.name"];
1190
+ description?: parameters["rowFilter.plans.description"];
1191
+ price_m?: parameters["rowFilter.plans.price_m"];
1192
+ price_y?: parameters["rowFilter.plans.price_y"];
1193
+ stripe_id?: parameters["rowFilter.plans.stripe_id"];
1194
+ apps?: parameters["rowFilter.plans.apps"];
1195
+ channels?: parameters["rowFilter.plans.channels"];
1196
+ updates?: parameters["rowFilter.plans.updates"];
1197
+ versions?: parameters["rowFilter.plans.versions"];
1198
+ shared?: parameters["rowFilter.plans.shared"];
1199
+ abtest?: parameters["rowFilter.plans.abtest"];
1200
+ progressive_deploy?: parameters["rowFilter.plans.progressive_deploy"];
1201
+ id?: parameters["rowFilter.plans.id"];
1202
+ };
1203
+ body: {
1204
+ /** plans */
1205
+ plans?: definitions["plans"];
1206
+ };
1207
+ header: {
1208
+ /** Preference */
1209
+ Prefer?: parameters["preferReturn"];
1210
+ };
1211
+ };
1212
+ responses: {
1213
+ /** No Content */
1214
+ 204: never;
1215
+ };
1216
+ };
1217
+ };
1218
+ "/stats": {
1219
+ get: {
1220
+ parameters: {
1221
+ query: {
1222
+ id?: parameters["rowFilter.stats.id"];
1223
+ created_at?: parameters["rowFilter.stats.created_at"];
1224
+ platform?: parameters["rowFilter.stats.platform"];
1225
+ action?: parameters["rowFilter.stats.action"];
1226
+ device_id?: parameters["rowFilter.stats.device_id"];
1227
+ version_build?: parameters["rowFilter.stats.version_build"];
1228
+ version?: parameters["rowFilter.stats.version"];
1229
+ app_id?: parameters["rowFilter.stats.app_id"];
1230
+ updated_at?: parameters["rowFilter.stats.updated_at"];
1231
+ /** Filtering Columns */
1232
+ select?: parameters["select"];
1233
+ /** Ordering */
1234
+ order?: parameters["order"];
1235
+ /** Limiting and Pagination */
1236
+ offset?: parameters["offset"];
1237
+ /** Limiting and Pagination */
1238
+ limit?: parameters["limit"];
1239
+ };
1240
+ header: {
1241
+ /** Limiting and Pagination */
1242
+ Range?: parameters["range"];
1243
+ /** Limiting and Pagination */
1244
+ "Range-Unit"?: parameters["rangeUnit"];
1245
+ /** Preference */
1246
+ Prefer?: parameters["preferCount"];
1247
+ };
1248
+ };
1249
+ responses: {
1250
+ /** OK */
1251
+ 200: {
1252
+ schema: definitions["stats"][];
1253
+ };
1254
+ /** Partial Content */
1255
+ 206: unknown;
1256
+ };
1257
+ };
1258
+ post: {
1259
+ parameters: {
1260
+ body: {
1261
+ /** stats */
1262
+ stats?: definitions["stats"];
1263
+ };
1264
+ query: {
1265
+ /** Filtering Columns */
1266
+ select?: parameters["select"];
1267
+ };
1268
+ header: {
1269
+ /** Preference */
1270
+ Prefer?: parameters["preferReturn"];
1271
+ };
1272
+ };
1273
+ responses: {
1274
+ /** Created */
1275
+ 201: unknown;
1276
+ };
1277
+ };
1278
+ delete: {
1279
+ parameters: {
1280
+ query: {
1281
+ id?: parameters["rowFilter.stats.id"];
1282
+ created_at?: parameters["rowFilter.stats.created_at"];
1283
+ platform?: parameters["rowFilter.stats.platform"];
1284
+ action?: parameters["rowFilter.stats.action"];
1285
+ device_id?: parameters["rowFilter.stats.device_id"];
1286
+ version_build?: parameters["rowFilter.stats.version_build"];
1287
+ version?: parameters["rowFilter.stats.version"];
1288
+ app_id?: parameters["rowFilter.stats.app_id"];
1289
+ updated_at?: parameters["rowFilter.stats.updated_at"];
1290
+ };
1291
+ header: {
1292
+ /** Preference */
1293
+ Prefer?: parameters["preferReturn"];
1294
+ };
1295
+ };
1296
+ responses: {
1297
+ /** No Content */
1298
+ 204: never;
1299
+ };
1300
+ };
1301
+ patch: {
1302
+ parameters: {
1303
+ query: {
1304
+ id?: parameters["rowFilter.stats.id"];
1305
+ created_at?: parameters["rowFilter.stats.created_at"];
1306
+ platform?: parameters["rowFilter.stats.platform"];
1307
+ action?: parameters["rowFilter.stats.action"];
1308
+ device_id?: parameters["rowFilter.stats.device_id"];
1309
+ version_build?: parameters["rowFilter.stats.version_build"];
1310
+ version?: parameters["rowFilter.stats.version"];
1311
+ app_id?: parameters["rowFilter.stats.app_id"];
1312
+ updated_at?: parameters["rowFilter.stats.updated_at"];
1313
+ };
1314
+ body: {
1315
+ /** stats */
1316
+ stats?: definitions["stats"];
1317
+ };
1318
+ header: {
1319
+ /** Preference */
1320
+ Prefer?: parameters["preferReturn"];
1321
+ };
1322
+ };
1323
+ responses: {
1324
+ /** No Content */
1325
+ 204: never;
1326
+ };
1327
+ };
1328
+ };
1329
+ "/stats_onprem": {
1330
+ get: {
1331
+ parameters: {
1332
+ query: {
1333
+ id?: parameters["rowFilter.stats_onprem.id"];
1334
+ created_at?: parameters["rowFilter.stats_onprem.created_at"];
1335
+ platform?: parameters["rowFilter.stats_onprem.platform"];
1336
+ action?: parameters["rowFilter.stats_onprem.action"];
1337
+ device_id?: parameters["rowFilter.stats_onprem.device_id"];
1338
+ version_build?: parameters["rowFilter.stats_onprem.version_build"];
1339
+ app_id?: parameters["rowFilter.stats_onprem.app_id"];
1340
+ updated_at?: parameters["rowFilter.stats_onprem.updated_at"];
1341
+ version?: parameters["rowFilter.stats_onprem.version"];
1342
+ /** Filtering Columns */
1343
+ select?: parameters["select"];
1344
+ /** Ordering */
1345
+ order?: parameters["order"];
1346
+ /** Limiting and Pagination */
1347
+ offset?: parameters["offset"];
1348
+ /** Limiting and Pagination */
1349
+ limit?: parameters["limit"];
1350
+ };
1351
+ header: {
1352
+ /** Limiting and Pagination */
1353
+ Range?: parameters["range"];
1354
+ /** Limiting and Pagination */
1355
+ "Range-Unit"?: parameters["rangeUnit"];
1356
+ /** Preference */
1357
+ Prefer?: parameters["preferCount"];
1358
+ };
1359
+ };
1360
+ responses: {
1361
+ /** OK */
1362
+ 200: {
1363
+ schema: definitions["stats_onprem"][];
1364
+ };
1365
+ /** Partial Content */
1366
+ 206: unknown;
1367
+ };
1368
+ };
1369
+ post: {
1370
+ parameters: {
1371
+ body: {
1372
+ /** stats_onprem */
1373
+ stats_onprem?: definitions["stats_onprem"];
1374
+ };
1375
+ query: {
1376
+ /** Filtering Columns */
1377
+ select?: parameters["select"];
1378
+ };
1379
+ header: {
1380
+ /** Preference */
1381
+ Prefer?: parameters["preferReturn"];
1382
+ };
1383
+ };
1384
+ responses: {
1385
+ /** Created */
1386
+ 201: unknown;
1387
+ };
1388
+ };
1389
+ delete: {
1390
+ parameters: {
1391
+ query: {
1392
+ id?: parameters["rowFilter.stats_onprem.id"];
1393
+ created_at?: parameters["rowFilter.stats_onprem.created_at"];
1394
+ platform?: parameters["rowFilter.stats_onprem.platform"];
1395
+ action?: parameters["rowFilter.stats_onprem.action"];
1396
+ device_id?: parameters["rowFilter.stats_onprem.device_id"];
1397
+ version_build?: parameters["rowFilter.stats_onprem.version_build"];
1398
+ app_id?: parameters["rowFilter.stats_onprem.app_id"];
1399
+ updated_at?: parameters["rowFilter.stats_onprem.updated_at"];
1400
+ version?: parameters["rowFilter.stats_onprem.version"];
1401
+ };
1402
+ header: {
1403
+ /** Preference */
1404
+ Prefer?: parameters["preferReturn"];
1405
+ };
1406
+ };
1407
+ responses: {
1408
+ /** No Content */
1409
+ 204: never;
1410
+ };
1411
+ };
1412
+ patch: {
1413
+ parameters: {
1414
+ query: {
1415
+ id?: parameters["rowFilter.stats_onprem.id"];
1416
+ created_at?: parameters["rowFilter.stats_onprem.created_at"];
1417
+ platform?: parameters["rowFilter.stats_onprem.platform"];
1418
+ action?: parameters["rowFilter.stats_onprem.action"];
1419
+ device_id?: parameters["rowFilter.stats_onprem.device_id"];
1420
+ version_build?: parameters["rowFilter.stats_onprem.version_build"];
1421
+ app_id?: parameters["rowFilter.stats_onprem.app_id"];
1422
+ updated_at?: parameters["rowFilter.stats_onprem.updated_at"];
1423
+ version?: parameters["rowFilter.stats_onprem.version"];
1424
+ };
1425
+ body: {
1426
+ /** stats_onprem */
1427
+ stats_onprem?: definitions["stats_onprem"];
1428
+ };
1429
+ header: {
1430
+ /** Preference */
1431
+ Prefer?: parameters["preferReturn"];
1432
+ };
1433
+ };
1434
+ responses: {
1435
+ /** No Content */
1436
+ 204: never;
1437
+ };
1438
+ };
1439
+ };
1440
+ "/stripe_info": {
1441
+ get: {
1442
+ parameters: {
1443
+ query: {
1444
+ created_at?: parameters["rowFilter.stripe_info.created_at"];
1445
+ updated_at?: parameters["rowFilter.stripe_info.updated_at"];
1446
+ subscription_id?: parameters["rowFilter.stripe_info.subscription_id"];
1447
+ customer_id?: parameters["rowFilter.stripe_info.customer_id"];
1448
+ status?: parameters["rowFilter.stripe_info.status"];
1449
+ product_id?: parameters["rowFilter.stripe_info.product_id"];
1450
+ trial_at?: parameters["rowFilter.stripe_info.trial_at"];
1451
+ /** Filtering Columns */
1452
+ select?: parameters["select"];
1453
+ /** Ordering */
1454
+ order?: parameters["order"];
1455
+ /** Limiting and Pagination */
1456
+ offset?: parameters["offset"];
1457
+ /** Limiting and Pagination */
1458
+ limit?: parameters["limit"];
1459
+ };
1460
+ header: {
1461
+ /** Limiting and Pagination */
1462
+ Range?: parameters["range"];
1463
+ /** Limiting and Pagination */
1464
+ "Range-Unit"?: parameters["rangeUnit"];
1465
+ /** Preference */
1466
+ Prefer?: parameters["preferCount"];
1467
+ };
1468
+ };
1469
+ responses: {
1470
+ /** OK */
1471
+ 200: {
1472
+ schema: definitions["stripe_info"][];
1473
+ };
1474
+ /** Partial Content */
1475
+ 206: unknown;
1476
+ };
1477
+ };
1478
+ post: {
1479
+ parameters: {
1480
+ body: {
1481
+ /** stripe_info */
1482
+ stripe_info?: definitions["stripe_info"];
1483
+ };
1484
+ query: {
1485
+ /** Filtering Columns */
1486
+ select?: parameters["select"];
1487
+ };
1488
+ header: {
1489
+ /** Preference */
1490
+ Prefer?: parameters["preferReturn"];
1491
+ };
1492
+ };
1493
+ responses: {
1494
+ /** Created */
1495
+ 201: unknown;
1496
+ };
1497
+ };
1498
+ delete: {
1499
+ parameters: {
1500
+ query: {
1501
+ created_at?: parameters["rowFilter.stripe_info.created_at"];
1502
+ updated_at?: parameters["rowFilter.stripe_info.updated_at"];
1503
+ subscription_id?: parameters["rowFilter.stripe_info.subscription_id"];
1504
+ customer_id?: parameters["rowFilter.stripe_info.customer_id"];
1505
+ status?: parameters["rowFilter.stripe_info.status"];
1506
+ product_id?: parameters["rowFilter.stripe_info.product_id"];
1507
+ trial_at?: parameters["rowFilter.stripe_info.trial_at"];
1508
+ };
1509
+ header: {
1510
+ /** Preference */
1511
+ Prefer?: parameters["preferReturn"];
1512
+ };
1513
+ };
1514
+ responses: {
1515
+ /** No Content */
1516
+ 204: never;
1517
+ };
1518
+ };
1519
+ patch: {
1520
+ parameters: {
1521
+ query: {
1522
+ created_at?: parameters["rowFilter.stripe_info.created_at"];
1523
+ updated_at?: parameters["rowFilter.stripe_info.updated_at"];
1524
+ subscription_id?: parameters["rowFilter.stripe_info.subscription_id"];
1525
+ customer_id?: parameters["rowFilter.stripe_info.customer_id"];
1526
+ status?: parameters["rowFilter.stripe_info.status"];
1527
+ product_id?: parameters["rowFilter.stripe_info.product_id"];
1528
+ trial_at?: parameters["rowFilter.stripe_info.trial_at"];
1529
+ };
1530
+ body: {
1531
+ /** stripe_info */
1532
+ stripe_info?: definitions["stripe_info"];
1533
+ };
1534
+ header: {
1535
+ /** Preference */
1536
+ Prefer?: parameters["preferReturn"];
1537
+ };
1538
+ };
1539
+ responses: {
1540
+ /** No Content */
1541
+ 204: never;
1542
+ };
1543
+ };
1544
+ };
1545
+ "/users": {
1546
+ get: {
1547
+ parameters: {
1548
+ query: {
1549
+ created_at?: parameters["rowFilter.users.created_at"];
1550
+ image_url?: parameters["rowFilter.users.image_url"];
1551
+ first_name?: parameters["rowFilter.users.first_name"];
1552
+ last_name?: parameters["rowFilter.users.last_name"];
1553
+ country?: parameters["rowFilter.users.country"];
1554
+ email?: parameters["rowFilter.users.email"];
1555
+ id?: parameters["rowFilter.users.id"];
1556
+ updated_at?: parameters["rowFilter.users.updated_at"];
1557
+ enableNotifications?: parameters["rowFilter.users.enableNotifications"];
1558
+ optForNewsletters?: parameters["rowFilter.users.optForNewsletters"];
1559
+ legalAccepted?: parameters["rowFilter.users.legalAccepted"];
1560
+ customer_id?: parameters["rowFilter.users.customer_id"];
1561
+ /** Filtering Columns */
1562
+ select?: parameters["select"];
1563
+ /** Ordering */
1564
+ order?: parameters["order"];
1565
+ /** Limiting and Pagination */
1566
+ offset?: parameters["offset"];
1567
+ /** Limiting and Pagination */
1568
+ limit?: parameters["limit"];
1569
+ };
1570
+ header: {
1571
+ /** Limiting and Pagination */
1572
+ Range?: parameters["range"];
1573
+ /** Limiting and Pagination */
1574
+ "Range-Unit"?: parameters["rangeUnit"];
1575
+ /** Preference */
1576
+ Prefer?: parameters["preferCount"];
1577
+ };
1578
+ };
1579
+ responses: {
1580
+ /** OK */
1581
+ 200: {
1582
+ schema: definitions["users"][];
1583
+ };
1584
+ /** Partial Content */
1585
+ 206: unknown;
1586
+ };
1587
+ };
1588
+ post: {
1589
+ parameters: {
1590
+ body: {
1591
+ /** users */
1592
+ users?: definitions["users"];
1593
+ };
1594
+ query: {
1595
+ /** Filtering Columns */
1596
+ select?: parameters["select"];
1597
+ };
1598
+ header: {
1599
+ /** Preference */
1600
+ Prefer?: parameters["preferReturn"];
1601
+ };
1602
+ };
1603
+ responses: {
1604
+ /** Created */
1605
+ 201: unknown;
1606
+ };
1607
+ };
1608
+ delete: {
1609
+ parameters: {
1610
+ query: {
1611
+ created_at?: parameters["rowFilter.users.created_at"];
1612
+ image_url?: parameters["rowFilter.users.image_url"];
1613
+ first_name?: parameters["rowFilter.users.first_name"];
1614
+ last_name?: parameters["rowFilter.users.last_name"];
1615
+ country?: parameters["rowFilter.users.country"];
1616
+ email?: parameters["rowFilter.users.email"];
1617
+ id?: parameters["rowFilter.users.id"];
1618
+ updated_at?: parameters["rowFilter.users.updated_at"];
1619
+ enableNotifications?: parameters["rowFilter.users.enableNotifications"];
1620
+ optForNewsletters?: parameters["rowFilter.users.optForNewsletters"];
1621
+ legalAccepted?: parameters["rowFilter.users.legalAccepted"];
1622
+ customer_id?: parameters["rowFilter.users.customer_id"];
1623
+ };
1624
+ header: {
1625
+ /** Preference */
1626
+ Prefer?: parameters["preferReturn"];
1627
+ };
1628
+ };
1629
+ responses: {
1630
+ /** No Content */
1631
+ 204: never;
1632
+ };
1633
+ };
1634
+ patch: {
1635
+ parameters: {
1636
+ query: {
1637
+ created_at?: parameters["rowFilter.users.created_at"];
1638
+ image_url?: parameters["rowFilter.users.image_url"];
1639
+ first_name?: parameters["rowFilter.users.first_name"];
1640
+ last_name?: parameters["rowFilter.users.last_name"];
1641
+ country?: parameters["rowFilter.users.country"];
1642
+ email?: parameters["rowFilter.users.email"];
1643
+ id?: parameters["rowFilter.users.id"];
1644
+ updated_at?: parameters["rowFilter.users.updated_at"];
1645
+ enableNotifications?: parameters["rowFilter.users.enableNotifications"];
1646
+ optForNewsletters?: parameters["rowFilter.users.optForNewsletters"];
1647
+ legalAccepted?: parameters["rowFilter.users.legalAccepted"];
1648
+ customer_id?: parameters["rowFilter.users.customer_id"];
1649
+ };
1650
+ body: {
1651
+ /** users */
1652
+ users?: definitions["users"];
1653
+ };
1654
+ header: {
1655
+ /** Preference */
1656
+ Prefer?: parameters["preferReturn"];
1657
+ };
1658
+ };
1659
+ responses: {
1660
+ /** No Content */
1661
+ 204: never;
1662
+ };
1663
+ };
1664
+ };
1665
+ "/rpc/is_app_owner": {
1666
+ post: {
1667
+ parameters: {
1668
+ body: {
1669
+ args: {
1670
+ /** Format: uuid */
1671
+ userid: string;
1672
+ /** Format: character varying */
1673
+ appid: string;
1674
+ };
1675
+ };
1676
+ header: {
1677
+ /** Preference */
1678
+ Prefer?: parameters["preferParams"];
1679
+ };
1680
+ };
1681
+ responses: {
1682
+ /** OK */
1683
+ 200: unknown;
1684
+ };
1685
+ };
1686
+ };
1687
+ "/rpc/get_max_channel": {
1688
+ post: {
1689
+ parameters: {
1690
+ body: {
1691
+ args: {
1692
+ /** Format: uuid */
1693
+ userid: string;
1694
+ };
1695
+ };
1696
+ header: {
1697
+ /** Preference */
1698
+ Prefer?: parameters["preferParams"];
1699
+ };
1700
+ };
1701
+ responses: {
1702
+ /** OK */
1703
+ 200: unknown;
1704
+ };
1705
+ };
1706
+ };
1707
+ "/rpc/get_dl_by_month_by_app": {
1708
+ post: {
1709
+ parameters: {
1710
+ body: {
1711
+ args: {
1712
+ /** Format: uuid */
1713
+ userid: string;
1714
+ /** Format: integer */
1715
+ pastmonth: number;
1716
+ /** Format: character varying */
1717
+ appid: string;
1718
+ };
1719
+ };
1720
+ header: {
1721
+ /** Preference */
1722
+ Prefer?: parameters["preferParams"];
1723
+ };
1724
+ };
1725
+ responses: {
1726
+ /** OK */
1727
+ 200: unknown;
1728
+ };
1729
+ };
1730
+ };
1731
+ "/rpc/exist_channel": {
1732
+ post: {
1733
+ parameters: {
1734
+ body: {
1735
+ args: {
1736
+ /** Format: character varying */
1737
+ name_channel: string;
1738
+ /** Format: text */
1739
+ apikey: string;
1740
+ /** Format: character varying */
1741
+ appid: string;
1742
+ };
1743
+ };
1744
+ header: {
1745
+ /** Preference */
1746
+ Prefer?: parameters["preferParams"];
1747
+ };
1748
+ };
1749
+ responses: {
1750
+ /** OK */
1751
+ 200: unknown;
1752
+ };
1753
+ };
1754
+ };
1755
+ "/rpc/exist_app_versions": {
1756
+ post: {
1757
+ parameters: {
1758
+ body: {
1759
+ args: {
1760
+ /** Format: text */
1761
+ apikey: string;
1762
+ /** Format: character varying */
1763
+ name_version: string;
1764
+ /** Format: character varying */
1765
+ appid: string;
1766
+ };
1767
+ };
1768
+ header: {
1769
+ /** Preference */
1770
+ Prefer?: parameters["preferParams"];
1771
+ };
1772
+ };
1773
+ responses: {
1774
+ /** OK */
1775
+ 200: unknown;
1776
+ };
1777
+ };
1778
+ };
1779
+ "/rpc/get_user_id": {
1780
+ post: {
1781
+ parameters: {
1782
+ body: {
1783
+ args: {
1784
+ /** Format: text */
1785
+ apikey: string;
1786
+ };
1787
+ };
1788
+ header: {
1789
+ /** Preference */
1790
+ Prefer?: parameters["preferParams"];
1791
+ };
1792
+ };
1793
+ responses: {
1794
+ /** OK */
1795
+ 200: unknown;
1796
+ };
1797
+ };
1798
+ };
1799
+ "/rpc/exist_app": {
1800
+ post: {
1801
+ parameters: {
1802
+ body: {
1803
+ args: {
1804
+ /** Format: text */
1805
+ apikey: string;
1806
+ /** Format: character varying */
1807
+ appid: string;
1808
+ };
1809
+ };
1810
+ header: {
1811
+ /** Preference */
1812
+ Prefer?: parameters["preferParams"];
1813
+ };
1814
+ };
1815
+ responses: {
1816
+ /** OK */
1817
+ 200: unknown;
1818
+ };
1819
+ };
1820
+ };
1821
+ "/rpc/is_app_shared": {
1822
+ post: {
1823
+ parameters: {
1824
+ body: {
1825
+ args: {
1826
+ /** Format: uuid */
1827
+ userid: string;
1828
+ /** Format: character varying */
1829
+ appid: string;
1830
+ };
1831
+ };
1832
+ header: {
1833
+ /** Preference */
1834
+ Prefer?: parameters["preferParams"];
1835
+ };
1836
+ };
1837
+ responses: {
1838
+ /** OK */
1839
+ 200: unknown;
1840
+ };
1841
+ };
1842
+ };
1843
+ "/rpc/get_max_shared": {
1844
+ post: {
1845
+ parameters: {
1846
+ body: {
1847
+ args: {
1848
+ /** Format: uuid */
1849
+ userid: string;
1850
+ };
1851
+ };
1852
+ header: {
1853
+ /** Preference */
1854
+ Prefer?: parameters["preferParams"];
1855
+ };
1856
+ };
1857
+ responses: {
1858
+ /** OK */
1859
+ 200: unknown;
1860
+ };
1861
+ };
1862
+ };
1863
+ "/rpc/get_max_version": {
1864
+ post: {
1865
+ parameters: {
1866
+ body: {
1867
+ args: {
1868
+ /** Format: uuid */
1869
+ userid: string;
1870
+ };
1871
+ };
1872
+ header: {
1873
+ /** Preference */
1874
+ Prefer?: parameters["preferParams"];
1875
+ };
1876
+ };
1877
+ responses: {
1878
+ /** OK */
1879
+ 200: unknown;
1880
+ };
1881
+ };
1882
+ };
1883
+ "/rpc/is_version_shared": {
1884
+ post: {
1885
+ parameters: {
1886
+ body: {
1887
+ args: {
1888
+ /** Format: uuid */
1889
+ userid: string;
1890
+ /** Format: bigint */
1891
+ versionid: number;
1892
+ };
1893
+ };
1894
+ header: {
1895
+ /** Preference */
1896
+ Prefer?: parameters["preferParams"];
1897
+ };
1898
+ };
1899
+ responses: {
1900
+ /** OK */
1901
+ 200: unknown;
1902
+ };
1903
+ };
1904
+ };
1905
+ "/rpc/get_max_stats": {
1906
+ post: {
1907
+ parameters: {
1908
+ body: {
1909
+ args: {
1910
+ /** Format: text */
1911
+ apikey: string;
1912
+ };
1913
+ };
1914
+ header: {
1915
+ /** Preference */
1916
+ Prefer?: parameters["preferParams"];
1917
+ };
1918
+ };
1919
+ responses: {
1920
+ /** OK */
1921
+ 200: unknown;
1922
+ };
1923
+ };
1924
+ };
1925
+ "/rpc/is_allowed_capgkey": {
1926
+ post: {
1927
+ parameters: {
1928
+ body: {
1929
+ args: {
1930
+ /** Format: public.key_mode[] */
1931
+ keymode: string;
1932
+ /** Format: text */
1933
+ apikey: string;
1934
+ /** Format: character varying */
1935
+ app_id: string;
1936
+ };
1937
+ };
1938
+ header: {
1939
+ /** Preference */
1940
+ Prefer?: parameters["preferParams"];
1941
+ };
1942
+ };
1943
+ responses: {
1944
+ /** OK */
1945
+ 200: unknown;
1946
+ };
1947
+ };
1948
+ };
1949
+ "/rpc/get_dl_by_month": {
1950
+ post: {
1951
+ parameters: {
1952
+ body: {
1953
+ args: {
1954
+ /** Format: uuid */
1955
+ userid: string;
1956
+ /** Format: integer */
1957
+ pastmonth: number;
1958
+ };
1959
+ };
1960
+ header: {
1961
+ /** Preference */
1962
+ Prefer?: parameters["preferParams"];
1963
+ };
1964
+ };
1965
+ responses: {
1966
+ /** OK */
1967
+ 200: unknown;
1968
+ };
1969
+ };
1970
+ };
1971
+ }
1972
+
1973
+ export interface definitions {
1974
+ apikeys: {
1975
+ /**
1976
+ * Format: bigint
1977
+ * @description Note:
1978
+ * This is a Primary Key.<pk/>
1979
+ */
1980
+ id: number;
1981
+ /**
1982
+ * Format: timestamp with time zone
1983
+ * @default now()
1984
+ */
1985
+ created_at?: string;
1986
+ /** Format: uuid */
1987
+ user_id: string;
1988
+ /** Format: character varying */
1989
+ key: string;
1990
+ /**
1991
+ * Format: public.key_mode
1992
+ * @enum {string}
1993
+ */
1994
+ mode: "read" | "write" | "all" | "upload";
1995
+ /**
1996
+ * Format: timestamp with time zone
1997
+ * @default now()
1998
+ */
1999
+ updated_at?: string;
2000
+ };
2001
+ app_stats: {
2002
+ /**
2003
+ * Format: character varying
2004
+ * @description Note:
2005
+ * This is a Primary Key.<pk/>
2006
+ * This is a Foreign Key to `apps.app_id`.<fk table='apps' column='app_id'/>
2007
+ */
2008
+ app_id: string;
2009
+ /** Format: uuid */
2010
+ user_id: string;
2011
+ /**
2012
+ * Format: timestamp with time zone
2013
+ * @default now()
2014
+ */
2015
+ created_at?: string;
2016
+ /**
2017
+ * Format: timestamp with time zone
2018
+ * @default now()
2019
+ */
2020
+ updated_at?: string;
2021
+ /** Format: smallint */
2022
+ channels: number;
2023
+ /** Format: bigint */
2024
+ mlu: number;
2025
+ /** Format: bigint */
2026
+ versions: number;
2027
+ /** Format: bigint */
2028
+ shared: number;
2029
+ /** Format: bigint */
2030
+ mlu_real: number;
2031
+ };
2032
+ app_versions: {
2033
+ /**
2034
+ * Format: bigint
2035
+ * @description Note:
2036
+ * This is a Primary Key.<pk/>
2037
+ */
2038
+ id: number;
2039
+ /**
2040
+ * Format: timestamp with time zone
2041
+ * @default now()
2042
+ */
2043
+ created_at?: string;
2044
+ /**
2045
+ * Format: character varying
2046
+ * @description Note:
2047
+ * This is a Foreign Key to `apps.app_id`.<fk table='apps' column='app_id'/>
2048
+ */
2049
+ app_id: string;
2050
+ /** Format: character varying */
2051
+ name: string;
2052
+ /** Format: character varying */
2053
+ bucket_id?: string;
2054
+ /** Format: uuid */
2055
+ user_id: string;
2056
+ /**
2057
+ * Format: timestamp with time zone
2058
+ * @default now()
2059
+ */
2060
+ updated_at?: string;
2061
+ /** Format: boolean */
2062
+ deleted: boolean;
2063
+ /** Format: character varying */
2064
+ external_url?: string;
2065
+ };
2066
+ apps: {
2067
+ /**
2068
+ * Format: timestamp with time zone
2069
+ * @default now()
2070
+ */
2071
+ created_at?: string;
2072
+ /**
2073
+ * Format: character varying
2074
+ * @description Note:
2075
+ * This is a Primary Key.<pk/>
2076
+ */
2077
+ app_id: string;
2078
+ /** Format: character varying */
2079
+ icon_url: string;
2080
+ /** Format: uuid */
2081
+ user_id: string;
2082
+ /** Format: character varying */
2083
+ name?: string;
2084
+ /** Format: character varying */
2085
+ last_version?: string;
2086
+ /** Format: timestamp with time zone */
2087
+ updated_at?: string;
2088
+ /**
2089
+ * Format: uuid
2090
+ * @default extensions.uuid_generate_v4()
2091
+ */
2092
+ id?: string;
2093
+ };
2094
+ channel_devices: {
2095
+ /**
2096
+ * Format: timestamp with time zone
2097
+ * @default now()
2098
+ */
2099
+ created_at?: string;
2100
+ /**
2101
+ * Format: bigint
2102
+ * @description Note:
2103
+ * This is a Foreign Key to `channels.id`.<fk table='channels' column='id'/>
2104
+ */
2105
+ channel_id: number;
2106
+ /**
2107
+ * Format: character varying
2108
+ * @description Note:
2109
+ * This is a Foreign Key to `apps.app_id`.<fk table='apps' column='app_id'/>
2110
+ */
2111
+ app_id: string;
2112
+ /**
2113
+ * Format: timestamp with time zone
2114
+ * @default now()
2115
+ */
2116
+ updated_at: string;
2117
+ /**
2118
+ * Format: uuid
2119
+ * @description Note:
2120
+ * This is a Foreign Key to `users.id`.<fk table='users' column='id'/>
2121
+ */
2122
+ created_by?: string;
2123
+ /**
2124
+ * Format: text
2125
+ * @description Note:
2126
+ * This is a Primary Key.<pk/>
2127
+ * This is a Foreign Key to `devices.device_id`.<fk table='devices' column='device_id'/>
2128
+ */
2129
+ device_id: string;
2130
+ };
2131
+ channel_users: {
2132
+ /**
2133
+ * Format: bigint
2134
+ * @description Note:
2135
+ * This is a Primary Key.<pk/>
2136
+ */
2137
+ id: number;
2138
+ /**
2139
+ * Format: timestamp with time zone
2140
+ * @default now()
2141
+ */
2142
+ created_at?: string;
2143
+ /**
2144
+ * Format: uuid
2145
+ * @description Note:
2146
+ * This is a Foreign Key to `users.id`.<fk table='users' column='id'/>
2147
+ */
2148
+ user_id: string;
2149
+ /**
2150
+ * Format: bigint
2151
+ * @description Note:
2152
+ * This is a Foreign Key to `channels.id`.<fk table='channels' column='id'/>
2153
+ */
2154
+ channel_id: number;
2155
+ /**
2156
+ * Format: character varying
2157
+ * @description Note:
2158
+ * This is a Foreign Key to `apps.app_id`.<fk table='apps' column='app_id'/>
2159
+ */
2160
+ app_id: string;
2161
+ /**
2162
+ * Format: timestamp with time zone
2163
+ * @default now()
2164
+ */
2165
+ updated_at: string;
2166
+ /**
2167
+ * Format: uuid
2168
+ * @description Note:
2169
+ * This is a Foreign Key to `users.id`.<fk table='users' column='id'/>
2170
+ */
2171
+ created_by?: string;
2172
+ };
2173
+ channels: {
2174
+ /**
2175
+ * Format: bigint
2176
+ * @description Note:
2177
+ * This is a Primary Key.<pk/>
2178
+ */
2179
+ id: number;
2180
+ /**
2181
+ * Format: timestamp with time zone
2182
+ * @default now()
2183
+ */
2184
+ created_at: string;
2185
+ /** Format: character varying */
2186
+ name: string;
2187
+ /**
2188
+ * Format: character varying
2189
+ * @description Note:
2190
+ * This is a Foreign Key to `apps.app_id`.<fk table='apps' column='app_id'/>
2191
+ */
2192
+ app_id: string;
2193
+ /**
2194
+ * Format: bigint
2195
+ * @description Note:
2196
+ * This is a Foreign Key to `app_versions.id`.<fk table='app_versions' column='id'/>
2197
+ */
2198
+ version: number;
2199
+ /**
2200
+ * Format: uuid
2201
+ * @description Note:
2202
+ * This is a Foreign Key to `users.id`.<fk table='users' column='id'/>
2203
+ */
2204
+ created_by: string;
2205
+ /**
2206
+ * Format: timestamp with time zone
2207
+ * @default now()
2208
+ */
2209
+ updated_at: string;
2210
+ /** Format: boolean */
2211
+ public: boolean;
2212
+ /**
2213
+ * Format: boolean
2214
+ * @default true
2215
+ */
2216
+ disableAutoUpdateUnderNative: boolean;
2217
+ /**
2218
+ * Format: boolean
2219
+ * @default true
2220
+ */
2221
+ disableAutoUpdateToMajor: boolean;
2222
+ /** Format: boolean */
2223
+ beta?: boolean;
2224
+ };
2225
+ devices: {
2226
+ /**
2227
+ * Format: timestamp with time zone
2228
+ * @default now()
2229
+ */
2230
+ created_at?: string;
2231
+ /**
2232
+ * Format: timestamp with time zone
2233
+ * @default now()
2234
+ */
2235
+ updated_at?: string;
2236
+ /**
2237
+ * Format: text
2238
+ * @description Note:
2239
+ * This is a Primary Key.<pk/>
2240
+ */
2241
+ device_id: string;
2242
+ /**
2243
+ * Format: bigint
2244
+ * @description Note:
2245
+ * This is a Foreign Key to `app_versions.id`.<fk table='app_versions' column='id'/>
2246
+ */
2247
+ version: number;
2248
+ /**
2249
+ * Format: character varying
2250
+ * @description Note:
2251
+ * This is a Foreign Key to `apps.app_id`.<fk table='apps' column='app_id'/>
2252
+ */
2253
+ app_id: string;
2254
+ /**
2255
+ * Format: public.platform_os
2256
+ * @enum {string}
2257
+ */
2258
+ platform?: "ios" | "android";
2259
+ /**
2260
+ * Format: text
2261
+ * @default 2.3.3
2262
+ */
2263
+ plugin_version: string;
2264
+ /** Format: character varying */
2265
+ os_version?: string;
2266
+ };
2267
+ devices_onprem: {
2268
+ /**
2269
+ * Format: timestamp with time zone
2270
+ * @default now()
2271
+ */
2272
+ created_at?: string;
2273
+ /**
2274
+ * Format: timestamp with time zone
2275
+ * @default now()
2276
+ */
2277
+ updated_at?: string;
2278
+ /**
2279
+ * Format: public.platform_os
2280
+ * @enum {string}
2281
+ */
2282
+ platform?: "ios" | "android";
2283
+ /**
2284
+ * Format: text
2285
+ * @default 2.3.3
2286
+ */
2287
+ plugin_version: string;
2288
+ /** Format: character varying */
2289
+ version?: string;
2290
+ /** Format: character varying */
2291
+ app_id?: string;
2292
+ /** Format: character varying */
2293
+ device_id?: string;
2294
+ /** Format: character varying */
2295
+ os_version?: string;
2296
+ /**
2297
+ * Format: uuid
2298
+ * @description Note:
2299
+ * This is a Primary Key.<pk/>
2300
+ * @default extensions.uuid_generate_v4()
2301
+ */
2302
+ id: string;
2303
+ };
2304
+ devices_override: {
2305
+ /**
2306
+ * Format: timestamp with time zone
2307
+ * @default now()
2308
+ */
2309
+ created_at?: string;
2310
+ /**
2311
+ * Format: timestamp with time zone
2312
+ * @default now()
2313
+ */
2314
+ updated_at?: string;
2315
+ /**
2316
+ * Format: text
2317
+ * @description Note:
2318
+ * This is a Primary Key.<pk/>
2319
+ * This is a Foreign Key to `devices.device_id`.<fk table='devices' column='device_id'/>
2320
+ */
2321
+ device_id: string;
2322
+ /**
2323
+ * Format: bigint
2324
+ * @description Note:
2325
+ * This is a Foreign Key to `app_versions.id`.<fk table='app_versions' column='id'/>
2326
+ */
2327
+ version: number;
2328
+ /**
2329
+ * Format: character varying
2330
+ * @description Note:
2331
+ * This is a Foreign Key to `apps.app_id`.<fk table='apps' column='app_id'/>
2332
+ */
2333
+ app_id: string;
2334
+ };
2335
+ plans: {
2336
+ /**
2337
+ * Format: timestamp with time zone
2338
+ * @default now()
2339
+ */
2340
+ created_at: string;
2341
+ /**
2342
+ * Format: timestamp with time zone
2343
+ * @default now()
2344
+ */
2345
+ updated_at: string;
2346
+ /**
2347
+ * Format: character varying
2348
+ * @description Note:
2349
+ * This is a Primary Key.<pk/>
2350
+ */
2351
+ name: string;
2352
+ /** Format: character varying */
2353
+ description: string;
2354
+ /** Format: bigint */
2355
+ price_m: number;
2356
+ /** Format: bigint */
2357
+ price_y: number;
2358
+ /**
2359
+ * Format: character varying
2360
+ * @description Note:
2361
+ * This is a Primary Key.<pk/>
2362
+ */
2363
+ stripe_id: string;
2364
+ /** Format: bigint */
2365
+ apps: number;
2366
+ /** Format: bigint */
2367
+ channels: number;
2368
+ /** Format: bigint */
2369
+ updates: number;
2370
+ /** Format: bigint */
2371
+ versions: number;
2372
+ /** Format: bigint */
2373
+ shared: number;
2374
+ /** Format: boolean */
2375
+ abtest: boolean;
2376
+ /** Format: boolean */
2377
+ progressive_deploy: boolean;
2378
+ /**
2379
+ * Format: uuid
2380
+ * @description Note:
2381
+ * This is a Primary Key.<pk/>
2382
+ * @default extensions.uuid_generate_v4()
2383
+ */
2384
+ id: string;
2385
+ };
2386
+ stats: {
2387
+ /**
2388
+ * Format: bigint
2389
+ * @description Note:
2390
+ * This is a Primary Key.<pk/>
2391
+ */
2392
+ id: number;
2393
+ /**
2394
+ * Format: timestamp with time zone
2395
+ * @default now()
2396
+ */
2397
+ created_at?: string;
2398
+ /**
2399
+ * Format: public.platform_os
2400
+ * @enum {string}
2401
+ */
2402
+ platform: "ios" | "android";
2403
+ /** Format: text */
2404
+ action: string;
2405
+ /**
2406
+ * Format: text
2407
+ * @description Note:
2408
+ * This is a Foreign Key to `devices.device_id`.<fk table='devices' column='device_id'/>
2409
+ */
2410
+ device_id: string;
2411
+ /** Format: text */
2412
+ version_build: string;
2413
+ /**
2414
+ * Format: bigint
2415
+ * @description Note:
2416
+ * This is a Foreign Key to `app_versions.id`.<fk table='app_versions' column='id'/>
2417
+ */
2418
+ version: number;
2419
+ /**
2420
+ * Format: character varying
2421
+ * @description Note:
2422
+ * This is a Foreign Key to `apps.app_id`.<fk table='apps' column='app_id'/>
2423
+ */
2424
+ app_id: string;
2425
+ /**
2426
+ * Format: timestamp with time zone
2427
+ * @default now()
2428
+ */
2429
+ updated_at?: string;
2430
+ };
2431
+ stats_onprem: {
2432
+ /**
2433
+ * Format: bigint
2434
+ * @description Note:
2435
+ * This is a Primary Key.<pk/>
2436
+ */
2437
+ id: number;
2438
+ /**
2439
+ * Format: timestamp with time zone
2440
+ * @default now()
2441
+ */
2442
+ created_at?: string;
2443
+ /**
2444
+ * Format: public.platform_os
2445
+ * @enum {string}
2446
+ */
2447
+ platform: "ios" | "android";
2448
+ /** Format: text */
2449
+ action: string;
2450
+ /** Format: character varying */
2451
+ device_id: string;
2452
+ /** Format: text */
2453
+ version_build: string;
2454
+ /** Format: character varying */
2455
+ app_id: string;
2456
+ /**
2457
+ * Format: timestamp with time zone
2458
+ * @default now()
2459
+ */
2460
+ updated_at?: string;
2461
+ /** Format: character varying */
2462
+ version: string;
2463
+ };
2464
+ stripe_info: {
2465
+ /**
2466
+ * Format: timestamp with time zone
2467
+ * @default now()
2468
+ */
2469
+ created_at: string;
2470
+ /**
2471
+ * Format: timestamp with time zone
2472
+ * @default now()
2473
+ */
2474
+ updated_at: string;
2475
+ /** Format: character varying */
2476
+ subscription_id?: string;
2477
+ /**
2478
+ * Format: character varying
2479
+ * @description Note:
2480
+ * This is a Primary Key.<pk/>
2481
+ */
2482
+ customer_id: string;
2483
+ /**
2484
+ * Format: public.stripe_status
2485
+ * @enum {string}
2486
+ */
2487
+ status?:
2488
+ | "created"
2489
+ | "succeeded"
2490
+ | "updated"
2491
+ | "failed"
2492
+ | "deleted"
2493
+ | "canceled";
2494
+ /** Format: character varying */
2495
+ product_id?: string;
2496
+ /**
2497
+ * Format: timestamp with time zone
2498
+ * @default now()
2499
+ */
2500
+ trial_at: string;
2501
+ };
2502
+ users: {
2503
+ /**
2504
+ * Format: timestamp with time zone
2505
+ * @default now()
2506
+ */
2507
+ created_at?: string;
2508
+ /** Format: character varying */
2509
+ image_url?: string;
2510
+ /** Format: character varying */
2511
+ first_name?: string;
2512
+ /** Format: character varying */
2513
+ last_name?: string;
2514
+ /** Format: character varying */
2515
+ country?: string;
2516
+ /** Format: character varying */
2517
+ email: string;
2518
+ /**
2519
+ * Format: uuid
2520
+ * @description Note:
2521
+ * This is a Primary Key.<pk/>
2522
+ */
2523
+ id: string;
2524
+ /**
2525
+ * Format: timestamp with time zone
2526
+ * @default now()
2527
+ */
2528
+ updated_at?: string;
2529
+ /** Format: boolean */
2530
+ enableNotifications: boolean;
2531
+ /** Format: boolean */
2532
+ optForNewsletters: boolean;
2533
+ /** Format: boolean */
2534
+ legalAccepted: boolean;
2535
+ /** Format: character varying */
2536
+ customer_id?: string;
2537
+ };
2538
+ }
2539
+
2540
+ export interface parameters {
2541
+ /**
2542
+ * @description Preference
2543
+ * @enum {string}
2544
+ */
2545
+ preferParams: "params=single-object";
2546
+ /**
2547
+ * @description Preference
2548
+ * @enum {string}
2549
+ */
2550
+ preferReturn: "return=representation" | "return=minimal" | "return=none";
2551
+ /**
2552
+ * @description Preference
2553
+ * @enum {string}
2554
+ */
2555
+ preferCount: "count=none";
2556
+ /** @description Filtering Columns */
2557
+ select: string;
2558
+ /** @description On Conflict */
2559
+ on_conflict: string;
2560
+ /** @description Ordering */
2561
+ order: string;
2562
+ /** @description Limiting and Pagination */
2563
+ range: string;
2564
+ /**
2565
+ * @description Limiting and Pagination
2566
+ * @default items
2567
+ */
2568
+ rangeUnit: string;
2569
+ /** @description Limiting and Pagination */
2570
+ offset: string;
2571
+ /** @description Limiting and Pagination */
2572
+ limit: string;
2573
+ /** @description apikeys */
2574
+ "body.apikeys": definitions["apikeys"];
2575
+ /** Format: bigint */
2576
+ "rowFilter.apikeys.id": string;
2577
+ /** Format: timestamp with time zone */
2578
+ "rowFilter.apikeys.created_at": string;
2579
+ /** Format: uuid */
2580
+ "rowFilter.apikeys.user_id": string;
2581
+ /** Format: character varying */
2582
+ "rowFilter.apikeys.key": string;
2583
+ /** Format: public.key_mode */
2584
+ "rowFilter.apikeys.mode": string;
2585
+ /** Format: timestamp with time zone */
2586
+ "rowFilter.apikeys.updated_at": string;
2587
+ /** @description app_stats */
2588
+ "body.app_stats": definitions["app_stats"];
2589
+ /** Format: character varying */
2590
+ "rowFilter.app_stats.app_id": string;
2591
+ /** Format: uuid */
2592
+ "rowFilter.app_stats.user_id": string;
2593
+ /** Format: timestamp with time zone */
2594
+ "rowFilter.app_stats.created_at": string;
2595
+ /** Format: timestamp with time zone */
2596
+ "rowFilter.app_stats.updated_at": string;
2597
+ /** Format: smallint */
2598
+ "rowFilter.app_stats.channels": string;
2599
+ /** Format: bigint */
2600
+ "rowFilter.app_stats.mlu": string;
2601
+ /** Format: bigint */
2602
+ "rowFilter.app_stats.versions": string;
2603
+ /** Format: bigint */
2604
+ "rowFilter.app_stats.shared": string;
2605
+ /** Format: bigint */
2606
+ "rowFilter.app_stats.mlu_real": string;
2607
+ /** @description app_versions */
2608
+ "body.app_versions": definitions["app_versions"];
2609
+ /** Format: bigint */
2610
+ "rowFilter.app_versions.id": string;
2611
+ /** Format: timestamp with time zone */
2612
+ "rowFilter.app_versions.created_at": string;
2613
+ /** Format: character varying */
2614
+ "rowFilter.app_versions.app_id": string;
2615
+ /** Format: character varying */
2616
+ "rowFilter.app_versions.name": string;
2617
+ /** Format: character varying */
2618
+ "rowFilter.app_versions.bucket_id": string;
2619
+ /** Format: uuid */
2620
+ "rowFilter.app_versions.user_id": string;
2621
+ /** Format: timestamp with time zone */
2622
+ "rowFilter.app_versions.updated_at": string;
2623
+ /** Format: boolean */
2624
+ "rowFilter.app_versions.deleted": string;
2625
+ /** Format: character varying */
2626
+ "rowFilter.app_versions.external_url": string;
2627
+ /** @description apps */
2628
+ "body.apps": definitions["apps"];
2629
+ /** Format: timestamp with time zone */
2630
+ "rowFilter.apps.created_at": string;
2631
+ /** Format: character varying */
2632
+ "rowFilter.apps.app_id": string;
2633
+ /** Format: character varying */
2634
+ "rowFilter.apps.icon_url": string;
2635
+ /** Format: uuid */
2636
+ "rowFilter.apps.user_id": string;
2637
+ /** Format: character varying */
2638
+ "rowFilter.apps.name": string;
2639
+ /** Format: character varying */
2640
+ "rowFilter.apps.last_version": string;
2641
+ /** Format: timestamp with time zone */
2642
+ "rowFilter.apps.updated_at": string;
2643
+ /** Format: uuid */
2644
+ "rowFilter.apps.id": string;
2645
+ /** @description channel_devices */
2646
+ "body.channel_devices": definitions["channel_devices"];
2647
+ /** Format: timestamp with time zone */
2648
+ "rowFilter.channel_devices.created_at": string;
2649
+ /** Format: bigint */
2650
+ "rowFilter.channel_devices.channel_id": string;
2651
+ /** Format: character varying */
2652
+ "rowFilter.channel_devices.app_id": string;
2653
+ /** Format: timestamp with time zone */
2654
+ "rowFilter.channel_devices.updated_at": string;
2655
+ /** Format: uuid */
2656
+ "rowFilter.channel_devices.created_by": string;
2657
+ /** Format: text */
2658
+ "rowFilter.channel_devices.device_id": string;
2659
+ /** @description channel_users */
2660
+ "body.channel_users": definitions["channel_users"];
2661
+ /** Format: bigint */
2662
+ "rowFilter.channel_users.id": string;
2663
+ /** Format: timestamp with time zone */
2664
+ "rowFilter.channel_users.created_at": string;
2665
+ /** Format: uuid */
2666
+ "rowFilter.channel_users.user_id": string;
2667
+ /** Format: bigint */
2668
+ "rowFilter.channel_users.channel_id": string;
2669
+ /** Format: character varying */
2670
+ "rowFilter.channel_users.app_id": string;
2671
+ /** Format: timestamp with time zone */
2672
+ "rowFilter.channel_users.updated_at": string;
2673
+ /** Format: uuid */
2674
+ "rowFilter.channel_users.created_by": string;
2675
+ /** @description channels */
2676
+ "body.channels": definitions["channels"];
2677
+ /** Format: bigint */
2678
+ "rowFilter.channels.id": string;
2679
+ /** Format: timestamp with time zone */
2680
+ "rowFilter.channels.created_at": string;
2681
+ /** Format: character varying */
2682
+ "rowFilter.channels.name": string;
2683
+ /** Format: character varying */
2684
+ "rowFilter.channels.app_id": string;
2685
+ /** Format: bigint */
2686
+ "rowFilter.channels.version": string;
2687
+ /** Format: uuid */
2688
+ "rowFilter.channels.created_by": string;
2689
+ /** Format: timestamp with time zone */
2690
+ "rowFilter.channels.updated_at": string;
2691
+ /** Format: boolean */
2692
+ "rowFilter.channels.public": string;
2693
+ /** Format: boolean */
2694
+ "rowFilter.channels.disableAutoUpdateUnderNative": string;
2695
+ /** Format: boolean */
2696
+ "rowFilter.channels.disableAutoUpdateToMajor": string;
2697
+ /** Format: boolean */
2698
+ "rowFilter.channels.beta": string;
2699
+ /** @description devices */
2700
+ "body.devices": definitions["devices"];
2701
+ /** Format: timestamp with time zone */
2702
+ "rowFilter.devices.created_at": string;
2703
+ /** Format: timestamp with time zone */
2704
+ "rowFilter.devices.updated_at": string;
2705
+ /** Format: text */
2706
+ "rowFilter.devices.device_id": string;
2707
+ /** Format: bigint */
2708
+ "rowFilter.devices.version": string;
2709
+ /** Format: character varying */
2710
+ "rowFilter.devices.app_id": string;
2711
+ /** Format: public.platform_os */
2712
+ "rowFilter.devices.platform": string;
2713
+ /** Format: text */
2714
+ "rowFilter.devices.plugin_version": string;
2715
+ /** Format: character varying */
2716
+ "rowFilter.devices.os_version": string;
2717
+ /** @description devices_onprem */
2718
+ "body.devices_onprem": definitions["devices_onprem"];
2719
+ /** Format: timestamp with time zone */
2720
+ "rowFilter.devices_onprem.created_at": string;
2721
+ /** Format: timestamp with time zone */
2722
+ "rowFilter.devices_onprem.updated_at": string;
2723
+ /** Format: public.platform_os */
2724
+ "rowFilter.devices_onprem.platform": string;
2725
+ /** Format: text */
2726
+ "rowFilter.devices_onprem.plugin_version": string;
2727
+ /** Format: character varying */
2728
+ "rowFilter.devices_onprem.version": string;
2729
+ /** Format: character varying */
2730
+ "rowFilter.devices_onprem.app_id": string;
2731
+ /** Format: character varying */
2732
+ "rowFilter.devices_onprem.device_id": string;
2733
+ /** Format: character varying */
2734
+ "rowFilter.devices_onprem.os_version": string;
2735
+ /** Format: uuid */
2736
+ "rowFilter.devices_onprem.id": string;
2737
+ /** @description devices_override */
2738
+ "body.devices_override": definitions["devices_override"];
2739
+ /** Format: timestamp with time zone */
2740
+ "rowFilter.devices_override.created_at": string;
2741
+ /** Format: timestamp with time zone */
2742
+ "rowFilter.devices_override.updated_at": string;
2743
+ /** Format: text */
2744
+ "rowFilter.devices_override.device_id": string;
2745
+ /** Format: bigint */
2746
+ "rowFilter.devices_override.version": string;
2747
+ /** Format: character varying */
2748
+ "rowFilter.devices_override.app_id": string;
2749
+ /** @description plans */
2750
+ "body.plans": definitions["plans"];
2751
+ /** Format: timestamp with time zone */
2752
+ "rowFilter.plans.created_at": string;
2753
+ /** Format: timestamp with time zone */
2754
+ "rowFilter.plans.updated_at": string;
2755
+ /** Format: character varying */
2756
+ "rowFilter.plans.name": string;
2757
+ /** Format: character varying */
2758
+ "rowFilter.plans.description": string;
2759
+ /** Format: bigint */
2760
+ "rowFilter.plans.price_m": string;
2761
+ /** Format: bigint */
2762
+ "rowFilter.plans.price_y": string;
2763
+ /** Format: character varying */
2764
+ "rowFilter.plans.stripe_id": string;
2765
+ /** Format: bigint */
2766
+ "rowFilter.plans.apps": string;
2767
+ /** Format: bigint */
2768
+ "rowFilter.plans.channels": string;
2769
+ /** Format: bigint */
2770
+ "rowFilter.plans.updates": string;
2771
+ /** Format: bigint */
2772
+ "rowFilter.plans.versions": string;
2773
+ /** Format: bigint */
2774
+ "rowFilter.plans.shared": string;
2775
+ /** Format: boolean */
2776
+ "rowFilter.plans.abtest": string;
2777
+ /** Format: boolean */
2778
+ "rowFilter.plans.progressive_deploy": string;
2779
+ /** Format: uuid */
2780
+ "rowFilter.plans.id": string;
2781
+ /** @description stats */
2782
+ "body.stats": definitions["stats"];
2783
+ /** Format: bigint */
2784
+ "rowFilter.stats.id": string;
2785
+ /** Format: timestamp with time zone */
2786
+ "rowFilter.stats.created_at": string;
2787
+ /** Format: public.platform_os */
2788
+ "rowFilter.stats.platform": string;
2789
+ /** Format: text */
2790
+ "rowFilter.stats.action": string;
2791
+ /** Format: text */
2792
+ "rowFilter.stats.device_id": string;
2793
+ /** Format: text */
2794
+ "rowFilter.stats.version_build": string;
2795
+ /** Format: bigint */
2796
+ "rowFilter.stats.version": string;
2797
+ /** Format: character varying */
2798
+ "rowFilter.stats.app_id": string;
2799
+ /** Format: timestamp with time zone */
2800
+ "rowFilter.stats.updated_at": string;
2801
+ /** @description stats_onprem */
2802
+ "body.stats_onprem": definitions["stats_onprem"];
2803
+ /** Format: bigint */
2804
+ "rowFilter.stats_onprem.id": string;
2805
+ /** Format: timestamp with time zone */
2806
+ "rowFilter.stats_onprem.created_at": string;
2807
+ /** Format: public.platform_os */
2808
+ "rowFilter.stats_onprem.platform": string;
2809
+ /** Format: text */
2810
+ "rowFilter.stats_onprem.action": string;
2811
+ /** Format: character varying */
2812
+ "rowFilter.stats_onprem.device_id": string;
2813
+ /** Format: text */
2814
+ "rowFilter.stats_onprem.version_build": string;
2815
+ /** Format: character varying */
2816
+ "rowFilter.stats_onprem.app_id": string;
2817
+ /** Format: timestamp with time zone */
2818
+ "rowFilter.stats_onprem.updated_at": string;
2819
+ /** Format: character varying */
2820
+ "rowFilter.stats_onprem.version": string;
2821
+ /** @description stripe_info */
2822
+ "body.stripe_info": definitions["stripe_info"];
2823
+ /** Format: timestamp with time zone */
2824
+ "rowFilter.stripe_info.created_at": string;
2825
+ /** Format: timestamp with time zone */
2826
+ "rowFilter.stripe_info.updated_at": string;
2827
+ /** Format: character varying */
2828
+ "rowFilter.stripe_info.subscription_id": string;
2829
+ /** Format: character varying */
2830
+ "rowFilter.stripe_info.customer_id": string;
2831
+ /** Format: public.stripe_status */
2832
+ "rowFilter.stripe_info.status": string;
2833
+ /** Format: character varying */
2834
+ "rowFilter.stripe_info.product_id": string;
2835
+ /** Format: timestamp with time zone */
2836
+ "rowFilter.stripe_info.trial_at": string;
2837
+ /** @description users */
2838
+ "body.users": definitions["users"];
2839
+ /** Format: timestamp with time zone */
2840
+ "rowFilter.users.created_at": string;
2841
+ /** Format: character varying */
2842
+ "rowFilter.users.image_url": string;
2843
+ /** Format: character varying */
2844
+ "rowFilter.users.first_name": string;
2845
+ /** Format: character varying */
2846
+ "rowFilter.users.last_name": string;
2847
+ /** Format: character varying */
2848
+ "rowFilter.users.country": string;
2849
+ /** Format: character varying */
2850
+ "rowFilter.users.email": string;
2851
+ /** Format: uuid */
2852
+ "rowFilter.users.id": string;
2853
+ /** Format: timestamp with time zone */
2854
+ "rowFilter.users.updated_at": string;
2855
+ /** Format: boolean */
2856
+ "rowFilter.users.enableNotifications": string;
2857
+ /** Format: boolean */
2858
+ "rowFilter.users.optForNewsletters": string;
2859
+ /** Format: boolean */
2860
+ "rowFilter.users.legalAccepted": string;
2861
+ /** Format: character varying */
2862
+ "rowFilter.users.customer_id": string;
2863
+ }
2864
+
2865
+ export interface operations { }
2866
+
2867
+ export interface external { }