@rstreamlabs/rstream 1.5.0 → 1.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/index.d.mts +419 -39
- package/dist/index.d.ts +419 -39
- package/dist/index.js +26 -3
- package/dist/index.mjs +26 -3
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -36,6 +36,8 @@ declare const authTokenTunnelsScopesSchema: z.ZodObject<{
|
|
|
36
36
|
filters: z.ZodOptional<z.ZodType<FilterNode<Omit<{
|
|
37
37
|
client_id: z.ZodString;
|
|
38
38
|
user_id: z.ZodString;
|
|
39
|
+
project_id: z.ZodString;
|
|
40
|
+
workspace_id: z.ZodString;
|
|
39
41
|
status: z.ZodEnum<["online", "offline"]>;
|
|
40
42
|
id: z.ZodString;
|
|
41
43
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -61,9 +63,11 @@ declare const authTokenTunnelsScopesSchema: z.ZodObject<{
|
|
|
61
63
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
62
64
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
63
65
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
64
|
-
}, "status" | "client_id" | "user_id" | "creation_date">>, z.ZodTypeDef, FilterNode<Omit<{
|
|
66
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">>, z.ZodTypeDef, FilterNode<Omit<{
|
|
65
67
|
client_id: z.ZodString;
|
|
66
68
|
user_id: z.ZodString;
|
|
69
|
+
project_id: z.ZodString;
|
|
70
|
+
workspace_id: z.ZodString;
|
|
67
71
|
status: z.ZodEnum<["online", "offline"]>;
|
|
68
72
|
id: z.ZodString;
|
|
69
73
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -89,11 +93,13 @@ declare const authTokenTunnelsScopesSchema: z.ZodObject<{
|
|
|
89
93
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
90
94
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
91
95
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
92
|
-
}, "status" | "client_id" | "user_id" | "creation_date">>>>;
|
|
96
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">>>>;
|
|
93
97
|
}, "strip", z.ZodTypeAny, {
|
|
94
98
|
filters?: FilterNode<Omit<{
|
|
95
99
|
client_id: z.ZodString;
|
|
96
100
|
user_id: z.ZodString;
|
|
101
|
+
project_id: z.ZodString;
|
|
102
|
+
workspace_id: z.ZodString;
|
|
97
103
|
status: z.ZodEnum<["online", "offline"]>;
|
|
98
104
|
id: z.ZodString;
|
|
99
105
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -119,11 +125,13 @@ declare const authTokenTunnelsScopesSchema: z.ZodObject<{
|
|
|
119
125
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
120
126
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
121
127
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
122
|
-
}, "status" | "client_id" | "user_id" | "creation_date">> | undefined;
|
|
128
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">> | undefined;
|
|
123
129
|
}, {
|
|
124
130
|
filters?: FilterNode<Omit<{
|
|
125
131
|
client_id: z.ZodString;
|
|
126
132
|
user_id: z.ZodString;
|
|
133
|
+
project_id: z.ZodString;
|
|
134
|
+
workspace_id: z.ZodString;
|
|
127
135
|
status: z.ZodEnum<["online", "offline"]>;
|
|
128
136
|
id: z.ZodString;
|
|
129
137
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -149,12 +157,14 @@ declare const authTokenTunnelsScopesSchema: z.ZodObject<{
|
|
|
149
157
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
150
158
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
151
159
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
152
|
-
}, "status" | "client_id" | "user_id" | "creation_date">> | undefined;
|
|
160
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">> | undefined;
|
|
153
161
|
}>]>>;
|
|
154
162
|
connect: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
|
|
155
163
|
filters: z.ZodOptional<z.ZodType<FilterNode<{
|
|
156
164
|
client_id: z.ZodString;
|
|
157
165
|
user_id: z.ZodString;
|
|
166
|
+
project_id: z.ZodString;
|
|
167
|
+
workspace_id: z.ZodString;
|
|
158
168
|
status: z.ZodEnum<["online", "offline"]>;
|
|
159
169
|
id: z.ZodString;
|
|
160
170
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -183,6 +193,8 @@ declare const authTokenTunnelsScopesSchema: z.ZodObject<{
|
|
|
183
193
|
}>, z.ZodTypeDef, FilterNode<{
|
|
184
194
|
client_id: z.ZodString;
|
|
185
195
|
user_id: z.ZodString;
|
|
196
|
+
project_id: z.ZodString;
|
|
197
|
+
workspace_id: z.ZodString;
|
|
186
198
|
status: z.ZodEnum<["online", "offline"]>;
|
|
187
199
|
id: z.ZodString;
|
|
188
200
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -221,6 +233,8 @@ declare const authTokenTunnelsScopesSchema: z.ZodObject<{
|
|
|
221
233
|
filters?: FilterNode<{
|
|
222
234
|
client_id: z.ZodString;
|
|
223
235
|
user_id: z.ZodString;
|
|
236
|
+
project_id: z.ZodString;
|
|
237
|
+
workspace_id: z.ZodString;
|
|
224
238
|
status: z.ZodEnum<["online", "offline"]>;
|
|
225
239
|
id: z.ZodString;
|
|
226
240
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -254,6 +268,8 @@ declare const authTokenTunnelsScopesSchema: z.ZodObject<{
|
|
|
254
268
|
filters?: FilterNode<{
|
|
255
269
|
client_id: z.ZodString;
|
|
256
270
|
user_id: z.ZodString;
|
|
271
|
+
project_id: z.ZodString;
|
|
272
|
+
workspace_id: z.ZodString;
|
|
257
273
|
status: z.ZodEnum<["online", "offline"]>;
|
|
258
274
|
id: z.ZodString;
|
|
259
275
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -285,6 +301,8 @@ declare const authTokenTunnelsScopesSchema: z.ZodObject<{
|
|
|
285
301
|
filters: z.ZodOptional<z.ZodType<FilterNode<{
|
|
286
302
|
client_id: z.ZodString;
|
|
287
303
|
user_id: z.ZodString;
|
|
304
|
+
project_id: z.ZodString;
|
|
305
|
+
workspace_id: z.ZodString;
|
|
288
306
|
status: z.ZodEnum<["online", "offline"]>;
|
|
289
307
|
id: z.ZodString;
|
|
290
308
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -313,6 +331,8 @@ declare const authTokenTunnelsScopesSchema: z.ZodObject<{
|
|
|
313
331
|
}>, z.ZodTypeDef, FilterNode<{
|
|
314
332
|
client_id: z.ZodString;
|
|
315
333
|
user_id: z.ZodString;
|
|
334
|
+
project_id: z.ZodString;
|
|
335
|
+
workspace_id: z.ZodString;
|
|
316
336
|
status: z.ZodEnum<["online", "offline"]>;
|
|
317
337
|
id: z.ZodString;
|
|
318
338
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -342,6 +362,8 @@ declare const authTokenTunnelsScopesSchema: z.ZodObject<{
|
|
|
342
362
|
select: z.ZodOptional<z.ZodObject<{
|
|
343
363
|
client_id: z.ZodOptional<z.ZodBoolean>;
|
|
344
364
|
user_id: z.ZodOptional<z.ZodBoolean>;
|
|
365
|
+
project_id: z.ZodOptional<z.ZodBoolean>;
|
|
366
|
+
workspace_id: z.ZodOptional<z.ZodBoolean>;
|
|
345
367
|
status: z.ZodOptional<z.ZodBoolean>;
|
|
346
368
|
id: z.ZodOptional<z.ZodBoolean>;
|
|
347
369
|
name: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -372,6 +394,8 @@ declare const authTokenTunnelsScopesSchema: z.ZodObject<{
|
|
|
372
394
|
status?: boolean | undefined;
|
|
373
395
|
client_id?: boolean | undefined;
|
|
374
396
|
user_id?: boolean | undefined;
|
|
397
|
+
project_id?: boolean | undefined;
|
|
398
|
+
workspace_id?: boolean | undefined;
|
|
375
399
|
id?: boolean | undefined;
|
|
376
400
|
name?: boolean | undefined;
|
|
377
401
|
creation_date?: boolean | undefined;
|
|
@@ -400,6 +424,8 @@ declare const authTokenTunnelsScopesSchema: z.ZodObject<{
|
|
|
400
424
|
status?: boolean | undefined;
|
|
401
425
|
client_id?: boolean | undefined;
|
|
402
426
|
user_id?: boolean | undefined;
|
|
427
|
+
project_id?: boolean | undefined;
|
|
428
|
+
workspace_id?: boolean | undefined;
|
|
403
429
|
id?: boolean | undefined;
|
|
404
430
|
name?: boolean | undefined;
|
|
405
431
|
creation_date?: boolean | undefined;
|
|
@@ -428,6 +454,8 @@ declare const authTokenTunnelsScopesSchema: z.ZodObject<{
|
|
|
428
454
|
filters?: FilterNode<{
|
|
429
455
|
client_id: z.ZodString;
|
|
430
456
|
user_id: z.ZodString;
|
|
457
|
+
project_id: z.ZodString;
|
|
458
|
+
workspace_id: z.ZodString;
|
|
431
459
|
status: z.ZodEnum<["online", "offline"]>;
|
|
432
460
|
id: z.ZodString;
|
|
433
461
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -459,6 +487,8 @@ declare const authTokenTunnelsScopesSchema: z.ZodObject<{
|
|
|
459
487
|
status?: boolean | undefined;
|
|
460
488
|
client_id?: boolean | undefined;
|
|
461
489
|
user_id?: boolean | undefined;
|
|
490
|
+
project_id?: boolean | undefined;
|
|
491
|
+
workspace_id?: boolean | undefined;
|
|
462
492
|
id?: boolean | undefined;
|
|
463
493
|
name?: boolean | undefined;
|
|
464
494
|
creation_date?: boolean | undefined;
|
|
@@ -487,6 +517,8 @@ declare const authTokenTunnelsScopesSchema: z.ZodObject<{
|
|
|
487
517
|
filters?: FilterNode<{
|
|
488
518
|
client_id: z.ZodString;
|
|
489
519
|
user_id: z.ZodString;
|
|
520
|
+
project_id: z.ZodString;
|
|
521
|
+
workspace_id: z.ZodString;
|
|
490
522
|
status: z.ZodEnum<["online", "offline"]>;
|
|
491
523
|
id: z.ZodString;
|
|
492
524
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -518,6 +550,8 @@ declare const authTokenTunnelsScopesSchema: z.ZodObject<{
|
|
|
518
550
|
status?: boolean | undefined;
|
|
519
551
|
client_id?: boolean | undefined;
|
|
520
552
|
user_id?: boolean | undefined;
|
|
553
|
+
project_id?: boolean | undefined;
|
|
554
|
+
workspace_id?: boolean | undefined;
|
|
521
555
|
id?: boolean | undefined;
|
|
522
556
|
name?: boolean | undefined;
|
|
523
557
|
creation_date?: boolean | undefined;
|
|
@@ -548,6 +582,8 @@ declare const authTokenTunnelsScopesSchema: z.ZodObject<{
|
|
|
548
582
|
filters?: FilterNode<Omit<{
|
|
549
583
|
client_id: z.ZodString;
|
|
550
584
|
user_id: z.ZodString;
|
|
585
|
+
project_id: z.ZodString;
|
|
586
|
+
workspace_id: z.ZodString;
|
|
551
587
|
status: z.ZodEnum<["online", "offline"]>;
|
|
552
588
|
id: z.ZodString;
|
|
553
589
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -573,7 +609,7 @@ declare const authTokenTunnelsScopesSchema: z.ZodObject<{
|
|
|
573
609
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
574
610
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
575
611
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
576
|
-
}, "status" | "client_id" | "user_id" | "creation_date">> | undefined;
|
|
612
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">> | undefined;
|
|
577
613
|
} | undefined;
|
|
578
614
|
connect?: boolean | {
|
|
579
615
|
params?: FilterNode<{
|
|
@@ -582,6 +618,8 @@ declare const authTokenTunnelsScopesSchema: z.ZodObject<{
|
|
|
582
618
|
filters?: FilterNode<{
|
|
583
619
|
client_id: z.ZodString;
|
|
584
620
|
user_id: z.ZodString;
|
|
621
|
+
project_id: z.ZodString;
|
|
622
|
+
workspace_id: z.ZodString;
|
|
585
623
|
status: z.ZodEnum<["online", "offline"]>;
|
|
586
624
|
id: z.ZodString;
|
|
587
625
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -613,6 +651,8 @@ declare const authTokenTunnelsScopesSchema: z.ZodObject<{
|
|
|
613
651
|
filters?: FilterNode<{
|
|
614
652
|
client_id: z.ZodString;
|
|
615
653
|
user_id: z.ZodString;
|
|
654
|
+
project_id: z.ZodString;
|
|
655
|
+
workspace_id: z.ZodString;
|
|
616
656
|
status: z.ZodEnum<["online", "offline"]>;
|
|
617
657
|
id: z.ZodString;
|
|
618
658
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -644,6 +684,8 @@ declare const authTokenTunnelsScopesSchema: z.ZodObject<{
|
|
|
644
684
|
status?: boolean | undefined;
|
|
645
685
|
client_id?: boolean | undefined;
|
|
646
686
|
user_id?: boolean | undefined;
|
|
687
|
+
project_id?: boolean | undefined;
|
|
688
|
+
workspace_id?: boolean | undefined;
|
|
647
689
|
id?: boolean | undefined;
|
|
648
690
|
name?: boolean | undefined;
|
|
649
691
|
creation_date?: boolean | undefined;
|
|
@@ -674,6 +716,8 @@ declare const authTokenTunnelsScopesSchema: z.ZodObject<{
|
|
|
674
716
|
filters?: FilterNode<Omit<{
|
|
675
717
|
client_id: z.ZodString;
|
|
676
718
|
user_id: z.ZodString;
|
|
719
|
+
project_id: z.ZodString;
|
|
720
|
+
workspace_id: z.ZodString;
|
|
677
721
|
status: z.ZodEnum<["online", "offline"]>;
|
|
678
722
|
id: z.ZodString;
|
|
679
723
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -699,7 +743,7 @@ declare const authTokenTunnelsScopesSchema: z.ZodObject<{
|
|
|
699
743
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
700
744
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
701
745
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
702
|
-
}, "status" | "client_id" | "user_id" | "creation_date">> | undefined;
|
|
746
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">> | undefined;
|
|
703
747
|
} | undefined;
|
|
704
748
|
connect?: boolean | {
|
|
705
749
|
params?: FilterNode<{
|
|
@@ -708,6 +752,8 @@ declare const authTokenTunnelsScopesSchema: z.ZodObject<{
|
|
|
708
752
|
filters?: FilterNode<{
|
|
709
753
|
client_id: z.ZodString;
|
|
710
754
|
user_id: z.ZodString;
|
|
755
|
+
project_id: z.ZodString;
|
|
756
|
+
workspace_id: z.ZodString;
|
|
711
757
|
status: z.ZodEnum<["online", "offline"]>;
|
|
712
758
|
id: z.ZodString;
|
|
713
759
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -739,6 +785,8 @@ declare const authTokenTunnelsScopesSchema: z.ZodObject<{
|
|
|
739
785
|
filters?: FilterNode<{
|
|
740
786
|
client_id: z.ZodString;
|
|
741
787
|
user_id: z.ZodString;
|
|
788
|
+
project_id: z.ZodString;
|
|
789
|
+
workspace_id: z.ZodString;
|
|
742
790
|
status: z.ZodEnum<["online", "offline"]>;
|
|
743
791
|
id: z.ZodString;
|
|
744
792
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -770,6 +818,8 @@ declare const authTokenTunnelsScopesSchema: z.ZodObject<{
|
|
|
770
818
|
status?: boolean | undefined;
|
|
771
819
|
client_id?: boolean | undefined;
|
|
772
820
|
user_id?: boolean | undefined;
|
|
821
|
+
project_id?: boolean | undefined;
|
|
822
|
+
workspace_id?: boolean | undefined;
|
|
773
823
|
id?: boolean | undefined;
|
|
774
824
|
name?: boolean | undefined;
|
|
775
825
|
creation_date?: boolean | undefined;
|
|
@@ -802,6 +852,8 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
802
852
|
filters: z.ZodOptional<z.ZodType<FilterNode<Omit<{
|
|
803
853
|
client_id: z.ZodString;
|
|
804
854
|
user_id: z.ZodString;
|
|
855
|
+
project_id: z.ZodString;
|
|
856
|
+
workspace_id: z.ZodString;
|
|
805
857
|
status: z.ZodEnum<["online", "offline"]>;
|
|
806
858
|
id: z.ZodString;
|
|
807
859
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -827,9 +879,11 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
827
879
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
828
880
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
829
881
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
830
|
-
}, "status" | "client_id" | "user_id" | "creation_date">>, z.ZodTypeDef, FilterNode<Omit<{
|
|
882
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">>, z.ZodTypeDef, FilterNode<Omit<{
|
|
831
883
|
client_id: z.ZodString;
|
|
832
884
|
user_id: z.ZodString;
|
|
885
|
+
project_id: z.ZodString;
|
|
886
|
+
workspace_id: z.ZodString;
|
|
833
887
|
status: z.ZodEnum<["online", "offline"]>;
|
|
834
888
|
id: z.ZodString;
|
|
835
889
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -855,11 +909,13 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
855
909
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
856
910
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
857
911
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
858
|
-
}, "status" | "client_id" | "user_id" | "creation_date">>>>;
|
|
912
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">>>>;
|
|
859
913
|
}, "strip", z.ZodTypeAny, {
|
|
860
914
|
filters?: FilterNode<Omit<{
|
|
861
915
|
client_id: z.ZodString;
|
|
862
916
|
user_id: z.ZodString;
|
|
917
|
+
project_id: z.ZodString;
|
|
918
|
+
workspace_id: z.ZodString;
|
|
863
919
|
status: z.ZodEnum<["online", "offline"]>;
|
|
864
920
|
id: z.ZodString;
|
|
865
921
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -885,11 +941,13 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
885
941
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
886
942
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
887
943
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
888
|
-
}, "status" | "client_id" | "user_id" | "creation_date">> | undefined;
|
|
944
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">> | undefined;
|
|
889
945
|
}, {
|
|
890
946
|
filters?: FilterNode<Omit<{
|
|
891
947
|
client_id: z.ZodString;
|
|
892
948
|
user_id: z.ZodString;
|
|
949
|
+
project_id: z.ZodString;
|
|
950
|
+
workspace_id: z.ZodString;
|
|
893
951
|
status: z.ZodEnum<["online", "offline"]>;
|
|
894
952
|
id: z.ZodString;
|
|
895
953
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -915,12 +973,14 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
915
973
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
916
974
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
917
975
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
918
|
-
}, "status" | "client_id" | "user_id" | "creation_date">> | undefined;
|
|
976
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">> | undefined;
|
|
919
977
|
}>]>>;
|
|
920
978
|
connect: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
|
|
921
979
|
filters: z.ZodOptional<z.ZodType<FilterNode<{
|
|
922
980
|
client_id: z.ZodString;
|
|
923
981
|
user_id: z.ZodString;
|
|
982
|
+
project_id: z.ZodString;
|
|
983
|
+
workspace_id: z.ZodString;
|
|
924
984
|
status: z.ZodEnum<["online", "offline"]>;
|
|
925
985
|
id: z.ZodString;
|
|
926
986
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -949,6 +1009,8 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
949
1009
|
}>, z.ZodTypeDef, FilterNode<{
|
|
950
1010
|
client_id: z.ZodString;
|
|
951
1011
|
user_id: z.ZodString;
|
|
1012
|
+
project_id: z.ZodString;
|
|
1013
|
+
workspace_id: z.ZodString;
|
|
952
1014
|
status: z.ZodEnum<["online", "offline"]>;
|
|
953
1015
|
id: z.ZodString;
|
|
954
1016
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -987,6 +1049,8 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
987
1049
|
filters?: FilterNode<{
|
|
988
1050
|
client_id: z.ZodString;
|
|
989
1051
|
user_id: z.ZodString;
|
|
1052
|
+
project_id: z.ZodString;
|
|
1053
|
+
workspace_id: z.ZodString;
|
|
990
1054
|
status: z.ZodEnum<["online", "offline"]>;
|
|
991
1055
|
id: z.ZodString;
|
|
992
1056
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1020,6 +1084,8 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
1020
1084
|
filters?: FilterNode<{
|
|
1021
1085
|
client_id: z.ZodString;
|
|
1022
1086
|
user_id: z.ZodString;
|
|
1087
|
+
project_id: z.ZodString;
|
|
1088
|
+
workspace_id: z.ZodString;
|
|
1023
1089
|
status: z.ZodEnum<["online", "offline"]>;
|
|
1024
1090
|
id: z.ZodString;
|
|
1025
1091
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1051,6 +1117,8 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
1051
1117
|
filters: z.ZodOptional<z.ZodType<FilterNode<{
|
|
1052
1118
|
client_id: z.ZodString;
|
|
1053
1119
|
user_id: z.ZodString;
|
|
1120
|
+
project_id: z.ZodString;
|
|
1121
|
+
workspace_id: z.ZodString;
|
|
1054
1122
|
status: z.ZodEnum<["online", "offline"]>;
|
|
1055
1123
|
id: z.ZodString;
|
|
1056
1124
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1079,6 +1147,8 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
1079
1147
|
}>, z.ZodTypeDef, FilterNode<{
|
|
1080
1148
|
client_id: z.ZodString;
|
|
1081
1149
|
user_id: z.ZodString;
|
|
1150
|
+
project_id: z.ZodString;
|
|
1151
|
+
workspace_id: z.ZodString;
|
|
1082
1152
|
status: z.ZodEnum<["online", "offline"]>;
|
|
1083
1153
|
id: z.ZodString;
|
|
1084
1154
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1108,6 +1178,8 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
1108
1178
|
select: z.ZodOptional<z.ZodObject<{
|
|
1109
1179
|
client_id: z.ZodOptional<z.ZodBoolean>;
|
|
1110
1180
|
user_id: z.ZodOptional<z.ZodBoolean>;
|
|
1181
|
+
project_id: z.ZodOptional<z.ZodBoolean>;
|
|
1182
|
+
workspace_id: z.ZodOptional<z.ZodBoolean>;
|
|
1111
1183
|
status: z.ZodOptional<z.ZodBoolean>;
|
|
1112
1184
|
id: z.ZodOptional<z.ZodBoolean>;
|
|
1113
1185
|
name: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1138,6 +1210,8 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
1138
1210
|
status?: boolean | undefined;
|
|
1139
1211
|
client_id?: boolean | undefined;
|
|
1140
1212
|
user_id?: boolean | undefined;
|
|
1213
|
+
project_id?: boolean | undefined;
|
|
1214
|
+
workspace_id?: boolean | undefined;
|
|
1141
1215
|
id?: boolean | undefined;
|
|
1142
1216
|
name?: boolean | undefined;
|
|
1143
1217
|
creation_date?: boolean | undefined;
|
|
@@ -1166,6 +1240,8 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
1166
1240
|
status?: boolean | undefined;
|
|
1167
1241
|
client_id?: boolean | undefined;
|
|
1168
1242
|
user_id?: boolean | undefined;
|
|
1243
|
+
project_id?: boolean | undefined;
|
|
1244
|
+
workspace_id?: boolean | undefined;
|
|
1169
1245
|
id?: boolean | undefined;
|
|
1170
1246
|
name?: boolean | undefined;
|
|
1171
1247
|
creation_date?: boolean | undefined;
|
|
@@ -1194,6 +1270,8 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
1194
1270
|
filters?: FilterNode<{
|
|
1195
1271
|
client_id: z.ZodString;
|
|
1196
1272
|
user_id: z.ZodString;
|
|
1273
|
+
project_id: z.ZodString;
|
|
1274
|
+
workspace_id: z.ZodString;
|
|
1197
1275
|
status: z.ZodEnum<["online", "offline"]>;
|
|
1198
1276
|
id: z.ZodString;
|
|
1199
1277
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1225,6 +1303,8 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
1225
1303
|
status?: boolean | undefined;
|
|
1226
1304
|
client_id?: boolean | undefined;
|
|
1227
1305
|
user_id?: boolean | undefined;
|
|
1306
|
+
project_id?: boolean | undefined;
|
|
1307
|
+
workspace_id?: boolean | undefined;
|
|
1228
1308
|
id?: boolean | undefined;
|
|
1229
1309
|
name?: boolean | undefined;
|
|
1230
1310
|
creation_date?: boolean | undefined;
|
|
@@ -1253,6 +1333,8 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
1253
1333
|
filters?: FilterNode<{
|
|
1254
1334
|
client_id: z.ZodString;
|
|
1255
1335
|
user_id: z.ZodString;
|
|
1336
|
+
project_id: z.ZodString;
|
|
1337
|
+
workspace_id: z.ZodString;
|
|
1256
1338
|
status: z.ZodEnum<["online", "offline"]>;
|
|
1257
1339
|
id: z.ZodString;
|
|
1258
1340
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1284,6 +1366,8 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
1284
1366
|
status?: boolean | undefined;
|
|
1285
1367
|
client_id?: boolean | undefined;
|
|
1286
1368
|
user_id?: boolean | undefined;
|
|
1369
|
+
project_id?: boolean | undefined;
|
|
1370
|
+
workspace_id?: boolean | undefined;
|
|
1287
1371
|
id?: boolean | undefined;
|
|
1288
1372
|
name?: boolean | undefined;
|
|
1289
1373
|
creation_date?: boolean | undefined;
|
|
@@ -1314,6 +1398,8 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
1314
1398
|
filters?: FilterNode<Omit<{
|
|
1315
1399
|
client_id: z.ZodString;
|
|
1316
1400
|
user_id: z.ZodString;
|
|
1401
|
+
project_id: z.ZodString;
|
|
1402
|
+
workspace_id: z.ZodString;
|
|
1317
1403
|
status: z.ZodEnum<["online", "offline"]>;
|
|
1318
1404
|
id: z.ZodString;
|
|
1319
1405
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1339,7 +1425,7 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
1339
1425
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1340
1426
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1341
1427
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
1342
|
-
}, "status" | "client_id" | "user_id" | "creation_date">> | undefined;
|
|
1428
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">> | undefined;
|
|
1343
1429
|
} | undefined;
|
|
1344
1430
|
connect?: boolean | {
|
|
1345
1431
|
params?: FilterNode<{
|
|
@@ -1348,6 +1434,8 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
1348
1434
|
filters?: FilterNode<{
|
|
1349
1435
|
client_id: z.ZodString;
|
|
1350
1436
|
user_id: z.ZodString;
|
|
1437
|
+
project_id: z.ZodString;
|
|
1438
|
+
workspace_id: z.ZodString;
|
|
1351
1439
|
status: z.ZodEnum<["online", "offline"]>;
|
|
1352
1440
|
id: z.ZodString;
|
|
1353
1441
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1379,6 +1467,8 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
1379
1467
|
filters?: FilterNode<{
|
|
1380
1468
|
client_id: z.ZodString;
|
|
1381
1469
|
user_id: z.ZodString;
|
|
1470
|
+
project_id: z.ZodString;
|
|
1471
|
+
workspace_id: z.ZodString;
|
|
1382
1472
|
status: z.ZodEnum<["online", "offline"]>;
|
|
1383
1473
|
id: z.ZodString;
|
|
1384
1474
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1410,6 +1500,8 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
1410
1500
|
status?: boolean | undefined;
|
|
1411
1501
|
client_id?: boolean | undefined;
|
|
1412
1502
|
user_id?: boolean | undefined;
|
|
1503
|
+
project_id?: boolean | undefined;
|
|
1504
|
+
workspace_id?: boolean | undefined;
|
|
1413
1505
|
id?: boolean | undefined;
|
|
1414
1506
|
name?: boolean | undefined;
|
|
1415
1507
|
creation_date?: boolean | undefined;
|
|
@@ -1440,6 +1532,8 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
1440
1532
|
filters?: FilterNode<Omit<{
|
|
1441
1533
|
client_id: z.ZodString;
|
|
1442
1534
|
user_id: z.ZodString;
|
|
1535
|
+
project_id: z.ZodString;
|
|
1536
|
+
workspace_id: z.ZodString;
|
|
1443
1537
|
status: z.ZodEnum<["online", "offline"]>;
|
|
1444
1538
|
id: z.ZodString;
|
|
1445
1539
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1465,7 +1559,7 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
1465
1559
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1466
1560
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1467
1561
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
1468
|
-
}, "status" | "client_id" | "user_id" | "creation_date">> | undefined;
|
|
1562
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">> | undefined;
|
|
1469
1563
|
} | undefined;
|
|
1470
1564
|
connect?: boolean | {
|
|
1471
1565
|
params?: FilterNode<{
|
|
@@ -1474,6 +1568,8 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
1474
1568
|
filters?: FilterNode<{
|
|
1475
1569
|
client_id: z.ZodString;
|
|
1476
1570
|
user_id: z.ZodString;
|
|
1571
|
+
project_id: z.ZodString;
|
|
1572
|
+
workspace_id: z.ZodString;
|
|
1477
1573
|
status: z.ZodEnum<["online", "offline"]>;
|
|
1478
1574
|
id: z.ZodString;
|
|
1479
1575
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1505,6 +1601,8 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
1505
1601
|
filters?: FilterNode<{
|
|
1506
1602
|
client_id: z.ZodString;
|
|
1507
1603
|
user_id: z.ZodString;
|
|
1604
|
+
project_id: z.ZodString;
|
|
1605
|
+
workspace_id: z.ZodString;
|
|
1508
1606
|
status: z.ZodEnum<["online", "offline"]>;
|
|
1509
1607
|
id: z.ZodString;
|
|
1510
1608
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1536,6 +1634,8 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
1536
1634
|
status?: boolean | undefined;
|
|
1537
1635
|
client_id?: boolean | undefined;
|
|
1538
1636
|
user_id?: boolean | undefined;
|
|
1637
|
+
project_id?: boolean | undefined;
|
|
1638
|
+
workspace_id?: boolean | undefined;
|
|
1539
1639
|
id?: boolean | undefined;
|
|
1540
1640
|
name?: boolean | undefined;
|
|
1541
1641
|
creation_date?: boolean | undefined;
|
|
@@ -1568,6 +1668,8 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
1568
1668
|
filters?: FilterNode<Omit<{
|
|
1569
1669
|
client_id: z.ZodString;
|
|
1570
1670
|
user_id: z.ZodString;
|
|
1671
|
+
project_id: z.ZodString;
|
|
1672
|
+
workspace_id: z.ZodString;
|
|
1571
1673
|
status: z.ZodEnum<["online", "offline"]>;
|
|
1572
1674
|
id: z.ZodString;
|
|
1573
1675
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1593,7 +1695,7 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
1593
1695
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1594
1696
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1595
1697
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
1596
|
-
}, "status" | "client_id" | "user_id" | "creation_date">> | undefined;
|
|
1698
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">> | undefined;
|
|
1597
1699
|
} | undefined;
|
|
1598
1700
|
connect?: boolean | {
|
|
1599
1701
|
params?: FilterNode<{
|
|
@@ -1602,6 +1704,8 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
1602
1704
|
filters?: FilterNode<{
|
|
1603
1705
|
client_id: z.ZodString;
|
|
1604
1706
|
user_id: z.ZodString;
|
|
1707
|
+
project_id: z.ZodString;
|
|
1708
|
+
workspace_id: z.ZodString;
|
|
1605
1709
|
status: z.ZodEnum<["online", "offline"]>;
|
|
1606
1710
|
id: z.ZodString;
|
|
1607
1711
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1633,6 +1737,8 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
1633
1737
|
filters?: FilterNode<{
|
|
1634
1738
|
client_id: z.ZodString;
|
|
1635
1739
|
user_id: z.ZodString;
|
|
1740
|
+
project_id: z.ZodString;
|
|
1741
|
+
workspace_id: z.ZodString;
|
|
1636
1742
|
status: z.ZodEnum<["online", "offline"]>;
|
|
1637
1743
|
id: z.ZodString;
|
|
1638
1744
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1664,6 +1770,8 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
1664
1770
|
status?: boolean | undefined;
|
|
1665
1771
|
client_id?: boolean | undefined;
|
|
1666
1772
|
user_id?: boolean | undefined;
|
|
1773
|
+
project_id?: boolean | undefined;
|
|
1774
|
+
workspace_id?: boolean | undefined;
|
|
1667
1775
|
id?: boolean | undefined;
|
|
1668
1776
|
name?: boolean | undefined;
|
|
1669
1777
|
creation_date?: boolean | undefined;
|
|
@@ -1696,6 +1804,8 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
1696
1804
|
filters?: FilterNode<Omit<{
|
|
1697
1805
|
client_id: z.ZodString;
|
|
1698
1806
|
user_id: z.ZodString;
|
|
1807
|
+
project_id: z.ZodString;
|
|
1808
|
+
workspace_id: z.ZodString;
|
|
1699
1809
|
status: z.ZodEnum<["online", "offline"]>;
|
|
1700
1810
|
id: z.ZodString;
|
|
1701
1811
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1721,7 +1831,7 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
1721
1831
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1722
1832
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1723
1833
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
1724
|
-
}, "status" | "client_id" | "user_id" | "creation_date">> | undefined;
|
|
1834
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">> | undefined;
|
|
1725
1835
|
} | undefined;
|
|
1726
1836
|
connect?: boolean | {
|
|
1727
1837
|
params?: FilterNode<{
|
|
@@ -1730,6 +1840,8 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
1730
1840
|
filters?: FilterNode<{
|
|
1731
1841
|
client_id: z.ZodString;
|
|
1732
1842
|
user_id: z.ZodString;
|
|
1843
|
+
project_id: z.ZodString;
|
|
1844
|
+
workspace_id: z.ZodString;
|
|
1733
1845
|
status: z.ZodEnum<["online", "offline"]>;
|
|
1734
1846
|
id: z.ZodString;
|
|
1735
1847
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1761,6 +1873,8 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
1761
1873
|
filters?: FilterNode<{
|
|
1762
1874
|
client_id: z.ZodString;
|
|
1763
1875
|
user_id: z.ZodString;
|
|
1876
|
+
project_id: z.ZodString;
|
|
1877
|
+
workspace_id: z.ZodString;
|
|
1764
1878
|
status: z.ZodEnum<["online", "offline"]>;
|
|
1765
1879
|
id: z.ZodString;
|
|
1766
1880
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1792,6 +1906,8 @@ declare const authTokenScopesSchema: z.ZodObject<{
|
|
|
1792
1906
|
status?: boolean | undefined;
|
|
1793
1907
|
client_id?: boolean | undefined;
|
|
1794
1908
|
user_id?: boolean | undefined;
|
|
1909
|
+
project_id?: boolean | undefined;
|
|
1910
|
+
workspace_id?: boolean | undefined;
|
|
1795
1911
|
id?: boolean | undefined;
|
|
1796
1912
|
name?: boolean | undefined;
|
|
1797
1913
|
creation_date?: boolean | undefined;
|
|
@@ -1858,6 +1974,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
1858
1974
|
filters: z.ZodOptional<z.ZodType<FilterNode<Omit<{
|
|
1859
1975
|
client_id: z.ZodString;
|
|
1860
1976
|
user_id: z.ZodString;
|
|
1977
|
+
project_id: z.ZodString;
|
|
1978
|
+
workspace_id: z.ZodString;
|
|
1861
1979
|
status: z.ZodEnum<["online", "offline"]>;
|
|
1862
1980
|
id: z.ZodString;
|
|
1863
1981
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1883,9 +2001,11 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
1883
2001
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1884
2002
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1885
2003
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
1886
|
-
}, "status" | "client_id" | "user_id" | "creation_date">>, z.ZodTypeDef, FilterNode<Omit<{
|
|
2004
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">>, z.ZodTypeDef, FilterNode<Omit<{
|
|
1887
2005
|
client_id: z.ZodString;
|
|
1888
2006
|
user_id: z.ZodString;
|
|
2007
|
+
project_id: z.ZodString;
|
|
2008
|
+
workspace_id: z.ZodString;
|
|
1889
2009
|
status: z.ZodEnum<["online", "offline"]>;
|
|
1890
2010
|
id: z.ZodString;
|
|
1891
2011
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1911,11 +2031,13 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
1911
2031
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1912
2032
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1913
2033
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
1914
|
-
}, "status" | "client_id" | "user_id" | "creation_date">>>>;
|
|
2034
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">>>>;
|
|
1915
2035
|
}, "strip", z.ZodTypeAny, {
|
|
1916
2036
|
filters?: FilterNode<Omit<{
|
|
1917
2037
|
client_id: z.ZodString;
|
|
1918
2038
|
user_id: z.ZodString;
|
|
2039
|
+
project_id: z.ZodString;
|
|
2040
|
+
workspace_id: z.ZodString;
|
|
1919
2041
|
status: z.ZodEnum<["online", "offline"]>;
|
|
1920
2042
|
id: z.ZodString;
|
|
1921
2043
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1941,11 +2063,13 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
1941
2063
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1942
2064
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1943
2065
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
1944
|
-
}, "status" | "client_id" | "user_id" | "creation_date">> | undefined;
|
|
2066
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">> | undefined;
|
|
1945
2067
|
}, {
|
|
1946
2068
|
filters?: FilterNode<Omit<{
|
|
1947
2069
|
client_id: z.ZodString;
|
|
1948
2070
|
user_id: z.ZodString;
|
|
2071
|
+
project_id: z.ZodString;
|
|
2072
|
+
workspace_id: z.ZodString;
|
|
1949
2073
|
status: z.ZodEnum<["online", "offline"]>;
|
|
1950
2074
|
id: z.ZodString;
|
|
1951
2075
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -1971,12 +2095,14 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
1971
2095
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1972
2096
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1973
2097
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
1974
|
-
}, "status" | "client_id" | "user_id" | "creation_date">> | undefined;
|
|
2098
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">> | undefined;
|
|
1975
2099
|
}>]>>;
|
|
1976
2100
|
connect: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
|
|
1977
2101
|
filters: z.ZodOptional<z.ZodType<FilterNode<{
|
|
1978
2102
|
client_id: z.ZodString;
|
|
1979
2103
|
user_id: z.ZodString;
|
|
2104
|
+
project_id: z.ZodString;
|
|
2105
|
+
workspace_id: z.ZodString;
|
|
1980
2106
|
status: z.ZodEnum<["online", "offline"]>;
|
|
1981
2107
|
id: z.ZodString;
|
|
1982
2108
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2005,6 +2131,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2005
2131
|
}>, z.ZodTypeDef, FilterNode<{
|
|
2006
2132
|
client_id: z.ZodString;
|
|
2007
2133
|
user_id: z.ZodString;
|
|
2134
|
+
project_id: z.ZodString;
|
|
2135
|
+
workspace_id: z.ZodString;
|
|
2008
2136
|
status: z.ZodEnum<["online", "offline"]>;
|
|
2009
2137
|
id: z.ZodString;
|
|
2010
2138
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2043,6 +2171,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2043
2171
|
filters?: FilterNode<{
|
|
2044
2172
|
client_id: z.ZodString;
|
|
2045
2173
|
user_id: z.ZodString;
|
|
2174
|
+
project_id: z.ZodString;
|
|
2175
|
+
workspace_id: z.ZodString;
|
|
2046
2176
|
status: z.ZodEnum<["online", "offline"]>;
|
|
2047
2177
|
id: z.ZodString;
|
|
2048
2178
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2076,6 +2206,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2076
2206
|
filters?: FilterNode<{
|
|
2077
2207
|
client_id: z.ZodString;
|
|
2078
2208
|
user_id: z.ZodString;
|
|
2209
|
+
project_id: z.ZodString;
|
|
2210
|
+
workspace_id: z.ZodString;
|
|
2079
2211
|
status: z.ZodEnum<["online", "offline"]>;
|
|
2080
2212
|
id: z.ZodString;
|
|
2081
2213
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2107,6 +2239,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2107
2239
|
filters: z.ZodOptional<z.ZodType<FilterNode<{
|
|
2108
2240
|
client_id: z.ZodString;
|
|
2109
2241
|
user_id: z.ZodString;
|
|
2242
|
+
project_id: z.ZodString;
|
|
2243
|
+
workspace_id: z.ZodString;
|
|
2110
2244
|
status: z.ZodEnum<["online", "offline"]>;
|
|
2111
2245
|
id: z.ZodString;
|
|
2112
2246
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2135,6 +2269,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2135
2269
|
}>, z.ZodTypeDef, FilterNode<{
|
|
2136
2270
|
client_id: z.ZodString;
|
|
2137
2271
|
user_id: z.ZodString;
|
|
2272
|
+
project_id: z.ZodString;
|
|
2273
|
+
workspace_id: z.ZodString;
|
|
2138
2274
|
status: z.ZodEnum<["online", "offline"]>;
|
|
2139
2275
|
id: z.ZodString;
|
|
2140
2276
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2164,6 +2300,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2164
2300
|
select: z.ZodOptional<z.ZodObject<{
|
|
2165
2301
|
client_id: z.ZodOptional<z.ZodBoolean>;
|
|
2166
2302
|
user_id: z.ZodOptional<z.ZodBoolean>;
|
|
2303
|
+
project_id: z.ZodOptional<z.ZodBoolean>;
|
|
2304
|
+
workspace_id: z.ZodOptional<z.ZodBoolean>;
|
|
2167
2305
|
status: z.ZodOptional<z.ZodBoolean>;
|
|
2168
2306
|
id: z.ZodOptional<z.ZodBoolean>;
|
|
2169
2307
|
name: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2194,6 +2332,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2194
2332
|
status?: boolean | undefined;
|
|
2195
2333
|
client_id?: boolean | undefined;
|
|
2196
2334
|
user_id?: boolean | undefined;
|
|
2335
|
+
project_id?: boolean | undefined;
|
|
2336
|
+
workspace_id?: boolean | undefined;
|
|
2197
2337
|
id?: boolean | undefined;
|
|
2198
2338
|
name?: boolean | undefined;
|
|
2199
2339
|
creation_date?: boolean | undefined;
|
|
@@ -2222,6 +2362,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2222
2362
|
status?: boolean | undefined;
|
|
2223
2363
|
client_id?: boolean | undefined;
|
|
2224
2364
|
user_id?: boolean | undefined;
|
|
2365
|
+
project_id?: boolean | undefined;
|
|
2366
|
+
workspace_id?: boolean | undefined;
|
|
2225
2367
|
id?: boolean | undefined;
|
|
2226
2368
|
name?: boolean | undefined;
|
|
2227
2369
|
creation_date?: boolean | undefined;
|
|
@@ -2250,6 +2392,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2250
2392
|
filters?: FilterNode<{
|
|
2251
2393
|
client_id: z.ZodString;
|
|
2252
2394
|
user_id: z.ZodString;
|
|
2395
|
+
project_id: z.ZodString;
|
|
2396
|
+
workspace_id: z.ZodString;
|
|
2253
2397
|
status: z.ZodEnum<["online", "offline"]>;
|
|
2254
2398
|
id: z.ZodString;
|
|
2255
2399
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2281,6 +2425,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2281
2425
|
status?: boolean | undefined;
|
|
2282
2426
|
client_id?: boolean | undefined;
|
|
2283
2427
|
user_id?: boolean | undefined;
|
|
2428
|
+
project_id?: boolean | undefined;
|
|
2429
|
+
workspace_id?: boolean | undefined;
|
|
2284
2430
|
id?: boolean | undefined;
|
|
2285
2431
|
name?: boolean | undefined;
|
|
2286
2432
|
creation_date?: boolean | undefined;
|
|
@@ -2309,6 +2455,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2309
2455
|
filters?: FilterNode<{
|
|
2310
2456
|
client_id: z.ZodString;
|
|
2311
2457
|
user_id: z.ZodString;
|
|
2458
|
+
project_id: z.ZodString;
|
|
2459
|
+
workspace_id: z.ZodString;
|
|
2312
2460
|
status: z.ZodEnum<["online", "offline"]>;
|
|
2313
2461
|
id: z.ZodString;
|
|
2314
2462
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2340,6 +2488,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2340
2488
|
status?: boolean | undefined;
|
|
2341
2489
|
client_id?: boolean | undefined;
|
|
2342
2490
|
user_id?: boolean | undefined;
|
|
2491
|
+
project_id?: boolean | undefined;
|
|
2492
|
+
workspace_id?: boolean | undefined;
|
|
2343
2493
|
id?: boolean | undefined;
|
|
2344
2494
|
name?: boolean | undefined;
|
|
2345
2495
|
creation_date?: boolean | undefined;
|
|
@@ -2370,6 +2520,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2370
2520
|
filters?: FilterNode<Omit<{
|
|
2371
2521
|
client_id: z.ZodString;
|
|
2372
2522
|
user_id: z.ZodString;
|
|
2523
|
+
project_id: z.ZodString;
|
|
2524
|
+
workspace_id: z.ZodString;
|
|
2373
2525
|
status: z.ZodEnum<["online", "offline"]>;
|
|
2374
2526
|
id: z.ZodString;
|
|
2375
2527
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2395,7 +2547,7 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2395
2547
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2396
2548
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2397
2549
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
2398
|
-
}, "status" | "client_id" | "user_id" | "creation_date">> | undefined;
|
|
2550
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">> | undefined;
|
|
2399
2551
|
} | undefined;
|
|
2400
2552
|
connect?: boolean | {
|
|
2401
2553
|
params?: FilterNode<{
|
|
@@ -2404,6 +2556,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2404
2556
|
filters?: FilterNode<{
|
|
2405
2557
|
client_id: z.ZodString;
|
|
2406
2558
|
user_id: z.ZodString;
|
|
2559
|
+
project_id: z.ZodString;
|
|
2560
|
+
workspace_id: z.ZodString;
|
|
2407
2561
|
status: z.ZodEnum<["online", "offline"]>;
|
|
2408
2562
|
id: z.ZodString;
|
|
2409
2563
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2435,6 +2589,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2435
2589
|
filters?: FilterNode<{
|
|
2436
2590
|
client_id: z.ZodString;
|
|
2437
2591
|
user_id: z.ZodString;
|
|
2592
|
+
project_id: z.ZodString;
|
|
2593
|
+
workspace_id: z.ZodString;
|
|
2438
2594
|
status: z.ZodEnum<["online", "offline"]>;
|
|
2439
2595
|
id: z.ZodString;
|
|
2440
2596
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2466,6 +2622,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2466
2622
|
status?: boolean | undefined;
|
|
2467
2623
|
client_id?: boolean | undefined;
|
|
2468
2624
|
user_id?: boolean | undefined;
|
|
2625
|
+
project_id?: boolean | undefined;
|
|
2626
|
+
workspace_id?: boolean | undefined;
|
|
2469
2627
|
id?: boolean | undefined;
|
|
2470
2628
|
name?: boolean | undefined;
|
|
2471
2629
|
creation_date?: boolean | undefined;
|
|
@@ -2496,6 +2654,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2496
2654
|
filters?: FilterNode<Omit<{
|
|
2497
2655
|
client_id: z.ZodString;
|
|
2498
2656
|
user_id: z.ZodString;
|
|
2657
|
+
project_id: z.ZodString;
|
|
2658
|
+
workspace_id: z.ZodString;
|
|
2499
2659
|
status: z.ZodEnum<["online", "offline"]>;
|
|
2500
2660
|
id: z.ZodString;
|
|
2501
2661
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2521,7 +2681,7 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2521
2681
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2522
2682
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2523
2683
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
2524
|
-
}, "status" | "client_id" | "user_id" | "creation_date">> | undefined;
|
|
2684
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">> | undefined;
|
|
2525
2685
|
} | undefined;
|
|
2526
2686
|
connect?: boolean | {
|
|
2527
2687
|
params?: FilterNode<{
|
|
@@ -2530,6 +2690,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2530
2690
|
filters?: FilterNode<{
|
|
2531
2691
|
client_id: z.ZodString;
|
|
2532
2692
|
user_id: z.ZodString;
|
|
2693
|
+
project_id: z.ZodString;
|
|
2694
|
+
workspace_id: z.ZodString;
|
|
2533
2695
|
status: z.ZodEnum<["online", "offline"]>;
|
|
2534
2696
|
id: z.ZodString;
|
|
2535
2697
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2561,6 +2723,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2561
2723
|
filters?: FilterNode<{
|
|
2562
2724
|
client_id: z.ZodString;
|
|
2563
2725
|
user_id: z.ZodString;
|
|
2726
|
+
project_id: z.ZodString;
|
|
2727
|
+
workspace_id: z.ZodString;
|
|
2564
2728
|
status: z.ZodEnum<["online", "offline"]>;
|
|
2565
2729
|
id: z.ZodString;
|
|
2566
2730
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2592,6 +2756,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2592
2756
|
status?: boolean | undefined;
|
|
2593
2757
|
client_id?: boolean | undefined;
|
|
2594
2758
|
user_id?: boolean | undefined;
|
|
2759
|
+
project_id?: boolean | undefined;
|
|
2760
|
+
workspace_id?: boolean | undefined;
|
|
2595
2761
|
id?: boolean | undefined;
|
|
2596
2762
|
name?: boolean | undefined;
|
|
2597
2763
|
creation_date?: boolean | undefined;
|
|
@@ -2624,6 +2790,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2624
2790
|
filters?: FilterNode<Omit<{
|
|
2625
2791
|
client_id: z.ZodString;
|
|
2626
2792
|
user_id: z.ZodString;
|
|
2793
|
+
project_id: z.ZodString;
|
|
2794
|
+
workspace_id: z.ZodString;
|
|
2627
2795
|
status: z.ZodEnum<["online", "offline"]>;
|
|
2628
2796
|
id: z.ZodString;
|
|
2629
2797
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2649,7 +2817,7 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2649
2817
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2650
2818
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2651
2819
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
2652
|
-
}, "status" | "client_id" | "user_id" | "creation_date">> | undefined;
|
|
2820
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">> | undefined;
|
|
2653
2821
|
} | undefined;
|
|
2654
2822
|
connect?: boolean | {
|
|
2655
2823
|
params?: FilterNode<{
|
|
@@ -2658,6 +2826,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2658
2826
|
filters?: FilterNode<{
|
|
2659
2827
|
client_id: z.ZodString;
|
|
2660
2828
|
user_id: z.ZodString;
|
|
2829
|
+
project_id: z.ZodString;
|
|
2830
|
+
workspace_id: z.ZodString;
|
|
2661
2831
|
status: z.ZodEnum<["online", "offline"]>;
|
|
2662
2832
|
id: z.ZodString;
|
|
2663
2833
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2689,6 +2859,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2689
2859
|
filters?: FilterNode<{
|
|
2690
2860
|
client_id: z.ZodString;
|
|
2691
2861
|
user_id: z.ZodString;
|
|
2862
|
+
project_id: z.ZodString;
|
|
2863
|
+
workspace_id: z.ZodString;
|
|
2692
2864
|
status: z.ZodEnum<["online", "offline"]>;
|
|
2693
2865
|
id: z.ZodString;
|
|
2694
2866
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2720,6 +2892,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2720
2892
|
status?: boolean | undefined;
|
|
2721
2893
|
client_id?: boolean | undefined;
|
|
2722
2894
|
user_id?: boolean | undefined;
|
|
2895
|
+
project_id?: boolean | undefined;
|
|
2896
|
+
workspace_id?: boolean | undefined;
|
|
2723
2897
|
id?: boolean | undefined;
|
|
2724
2898
|
name?: boolean | undefined;
|
|
2725
2899
|
creation_date?: boolean | undefined;
|
|
@@ -2752,6 +2926,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2752
2926
|
filters?: FilterNode<Omit<{
|
|
2753
2927
|
client_id: z.ZodString;
|
|
2754
2928
|
user_id: z.ZodString;
|
|
2929
|
+
project_id: z.ZodString;
|
|
2930
|
+
workspace_id: z.ZodString;
|
|
2755
2931
|
status: z.ZodEnum<["online", "offline"]>;
|
|
2756
2932
|
id: z.ZodString;
|
|
2757
2933
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2777,7 +2953,7 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2777
2953
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2778
2954
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2779
2955
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
2780
|
-
}, "status" | "client_id" | "user_id" | "creation_date">> | undefined;
|
|
2956
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">> | undefined;
|
|
2781
2957
|
} | undefined;
|
|
2782
2958
|
connect?: boolean | {
|
|
2783
2959
|
params?: FilterNode<{
|
|
@@ -2786,6 +2962,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2786
2962
|
filters?: FilterNode<{
|
|
2787
2963
|
client_id: z.ZodString;
|
|
2788
2964
|
user_id: z.ZodString;
|
|
2965
|
+
project_id: z.ZodString;
|
|
2966
|
+
workspace_id: z.ZodString;
|
|
2789
2967
|
status: z.ZodEnum<["online", "offline"]>;
|
|
2790
2968
|
id: z.ZodString;
|
|
2791
2969
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2817,6 +2995,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2817
2995
|
filters?: FilterNode<{
|
|
2818
2996
|
client_id: z.ZodString;
|
|
2819
2997
|
user_id: z.ZodString;
|
|
2998
|
+
project_id: z.ZodString;
|
|
2999
|
+
workspace_id: z.ZodString;
|
|
2820
3000
|
status: z.ZodEnum<["online", "offline"]>;
|
|
2821
3001
|
id: z.ZodString;
|
|
2822
3002
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2848,6 +3028,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2848
3028
|
status?: boolean | undefined;
|
|
2849
3029
|
client_id?: boolean | undefined;
|
|
2850
3030
|
user_id?: boolean | undefined;
|
|
3031
|
+
project_id?: boolean | undefined;
|
|
3032
|
+
workspace_id?: boolean | undefined;
|
|
2851
3033
|
id?: boolean | undefined;
|
|
2852
3034
|
name?: boolean | undefined;
|
|
2853
3035
|
creation_date?: boolean | undefined;
|
|
@@ -2883,6 +3065,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2883
3065
|
filters?: FilterNode<Omit<{
|
|
2884
3066
|
client_id: z.ZodString;
|
|
2885
3067
|
user_id: z.ZodString;
|
|
3068
|
+
project_id: z.ZodString;
|
|
3069
|
+
workspace_id: z.ZodString;
|
|
2886
3070
|
status: z.ZodEnum<["online", "offline"]>;
|
|
2887
3071
|
id: z.ZodString;
|
|
2888
3072
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2908,7 +3092,7 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2908
3092
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2909
3093
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2910
3094
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
2911
|
-
}, "status" | "client_id" | "user_id" | "creation_date">> | undefined;
|
|
3095
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">> | undefined;
|
|
2912
3096
|
} | undefined;
|
|
2913
3097
|
connect?: boolean | {
|
|
2914
3098
|
params?: FilterNode<{
|
|
@@ -2917,6 +3101,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2917
3101
|
filters?: FilterNode<{
|
|
2918
3102
|
client_id: z.ZodString;
|
|
2919
3103
|
user_id: z.ZodString;
|
|
3104
|
+
project_id: z.ZodString;
|
|
3105
|
+
workspace_id: z.ZodString;
|
|
2920
3106
|
status: z.ZodEnum<["online", "offline"]>;
|
|
2921
3107
|
id: z.ZodString;
|
|
2922
3108
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2948,6 +3134,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2948
3134
|
filters?: FilterNode<{
|
|
2949
3135
|
client_id: z.ZodString;
|
|
2950
3136
|
user_id: z.ZodString;
|
|
3137
|
+
project_id: z.ZodString;
|
|
3138
|
+
workspace_id: z.ZodString;
|
|
2951
3139
|
status: z.ZodEnum<["online", "offline"]>;
|
|
2952
3140
|
id: z.ZodString;
|
|
2953
3141
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -2979,6 +3167,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
2979
3167
|
status?: boolean | undefined;
|
|
2980
3168
|
client_id?: boolean | undefined;
|
|
2981
3169
|
user_id?: boolean | undefined;
|
|
3170
|
+
project_id?: boolean | undefined;
|
|
3171
|
+
workspace_id?: boolean | undefined;
|
|
2982
3172
|
id?: boolean | undefined;
|
|
2983
3173
|
name?: boolean | undefined;
|
|
2984
3174
|
creation_date?: boolean | undefined;
|
|
@@ -3014,6 +3204,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
3014
3204
|
filters?: FilterNode<Omit<{
|
|
3015
3205
|
client_id: z.ZodString;
|
|
3016
3206
|
user_id: z.ZodString;
|
|
3207
|
+
project_id: z.ZodString;
|
|
3208
|
+
workspace_id: z.ZodString;
|
|
3017
3209
|
status: z.ZodEnum<["online", "offline"]>;
|
|
3018
3210
|
id: z.ZodString;
|
|
3019
3211
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3039,7 +3231,7 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
3039
3231
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3040
3232
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3041
3233
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
3042
|
-
}, "status" | "client_id" | "user_id" | "creation_date">> | undefined;
|
|
3234
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">> | undefined;
|
|
3043
3235
|
} | undefined;
|
|
3044
3236
|
connect?: boolean | {
|
|
3045
3237
|
params?: FilterNode<{
|
|
@@ -3048,6 +3240,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
3048
3240
|
filters?: FilterNode<{
|
|
3049
3241
|
client_id: z.ZodString;
|
|
3050
3242
|
user_id: z.ZodString;
|
|
3243
|
+
project_id: z.ZodString;
|
|
3244
|
+
workspace_id: z.ZodString;
|
|
3051
3245
|
status: z.ZodEnum<["online", "offline"]>;
|
|
3052
3246
|
id: z.ZodString;
|
|
3053
3247
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3079,6 +3273,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
3079
3273
|
filters?: FilterNode<{
|
|
3080
3274
|
client_id: z.ZodString;
|
|
3081
3275
|
user_id: z.ZodString;
|
|
3276
|
+
project_id: z.ZodString;
|
|
3277
|
+
workspace_id: z.ZodString;
|
|
3082
3278
|
status: z.ZodEnum<["online", "offline"]>;
|
|
3083
3279
|
id: z.ZodString;
|
|
3084
3280
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3110,6 +3306,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
3110
3306
|
status?: boolean | undefined;
|
|
3111
3307
|
client_id?: boolean | undefined;
|
|
3112
3308
|
user_id?: boolean | undefined;
|
|
3309
|
+
project_id?: boolean | undefined;
|
|
3310
|
+
workspace_id?: boolean | undefined;
|
|
3113
3311
|
id?: boolean | undefined;
|
|
3114
3312
|
name?: boolean | undefined;
|
|
3115
3313
|
creation_date?: boolean | undefined;
|
|
@@ -3147,6 +3345,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
3147
3345
|
filters?: FilterNode<Omit<{
|
|
3148
3346
|
client_id: z.ZodString;
|
|
3149
3347
|
user_id: z.ZodString;
|
|
3348
|
+
project_id: z.ZodString;
|
|
3349
|
+
workspace_id: z.ZodString;
|
|
3150
3350
|
status: z.ZodEnum<["online", "offline"]>;
|
|
3151
3351
|
id: z.ZodString;
|
|
3152
3352
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3172,7 +3372,7 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
3172
3372
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3173
3373
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3174
3374
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
3175
|
-
}, "status" | "client_id" | "user_id" | "creation_date">> | undefined;
|
|
3375
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">> | undefined;
|
|
3176
3376
|
} | undefined;
|
|
3177
3377
|
connect?: boolean | {
|
|
3178
3378
|
params?: FilterNode<{
|
|
@@ -3181,6 +3381,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
3181
3381
|
filters?: FilterNode<{
|
|
3182
3382
|
client_id: z.ZodString;
|
|
3183
3383
|
user_id: z.ZodString;
|
|
3384
|
+
project_id: z.ZodString;
|
|
3385
|
+
workspace_id: z.ZodString;
|
|
3184
3386
|
status: z.ZodEnum<["online", "offline"]>;
|
|
3185
3387
|
id: z.ZodString;
|
|
3186
3388
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3212,6 +3414,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
3212
3414
|
filters?: FilterNode<{
|
|
3213
3415
|
client_id: z.ZodString;
|
|
3214
3416
|
user_id: z.ZodString;
|
|
3417
|
+
project_id: z.ZodString;
|
|
3418
|
+
workspace_id: z.ZodString;
|
|
3215
3419
|
status: z.ZodEnum<["online", "offline"]>;
|
|
3216
3420
|
id: z.ZodString;
|
|
3217
3421
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3243,6 +3447,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
3243
3447
|
status?: boolean | undefined;
|
|
3244
3448
|
client_id?: boolean | undefined;
|
|
3245
3449
|
user_id?: boolean | undefined;
|
|
3450
|
+
project_id?: boolean | undefined;
|
|
3451
|
+
workspace_id?: boolean | undefined;
|
|
3246
3452
|
id?: boolean | undefined;
|
|
3247
3453
|
name?: boolean | undefined;
|
|
3248
3454
|
creation_date?: boolean | undefined;
|
|
@@ -3280,6 +3486,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
3280
3486
|
filters?: FilterNode<Omit<{
|
|
3281
3487
|
client_id: z.ZodString;
|
|
3282
3488
|
user_id: z.ZodString;
|
|
3489
|
+
project_id: z.ZodString;
|
|
3490
|
+
workspace_id: z.ZodString;
|
|
3283
3491
|
status: z.ZodEnum<["online", "offline"]>;
|
|
3284
3492
|
id: z.ZodString;
|
|
3285
3493
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3305,7 +3513,7 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
3305
3513
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3306
3514
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3307
3515
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
3308
|
-
}, "status" | "client_id" | "user_id" | "creation_date">> | undefined;
|
|
3516
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">> | undefined;
|
|
3309
3517
|
} | undefined;
|
|
3310
3518
|
connect?: boolean | {
|
|
3311
3519
|
params?: FilterNode<{
|
|
@@ -3314,6 +3522,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
3314
3522
|
filters?: FilterNode<{
|
|
3315
3523
|
client_id: z.ZodString;
|
|
3316
3524
|
user_id: z.ZodString;
|
|
3525
|
+
project_id: z.ZodString;
|
|
3526
|
+
workspace_id: z.ZodString;
|
|
3317
3527
|
status: z.ZodEnum<["online", "offline"]>;
|
|
3318
3528
|
id: z.ZodString;
|
|
3319
3529
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3345,6 +3555,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
3345
3555
|
filters?: FilterNode<{
|
|
3346
3556
|
client_id: z.ZodString;
|
|
3347
3557
|
user_id: z.ZodString;
|
|
3558
|
+
project_id: z.ZodString;
|
|
3559
|
+
workspace_id: z.ZodString;
|
|
3348
3560
|
status: z.ZodEnum<["online", "offline"]>;
|
|
3349
3561
|
id: z.ZodString;
|
|
3350
3562
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3376,6 +3588,8 @@ declare const authTokenSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
|
3376
3588
|
status?: boolean | undefined;
|
|
3377
3589
|
client_id?: boolean | undefined;
|
|
3378
3590
|
user_id?: boolean | undefined;
|
|
3591
|
+
project_id?: boolean | undefined;
|
|
3592
|
+
workspace_id?: boolean | undefined;
|
|
3379
3593
|
id?: boolean | undefined;
|
|
3380
3594
|
name?: boolean | undefined;
|
|
3381
3595
|
creation_date?: boolean | undefined;
|
|
@@ -3413,6 +3627,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
3413
3627
|
filters: z.ZodOptional<z.ZodType<FilterNode<Omit<{
|
|
3414
3628
|
client_id: z.ZodString;
|
|
3415
3629
|
user_id: z.ZodString;
|
|
3630
|
+
project_id: z.ZodString;
|
|
3631
|
+
workspace_id: z.ZodString;
|
|
3416
3632
|
status: z.ZodEnum<["online", "offline"]>;
|
|
3417
3633
|
id: z.ZodString;
|
|
3418
3634
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3438,9 +3654,11 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
3438
3654
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3439
3655
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3440
3656
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
3441
|
-
}, "status" | "client_id" | "user_id" | "creation_date">>, z.ZodTypeDef, FilterNode<Omit<{
|
|
3657
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">>, z.ZodTypeDef, FilterNode<Omit<{
|
|
3442
3658
|
client_id: z.ZodString;
|
|
3443
3659
|
user_id: z.ZodString;
|
|
3660
|
+
project_id: z.ZodString;
|
|
3661
|
+
workspace_id: z.ZodString;
|
|
3444
3662
|
status: z.ZodEnum<["online", "offline"]>;
|
|
3445
3663
|
id: z.ZodString;
|
|
3446
3664
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3466,11 +3684,13 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
3466
3684
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3467
3685
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3468
3686
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
3469
|
-
}, "status" | "client_id" | "user_id" | "creation_date">>>>;
|
|
3687
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">>>>;
|
|
3470
3688
|
}, "strip", z.ZodTypeAny, {
|
|
3471
3689
|
filters?: FilterNode<Omit<{
|
|
3472
3690
|
client_id: z.ZodString;
|
|
3473
3691
|
user_id: z.ZodString;
|
|
3692
|
+
project_id: z.ZodString;
|
|
3693
|
+
workspace_id: z.ZodString;
|
|
3474
3694
|
status: z.ZodEnum<["online", "offline"]>;
|
|
3475
3695
|
id: z.ZodString;
|
|
3476
3696
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3496,11 +3716,13 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
3496
3716
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3497
3717
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3498
3718
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
3499
|
-
}, "status" | "client_id" | "user_id" | "creation_date">> | undefined;
|
|
3719
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">> | undefined;
|
|
3500
3720
|
}, {
|
|
3501
3721
|
filters?: FilterNode<Omit<{
|
|
3502
3722
|
client_id: z.ZodString;
|
|
3503
3723
|
user_id: z.ZodString;
|
|
3724
|
+
project_id: z.ZodString;
|
|
3725
|
+
workspace_id: z.ZodString;
|
|
3504
3726
|
status: z.ZodEnum<["online", "offline"]>;
|
|
3505
3727
|
id: z.ZodString;
|
|
3506
3728
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3526,12 +3748,14 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
3526
3748
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3527
3749
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3528
3750
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
3529
|
-
}, "status" | "client_id" | "user_id" | "creation_date">> | undefined;
|
|
3751
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">> | undefined;
|
|
3530
3752
|
}>]>>;
|
|
3531
3753
|
connect: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
|
|
3532
3754
|
filters: z.ZodOptional<z.ZodType<FilterNode<{
|
|
3533
3755
|
client_id: z.ZodString;
|
|
3534
3756
|
user_id: z.ZodString;
|
|
3757
|
+
project_id: z.ZodString;
|
|
3758
|
+
workspace_id: z.ZodString;
|
|
3535
3759
|
status: z.ZodEnum<["online", "offline"]>;
|
|
3536
3760
|
id: z.ZodString;
|
|
3537
3761
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3560,6 +3784,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
3560
3784
|
}>, z.ZodTypeDef, FilterNode<{
|
|
3561
3785
|
client_id: z.ZodString;
|
|
3562
3786
|
user_id: z.ZodString;
|
|
3787
|
+
project_id: z.ZodString;
|
|
3788
|
+
workspace_id: z.ZodString;
|
|
3563
3789
|
status: z.ZodEnum<["online", "offline"]>;
|
|
3564
3790
|
id: z.ZodString;
|
|
3565
3791
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3598,6 +3824,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
3598
3824
|
filters?: FilterNode<{
|
|
3599
3825
|
client_id: z.ZodString;
|
|
3600
3826
|
user_id: z.ZodString;
|
|
3827
|
+
project_id: z.ZodString;
|
|
3828
|
+
workspace_id: z.ZodString;
|
|
3601
3829
|
status: z.ZodEnum<["online", "offline"]>;
|
|
3602
3830
|
id: z.ZodString;
|
|
3603
3831
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3631,6 +3859,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
3631
3859
|
filters?: FilterNode<{
|
|
3632
3860
|
client_id: z.ZodString;
|
|
3633
3861
|
user_id: z.ZodString;
|
|
3862
|
+
project_id: z.ZodString;
|
|
3863
|
+
workspace_id: z.ZodString;
|
|
3634
3864
|
status: z.ZodEnum<["online", "offline"]>;
|
|
3635
3865
|
id: z.ZodString;
|
|
3636
3866
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3662,6 +3892,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
3662
3892
|
filters: z.ZodOptional<z.ZodType<FilterNode<{
|
|
3663
3893
|
client_id: z.ZodString;
|
|
3664
3894
|
user_id: z.ZodString;
|
|
3895
|
+
project_id: z.ZodString;
|
|
3896
|
+
workspace_id: z.ZodString;
|
|
3665
3897
|
status: z.ZodEnum<["online", "offline"]>;
|
|
3666
3898
|
id: z.ZodString;
|
|
3667
3899
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3690,6 +3922,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
3690
3922
|
}>, z.ZodTypeDef, FilterNode<{
|
|
3691
3923
|
client_id: z.ZodString;
|
|
3692
3924
|
user_id: z.ZodString;
|
|
3925
|
+
project_id: z.ZodString;
|
|
3926
|
+
workspace_id: z.ZodString;
|
|
3693
3927
|
status: z.ZodEnum<["online", "offline"]>;
|
|
3694
3928
|
id: z.ZodString;
|
|
3695
3929
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3719,6 +3953,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
3719
3953
|
select: z.ZodOptional<z.ZodObject<{
|
|
3720
3954
|
client_id: z.ZodOptional<z.ZodBoolean>;
|
|
3721
3955
|
user_id: z.ZodOptional<z.ZodBoolean>;
|
|
3956
|
+
project_id: z.ZodOptional<z.ZodBoolean>;
|
|
3957
|
+
workspace_id: z.ZodOptional<z.ZodBoolean>;
|
|
3722
3958
|
status: z.ZodOptional<z.ZodBoolean>;
|
|
3723
3959
|
id: z.ZodOptional<z.ZodBoolean>;
|
|
3724
3960
|
name: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3749,6 +3985,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
3749
3985
|
status?: boolean | undefined;
|
|
3750
3986
|
client_id?: boolean | undefined;
|
|
3751
3987
|
user_id?: boolean | undefined;
|
|
3988
|
+
project_id?: boolean | undefined;
|
|
3989
|
+
workspace_id?: boolean | undefined;
|
|
3752
3990
|
id?: boolean | undefined;
|
|
3753
3991
|
name?: boolean | undefined;
|
|
3754
3992
|
creation_date?: boolean | undefined;
|
|
@@ -3777,6 +4015,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
3777
4015
|
status?: boolean | undefined;
|
|
3778
4016
|
client_id?: boolean | undefined;
|
|
3779
4017
|
user_id?: boolean | undefined;
|
|
4018
|
+
project_id?: boolean | undefined;
|
|
4019
|
+
workspace_id?: boolean | undefined;
|
|
3780
4020
|
id?: boolean | undefined;
|
|
3781
4021
|
name?: boolean | undefined;
|
|
3782
4022
|
creation_date?: boolean | undefined;
|
|
@@ -3805,6 +4045,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
3805
4045
|
filters?: FilterNode<{
|
|
3806
4046
|
client_id: z.ZodString;
|
|
3807
4047
|
user_id: z.ZodString;
|
|
4048
|
+
project_id: z.ZodString;
|
|
4049
|
+
workspace_id: z.ZodString;
|
|
3808
4050
|
status: z.ZodEnum<["online", "offline"]>;
|
|
3809
4051
|
id: z.ZodString;
|
|
3810
4052
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3836,6 +4078,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
3836
4078
|
status?: boolean | undefined;
|
|
3837
4079
|
client_id?: boolean | undefined;
|
|
3838
4080
|
user_id?: boolean | undefined;
|
|
4081
|
+
project_id?: boolean | undefined;
|
|
4082
|
+
workspace_id?: boolean | undefined;
|
|
3839
4083
|
id?: boolean | undefined;
|
|
3840
4084
|
name?: boolean | undefined;
|
|
3841
4085
|
creation_date?: boolean | undefined;
|
|
@@ -3864,6 +4108,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
3864
4108
|
filters?: FilterNode<{
|
|
3865
4109
|
client_id: z.ZodString;
|
|
3866
4110
|
user_id: z.ZodString;
|
|
4111
|
+
project_id: z.ZodString;
|
|
4112
|
+
workspace_id: z.ZodString;
|
|
3867
4113
|
status: z.ZodEnum<["online", "offline"]>;
|
|
3868
4114
|
id: z.ZodString;
|
|
3869
4115
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3895,6 +4141,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
3895
4141
|
status?: boolean | undefined;
|
|
3896
4142
|
client_id?: boolean | undefined;
|
|
3897
4143
|
user_id?: boolean | undefined;
|
|
4144
|
+
project_id?: boolean | undefined;
|
|
4145
|
+
workspace_id?: boolean | undefined;
|
|
3898
4146
|
id?: boolean | undefined;
|
|
3899
4147
|
name?: boolean | undefined;
|
|
3900
4148
|
creation_date?: boolean | undefined;
|
|
@@ -3925,6 +4173,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
3925
4173
|
filters?: FilterNode<Omit<{
|
|
3926
4174
|
client_id: z.ZodString;
|
|
3927
4175
|
user_id: z.ZodString;
|
|
4176
|
+
project_id: z.ZodString;
|
|
4177
|
+
workspace_id: z.ZodString;
|
|
3928
4178
|
status: z.ZodEnum<["online", "offline"]>;
|
|
3929
4179
|
id: z.ZodString;
|
|
3930
4180
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3950,7 +4200,7 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
3950
4200
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3951
4201
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3952
4202
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
3953
|
-
}, "status" | "client_id" | "user_id" | "creation_date">> | undefined;
|
|
4203
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">> | undefined;
|
|
3954
4204
|
} | undefined;
|
|
3955
4205
|
connect?: boolean | {
|
|
3956
4206
|
params?: FilterNode<{
|
|
@@ -3959,6 +4209,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
3959
4209
|
filters?: FilterNode<{
|
|
3960
4210
|
client_id: z.ZodString;
|
|
3961
4211
|
user_id: z.ZodString;
|
|
4212
|
+
project_id: z.ZodString;
|
|
4213
|
+
workspace_id: z.ZodString;
|
|
3962
4214
|
status: z.ZodEnum<["online", "offline"]>;
|
|
3963
4215
|
id: z.ZodString;
|
|
3964
4216
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3990,6 +4242,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
3990
4242
|
filters?: FilterNode<{
|
|
3991
4243
|
client_id: z.ZodString;
|
|
3992
4244
|
user_id: z.ZodString;
|
|
4245
|
+
project_id: z.ZodString;
|
|
4246
|
+
workspace_id: z.ZodString;
|
|
3993
4247
|
status: z.ZodEnum<["online", "offline"]>;
|
|
3994
4248
|
id: z.ZodString;
|
|
3995
4249
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -4021,6 +4275,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
4021
4275
|
status?: boolean | undefined;
|
|
4022
4276
|
client_id?: boolean | undefined;
|
|
4023
4277
|
user_id?: boolean | undefined;
|
|
4278
|
+
project_id?: boolean | undefined;
|
|
4279
|
+
workspace_id?: boolean | undefined;
|
|
4024
4280
|
id?: boolean | undefined;
|
|
4025
4281
|
name?: boolean | undefined;
|
|
4026
4282
|
creation_date?: boolean | undefined;
|
|
@@ -4051,6 +4307,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
4051
4307
|
filters?: FilterNode<Omit<{
|
|
4052
4308
|
client_id: z.ZodString;
|
|
4053
4309
|
user_id: z.ZodString;
|
|
4310
|
+
project_id: z.ZodString;
|
|
4311
|
+
workspace_id: z.ZodString;
|
|
4054
4312
|
status: z.ZodEnum<["online", "offline"]>;
|
|
4055
4313
|
id: z.ZodString;
|
|
4056
4314
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -4076,7 +4334,7 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
4076
4334
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4077
4335
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4078
4336
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
4079
|
-
}, "status" | "client_id" | "user_id" | "creation_date">> | undefined;
|
|
4337
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">> | undefined;
|
|
4080
4338
|
} | undefined;
|
|
4081
4339
|
connect?: boolean | {
|
|
4082
4340
|
params?: FilterNode<{
|
|
@@ -4085,6 +4343,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
4085
4343
|
filters?: FilterNode<{
|
|
4086
4344
|
client_id: z.ZodString;
|
|
4087
4345
|
user_id: z.ZodString;
|
|
4346
|
+
project_id: z.ZodString;
|
|
4347
|
+
workspace_id: z.ZodString;
|
|
4088
4348
|
status: z.ZodEnum<["online", "offline"]>;
|
|
4089
4349
|
id: z.ZodString;
|
|
4090
4350
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -4116,6 +4376,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
4116
4376
|
filters?: FilterNode<{
|
|
4117
4377
|
client_id: z.ZodString;
|
|
4118
4378
|
user_id: z.ZodString;
|
|
4379
|
+
project_id: z.ZodString;
|
|
4380
|
+
workspace_id: z.ZodString;
|
|
4119
4381
|
status: z.ZodEnum<["online", "offline"]>;
|
|
4120
4382
|
id: z.ZodString;
|
|
4121
4383
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -4147,6 +4409,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
4147
4409
|
status?: boolean | undefined;
|
|
4148
4410
|
client_id?: boolean | undefined;
|
|
4149
4411
|
user_id?: boolean | undefined;
|
|
4412
|
+
project_id?: boolean | undefined;
|
|
4413
|
+
workspace_id?: boolean | undefined;
|
|
4150
4414
|
id?: boolean | undefined;
|
|
4151
4415
|
name?: boolean | undefined;
|
|
4152
4416
|
creation_date?: boolean | undefined;
|
|
@@ -4179,6 +4443,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
4179
4443
|
filters?: FilterNode<Omit<{
|
|
4180
4444
|
client_id: z.ZodString;
|
|
4181
4445
|
user_id: z.ZodString;
|
|
4446
|
+
project_id: z.ZodString;
|
|
4447
|
+
workspace_id: z.ZodString;
|
|
4182
4448
|
status: z.ZodEnum<["online", "offline"]>;
|
|
4183
4449
|
id: z.ZodString;
|
|
4184
4450
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -4204,7 +4470,7 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
4204
4470
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4205
4471
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4206
4472
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
4207
|
-
}, "status" | "client_id" | "user_id" | "creation_date">> | undefined;
|
|
4473
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">> | undefined;
|
|
4208
4474
|
} | undefined;
|
|
4209
4475
|
connect?: boolean | {
|
|
4210
4476
|
params?: FilterNode<{
|
|
@@ -4213,6 +4479,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
4213
4479
|
filters?: FilterNode<{
|
|
4214
4480
|
client_id: z.ZodString;
|
|
4215
4481
|
user_id: z.ZodString;
|
|
4482
|
+
project_id: z.ZodString;
|
|
4483
|
+
workspace_id: z.ZodString;
|
|
4216
4484
|
status: z.ZodEnum<["online", "offline"]>;
|
|
4217
4485
|
id: z.ZodString;
|
|
4218
4486
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -4244,6 +4512,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
4244
4512
|
filters?: FilterNode<{
|
|
4245
4513
|
client_id: z.ZodString;
|
|
4246
4514
|
user_id: z.ZodString;
|
|
4515
|
+
project_id: z.ZodString;
|
|
4516
|
+
workspace_id: z.ZodString;
|
|
4247
4517
|
status: z.ZodEnum<["online", "offline"]>;
|
|
4248
4518
|
id: z.ZodString;
|
|
4249
4519
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -4275,6 +4545,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
4275
4545
|
status?: boolean | undefined;
|
|
4276
4546
|
client_id?: boolean | undefined;
|
|
4277
4547
|
user_id?: boolean | undefined;
|
|
4548
|
+
project_id?: boolean | undefined;
|
|
4549
|
+
workspace_id?: boolean | undefined;
|
|
4278
4550
|
id?: boolean | undefined;
|
|
4279
4551
|
name?: boolean | undefined;
|
|
4280
4552
|
creation_date?: boolean | undefined;
|
|
@@ -4307,6 +4579,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
4307
4579
|
filters?: FilterNode<Omit<{
|
|
4308
4580
|
client_id: z.ZodString;
|
|
4309
4581
|
user_id: z.ZodString;
|
|
4582
|
+
project_id: z.ZodString;
|
|
4583
|
+
workspace_id: z.ZodString;
|
|
4310
4584
|
status: z.ZodEnum<["online", "offline"]>;
|
|
4311
4585
|
id: z.ZodString;
|
|
4312
4586
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -4332,7 +4606,7 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
4332
4606
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4333
4607
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4334
4608
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
4335
|
-
}, "status" | "client_id" | "user_id" | "creation_date">> | undefined;
|
|
4609
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">> | undefined;
|
|
4336
4610
|
} | undefined;
|
|
4337
4611
|
connect?: boolean | {
|
|
4338
4612
|
params?: FilterNode<{
|
|
@@ -4341,6 +4615,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
4341
4615
|
filters?: FilterNode<{
|
|
4342
4616
|
client_id: z.ZodString;
|
|
4343
4617
|
user_id: z.ZodString;
|
|
4618
|
+
project_id: z.ZodString;
|
|
4619
|
+
workspace_id: z.ZodString;
|
|
4344
4620
|
status: z.ZodEnum<["online", "offline"]>;
|
|
4345
4621
|
id: z.ZodString;
|
|
4346
4622
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -4372,6 +4648,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
4372
4648
|
filters?: FilterNode<{
|
|
4373
4649
|
client_id: z.ZodString;
|
|
4374
4650
|
user_id: z.ZodString;
|
|
4651
|
+
project_id: z.ZodString;
|
|
4652
|
+
workspace_id: z.ZodString;
|
|
4375
4653
|
status: z.ZodEnum<["online", "offline"]>;
|
|
4376
4654
|
id: z.ZodString;
|
|
4377
4655
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -4403,6 +4681,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
4403
4681
|
status?: boolean | undefined;
|
|
4404
4682
|
client_id?: boolean | undefined;
|
|
4405
4683
|
user_id?: boolean | undefined;
|
|
4684
|
+
project_id?: boolean | undefined;
|
|
4685
|
+
workspace_id?: boolean | undefined;
|
|
4406
4686
|
id?: boolean | undefined;
|
|
4407
4687
|
name?: boolean | undefined;
|
|
4408
4688
|
creation_date?: boolean | undefined;
|
|
@@ -4439,6 +4719,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
4439
4719
|
filters?: FilterNode<Omit<{
|
|
4440
4720
|
client_id: z.ZodString;
|
|
4441
4721
|
user_id: z.ZodString;
|
|
4722
|
+
project_id: z.ZodString;
|
|
4723
|
+
workspace_id: z.ZodString;
|
|
4442
4724
|
status: z.ZodEnum<["online", "offline"]>;
|
|
4443
4725
|
id: z.ZodString;
|
|
4444
4726
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -4464,7 +4746,7 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
4464
4746
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4465
4747
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4466
4748
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
4467
|
-
}, "status" | "client_id" | "user_id" | "creation_date">> | undefined;
|
|
4749
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">> | undefined;
|
|
4468
4750
|
} | undefined;
|
|
4469
4751
|
connect?: boolean | {
|
|
4470
4752
|
params?: FilterNode<{
|
|
@@ -4473,6 +4755,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
4473
4755
|
filters?: FilterNode<{
|
|
4474
4756
|
client_id: z.ZodString;
|
|
4475
4757
|
user_id: z.ZodString;
|
|
4758
|
+
project_id: z.ZodString;
|
|
4759
|
+
workspace_id: z.ZodString;
|
|
4476
4760
|
status: z.ZodEnum<["online", "offline"]>;
|
|
4477
4761
|
id: z.ZodString;
|
|
4478
4762
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -4504,6 +4788,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
4504
4788
|
filters?: FilterNode<{
|
|
4505
4789
|
client_id: z.ZodString;
|
|
4506
4790
|
user_id: z.ZodString;
|
|
4791
|
+
project_id: z.ZodString;
|
|
4792
|
+
workspace_id: z.ZodString;
|
|
4507
4793
|
status: z.ZodEnum<["online", "offline"]>;
|
|
4508
4794
|
id: z.ZodString;
|
|
4509
4795
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -4535,6 +4821,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
4535
4821
|
status?: boolean | undefined;
|
|
4536
4822
|
client_id?: boolean | undefined;
|
|
4537
4823
|
user_id?: boolean | undefined;
|
|
4824
|
+
project_id?: boolean | undefined;
|
|
4825
|
+
workspace_id?: boolean | undefined;
|
|
4538
4826
|
id?: boolean | undefined;
|
|
4539
4827
|
name?: boolean | undefined;
|
|
4540
4828
|
creation_date?: boolean | undefined;
|
|
@@ -4570,6 +4858,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
4570
4858
|
filters?: FilterNode<Omit<{
|
|
4571
4859
|
client_id: z.ZodString;
|
|
4572
4860
|
user_id: z.ZodString;
|
|
4861
|
+
project_id: z.ZodString;
|
|
4862
|
+
workspace_id: z.ZodString;
|
|
4573
4863
|
status: z.ZodEnum<["online", "offline"]>;
|
|
4574
4864
|
id: z.ZodString;
|
|
4575
4865
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -4595,7 +4885,7 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
4595
4885
|
email_whitelist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4596
4886
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4597
4887
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
4598
|
-
}, "status" | "client_id" | "user_id" | "creation_date">> | undefined;
|
|
4888
|
+
}, "status" | "client_id" | "user_id" | "project_id" | "workspace_id" | "creation_date">> | undefined;
|
|
4599
4889
|
} | undefined;
|
|
4600
4890
|
connect?: boolean | {
|
|
4601
4891
|
params?: FilterNode<{
|
|
@@ -4604,6 +4894,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
4604
4894
|
filters?: FilterNode<{
|
|
4605
4895
|
client_id: z.ZodString;
|
|
4606
4896
|
user_id: z.ZodString;
|
|
4897
|
+
project_id: z.ZodString;
|
|
4898
|
+
workspace_id: z.ZodString;
|
|
4607
4899
|
status: z.ZodEnum<["online", "offline"]>;
|
|
4608
4900
|
id: z.ZodString;
|
|
4609
4901
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -4635,6 +4927,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
4635
4927
|
filters?: FilterNode<{
|
|
4636
4928
|
client_id: z.ZodString;
|
|
4637
4929
|
user_id: z.ZodString;
|
|
4930
|
+
project_id: z.ZodString;
|
|
4931
|
+
workspace_id: z.ZodString;
|
|
4638
4932
|
status: z.ZodEnum<["online", "offline"]>;
|
|
4639
4933
|
id: z.ZodString;
|
|
4640
4934
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -4666,6 +4960,8 @@ declare const createAuthTokenParamsSchema: z.ZodObject<{
|
|
|
4666
4960
|
status?: boolean | undefined;
|
|
4667
4961
|
client_id?: boolean | undefined;
|
|
4668
4962
|
user_id?: boolean | undefined;
|
|
4963
|
+
project_id?: boolean | undefined;
|
|
4964
|
+
workspace_id?: boolean | undefined;
|
|
4669
4965
|
id?: boolean | undefined;
|
|
4670
4966
|
name?: boolean | undefined;
|
|
4671
4967
|
creation_date?: boolean | undefined;
|
|
@@ -4714,6 +5010,8 @@ type RstreamAuthJwtPayload = JwtPayload & RstreamAuthToken;
|
|
|
4714
5010
|
declare const clientSchema: z.ZodObject<{
|
|
4715
5011
|
id: z.ZodString;
|
|
4716
5012
|
user_id: z.ZodString;
|
|
5013
|
+
project_id: z.ZodString;
|
|
5014
|
+
workspace_id: z.ZodString;
|
|
4717
5015
|
status: z.ZodEnum<["online", "offline"]>;
|
|
4718
5016
|
details: z.ZodOptional<z.ZodObject<{
|
|
4719
5017
|
agent: z.ZodOptional<z.ZodString>;
|
|
@@ -4735,6 +5033,8 @@ declare const clientSchema: z.ZodObject<{
|
|
|
4735
5033
|
}, "strip", z.ZodTypeAny, {
|
|
4736
5034
|
status: "online" | "offline";
|
|
4737
5035
|
user_id: string;
|
|
5036
|
+
project_id: string;
|
|
5037
|
+
workspace_id: string;
|
|
4738
5038
|
id: string;
|
|
4739
5039
|
labels?: Record<string, string | undefined> | undefined;
|
|
4740
5040
|
details?: {
|
|
@@ -4746,6 +5046,8 @@ declare const clientSchema: z.ZodObject<{
|
|
|
4746
5046
|
}, {
|
|
4747
5047
|
status: "online" | "offline";
|
|
4748
5048
|
user_id: string;
|
|
5049
|
+
project_id: string;
|
|
5050
|
+
workspace_id: string;
|
|
4749
5051
|
id: string;
|
|
4750
5052
|
labels?: Record<string, string | undefined> | undefined;
|
|
4751
5053
|
details?: {
|
|
@@ -4778,6 +5080,8 @@ declare const listClientsParamsSchema: z.ZodObject<{
|
|
|
4778
5080
|
declare const listClientsResponseSchema: z.ZodArray<z.ZodObject<{
|
|
4779
5081
|
id: z.ZodString;
|
|
4780
5082
|
user_id: z.ZodString;
|
|
5083
|
+
project_id: z.ZodString;
|
|
5084
|
+
workspace_id: z.ZodString;
|
|
4781
5085
|
status: z.ZodEnum<["online", "offline"]>;
|
|
4782
5086
|
details: z.ZodOptional<z.ZodObject<{
|
|
4783
5087
|
agent: z.ZodOptional<z.ZodString>;
|
|
@@ -4799,6 +5103,8 @@ declare const listClientsResponseSchema: z.ZodArray<z.ZodObject<{
|
|
|
4799
5103
|
}, "strip", z.ZodTypeAny, {
|
|
4800
5104
|
status: "online" | "offline";
|
|
4801
5105
|
user_id: string;
|
|
5106
|
+
project_id: string;
|
|
5107
|
+
workspace_id: string;
|
|
4802
5108
|
id: string;
|
|
4803
5109
|
labels?: Record<string, string | undefined> | undefined;
|
|
4804
5110
|
details?: {
|
|
@@ -4810,6 +5116,8 @@ declare const listClientsResponseSchema: z.ZodArray<z.ZodObject<{
|
|
|
4810
5116
|
}, {
|
|
4811
5117
|
status: "online" | "offline";
|
|
4812
5118
|
user_id: string;
|
|
5119
|
+
project_id: string;
|
|
5120
|
+
workspace_id: string;
|
|
4813
5121
|
id: string;
|
|
4814
5122
|
labels?: Record<string, string | undefined> | undefined;
|
|
4815
5123
|
details?: {
|
|
@@ -4833,6 +5141,8 @@ declare class RstreamClientsRessource {
|
|
|
4833
5141
|
declare const tunnelSchema: z.ZodObject<{
|
|
4834
5142
|
client_id: z.ZodString;
|
|
4835
5143
|
user_id: z.ZodString;
|
|
5144
|
+
project_id: z.ZodString;
|
|
5145
|
+
workspace_id: z.ZodString;
|
|
4836
5146
|
status: z.ZodEnum<["online", "offline"]>;
|
|
4837
5147
|
id: z.ZodString;
|
|
4838
5148
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -4862,6 +5172,8 @@ declare const tunnelSchema: z.ZodObject<{
|
|
|
4862
5172
|
status: "online" | "offline";
|
|
4863
5173
|
client_id: string;
|
|
4864
5174
|
user_id: string;
|
|
5175
|
+
project_id: string;
|
|
5176
|
+
workspace_id: string;
|
|
4865
5177
|
id: string;
|
|
4866
5178
|
type?: "bytestream" | "datagram" | undefined;
|
|
4867
5179
|
name?: string | undefined;
|
|
@@ -4890,6 +5202,8 @@ declare const tunnelSchema: z.ZodObject<{
|
|
|
4890
5202
|
status: "online" | "offline";
|
|
4891
5203
|
client_id: string;
|
|
4892
5204
|
user_id: string;
|
|
5205
|
+
project_id: string;
|
|
5206
|
+
workspace_id: string;
|
|
4893
5207
|
id: string;
|
|
4894
5208
|
type?: "bytestream" | "datagram" | undefined;
|
|
4895
5209
|
name?: string | undefined;
|
|
@@ -4958,6 +5272,8 @@ declare const listTunnelsParamsSchema: z.ZodObject<{
|
|
|
4958
5272
|
declare const listTunnelsResponseSchema: z.ZodArray<z.ZodObject<{
|
|
4959
5273
|
client_id: z.ZodString;
|
|
4960
5274
|
user_id: z.ZodString;
|
|
5275
|
+
project_id: z.ZodString;
|
|
5276
|
+
workspace_id: z.ZodString;
|
|
4961
5277
|
status: z.ZodEnum<["online", "offline"]>;
|
|
4962
5278
|
id: z.ZodString;
|
|
4963
5279
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -4987,6 +5303,8 @@ declare const listTunnelsResponseSchema: z.ZodArray<z.ZodObject<{
|
|
|
4987
5303
|
status: "online" | "offline";
|
|
4988
5304
|
client_id: string;
|
|
4989
5305
|
user_id: string;
|
|
5306
|
+
project_id: string;
|
|
5307
|
+
workspace_id: string;
|
|
4990
5308
|
id: string;
|
|
4991
5309
|
type?: "bytestream" | "datagram" | undefined;
|
|
4992
5310
|
name?: string | undefined;
|
|
@@ -5015,6 +5333,8 @@ declare const listTunnelsResponseSchema: z.ZodArray<z.ZodObject<{
|
|
|
5015
5333
|
status: "online" | "offline";
|
|
5016
5334
|
client_id: string;
|
|
5017
5335
|
user_id: string;
|
|
5336
|
+
project_id: string;
|
|
5337
|
+
workspace_id: string;
|
|
5018
5338
|
id: string;
|
|
5019
5339
|
type?: "bytestream" | "datagram" | undefined;
|
|
5020
5340
|
name?: string | undefined;
|
|
@@ -5056,6 +5376,8 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5056
5376
|
object: z.ZodObject<{
|
|
5057
5377
|
id: z.ZodString;
|
|
5058
5378
|
user_id: z.ZodString;
|
|
5379
|
+
project_id: z.ZodString;
|
|
5380
|
+
workspace_id: z.ZodString;
|
|
5059
5381
|
status: z.ZodEnum<["online", "offline"]>;
|
|
5060
5382
|
details: z.ZodOptional<z.ZodObject<{
|
|
5061
5383
|
agent: z.ZodOptional<z.ZodString>;
|
|
@@ -5077,6 +5399,8 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5077
5399
|
}, "strip", z.ZodTypeAny, {
|
|
5078
5400
|
status: "online" | "offline";
|
|
5079
5401
|
user_id: string;
|
|
5402
|
+
project_id: string;
|
|
5403
|
+
workspace_id: string;
|
|
5080
5404
|
id: string;
|
|
5081
5405
|
labels?: Record<string, string | undefined> | undefined;
|
|
5082
5406
|
details?: {
|
|
@@ -5088,6 +5412,8 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5088
5412
|
}, {
|
|
5089
5413
|
status: "online" | "offline";
|
|
5090
5414
|
user_id: string;
|
|
5415
|
+
project_id: string;
|
|
5416
|
+
workspace_id: string;
|
|
5091
5417
|
id: string;
|
|
5092
5418
|
labels?: Record<string, string | undefined> | undefined;
|
|
5093
5419
|
details?: {
|
|
@@ -5101,6 +5427,8 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5101
5427
|
object: {
|
|
5102
5428
|
status: "online" | "offline";
|
|
5103
5429
|
user_id: string;
|
|
5430
|
+
project_id: string;
|
|
5431
|
+
workspace_id: string;
|
|
5104
5432
|
id: string;
|
|
5105
5433
|
labels?: Record<string, string | undefined> | undefined;
|
|
5106
5434
|
details?: {
|
|
@@ -5115,6 +5443,8 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5115
5443
|
object: {
|
|
5116
5444
|
status: "online" | "offline";
|
|
5117
5445
|
user_id: string;
|
|
5446
|
+
project_id: string;
|
|
5447
|
+
workspace_id: string;
|
|
5118
5448
|
id: string;
|
|
5119
5449
|
labels?: Record<string, string | undefined> | undefined;
|
|
5120
5450
|
details?: {
|
|
@@ -5130,6 +5460,8 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5130
5460
|
object: z.ZodObject<{
|
|
5131
5461
|
id: z.ZodString;
|
|
5132
5462
|
user_id: z.ZodString;
|
|
5463
|
+
project_id: z.ZodString;
|
|
5464
|
+
workspace_id: z.ZodString;
|
|
5133
5465
|
status: z.ZodEnum<["online", "offline"]>;
|
|
5134
5466
|
details: z.ZodOptional<z.ZodObject<{
|
|
5135
5467
|
agent: z.ZodOptional<z.ZodString>;
|
|
@@ -5151,6 +5483,8 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5151
5483
|
}, "strip", z.ZodTypeAny, {
|
|
5152
5484
|
status: "online" | "offline";
|
|
5153
5485
|
user_id: string;
|
|
5486
|
+
project_id: string;
|
|
5487
|
+
workspace_id: string;
|
|
5154
5488
|
id: string;
|
|
5155
5489
|
labels?: Record<string, string | undefined> | undefined;
|
|
5156
5490
|
details?: {
|
|
@@ -5162,6 +5496,8 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5162
5496
|
}, {
|
|
5163
5497
|
status: "online" | "offline";
|
|
5164
5498
|
user_id: string;
|
|
5499
|
+
project_id: string;
|
|
5500
|
+
workspace_id: string;
|
|
5165
5501
|
id: string;
|
|
5166
5502
|
labels?: Record<string, string | undefined> | undefined;
|
|
5167
5503
|
details?: {
|
|
@@ -5175,6 +5511,8 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5175
5511
|
object: {
|
|
5176
5512
|
status: "online" | "offline";
|
|
5177
5513
|
user_id: string;
|
|
5514
|
+
project_id: string;
|
|
5515
|
+
workspace_id: string;
|
|
5178
5516
|
id: string;
|
|
5179
5517
|
labels?: Record<string, string | undefined> | undefined;
|
|
5180
5518
|
details?: {
|
|
@@ -5189,6 +5527,8 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5189
5527
|
object: {
|
|
5190
5528
|
status: "online" | "offline";
|
|
5191
5529
|
user_id: string;
|
|
5530
|
+
project_id: string;
|
|
5531
|
+
workspace_id: string;
|
|
5192
5532
|
id: string;
|
|
5193
5533
|
labels?: Record<string, string | undefined> | undefined;
|
|
5194
5534
|
details?: {
|
|
@@ -5204,6 +5544,8 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5204
5544
|
object: z.ZodObject<{
|
|
5205
5545
|
id: z.ZodString;
|
|
5206
5546
|
user_id: z.ZodString;
|
|
5547
|
+
project_id: z.ZodString;
|
|
5548
|
+
workspace_id: z.ZodString;
|
|
5207
5549
|
status: z.ZodEnum<["online", "offline"]>;
|
|
5208
5550
|
details: z.ZodOptional<z.ZodObject<{
|
|
5209
5551
|
agent: z.ZodOptional<z.ZodString>;
|
|
@@ -5225,6 +5567,8 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5225
5567
|
}, "strip", z.ZodTypeAny, {
|
|
5226
5568
|
status: "online" | "offline";
|
|
5227
5569
|
user_id: string;
|
|
5570
|
+
project_id: string;
|
|
5571
|
+
workspace_id: string;
|
|
5228
5572
|
id: string;
|
|
5229
5573
|
labels?: Record<string, string | undefined> | undefined;
|
|
5230
5574
|
details?: {
|
|
@@ -5236,6 +5580,8 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5236
5580
|
}, {
|
|
5237
5581
|
status: "online" | "offline";
|
|
5238
5582
|
user_id: string;
|
|
5583
|
+
project_id: string;
|
|
5584
|
+
workspace_id: string;
|
|
5239
5585
|
id: string;
|
|
5240
5586
|
labels?: Record<string, string | undefined> | undefined;
|
|
5241
5587
|
details?: {
|
|
@@ -5249,6 +5595,8 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5249
5595
|
object: {
|
|
5250
5596
|
status: "online" | "offline";
|
|
5251
5597
|
user_id: string;
|
|
5598
|
+
project_id: string;
|
|
5599
|
+
workspace_id: string;
|
|
5252
5600
|
id: string;
|
|
5253
5601
|
labels?: Record<string, string | undefined> | undefined;
|
|
5254
5602
|
details?: {
|
|
@@ -5263,6 +5611,8 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5263
5611
|
object: {
|
|
5264
5612
|
status: "online" | "offline";
|
|
5265
5613
|
user_id: string;
|
|
5614
|
+
project_id: string;
|
|
5615
|
+
workspace_id: string;
|
|
5266
5616
|
id: string;
|
|
5267
5617
|
labels?: Record<string, string | undefined> | undefined;
|
|
5268
5618
|
details?: {
|
|
@@ -5278,6 +5628,8 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5278
5628
|
object: z.ZodObject<{
|
|
5279
5629
|
client_id: z.ZodString;
|
|
5280
5630
|
user_id: z.ZodString;
|
|
5631
|
+
project_id: z.ZodString;
|
|
5632
|
+
workspace_id: z.ZodString;
|
|
5281
5633
|
status: z.ZodEnum<["online", "offline"]>;
|
|
5282
5634
|
id: z.ZodString;
|
|
5283
5635
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -5307,6 +5659,8 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5307
5659
|
status: "online" | "offline";
|
|
5308
5660
|
client_id: string;
|
|
5309
5661
|
user_id: string;
|
|
5662
|
+
project_id: string;
|
|
5663
|
+
workspace_id: string;
|
|
5310
5664
|
id: string;
|
|
5311
5665
|
type?: "bytestream" | "datagram" | undefined;
|
|
5312
5666
|
name?: string | undefined;
|
|
@@ -5335,6 +5689,8 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5335
5689
|
status: "online" | "offline";
|
|
5336
5690
|
client_id: string;
|
|
5337
5691
|
user_id: string;
|
|
5692
|
+
project_id: string;
|
|
5693
|
+
workspace_id: string;
|
|
5338
5694
|
id: string;
|
|
5339
5695
|
type?: "bytestream" | "datagram" | undefined;
|
|
5340
5696
|
name?: string | undefined;
|
|
@@ -5365,6 +5721,8 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5365
5721
|
status: "online" | "offline";
|
|
5366
5722
|
client_id: string;
|
|
5367
5723
|
user_id: string;
|
|
5724
|
+
project_id: string;
|
|
5725
|
+
workspace_id: string;
|
|
5368
5726
|
id: string;
|
|
5369
5727
|
type?: "bytestream" | "datagram" | undefined;
|
|
5370
5728
|
name?: string | undefined;
|
|
@@ -5396,6 +5754,8 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5396
5754
|
status: "online" | "offline";
|
|
5397
5755
|
client_id: string;
|
|
5398
5756
|
user_id: string;
|
|
5757
|
+
project_id: string;
|
|
5758
|
+
workspace_id: string;
|
|
5399
5759
|
id: string;
|
|
5400
5760
|
type?: "bytestream" | "datagram" | undefined;
|
|
5401
5761
|
name?: string | undefined;
|
|
@@ -5427,6 +5787,8 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5427
5787
|
object: z.ZodObject<{
|
|
5428
5788
|
client_id: z.ZodString;
|
|
5429
5789
|
user_id: z.ZodString;
|
|
5790
|
+
project_id: z.ZodString;
|
|
5791
|
+
workspace_id: z.ZodString;
|
|
5430
5792
|
status: z.ZodEnum<["online", "offline"]>;
|
|
5431
5793
|
id: z.ZodString;
|
|
5432
5794
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -5456,6 +5818,8 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5456
5818
|
status: "online" | "offline";
|
|
5457
5819
|
client_id: string;
|
|
5458
5820
|
user_id: string;
|
|
5821
|
+
project_id: string;
|
|
5822
|
+
workspace_id: string;
|
|
5459
5823
|
id: string;
|
|
5460
5824
|
type?: "bytestream" | "datagram" | undefined;
|
|
5461
5825
|
name?: string | undefined;
|
|
@@ -5484,6 +5848,8 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5484
5848
|
status: "online" | "offline";
|
|
5485
5849
|
client_id: string;
|
|
5486
5850
|
user_id: string;
|
|
5851
|
+
project_id: string;
|
|
5852
|
+
workspace_id: string;
|
|
5487
5853
|
id: string;
|
|
5488
5854
|
type?: "bytestream" | "datagram" | undefined;
|
|
5489
5855
|
name?: string | undefined;
|
|
@@ -5514,6 +5880,8 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5514
5880
|
status: "online" | "offline";
|
|
5515
5881
|
client_id: string;
|
|
5516
5882
|
user_id: string;
|
|
5883
|
+
project_id: string;
|
|
5884
|
+
workspace_id: string;
|
|
5517
5885
|
id: string;
|
|
5518
5886
|
type?: "bytestream" | "datagram" | undefined;
|
|
5519
5887
|
name?: string | undefined;
|
|
@@ -5545,6 +5913,8 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5545
5913
|
status: "online" | "offline";
|
|
5546
5914
|
client_id: string;
|
|
5547
5915
|
user_id: string;
|
|
5916
|
+
project_id: string;
|
|
5917
|
+
workspace_id: string;
|
|
5548
5918
|
id: string;
|
|
5549
5919
|
type?: "bytestream" | "datagram" | undefined;
|
|
5550
5920
|
name?: string | undefined;
|
|
@@ -5576,6 +5946,8 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5576
5946
|
object: z.ZodObject<{
|
|
5577
5947
|
client_id: z.ZodString;
|
|
5578
5948
|
user_id: z.ZodString;
|
|
5949
|
+
project_id: z.ZodString;
|
|
5950
|
+
workspace_id: z.ZodString;
|
|
5579
5951
|
status: z.ZodEnum<["online", "offline"]>;
|
|
5580
5952
|
id: z.ZodString;
|
|
5581
5953
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -5605,6 +5977,8 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5605
5977
|
status: "online" | "offline";
|
|
5606
5978
|
client_id: string;
|
|
5607
5979
|
user_id: string;
|
|
5980
|
+
project_id: string;
|
|
5981
|
+
workspace_id: string;
|
|
5608
5982
|
id: string;
|
|
5609
5983
|
type?: "bytestream" | "datagram" | undefined;
|
|
5610
5984
|
name?: string | undefined;
|
|
@@ -5633,6 +6007,8 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5633
6007
|
status: "online" | "offline";
|
|
5634
6008
|
client_id: string;
|
|
5635
6009
|
user_id: string;
|
|
6010
|
+
project_id: string;
|
|
6011
|
+
workspace_id: string;
|
|
5636
6012
|
id: string;
|
|
5637
6013
|
type?: "bytestream" | "datagram" | undefined;
|
|
5638
6014
|
name?: string | undefined;
|
|
@@ -5663,6 +6039,8 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5663
6039
|
status: "online" | "offline";
|
|
5664
6040
|
client_id: string;
|
|
5665
6041
|
user_id: string;
|
|
6042
|
+
project_id: string;
|
|
6043
|
+
workspace_id: string;
|
|
5666
6044
|
id: string;
|
|
5667
6045
|
type?: "bytestream" | "datagram" | undefined;
|
|
5668
6046
|
name?: string | undefined;
|
|
@@ -5694,6 +6072,8 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
5694
6072
|
status: "online" | "offline";
|
|
5695
6073
|
client_id: string;
|
|
5696
6074
|
user_id: string;
|
|
6075
|
+
project_id: string;
|
|
6076
|
+
workspace_id: string;
|
|
5697
6077
|
id: string;
|
|
5698
6078
|
type?: "bytestream" | "datagram" | undefined;
|
|
5699
6079
|
name?: string | undefined;
|
|
@@ -5750,14 +6130,14 @@ interface RstreamConfig {
|
|
|
5750
6130
|
clientSecret: string;
|
|
5751
6131
|
};
|
|
5752
6132
|
/**
|
|
5753
|
-
* Engine URL to connect to. (e.g. "
|
|
6133
|
+
* Engine URL to connect to. (e.g. "eed433ec.aws-eu-west-3-1.c.rstream.io:8443:443").
|
|
5754
6134
|
*/
|
|
5755
6135
|
engine?: string;
|
|
5756
6136
|
}
|
|
5757
6137
|
declare class RstreamClient {
|
|
5758
6138
|
private cfg?;
|
|
5759
6139
|
constructor(config?: RstreamConfig);
|
|
5760
|
-
get engine(): string;
|
|
6140
|
+
get engine(): string | undefined;
|
|
5761
6141
|
get credentials(): {
|
|
5762
6142
|
/**
|
|
5763
6143
|
* Authentication token (long-lived).
|
|
@@ -5802,7 +6182,7 @@ interface WatchConfig {
|
|
|
5802
6182
|
*/
|
|
5803
6183
|
auth: RstreamAuth;
|
|
5804
6184
|
/**
|
|
5805
|
-
* Engine URL to connect to. (e.g. "
|
|
6185
|
+
* Engine URL to connect to. (e.g. "eed433ec.aws-eu-west-3-1.c.rstream.io:8443:443").
|
|
5806
6186
|
*/
|
|
5807
6187
|
engine?: string;
|
|
5808
6188
|
/**
|