@capgo/cli 1.0.3 → 1.1.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/.cz.toml +1 -1
- package/CHANGELOG.md +12 -0
- package/README.md +18 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/bin/index.ts +12 -2
- package/src/bin/set.ts +45 -22
- package/src/bin/types_supabase.ts +1774 -1211
|
@@ -12,16 +12,24 @@ export interface paths {
|
|
|
12
12
|
};
|
|
13
13
|
};
|
|
14
14
|
};
|
|
15
|
-
"/
|
|
15
|
+
"/channels": {
|
|
16
16
|
get: {
|
|
17
17
|
parameters: {
|
|
18
18
|
query: {
|
|
19
|
-
id?: parameters["rowFilter.
|
|
20
|
-
created_at?: parameters["rowFilter.
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
19
|
+
id?: parameters["rowFilter.channels.id"];
|
|
20
|
+
created_at?: parameters["rowFilter.channels.created_at"];
|
|
21
|
+
name?: parameters["rowFilter.channels.name"];
|
|
22
|
+
app_id?: parameters["rowFilter.channels.app_id"];
|
|
23
|
+
version?: parameters["rowFilter.channels.version"];
|
|
24
|
+
created_by?: parameters["rowFilter.channels.created_by"];
|
|
25
|
+
updated_at?: parameters["rowFilter.channels.updated_at"];
|
|
26
|
+
public?: parameters["rowFilter.channels.public"];
|
|
27
|
+
disableAutoUpdateUnderNative?: parameters["rowFilter.channels.disableAutoUpdateUnderNative"];
|
|
28
|
+
disableAutoUpdateToMajor?: parameters["rowFilter.channels.disableAutoUpdateToMajor"];
|
|
29
|
+
beta?: parameters["rowFilter.channels.beta"];
|
|
30
|
+
ios?: parameters["rowFilter.channels.ios"];
|
|
31
|
+
android?: parameters["rowFilter.channels.android"];
|
|
32
|
+
allow_device_self_set?: parameters["rowFilter.channels.allow_device_self_set"];
|
|
25
33
|
/** Filtering Columns */
|
|
26
34
|
select?: parameters["select"];
|
|
27
35
|
/** Ordering */
|
|
@@ -43,7 +51,7 @@ export interface paths {
|
|
|
43
51
|
responses: {
|
|
44
52
|
/** OK */
|
|
45
53
|
200: {
|
|
46
|
-
schema: definitions["
|
|
54
|
+
schema: definitions["channels"][];
|
|
47
55
|
};
|
|
48
56
|
/** Partial Content */
|
|
49
57
|
206: unknown;
|
|
@@ -52,8 +60,8 @@ export interface paths {
|
|
|
52
60
|
post: {
|
|
53
61
|
parameters: {
|
|
54
62
|
body: {
|
|
55
|
-
/**
|
|
56
|
-
|
|
63
|
+
/** channels */
|
|
64
|
+
channels?: definitions["channels"];
|
|
57
65
|
};
|
|
58
66
|
query: {
|
|
59
67
|
/** Filtering Columns */
|
|
@@ -72,12 +80,20 @@ export interface paths {
|
|
|
72
80
|
delete: {
|
|
73
81
|
parameters: {
|
|
74
82
|
query: {
|
|
75
|
-
id?: parameters["rowFilter.
|
|
76
|
-
created_at?: parameters["rowFilter.
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
83
|
+
id?: parameters["rowFilter.channels.id"];
|
|
84
|
+
created_at?: parameters["rowFilter.channels.created_at"];
|
|
85
|
+
name?: parameters["rowFilter.channels.name"];
|
|
86
|
+
app_id?: parameters["rowFilter.channels.app_id"];
|
|
87
|
+
version?: parameters["rowFilter.channels.version"];
|
|
88
|
+
created_by?: parameters["rowFilter.channels.created_by"];
|
|
89
|
+
updated_at?: parameters["rowFilter.channels.updated_at"];
|
|
90
|
+
public?: parameters["rowFilter.channels.public"];
|
|
91
|
+
disableAutoUpdateUnderNative?: parameters["rowFilter.channels.disableAutoUpdateUnderNative"];
|
|
92
|
+
disableAutoUpdateToMajor?: parameters["rowFilter.channels.disableAutoUpdateToMajor"];
|
|
93
|
+
beta?: parameters["rowFilter.channels.beta"];
|
|
94
|
+
ios?: parameters["rowFilter.channels.ios"];
|
|
95
|
+
android?: parameters["rowFilter.channels.android"];
|
|
96
|
+
allow_device_self_set?: parameters["rowFilter.channels.allow_device_self_set"];
|
|
81
97
|
};
|
|
82
98
|
header: {
|
|
83
99
|
/** Preference */
|
|
@@ -92,16 +108,24 @@ export interface paths {
|
|
|
92
108
|
patch: {
|
|
93
109
|
parameters: {
|
|
94
110
|
query: {
|
|
95
|
-
id?: parameters["rowFilter.
|
|
96
|
-
created_at?: parameters["rowFilter.
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
111
|
+
id?: parameters["rowFilter.channels.id"];
|
|
112
|
+
created_at?: parameters["rowFilter.channels.created_at"];
|
|
113
|
+
name?: parameters["rowFilter.channels.name"];
|
|
114
|
+
app_id?: parameters["rowFilter.channels.app_id"];
|
|
115
|
+
version?: parameters["rowFilter.channels.version"];
|
|
116
|
+
created_by?: parameters["rowFilter.channels.created_by"];
|
|
117
|
+
updated_at?: parameters["rowFilter.channels.updated_at"];
|
|
118
|
+
public?: parameters["rowFilter.channels.public"];
|
|
119
|
+
disableAutoUpdateUnderNative?: parameters["rowFilter.channels.disableAutoUpdateUnderNative"];
|
|
120
|
+
disableAutoUpdateToMajor?: parameters["rowFilter.channels.disableAutoUpdateToMajor"];
|
|
121
|
+
beta?: parameters["rowFilter.channels.beta"];
|
|
122
|
+
ios?: parameters["rowFilter.channels.ios"];
|
|
123
|
+
android?: parameters["rowFilter.channels.android"];
|
|
124
|
+
allow_device_self_set?: parameters["rowFilter.channels.allow_device_self_set"];
|
|
101
125
|
};
|
|
102
126
|
body: {
|
|
103
|
-
/**
|
|
104
|
-
|
|
127
|
+
/** channels */
|
|
128
|
+
channels?: definitions["channels"];
|
|
105
129
|
};
|
|
106
130
|
header: {
|
|
107
131
|
/** Preference */
|
|
@@ -114,22 +138,13 @@ export interface paths {
|
|
|
114
138
|
};
|
|
115
139
|
};
|
|
116
140
|
};
|
|
117
|
-
"/
|
|
141
|
+
"/deleted_account": {
|
|
118
142
|
get: {
|
|
119
143
|
parameters: {
|
|
120
144
|
query: {
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
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
|
-
devices?: parameters["rowFilter.app_stats.devices"];
|
|
131
|
-
date_id?: parameters["rowFilter.app_stats.date_id"];
|
|
132
|
-
versionSize?: parameters["rowFilter.app_stats.versionSize"];
|
|
145
|
+
created_at?: parameters["rowFilter.deleted_account.created_at"];
|
|
146
|
+
email?: parameters["rowFilter.deleted_account.email"];
|
|
147
|
+
id?: parameters["rowFilter.deleted_account.id"];
|
|
133
148
|
/** Filtering Columns */
|
|
134
149
|
select?: parameters["select"];
|
|
135
150
|
/** Ordering */
|
|
@@ -151,7 +166,7 @@ export interface paths {
|
|
|
151
166
|
responses: {
|
|
152
167
|
/** OK */
|
|
153
168
|
200: {
|
|
154
|
-
schema: definitions["
|
|
169
|
+
schema: definitions["deleted_account"][];
|
|
155
170
|
};
|
|
156
171
|
/** Partial Content */
|
|
157
172
|
206: unknown;
|
|
@@ -160,8 +175,8 @@ export interface paths {
|
|
|
160
175
|
post: {
|
|
161
176
|
parameters: {
|
|
162
177
|
body: {
|
|
163
|
-
/**
|
|
164
|
-
|
|
178
|
+
/** deleted_account */
|
|
179
|
+
deleted_account?: definitions["deleted_account"];
|
|
165
180
|
};
|
|
166
181
|
query: {
|
|
167
182
|
/** Filtering Columns */
|
|
@@ -180,18 +195,9 @@ export interface paths {
|
|
|
180
195
|
delete: {
|
|
181
196
|
parameters: {
|
|
182
197
|
query: {
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
updated_at?: parameters["rowFilter.app_stats.updated_at"];
|
|
187
|
-
channels?: parameters["rowFilter.app_stats.channels"];
|
|
188
|
-
mlu?: parameters["rowFilter.app_stats.mlu"];
|
|
189
|
-
versions?: parameters["rowFilter.app_stats.versions"];
|
|
190
|
-
shared?: parameters["rowFilter.app_stats.shared"];
|
|
191
|
-
mlu_real?: parameters["rowFilter.app_stats.mlu_real"];
|
|
192
|
-
devices?: parameters["rowFilter.app_stats.devices"];
|
|
193
|
-
date_id?: parameters["rowFilter.app_stats.date_id"];
|
|
194
|
-
versionSize?: parameters["rowFilter.app_stats.versionSize"];
|
|
198
|
+
created_at?: parameters["rowFilter.deleted_account.created_at"];
|
|
199
|
+
email?: parameters["rowFilter.deleted_account.email"];
|
|
200
|
+
id?: parameters["rowFilter.deleted_account.id"];
|
|
195
201
|
};
|
|
196
202
|
header: {
|
|
197
203
|
/** Preference */
|
|
@@ -206,22 +212,13 @@ export interface paths {
|
|
|
206
212
|
patch: {
|
|
207
213
|
parameters: {
|
|
208
214
|
query: {
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
updated_at?: parameters["rowFilter.app_stats.updated_at"];
|
|
213
|
-
channels?: parameters["rowFilter.app_stats.channels"];
|
|
214
|
-
mlu?: parameters["rowFilter.app_stats.mlu"];
|
|
215
|
-
versions?: parameters["rowFilter.app_stats.versions"];
|
|
216
|
-
shared?: parameters["rowFilter.app_stats.shared"];
|
|
217
|
-
mlu_real?: parameters["rowFilter.app_stats.mlu_real"];
|
|
218
|
-
devices?: parameters["rowFilter.app_stats.devices"];
|
|
219
|
-
date_id?: parameters["rowFilter.app_stats.date_id"];
|
|
220
|
-
versionSize?: parameters["rowFilter.app_stats.versionSize"];
|
|
215
|
+
created_at?: parameters["rowFilter.deleted_account.created_at"];
|
|
216
|
+
email?: parameters["rowFilter.deleted_account.email"];
|
|
217
|
+
id?: parameters["rowFilter.deleted_account.id"];
|
|
221
218
|
};
|
|
222
219
|
body: {
|
|
223
|
-
/**
|
|
224
|
-
|
|
220
|
+
/** deleted_account */
|
|
221
|
+
deleted_account?: definitions["deleted_account"];
|
|
225
222
|
};
|
|
226
223
|
header: {
|
|
227
224
|
/** Preference */
|
|
@@ -234,18 +231,20 @@ export interface paths {
|
|
|
234
231
|
};
|
|
235
232
|
};
|
|
236
233
|
};
|
|
237
|
-
"/
|
|
234
|
+
"/global_stats": {
|
|
238
235
|
get: {
|
|
239
236
|
parameters: {
|
|
240
237
|
query: {
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
238
|
+
created_at?: parameters["rowFilter.global_stats.created_at"];
|
|
239
|
+
date_id?: parameters["rowFilter.global_stats.date_id"];
|
|
240
|
+
apps?: parameters["rowFilter.global_stats.apps"];
|
|
241
|
+
updates?: parameters["rowFilter.global_stats.updates"];
|
|
242
|
+
stars?: parameters["rowFilter.global_stats.stars"];
|
|
243
|
+
users?: parameters["rowFilter.global_stats.users"];
|
|
244
|
+
paying?: parameters["rowFilter.global_stats.paying"];
|
|
245
|
+
trial?: parameters["rowFilter.global_stats.trial"];
|
|
246
|
+
need_upgrade?: parameters["rowFilter.global_stats.need_upgrade"];
|
|
247
|
+
not_paying?: parameters["rowFilter.global_stats.not_paying"];
|
|
249
248
|
/** Filtering Columns */
|
|
250
249
|
select?: parameters["select"];
|
|
251
250
|
/** Ordering */
|
|
@@ -267,7 +266,7 @@ export interface paths {
|
|
|
267
266
|
responses: {
|
|
268
267
|
/** OK */
|
|
269
268
|
200: {
|
|
270
|
-
schema: definitions["
|
|
269
|
+
schema: definitions["global_stats"][];
|
|
271
270
|
};
|
|
272
271
|
/** Partial Content */
|
|
273
272
|
206: unknown;
|
|
@@ -276,8 +275,8 @@ export interface paths {
|
|
|
276
275
|
post: {
|
|
277
276
|
parameters: {
|
|
278
277
|
body: {
|
|
279
|
-
/**
|
|
280
|
-
|
|
278
|
+
/** global_stats */
|
|
279
|
+
global_stats?: definitions["global_stats"];
|
|
281
280
|
};
|
|
282
281
|
query: {
|
|
283
282
|
/** Filtering Columns */
|
|
@@ -296,14 +295,16 @@ export interface paths {
|
|
|
296
295
|
delete: {
|
|
297
296
|
parameters: {
|
|
298
297
|
query: {
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
298
|
+
created_at?: parameters["rowFilter.global_stats.created_at"];
|
|
299
|
+
date_id?: parameters["rowFilter.global_stats.date_id"];
|
|
300
|
+
apps?: parameters["rowFilter.global_stats.apps"];
|
|
301
|
+
updates?: parameters["rowFilter.global_stats.updates"];
|
|
302
|
+
stars?: parameters["rowFilter.global_stats.stars"];
|
|
303
|
+
users?: parameters["rowFilter.global_stats.users"];
|
|
304
|
+
paying?: parameters["rowFilter.global_stats.paying"];
|
|
305
|
+
trial?: parameters["rowFilter.global_stats.trial"];
|
|
306
|
+
need_upgrade?: parameters["rowFilter.global_stats.need_upgrade"];
|
|
307
|
+
not_paying?: parameters["rowFilter.global_stats.not_paying"];
|
|
307
308
|
};
|
|
308
309
|
header: {
|
|
309
310
|
/** Preference */
|
|
@@ -318,18 +319,20 @@ export interface paths {
|
|
|
318
319
|
patch: {
|
|
319
320
|
parameters: {
|
|
320
321
|
query: {
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
322
|
+
created_at?: parameters["rowFilter.global_stats.created_at"];
|
|
323
|
+
date_id?: parameters["rowFilter.global_stats.date_id"];
|
|
324
|
+
apps?: parameters["rowFilter.global_stats.apps"];
|
|
325
|
+
updates?: parameters["rowFilter.global_stats.updates"];
|
|
326
|
+
stars?: parameters["rowFilter.global_stats.stars"];
|
|
327
|
+
users?: parameters["rowFilter.global_stats.users"];
|
|
328
|
+
paying?: parameters["rowFilter.global_stats.paying"];
|
|
329
|
+
trial?: parameters["rowFilter.global_stats.trial"];
|
|
330
|
+
need_upgrade?: parameters["rowFilter.global_stats.need_upgrade"];
|
|
331
|
+
not_paying?: parameters["rowFilter.global_stats.not_paying"];
|
|
329
332
|
};
|
|
330
333
|
body: {
|
|
331
|
-
/**
|
|
332
|
-
|
|
334
|
+
/** global_stats */
|
|
335
|
+
global_stats?: definitions["global_stats"];
|
|
333
336
|
};
|
|
334
337
|
header: {
|
|
335
338
|
/** Preference */
|
|
@@ -342,20 +345,34 @@ export interface paths {
|
|
|
342
345
|
};
|
|
343
346
|
};
|
|
344
347
|
};
|
|
345
|
-
"/
|
|
348
|
+
"/plans": {
|
|
346
349
|
get: {
|
|
347
350
|
parameters: {
|
|
348
351
|
query: {
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
352
|
+
created_at?: parameters["rowFilter.plans.created_at"];
|
|
353
|
+
updated_at?: parameters["rowFilter.plans.updated_at"];
|
|
354
|
+
name?: parameters["rowFilter.plans.name"];
|
|
355
|
+
description?: parameters["rowFilter.plans.description"];
|
|
356
|
+
price_m?: parameters["rowFilter.plans.price_m"];
|
|
357
|
+
price_y?: parameters["rowFilter.plans.price_y"];
|
|
358
|
+
stripe_id?: parameters["rowFilter.plans.stripe_id"];
|
|
359
|
+
app?: parameters["rowFilter.plans.app"];
|
|
360
|
+
channel?: parameters["rowFilter.plans.channel"];
|
|
361
|
+
update?: parameters["rowFilter.plans.update"];
|
|
362
|
+
version?: parameters["rowFilter.plans.version"];
|
|
363
|
+
shared?: parameters["rowFilter.plans.shared"];
|
|
364
|
+
abtest?: parameters["rowFilter.plans.abtest"];
|
|
365
|
+
progressive_deploy?: parameters["rowFilter.plans.progressive_deploy"];
|
|
366
|
+
id?: parameters["rowFilter.plans.id"];
|
|
367
|
+
price_m_id?: parameters["rowFilter.plans.price_m_id"];
|
|
368
|
+
price_y_id?: parameters["rowFilter.plans.price_y_id"];
|
|
369
|
+
storage?: parameters["rowFilter.plans.storage"];
|
|
370
|
+
bandwidth?: parameters["rowFilter.plans.bandwidth"];
|
|
371
|
+
mau?: parameters["rowFilter.plans.mau"];
|
|
372
|
+
market_desc?: parameters["rowFilter.plans.market_desc"];
|
|
373
|
+
storage_unit?: parameters["rowFilter.plans.storage_unit"];
|
|
374
|
+
bandwidth_unit?: parameters["rowFilter.plans.bandwidth_unit"];
|
|
375
|
+
mau_unit?: parameters["rowFilter.plans.mau_unit"];
|
|
359
376
|
/** Filtering Columns */
|
|
360
377
|
select?: parameters["select"];
|
|
361
378
|
/** Ordering */
|
|
@@ -377,7 +394,7 @@ export interface paths {
|
|
|
377
394
|
responses: {
|
|
378
395
|
/** OK */
|
|
379
396
|
200: {
|
|
380
|
-
schema: definitions["
|
|
397
|
+
schema: definitions["plans"][];
|
|
381
398
|
};
|
|
382
399
|
/** Partial Content */
|
|
383
400
|
206: unknown;
|
|
@@ -386,8 +403,8 @@ export interface paths {
|
|
|
386
403
|
post: {
|
|
387
404
|
parameters: {
|
|
388
405
|
body: {
|
|
389
|
-
/**
|
|
390
|
-
|
|
406
|
+
/** plans */
|
|
407
|
+
plans?: definitions["plans"];
|
|
391
408
|
};
|
|
392
409
|
query: {
|
|
393
410
|
/** Filtering Columns */
|
|
@@ -406,16 +423,30 @@ export interface paths {
|
|
|
406
423
|
delete: {
|
|
407
424
|
parameters: {
|
|
408
425
|
query: {
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
426
|
+
created_at?: parameters["rowFilter.plans.created_at"];
|
|
427
|
+
updated_at?: parameters["rowFilter.plans.updated_at"];
|
|
428
|
+
name?: parameters["rowFilter.plans.name"];
|
|
429
|
+
description?: parameters["rowFilter.plans.description"];
|
|
430
|
+
price_m?: parameters["rowFilter.plans.price_m"];
|
|
431
|
+
price_y?: parameters["rowFilter.plans.price_y"];
|
|
432
|
+
stripe_id?: parameters["rowFilter.plans.stripe_id"];
|
|
433
|
+
app?: parameters["rowFilter.plans.app"];
|
|
434
|
+
channel?: parameters["rowFilter.plans.channel"];
|
|
435
|
+
update?: parameters["rowFilter.plans.update"];
|
|
436
|
+
version?: parameters["rowFilter.plans.version"];
|
|
437
|
+
shared?: parameters["rowFilter.plans.shared"];
|
|
438
|
+
abtest?: parameters["rowFilter.plans.abtest"];
|
|
439
|
+
progressive_deploy?: parameters["rowFilter.plans.progressive_deploy"];
|
|
440
|
+
id?: parameters["rowFilter.plans.id"];
|
|
441
|
+
price_m_id?: parameters["rowFilter.plans.price_m_id"];
|
|
442
|
+
price_y_id?: parameters["rowFilter.plans.price_y_id"];
|
|
443
|
+
storage?: parameters["rowFilter.plans.storage"];
|
|
444
|
+
bandwidth?: parameters["rowFilter.plans.bandwidth"];
|
|
445
|
+
mau?: parameters["rowFilter.plans.mau"];
|
|
446
|
+
market_desc?: parameters["rowFilter.plans.market_desc"];
|
|
447
|
+
storage_unit?: parameters["rowFilter.plans.storage_unit"];
|
|
448
|
+
bandwidth_unit?: parameters["rowFilter.plans.bandwidth_unit"];
|
|
449
|
+
mau_unit?: parameters["rowFilter.plans.mau_unit"];
|
|
419
450
|
};
|
|
420
451
|
header: {
|
|
421
452
|
/** Preference */
|
|
@@ -430,44 +461,59 @@ export interface paths {
|
|
|
430
461
|
patch: {
|
|
431
462
|
parameters: {
|
|
432
463
|
query: {
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
464
|
+
created_at?: parameters["rowFilter.plans.created_at"];
|
|
465
|
+
updated_at?: parameters["rowFilter.plans.updated_at"];
|
|
466
|
+
name?: parameters["rowFilter.plans.name"];
|
|
467
|
+
description?: parameters["rowFilter.plans.description"];
|
|
468
|
+
price_m?: parameters["rowFilter.plans.price_m"];
|
|
469
|
+
price_y?: parameters["rowFilter.plans.price_y"];
|
|
470
|
+
stripe_id?: parameters["rowFilter.plans.stripe_id"];
|
|
471
|
+
app?: parameters["rowFilter.plans.app"];
|
|
472
|
+
channel?: parameters["rowFilter.plans.channel"];
|
|
473
|
+
update?: parameters["rowFilter.plans.update"];
|
|
474
|
+
version?: parameters["rowFilter.plans.version"];
|
|
475
|
+
shared?: parameters["rowFilter.plans.shared"];
|
|
476
|
+
abtest?: parameters["rowFilter.plans.abtest"];
|
|
477
|
+
progressive_deploy?: parameters["rowFilter.plans.progressive_deploy"];
|
|
478
|
+
id?: parameters["rowFilter.plans.id"];
|
|
479
|
+
price_m_id?: parameters["rowFilter.plans.price_m_id"];
|
|
480
|
+
price_y_id?: parameters["rowFilter.plans.price_y_id"];
|
|
481
|
+
storage?: parameters["rowFilter.plans.storage"];
|
|
482
|
+
bandwidth?: parameters["rowFilter.plans.bandwidth"];
|
|
483
|
+
mau?: parameters["rowFilter.plans.mau"];
|
|
484
|
+
market_desc?: parameters["rowFilter.plans.market_desc"];
|
|
485
|
+
storage_unit?: parameters["rowFilter.plans.storage_unit"];
|
|
486
|
+
bandwidth_unit?: parameters["rowFilter.plans.bandwidth_unit"];
|
|
487
|
+
mau_unit?: parameters["rowFilter.plans.mau_unit"];
|
|
488
|
+
};
|
|
489
|
+
body: {
|
|
490
|
+
/** plans */
|
|
491
|
+
plans?: definitions["plans"];
|
|
492
|
+
};
|
|
493
|
+
header: {
|
|
494
|
+
/** Preference */
|
|
495
|
+
Prefer?: parameters["preferReturn"];
|
|
496
|
+
};
|
|
497
|
+
};
|
|
498
|
+
responses: {
|
|
499
|
+
/** No Content */
|
|
500
|
+
204: never;
|
|
501
|
+
};
|
|
502
|
+
};
|
|
503
|
+
};
|
|
504
|
+
"/stripe_info": {
|
|
460
505
|
get: {
|
|
461
506
|
parameters: {
|
|
462
507
|
query: {
|
|
463
|
-
created_at?: parameters["rowFilter.
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
508
|
+
created_at?: parameters["rowFilter.stripe_info.created_at"];
|
|
509
|
+
updated_at?: parameters["rowFilter.stripe_info.updated_at"];
|
|
510
|
+
subscription_id?: parameters["rowFilter.stripe_info.subscription_id"];
|
|
511
|
+
customer_id?: parameters["rowFilter.stripe_info.customer_id"];
|
|
512
|
+
status?: parameters["rowFilter.stripe_info.status"];
|
|
513
|
+
product_id?: parameters["rowFilter.stripe_info.product_id"];
|
|
514
|
+
trial_at?: parameters["rowFilter.stripe_info.trial_at"];
|
|
515
|
+
price_id?: parameters["rowFilter.stripe_info.price_id"];
|
|
516
|
+
is_good_plan?: parameters["rowFilter.stripe_info.is_good_plan"];
|
|
471
517
|
/** Filtering Columns */
|
|
472
518
|
select?: parameters["select"];
|
|
473
519
|
/** Ordering */
|
|
@@ -489,7 +535,7 @@ export interface paths {
|
|
|
489
535
|
responses: {
|
|
490
536
|
/** OK */
|
|
491
537
|
200: {
|
|
492
|
-
schema: definitions["
|
|
538
|
+
schema: definitions["stripe_info"][];
|
|
493
539
|
};
|
|
494
540
|
/** Partial Content */
|
|
495
541
|
206: unknown;
|
|
@@ -498,8 +544,8 @@ export interface paths {
|
|
|
498
544
|
post: {
|
|
499
545
|
parameters: {
|
|
500
546
|
body: {
|
|
501
|
-
/**
|
|
502
|
-
|
|
547
|
+
/** stripe_info */
|
|
548
|
+
stripe_info?: definitions["stripe_info"];
|
|
503
549
|
};
|
|
504
550
|
query: {
|
|
505
551
|
/** Filtering Columns */
|
|
@@ -518,14 +564,15 @@ export interface paths {
|
|
|
518
564
|
delete: {
|
|
519
565
|
parameters: {
|
|
520
566
|
query: {
|
|
521
|
-
created_at?: parameters["rowFilter.
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
567
|
+
created_at?: parameters["rowFilter.stripe_info.created_at"];
|
|
568
|
+
updated_at?: parameters["rowFilter.stripe_info.updated_at"];
|
|
569
|
+
subscription_id?: parameters["rowFilter.stripe_info.subscription_id"];
|
|
570
|
+
customer_id?: parameters["rowFilter.stripe_info.customer_id"];
|
|
571
|
+
status?: parameters["rowFilter.stripe_info.status"];
|
|
572
|
+
product_id?: parameters["rowFilter.stripe_info.product_id"];
|
|
573
|
+
trial_at?: parameters["rowFilter.stripe_info.trial_at"];
|
|
574
|
+
price_id?: parameters["rowFilter.stripe_info.price_id"];
|
|
575
|
+
is_good_plan?: parameters["rowFilter.stripe_info.is_good_plan"];
|
|
529
576
|
};
|
|
530
577
|
header: {
|
|
531
578
|
/** Preference */
|
|
@@ -540,18 +587,19 @@ export interface paths {
|
|
|
540
587
|
patch: {
|
|
541
588
|
parameters: {
|
|
542
589
|
query: {
|
|
543
|
-
created_at?: parameters["rowFilter.
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
590
|
+
created_at?: parameters["rowFilter.stripe_info.created_at"];
|
|
591
|
+
updated_at?: parameters["rowFilter.stripe_info.updated_at"];
|
|
592
|
+
subscription_id?: parameters["rowFilter.stripe_info.subscription_id"];
|
|
593
|
+
customer_id?: parameters["rowFilter.stripe_info.customer_id"];
|
|
594
|
+
status?: parameters["rowFilter.stripe_info.status"];
|
|
595
|
+
product_id?: parameters["rowFilter.stripe_info.product_id"];
|
|
596
|
+
trial_at?: parameters["rowFilter.stripe_info.trial_at"];
|
|
597
|
+
price_id?: parameters["rowFilter.stripe_info.price_id"];
|
|
598
|
+
is_good_plan?: parameters["rowFilter.stripe_info.is_good_plan"];
|
|
551
599
|
};
|
|
552
600
|
body: {
|
|
553
|
-
/**
|
|
554
|
-
|
|
601
|
+
/** stripe_info */
|
|
602
|
+
stripe_info?: definitions["stripe_info"];
|
|
555
603
|
};
|
|
556
604
|
header: {
|
|
557
605
|
/** Preference */
|
|
@@ -564,16 +612,20 @@ export interface paths {
|
|
|
564
612
|
};
|
|
565
613
|
};
|
|
566
614
|
};
|
|
567
|
-
"/
|
|
615
|
+
"/devices_onprem": {
|
|
568
616
|
get: {
|
|
569
617
|
parameters: {
|
|
570
618
|
query: {
|
|
571
|
-
created_at?: parameters["rowFilter.
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
619
|
+
created_at?: parameters["rowFilter.devices_onprem.created_at"];
|
|
620
|
+
updated_at?: parameters["rowFilter.devices_onprem.updated_at"];
|
|
621
|
+
platform?: parameters["rowFilter.devices_onprem.platform"];
|
|
622
|
+
plugin_version?: parameters["rowFilter.devices_onprem.plugin_version"];
|
|
623
|
+
version?: parameters["rowFilter.devices_onprem.version"];
|
|
624
|
+
app_id?: parameters["rowFilter.devices_onprem.app_id"];
|
|
625
|
+
device_id?: parameters["rowFilter.devices_onprem.device_id"];
|
|
626
|
+
os_version?: parameters["rowFilter.devices_onprem.os_version"];
|
|
627
|
+
id?: parameters["rowFilter.devices_onprem.id"];
|
|
628
|
+
version_build?: parameters["rowFilter.devices_onprem.version_build"];
|
|
577
629
|
/** Filtering Columns */
|
|
578
630
|
select?: parameters["select"];
|
|
579
631
|
/** Ordering */
|
|
@@ -595,7 +647,7 @@ export interface paths {
|
|
|
595
647
|
responses: {
|
|
596
648
|
/** OK */
|
|
597
649
|
200: {
|
|
598
|
-
schema: definitions["
|
|
650
|
+
schema: definitions["devices_onprem"][];
|
|
599
651
|
};
|
|
600
652
|
/** Partial Content */
|
|
601
653
|
206: unknown;
|
|
@@ -604,8 +656,8 @@ export interface paths {
|
|
|
604
656
|
post: {
|
|
605
657
|
parameters: {
|
|
606
658
|
body: {
|
|
607
|
-
/**
|
|
608
|
-
|
|
659
|
+
/** devices_onprem */
|
|
660
|
+
devices_onprem?: definitions["devices_onprem"];
|
|
609
661
|
};
|
|
610
662
|
query: {
|
|
611
663
|
/** Filtering Columns */
|
|
@@ -624,12 +676,16 @@ export interface paths {
|
|
|
624
676
|
delete: {
|
|
625
677
|
parameters: {
|
|
626
678
|
query: {
|
|
627
|
-
created_at?: parameters["rowFilter.
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
679
|
+
created_at?: parameters["rowFilter.devices_onprem.created_at"];
|
|
680
|
+
updated_at?: parameters["rowFilter.devices_onprem.updated_at"];
|
|
681
|
+
platform?: parameters["rowFilter.devices_onprem.platform"];
|
|
682
|
+
plugin_version?: parameters["rowFilter.devices_onprem.plugin_version"];
|
|
683
|
+
version?: parameters["rowFilter.devices_onprem.version"];
|
|
684
|
+
app_id?: parameters["rowFilter.devices_onprem.app_id"];
|
|
685
|
+
device_id?: parameters["rowFilter.devices_onprem.device_id"];
|
|
686
|
+
os_version?: parameters["rowFilter.devices_onprem.os_version"];
|
|
687
|
+
id?: parameters["rowFilter.devices_onprem.id"];
|
|
688
|
+
version_build?: parameters["rowFilter.devices_onprem.version_build"];
|
|
633
689
|
};
|
|
634
690
|
header: {
|
|
635
691
|
/** Preference */
|
|
@@ -644,16 +700,20 @@ export interface paths {
|
|
|
644
700
|
patch: {
|
|
645
701
|
parameters: {
|
|
646
702
|
query: {
|
|
647
|
-
created_at?: parameters["rowFilter.
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
703
|
+
created_at?: parameters["rowFilter.devices_onprem.created_at"];
|
|
704
|
+
updated_at?: parameters["rowFilter.devices_onprem.updated_at"];
|
|
705
|
+
platform?: parameters["rowFilter.devices_onprem.platform"];
|
|
706
|
+
plugin_version?: parameters["rowFilter.devices_onprem.plugin_version"];
|
|
707
|
+
version?: parameters["rowFilter.devices_onprem.version"];
|
|
708
|
+
app_id?: parameters["rowFilter.devices_onprem.app_id"];
|
|
709
|
+
device_id?: parameters["rowFilter.devices_onprem.device_id"];
|
|
710
|
+
os_version?: parameters["rowFilter.devices_onprem.os_version"];
|
|
711
|
+
id?: parameters["rowFilter.devices_onprem.id"];
|
|
712
|
+
version_build?: parameters["rowFilter.devices_onprem.version_build"];
|
|
653
713
|
};
|
|
654
714
|
body: {
|
|
655
|
-
/**
|
|
656
|
-
|
|
715
|
+
/** devices_onprem */
|
|
716
|
+
devices_onprem?: definitions["devices_onprem"];
|
|
657
717
|
};
|
|
658
718
|
header: {
|
|
659
719
|
/** Preference */
|
|
@@ -666,17 +726,19 @@ export interface paths {
|
|
|
666
726
|
};
|
|
667
727
|
};
|
|
668
728
|
};
|
|
669
|
-
"/
|
|
729
|
+
"/stats_onprem": {
|
|
670
730
|
get: {
|
|
671
731
|
parameters: {
|
|
672
732
|
query: {
|
|
673
|
-
id?: parameters["rowFilter.
|
|
674
|
-
created_at?: parameters["rowFilter.
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
733
|
+
id?: parameters["rowFilter.stats_onprem.id"];
|
|
734
|
+
created_at?: parameters["rowFilter.stats_onprem.created_at"];
|
|
735
|
+
platform?: parameters["rowFilter.stats_onprem.platform"];
|
|
736
|
+
action?: parameters["rowFilter.stats_onprem.action"];
|
|
737
|
+
device_id?: parameters["rowFilter.stats_onprem.device_id"];
|
|
738
|
+
version_build?: parameters["rowFilter.stats_onprem.version_build"];
|
|
739
|
+
app_id?: parameters["rowFilter.stats_onprem.app_id"];
|
|
740
|
+
updated_at?: parameters["rowFilter.stats_onprem.updated_at"];
|
|
741
|
+
version?: parameters["rowFilter.stats_onprem.version"];
|
|
680
742
|
/** Filtering Columns */
|
|
681
743
|
select?: parameters["select"];
|
|
682
744
|
/** Ordering */
|
|
@@ -698,7 +760,7 @@ export interface paths {
|
|
|
698
760
|
responses: {
|
|
699
761
|
/** OK */
|
|
700
762
|
200: {
|
|
701
|
-
schema: definitions["
|
|
763
|
+
schema: definitions["stats_onprem"][];
|
|
702
764
|
};
|
|
703
765
|
/** Partial Content */
|
|
704
766
|
206: unknown;
|
|
@@ -707,8 +769,8 @@ export interface paths {
|
|
|
707
769
|
post: {
|
|
708
770
|
parameters: {
|
|
709
771
|
body: {
|
|
710
|
-
/**
|
|
711
|
-
|
|
772
|
+
/** stats_onprem */
|
|
773
|
+
stats_onprem?: definitions["stats_onprem"];
|
|
712
774
|
};
|
|
713
775
|
query: {
|
|
714
776
|
/** Filtering Columns */
|
|
@@ -727,13 +789,15 @@ export interface paths {
|
|
|
727
789
|
delete: {
|
|
728
790
|
parameters: {
|
|
729
791
|
query: {
|
|
730
|
-
id?: parameters["rowFilter.
|
|
731
|
-
created_at?: parameters["rowFilter.
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
792
|
+
id?: parameters["rowFilter.stats_onprem.id"];
|
|
793
|
+
created_at?: parameters["rowFilter.stats_onprem.created_at"];
|
|
794
|
+
platform?: parameters["rowFilter.stats_onprem.platform"];
|
|
795
|
+
action?: parameters["rowFilter.stats_onprem.action"];
|
|
796
|
+
device_id?: parameters["rowFilter.stats_onprem.device_id"];
|
|
797
|
+
version_build?: parameters["rowFilter.stats_onprem.version_build"];
|
|
798
|
+
app_id?: parameters["rowFilter.stats_onprem.app_id"];
|
|
799
|
+
updated_at?: parameters["rowFilter.stats_onprem.updated_at"];
|
|
800
|
+
version?: parameters["rowFilter.stats_onprem.version"];
|
|
737
801
|
};
|
|
738
802
|
header: {
|
|
739
803
|
/** Preference */
|
|
@@ -748,17 +812,19 @@ export interface paths {
|
|
|
748
812
|
patch: {
|
|
749
813
|
parameters: {
|
|
750
814
|
query: {
|
|
751
|
-
id?: parameters["rowFilter.
|
|
752
|
-
created_at?: parameters["rowFilter.
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
815
|
+
id?: parameters["rowFilter.stats_onprem.id"];
|
|
816
|
+
created_at?: parameters["rowFilter.stats_onprem.created_at"];
|
|
817
|
+
platform?: parameters["rowFilter.stats_onprem.platform"];
|
|
818
|
+
action?: parameters["rowFilter.stats_onprem.action"];
|
|
819
|
+
device_id?: parameters["rowFilter.stats_onprem.device_id"];
|
|
820
|
+
version_build?: parameters["rowFilter.stats_onprem.version_build"];
|
|
821
|
+
app_id?: parameters["rowFilter.stats_onprem.app_id"];
|
|
822
|
+
updated_at?: parameters["rowFilter.stats_onprem.updated_at"];
|
|
823
|
+
version?: parameters["rowFilter.stats_onprem.version"];
|
|
758
824
|
};
|
|
759
825
|
body: {
|
|
760
|
-
/**
|
|
761
|
-
|
|
826
|
+
/** stats_onprem */
|
|
827
|
+
stats_onprem?: definitions["stats_onprem"];
|
|
762
828
|
};
|
|
763
829
|
header: {
|
|
764
830
|
/** Preference */
|
|
@@ -771,21 +837,16 @@ export interface paths {
|
|
|
771
837
|
};
|
|
772
838
|
};
|
|
773
839
|
};
|
|
774
|
-
"/
|
|
840
|
+
"/channel_devices": {
|
|
775
841
|
get: {
|
|
776
842
|
parameters: {
|
|
777
843
|
query: {
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
updated_at?: parameters["rowFilter.channels.updated_at"];
|
|
785
|
-
public?: parameters["rowFilter.channels.public"];
|
|
786
|
-
disableAutoUpdateUnderNative?: parameters["rowFilter.channels.disableAutoUpdateUnderNative"];
|
|
787
|
-
disableAutoUpdateToMajor?: parameters["rowFilter.channels.disableAutoUpdateToMajor"];
|
|
788
|
-
beta?: parameters["rowFilter.channels.beta"];
|
|
844
|
+
created_at?: parameters["rowFilter.channel_devices.created_at"];
|
|
845
|
+
channel_id?: parameters["rowFilter.channel_devices.channel_id"];
|
|
846
|
+
app_id?: parameters["rowFilter.channel_devices.app_id"];
|
|
847
|
+
updated_at?: parameters["rowFilter.channel_devices.updated_at"];
|
|
848
|
+
created_by?: parameters["rowFilter.channel_devices.created_by"];
|
|
849
|
+
device_id?: parameters["rowFilter.channel_devices.device_id"];
|
|
789
850
|
/** Filtering Columns */
|
|
790
851
|
select?: parameters["select"];
|
|
791
852
|
/** Ordering */
|
|
@@ -807,7 +868,7 @@ export interface paths {
|
|
|
807
868
|
responses: {
|
|
808
869
|
/** OK */
|
|
809
870
|
200: {
|
|
810
|
-
schema: definitions["
|
|
871
|
+
schema: definitions["channel_devices"][];
|
|
811
872
|
};
|
|
812
873
|
/** Partial Content */
|
|
813
874
|
206: unknown;
|
|
@@ -816,8 +877,8 @@ export interface paths {
|
|
|
816
877
|
post: {
|
|
817
878
|
parameters: {
|
|
818
879
|
body: {
|
|
819
|
-
/**
|
|
820
|
-
|
|
880
|
+
/** channel_devices */
|
|
881
|
+
channel_devices?: definitions["channel_devices"];
|
|
821
882
|
};
|
|
822
883
|
query: {
|
|
823
884
|
/** Filtering Columns */
|
|
@@ -836,17 +897,12 @@ export interface paths {
|
|
|
836
897
|
delete: {
|
|
837
898
|
parameters: {
|
|
838
899
|
query: {
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
updated_at?: parameters["rowFilter.channels.updated_at"];
|
|
846
|
-
public?: parameters["rowFilter.channels.public"];
|
|
847
|
-
disableAutoUpdateUnderNative?: parameters["rowFilter.channels.disableAutoUpdateUnderNative"];
|
|
848
|
-
disableAutoUpdateToMajor?: parameters["rowFilter.channels.disableAutoUpdateToMajor"];
|
|
849
|
-
beta?: parameters["rowFilter.channels.beta"];
|
|
900
|
+
created_at?: parameters["rowFilter.channel_devices.created_at"];
|
|
901
|
+
channel_id?: parameters["rowFilter.channel_devices.channel_id"];
|
|
902
|
+
app_id?: parameters["rowFilter.channel_devices.app_id"];
|
|
903
|
+
updated_at?: parameters["rowFilter.channel_devices.updated_at"];
|
|
904
|
+
created_by?: parameters["rowFilter.channel_devices.created_by"];
|
|
905
|
+
device_id?: parameters["rowFilter.channel_devices.device_id"];
|
|
850
906
|
};
|
|
851
907
|
header: {
|
|
852
908
|
/** Preference */
|
|
@@ -861,21 +917,16 @@ export interface paths {
|
|
|
861
917
|
patch: {
|
|
862
918
|
parameters: {
|
|
863
919
|
query: {
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
updated_at?: parameters["rowFilter.channels.updated_at"];
|
|
871
|
-
public?: parameters["rowFilter.channels.public"];
|
|
872
|
-
disableAutoUpdateUnderNative?: parameters["rowFilter.channels.disableAutoUpdateUnderNative"];
|
|
873
|
-
disableAutoUpdateToMajor?: parameters["rowFilter.channels.disableAutoUpdateToMajor"];
|
|
874
|
-
beta?: parameters["rowFilter.channels.beta"];
|
|
920
|
+
created_at?: parameters["rowFilter.channel_devices.created_at"];
|
|
921
|
+
channel_id?: parameters["rowFilter.channel_devices.channel_id"];
|
|
922
|
+
app_id?: parameters["rowFilter.channel_devices.app_id"];
|
|
923
|
+
updated_at?: parameters["rowFilter.channel_devices.updated_at"];
|
|
924
|
+
created_by?: parameters["rowFilter.channel_devices.created_by"];
|
|
925
|
+
device_id?: parameters["rowFilter.channel_devices.device_id"];
|
|
875
926
|
};
|
|
876
927
|
body: {
|
|
877
|
-
/**
|
|
878
|
-
|
|
928
|
+
/** channel_devices */
|
|
929
|
+
channel_devices?: definitions["channel_devices"];
|
|
879
930
|
};
|
|
880
931
|
header: {
|
|
881
932
|
/** Preference */
|
|
@@ -888,13 +939,18 @@ export interface paths {
|
|
|
888
939
|
};
|
|
889
940
|
};
|
|
890
941
|
};
|
|
891
|
-
"/
|
|
942
|
+
"/apps": {
|
|
892
943
|
get: {
|
|
893
944
|
parameters: {
|
|
894
945
|
query: {
|
|
895
|
-
created_at?: parameters["rowFilter.
|
|
896
|
-
|
|
897
|
-
|
|
946
|
+
created_at?: parameters["rowFilter.apps.created_at"];
|
|
947
|
+
app_id?: parameters["rowFilter.apps.app_id"];
|
|
948
|
+
icon_url?: parameters["rowFilter.apps.icon_url"];
|
|
949
|
+
user_id?: parameters["rowFilter.apps.user_id"];
|
|
950
|
+
name?: parameters["rowFilter.apps.name"];
|
|
951
|
+
last_version?: parameters["rowFilter.apps.last_version"];
|
|
952
|
+
updated_at?: parameters["rowFilter.apps.updated_at"];
|
|
953
|
+
id?: parameters["rowFilter.apps.id"];
|
|
898
954
|
/** Filtering Columns */
|
|
899
955
|
select?: parameters["select"];
|
|
900
956
|
/** Ordering */
|
|
@@ -916,7 +972,7 @@ export interface paths {
|
|
|
916
972
|
responses: {
|
|
917
973
|
/** OK */
|
|
918
974
|
200: {
|
|
919
|
-
schema: definitions["
|
|
975
|
+
schema: definitions["apps"][];
|
|
920
976
|
};
|
|
921
977
|
/** Partial Content */
|
|
922
978
|
206: unknown;
|
|
@@ -925,8 +981,8 @@ export interface paths {
|
|
|
925
981
|
post: {
|
|
926
982
|
parameters: {
|
|
927
983
|
body: {
|
|
928
|
-
/**
|
|
929
|
-
|
|
984
|
+
/** apps */
|
|
985
|
+
apps?: definitions["apps"];
|
|
930
986
|
};
|
|
931
987
|
query: {
|
|
932
988
|
/** Filtering Columns */
|
|
@@ -945,9 +1001,14 @@ export interface paths {
|
|
|
945
1001
|
delete: {
|
|
946
1002
|
parameters: {
|
|
947
1003
|
query: {
|
|
948
|
-
created_at?: parameters["rowFilter.
|
|
949
|
-
|
|
950
|
-
|
|
1004
|
+
created_at?: parameters["rowFilter.apps.created_at"];
|
|
1005
|
+
app_id?: parameters["rowFilter.apps.app_id"];
|
|
1006
|
+
icon_url?: parameters["rowFilter.apps.icon_url"];
|
|
1007
|
+
user_id?: parameters["rowFilter.apps.user_id"];
|
|
1008
|
+
name?: parameters["rowFilter.apps.name"];
|
|
1009
|
+
last_version?: parameters["rowFilter.apps.last_version"];
|
|
1010
|
+
updated_at?: parameters["rowFilter.apps.updated_at"];
|
|
1011
|
+
id?: parameters["rowFilter.apps.id"];
|
|
951
1012
|
};
|
|
952
1013
|
header: {
|
|
953
1014
|
/** Preference */
|
|
@@ -962,13 +1023,18 @@ export interface paths {
|
|
|
962
1023
|
patch: {
|
|
963
1024
|
parameters: {
|
|
964
1025
|
query: {
|
|
965
|
-
created_at?: parameters["rowFilter.
|
|
966
|
-
|
|
967
|
-
|
|
1026
|
+
created_at?: parameters["rowFilter.apps.created_at"];
|
|
1027
|
+
app_id?: parameters["rowFilter.apps.app_id"];
|
|
1028
|
+
icon_url?: parameters["rowFilter.apps.icon_url"];
|
|
1029
|
+
user_id?: parameters["rowFilter.apps.user_id"];
|
|
1030
|
+
name?: parameters["rowFilter.apps.name"];
|
|
1031
|
+
last_version?: parameters["rowFilter.apps.last_version"];
|
|
1032
|
+
updated_at?: parameters["rowFilter.apps.updated_at"];
|
|
1033
|
+
id?: parameters["rowFilter.apps.id"];
|
|
968
1034
|
};
|
|
969
1035
|
body: {
|
|
970
|
-
/**
|
|
971
|
-
|
|
1036
|
+
/** apps */
|
|
1037
|
+
apps?: definitions["apps"];
|
|
972
1038
|
};
|
|
973
1039
|
header: {
|
|
974
1040
|
/** Preference */
|
|
@@ -981,18 +1047,16 @@ export interface paths {
|
|
|
981
1047
|
};
|
|
982
1048
|
};
|
|
983
1049
|
};
|
|
984
|
-
"/
|
|
1050
|
+
"/apikeys": {
|
|
985
1051
|
get: {
|
|
986
1052
|
parameters: {
|
|
987
1053
|
query: {
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
plugin_version?: parameters["rowFilter.devices.plugin_version"];
|
|
995
|
-
os_version?: parameters["rowFilter.devices.os_version"];
|
|
1054
|
+
id?: parameters["rowFilter.apikeys.id"];
|
|
1055
|
+
created_at?: parameters["rowFilter.apikeys.created_at"];
|
|
1056
|
+
user_id?: parameters["rowFilter.apikeys.user_id"];
|
|
1057
|
+
key?: parameters["rowFilter.apikeys.key"];
|
|
1058
|
+
mode?: parameters["rowFilter.apikeys.mode"];
|
|
1059
|
+
updated_at?: parameters["rowFilter.apikeys.updated_at"];
|
|
996
1060
|
/** Filtering Columns */
|
|
997
1061
|
select?: parameters["select"];
|
|
998
1062
|
/** Ordering */
|
|
@@ -1014,7 +1078,7 @@ export interface paths {
|
|
|
1014
1078
|
responses: {
|
|
1015
1079
|
/** OK */
|
|
1016
1080
|
200: {
|
|
1017
|
-
schema: definitions["
|
|
1081
|
+
schema: definitions["apikeys"][];
|
|
1018
1082
|
};
|
|
1019
1083
|
/** Partial Content */
|
|
1020
1084
|
206: unknown;
|
|
@@ -1023,8 +1087,8 @@ export interface paths {
|
|
|
1023
1087
|
post: {
|
|
1024
1088
|
parameters: {
|
|
1025
1089
|
body: {
|
|
1026
|
-
/**
|
|
1027
|
-
|
|
1090
|
+
/** apikeys */
|
|
1091
|
+
apikeys?: definitions["apikeys"];
|
|
1028
1092
|
};
|
|
1029
1093
|
query: {
|
|
1030
1094
|
/** Filtering Columns */
|
|
@@ -1043,14 +1107,12 @@ export interface paths {
|
|
|
1043
1107
|
delete: {
|
|
1044
1108
|
parameters: {
|
|
1045
1109
|
query: {
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
plugin_version?: parameters["rowFilter.devices.plugin_version"];
|
|
1053
|
-
os_version?: parameters["rowFilter.devices.os_version"];
|
|
1110
|
+
id?: parameters["rowFilter.apikeys.id"];
|
|
1111
|
+
created_at?: parameters["rowFilter.apikeys.created_at"];
|
|
1112
|
+
user_id?: parameters["rowFilter.apikeys.user_id"];
|
|
1113
|
+
key?: parameters["rowFilter.apikeys.key"];
|
|
1114
|
+
mode?: parameters["rowFilter.apikeys.mode"];
|
|
1115
|
+
updated_at?: parameters["rowFilter.apikeys.updated_at"];
|
|
1054
1116
|
};
|
|
1055
1117
|
header: {
|
|
1056
1118
|
/** Preference */
|
|
@@ -1065,18 +1127,16 @@ export interface paths {
|
|
|
1065
1127
|
patch: {
|
|
1066
1128
|
parameters: {
|
|
1067
1129
|
query: {
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
plugin_version?: parameters["rowFilter.devices.plugin_version"];
|
|
1075
|
-
os_version?: parameters["rowFilter.devices.os_version"];
|
|
1130
|
+
id?: parameters["rowFilter.apikeys.id"];
|
|
1131
|
+
created_at?: parameters["rowFilter.apikeys.created_at"];
|
|
1132
|
+
user_id?: parameters["rowFilter.apikeys.user_id"];
|
|
1133
|
+
key?: parameters["rowFilter.apikeys.key"];
|
|
1134
|
+
mode?: parameters["rowFilter.apikeys.mode"];
|
|
1135
|
+
updated_at?: parameters["rowFilter.apikeys.updated_at"];
|
|
1076
1136
|
};
|
|
1077
1137
|
body: {
|
|
1078
|
-
/**
|
|
1079
|
-
|
|
1138
|
+
/** apikeys */
|
|
1139
|
+
apikeys?: definitions["apikeys"];
|
|
1080
1140
|
};
|
|
1081
1141
|
header: {
|
|
1082
1142
|
/** Preference */
|
|
@@ -1089,19 +1149,16 @@ export interface paths {
|
|
|
1089
1149
|
};
|
|
1090
1150
|
};
|
|
1091
1151
|
};
|
|
1092
|
-
"/
|
|
1152
|
+
"/pay_as_you_go": {
|
|
1093
1153
|
get: {
|
|
1094
1154
|
parameters: {
|
|
1095
1155
|
query: {
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
device_id?: parameters["rowFilter.devices_onprem.device_id"];
|
|
1103
|
-
os_version?: parameters["rowFilter.devices_onprem.os_version"];
|
|
1104
|
-
id?: parameters["rowFilter.devices_onprem.id"];
|
|
1156
|
+
id?: parameters["rowFilter.pay_as_you_go.id"];
|
|
1157
|
+
created_at?: parameters["rowFilter.pay_as_you_go.created_at"];
|
|
1158
|
+
mau?: parameters["rowFilter.pay_as_you_go.mau"];
|
|
1159
|
+
storage?: parameters["rowFilter.pay_as_you_go.storage"];
|
|
1160
|
+
bandwidth?: parameters["rowFilter.pay_as_you_go.bandwidth"];
|
|
1161
|
+
type?: parameters["rowFilter.pay_as_you_go.type"];
|
|
1105
1162
|
/** Filtering Columns */
|
|
1106
1163
|
select?: parameters["select"];
|
|
1107
1164
|
/** Ordering */
|
|
@@ -1123,7 +1180,7 @@ export interface paths {
|
|
|
1123
1180
|
responses: {
|
|
1124
1181
|
/** OK */
|
|
1125
1182
|
200: {
|
|
1126
|
-
schema: definitions["
|
|
1183
|
+
schema: definitions["pay_as_you_go"][];
|
|
1127
1184
|
};
|
|
1128
1185
|
/** Partial Content */
|
|
1129
1186
|
206: unknown;
|
|
@@ -1132,8 +1189,8 @@ export interface paths {
|
|
|
1132
1189
|
post: {
|
|
1133
1190
|
parameters: {
|
|
1134
1191
|
body: {
|
|
1135
|
-
/**
|
|
1136
|
-
|
|
1192
|
+
/** pay_as_you_go */
|
|
1193
|
+
pay_as_you_go?: definitions["pay_as_you_go"];
|
|
1137
1194
|
};
|
|
1138
1195
|
query: {
|
|
1139
1196
|
/** Filtering Columns */
|
|
@@ -1152,15 +1209,12 @@ export interface paths {
|
|
|
1152
1209
|
delete: {
|
|
1153
1210
|
parameters: {
|
|
1154
1211
|
query: {
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
device_id?: parameters["rowFilter.devices_onprem.device_id"];
|
|
1162
|
-
os_version?: parameters["rowFilter.devices_onprem.os_version"];
|
|
1163
|
-
id?: parameters["rowFilter.devices_onprem.id"];
|
|
1212
|
+
id?: parameters["rowFilter.pay_as_you_go.id"];
|
|
1213
|
+
created_at?: parameters["rowFilter.pay_as_you_go.created_at"];
|
|
1214
|
+
mau?: parameters["rowFilter.pay_as_you_go.mau"];
|
|
1215
|
+
storage?: parameters["rowFilter.pay_as_you_go.storage"];
|
|
1216
|
+
bandwidth?: parameters["rowFilter.pay_as_you_go.bandwidth"];
|
|
1217
|
+
type?: parameters["rowFilter.pay_as_you_go.type"];
|
|
1164
1218
|
};
|
|
1165
1219
|
header: {
|
|
1166
1220
|
/** Preference */
|
|
@@ -1175,19 +1229,16 @@ export interface paths {
|
|
|
1175
1229
|
patch: {
|
|
1176
1230
|
parameters: {
|
|
1177
1231
|
query: {
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
device_id?: parameters["rowFilter.devices_onprem.device_id"];
|
|
1185
|
-
os_version?: parameters["rowFilter.devices_onprem.os_version"];
|
|
1186
|
-
id?: parameters["rowFilter.devices_onprem.id"];
|
|
1232
|
+
id?: parameters["rowFilter.pay_as_you_go.id"];
|
|
1233
|
+
created_at?: parameters["rowFilter.pay_as_you_go.created_at"];
|
|
1234
|
+
mau?: parameters["rowFilter.pay_as_you_go.mau"];
|
|
1235
|
+
storage?: parameters["rowFilter.pay_as_you_go.storage"];
|
|
1236
|
+
bandwidth?: parameters["rowFilter.pay_as_you_go.bandwidth"];
|
|
1237
|
+
type?: parameters["rowFilter.pay_as_you_go.type"];
|
|
1187
1238
|
};
|
|
1188
1239
|
body: {
|
|
1189
|
-
/**
|
|
1190
|
-
|
|
1240
|
+
/** pay_as_you_go */
|
|
1241
|
+
pay_as_you_go?: definitions["pay_as_you_go"];
|
|
1191
1242
|
};
|
|
1192
1243
|
header: {
|
|
1193
1244
|
/** Preference */
|
|
@@ -1200,16 +1251,19 @@ export interface paths {
|
|
|
1200
1251
|
};
|
|
1201
1252
|
};
|
|
1202
1253
|
};
|
|
1203
|
-
"/
|
|
1254
|
+
"/stats": {
|
|
1204
1255
|
get: {
|
|
1205
1256
|
parameters: {
|
|
1206
1257
|
query: {
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1258
|
+
id?: parameters["rowFilter.stats.id"];
|
|
1259
|
+
created_at?: parameters["rowFilter.stats.created_at"];
|
|
1260
|
+
platform?: parameters["rowFilter.stats.platform"];
|
|
1261
|
+
action?: parameters["rowFilter.stats.action"];
|
|
1262
|
+
device_id?: parameters["rowFilter.stats.device_id"];
|
|
1263
|
+
version_build?: parameters["rowFilter.stats.version_build"];
|
|
1264
|
+
version?: parameters["rowFilter.stats.version"];
|
|
1265
|
+
app_id?: parameters["rowFilter.stats.app_id"];
|
|
1266
|
+
updated_at?: parameters["rowFilter.stats.updated_at"];
|
|
1213
1267
|
/** Filtering Columns */
|
|
1214
1268
|
select?: parameters["select"];
|
|
1215
1269
|
/** Ordering */
|
|
@@ -1231,7 +1285,7 @@ export interface paths {
|
|
|
1231
1285
|
responses: {
|
|
1232
1286
|
/** OK */
|
|
1233
1287
|
200: {
|
|
1234
|
-
schema: definitions["
|
|
1288
|
+
schema: definitions["stats"][];
|
|
1235
1289
|
};
|
|
1236
1290
|
/** Partial Content */
|
|
1237
1291
|
206: unknown;
|
|
@@ -1240,8 +1294,8 @@ export interface paths {
|
|
|
1240
1294
|
post: {
|
|
1241
1295
|
parameters: {
|
|
1242
1296
|
body: {
|
|
1243
|
-
/**
|
|
1244
|
-
|
|
1297
|
+
/** stats */
|
|
1298
|
+
stats?: definitions["stats"];
|
|
1245
1299
|
};
|
|
1246
1300
|
query: {
|
|
1247
1301
|
/** Filtering Columns */
|
|
@@ -1260,12 +1314,15 @@ export interface paths {
|
|
|
1260
1314
|
delete: {
|
|
1261
1315
|
parameters: {
|
|
1262
1316
|
query: {
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1317
|
+
id?: parameters["rowFilter.stats.id"];
|
|
1318
|
+
created_at?: parameters["rowFilter.stats.created_at"];
|
|
1319
|
+
platform?: parameters["rowFilter.stats.platform"];
|
|
1320
|
+
action?: parameters["rowFilter.stats.action"];
|
|
1321
|
+
device_id?: parameters["rowFilter.stats.device_id"];
|
|
1322
|
+
version_build?: parameters["rowFilter.stats.version_build"];
|
|
1323
|
+
version?: parameters["rowFilter.stats.version"];
|
|
1324
|
+
app_id?: parameters["rowFilter.stats.app_id"];
|
|
1325
|
+
updated_at?: parameters["rowFilter.stats.updated_at"];
|
|
1269
1326
|
};
|
|
1270
1327
|
header: {
|
|
1271
1328
|
/** Preference */
|
|
@@ -1280,16 +1337,19 @@ export interface paths {
|
|
|
1280
1337
|
patch: {
|
|
1281
1338
|
parameters: {
|
|
1282
1339
|
query: {
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1340
|
+
id?: parameters["rowFilter.stats.id"];
|
|
1341
|
+
created_at?: parameters["rowFilter.stats.created_at"];
|
|
1342
|
+
platform?: parameters["rowFilter.stats.platform"];
|
|
1343
|
+
action?: parameters["rowFilter.stats.action"];
|
|
1344
|
+
device_id?: parameters["rowFilter.stats.device_id"];
|
|
1345
|
+
version_build?: parameters["rowFilter.stats.version_build"];
|
|
1346
|
+
version?: parameters["rowFilter.stats.version"];
|
|
1347
|
+
app_id?: parameters["rowFilter.stats.app_id"];
|
|
1348
|
+
updated_at?: parameters["rowFilter.stats.updated_at"];
|
|
1289
1349
|
};
|
|
1290
1350
|
body: {
|
|
1291
|
-
/**
|
|
1292
|
-
|
|
1351
|
+
/** stats */
|
|
1352
|
+
stats?: definitions["stats"];
|
|
1293
1353
|
};
|
|
1294
1354
|
header: {
|
|
1295
1355
|
/** Preference */
|
|
@@ -1302,15 +1362,22 @@ export interface paths {
|
|
|
1302
1362
|
};
|
|
1303
1363
|
};
|
|
1304
1364
|
};
|
|
1305
|
-
"/
|
|
1365
|
+
"/users": {
|
|
1306
1366
|
get: {
|
|
1307
1367
|
parameters: {
|
|
1308
1368
|
query: {
|
|
1309
|
-
created_at?: parameters["rowFilter.
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1369
|
+
created_at?: parameters["rowFilter.users.created_at"];
|
|
1370
|
+
image_url?: parameters["rowFilter.users.image_url"];
|
|
1371
|
+
first_name?: parameters["rowFilter.users.first_name"];
|
|
1372
|
+
last_name?: parameters["rowFilter.users.last_name"];
|
|
1373
|
+
country?: parameters["rowFilter.users.country"];
|
|
1374
|
+
email?: parameters["rowFilter.users.email"];
|
|
1375
|
+
id?: parameters["rowFilter.users.id"];
|
|
1376
|
+
updated_at?: parameters["rowFilter.users.updated_at"];
|
|
1377
|
+
enableNotifications?: parameters["rowFilter.users.enableNotifications"];
|
|
1378
|
+
optForNewsletters?: parameters["rowFilter.users.optForNewsletters"];
|
|
1379
|
+
legalAccepted?: parameters["rowFilter.users.legalAccepted"];
|
|
1380
|
+
customer_id?: parameters["rowFilter.users.customer_id"];
|
|
1314
1381
|
/** Filtering Columns */
|
|
1315
1382
|
select?: parameters["select"];
|
|
1316
1383
|
/** Ordering */
|
|
@@ -1332,7 +1399,7 @@ export interface paths {
|
|
|
1332
1399
|
responses: {
|
|
1333
1400
|
/** OK */
|
|
1334
1401
|
200: {
|
|
1335
|
-
schema: definitions["
|
|
1402
|
+
schema: definitions["users"][];
|
|
1336
1403
|
};
|
|
1337
1404
|
/** Partial Content */
|
|
1338
1405
|
206: unknown;
|
|
@@ -1341,8 +1408,8 @@ export interface paths {
|
|
|
1341
1408
|
post: {
|
|
1342
1409
|
parameters: {
|
|
1343
1410
|
body: {
|
|
1344
|
-
/**
|
|
1345
|
-
|
|
1411
|
+
/** users */
|
|
1412
|
+
users?: definitions["users"];
|
|
1346
1413
|
};
|
|
1347
1414
|
query: {
|
|
1348
1415
|
/** Filtering Columns */
|
|
@@ -1361,11 +1428,18 @@ export interface paths {
|
|
|
1361
1428
|
delete: {
|
|
1362
1429
|
parameters: {
|
|
1363
1430
|
query: {
|
|
1364
|
-
created_at?: parameters["rowFilter.
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1431
|
+
created_at?: parameters["rowFilter.users.created_at"];
|
|
1432
|
+
image_url?: parameters["rowFilter.users.image_url"];
|
|
1433
|
+
first_name?: parameters["rowFilter.users.first_name"];
|
|
1434
|
+
last_name?: parameters["rowFilter.users.last_name"];
|
|
1435
|
+
country?: parameters["rowFilter.users.country"];
|
|
1436
|
+
email?: parameters["rowFilter.users.email"];
|
|
1437
|
+
id?: parameters["rowFilter.users.id"];
|
|
1438
|
+
updated_at?: parameters["rowFilter.users.updated_at"];
|
|
1439
|
+
enableNotifications?: parameters["rowFilter.users.enableNotifications"];
|
|
1440
|
+
optForNewsletters?: parameters["rowFilter.users.optForNewsletters"];
|
|
1441
|
+
legalAccepted?: parameters["rowFilter.users.legalAccepted"];
|
|
1442
|
+
customer_id?: parameters["rowFilter.users.customer_id"];
|
|
1369
1443
|
};
|
|
1370
1444
|
header: {
|
|
1371
1445
|
/** Preference */
|
|
@@ -1380,15 +1454,22 @@ export interface paths {
|
|
|
1380
1454
|
patch: {
|
|
1381
1455
|
parameters: {
|
|
1382
1456
|
query: {
|
|
1383
|
-
created_at?: parameters["rowFilter.
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1457
|
+
created_at?: parameters["rowFilter.users.created_at"];
|
|
1458
|
+
image_url?: parameters["rowFilter.users.image_url"];
|
|
1459
|
+
first_name?: parameters["rowFilter.users.first_name"];
|
|
1460
|
+
last_name?: parameters["rowFilter.users.last_name"];
|
|
1461
|
+
country?: parameters["rowFilter.users.country"];
|
|
1462
|
+
email?: parameters["rowFilter.users.email"];
|
|
1463
|
+
id?: parameters["rowFilter.users.id"];
|
|
1464
|
+
updated_at?: parameters["rowFilter.users.updated_at"];
|
|
1465
|
+
enableNotifications?: parameters["rowFilter.users.enableNotifications"];
|
|
1466
|
+
optForNewsletters?: parameters["rowFilter.users.optForNewsletters"];
|
|
1467
|
+
legalAccepted?: parameters["rowFilter.users.legalAccepted"];
|
|
1468
|
+
customer_id?: parameters["rowFilter.users.customer_id"];
|
|
1388
1469
|
};
|
|
1389
1470
|
body: {
|
|
1390
|
-
/**
|
|
1391
|
-
|
|
1471
|
+
/** users */
|
|
1472
|
+
users?: definitions["users"];
|
|
1392
1473
|
};
|
|
1393
1474
|
header: {
|
|
1394
1475
|
/** Preference */
|
|
@@ -1401,27 +1482,17 @@ export interface paths {
|
|
|
1401
1482
|
};
|
|
1402
1483
|
};
|
|
1403
1484
|
};
|
|
1404
|
-
"/
|
|
1485
|
+
"/channel_users": {
|
|
1405
1486
|
get: {
|
|
1406
1487
|
parameters: {
|
|
1407
1488
|
query: {
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
app?: parameters["rowFilter.plans.app"];
|
|
1416
|
-
channel?: parameters["rowFilter.plans.channel"];
|
|
1417
|
-
update?: parameters["rowFilter.plans.update"];
|
|
1418
|
-
version?: parameters["rowFilter.plans.version"];
|
|
1419
|
-
shared?: parameters["rowFilter.plans.shared"];
|
|
1420
|
-
abtest?: parameters["rowFilter.plans.abtest"];
|
|
1421
|
-
progressive_deploy?: parameters["rowFilter.plans.progressive_deploy"];
|
|
1422
|
-
id?: parameters["rowFilter.plans.id"];
|
|
1423
|
-
price_m_id?: parameters["rowFilter.plans.price_m_id"];
|
|
1424
|
-
price_y_id?: parameters["rowFilter.plans.price_y_id"];
|
|
1489
|
+
id?: parameters["rowFilter.channel_users.id"];
|
|
1490
|
+
created_at?: parameters["rowFilter.channel_users.created_at"];
|
|
1491
|
+
user_id?: parameters["rowFilter.channel_users.user_id"];
|
|
1492
|
+
channel_id?: parameters["rowFilter.channel_users.channel_id"];
|
|
1493
|
+
app_id?: parameters["rowFilter.channel_users.app_id"];
|
|
1494
|
+
updated_at?: parameters["rowFilter.channel_users.updated_at"];
|
|
1495
|
+
created_by?: parameters["rowFilter.channel_users.created_by"];
|
|
1425
1496
|
/** Filtering Columns */
|
|
1426
1497
|
select?: parameters["select"];
|
|
1427
1498
|
/** Ordering */
|
|
@@ -1443,7 +1514,7 @@ export interface paths {
|
|
|
1443
1514
|
responses: {
|
|
1444
1515
|
/** OK */
|
|
1445
1516
|
200: {
|
|
1446
|
-
schema: definitions["
|
|
1517
|
+
schema: definitions["channel_users"][];
|
|
1447
1518
|
};
|
|
1448
1519
|
/** Partial Content */
|
|
1449
1520
|
206: unknown;
|
|
@@ -1452,8 +1523,8 @@ export interface paths {
|
|
|
1452
1523
|
post: {
|
|
1453
1524
|
parameters: {
|
|
1454
1525
|
body: {
|
|
1455
|
-
/**
|
|
1456
|
-
|
|
1526
|
+
/** channel_users */
|
|
1527
|
+
channel_users?: definitions["channel_users"];
|
|
1457
1528
|
};
|
|
1458
1529
|
query: {
|
|
1459
1530
|
/** Filtering Columns */
|
|
@@ -1472,23 +1543,13 @@ export interface paths {
|
|
|
1472
1543
|
delete: {
|
|
1473
1544
|
parameters: {
|
|
1474
1545
|
query: {
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
app?: parameters["rowFilter.plans.app"];
|
|
1483
|
-
channel?: parameters["rowFilter.plans.channel"];
|
|
1484
|
-
update?: parameters["rowFilter.plans.update"];
|
|
1485
|
-
version?: parameters["rowFilter.plans.version"];
|
|
1486
|
-
shared?: parameters["rowFilter.plans.shared"];
|
|
1487
|
-
abtest?: parameters["rowFilter.plans.abtest"];
|
|
1488
|
-
progressive_deploy?: parameters["rowFilter.plans.progressive_deploy"];
|
|
1489
|
-
id?: parameters["rowFilter.plans.id"];
|
|
1490
|
-
price_m_id?: parameters["rowFilter.plans.price_m_id"];
|
|
1491
|
-
price_y_id?: parameters["rowFilter.plans.price_y_id"];
|
|
1546
|
+
id?: parameters["rowFilter.channel_users.id"];
|
|
1547
|
+
created_at?: parameters["rowFilter.channel_users.created_at"];
|
|
1548
|
+
user_id?: parameters["rowFilter.channel_users.user_id"];
|
|
1549
|
+
channel_id?: parameters["rowFilter.channel_users.channel_id"];
|
|
1550
|
+
app_id?: parameters["rowFilter.channel_users.app_id"];
|
|
1551
|
+
updated_at?: parameters["rowFilter.channel_users.updated_at"];
|
|
1552
|
+
created_by?: parameters["rowFilter.channel_users.created_by"];
|
|
1492
1553
|
};
|
|
1493
1554
|
header: {
|
|
1494
1555
|
/** Preference */
|
|
@@ -1503,27 +1564,17 @@ export interface paths {
|
|
|
1503
1564
|
patch: {
|
|
1504
1565
|
parameters: {
|
|
1505
1566
|
query: {
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
app?: parameters["rowFilter.plans.app"];
|
|
1514
|
-
channel?: parameters["rowFilter.plans.channel"];
|
|
1515
|
-
update?: parameters["rowFilter.plans.update"];
|
|
1516
|
-
version?: parameters["rowFilter.plans.version"];
|
|
1517
|
-
shared?: parameters["rowFilter.plans.shared"];
|
|
1518
|
-
abtest?: parameters["rowFilter.plans.abtest"];
|
|
1519
|
-
progressive_deploy?: parameters["rowFilter.plans.progressive_deploy"];
|
|
1520
|
-
id?: parameters["rowFilter.plans.id"];
|
|
1521
|
-
price_m_id?: parameters["rowFilter.plans.price_m_id"];
|
|
1522
|
-
price_y_id?: parameters["rowFilter.plans.price_y_id"];
|
|
1567
|
+
id?: parameters["rowFilter.channel_users.id"];
|
|
1568
|
+
created_at?: parameters["rowFilter.channel_users.created_at"];
|
|
1569
|
+
user_id?: parameters["rowFilter.channel_users.user_id"];
|
|
1570
|
+
channel_id?: parameters["rowFilter.channel_users.channel_id"];
|
|
1571
|
+
app_id?: parameters["rowFilter.channel_users.app_id"];
|
|
1572
|
+
updated_at?: parameters["rowFilter.channel_users.updated_at"];
|
|
1573
|
+
created_by?: parameters["rowFilter.channel_users.created_by"];
|
|
1523
1574
|
};
|
|
1524
1575
|
body: {
|
|
1525
|
-
/**
|
|
1526
|
-
|
|
1576
|
+
/** channel_users */
|
|
1577
|
+
channel_users?: definitions["channel_users"];
|
|
1527
1578
|
};
|
|
1528
1579
|
header: {
|
|
1529
1580
|
/** Preference */
|
|
@@ -1536,19 +1587,16 @@ export interface paths {
|
|
|
1536
1587
|
};
|
|
1537
1588
|
};
|
|
1538
1589
|
};
|
|
1539
|
-
"/
|
|
1590
|
+
"/devices_override": {
|
|
1540
1591
|
get: {
|
|
1541
1592
|
parameters: {
|
|
1542
1593
|
query: {
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
version?: parameters["rowFilter.stats.version"];
|
|
1550
|
-
app_id?: parameters["rowFilter.stats.app_id"];
|
|
1551
|
-
updated_at?: parameters["rowFilter.stats.updated_at"];
|
|
1594
|
+
created_at?: parameters["rowFilter.devices_override.created_at"];
|
|
1595
|
+
updated_at?: parameters["rowFilter.devices_override.updated_at"];
|
|
1596
|
+
device_id?: parameters["rowFilter.devices_override.device_id"];
|
|
1597
|
+
version?: parameters["rowFilter.devices_override.version"];
|
|
1598
|
+
app_id?: parameters["rowFilter.devices_override.app_id"];
|
|
1599
|
+
created_by?: parameters["rowFilter.devices_override.created_by"];
|
|
1552
1600
|
/** Filtering Columns */
|
|
1553
1601
|
select?: parameters["select"];
|
|
1554
1602
|
/** Ordering */
|
|
@@ -1570,7 +1618,7 @@ export interface paths {
|
|
|
1570
1618
|
responses: {
|
|
1571
1619
|
/** OK */
|
|
1572
1620
|
200: {
|
|
1573
|
-
schema: definitions["
|
|
1621
|
+
schema: definitions["devices_override"][];
|
|
1574
1622
|
};
|
|
1575
1623
|
/** Partial Content */
|
|
1576
1624
|
206: unknown;
|
|
@@ -1579,8 +1627,8 @@ export interface paths {
|
|
|
1579
1627
|
post: {
|
|
1580
1628
|
parameters: {
|
|
1581
1629
|
body: {
|
|
1582
|
-
/**
|
|
1583
|
-
|
|
1630
|
+
/** devices_override */
|
|
1631
|
+
devices_override?: definitions["devices_override"];
|
|
1584
1632
|
};
|
|
1585
1633
|
query: {
|
|
1586
1634
|
/** Filtering Columns */
|
|
@@ -1599,15 +1647,12 @@ export interface paths {
|
|
|
1599
1647
|
delete: {
|
|
1600
1648
|
parameters: {
|
|
1601
1649
|
query: {
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
version?: parameters["rowFilter.stats.version"];
|
|
1609
|
-
app_id?: parameters["rowFilter.stats.app_id"];
|
|
1610
|
-
updated_at?: parameters["rowFilter.stats.updated_at"];
|
|
1650
|
+
created_at?: parameters["rowFilter.devices_override.created_at"];
|
|
1651
|
+
updated_at?: parameters["rowFilter.devices_override.updated_at"];
|
|
1652
|
+
device_id?: parameters["rowFilter.devices_override.device_id"];
|
|
1653
|
+
version?: parameters["rowFilter.devices_override.version"];
|
|
1654
|
+
app_id?: parameters["rowFilter.devices_override.app_id"];
|
|
1655
|
+
created_by?: parameters["rowFilter.devices_override.created_by"];
|
|
1611
1656
|
};
|
|
1612
1657
|
header: {
|
|
1613
1658
|
/** Preference */
|
|
@@ -1622,19 +1667,16 @@ export interface paths {
|
|
|
1622
1667
|
patch: {
|
|
1623
1668
|
parameters: {
|
|
1624
1669
|
query: {
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
version?: parameters["rowFilter.stats.version"];
|
|
1632
|
-
app_id?: parameters["rowFilter.stats.app_id"];
|
|
1633
|
-
updated_at?: parameters["rowFilter.stats.updated_at"];
|
|
1670
|
+
created_at?: parameters["rowFilter.devices_override.created_at"];
|
|
1671
|
+
updated_at?: parameters["rowFilter.devices_override.updated_at"];
|
|
1672
|
+
device_id?: parameters["rowFilter.devices_override.device_id"];
|
|
1673
|
+
version?: parameters["rowFilter.devices_override.version"];
|
|
1674
|
+
app_id?: parameters["rowFilter.devices_override.app_id"];
|
|
1675
|
+
created_by?: parameters["rowFilter.devices_override.created_by"];
|
|
1634
1676
|
};
|
|
1635
1677
|
body: {
|
|
1636
|
-
/**
|
|
1637
|
-
|
|
1678
|
+
/** devices_override */
|
|
1679
|
+
devices_override?: definitions["devices_override"];
|
|
1638
1680
|
};
|
|
1639
1681
|
header: {
|
|
1640
1682
|
/** Preference */
|
|
@@ -1647,19 +1689,23 @@ export interface paths {
|
|
|
1647
1689
|
};
|
|
1648
1690
|
};
|
|
1649
1691
|
};
|
|
1650
|
-
"/
|
|
1692
|
+
"/app_stats": {
|
|
1651
1693
|
get: {
|
|
1652
1694
|
parameters: {
|
|
1653
1695
|
query: {
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1696
|
+
app_id?: parameters["rowFilter.app_stats.app_id"];
|
|
1697
|
+
user_id?: parameters["rowFilter.app_stats.user_id"];
|
|
1698
|
+
created_at?: parameters["rowFilter.app_stats.created_at"];
|
|
1699
|
+
updated_at?: parameters["rowFilter.app_stats.updated_at"];
|
|
1700
|
+
channels?: parameters["rowFilter.app_stats.channels"];
|
|
1701
|
+
mlu?: parameters["rowFilter.app_stats.mlu"];
|
|
1702
|
+
versions?: parameters["rowFilter.app_stats.versions"];
|
|
1703
|
+
shared?: parameters["rowFilter.app_stats.shared"];
|
|
1704
|
+
mlu_real?: parameters["rowFilter.app_stats.mlu_real"];
|
|
1705
|
+
devices?: parameters["rowFilter.app_stats.devices"];
|
|
1706
|
+
date_id?: parameters["rowFilter.app_stats.date_id"];
|
|
1707
|
+
version_size?: parameters["rowFilter.app_stats.version_size"];
|
|
1708
|
+
bandwidth?: parameters["rowFilter.app_stats.bandwidth"];
|
|
1663
1709
|
/** Filtering Columns */
|
|
1664
1710
|
select?: parameters["select"];
|
|
1665
1711
|
/** Ordering */
|
|
@@ -1681,7 +1727,7 @@ export interface paths {
|
|
|
1681
1727
|
responses: {
|
|
1682
1728
|
/** OK */
|
|
1683
1729
|
200: {
|
|
1684
|
-
schema: definitions["
|
|
1730
|
+
schema: definitions["app_stats"][];
|
|
1685
1731
|
};
|
|
1686
1732
|
/** Partial Content */
|
|
1687
1733
|
206: unknown;
|
|
@@ -1690,8 +1736,8 @@ export interface paths {
|
|
|
1690
1736
|
post: {
|
|
1691
1737
|
parameters: {
|
|
1692
1738
|
body: {
|
|
1693
|
-
/**
|
|
1694
|
-
|
|
1739
|
+
/** app_stats */
|
|
1740
|
+
app_stats?: definitions["app_stats"];
|
|
1695
1741
|
};
|
|
1696
1742
|
query: {
|
|
1697
1743
|
/** Filtering Columns */
|
|
@@ -1710,15 +1756,19 @@ export interface paths {
|
|
|
1710
1756
|
delete: {
|
|
1711
1757
|
parameters: {
|
|
1712
1758
|
query: {
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1759
|
+
app_id?: parameters["rowFilter.app_stats.app_id"];
|
|
1760
|
+
user_id?: parameters["rowFilter.app_stats.user_id"];
|
|
1761
|
+
created_at?: parameters["rowFilter.app_stats.created_at"];
|
|
1762
|
+
updated_at?: parameters["rowFilter.app_stats.updated_at"];
|
|
1763
|
+
channels?: parameters["rowFilter.app_stats.channels"];
|
|
1764
|
+
mlu?: parameters["rowFilter.app_stats.mlu"];
|
|
1765
|
+
versions?: parameters["rowFilter.app_stats.versions"];
|
|
1766
|
+
shared?: parameters["rowFilter.app_stats.shared"];
|
|
1767
|
+
mlu_real?: parameters["rowFilter.app_stats.mlu_real"];
|
|
1768
|
+
devices?: parameters["rowFilter.app_stats.devices"];
|
|
1769
|
+
date_id?: parameters["rowFilter.app_stats.date_id"];
|
|
1770
|
+
version_size?: parameters["rowFilter.app_stats.version_size"];
|
|
1771
|
+
bandwidth?: parameters["rowFilter.app_stats.bandwidth"];
|
|
1722
1772
|
};
|
|
1723
1773
|
header: {
|
|
1724
1774
|
/** Preference */
|
|
@@ -1733,19 +1783,23 @@ export interface paths {
|
|
|
1733
1783
|
patch: {
|
|
1734
1784
|
parameters: {
|
|
1735
1785
|
query: {
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1786
|
+
app_id?: parameters["rowFilter.app_stats.app_id"];
|
|
1787
|
+
user_id?: parameters["rowFilter.app_stats.user_id"];
|
|
1788
|
+
created_at?: parameters["rowFilter.app_stats.created_at"];
|
|
1789
|
+
updated_at?: parameters["rowFilter.app_stats.updated_at"];
|
|
1790
|
+
channels?: parameters["rowFilter.app_stats.channels"];
|
|
1791
|
+
mlu?: parameters["rowFilter.app_stats.mlu"];
|
|
1792
|
+
versions?: parameters["rowFilter.app_stats.versions"];
|
|
1793
|
+
shared?: parameters["rowFilter.app_stats.shared"];
|
|
1794
|
+
mlu_real?: parameters["rowFilter.app_stats.mlu_real"];
|
|
1795
|
+
devices?: parameters["rowFilter.app_stats.devices"];
|
|
1796
|
+
date_id?: parameters["rowFilter.app_stats.date_id"];
|
|
1797
|
+
version_size?: parameters["rowFilter.app_stats.version_size"];
|
|
1798
|
+
bandwidth?: parameters["rowFilter.app_stats.bandwidth"];
|
|
1745
1799
|
};
|
|
1746
1800
|
body: {
|
|
1747
|
-
/**
|
|
1748
|
-
|
|
1801
|
+
/** app_stats */
|
|
1802
|
+
app_stats?: definitions["app_stats"];
|
|
1749
1803
|
};
|
|
1750
1804
|
header: {
|
|
1751
1805
|
/** Preference */
|
|
@@ -1758,19 +1812,21 @@ export interface paths {
|
|
|
1758
1812
|
};
|
|
1759
1813
|
};
|
|
1760
1814
|
};
|
|
1761
|
-
"/
|
|
1815
|
+
"/devices": {
|
|
1762
1816
|
get: {
|
|
1763
1817
|
parameters: {
|
|
1764
1818
|
query: {
|
|
1765
|
-
created_at?: parameters["rowFilter.
|
|
1766
|
-
updated_at?: parameters["rowFilter.
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1819
|
+
created_at?: parameters["rowFilter.devices.created_at"];
|
|
1820
|
+
updated_at?: parameters["rowFilter.devices.updated_at"];
|
|
1821
|
+
device_id?: parameters["rowFilter.devices.device_id"];
|
|
1822
|
+
version?: parameters["rowFilter.devices.version"];
|
|
1823
|
+
app_id?: parameters["rowFilter.devices.app_id"];
|
|
1824
|
+
platform?: parameters["rowFilter.devices.platform"];
|
|
1825
|
+
plugin_version?: parameters["rowFilter.devices.plugin_version"];
|
|
1826
|
+
os_version?: parameters["rowFilter.devices.os_version"];
|
|
1827
|
+
date_id?: parameters["rowFilter.devices.date_id"];
|
|
1828
|
+
version_build?: parameters["rowFilter.devices.version_build"];
|
|
1829
|
+
custom_id?: parameters["rowFilter.devices.custom_id"];
|
|
1774
1830
|
/** Filtering Columns */
|
|
1775
1831
|
select?: parameters["select"];
|
|
1776
1832
|
/** Ordering */
|
|
@@ -1792,7 +1848,7 @@ export interface paths {
|
|
|
1792
1848
|
responses: {
|
|
1793
1849
|
/** OK */
|
|
1794
1850
|
200: {
|
|
1795
|
-
schema: definitions["
|
|
1851
|
+
schema: definitions["devices"][];
|
|
1796
1852
|
};
|
|
1797
1853
|
/** Partial Content */
|
|
1798
1854
|
206: unknown;
|
|
@@ -1801,8 +1857,8 @@ export interface paths {
|
|
|
1801
1857
|
post: {
|
|
1802
1858
|
parameters: {
|
|
1803
1859
|
body: {
|
|
1804
|
-
/**
|
|
1805
|
-
|
|
1860
|
+
/** devices */
|
|
1861
|
+
devices?: definitions["devices"];
|
|
1806
1862
|
};
|
|
1807
1863
|
query: {
|
|
1808
1864
|
/** Filtering Columns */
|
|
@@ -1821,15 +1877,17 @@ export interface paths {
|
|
|
1821
1877
|
delete: {
|
|
1822
1878
|
parameters: {
|
|
1823
1879
|
query: {
|
|
1824
|
-
created_at?: parameters["rowFilter.
|
|
1825
|
-
updated_at?: parameters["rowFilter.
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1880
|
+
created_at?: parameters["rowFilter.devices.created_at"];
|
|
1881
|
+
updated_at?: parameters["rowFilter.devices.updated_at"];
|
|
1882
|
+
device_id?: parameters["rowFilter.devices.device_id"];
|
|
1883
|
+
version?: parameters["rowFilter.devices.version"];
|
|
1884
|
+
app_id?: parameters["rowFilter.devices.app_id"];
|
|
1885
|
+
platform?: parameters["rowFilter.devices.platform"];
|
|
1886
|
+
plugin_version?: parameters["rowFilter.devices.plugin_version"];
|
|
1887
|
+
os_version?: parameters["rowFilter.devices.os_version"];
|
|
1888
|
+
date_id?: parameters["rowFilter.devices.date_id"];
|
|
1889
|
+
version_build?: parameters["rowFilter.devices.version_build"];
|
|
1890
|
+
custom_id?: parameters["rowFilter.devices.custom_id"];
|
|
1833
1891
|
};
|
|
1834
1892
|
header: {
|
|
1835
1893
|
/** Preference */
|
|
@@ -1844,19 +1902,21 @@ export interface paths {
|
|
|
1844
1902
|
patch: {
|
|
1845
1903
|
parameters: {
|
|
1846
1904
|
query: {
|
|
1847
|
-
created_at?: parameters["rowFilter.
|
|
1848
|
-
updated_at?: parameters["rowFilter.
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
1905
|
+
created_at?: parameters["rowFilter.devices.created_at"];
|
|
1906
|
+
updated_at?: parameters["rowFilter.devices.updated_at"];
|
|
1907
|
+
device_id?: parameters["rowFilter.devices.device_id"];
|
|
1908
|
+
version?: parameters["rowFilter.devices.version"];
|
|
1909
|
+
app_id?: parameters["rowFilter.devices.app_id"];
|
|
1910
|
+
platform?: parameters["rowFilter.devices.platform"];
|
|
1911
|
+
plugin_version?: parameters["rowFilter.devices.plugin_version"];
|
|
1912
|
+
os_version?: parameters["rowFilter.devices.os_version"];
|
|
1913
|
+
date_id?: parameters["rowFilter.devices.date_id"];
|
|
1914
|
+
version_build?: parameters["rowFilter.devices.version_build"];
|
|
1915
|
+
custom_id?: parameters["rowFilter.devices.custom_id"];
|
|
1856
1916
|
};
|
|
1857
1917
|
body: {
|
|
1858
|
-
/**
|
|
1859
|
-
|
|
1918
|
+
/** devices */
|
|
1919
|
+
devices?: definitions["devices"];
|
|
1860
1920
|
};
|
|
1861
1921
|
header: {
|
|
1862
1922
|
/** Preference */
|
|
@@ -1869,13 +1929,18 @@ export interface paths {
|
|
|
1869
1929
|
};
|
|
1870
1930
|
};
|
|
1871
1931
|
};
|
|
1872
|
-
"/
|
|
1932
|
+
"/app_versions_meta": {
|
|
1873
1933
|
get: {
|
|
1874
1934
|
parameters: {
|
|
1875
1935
|
query: {
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1936
|
+
created_at?: parameters["rowFilter.app_versions_meta.created_at"];
|
|
1937
|
+
app_id?: parameters["rowFilter.app_versions_meta.app_id"];
|
|
1938
|
+
user_id?: parameters["rowFilter.app_versions_meta.user_id"];
|
|
1939
|
+
updated_at?: parameters["rowFilter.app_versions_meta.updated_at"];
|
|
1940
|
+
checksum?: parameters["rowFilter.app_versions_meta.checksum"];
|
|
1941
|
+
size?: parameters["rowFilter.app_versions_meta.size"];
|
|
1942
|
+
id?: parameters["rowFilter.app_versions_meta.id"];
|
|
1943
|
+
devices?: parameters["rowFilter.app_versions_meta.devices"];
|
|
1879
1944
|
/** Filtering Columns */
|
|
1880
1945
|
select?: parameters["select"];
|
|
1881
1946
|
/** Ordering */
|
|
@@ -1897,7 +1962,7 @@ export interface paths {
|
|
|
1897
1962
|
responses: {
|
|
1898
1963
|
/** OK */
|
|
1899
1964
|
200: {
|
|
1900
|
-
schema: definitions["
|
|
1965
|
+
schema: definitions["app_versions_meta"][];
|
|
1901
1966
|
};
|
|
1902
1967
|
/** Partial Content */
|
|
1903
1968
|
206: unknown;
|
|
@@ -1906,8 +1971,8 @@ export interface paths {
|
|
|
1906
1971
|
post: {
|
|
1907
1972
|
parameters: {
|
|
1908
1973
|
body: {
|
|
1909
|
-
/**
|
|
1910
|
-
|
|
1974
|
+
/** app_versions_meta */
|
|
1975
|
+
app_versions_meta?: definitions["app_versions_meta"];
|
|
1911
1976
|
};
|
|
1912
1977
|
query: {
|
|
1913
1978
|
/** Filtering Columns */
|
|
@@ -1926,9 +1991,14 @@ export interface paths {
|
|
|
1926
1991
|
delete: {
|
|
1927
1992
|
parameters: {
|
|
1928
1993
|
query: {
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1994
|
+
created_at?: parameters["rowFilter.app_versions_meta.created_at"];
|
|
1995
|
+
app_id?: parameters["rowFilter.app_versions_meta.app_id"];
|
|
1996
|
+
user_id?: parameters["rowFilter.app_versions_meta.user_id"];
|
|
1997
|
+
updated_at?: parameters["rowFilter.app_versions_meta.updated_at"];
|
|
1998
|
+
checksum?: parameters["rowFilter.app_versions_meta.checksum"];
|
|
1999
|
+
size?: parameters["rowFilter.app_versions_meta.size"];
|
|
2000
|
+
id?: parameters["rowFilter.app_versions_meta.id"];
|
|
2001
|
+
devices?: parameters["rowFilter.app_versions_meta.devices"];
|
|
1932
2002
|
};
|
|
1933
2003
|
header: {
|
|
1934
2004
|
/** Preference */
|
|
@@ -1943,13 +2013,18 @@ export interface paths {
|
|
|
1943
2013
|
patch: {
|
|
1944
2014
|
parameters: {
|
|
1945
2015
|
query: {
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
2016
|
+
created_at?: parameters["rowFilter.app_versions_meta.created_at"];
|
|
2017
|
+
app_id?: parameters["rowFilter.app_versions_meta.app_id"];
|
|
2018
|
+
user_id?: parameters["rowFilter.app_versions_meta.user_id"];
|
|
2019
|
+
updated_at?: parameters["rowFilter.app_versions_meta.updated_at"];
|
|
2020
|
+
checksum?: parameters["rowFilter.app_versions_meta.checksum"];
|
|
2021
|
+
size?: parameters["rowFilter.app_versions_meta.size"];
|
|
2022
|
+
id?: parameters["rowFilter.app_versions_meta.id"];
|
|
2023
|
+
devices?: parameters["rowFilter.app_versions_meta.devices"];
|
|
1949
2024
|
};
|
|
1950
2025
|
body: {
|
|
1951
|
-
/**
|
|
1952
|
-
|
|
2026
|
+
/** app_versions_meta */
|
|
2027
|
+
app_versions_meta?: definitions["app_versions_meta"];
|
|
1953
2028
|
};
|
|
1954
2029
|
header: {
|
|
1955
2030
|
/** Preference */
|
|
@@ -1962,22 +2037,18 @@ export interface paths {
|
|
|
1962
2037
|
};
|
|
1963
2038
|
};
|
|
1964
2039
|
};
|
|
1965
|
-
"/
|
|
2040
|
+
"/app_stats_onprem": {
|
|
1966
2041
|
get: {
|
|
1967
2042
|
parameters: {
|
|
1968
2043
|
query: {
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
enableNotifications?: parameters["rowFilter.users.enableNotifications"];
|
|
1978
|
-
optForNewsletters?: parameters["rowFilter.users.optForNewsletters"];
|
|
1979
|
-
legalAccepted?: parameters["rowFilter.users.legalAccepted"];
|
|
1980
|
-
customer_id?: parameters["rowFilter.users.customer_id"];
|
|
2044
|
+
app_id?: parameters["rowFilter.app_stats_onprem.app_id"];
|
|
2045
|
+
created_at?: parameters["rowFilter.app_stats_onprem.created_at"];
|
|
2046
|
+
updated_at?: parameters["rowFilter.app_stats_onprem.updated_at"];
|
|
2047
|
+
mlu?: parameters["rowFilter.app_stats_onprem.mlu"];
|
|
2048
|
+
versions?: parameters["rowFilter.app_stats_onprem.versions"];
|
|
2049
|
+
mlu_real?: parameters["rowFilter.app_stats_onprem.mlu_real"];
|
|
2050
|
+
date_id?: parameters["rowFilter.app_stats_onprem.date_id"];
|
|
2051
|
+
devices?: parameters["rowFilter.app_stats_onprem.devices"];
|
|
1981
2052
|
/** Filtering Columns */
|
|
1982
2053
|
select?: parameters["select"];
|
|
1983
2054
|
/** Ordering */
|
|
@@ -1999,7 +2070,7 @@ export interface paths {
|
|
|
1999
2070
|
responses: {
|
|
2000
2071
|
/** OK */
|
|
2001
2072
|
200: {
|
|
2002
|
-
schema: definitions["
|
|
2073
|
+
schema: definitions["app_stats_onprem"][];
|
|
2003
2074
|
};
|
|
2004
2075
|
/** Partial Content */
|
|
2005
2076
|
206: unknown;
|
|
@@ -2008,8 +2079,8 @@ export interface paths {
|
|
|
2008
2079
|
post: {
|
|
2009
2080
|
parameters: {
|
|
2010
2081
|
body: {
|
|
2011
|
-
/**
|
|
2012
|
-
|
|
2082
|
+
/** app_stats_onprem */
|
|
2083
|
+
app_stats_onprem?: definitions["app_stats_onprem"];
|
|
2013
2084
|
};
|
|
2014
2085
|
query: {
|
|
2015
2086
|
/** Filtering Columns */
|
|
@@ -2028,18 +2099,14 @@ export interface paths {
|
|
|
2028
2099
|
delete: {
|
|
2029
2100
|
parameters: {
|
|
2030
2101
|
query: {
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
enableNotifications?: parameters["rowFilter.users.enableNotifications"];
|
|
2040
|
-
optForNewsletters?: parameters["rowFilter.users.optForNewsletters"];
|
|
2041
|
-
legalAccepted?: parameters["rowFilter.users.legalAccepted"];
|
|
2042
|
-
customer_id?: parameters["rowFilter.users.customer_id"];
|
|
2102
|
+
app_id?: parameters["rowFilter.app_stats_onprem.app_id"];
|
|
2103
|
+
created_at?: parameters["rowFilter.app_stats_onprem.created_at"];
|
|
2104
|
+
updated_at?: parameters["rowFilter.app_stats_onprem.updated_at"];
|
|
2105
|
+
mlu?: parameters["rowFilter.app_stats_onprem.mlu"];
|
|
2106
|
+
versions?: parameters["rowFilter.app_stats_onprem.versions"];
|
|
2107
|
+
mlu_real?: parameters["rowFilter.app_stats_onprem.mlu_real"];
|
|
2108
|
+
date_id?: parameters["rowFilter.app_stats_onprem.date_id"];
|
|
2109
|
+
devices?: parameters["rowFilter.app_stats_onprem.devices"];
|
|
2043
2110
|
};
|
|
2044
2111
|
header: {
|
|
2045
2112
|
/** Preference */
|
|
@@ -2054,22 +2121,18 @@ export interface paths {
|
|
|
2054
2121
|
patch: {
|
|
2055
2122
|
parameters: {
|
|
2056
2123
|
query: {
|
|
2057
|
-
|
|
2058
|
-
|
|
2059
|
-
|
|
2060
|
-
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
enableNotifications?: parameters["rowFilter.users.enableNotifications"];
|
|
2066
|
-
optForNewsletters?: parameters["rowFilter.users.optForNewsletters"];
|
|
2067
|
-
legalAccepted?: parameters["rowFilter.users.legalAccepted"];
|
|
2068
|
-
customer_id?: parameters["rowFilter.users.customer_id"];
|
|
2124
|
+
app_id?: parameters["rowFilter.app_stats_onprem.app_id"];
|
|
2125
|
+
created_at?: parameters["rowFilter.app_stats_onprem.created_at"];
|
|
2126
|
+
updated_at?: parameters["rowFilter.app_stats_onprem.updated_at"];
|
|
2127
|
+
mlu?: parameters["rowFilter.app_stats_onprem.mlu"];
|
|
2128
|
+
versions?: parameters["rowFilter.app_stats_onprem.versions"];
|
|
2129
|
+
mlu_real?: parameters["rowFilter.app_stats_onprem.mlu_real"];
|
|
2130
|
+
date_id?: parameters["rowFilter.app_stats_onprem.date_id"];
|
|
2131
|
+
devices?: parameters["rowFilter.app_stats_onprem.devices"];
|
|
2069
2132
|
};
|
|
2070
2133
|
body: {
|
|
2071
|
-
/**
|
|
2072
|
-
|
|
2134
|
+
/** app_stats_onprem */
|
|
2135
|
+
app_stats_onprem?: definitions["app_stats_onprem"];
|
|
2073
2136
|
};
|
|
2074
2137
|
header: {
|
|
2075
2138
|
/** Preference */
|
|
@@ -2082,57 +2145,145 @@ export interface paths {
|
|
|
2082
2145
|
};
|
|
2083
2146
|
};
|
|
2084
2147
|
};
|
|
2085
|
-
"/
|
|
2086
|
-
|
|
2148
|
+
"/app_versions": {
|
|
2149
|
+
get: {
|
|
2087
2150
|
parameters: {
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
|
|
2094
|
-
|
|
2151
|
+
query: {
|
|
2152
|
+
id?: parameters["rowFilter.app_versions.id"];
|
|
2153
|
+
created_at?: parameters["rowFilter.app_versions.created_at"];
|
|
2154
|
+
app_id?: parameters["rowFilter.app_versions.app_id"];
|
|
2155
|
+
name?: parameters["rowFilter.app_versions.name"];
|
|
2156
|
+
bucket_id?: parameters["rowFilter.app_versions.bucket_id"];
|
|
2157
|
+
user_id?: parameters["rowFilter.app_versions.user_id"];
|
|
2158
|
+
updated_at?: parameters["rowFilter.app_versions.updated_at"];
|
|
2159
|
+
deleted?: parameters["rowFilter.app_versions.deleted"];
|
|
2160
|
+
external_url?: parameters["rowFilter.app_versions.external_url"];
|
|
2161
|
+
checksum?: parameters["rowFilter.app_versions.checksum"];
|
|
2162
|
+
/** Filtering Columns */
|
|
2163
|
+
select?: parameters["select"];
|
|
2164
|
+
/** Ordering */
|
|
2165
|
+
order?: parameters["order"];
|
|
2166
|
+
/** Limiting and Pagination */
|
|
2167
|
+
offset?: parameters["offset"];
|
|
2168
|
+
/** Limiting and Pagination */
|
|
2169
|
+
limit?: parameters["limit"];
|
|
2095
2170
|
};
|
|
2096
2171
|
header: {
|
|
2172
|
+
/** Limiting and Pagination */
|
|
2173
|
+
Range?: parameters["range"];
|
|
2174
|
+
/** Limiting and Pagination */
|
|
2175
|
+
"Range-Unit"?: parameters["rangeUnit"];
|
|
2097
2176
|
/** Preference */
|
|
2098
|
-
Prefer?: parameters["
|
|
2177
|
+
Prefer?: parameters["preferCount"];
|
|
2099
2178
|
};
|
|
2100
2179
|
};
|
|
2101
2180
|
responses: {
|
|
2102
2181
|
/** OK */
|
|
2103
|
-
200:
|
|
2182
|
+
200: {
|
|
2183
|
+
schema: definitions["app_versions"][];
|
|
2184
|
+
};
|
|
2185
|
+
/** Partial Content */
|
|
2186
|
+
206: unknown;
|
|
2104
2187
|
};
|
|
2105
2188
|
};
|
|
2106
|
-
};
|
|
2107
|
-
"/rpc/is_in_channel": {
|
|
2108
2189
|
post: {
|
|
2109
2190
|
parameters: {
|
|
2110
2191
|
body: {
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
2192
|
+
/** app_versions */
|
|
2193
|
+
app_versions?: definitions["app_versions"];
|
|
2194
|
+
};
|
|
2195
|
+
query: {
|
|
2196
|
+
/** Filtering Columns */
|
|
2197
|
+
select?: parameters["select"];
|
|
2117
2198
|
};
|
|
2118
2199
|
header: {
|
|
2119
2200
|
/** Preference */
|
|
2120
|
-
Prefer?: parameters["
|
|
2201
|
+
Prefer?: parameters["preferReturn"];
|
|
2121
2202
|
};
|
|
2122
2203
|
};
|
|
2123
2204
|
responses: {
|
|
2124
|
-
/**
|
|
2125
|
-
|
|
2205
|
+
/** Created */
|
|
2206
|
+
201: unknown;
|
|
2207
|
+
};
|
|
2208
|
+
};
|
|
2209
|
+
delete: {
|
|
2210
|
+
parameters: {
|
|
2211
|
+
query: {
|
|
2212
|
+
id?: parameters["rowFilter.app_versions.id"];
|
|
2213
|
+
created_at?: parameters["rowFilter.app_versions.created_at"];
|
|
2214
|
+
app_id?: parameters["rowFilter.app_versions.app_id"];
|
|
2215
|
+
name?: parameters["rowFilter.app_versions.name"];
|
|
2216
|
+
bucket_id?: parameters["rowFilter.app_versions.bucket_id"];
|
|
2217
|
+
user_id?: parameters["rowFilter.app_versions.user_id"];
|
|
2218
|
+
updated_at?: parameters["rowFilter.app_versions.updated_at"];
|
|
2219
|
+
deleted?: parameters["rowFilter.app_versions.deleted"];
|
|
2220
|
+
external_url?: parameters["rowFilter.app_versions.external_url"];
|
|
2221
|
+
checksum?: parameters["rowFilter.app_versions.checksum"];
|
|
2222
|
+
};
|
|
2223
|
+
header: {
|
|
2224
|
+
/** Preference */
|
|
2225
|
+
Prefer?: parameters["preferReturn"];
|
|
2226
|
+
};
|
|
2227
|
+
};
|
|
2228
|
+
responses: {
|
|
2229
|
+
/** No Content */
|
|
2230
|
+
204: never;
|
|
2231
|
+
};
|
|
2232
|
+
};
|
|
2233
|
+
patch: {
|
|
2234
|
+
parameters: {
|
|
2235
|
+
query: {
|
|
2236
|
+
id?: parameters["rowFilter.app_versions.id"];
|
|
2237
|
+
created_at?: parameters["rowFilter.app_versions.created_at"];
|
|
2238
|
+
app_id?: parameters["rowFilter.app_versions.app_id"];
|
|
2239
|
+
name?: parameters["rowFilter.app_versions.name"];
|
|
2240
|
+
bucket_id?: parameters["rowFilter.app_versions.bucket_id"];
|
|
2241
|
+
user_id?: parameters["rowFilter.app_versions.user_id"];
|
|
2242
|
+
updated_at?: parameters["rowFilter.app_versions.updated_at"];
|
|
2243
|
+
deleted?: parameters["rowFilter.app_versions.deleted"];
|
|
2244
|
+
external_url?: parameters["rowFilter.app_versions.external_url"];
|
|
2245
|
+
checksum?: parameters["rowFilter.app_versions.checksum"];
|
|
2246
|
+
};
|
|
2247
|
+
body: {
|
|
2248
|
+
/** app_versions */
|
|
2249
|
+
app_versions?: definitions["app_versions"];
|
|
2250
|
+
};
|
|
2251
|
+
header: {
|
|
2252
|
+
/** Preference */
|
|
2253
|
+
Prefer?: parameters["preferReturn"];
|
|
2254
|
+
};
|
|
2255
|
+
};
|
|
2256
|
+
responses: {
|
|
2257
|
+
/** No Content */
|
|
2258
|
+
204: never;
|
|
2126
2259
|
};
|
|
2127
2260
|
};
|
|
2128
2261
|
};
|
|
2129
|
-
"/rpc/
|
|
2262
|
+
"/rpc/increment_stats": {
|
|
2130
2263
|
post: {
|
|
2131
2264
|
parameters: {
|
|
2132
2265
|
body: {
|
|
2133
2266
|
args: {
|
|
2134
2267
|
/** Format: character varying */
|
|
2135
|
-
|
|
2268
|
+
app_id: string;
|
|
2269
|
+
/** Format: integer */
|
|
2270
|
+
bandwidth: number;
|
|
2271
|
+
/** Format: integer */
|
|
2272
|
+
channels: number;
|
|
2273
|
+
/** Format: character varying */
|
|
2274
|
+
date_id: string;
|
|
2275
|
+
/** Format: integer */
|
|
2276
|
+
devices: number;
|
|
2277
|
+
/** Format: integer */
|
|
2278
|
+
mlu: number;
|
|
2279
|
+
/** Format: integer */
|
|
2280
|
+
mlu_real: number;
|
|
2281
|
+
/** Format: integer */
|
|
2282
|
+
shared: number;
|
|
2283
|
+
/** Format: integer */
|
|
2284
|
+
version_size: number;
|
|
2285
|
+
/** Format: integer */
|
|
2286
|
+
versions: number;
|
|
2136
2287
|
};
|
|
2137
2288
|
};
|
|
2138
2289
|
header: {
|
|
@@ -2146,11 +2297,13 @@ export interface paths {
|
|
|
2146
2297
|
};
|
|
2147
2298
|
};
|
|
2148
2299
|
};
|
|
2149
|
-
"/rpc/
|
|
2300
|
+
"/rpc/is_app_owner": {
|
|
2150
2301
|
post: {
|
|
2151
2302
|
parameters: {
|
|
2152
2303
|
body: {
|
|
2153
2304
|
args: {
|
|
2305
|
+
/** Format: character varying */
|
|
2306
|
+
appid: string;
|
|
2154
2307
|
/** Format: uuid */
|
|
2155
2308
|
userid: string;
|
|
2156
2309
|
};
|
|
@@ -2166,11 +2319,13 @@ export interface paths {
|
|
|
2166
2319
|
};
|
|
2167
2320
|
};
|
|
2168
2321
|
};
|
|
2169
|
-
"/rpc/
|
|
2322
|
+
"/rpc/is_in_channel": {
|
|
2170
2323
|
post: {
|
|
2171
2324
|
parameters: {
|
|
2172
2325
|
body: {
|
|
2173
2326
|
args: {
|
|
2327
|
+
/** Format: uuid */
|
|
2328
|
+
ownerid: string;
|
|
2174
2329
|
/** Format: uuid */
|
|
2175
2330
|
userid: string;
|
|
2176
2331
|
};
|
|
@@ -2186,17 +2341,13 @@ export interface paths {
|
|
|
2186
2341
|
};
|
|
2187
2342
|
};
|
|
2188
2343
|
};
|
|
2189
|
-
"/rpc/
|
|
2344
|
+
"/rpc/is_not_deleted": {
|
|
2190
2345
|
post: {
|
|
2191
2346
|
parameters: {
|
|
2192
2347
|
body: {
|
|
2193
2348
|
args: {
|
|
2194
|
-
/** Format: uuid */
|
|
2195
|
-
userid: string;
|
|
2196
|
-
/** Format: integer */
|
|
2197
|
-
pastmonth: number;
|
|
2198
2349
|
/** Format: character varying */
|
|
2199
|
-
|
|
2350
|
+
email_check: string;
|
|
2200
2351
|
};
|
|
2201
2352
|
};
|
|
2202
2353
|
header: {
|
|
@@ -2210,16 +2361,122 @@ export interface paths {
|
|
|
2210
2361
|
};
|
|
2211
2362
|
};
|
|
2212
2363
|
};
|
|
2213
|
-
"/rpc/
|
|
2364
|
+
"/rpc/get_max_channel": {
|
|
2365
|
+
post: {
|
|
2366
|
+
parameters: {
|
|
2367
|
+
body: {
|
|
2368
|
+
args: {
|
|
2369
|
+
/** Format: uuid */
|
|
2370
|
+
userid: string;
|
|
2371
|
+
};
|
|
2372
|
+
};
|
|
2373
|
+
header: {
|
|
2374
|
+
/** Preference */
|
|
2375
|
+
Prefer?: parameters["preferParams"];
|
|
2376
|
+
};
|
|
2377
|
+
};
|
|
2378
|
+
responses: {
|
|
2379
|
+
/** OK */
|
|
2380
|
+
200: unknown;
|
|
2381
|
+
};
|
|
2382
|
+
};
|
|
2383
|
+
};
|
|
2384
|
+
"/rpc/get_stats": {
|
|
2385
|
+
post: {
|
|
2386
|
+
parameters: {
|
|
2387
|
+
body: {
|
|
2388
|
+
args: {
|
|
2389
|
+
/** Format: character varying */
|
|
2390
|
+
dateid: string;
|
|
2391
|
+
/** Format: uuid */
|
|
2392
|
+
userid: string;
|
|
2393
|
+
};
|
|
2394
|
+
};
|
|
2395
|
+
header: {
|
|
2396
|
+
/** Preference */
|
|
2397
|
+
Prefer?: parameters["preferParams"];
|
|
2398
|
+
};
|
|
2399
|
+
};
|
|
2400
|
+
responses: {
|
|
2401
|
+
/** OK */
|
|
2402
|
+
200: unknown;
|
|
2403
|
+
};
|
|
2404
|
+
};
|
|
2405
|
+
};
|
|
2406
|
+
"/rpc/get_current_plan_name": {
|
|
2407
|
+
post: {
|
|
2408
|
+
parameters: {
|
|
2409
|
+
body: {
|
|
2410
|
+
args: {
|
|
2411
|
+
/** Format: uuid */
|
|
2412
|
+
userid: string;
|
|
2413
|
+
};
|
|
2414
|
+
};
|
|
2415
|
+
header: {
|
|
2416
|
+
/** Preference */
|
|
2417
|
+
Prefer?: parameters["preferParams"];
|
|
2418
|
+
};
|
|
2419
|
+
};
|
|
2420
|
+
responses: {
|
|
2421
|
+
/** OK */
|
|
2422
|
+
200: unknown;
|
|
2423
|
+
};
|
|
2424
|
+
};
|
|
2425
|
+
};
|
|
2426
|
+
"/rpc/is_canceled": {
|
|
2427
|
+
post: {
|
|
2428
|
+
parameters: {
|
|
2429
|
+
body: {
|
|
2430
|
+
args: {
|
|
2431
|
+
/** Format: uuid */
|
|
2432
|
+
userid: string;
|
|
2433
|
+
};
|
|
2434
|
+
};
|
|
2435
|
+
header: {
|
|
2436
|
+
/** Preference */
|
|
2437
|
+
Prefer?: parameters["preferParams"];
|
|
2438
|
+
};
|
|
2439
|
+
};
|
|
2440
|
+
responses: {
|
|
2441
|
+
/** OK */
|
|
2442
|
+
200: unknown;
|
|
2443
|
+
};
|
|
2444
|
+
};
|
|
2445
|
+
};
|
|
2446
|
+
"/rpc/get_dl_by_month_by_app": {
|
|
2447
|
+
post: {
|
|
2448
|
+
parameters: {
|
|
2449
|
+
body: {
|
|
2450
|
+
args: {
|
|
2451
|
+
/** Format: character varying */
|
|
2452
|
+
appid: string;
|
|
2453
|
+
/** Format: integer */
|
|
2454
|
+
pastmonth: number;
|
|
2455
|
+
/** Format: uuid */
|
|
2456
|
+
userid: string;
|
|
2457
|
+
};
|
|
2458
|
+
};
|
|
2459
|
+
header: {
|
|
2460
|
+
/** Preference */
|
|
2461
|
+
Prefer?: parameters["preferParams"];
|
|
2462
|
+
};
|
|
2463
|
+
};
|
|
2464
|
+
responses: {
|
|
2465
|
+
/** OK */
|
|
2466
|
+
200: unknown;
|
|
2467
|
+
};
|
|
2468
|
+
};
|
|
2469
|
+
};
|
|
2470
|
+
"/rpc/find_best_plan": {
|
|
2214
2471
|
post: {
|
|
2215
2472
|
parameters: {
|
|
2216
2473
|
body: {
|
|
2217
2474
|
args: {
|
|
2218
2475
|
/** Format: bigint */
|
|
2219
|
-
apps_n: number;
|
|
2220
|
-
/** Format: bigint */
|
|
2221
|
-
channels_n: number;
|
|
2222
|
-
/** Format: bigint */
|
|
2476
|
+
apps_n: number;
|
|
2477
|
+
/** Format: bigint */
|
|
2478
|
+
channels_n: number;
|
|
2479
|
+
/** Format: bigint */
|
|
2223
2480
|
shared_n: number;
|
|
2224
2481
|
/** Format: bigint */
|
|
2225
2482
|
updates_n: number;
|
|
@@ -2243,12 +2500,58 @@ export interface paths {
|
|
|
2243
2500
|
parameters: {
|
|
2244
2501
|
body: {
|
|
2245
2502
|
args: {
|
|
2246
|
-
/** Format: character varying */
|
|
2247
|
-
name_channel: string;
|
|
2248
2503
|
/** Format: text */
|
|
2249
2504
|
apikey: string;
|
|
2250
2505
|
/** Format: character varying */
|
|
2251
2506
|
appid: string;
|
|
2507
|
+
/** Format: character varying */
|
|
2508
|
+
name_channel: string;
|
|
2509
|
+
};
|
|
2510
|
+
};
|
|
2511
|
+
header: {
|
|
2512
|
+
/** Preference */
|
|
2513
|
+
Prefer?: parameters["preferParams"];
|
|
2514
|
+
};
|
|
2515
|
+
};
|
|
2516
|
+
responses: {
|
|
2517
|
+
/** OK */
|
|
2518
|
+
200: unknown;
|
|
2519
|
+
};
|
|
2520
|
+
};
|
|
2521
|
+
};
|
|
2522
|
+
"/rpc/get_total_stats": {
|
|
2523
|
+
post: {
|
|
2524
|
+
parameters: {
|
|
2525
|
+
body: {
|
|
2526
|
+
args: {
|
|
2527
|
+
/** Format: character varying */
|
|
2528
|
+
dateid: string;
|
|
2529
|
+
/** Format: uuid */
|
|
2530
|
+
userid: string;
|
|
2531
|
+
};
|
|
2532
|
+
};
|
|
2533
|
+
header: {
|
|
2534
|
+
/** Preference */
|
|
2535
|
+
Prefer?: parameters["preferParams"];
|
|
2536
|
+
};
|
|
2537
|
+
};
|
|
2538
|
+
responses: {
|
|
2539
|
+
/** OK */
|
|
2540
|
+
200: unknown;
|
|
2541
|
+
};
|
|
2542
|
+
};
|
|
2543
|
+
};
|
|
2544
|
+
"/rpc/increment_version_stats": {
|
|
2545
|
+
post: {
|
|
2546
|
+
parameters: {
|
|
2547
|
+
body: {
|
|
2548
|
+
args: {
|
|
2549
|
+
/** Format: character varying */
|
|
2550
|
+
app_id: string;
|
|
2551
|
+
/** Format: integer */
|
|
2552
|
+
devices: number;
|
|
2553
|
+
/** Format: bigint */
|
|
2554
|
+
version_id: number;
|
|
2252
2555
|
};
|
|
2253
2556
|
};
|
|
2254
2557
|
header: {
|
|
@@ -2298,9 +2601,29 @@ export interface paths {
|
|
|
2298
2601
|
/** Format: text */
|
|
2299
2602
|
apikey: string;
|
|
2300
2603
|
/** Format: character varying */
|
|
2301
|
-
name_version: string;
|
|
2302
|
-
/** Format: character varying */
|
|
2303
2604
|
appid: string;
|
|
2605
|
+
/** Format: character varying */
|
|
2606
|
+
name_version: string;
|
|
2607
|
+
};
|
|
2608
|
+
};
|
|
2609
|
+
header: {
|
|
2610
|
+
/** Preference */
|
|
2611
|
+
Prefer?: parameters["preferParams"];
|
|
2612
|
+
};
|
|
2613
|
+
};
|
|
2614
|
+
responses: {
|
|
2615
|
+
/** OK */
|
|
2616
|
+
200: unknown;
|
|
2617
|
+
};
|
|
2618
|
+
};
|
|
2619
|
+
};
|
|
2620
|
+
"/rpc/is_good_plan_v2": {
|
|
2621
|
+
post: {
|
|
2622
|
+
parameters: {
|
|
2623
|
+
body: {
|
|
2624
|
+
args: {
|
|
2625
|
+
/** Format: uuid */
|
|
2626
|
+
userid: string;
|
|
2304
2627
|
};
|
|
2305
2628
|
};
|
|
2306
2629
|
header: {
|
|
@@ -2354,6 +2677,26 @@ export interface paths {
|
|
|
2354
2677
|
};
|
|
2355
2678
|
};
|
|
2356
2679
|
};
|
|
2680
|
+
"/rpc/is_admin": {
|
|
2681
|
+
post: {
|
|
2682
|
+
parameters: {
|
|
2683
|
+
body: {
|
|
2684
|
+
args: {
|
|
2685
|
+
/** Format: uuid */
|
|
2686
|
+
userid: string;
|
|
2687
|
+
};
|
|
2688
|
+
};
|
|
2689
|
+
header: {
|
|
2690
|
+
/** Preference */
|
|
2691
|
+
Prefer?: parameters["preferParams"];
|
|
2692
|
+
};
|
|
2693
|
+
};
|
|
2694
|
+
responses: {
|
|
2695
|
+
/** OK */
|
|
2696
|
+
200: unknown;
|
|
2697
|
+
};
|
|
2698
|
+
};
|
|
2699
|
+
};
|
|
2357
2700
|
"/rpc/exist_app": {
|
|
2358
2701
|
post: {
|
|
2359
2702
|
parameters: {
|
|
@@ -2396,15 +2739,39 @@ export interface paths {
|
|
|
2396
2739
|
};
|
|
2397
2740
|
};
|
|
2398
2741
|
};
|
|
2742
|
+
"/rpc/find_best_plan_v2": {
|
|
2743
|
+
post: {
|
|
2744
|
+
parameters: {
|
|
2745
|
+
body: {
|
|
2746
|
+
args: {
|
|
2747
|
+
/** Format: bigint */
|
|
2748
|
+
bandwidth: number;
|
|
2749
|
+
/** Format: bigint */
|
|
2750
|
+
mau: number;
|
|
2751
|
+
/** Format: bigint */
|
|
2752
|
+
storage: number;
|
|
2753
|
+
};
|
|
2754
|
+
};
|
|
2755
|
+
header: {
|
|
2756
|
+
/** Preference */
|
|
2757
|
+
Prefer?: parameters["preferParams"];
|
|
2758
|
+
};
|
|
2759
|
+
};
|
|
2760
|
+
responses: {
|
|
2761
|
+
/** OK */
|
|
2762
|
+
200: unknown;
|
|
2763
|
+
};
|
|
2764
|
+
};
|
|
2765
|
+
};
|
|
2399
2766
|
"/rpc/is_app_shared": {
|
|
2400
2767
|
post: {
|
|
2401
2768
|
parameters: {
|
|
2402
2769
|
body: {
|
|
2403
2770
|
args: {
|
|
2404
|
-
/** Format: uuid */
|
|
2405
|
-
userid: string;
|
|
2406
2771
|
/** Format: character varying */
|
|
2407
2772
|
appid: string;
|
|
2773
|
+
/** Format: uuid */
|
|
2774
|
+
userid: string;
|
|
2408
2775
|
};
|
|
2409
2776
|
};
|
|
2410
2777
|
header: {
|
|
@@ -2458,6 +2825,30 @@ export interface paths {
|
|
|
2458
2825
|
};
|
|
2459
2826
|
};
|
|
2460
2827
|
};
|
|
2828
|
+
"/rpc/find_fit_plan_v2": {
|
|
2829
|
+
post: {
|
|
2830
|
+
parameters: {
|
|
2831
|
+
body: {
|
|
2832
|
+
args: {
|
|
2833
|
+
/** Format: bigint */
|
|
2834
|
+
bandwidth: number;
|
|
2835
|
+
/** Format: bigint */
|
|
2836
|
+
mau: number;
|
|
2837
|
+
/** Format: bigint */
|
|
2838
|
+
storage: number;
|
|
2839
|
+
};
|
|
2840
|
+
};
|
|
2841
|
+
header: {
|
|
2842
|
+
/** Preference */
|
|
2843
|
+
Prefer?: parameters["preferParams"];
|
|
2844
|
+
};
|
|
2845
|
+
};
|
|
2846
|
+
responses: {
|
|
2847
|
+
/** OK */
|
|
2848
|
+
200: unknown;
|
|
2849
|
+
};
|
|
2850
|
+
};
|
|
2851
|
+
};
|
|
2461
2852
|
"/rpc/is_version_shared": {
|
|
2462
2853
|
post: {
|
|
2463
2854
|
parameters: {
|
|
@@ -2544,12 +2935,12 @@ export interface paths {
|
|
|
2544
2935
|
parameters: {
|
|
2545
2936
|
body: {
|
|
2546
2937
|
args: {
|
|
2547
|
-
/** Format: public.key_mode[] */
|
|
2548
|
-
keymode: string;
|
|
2549
2938
|
/** Format: text */
|
|
2550
2939
|
apikey: string;
|
|
2551
2940
|
/** Format: character varying */
|
|
2552
2941
|
app_id: string;
|
|
2942
|
+
/** Format: public.key_mode[] */
|
|
2943
|
+
keymode: string;
|
|
2553
2944
|
};
|
|
2554
2945
|
};
|
|
2555
2946
|
header: {
|
|
@@ -2625,10 +3016,10 @@ export interface paths {
|
|
|
2625
3016
|
parameters: {
|
|
2626
3017
|
body: {
|
|
2627
3018
|
args: {
|
|
2628
|
-
/** Format: uuid */
|
|
2629
|
-
userid: string;
|
|
2630
3019
|
/** Format: integer */
|
|
2631
3020
|
pastmonth: number;
|
|
3021
|
+
/** Format: uuid */
|
|
3022
|
+
userid: string;
|
|
2632
3023
|
};
|
|
2633
3024
|
};
|
|
2634
3025
|
header: {
|
|
@@ -2645,7 +3036,7 @@ export interface paths {
|
|
|
2645
3036
|
}
|
|
2646
3037
|
|
|
2647
3038
|
export interface definitions {
|
|
2648
|
-
|
|
3039
|
+
channels: {
|
|
2649
3040
|
/**
|
|
2650
3041
|
* Format: bigint
|
|
2651
3042
|
* @description Note:
|
|
@@ -2656,174 +3047,320 @@ export interface definitions {
|
|
|
2656
3047
|
* Format: timestamp with time zone
|
|
2657
3048
|
* @default now()
|
|
2658
3049
|
*/
|
|
2659
|
-
created_at
|
|
3050
|
+
created_at: string;
|
|
3051
|
+
/** Format: character varying */
|
|
3052
|
+
name: string;
|
|
2660
3053
|
/**
|
|
2661
|
-
* Format:
|
|
3054
|
+
* Format: character varying
|
|
2662
3055
|
* @description Note:
|
|
2663
|
-
* This is a Foreign Key to `
|
|
3056
|
+
* This is a Foreign Key to `apps.app_id`.<fk table='apps' column='app_id'/>
|
|
2664
3057
|
*/
|
|
2665
|
-
|
|
2666
|
-
/** Format: character varying */
|
|
2667
|
-
key: string;
|
|
3058
|
+
app_id: string;
|
|
2668
3059
|
/**
|
|
2669
|
-
* Format:
|
|
2670
|
-
* @
|
|
3060
|
+
* Format: bigint
|
|
3061
|
+
* @description Note:
|
|
3062
|
+
* This is a Foreign Key to `app_versions.id`.<fk table='app_versions' column='id'/>
|
|
2671
3063
|
*/
|
|
2672
|
-
|
|
3064
|
+
version: number;
|
|
3065
|
+
/**
|
|
3066
|
+
* Format: uuid
|
|
3067
|
+
* @description Note:
|
|
3068
|
+
* This is a Foreign Key to `users.id`.<fk table='users' column='id'/>
|
|
3069
|
+
*/
|
|
3070
|
+
created_by: string;
|
|
2673
3071
|
/**
|
|
2674
3072
|
* Format: timestamp with time zone
|
|
2675
3073
|
* @default now()
|
|
2676
3074
|
*/
|
|
2677
|
-
updated_at
|
|
3075
|
+
updated_at: string;
|
|
3076
|
+
/**
|
|
3077
|
+
* Format: boolean
|
|
3078
|
+
* @default false
|
|
3079
|
+
*/
|
|
3080
|
+
public: boolean;
|
|
3081
|
+
/**
|
|
3082
|
+
* Format: boolean
|
|
3083
|
+
* @default true
|
|
3084
|
+
*/
|
|
3085
|
+
disableAutoUpdateUnderNative: boolean;
|
|
3086
|
+
/**
|
|
3087
|
+
* Format: boolean
|
|
3088
|
+
* @default true
|
|
3089
|
+
*/
|
|
3090
|
+
disableAutoUpdateToMajor: boolean;
|
|
3091
|
+
/**
|
|
3092
|
+
* Format: boolean
|
|
3093
|
+
* @default false
|
|
3094
|
+
*/
|
|
3095
|
+
beta: boolean;
|
|
3096
|
+
/**
|
|
3097
|
+
* Format: boolean
|
|
3098
|
+
* @default true
|
|
3099
|
+
*/
|
|
3100
|
+
ios: boolean;
|
|
3101
|
+
/**
|
|
3102
|
+
* Format: boolean
|
|
3103
|
+
* @default true
|
|
3104
|
+
*/
|
|
3105
|
+
android: boolean;
|
|
3106
|
+
/**
|
|
3107
|
+
* Format: boolean
|
|
3108
|
+
* @default false
|
|
3109
|
+
*/
|
|
3110
|
+
allow_device_self_set: boolean;
|
|
2678
3111
|
};
|
|
2679
|
-
|
|
3112
|
+
deleted_account: {
|
|
2680
3113
|
/**
|
|
2681
|
-
* Format:
|
|
3114
|
+
* Format: timestamp with time zone
|
|
3115
|
+
* @default now()
|
|
3116
|
+
*/
|
|
3117
|
+
created_at?: string;
|
|
3118
|
+
/** Format: character varying */
|
|
3119
|
+
email: string;
|
|
3120
|
+
/**
|
|
3121
|
+
* Format: uuid
|
|
2682
3122
|
* @description Note:
|
|
2683
3123
|
* This is a Primary Key.<pk/>
|
|
2684
|
-
*
|
|
3124
|
+
* @default extensions.uuid_generate_v4()
|
|
2685
3125
|
*/
|
|
2686
|
-
|
|
2687
|
-
|
|
2688
|
-
|
|
3126
|
+
id: string;
|
|
3127
|
+
};
|
|
3128
|
+
global_stats: {
|
|
2689
3129
|
/**
|
|
2690
3130
|
* Format: timestamp with time zone
|
|
2691
3131
|
* @default now()
|
|
2692
3132
|
*/
|
|
2693
3133
|
created_at?: string;
|
|
2694
3134
|
/**
|
|
2695
|
-
* Format:
|
|
2696
|
-
* @
|
|
3135
|
+
* Format: character varying
|
|
3136
|
+
* @description Note:
|
|
3137
|
+
* This is a Primary Key.<pk/>
|
|
2697
3138
|
*/
|
|
2698
|
-
|
|
2699
|
-
/** Format: smallint */
|
|
2700
|
-
channels: number;
|
|
3139
|
+
date_id: string;
|
|
2701
3140
|
/** Format: bigint */
|
|
2702
|
-
|
|
3141
|
+
apps: number;
|
|
2703
3142
|
/** Format: bigint */
|
|
2704
|
-
|
|
3143
|
+
updates: number;
|
|
2705
3144
|
/** Format: bigint */
|
|
2706
|
-
|
|
3145
|
+
stars: number;
|
|
2707
3146
|
/** Format: bigint */
|
|
2708
|
-
|
|
3147
|
+
users?: number;
|
|
2709
3148
|
/** Format: bigint */
|
|
2710
|
-
|
|
3149
|
+
paying?: number;
|
|
3150
|
+
/** Format: bigint */
|
|
3151
|
+
trial?: number;
|
|
3152
|
+
/** Format: bigint */
|
|
3153
|
+
need_upgrade?: number;
|
|
3154
|
+
/** Format: bigint */
|
|
3155
|
+
not_paying?: number;
|
|
3156
|
+
};
|
|
3157
|
+
plans: {
|
|
3158
|
+
/**
|
|
3159
|
+
* Format: timestamp with time zone
|
|
3160
|
+
* @default now()
|
|
3161
|
+
*/
|
|
3162
|
+
created_at: string;
|
|
3163
|
+
/**
|
|
3164
|
+
* Format: timestamp with time zone
|
|
3165
|
+
* @default now()
|
|
3166
|
+
*/
|
|
3167
|
+
updated_at: string;
|
|
2711
3168
|
/**
|
|
2712
3169
|
* Format: character varying
|
|
2713
3170
|
* @description Note:
|
|
2714
3171
|
* This is a Primary Key.<pk/>
|
|
2715
|
-
* @default
|
|
3172
|
+
* @default
|
|
2716
3173
|
*/
|
|
2717
|
-
|
|
3174
|
+
name: string;
|
|
3175
|
+
/**
|
|
3176
|
+
* Format: character varying
|
|
3177
|
+
* @default
|
|
3178
|
+
*/
|
|
3179
|
+
description: string;
|
|
2718
3180
|
/** Format: bigint */
|
|
2719
|
-
|
|
2720
|
-
|
|
2721
|
-
|
|
3181
|
+
price_m: number;
|
|
3182
|
+
/** Format: bigint */
|
|
3183
|
+
price_y: number;
|
|
2722
3184
|
/**
|
|
2723
3185
|
* Format: character varying
|
|
2724
3186
|
* @description Note:
|
|
2725
3187
|
* This is a Primary Key.<pk/>
|
|
3188
|
+
* @default
|
|
2726
3189
|
*/
|
|
2727
|
-
|
|
3190
|
+
stripe_id: string;
|
|
3191
|
+
/** Format: bigint */
|
|
3192
|
+
app: number;
|
|
3193
|
+
/** Format: bigint */
|
|
3194
|
+
channel: number;
|
|
3195
|
+
/** Format: bigint */
|
|
3196
|
+
update: number;
|
|
3197
|
+
/** Format: bigint */
|
|
3198
|
+
version: number;
|
|
3199
|
+
/** Format: bigint */
|
|
3200
|
+
shared: number;
|
|
2728
3201
|
/**
|
|
2729
|
-
* Format:
|
|
2730
|
-
* @default
|
|
3202
|
+
* Format: boolean
|
|
3203
|
+
* @default false
|
|
2731
3204
|
*/
|
|
2732
|
-
|
|
3205
|
+
abtest: boolean;
|
|
2733
3206
|
/**
|
|
2734
|
-
* Format:
|
|
2735
|
-
* @default
|
|
3207
|
+
* Format: boolean
|
|
3208
|
+
* @default false
|
|
2736
3209
|
*/
|
|
2737
|
-
|
|
2738
|
-
/** Format: bigint */
|
|
2739
|
-
mlu?: number;
|
|
2740
|
-
/** Format: bigint */
|
|
2741
|
-
versions?: number;
|
|
2742
|
-
/** Format: bigint */
|
|
2743
|
-
mlu_real?: number;
|
|
3210
|
+
progressive_deploy: boolean;
|
|
2744
3211
|
/**
|
|
2745
|
-
* Format:
|
|
3212
|
+
* Format: uuid
|
|
2746
3213
|
* @description Note:
|
|
2747
3214
|
* This is a Primary Key.<pk/>
|
|
3215
|
+
* @default extensions.uuid_generate_v4()
|
|
2748
3216
|
*/
|
|
2749
|
-
|
|
3217
|
+
id: string;
|
|
3218
|
+
/** Format: character varying */
|
|
3219
|
+
price_m_id: string;
|
|
3220
|
+
/** Format: character varying */
|
|
3221
|
+
price_y_id: string;
|
|
3222
|
+
/** Format: double precision */
|
|
3223
|
+
storage: number;
|
|
3224
|
+
/** Format: double precision */
|
|
3225
|
+
bandwidth: number;
|
|
2750
3226
|
/** Format: bigint */
|
|
2751
|
-
|
|
3227
|
+
mau: number;
|
|
3228
|
+
/**
|
|
3229
|
+
* Format: character varying
|
|
3230
|
+
* @default
|
|
3231
|
+
*/
|
|
3232
|
+
market_desc?: string;
|
|
3233
|
+
/** Format: double precision */
|
|
3234
|
+
storage_unit?: number;
|
|
3235
|
+
/** Format: double precision */
|
|
3236
|
+
bandwidth_unit?: number;
|
|
3237
|
+
/** Format: double precision */
|
|
3238
|
+
mau_unit?: number;
|
|
2752
3239
|
};
|
|
2753
|
-
|
|
3240
|
+
stripe_info: {
|
|
2754
3241
|
/**
|
|
2755
|
-
* Format:
|
|
2756
|
-
* @
|
|
2757
|
-
* This is a Primary Key.<pk/>
|
|
3242
|
+
* Format: timestamp with time zone
|
|
3243
|
+
* @default now()
|
|
2758
3244
|
*/
|
|
2759
|
-
|
|
3245
|
+
created_at: string;
|
|
2760
3246
|
/**
|
|
2761
3247
|
* Format: timestamp with time zone
|
|
2762
3248
|
* @default now()
|
|
2763
3249
|
*/
|
|
2764
|
-
|
|
3250
|
+
updated_at: string;
|
|
3251
|
+
/** Format: character varying */
|
|
3252
|
+
subscription_id?: string;
|
|
2765
3253
|
/**
|
|
2766
3254
|
* Format: character varying
|
|
2767
3255
|
* @description Note:
|
|
2768
|
-
* This is a
|
|
3256
|
+
* This is a Primary Key.<pk/>
|
|
2769
3257
|
*/
|
|
2770
|
-
|
|
2771
|
-
/** Format: character varying */
|
|
2772
|
-
name: string;
|
|
2773
|
-
/** Format: character varying */
|
|
2774
|
-
bucket_id?: string;
|
|
3258
|
+
customer_id: string;
|
|
2775
3259
|
/**
|
|
2776
|
-
* Format:
|
|
3260
|
+
* Format: public.stripe_status
|
|
3261
|
+
* @enum {string}
|
|
3262
|
+
*/
|
|
3263
|
+
status?:
|
|
3264
|
+
| "created"
|
|
3265
|
+
| "succeeded"
|
|
3266
|
+
| "updated"
|
|
3267
|
+
| "failed"
|
|
3268
|
+
| "deleted"
|
|
3269
|
+
| "canceled";
|
|
3270
|
+
/**
|
|
3271
|
+
* Format: character varying
|
|
2777
3272
|
* @description Note:
|
|
2778
|
-
* This is a Foreign Key to `
|
|
3273
|
+
* This is a Foreign Key to `plans.stripe_id`.<fk table='plans' column='stripe_id'/>
|
|
3274
|
+
* @default free
|
|
2779
3275
|
*/
|
|
2780
|
-
|
|
3276
|
+
product_id: string;
|
|
2781
3277
|
/**
|
|
2782
3278
|
* Format: timestamp with time zone
|
|
2783
3279
|
* @default now()
|
|
2784
3280
|
*/
|
|
2785
|
-
|
|
3281
|
+
trial_at: string;
|
|
3282
|
+
/** Format: character varying */
|
|
3283
|
+
price_id?: string;
|
|
2786
3284
|
/**
|
|
2787
3285
|
* Format: boolean
|
|
2788
|
-
* @default
|
|
3286
|
+
* @default true
|
|
2789
3287
|
*/
|
|
2790
|
-
|
|
2791
|
-
/** Format: character varying */
|
|
2792
|
-
external_url?: string;
|
|
2793
|
-
/** Format: character varying */
|
|
2794
|
-
checksum?: string;
|
|
3288
|
+
is_good_plan?: boolean;
|
|
2795
3289
|
};
|
|
2796
|
-
|
|
3290
|
+
devices_onprem: {
|
|
2797
3291
|
/**
|
|
2798
3292
|
* Format: timestamp with time zone
|
|
2799
3293
|
* @default now()
|
|
2800
3294
|
*/
|
|
2801
3295
|
created_at?: string;
|
|
2802
3296
|
/**
|
|
2803
|
-
* Format:
|
|
2804
|
-
* @
|
|
2805
|
-
* This is a Primary Key.<pk/>
|
|
3297
|
+
* Format: timestamp with time zone
|
|
3298
|
+
* @default now()
|
|
2806
3299
|
*/
|
|
2807
|
-
|
|
3300
|
+
updated_at?: string;
|
|
3301
|
+
/**
|
|
3302
|
+
* Format: public.platform_os
|
|
3303
|
+
* @enum {string}
|
|
3304
|
+
*/
|
|
3305
|
+
platform?: "ios" | "android";
|
|
3306
|
+
/**
|
|
3307
|
+
* Format: text
|
|
3308
|
+
* @default 2.3.3
|
|
3309
|
+
*/
|
|
3310
|
+
plugin_version: string;
|
|
2808
3311
|
/** Format: character varying */
|
|
2809
|
-
|
|
3312
|
+
version?: string;
|
|
3313
|
+
/** Format: character varying */
|
|
3314
|
+
app_id?: string;
|
|
3315
|
+
/** Format: character varying */
|
|
3316
|
+
device_id?: string;
|
|
3317
|
+
/** Format: character varying */
|
|
3318
|
+
os_version?: string;
|
|
2810
3319
|
/**
|
|
2811
3320
|
* Format: uuid
|
|
2812
3321
|
* @description Note:
|
|
2813
|
-
* This is a
|
|
3322
|
+
* This is a Primary Key.<pk/>
|
|
3323
|
+
* @default extensions.uuid_generate_v4()
|
|
2814
3324
|
*/
|
|
2815
|
-
|
|
3325
|
+
id: string;
|
|
3326
|
+
/**
|
|
3327
|
+
* Format: text
|
|
3328
|
+
* @default builtin
|
|
3329
|
+
*/
|
|
3330
|
+
version_build?: string;
|
|
3331
|
+
};
|
|
3332
|
+
stats_onprem: {
|
|
3333
|
+
/**
|
|
3334
|
+
* Format: bigint
|
|
3335
|
+
* @description Note:
|
|
3336
|
+
* This is a Primary Key.<pk/>
|
|
3337
|
+
*/
|
|
3338
|
+
id: number;
|
|
3339
|
+
/**
|
|
3340
|
+
* Format: timestamp with time zone
|
|
3341
|
+
* @default now()
|
|
3342
|
+
*/
|
|
3343
|
+
created_at?: string;
|
|
3344
|
+
/**
|
|
3345
|
+
* Format: public.platform_os
|
|
3346
|
+
* @enum {string}
|
|
3347
|
+
*/
|
|
3348
|
+
platform: "ios" | "android";
|
|
3349
|
+
/** Format: text */
|
|
3350
|
+
action: string;
|
|
2816
3351
|
/** Format: character varying */
|
|
2817
|
-
|
|
3352
|
+
device_id: string;
|
|
3353
|
+
/** Format: text */
|
|
3354
|
+
version_build: string;
|
|
2818
3355
|
/** Format: character varying */
|
|
2819
|
-
|
|
2820
|
-
/** Format: timestamp with time zone */
|
|
2821
|
-
updated_at?: string;
|
|
3356
|
+
app_id: string;
|
|
2822
3357
|
/**
|
|
2823
|
-
* Format:
|
|
2824
|
-
* @default
|
|
3358
|
+
* Format: timestamp with time zone
|
|
3359
|
+
* @default now()
|
|
2825
3360
|
*/
|
|
2826
|
-
|
|
3361
|
+
updated_at?: string;
|
|
3362
|
+
/** Format: character varying */
|
|
3363
|
+
version: string;
|
|
2827
3364
|
};
|
|
2828
3365
|
channel_devices: {
|
|
2829
3366
|
/**
|
|
@@ -2862,7 +3399,39 @@ export interface definitions {
|
|
|
2862
3399
|
*/
|
|
2863
3400
|
device_id: string;
|
|
2864
3401
|
};
|
|
2865
|
-
|
|
3402
|
+
apps: {
|
|
3403
|
+
/**
|
|
3404
|
+
* Format: timestamp with time zone
|
|
3405
|
+
* @default now()
|
|
3406
|
+
*/
|
|
3407
|
+
created_at?: string;
|
|
3408
|
+
/**
|
|
3409
|
+
* Format: character varying
|
|
3410
|
+
* @description Note:
|
|
3411
|
+
* This is a Primary Key.<pk/>
|
|
3412
|
+
*/
|
|
3413
|
+
app_id: string;
|
|
3414
|
+
/** Format: character varying */
|
|
3415
|
+
icon_url: string;
|
|
3416
|
+
/**
|
|
3417
|
+
* Format: uuid
|
|
3418
|
+
* @description Note:
|
|
3419
|
+
* This is a Foreign Key to `users.id`.<fk table='users' column='id'/>
|
|
3420
|
+
*/
|
|
3421
|
+
user_id: string;
|
|
3422
|
+
/** Format: character varying */
|
|
3423
|
+
name?: string;
|
|
3424
|
+
/** Format: character varying */
|
|
3425
|
+
last_version?: string;
|
|
3426
|
+
/** Format: timestamp with time zone */
|
|
3427
|
+
updated_at?: string;
|
|
3428
|
+
/**
|
|
3429
|
+
* Format: uuid
|
|
3430
|
+
* @default extensions.uuid_generate_v4()
|
|
3431
|
+
*/
|
|
3432
|
+
id?: string;
|
|
3433
|
+
};
|
|
3434
|
+
apikeys: {
|
|
2866
3435
|
/**
|
|
2867
3436
|
* Format: bigint
|
|
2868
3437
|
* @description Note:
|
|
@@ -2880,31 +3449,45 @@ export interface definitions {
|
|
|
2880
3449
|
* This is a Foreign Key to `users.id`.<fk table='users' column='id'/>
|
|
2881
3450
|
*/
|
|
2882
3451
|
user_id: string;
|
|
3452
|
+
/** Format: character varying */
|
|
3453
|
+
key: string;
|
|
2883
3454
|
/**
|
|
2884
|
-
* Format:
|
|
2885
|
-
* @
|
|
2886
|
-
* This is a Foreign Key to `channels.id`.<fk table='channels' column='id'/>
|
|
3455
|
+
* Format: public.key_mode
|
|
3456
|
+
* @enum {string}
|
|
2887
3457
|
*/
|
|
2888
|
-
|
|
3458
|
+
mode: "read" | "write" | "all" | "upload";
|
|
2889
3459
|
/**
|
|
2890
|
-
* Format:
|
|
3460
|
+
* Format: timestamp with time zone
|
|
3461
|
+
* @default now()
|
|
3462
|
+
*/
|
|
3463
|
+
updated_at?: string;
|
|
3464
|
+
};
|
|
3465
|
+
/** @description price for pay as you go */
|
|
3466
|
+
pay_as_you_go: {
|
|
3467
|
+
/**
|
|
3468
|
+
* Format: bigint
|
|
2891
3469
|
* @description Note:
|
|
2892
|
-
* This is a
|
|
3470
|
+
* This is a Primary Key.<pk/>
|
|
2893
3471
|
*/
|
|
2894
|
-
|
|
3472
|
+
id: number;
|
|
2895
3473
|
/**
|
|
2896
3474
|
* Format: timestamp with time zone
|
|
2897
3475
|
* @default now()
|
|
2898
3476
|
*/
|
|
2899
|
-
|
|
3477
|
+
created_at?: string;
|
|
3478
|
+
/** Format: double precision */
|
|
3479
|
+
mau: number;
|
|
3480
|
+
/** Format: double precision */
|
|
3481
|
+
storage: number;
|
|
3482
|
+
/** Format: double precision */
|
|
3483
|
+
bandwidth: number;
|
|
2900
3484
|
/**
|
|
2901
|
-
* Format:
|
|
2902
|
-
* @
|
|
2903
|
-
* This is a Foreign Key to `users.id`.<fk table='users' column='id'/>
|
|
3485
|
+
* Format: public.pay_as_you_go_type
|
|
3486
|
+
* @enum {string}
|
|
2904
3487
|
*/
|
|
2905
|
-
|
|
3488
|
+
type: "base" | "units";
|
|
2906
3489
|
};
|
|
2907
|
-
|
|
3490
|
+
stats: {
|
|
2908
3491
|
/**
|
|
2909
3492
|
* Format: bigint
|
|
2910
3493
|
* @description Note:
|
|
@@ -2915,15 +3498,22 @@ export interface definitions {
|
|
|
2915
3498
|
* Format: timestamp with time zone
|
|
2916
3499
|
* @default now()
|
|
2917
3500
|
*/
|
|
2918
|
-
created_at
|
|
2919
|
-
/** Format: character varying */
|
|
2920
|
-
name: string;
|
|
3501
|
+
created_at?: string;
|
|
2921
3502
|
/**
|
|
2922
|
-
* Format:
|
|
3503
|
+
* Format: public.platform_os
|
|
3504
|
+
* @enum {string}
|
|
3505
|
+
*/
|
|
3506
|
+
platform: "ios" | "android";
|
|
3507
|
+
/** Format: text */
|
|
3508
|
+
action: string;
|
|
3509
|
+
/**
|
|
3510
|
+
* Format: text
|
|
2923
3511
|
* @description Note:
|
|
2924
|
-
* This is a Foreign Key to `
|
|
3512
|
+
* This is a Foreign Key to `devices.device_id`.<fk table='devices' column='device_id'/>
|
|
2925
3513
|
*/
|
|
2926
|
-
|
|
3514
|
+
device_id: string;
|
|
3515
|
+
/** Format: text */
|
|
3516
|
+
version_build: string;
|
|
2927
3517
|
/**
|
|
2928
3518
|
* Format: bigint
|
|
2929
3519
|
* @description Note:
|
|
@@ -2931,131 +3521,107 @@ export interface definitions {
|
|
|
2931
3521
|
*/
|
|
2932
3522
|
version: number;
|
|
2933
3523
|
/**
|
|
2934
|
-
* Format:
|
|
3524
|
+
* Format: character varying
|
|
2935
3525
|
* @description Note:
|
|
2936
|
-
* This is a Foreign Key to `
|
|
3526
|
+
* This is a Foreign Key to `apps.app_id`.<fk table='apps' column='app_id'/>
|
|
2937
3527
|
*/
|
|
2938
|
-
|
|
3528
|
+
app_id: string;
|
|
2939
3529
|
/**
|
|
2940
3530
|
* Format: timestamp with time zone
|
|
2941
3531
|
* @default now()
|
|
2942
3532
|
*/
|
|
2943
|
-
updated_at
|
|
3533
|
+
updated_at?: string;
|
|
3534
|
+
};
|
|
3535
|
+
users: {
|
|
2944
3536
|
/**
|
|
2945
|
-
* Format:
|
|
2946
|
-
* @default
|
|
3537
|
+
* Format: timestamp with time zone
|
|
3538
|
+
* @default now()
|
|
2947
3539
|
*/
|
|
2948
|
-
|
|
3540
|
+
created_at?: string;
|
|
3541
|
+
/** Format: character varying */
|
|
3542
|
+
image_url?: string;
|
|
3543
|
+
/** Format: character varying */
|
|
3544
|
+
first_name?: string;
|
|
3545
|
+
/** Format: character varying */
|
|
3546
|
+
last_name?: string;
|
|
3547
|
+
/** Format: character varying */
|
|
3548
|
+
country?: string;
|
|
3549
|
+
/** Format: character varying */
|
|
3550
|
+
email: string;
|
|
2949
3551
|
/**
|
|
2950
|
-
* Format:
|
|
2951
|
-
* @
|
|
3552
|
+
* Format: uuid
|
|
3553
|
+
* @description Note:
|
|
3554
|
+
* This is a Primary Key.<pk/>
|
|
2952
3555
|
*/
|
|
2953
|
-
|
|
3556
|
+
id: string;
|
|
2954
3557
|
/**
|
|
2955
|
-
* Format:
|
|
2956
|
-
* @default
|
|
3558
|
+
* Format: timestamp with time zone
|
|
3559
|
+
* @default now()
|
|
2957
3560
|
*/
|
|
2958
|
-
|
|
3561
|
+
updated_at?: string;
|
|
2959
3562
|
/**
|
|
2960
3563
|
* Format: boolean
|
|
2961
3564
|
* @default false
|
|
2962
3565
|
*/
|
|
2963
|
-
|
|
2964
|
-
};
|
|
2965
|
-
deleted_account: {
|
|
3566
|
+
enableNotifications: boolean;
|
|
2966
3567
|
/**
|
|
2967
|
-
* Format:
|
|
2968
|
-
* @default
|
|
3568
|
+
* Format: boolean
|
|
3569
|
+
* @default false
|
|
2969
3570
|
*/
|
|
2970
|
-
|
|
2971
|
-
/**
|
|
2972
|
-
|
|
3571
|
+
optForNewsletters: boolean;
|
|
3572
|
+
/**
|
|
3573
|
+
* Format: boolean
|
|
3574
|
+
* @default false
|
|
3575
|
+
*/
|
|
3576
|
+
legalAccepted: boolean;
|
|
2973
3577
|
/**
|
|
2974
|
-
* Format:
|
|
3578
|
+
* Format: character varying
|
|
2975
3579
|
* @description Note:
|
|
2976
|
-
* This is a
|
|
2977
|
-
* @default extensions.uuid_generate_v4()
|
|
3580
|
+
* This is a Foreign Key to `stripe_info.customer_id`.<fk table='stripe_info' column='customer_id'/>
|
|
2978
3581
|
*/
|
|
2979
|
-
|
|
3582
|
+
customer_id?: string;
|
|
2980
3583
|
};
|
|
2981
|
-
|
|
3584
|
+
channel_users: {
|
|
2982
3585
|
/**
|
|
2983
|
-
* Format:
|
|
2984
|
-
* @
|
|
3586
|
+
* Format: bigint
|
|
3587
|
+
* @description Note:
|
|
3588
|
+
* This is a Primary Key.<pk/>
|
|
2985
3589
|
*/
|
|
2986
|
-
|
|
3590
|
+
id: number;
|
|
2987
3591
|
/**
|
|
2988
3592
|
* Format: timestamp with time zone
|
|
2989
3593
|
* @default now()
|
|
2990
3594
|
*/
|
|
2991
|
-
|
|
3595
|
+
created_at?: string;
|
|
2992
3596
|
/**
|
|
2993
|
-
* Format:
|
|
3597
|
+
* Format: uuid
|
|
2994
3598
|
* @description Note:
|
|
2995
|
-
* This is a
|
|
3599
|
+
* This is a Foreign Key to `users.id`.<fk table='users' column='id'/>
|
|
2996
3600
|
*/
|
|
2997
|
-
|
|
3601
|
+
user_id: string;
|
|
2998
3602
|
/**
|
|
2999
3603
|
* Format: bigint
|
|
3000
3604
|
* @description Note:
|
|
3001
|
-
* This is a Foreign Key to `
|
|
3605
|
+
* This is a Foreign Key to `channels.id`.<fk table='channels' column='id'/>
|
|
3002
3606
|
*/
|
|
3003
|
-
|
|
3607
|
+
channel_id: number;
|
|
3004
3608
|
/**
|
|
3005
3609
|
* Format: character varying
|
|
3006
3610
|
* @description Note:
|
|
3007
3611
|
* This is a Foreign Key to `apps.app_id`.<fk table='apps' column='app_id'/>
|
|
3008
3612
|
*/
|
|
3009
3613
|
app_id: string;
|
|
3010
|
-
/**
|
|
3011
|
-
* Format: public.platform_os
|
|
3012
|
-
* @enum {string}
|
|
3013
|
-
*/
|
|
3014
|
-
platform?: "ios" | "android";
|
|
3015
|
-
/**
|
|
3016
|
-
* Format: text
|
|
3017
|
-
* @default 2.3.3
|
|
3018
|
-
*/
|
|
3019
|
-
plugin_version: string;
|
|
3020
|
-
/** Format: character varying */
|
|
3021
|
-
os_version?: string;
|
|
3022
|
-
};
|
|
3023
|
-
devices_onprem: {
|
|
3024
|
-
/**
|
|
3025
|
-
* Format: timestamp with time zone
|
|
3026
|
-
* @default now()
|
|
3027
|
-
*/
|
|
3028
|
-
created_at?: string;
|
|
3029
3614
|
/**
|
|
3030
3615
|
* Format: timestamp with time zone
|
|
3031
3616
|
* @default now()
|
|
3032
3617
|
*/
|
|
3033
|
-
updated_at
|
|
3034
|
-
/**
|
|
3035
|
-
* Format: public.platform_os
|
|
3036
|
-
* @enum {string}
|
|
3037
|
-
*/
|
|
3038
|
-
platform?: "ios" | "android";
|
|
3039
|
-
/**
|
|
3040
|
-
* Format: text
|
|
3041
|
-
* @default 2.3.3
|
|
3042
|
-
*/
|
|
3043
|
-
plugin_version: string;
|
|
3044
|
-
/** Format: character varying */
|
|
3045
|
-
version?: string;
|
|
3046
|
-
/** Format: character varying */
|
|
3047
|
-
app_id?: string;
|
|
3048
|
-
/** Format: character varying */
|
|
3049
|
-
device_id?: string;
|
|
3050
|
-
/** Format: character varying */
|
|
3051
|
-
os_version?: string;
|
|
3618
|
+
updated_at: string;
|
|
3052
3619
|
/**
|
|
3053
3620
|
* Format: uuid
|
|
3054
3621
|
* @description Note:
|
|
3055
|
-
* This is a
|
|
3056
|
-
* @default extensions.uuid_generate_v4()
|
|
3622
|
+
* This is a Foreign Key to `users.id`.<fk table='users' column='id'/>
|
|
3057
3623
|
*/
|
|
3058
|
-
|
|
3624
|
+
created_by?: string;
|
|
3059
3625
|
};
|
|
3060
3626
|
devices_override: {
|
|
3061
3627
|
/**
|
|
@@ -3094,118 +3660,67 @@ export interface definitions {
|
|
|
3094
3660
|
*/
|
|
3095
3661
|
created_by?: string;
|
|
3096
3662
|
};
|
|
3097
|
-
|
|
3098
|
-
/**
|
|
3099
|
-
* Format: timestamp with time zone
|
|
3100
|
-
* @default now()
|
|
3101
|
-
*/
|
|
3102
|
-
created_at?: string;
|
|
3663
|
+
app_stats: {
|
|
3103
3664
|
/**
|
|
3104
3665
|
* Format: character varying
|
|
3105
3666
|
* @description Note:
|
|
3106
3667
|
* This is a Primary Key.<pk/>
|
|
3668
|
+
* This is a Foreign Key to `apps.app_id`.<fk table='apps' column='app_id'/>
|
|
3107
3669
|
*/
|
|
3108
|
-
|
|
3109
|
-
/** Format:
|
|
3110
|
-
|
|
3111
|
-
/** Format: bigint */
|
|
3112
|
-
updates: number;
|
|
3113
|
-
/** Format: bigint */
|
|
3114
|
-
stars: number;
|
|
3115
|
-
};
|
|
3116
|
-
plans: {
|
|
3670
|
+
app_id: string;
|
|
3671
|
+
/** Format: uuid */
|
|
3672
|
+
user_id: string;
|
|
3117
3673
|
/**
|
|
3118
3674
|
* Format: timestamp with time zone
|
|
3119
3675
|
* @default now()
|
|
3120
3676
|
*/
|
|
3121
|
-
created_at
|
|
3677
|
+
created_at?: string;
|
|
3122
3678
|
/**
|
|
3123
3679
|
* Format: timestamp with time zone
|
|
3124
3680
|
* @default now()
|
|
3125
3681
|
*/
|
|
3126
|
-
updated_at
|
|
3127
|
-
/**
|
|
3128
|
-
|
|
3129
|
-
* @description Note:
|
|
3130
|
-
* This is a Primary Key.<pk/>
|
|
3131
|
-
* @default
|
|
3132
|
-
*/
|
|
3133
|
-
name: string;
|
|
3134
|
-
/**
|
|
3135
|
-
* Format: character varying
|
|
3136
|
-
* @default
|
|
3137
|
-
*/
|
|
3138
|
-
description: string;
|
|
3139
|
-
/** Format: bigint */
|
|
3140
|
-
price_m: number;
|
|
3141
|
-
/** Format: bigint */
|
|
3142
|
-
price_y: number;
|
|
3143
|
-
/**
|
|
3144
|
-
* Format: character varying
|
|
3145
|
-
* @description Note:
|
|
3146
|
-
* This is a Primary Key.<pk/>
|
|
3147
|
-
* @default
|
|
3148
|
-
*/
|
|
3149
|
-
stripe_id: string;
|
|
3682
|
+
updated_at?: string;
|
|
3683
|
+
/** Format: smallint */
|
|
3684
|
+
channels: number;
|
|
3150
3685
|
/** Format: bigint */
|
|
3151
|
-
|
|
3686
|
+
mlu: number;
|
|
3152
3687
|
/** Format: bigint */
|
|
3153
|
-
|
|
3688
|
+
versions: number;
|
|
3154
3689
|
/** Format: bigint */
|
|
3155
|
-
|
|
3690
|
+
shared: number;
|
|
3156
3691
|
/** Format: bigint */
|
|
3157
|
-
|
|
3692
|
+
mlu_real: number;
|
|
3158
3693
|
/** Format: bigint */
|
|
3159
|
-
|
|
3160
|
-
/**
|
|
3161
|
-
* Format: boolean
|
|
3162
|
-
* @default false
|
|
3163
|
-
*/
|
|
3164
|
-
abtest: boolean;
|
|
3165
|
-
/**
|
|
3166
|
-
* Format: boolean
|
|
3167
|
-
* @default false
|
|
3168
|
-
*/
|
|
3169
|
-
progressive_deploy: boolean;
|
|
3694
|
+
devices: number;
|
|
3170
3695
|
/**
|
|
3171
|
-
* Format:
|
|
3696
|
+
* Format: character varying
|
|
3172
3697
|
* @description Note:
|
|
3173
3698
|
* This is a Primary Key.<pk/>
|
|
3174
|
-
* @default
|
|
3699
|
+
* @default 2022-05
|
|
3175
3700
|
*/
|
|
3176
|
-
|
|
3177
|
-
/** Format:
|
|
3178
|
-
|
|
3179
|
-
/** Format:
|
|
3180
|
-
|
|
3701
|
+
date_id: string;
|
|
3702
|
+
/** Format: bigint */
|
|
3703
|
+
version_size?: number;
|
|
3704
|
+
/** Format: bigint */
|
|
3705
|
+
bandwidth?: number;
|
|
3181
3706
|
};
|
|
3182
|
-
|
|
3183
|
-
/**
|
|
3184
|
-
* Format: bigint
|
|
3185
|
-
* @description Note:
|
|
3186
|
-
* This is a Primary Key.<pk/>
|
|
3187
|
-
*/
|
|
3188
|
-
id: number;
|
|
3707
|
+
devices: {
|
|
3189
3708
|
/**
|
|
3190
3709
|
* Format: timestamp with time zone
|
|
3191
3710
|
* @default now()
|
|
3192
3711
|
*/
|
|
3193
3712
|
created_at?: string;
|
|
3194
3713
|
/**
|
|
3195
|
-
* Format:
|
|
3196
|
-
* @
|
|
3714
|
+
* Format: timestamp with time zone
|
|
3715
|
+
* @default now()
|
|
3197
3716
|
*/
|
|
3198
|
-
|
|
3199
|
-
/** Format: text */
|
|
3200
|
-
action: string;
|
|
3717
|
+
updated_at?: string;
|
|
3201
3718
|
/**
|
|
3202
3719
|
* Format: text
|
|
3203
3720
|
* @description Note:
|
|
3204
|
-
* This is a
|
|
3721
|
+
* This is a Primary Key.<pk/>
|
|
3205
3722
|
*/
|
|
3206
3723
|
device_id: string;
|
|
3207
|
-
/** Format: text */
|
|
3208
|
-
version_build: string;
|
|
3209
3724
|
/**
|
|
3210
3725
|
* Format: bigint
|
|
3211
3726
|
* @description Note:
|
|
@@ -3219,95 +3734,100 @@ export interface definitions {
|
|
|
3219
3734
|
*/
|
|
3220
3735
|
app_id: string;
|
|
3221
3736
|
/**
|
|
3222
|
-
* Format:
|
|
3223
|
-
* @
|
|
3737
|
+
* Format: public.platform_os
|
|
3738
|
+
* @enum {string}
|
|
3224
3739
|
*/
|
|
3225
|
-
|
|
3226
|
-
};
|
|
3227
|
-
stats_onprem: {
|
|
3740
|
+
platform?: "ios" | "android";
|
|
3228
3741
|
/**
|
|
3229
|
-
* Format:
|
|
3230
|
-
* @
|
|
3231
|
-
* This is a Primary Key.<pk/>
|
|
3742
|
+
* Format: text
|
|
3743
|
+
* @default 2.3.3
|
|
3232
3744
|
*/
|
|
3233
|
-
|
|
3745
|
+
plugin_version: string;
|
|
3746
|
+
/** Format: character varying */
|
|
3747
|
+
os_version?: string;
|
|
3748
|
+
/** Format: character varying */
|
|
3749
|
+
date_id?: string;
|
|
3234
3750
|
/**
|
|
3235
|
-
* Format:
|
|
3236
|
-
* @default
|
|
3751
|
+
* Format: text
|
|
3752
|
+
* @default builtin
|
|
3237
3753
|
*/
|
|
3238
|
-
|
|
3754
|
+
version_build?: string;
|
|
3239
3755
|
/**
|
|
3240
|
-
* Format:
|
|
3241
|
-
* @
|
|
3756
|
+
* Format: text
|
|
3757
|
+
* @default ::text
|
|
3242
3758
|
*/
|
|
3243
|
-
|
|
3244
|
-
|
|
3245
|
-
|
|
3246
|
-
/** Format: character varying */
|
|
3247
|
-
device_id: string;
|
|
3248
|
-
/** Format: text */
|
|
3249
|
-
version_build: string;
|
|
3250
|
-
/** Format: character varying */
|
|
3251
|
-
app_id: string;
|
|
3759
|
+
custom_id: string;
|
|
3760
|
+
};
|
|
3761
|
+
app_versions_meta: {
|
|
3252
3762
|
/**
|
|
3253
3763
|
* Format: timestamp with time zone
|
|
3254
3764
|
* @default now()
|
|
3255
3765
|
*/
|
|
3256
|
-
|
|
3257
|
-
/** Format: character varying */
|
|
3258
|
-
version: string;
|
|
3259
|
-
};
|
|
3260
|
-
stripe_info: {
|
|
3766
|
+
created_at?: string;
|
|
3261
3767
|
/**
|
|
3262
|
-
* Format:
|
|
3263
|
-
* @
|
|
3768
|
+
* Format: character varying
|
|
3769
|
+
* @description Note:
|
|
3770
|
+
* This is a Foreign Key to `apps.app_id`.<fk table='apps' column='app_id'/>
|
|
3264
3771
|
*/
|
|
3265
|
-
|
|
3772
|
+
app_id: string;
|
|
3773
|
+
/**
|
|
3774
|
+
* Format: uuid
|
|
3775
|
+
* @description Note:
|
|
3776
|
+
* This is a Foreign Key to `users.id`.<fk table='users' column='id'/>
|
|
3777
|
+
*/
|
|
3778
|
+
user_id: string;
|
|
3266
3779
|
/**
|
|
3267
3780
|
* Format: timestamp with time zone
|
|
3268
3781
|
* @default now()
|
|
3269
3782
|
*/
|
|
3270
|
-
updated_at
|
|
3783
|
+
updated_at?: string;
|
|
3271
3784
|
/** Format: character varying */
|
|
3272
|
-
|
|
3785
|
+
checksum: string;
|
|
3786
|
+
/** Format: bigint */
|
|
3787
|
+
size: number;
|
|
3273
3788
|
/**
|
|
3274
|
-
* Format:
|
|
3789
|
+
* Format: bigint
|
|
3275
3790
|
* @description Note:
|
|
3276
3791
|
* This is a Primary Key.<pk/>
|
|
3792
|
+
* This is a Foreign Key to `app_versions.id`.<fk table='app_versions' column='id'/>
|
|
3277
3793
|
*/
|
|
3278
|
-
|
|
3794
|
+
id: number;
|
|
3795
|
+
/** Format: bigint */
|
|
3796
|
+
devices?: number;
|
|
3797
|
+
};
|
|
3798
|
+
app_stats_onprem: {
|
|
3279
3799
|
/**
|
|
3280
|
-
* Format:
|
|
3281
|
-
* @
|
|
3800
|
+
* Format: character varying
|
|
3801
|
+
* @description Note:
|
|
3802
|
+
* This is a Primary Key.<pk/>
|
|
3282
3803
|
*/
|
|
3283
|
-
|
|
3284
|
-
| "created"
|
|
3285
|
-
| "succeeded"
|
|
3286
|
-
| "updated"
|
|
3287
|
-
| "failed"
|
|
3288
|
-
| "deleted"
|
|
3289
|
-
| "canceled";
|
|
3804
|
+
app_id: string;
|
|
3290
3805
|
/**
|
|
3291
|
-
* Format:
|
|
3292
|
-
* @
|
|
3293
|
-
* This is a Foreign Key to `plans.stripe_id`.<fk table='plans' column='stripe_id'/>
|
|
3294
|
-
* @default free
|
|
3806
|
+
* Format: timestamp with time zone
|
|
3807
|
+
* @default now()
|
|
3295
3808
|
*/
|
|
3296
|
-
|
|
3809
|
+
created_at?: string;
|
|
3297
3810
|
/**
|
|
3298
3811
|
* Format: timestamp with time zone
|
|
3299
3812
|
* @default now()
|
|
3300
3813
|
*/
|
|
3301
|
-
|
|
3302
|
-
/** Format:
|
|
3303
|
-
|
|
3814
|
+
updated_at?: string;
|
|
3815
|
+
/** Format: bigint */
|
|
3816
|
+
mlu?: number;
|
|
3817
|
+
/** Format: bigint */
|
|
3818
|
+
versions?: number;
|
|
3819
|
+
/** Format: bigint */
|
|
3820
|
+
mlu_real?: number;
|
|
3304
3821
|
/**
|
|
3305
|
-
* Format:
|
|
3306
|
-
* @
|
|
3822
|
+
* Format: character varying
|
|
3823
|
+
* @description Note:
|
|
3824
|
+
* This is a Primary Key.<pk/>
|
|
3307
3825
|
*/
|
|
3308
|
-
|
|
3826
|
+
date_id: string;
|
|
3827
|
+
/** Format: bigint */
|
|
3828
|
+
devices?: number;
|
|
3309
3829
|
};
|
|
3310
|
-
|
|
3830
|
+
app_versions: {
|
|
3311
3831
|
/**
|
|
3312
3832
|
* Format: bigint
|
|
3313
3833
|
* @description Note:
|
|
@@ -3319,31 +3839,22 @@ export interface definitions {
|
|
|
3319
3839
|
* @default now()
|
|
3320
3840
|
*/
|
|
3321
3841
|
created_at?: string;
|
|
3322
|
-
/** Format: text */
|
|
3323
|
-
url: string;
|
|
3324
|
-
};
|
|
3325
|
-
users: {
|
|
3326
3842
|
/**
|
|
3327
|
-
* Format:
|
|
3328
|
-
* @
|
|
3843
|
+
* Format: character varying
|
|
3844
|
+
* @description Note:
|
|
3845
|
+
* This is a Foreign Key to `apps.app_id`.<fk table='apps' column='app_id'/>
|
|
3329
3846
|
*/
|
|
3330
|
-
|
|
3331
|
-
/** Format: character varying */
|
|
3332
|
-
image_url?: string;
|
|
3333
|
-
/** Format: character varying */
|
|
3334
|
-
first_name?: string;
|
|
3335
|
-
/** Format: character varying */
|
|
3336
|
-
last_name?: string;
|
|
3847
|
+
app_id: string;
|
|
3337
3848
|
/** Format: character varying */
|
|
3338
|
-
|
|
3849
|
+
name: string;
|
|
3339
3850
|
/** Format: character varying */
|
|
3340
|
-
|
|
3851
|
+
bucket_id?: string;
|
|
3341
3852
|
/**
|
|
3342
3853
|
* Format: uuid
|
|
3343
3854
|
* @description Note:
|
|
3344
|
-
* This is a
|
|
3855
|
+
* This is a Foreign Key to `users.id`.<fk table='users' column='id'/>
|
|
3345
3856
|
*/
|
|
3346
|
-
|
|
3857
|
+
user_id: string;
|
|
3347
3858
|
/**
|
|
3348
3859
|
* Format: timestamp with time zone
|
|
3349
3860
|
* @default now()
|
|
@@ -3353,23 +3864,11 @@ export interface definitions {
|
|
|
3353
3864
|
* Format: boolean
|
|
3354
3865
|
* @default false
|
|
3355
3866
|
*/
|
|
3356
|
-
|
|
3357
|
-
/**
|
|
3358
|
-
|
|
3359
|
-
|
|
3360
|
-
|
|
3361
|
-
optForNewsletters: boolean;
|
|
3362
|
-
/**
|
|
3363
|
-
* Format: boolean
|
|
3364
|
-
* @default false
|
|
3365
|
-
*/
|
|
3366
|
-
legalAccepted: boolean;
|
|
3367
|
-
/**
|
|
3368
|
-
* Format: character varying
|
|
3369
|
-
* @description Note:
|
|
3370
|
-
* This is a Foreign Key to `stripe_info.customer_id`.<fk table='stripe_info' column='customer_id'/>
|
|
3371
|
-
*/
|
|
3372
|
-
customer_id?: string;
|
|
3867
|
+
deleted: boolean;
|
|
3868
|
+
/** Format: character varying */
|
|
3869
|
+
external_url?: string;
|
|
3870
|
+
/** Format: character varying */
|
|
3871
|
+
checksum?: string;
|
|
3373
3872
|
};
|
|
3374
3873
|
}
|
|
3375
3874
|
|
|
@@ -3406,134 +3905,6 @@ export interface parameters {
|
|
|
3406
3905
|
offset: string;
|
|
3407
3906
|
/** @description Limiting and Pagination */
|
|
3408
3907
|
limit: string;
|
|
3409
|
-
/** @description apikeys */
|
|
3410
|
-
"body.apikeys": definitions["apikeys"];
|
|
3411
|
-
/** Format: bigint */
|
|
3412
|
-
"rowFilter.apikeys.id": string;
|
|
3413
|
-
/** Format: timestamp with time zone */
|
|
3414
|
-
"rowFilter.apikeys.created_at": string;
|
|
3415
|
-
/** Format: uuid */
|
|
3416
|
-
"rowFilter.apikeys.user_id": string;
|
|
3417
|
-
/** Format: character varying */
|
|
3418
|
-
"rowFilter.apikeys.key": string;
|
|
3419
|
-
/** Format: public.key_mode */
|
|
3420
|
-
"rowFilter.apikeys.mode": string;
|
|
3421
|
-
/** Format: timestamp with time zone */
|
|
3422
|
-
"rowFilter.apikeys.updated_at": string;
|
|
3423
|
-
/** @description app_stats */
|
|
3424
|
-
"body.app_stats": definitions["app_stats"];
|
|
3425
|
-
/** Format: character varying */
|
|
3426
|
-
"rowFilter.app_stats.app_id": string;
|
|
3427
|
-
/** Format: uuid */
|
|
3428
|
-
"rowFilter.app_stats.user_id": string;
|
|
3429
|
-
/** Format: timestamp with time zone */
|
|
3430
|
-
"rowFilter.app_stats.created_at": string;
|
|
3431
|
-
/** Format: timestamp with time zone */
|
|
3432
|
-
"rowFilter.app_stats.updated_at": string;
|
|
3433
|
-
/** Format: smallint */
|
|
3434
|
-
"rowFilter.app_stats.channels": string;
|
|
3435
|
-
/** Format: bigint */
|
|
3436
|
-
"rowFilter.app_stats.mlu": string;
|
|
3437
|
-
/** Format: bigint */
|
|
3438
|
-
"rowFilter.app_stats.versions": string;
|
|
3439
|
-
/** Format: bigint */
|
|
3440
|
-
"rowFilter.app_stats.shared": string;
|
|
3441
|
-
/** Format: bigint */
|
|
3442
|
-
"rowFilter.app_stats.mlu_real": string;
|
|
3443
|
-
/** Format: bigint */
|
|
3444
|
-
"rowFilter.app_stats.devices": string;
|
|
3445
|
-
/** Format: character varying */
|
|
3446
|
-
"rowFilter.app_stats.date_id": string;
|
|
3447
|
-
/** Format: bigint */
|
|
3448
|
-
"rowFilter.app_stats.versionSize": string;
|
|
3449
|
-
/** @description app_stats_onprem */
|
|
3450
|
-
"body.app_stats_onprem": definitions["app_stats_onprem"];
|
|
3451
|
-
/** Format: character varying */
|
|
3452
|
-
"rowFilter.app_stats_onprem.app_id": string;
|
|
3453
|
-
/** Format: timestamp with time zone */
|
|
3454
|
-
"rowFilter.app_stats_onprem.created_at": string;
|
|
3455
|
-
/** Format: timestamp with time zone */
|
|
3456
|
-
"rowFilter.app_stats_onprem.updated_at": string;
|
|
3457
|
-
/** Format: bigint */
|
|
3458
|
-
"rowFilter.app_stats_onprem.mlu": string;
|
|
3459
|
-
/** Format: bigint */
|
|
3460
|
-
"rowFilter.app_stats_onprem.versions": string;
|
|
3461
|
-
/** Format: bigint */
|
|
3462
|
-
"rowFilter.app_stats_onprem.mlu_real": string;
|
|
3463
|
-
/** Format: character varying */
|
|
3464
|
-
"rowFilter.app_stats_onprem.date_id": string;
|
|
3465
|
-
/** Format: bigint */
|
|
3466
|
-
"rowFilter.app_stats_onprem.devices": string;
|
|
3467
|
-
/** @description app_versions */
|
|
3468
|
-
"body.app_versions": definitions["app_versions"];
|
|
3469
|
-
/** Format: bigint */
|
|
3470
|
-
"rowFilter.app_versions.id": string;
|
|
3471
|
-
/** Format: timestamp with time zone */
|
|
3472
|
-
"rowFilter.app_versions.created_at": string;
|
|
3473
|
-
/** Format: character varying */
|
|
3474
|
-
"rowFilter.app_versions.app_id": string;
|
|
3475
|
-
/** Format: character varying */
|
|
3476
|
-
"rowFilter.app_versions.name": string;
|
|
3477
|
-
/** Format: character varying */
|
|
3478
|
-
"rowFilter.app_versions.bucket_id": string;
|
|
3479
|
-
/** Format: uuid */
|
|
3480
|
-
"rowFilter.app_versions.user_id": string;
|
|
3481
|
-
/** Format: timestamp with time zone */
|
|
3482
|
-
"rowFilter.app_versions.updated_at": string;
|
|
3483
|
-
/** Format: boolean */
|
|
3484
|
-
"rowFilter.app_versions.deleted": string;
|
|
3485
|
-
/** Format: character varying */
|
|
3486
|
-
"rowFilter.app_versions.external_url": string;
|
|
3487
|
-
/** Format: character varying */
|
|
3488
|
-
"rowFilter.app_versions.checksum": string;
|
|
3489
|
-
/** @description apps */
|
|
3490
|
-
"body.apps": definitions["apps"];
|
|
3491
|
-
/** Format: timestamp with time zone */
|
|
3492
|
-
"rowFilter.apps.created_at": string;
|
|
3493
|
-
/** Format: character varying */
|
|
3494
|
-
"rowFilter.apps.app_id": string;
|
|
3495
|
-
/** Format: character varying */
|
|
3496
|
-
"rowFilter.apps.icon_url": string;
|
|
3497
|
-
/** Format: uuid */
|
|
3498
|
-
"rowFilter.apps.user_id": string;
|
|
3499
|
-
/** Format: character varying */
|
|
3500
|
-
"rowFilter.apps.name": string;
|
|
3501
|
-
/** Format: character varying */
|
|
3502
|
-
"rowFilter.apps.last_version": string;
|
|
3503
|
-
/** Format: timestamp with time zone */
|
|
3504
|
-
"rowFilter.apps.updated_at": string;
|
|
3505
|
-
/** Format: uuid */
|
|
3506
|
-
"rowFilter.apps.id": string;
|
|
3507
|
-
/** @description channel_devices */
|
|
3508
|
-
"body.channel_devices": definitions["channel_devices"];
|
|
3509
|
-
/** Format: timestamp with time zone */
|
|
3510
|
-
"rowFilter.channel_devices.created_at": string;
|
|
3511
|
-
/** Format: bigint */
|
|
3512
|
-
"rowFilter.channel_devices.channel_id": string;
|
|
3513
|
-
/** Format: character varying */
|
|
3514
|
-
"rowFilter.channel_devices.app_id": string;
|
|
3515
|
-
/** Format: timestamp with time zone */
|
|
3516
|
-
"rowFilter.channel_devices.updated_at": string;
|
|
3517
|
-
/** Format: uuid */
|
|
3518
|
-
"rowFilter.channel_devices.created_by": string;
|
|
3519
|
-
/** Format: text */
|
|
3520
|
-
"rowFilter.channel_devices.device_id": string;
|
|
3521
|
-
/** @description channel_users */
|
|
3522
|
-
"body.channel_users": definitions["channel_users"];
|
|
3523
|
-
/** Format: bigint */
|
|
3524
|
-
"rowFilter.channel_users.id": string;
|
|
3525
|
-
/** Format: timestamp with time zone */
|
|
3526
|
-
"rowFilter.channel_users.created_at": string;
|
|
3527
|
-
/** Format: uuid */
|
|
3528
|
-
"rowFilter.channel_users.user_id": string;
|
|
3529
|
-
/** Format: bigint */
|
|
3530
|
-
"rowFilter.channel_users.channel_id": string;
|
|
3531
|
-
/** Format: character varying */
|
|
3532
|
-
"rowFilter.channel_users.app_id": string;
|
|
3533
|
-
/** Format: timestamp with time zone */
|
|
3534
|
-
"rowFilter.channel_users.updated_at": string;
|
|
3535
|
-
/** Format: uuid */
|
|
3536
|
-
"rowFilter.channel_users.created_by": string;
|
|
3537
3908
|
/** @description channels */
|
|
3538
3909
|
"body.channels": definitions["channels"];
|
|
3539
3910
|
/** Format: bigint */
|
|
@@ -3558,6 +3929,12 @@ export interface parameters {
|
|
|
3558
3929
|
"rowFilter.channels.disableAutoUpdateToMajor": string;
|
|
3559
3930
|
/** Format: boolean */
|
|
3560
3931
|
"rowFilter.channels.beta": string;
|
|
3932
|
+
/** Format: boolean */
|
|
3933
|
+
"rowFilter.channels.ios": string;
|
|
3934
|
+
/** Format: boolean */
|
|
3935
|
+
"rowFilter.channels.android": string;
|
|
3936
|
+
/** Format: boolean */
|
|
3937
|
+
"rowFilter.channels.allow_device_self_set": string;
|
|
3561
3938
|
/** @description deleted_account */
|
|
3562
3939
|
"body.deleted_account": definitions["deleted_account"];
|
|
3563
3940
|
/** Format: timestamp with time zone */
|
|
@@ -3565,59 +3942,7 @@ export interface parameters {
|
|
|
3565
3942
|
/** Format: character varying */
|
|
3566
3943
|
"rowFilter.deleted_account.email": string;
|
|
3567
3944
|
/** Format: uuid */
|
|
3568
|
-
"rowFilter.deleted_account.id": string;
|
|
3569
|
-
/** @description devices */
|
|
3570
|
-
"body.devices": definitions["devices"];
|
|
3571
|
-
/** Format: timestamp with time zone */
|
|
3572
|
-
"rowFilter.devices.created_at": string;
|
|
3573
|
-
/** Format: timestamp with time zone */
|
|
3574
|
-
"rowFilter.devices.updated_at": string;
|
|
3575
|
-
/** Format: text */
|
|
3576
|
-
"rowFilter.devices.device_id": string;
|
|
3577
|
-
/** Format: bigint */
|
|
3578
|
-
"rowFilter.devices.version": string;
|
|
3579
|
-
/** Format: character varying */
|
|
3580
|
-
"rowFilter.devices.app_id": string;
|
|
3581
|
-
/** Format: public.platform_os */
|
|
3582
|
-
"rowFilter.devices.platform": string;
|
|
3583
|
-
/** Format: text */
|
|
3584
|
-
"rowFilter.devices.plugin_version": string;
|
|
3585
|
-
/** Format: character varying */
|
|
3586
|
-
"rowFilter.devices.os_version": string;
|
|
3587
|
-
/** @description devices_onprem */
|
|
3588
|
-
"body.devices_onprem": definitions["devices_onprem"];
|
|
3589
|
-
/** Format: timestamp with time zone */
|
|
3590
|
-
"rowFilter.devices_onprem.created_at": string;
|
|
3591
|
-
/** Format: timestamp with time zone */
|
|
3592
|
-
"rowFilter.devices_onprem.updated_at": string;
|
|
3593
|
-
/** Format: public.platform_os */
|
|
3594
|
-
"rowFilter.devices_onprem.platform": string;
|
|
3595
|
-
/** Format: text */
|
|
3596
|
-
"rowFilter.devices_onprem.plugin_version": string;
|
|
3597
|
-
/** Format: character varying */
|
|
3598
|
-
"rowFilter.devices_onprem.version": string;
|
|
3599
|
-
/** Format: character varying */
|
|
3600
|
-
"rowFilter.devices_onprem.app_id": string;
|
|
3601
|
-
/** Format: character varying */
|
|
3602
|
-
"rowFilter.devices_onprem.device_id": string;
|
|
3603
|
-
/** Format: character varying */
|
|
3604
|
-
"rowFilter.devices_onprem.os_version": string;
|
|
3605
|
-
/** Format: uuid */
|
|
3606
|
-
"rowFilter.devices_onprem.id": string;
|
|
3607
|
-
/** @description devices_override */
|
|
3608
|
-
"body.devices_override": definitions["devices_override"];
|
|
3609
|
-
/** Format: timestamp with time zone */
|
|
3610
|
-
"rowFilter.devices_override.created_at": string;
|
|
3611
|
-
/** Format: timestamp with time zone */
|
|
3612
|
-
"rowFilter.devices_override.updated_at": string;
|
|
3613
|
-
/** Format: text */
|
|
3614
|
-
"rowFilter.devices_override.device_id": string;
|
|
3615
|
-
/** Format: bigint */
|
|
3616
|
-
"rowFilter.devices_override.version": string;
|
|
3617
|
-
/** Format: character varying */
|
|
3618
|
-
"rowFilter.devices_override.app_id": string;
|
|
3619
|
-
/** Format: uuid */
|
|
3620
|
-
"rowFilter.devices_override.created_by": string;
|
|
3945
|
+
"rowFilter.deleted_account.id": string;
|
|
3621
3946
|
/** @description global_stats */
|
|
3622
3947
|
"body.global_stats": definitions["global_stats"];
|
|
3623
3948
|
/** Format: timestamp with time zone */
|
|
@@ -3630,6 +3955,16 @@ export interface parameters {
|
|
|
3630
3955
|
"rowFilter.global_stats.updates": string;
|
|
3631
3956
|
/** Format: bigint */
|
|
3632
3957
|
"rowFilter.global_stats.stars": string;
|
|
3958
|
+
/** Format: bigint */
|
|
3959
|
+
"rowFilter.global_stats.users": string;
|
|
3960
|
+
/** Format: bigint */
|
|
3961
|
+
"rowFilter.global_stats.paying": string;
|
|
3962
|
+
/** Format: bigint */
|
|
3963
|
+
"rowFilter.global_stats.trial": string;
|
|
3964
|
+
/** Format: bigint */
|
|
3965
|
+
"rowFilter.global_stats.need_upgrade": string;
|
|
3966
|
+
/** Format: bigint */
|
|
3967
|
+
"rowFilter.global_stats.not_paying": string;
|
|
3633
3968
|
/** @description plans */
|
|
3634
3969
|
"body.plans": definitions["plans"];
|
|
3635
3970
|
/** Format: timestamp with time zone */
|
|
@@ -3666,26 +4001,62 @@ export interface parameters {
|
|
|
3666
4001
|
"rowFilter.plans.price_m_id": string;
|
|
3667
4002
|
/** Format: character varying */
|
|
3668
4003
|
"rowFilter.plans.price_y_id": string;
|
|
3669
|
-
/**
|
|
3670
|
-
"
|
|
4004
|
+
/** Format: double precision */
|
|
4005
|
+
"rowFilter.plans.storage": string;
|
|
4006
|
+
/** Format: double precision */
|
|
4007
|
+
"rowFilter.plans.bandwidth": string;
|
|
3671
4008
|
/** Format: bigint */
|
|
3672
|
-
"rowFilter.
|
|
4009
|
+
"rowFilter.plans.mau": string;
|
|
4010
|
+
/** Format: character varying */
|
|
4011
|
+
"rowFilter.plans.market_desc": string;
|
|
4012
|
+
/** Format: double precision */
|
|
4013
|
+
"rowFilter.plans.storage_unit": string;
|
|
4014
|
+
/** Format: double precision */
|
|
4015
|
+
"rowFilter.plans.bandwidth_unit": string;
|
|
4016
|
+
/** Format: double precision */
|
|
4017
|
+
"rowFilter.plans.mau_unit": string;
|
|
4018
|
+
/** @description stripe_info */
|
|
4019
|
+
"body.stripe_info": definitions["stripe_info"];
|
|
3673
4020
|
/** Format: timestamp with time zone */
|
|
3674
|
-
"rowFilter.
|
|
4021
|
+
"rowFilter.stripe_info.created_at": string;
|
|
4022
|
+
/** Format: timestamp with time zone */
|
|
4023
|
+
"rowFilter.stripe_info.updated_at": string;
|
|
4024
|
+
/** Format: character varying */
|
|
4025
|
+
"rowFilter.stripe_info.subscription_id": string;
|
|
4026
|
+
/** Format: character varying */
|
|
4027
|
+
"rowFilter.stripe_info.customer_id": string;
|
|
4028
|
+
/** Format: public.stripe_status */
|
|
4029
|
+
"rowFilter.stripe_info.status": string;
|
|
4030
|
+
/** Format: character varying */
|
|
4031
|
+
"rowFilter.stripe_info.product_id": string;
|
|
4032
|
+
/** Format: timestamp with time zone */
|
|
4033
|
+
"rowFilter.stripe_info.trial_at": string;
|
|
4034
|
+
/** Format: character varying */
|
|
4035
|
+
"rowFilter.stripe_info.price_id": string;
|
|
4036
|
+
/** Format: boolean */
|
|
4037
|
+
"rowFilter.stripe_info.is_good_plan": string;
|
|
4038
|
+
/** @description devices_onprem */
|
|
4039
|
+
"body.devices_onprem": definitions["devices_onprem"];
|
|
4040
|
+
/** Format: timestamp with time zone */
|
|
4041
|
+
"rowFilter.devices_onprem.created_at": string;
|
|
4042
|
+
/** Format: timestamp with time zone */
|
|
4043
|
+
"rowFilter.devices_onprem.updated_at": string;
|
|
3675
4044
|
/** Format: public.platform_os */
|
|
3676
|
-
"rowFilter.
|
|
3677
|
-
/** Format: text */
|
|
3678
|
-
"rowFilter.stats.action": string;
|
|
3679
|
-
/** Format: text */
|
|
3680
|
-
"rowFilter.stats.device_id": string;
|
|
4045
|
+
"rowFilter.devices_onprem.platform": string;
|
|
3681
4046
|
/** Format: text */
|
|
3682
|
-
"rowFilter.
|
|
3683
|
-
/** Format: bigint */
|
|
3684
|
-
"rowFilter.stats.version": string;
|
|
4047
|
+
"rowFilter.devices_onprem.plugin_version": string;
|
|
3685
4048
|
/** Format: character varying */
|
|
3686
|
-
"rowFilter.
|
|
3687
|
-
/** Format:
|
|
3688
|
-
"rowFilter.
|
|
4049
|
+
"rowFilter.devices_onprem.version": string;
|
|
4050
|
+
/** Format: character varying */
|
|
4051
|
+
"rowFilter.devices_onprem.app_id": string;
|
|
4052
|
+
/** Format: character varying */
|
|
4053
|
+
"rowFilter.devices_onprem.device_id": string;
|
|
4054
|
+
/** Format: character varying */
|
|
4055
|
+
"rowFilter.devices_onprem.os_version": string;
|
|
4056
|
+
/** Format: uuid */
|
|
4057
|
+
"rowFilter.devices_onprem.id": string;
|
|
4058
|
+
/** Format: text */
|
|
4059
|
+
"rowFilter.devices_onprem.version_build": string;
|
|
3689
4060
|
/** @description stats_onprem */
|
|
3690
4061
|
"body.stats_onprem": definitions["stats_onprem"];
|
|
3691
4062
|
/** Format: bigint */
|
|
@@ -3706,34 +4077,86 @@ export interface parameters {
|
|
|
3706
4077
|
"rowFilter.stats_onprem.updated_at": string;
|
|
3707
4078
|
/** Format: character varying */
|
|
3708
4079
|
"rowFilter.stats_onprem.version": string;
|
|
3709
|
-
/** @description
|
|
3710
|
-
"body.
|
|
4080
|
+
/** @description channel_devices */
|
|
4081
|
+
"body.channel_devices": definitions["channel_devices"];
|
|
3711
4082
|
/** Format: timestamp with time zone */
|
|
3712
|
-
"rowFilter.
|
|
4083
|
+
"rowFilter.channel_devices.created_at": string;
|
|
4084
|
+
/** Format: bigint */
|
|
4085
|
+
"rowFilter.channel_devices.channel_id": string;
|
|
4086
|
+
/** Format: character varying */
|
|
4087
|
+
"rowFilter.channel_devices.app_id": string;
|
|
3713
4088
|
/** Format: timestamp with time zone */
|
|
3714
|
-
"rowFilter.
|
|
4089
|
+
"rowFilter.channel_devices.updated_at": string;
|
|
4090
|
+
/** Format: uuid */
|
|
4091
|
+
"rowFilter.channel_devices.created_by": string;
|
|
4092
|
+
/** Format: text */
|
|
4093
|
+
"rowFilter.channel_devices.device_id": string;
|
|
4094
|
+
/** @description apps */
|
|
4095
|
+
"body.apps": definitions["apps"];
|
|
4096
|
+
/** Format: timestamp with time zone */
|
|
4097
|
+
"rowFilter.apps.created_at": string;
|
|
3715
4098
|
/** Format: character varying */
|
|
3716
|
-
"rowFilter.
|
|
4099
|
+
"rowFilter.apps.app_id": string;
|
|
3717
4100
|
/** Format: character varying */
|
|
3718
|
-
"rowFilter.
|
|
3719
|
-
/** Format:
|
|
3720
|
-
"rowFilter.
|
|
4101
|
+
"rowFilter.apps.icon_url": string;
|
|
4102
|
+
/** Format: uuid */
|
|
4103
|
+
"rowFilter.apps.user_id": string;
|
|
3721
4104
|
/** Format: character varying */
|
|
3722
|
-
"rowFilter.
|
|
4105
|
+
"rowFilter.apps.name": string;
|
|
4106
|
+
/** Format: character varying */
|
|
4107
|
+
"rowFilter.apps.last_version": string;
|
|
3723
4108
|
/** Format: timestamp with time zone */
|
|
3724
|
-
"rowFilter.
|
|
4109
|
+
"rowFilter.apps.updated_at": string;
|
|
4110
|
+
/** Format: uuid */
|
|
4111
|
+
"rowFilter.apps.id": string;
|
|
4112
|
+
/** @description apikeys */
|
|
4113
|
+
"body.apikeys": definitions["apikeys"];
|
|
4114
|
+
/** Format: bigint */
|
|
4115
|
+
"rowFilter.apikeys.id": string;
|
|
4116
|
+
/** Format: timestamp with time zone */
|
|
4117
|
+
"rowFilter.apikeys.created_at": string;
|
|
4118
|
+
/** Format: uuid */
|
|
4119
|
+
"rowFilter.apikeys.user_id": string;
|
|
3725
4120
|
/** Format: character varying */
|
|
3726
|
-
"rowFilter.
|
|
3727
|
-
/** Format:
|
|
3728
|
-
"rowFilter.
|
|
3729
|
-
/**
|
|
3730
|
-
"
|
|
4121
|
+
"rowFilter.apikeys.key": string;
|
|
4122
|
+
/** Format: public.key_mode */
|
|
4123
|
+
"rowFilter.apikeys.mode": string;
|
|
4124
|
+
/** Format: timestamp with time zone */
|
|
4125
|
+
"rowFilter.apikeys.updated_at": string;
|
|
4126
|
+
/** @description pay_as_you_go */
|
|
4127
|
+
"body.pay_as_you_go": definitions["pay_as_you_go"];
|
|
3731
4128
|
/** Format: bigint */
|
|
3732
|
-
"rowFilter.
|
|
4129
|
+
"rowFilter.pay_as_you_go.id": string;
|
|
3733
4130
|
/** Format: timestamp with time zone */
|
|
3734
|
-
"rowFilter.
|
|
4131
|
+
"rowFilter.pay_as_you_go.created_at": string;
|
|
4132
|
+
/** Format: double precision */
|
|
4133
|
+
"rowFilter.pay_as_you_go.mau": string;
|
|
4134
|
+
/** Format: double precision */
|
|
4135
|
+
"rowFilter.pay_as_you_go.storage": string;
|
|
4136
|
+
/** Format: double precision */
|
|
4137
|
+
"rowFilter.pay_as_you_go.bandwidth": string;
|
|
4138
|
+
/** Format: public.pay_as_you_go_type */
|
|
4139
|
+
"rowFilter.pay_as_you_go.type": string;
|
|
4140
|
+
/** @description stats */
|
|
4141
|
+
"body.stats": definitions["stats"];
|
|
4142
|
+
/** Format: bigint */
|
|
4143
|
+
"rowFilter.stats.id": string;
|
|
4144
|
+
/** Format: timestamp with time zone */
|
|
4145
|
+
"rowFilter.stats.created_at": string;
|
|
4146
|
+
/** Format: public.platform_os */
|
|
4147
|
+
"rowFilter.stats.platform": string;
|
|
3735
4148
|
/** Format: text */
|
|
3736
|
-
"rowFilter.
|
|
4149
|
+
"rowFilter.stats.action": string;
|
|
4150
|
+
/** Format: text */
|
|
4151
|
+
"rowFilter.stats.device_id": string;
|
|
4152
|
+
/** Format: text */
|
|
4153
|
+
"rowFilter.stats.version_build": string;
|
|
4154
|
+
/** Format: bigint */
|
|
4155
|
+
"rowFilter.stats.version": string;
|
|
4156
|
+
/** Format: character varying */
|
|
4157
|
+
"rowFilter.stats.app_id": string;
|
|
4158
|
+
/** Format: timestamp with time zone */
|
|
4159
|
+
"rowFilter.stats.updated_at": string;
|
|
3737
4160
|
/** @description users */
|
|
3738
4161
|
"body.users": definitions["users"];
|
|
3739
4162
|
/** Format: timestamp with time zone */
|
|
@@ -3760,6 +4183,146 @@ export interface parameters {
|
|
|
3760
4183
|
"rowFilter.users.legalAccepted": string;
|
|
3761
4184
|
/** Format: character varying */
|
|
3762
4185
|
"rowFilter.users.customer_id": string;
|
|
4186
|
+
/** @description channel_users */
|
|
4187
|
+
"body.channel_users": definitions["channel_users"];
|
|
4188
|
+
/** Format: bigint */
|
|
4189
|
+
"rowFilter.channel_users.id": string;
|
|
4190
|
+
/** Format: timestamp with time zone */
|
|
4191
|
+
"rowFilter.channel_users.created_at": string;
|
|
4192
|
+
/** Format: uuid */
|
|
4193
|
+
"rowFilter.channel_users.user_id": string;
|
|
4194
|
+
/** Format: bigint */
|
|
4195
|
+
"rowFilter.channel_users.channel_id": string;
|
|
4196
|
+
/** Format: character varying */
|
|
4197
|
+
"rowFilter.channel_users.app_id": string;
|
|
4198
|
+
/** Format: timestamp with time zone */
|
|
4199
|
+
"rowFilter.channel_users.updated_at": string;
|
|
4200
|
+
/** Format: uuid */
|
|
4201
|
+
"rowFilter.channel_users.created_by": string;
|
|
4202
|
+
/** @description devices_override */
|
|
4203
|
+
"body.devices_override": definitions["devices_override"];
|
|
4204
|
+
/** Format: timestamp with time zone */
|
|
4205
|
+
"rowFilter.devices_override.created_at": string;
|
|
4206
|
+
/** Format: timestamp with time zone */
|
|
4207
|
+
"rowFilter.devices_override.updated_at": string;
|
|
4208
|
+
/** Format: text */
|
|
4209
|
+
"rowFilter.devices_override.device_id": string;
|
|
4210
|
+
/** Format: bigint */
|
|
4211
|
+
"rowFilter.devices_override.version": string;
|
|
4212
|
+
/** Format: character varying */
|
|
4213
|
+
"rowFilter.devices_override.app_id": string;
|
|
4214
|
+
/** Format: uuid */
|
|
4215
|
+
"rowFilter.devices_override.created_by": string;
|
|
4216
|
+
/** @description app_stats */
|
|
4217
|
+
"body.app_stats": definitions["app_stats"];
|
|
4218
|
+
/** Format: character varying */
|
|
4219
|
+
"rowFilter.app_stats.app_id": string;
|
|
4220
|
+
/** Format: uuid */
|
|
4221
|
+
"rowFilter.app_stats.user_id": string;
|
|
4222
|
+
/** Format: timestamp with time zone */
|
|
4223
|
+
"rowFilter.app_stats.created_at": string;
|
|
4224
|
+
/** Format: timestamp with time zone */
|
|
4225
|
+
"rowFilter.app_stats.updated_at": string;
|
|
4226
|
+
/** Format: smallint */
|
|
4227
|
+
"rowFilter.app_stats.channels": string;
|
|
4228
|
+
/** Format: bigint */
|
|
4229
|
+
"rowFilter.app_stats.mlu": string;
|
|
4230
|
+
/** Format: bigint */
|
|
4231
|
+
"rowFilter.app_stats.versions": string;
|
|
4232
|
+
/** Format: bigint */
|
|
4233
|
+
"rowFilter.app_stats.shared": string;
|
|
4234
|
+
/** Format: bigint */
|
|
4235
|
+
"rowFilter.app_stats.mlu_real": string;
|
|
4236
|
+
/** Format: bigint */
|
|
4237
|
+
"rowFilter.app_stats.devices": string;
|
|
4238
|
+
/** Format: character varying */
|
|
4239
|
+
"rowFilter.app_stats.date_id": string;
|
|
4240
|
+
/** Format: bigint */
|
|
4241
|
+
"rowFilter.app_stats.version_size": string;
|
|
4242
|
+
/** Format: bigint */
|
|
4243
|
+
"rowFilter.app_stats.bandwidth": string;
|
|
4244
|
+
/** @description devices */
|
|
4245
|
+
"body.devices": definitions["devices"];
|
|
4246
|
+
/** Format: timestamp with time zone */
|
|
4247
|
+
"rowFilter.devices.created_at": string;
|
|
4248
|
+
/** Format: timestamp with time zone */
|
|
4249
|
+
"rowFilter.devices.updated_at": string;
|
|
4250
|
+
/** Format: text */
|
|
4251
|
+
"rowFilter.devices.device_id": string;
|
|
4252
|
+
/** Format: bigint */
|
|
4253
|
+
"rowFilter.devices.version": string;
|
|
4254
|
+
/** Format: character varying */
|
|
4255
|
+
"rowFilter.devices.app_id": string;
|
|
4256
|
+
/** Format: public.platform_os */
|
|
4257
|
+
"rowFilter.devices.platform": string;
|
|
4258
|
+
/** Format: text */
|
|
4259
|
+
"rowFilter.devices.plugin_version": string;
|
|
4260
|
+
/** Format: character varying */
|
|
4261
|
+
"rowFilter.devices.os_version": string;
|
|
4262
|
+
/** Format: character varying */
|
|
4263
|
+
"rowFilter.devices.date_id": string;
|
|
4264
|
+
/** Format: text */
|
|
4265
|
+
"rowFilter.devices.version_build": string;
|
|
4266
|
+
/** Format: text */
|
|
4267
|
+
"rowFilter.devices.custom_id": string;
|
|
4268
|
+
/** @description app_versions_meta */
|
|
4269
|
+
"body.app_versions_meta": definitions["app_versions_meta"];
|
|
4270
|
+
/** Format: timestamp with time zone */
|
|
4271
|
+
"rowFilter.app_versions_meta.created_at": string;
|
|
4272
|
+
/** Format: character varying */
|
|
4273
|
+
"rowFilter.app_versions_meta.app_id": string;
|
|
4274
|
+
/** Format: uuid */
|
|
4275
|
+
"rowFilter.app_versions_meta.user_id": string;
|
|
4276
|
+
/** Format: timestamp with time zone */
|
|
4277
|
+
"rowFilter.app_versions_meta.updated_at": string;
|
|
4278
|
+
/** Format: character varying */
|
|
4279
|
+
"rowFilter.app_versions_meta.checksum": string;
|
|
4280
|
+
/** Format: bigint */
|
|
4281
|
+
"rowFilter.app_versions_meta.size": string;
|
|
4282
|
+
/** Format: bigint */
|
|
4283
|
+
"rowFilter.app_versions_meta.id": string;
|
|
4284
|
+
/** Format: bigint */
|
|
4285
|
+
"rowFilter.app_versions_meta.devices": string;
|
|
4286
|
+
/** @description app_stats_onprem */
|
|
4287
|
+
"body.app_stats_onprem": definitions["app_stats_onprem"];
|
|
4288
|
+
/** Format: character varying */
|
|
4289
|
+
"rowFilter.app_stats_onprem.app_id": string;
|
|
4290
|
+
/** Format: timestamp with time zone */
|
|
4291
|
+
"rowFilter.app_stats_onprem.created_at": string;
|
|
4292
|
+
/** Format: timestamp with time zone */
|
|
4293
|
+
"rowFilter.app_stats_onprem.updated_at": string;
|
|
4294
|
+
/** Format: bigint */
|
|
4295
|
+
"rowFilter.app_stats_onprem.mlu": string;
|
|
4296
|
+
/** Format: bigint */
|
|
4297
|
+
"rowFilter.app_stats_onprem.versions": string;
|
|
4298
|
+
/** Format: bigint */
|
|
4299
|
+
"rowFilter.app_stats_onprem.mlu_real": string;
|
|
4300
|
+
/** Format: character varying */
|
|
4301
|
+
"rowFilter.app_stats_onprem.date_id": string;
|
|
4302
|
+
/** Format: bigint */
|
|
4303
|
+
"rowFilter.app_stats_onprem.devices": string;
|
|
4304
|
+
/** @description app_versions */
|
|
4305
|
+
"body.app_versions": definitions["app_versions"];
|
|
4306
|
+
/** Format: bigint */
|
|
4307
|
+
"rowFilter.app_versions.id": string;
|
|
4308
|
+
/** Format: timestamp with time zone */
|
|
4309
|
+
"rowFilter.app_versions.created_at": string;
|
|
4310
|
+
/** Format: character varying */
|
|
4311
|
+
"rowFilter.app_versions.app_id": string;
|
|
4312
|
+
/** Format: character varying */
|
|
4313
|
+
"rowFilter.app_versions.name": string;
|
|
4314
|
+
/** Format: character varying */
|
|
4315
|
+
"rowFilter.app_versions.bucket_id": string;
|
|
4316
|
+
/** Format: uuid */
|
|
4317
|
+
"rowFilter.app_versions.user_id": string;
|
|
4318
|
+
/** Format: timestamp with time zone */
|
|
4319
|
+
"rowFilter.app_versions.updated_at": string;
|
|
4320
|
+
/** Format: boolean */
|
|
4321
|
+
"rowFilter.app_versions.deleted": string;
|
|
4322
|
+
/** Format: character varying */
|
|
4323
|
+
"rowFilter.app_versions.external_url": string;
|
|
4324
|
+
/** Format: character varying */
|
|
4325
|
+
"rowFilter.app_versions.checksum": string;
|
|
3763
4326
|
}
|
|
3764
4327
|
|
|
3765
4328
|
export interface operations { }
|