@rstreamlabs/rstream 1.3.0 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +302 -302
- package/dist/index.d.ts +302 -302
- package/dist/index.js +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -35,10 +35,10 @@ declare const createShortTermTokenParamsSchema: z.ZodObject<{
|
|
|
35
35
|
permissions: z.ZodObject<{
|
|
36
36
|
create: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
|
|
37
37
|
filters: z.ZodOptional<z.ZodType<FilterNode<{
|
|
38
|
-
client_id: z.
|
|
39
|
-
user_id: z.
|
|
40
|
-
status: z.
|
|
41
|
-
id: z.
|
|
38
|
+
client_id: z.ZodString;
|
|
39
|
+
user_id: z.ZodString;
|
|
40
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
41
|
+
id: z.ZodString;
|
|
42
42
|
name: z.ZodOptional<z.ZodString>;
|
|
43
43
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
44
44
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -63,10 +63,10 @@ declare const createShortTermTokenParamsSchema: z.ZodObject<{
|
|
|
63
63
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
64
64
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
65
65
|
}>, z.ZodTypeDef, FilterNode<{
|
|
66
|
-
client_id: z.
|
|
67
|
-
user_id: z.
|
|
68
|
-
status: z.
|
|
69
|
-
id: z.
|
|
66
|
+
client_id: z.ZodString;
|
|
67
|
+
user_id: z.ZodString;
|
|
68
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
69
|
+
id: z.ZodString;
|
|
70
70
|
name: z.ZodOptional<z.ZodString>;
|
|
71
71
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
72
72
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -93,10 +93,10 @@ declare const createShortTermTokenParamsSchema: z.ZodObject<{
|
|
|
93
93
|
}>>>;
|
|
94
94
|
}, "strip", z.ZodTypeAny, {
|
|
95
95
|
filters?: FilterNode<{
|
|
96
|
-
client_id: z.
|
|
97
|
-
user_id: z.
|
|
98
|
-
status: z.
|
|
99
|
-
id: z.
|
|
96
|
+
client_id: z.ZodString;
|
|
97
|
+
user_id: z.ZodString;
|
|
98
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
99
|
+
id: z.ZodString;
|
|
100
100
|
name: z.ZodOptional<z.ZodString>;
|
|
101
101
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
102
102
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -123,10 +123,10 @@ declare const createShortTermTokenParamsSchema: z.ZodObject<{
|
|
|
123
123
|
}> | undefined;
|
|
124
124
|
}, {
|
|
125
125
|
filters?: FilterNode<{
|
|
126
|
-
client_id: z.
|
|
127
|
-
user_id: z.
|
|
128
|
-
status: z.
|
|
129
|
-
id: z.
|
|
126
|
+
client_id: z.ZodString;
|
|
127
|
+
user_id: z.ZodString;
|
|
128
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
129
|
+
id: z.ZodString;
|
|
130
130
|
name: z.ZodOptional<z.ZodString>;
|
|
131
131
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
132
132
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -154,10 +154,10 @@ declare const createShortTermTokenParamsSchema: z.ZodObject<{
|
|
|
154
154
|
}>]>>;
|
|
155
155
|
connect: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
|
|
156
156
|
filters: z.ZodOptional<z.ZodType<FilterNode<{
|
|
157
|
-
client_id: z.
|
|
158
|
-
user_id: z.
|
|
159
|
-
status: z.
|
|
160
|
-
id: z.
|
|
157
|
+
client_id: z.ZodString;
|
|
158
|
+
user_id: z.ZodString;
|
|
159
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
160
|
+
id: z.ZodString;
|
|
161
161
|
name: z.ZodOptional<z.ZodString>;
|
|
162
162
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
163
163
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -182,10 +182,10 @@ declare const createShortTermTokenParamsSchema: z.ZodObject<{
|
|
|
182
182
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
183
183
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
184
184
|
}>, z.ZodTypeDef, FilterNode<{
|
|
185
|
-
client_id: z.
|
|
186
|
-
user_id: z.
|
|
187
|
-
status: z.
|
|
188
|
-
id: z.
|
|
185
|
+
client_id: z.ZodString;
|
|
186
|
+
user_id: z.ZodString;
|
|
187
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
188
|
+
id: z.ZodString;
|
|
189
189
|
name: z.ZodOptional<z.ZodString>;
|
|
190
190
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
191
191
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -220,10 +220,10 @@ declare const createShortTermTokenParamsSchema: z.ZodObject<{
|
|
|
220
220
|
path: z.ZodOptional<z.ZodString>;
|
|
221
221
|
}> | undefined;
|
|
222
222
|
filters?: FilterNode<{
|
|
223
|
-
client_id: z.
|
|
224
|
-
user_id: z.
|
|
225
|
-
status: z.
|
|
226
|
-
id: z.
|
|
223
|
+
client_id: z.ZodString;
|
|
224
|
+
user_id: z.ZodString;
|
|
225
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
226
|
+
id: z.ZodString;
|
|
227
227
|
name: z.ZodOptional<z.ZodString>;
|
|
228
228
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
229
229
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -253,10 +253,10 @@ declare const createShortTermTokenParamsSchema: z.ZodObject<{
|
|
|
253
253
|
path: z.ZodOptional<z.ZodString>;
|
|
254
254
|
}> | undefined;
|
|
255
255
|
filters?: FilterNode<{
|
|
256
|
-
client_id: z.
|
|
257
|
-
user_id: z.
|
|
258
|
-
status: z.
|
|
259
|
-
id: z.
|
|
256
|
+
client_id: z.ZodString;
|
|
257
|
+
user_id: z.ZodString;
|
|
258
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
259
|
+
id: z.ZodString;
|
|
260
260
|
name: z.ZodOptional<z.ZodString>;
|
|
261
261
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
262
262
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -284,10 +284,10 @@ declare const createShortTermTokenParamsSchema: z.ZodObject<{
|
|
|
284
284
|
}>]>>;
|
|
285
285
|
list: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
|
|
286
286
|
filters: z.ZodOptional<z.ZodType<FilterNode<{
|
|
287
|
-
client_id: z.
|
|
288
|
-
user_id: z.
|
|
289
|
-
status: z.
|
|
290
|
-
id: z.
|
|
287
|
+
client_id: z.ZodString;
|
|
288
|
+
user_id: z.ZodString;
|
|
289
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
290
|
+
id: z.ZodString;
|
|
291
291
|
name: z.ZodOptional<z.ZodString>;
|
|
292
292
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
293
293
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -312,10 +312,10 @@ declare const createShortTermTokenParamsSchema: z.ZodObject<{
|
|
|
312
312
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
313
313
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
314
314
|
}>, z.ZodTypeDef, FilterNode<{
|
|
315
|
-
client_id: z.
|
|
316
|
-
user_id: z.
|
|
317
|
-
status: z.
|
|
318
|
-
id: z.
|
|
315
|
+
client_id: z.ZodString;
|
|
316
|
+
user_id: z.ZodString;
|
|
317
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
318
|
+
id: z.ZodString;
|
|
319
319
|
name: z.ZodOptional<z.ZodString>;
|
|
320
320
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
321
321
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -427,10 +427,10 @@ declare const createShortTermTokenParamsSchema: z.ZodObject<{
|
|
|
427
427
|
}>>;
|
|
428
428
|
}, "strip", z.ZodTypeAny, {
|
|
429
429
|
filters?: FilterNode<{
|
|
430
|
-
client_id: z.
|
|
431
|
-
user_id: z.
|
|
432
|
-
status: z.
|
|
433
|
-
id: z.
|
|
430
|
+
client_id: z.ZodString;
|
|
431
|
+
user_id: z.ZodString;
|
|
432
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
433
|
+
id: z.ZodString;
|
|
434
434
|
name: z.ZodOptional<z.ZodString>;
|
|
435
435
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
436
436
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -486,10 +486,10 @@ declare const createShortTermTokenParamsSchema: z.ZodObject<{
|
|
|
486
486
|
} | undefined;
|
|
487
487
|
}, {
|
|
488
488
|
filters?: FilterNode<{
|
|
489
|
-
client_id: z.
|
|
490
|
-
user_id: z.
|
|
491
|
-
status: z.
|
|
492
|
-
id: z.
|
|
489
|
+
client_id: z.ZodString;
|
|
490
|
+
user_id: z.ZodString;
|
|
491
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
492
|
+
id: z.ZodString;
|
|
493
493
|
name: z.ZodOptional<z.ZodString>;
|
|
494
494
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
495
495
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -547,10 +547,10 @@ declare const createShortTermTokenParamsSchema: z.ZodObject<{
|
|
|
547
547
|
}, "strip", z.ZodTypeAny, {
|
|
548
548
|
create?: boolean | {
|
|
549
549
|
filters?: FilterNode<{
|
|
550
|
-
client_id: z.
|
|
551
|
-
user_id: z.
|
|
552
|
-
status: z.
|
|
553
|
-
id: z.
|
|
550
|
+
client_id: z.ZodString;
|
|
551
|
+
user_id: z.ZodString;
|
|
552
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
553
|
+
id: z.ZodString;
|
|
554
554
|
name: z.ZodOptional<z.ZodString>;
|
|
555
555
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
556
556
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -581,10 +581,10 @@ declare const createShortTermTokenParamsSchema: z.ZodObject<{
|
|
|
581
581
|
path: z.ZodOptional<z.ZodString>;
|
|
582
582
|
}> | undefined;
|
|
583
583
|
filters?: FilterNode<{
|
|
584
|
-
client_id: z.
|
|
585
|
-
user_id: z.
|
|
586
|
-
status: z.
|
|
587
|
-
id: z.
|
|
584
|
+
client_id: z.ZodString;
|
|
585
|
+
user_id: z.ZodString;
|
|
586
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
587
|
+
id: z.ZodString;
|
|
588
588
|
name: z.ZodOptional<z.ZodString>;
|
|
589
589
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
590
590
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -612,10 +612,10 @@ declare const createShortTermTokenParamsSchema: z.ZodObject<{
|
|
|
612
612
|
} | undefined;
|
|
613
613
|
list?: boolean | {
|
|
614
614
|
filters?: FilterNode<{
|
|
615
|
-
client_id: z.
|
|
616
|
-
user_id: z.
|
|
617
|
-
status: z.
|
|
618
|
-
id: z.
|
|
615
|
+
client_id: z.ZodString;
|
|
616
|
+
user_id: z.ZodString;
|
|
617
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
618
|
+
id: z.ZodString;
|
|
619
619
|
name: z.ZodOptional<z.ZodString>;
|
|
620
620
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
621
621
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -673,10 +673,10 @@ declare const createShortTermTokenParamsSchema: z.ZodObject<{
|
|
|
673
673
|
}, {
|
|
674
674
|
create?: boolean | {
|
|
675
675
|
filters?: FilterNode<{
|
|
676
|
-
client_id: z.
|
|
677
|
-
user_id: z.
|
|
678
|
-
status: z.
|
|
679
|
-
id: z.
|
|
676
|
+
client_id: z.ZodString;
|
|
677
|
+
user_id: z.ZodString;
|
|
678
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
679
|
+
id: z.ZodString;
|
|
680
680
|
name: z.ZodOptional<z.ZodString>;
|
|
681
681
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
682
682
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -707,10 +707,10 @@ declare const createShortTermTokenParamsSchema: z.ZodObject<{
|
|
|
707
707
|
path: z.ZodOptional<z.ZodString>;
|
|
708
708
|
}> | undefined;
|
|
709
709
|
filters?: FilterNode<{
|
|
710
|
-
client_id: z.
|
|
711
|
-
user_id: z.
|
|
712
|
-
status: z.
|
|
713
|
-
id: z.
|
|
710
|
+
client_id: z.ZodString;
|
|
711
|
+
user_id: z.ZodString;
|
|
712
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
713
|
+
id: z.ZodString;
|
|
714
714
|
name: z.ZodOptional<z.ZodString>;
|
|
715
715
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
716
716
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -738,10 +738,10 @@ declare const createShortTermTokenParamsSchema: z.ZodObject<{
|
|
|
738
738
|
} | undefined;
|
|
739
739
|
list?: boolean | {
|
|
740
740
|
filters?: FilterNode<{
|
|
741
|
-
client_id: z.
|
|
742
|
-
user_id: z.
|
|
743
|
-
status: z.
|
|
744
|
-
id: z.
|
|
741
|
+
client_id: z.ZodString;
|
|
742
|
+
user_id: z.ZodString;
|
|
743
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
744
|
+
id: z.ZodString;
|
|
745
745
|
name: z.ZodOptional<z.ZodString>;
|
|
746
746
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
747
747
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -803,10 +803,10 @@ declare const createShortTermTokenParamsSchema: z.ZodObject<{
|
|
|
803
803
|
permissions: {
|
|
804
804
|
create?: boolean | {
|
|
805
805
|
filters?: FilterNode<{
|
|
806
|
-
client_id: z.
|
|
807
|
-
user_id: z.
|
|
808
|
-
status: z.
|
|
809
|
-
id: z.
|
|
806
|
+
client_id: z.ZodString;
|
|
807
|
+
user_id: z.ZodString;
|
|
808
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
809
|
+
id: z.ZodString;
|
|
810
810
|
name: z.ZodOptional<z.ZodString>;
|
|
811
811
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
812
812
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -837,10 +837,10 @@ declare const createShortTermTokenParamsSchema: z.ZodObject<{
|
|
|
837
837
|
path: z.ZodOptional<z.ZodString>;
|
|
838
838
|
}> | undefined;
|
|
839
839
|
filters?: FilterNode<{
|
|
840
|
-
client_id: z.
|
|
841
|
-
user_id: z.
|
|
842
|
-
status: z.
|
|
843
|
-
id: z.
|
|
840
|
+
client_id: z.ZodString;
|
|
841
|
+
user_id: z.ZodString;
|
|
842
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
843
|
+
id: z.ZodString;
|
|
844
844
|
name: z.ZodOptional<z.ZodString>;
|
|
845
845
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
846
846
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -868,10 +868,10 @@ declare const createShortTermTokenParamsSchema: z.ZodObject<{
|
|
|
868
868
|
} | undefined;
|
|
869
869
|
list?: boolean | {
|
|
870
870
|
filters?: FilterNode<{
|
|
871
|
-
client_id: z.
|
|
872
|
-
user_id: z.
|
|
873
|
-
status: z.
|
|
874
|
-
id: z.
|
|
871
|
+
client_id: z.ZodString;
|
|
872
|
+
user_id: z.ZodString;
|
|
873
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
874
|
+
id: z.ZodString;
|
|
875
875
|
name: z.ZodOptional<z.ZodString>;
|
|
876
876
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
877
877
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -932,10 +932,10 @@ declare const createShortTermTokenParamsSchema: z.ZodObject<{
|
|
|
932
932
|
permissions: {
|
|
933
933
|
create?: boolean | {
|
|
934
934
|
filters?: FilterNode<{
|
|
935
|
-
client_id: z.
|
|
936
|
-
user_id: z.
|
|
937
|
-
status: z.
|
|
938
|
-
id: z.
|
|
935
|
+
client_id: z.ZodString;
|
|
936
|
+
user_id: z.ZodString;
|
|
937
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
938
|
+
id: z.ZodString;
|
|
939
939
|
name: z.ZodOptional<z.ZodString>;
|
|
940
940
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
941
941
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -966,10 +966,10 @@ declare const createShortTermTokenParamsSchema: z.ZodObject<{
|
|
|
966
966
|
path: z.ZodOptional<z.ZodString>;
|
|
967
967
|
}> | undefined;
|
|
968
968
|
filters?: FilterNode<{
|
|
969
|
-
client_id: z.
|
|
970
|
-
user_id: z.
|
|
971
|
-
status: z.
|
|
972
|
-
id: z.
|
|
969
|
+
client_id: z.ZodString;
|
|
970
|
+
user_id: z.ZodString;
|
|
971
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
972
|
+
id: z.ZodString;
|
|
973
973
|
name: z.ZodOptional<z.ZodString>;
|
|
974
974
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
975
975
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -997,10 +997,10 @@ declare const createShortTermTokenParamsSchema: z.ZodObject<{
|
|
|
997
997
|
} | undefined;
|
|
998
998
|
list?: boolean | {
|
|
999
999
|
filters?: FilterNode<{
|
|
1000
|
-
client_id: z.
|
|
1001
|
-
user_id: z.
|
|
1002
|
-
status: z.
|
|
1003
|
-
id: z.
|
|
1000
|
+
client_id: z.ZodString;
|
|
1001
|
+
user_id: z.ZodString;
|
|
1002
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
1003
|
+
id: z.ZodString;
|
|
1004
1004
|
name: z.ZodOptional<z.ZodString>;
|
|
1005
1005
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
1006
1006
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -1092,10 +1092,10 @@ declare const rstreamAuthPayloadSchema: z.ZodIntersection<z.ZodDiscriminatedUnio
|
|
|
1092
1092
|
permissions: z.ZodOptional<z.ZodObject<{
|
|
1093
1093
|
create: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
|
|
1094
1094
|
filters: z.ZodOptional<z.ZodType<FilterNode<{
|
|
1095
|
-
client_id: z.
|
|
1096
|
-
user_id: z.
|
|
1097
|
-
status: z.
|
|
1098
|
-
id: z.
|
|
1095
|
+
client_id: z.ZodString;
|
|
1096
|
+
user_id: z.ZodString;
|
|
1097
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
1098
|
+
id: z.ZodString;
|
|
1099
1099
|
name: z.ZodOptional<z.ZodString>;
|
|
1100
1100
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
1101
1101
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -1120,10 +1120,10 @@ declare const rstreamAuthPayloadSchema: z.ZodIntersection<z.ZodDiscriminatedUnio
|
|
|
1120
1120
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1121
1121
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
1122
1122
|
}>, z.ZodTypeDef, FilterNode<{
|
|
1123
|
-
client_id: z.
|
|
1124
|
-
user_id: z.
|
|
1125
|
-
status: z.
|
|
1126
|
-
id: z.
|
|
1123
|
+
client_id: z.ZodString;
|
|
1124
|
+
user_id: z.ZodString;
|
|
1125
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
1126
|
+
id: z.ZodString;
|
|
1127
1127
|
name: z.ZodOptional<z.ZodString>;
|
|
1128
1128
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
1129
1129
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -1150,10 +1150,10 @@ declare const rstreamAuthPayloadSchema: z.ZodIntersection<z.ZodDiscriminatedUnio
|
|
|
1150
1150
|
}>>>;
|
|
1151
1151
|
}, "strip", z.ZodTypeAny, {
|
|
1152
1152
|
filters?: FilterNode<{
|
|
1153
|
-
client_id: z.
|
|
1154
|
-
user_id: z.
|
|
1155
|
-
status: z.
|
|
1156
|
-
id: z.
|
|
1153
|
+
client_id: z.ZodString;
|
|
1154
|
+
user_id: z.ZodString;
|
|
1155
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
1156
|
+
id: z.ZodString;
|
|
1157
1157
|
name: z.ZodOptional<z.ZodString>;
|
|
1158
1158
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
1159
1159
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -1180,10 +1180,10 @@ declare const rstreamAuthPayloadSchema: z.ZodIntersection<z.ZodDiscriminatedUnio
|
|
|
1180
1180
|
}> | undefined;
|
|
1181
1181
|
}, {
|
|
1182
1182
|
filters?: FilterNode<{
|
|
1183
|
-
client_id: z.
|
|
1184
|
-
user_id: z.
|
|
1185
|
-
status: z.
|
|
1186
|
-
id: z.
|
|
1183
|
+
client_id: z.ZodString;
|
|
1184
|
+
user_id: z.ZodString;
|
|
1185
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
1186
|
+
id: z.ZodString;
|
|
1187
1187
|
name: z.ZodOptional<z.ZodString>;
|
|
1188
1188
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
1189
1189
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -1211,10 +1211,10 @@ declare const rstreamAuthPayloadSchema: z.ZodIntersection<z.ZodDiscriminatedUnio
|
|
|
1211
1211
|
}>]>>;
|
|
1212
1212
|
connect: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
|
|
1213
1213
|
filters: z.ZodOptional<z.ZodType<FilterNode<{
|
|
1214
|
-
client_id: z.
|
|
1215
|
-
user_id: z.
|
|
1216
|
-
status: z.
|
|
1217
|
-
id: z.
|
|
1214
|
+
client_id: z.ZodString;
|
|
1215
|
+
user_id: z.ZodString;
|
|
1216
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
1217
|
+
id: z.ZodString;
|
|
1218
1218
|
name: z.ZodOptional<z.ZodString>;
|
|
1219
1219
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
1220
1220
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -1239,10 +1239,10 @@ declare const rstreamAuthPayloadSchema: z.ZodIntersection<z.ZodDiscriminatedUnio
|
|
|
1239
1239
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1240
1240
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
1241
1241
|
}>, z.ZodTypeDef, FilterNode<{
|
|
1242
|
-
client_id: z.
|
|
1243
|
-
user_id: z.
|
|
1244
|
-
status: z.
|
|
1245
|
-
id: z.
|
|
1242
|
+
client_id: z.ZodString;
|
|
1243
|
+
user_id: z.ZodString;
|
|
1244
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
1245
|
+
id: z.ZodString;
|
|
1246
1246
|
name: z.ZodOptional<z.ZodString>;
|
|
1247
1247
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
1248
1248
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -1277,10 +1277,10 @@ declare const rstreamAuthPayloadSchema: z.ZodIntersection<z.ZodDiscriminatedUnio
|
|
|
1277
1277
|
path: z.ZodOptional<z.ZodString>;
|
|
1278
1278
|
}> | undefined;
|
|
1279
1279
|
filters?: FilterNode<{
|
|
1280
|
-
client_id: z.
|
|
1281
|
-
user_id: z.
|
|
1282
|
-
status: z.
|
|
1283
|
-
id: z.
|
|
1280
|
+
client_id: z.ZodString;
|
|
1281
|
+
user_id: z.ZodString;
|
|
1282
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
1283
|
+
id: z.ZodString;
|
|
1284
1284
|
name: z.ZodOptional<z.ZodString>;
|
|
1285
1285
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
1286
1286
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -1310,10 +1310,10 @@ declare const rstreamAuthPayloadSchema: z.ZodIntersection<z.ZodDiscriminatedUnio
|
|
|
1310
1310
|
path: z.ZodOptional<z.ZodString>;
|
|
1311
1311
|
}> | undefined;
|
|
1312
1312
|
filters?: FilterNode<{
|
|
1313
|
-
client_id: z.
|
|
1314
|
-
user_id: z.
|
|
1315
|
-
status: z.
|
|
1316
|
-
id: z.
|
|
1313
|
+
client_id: z.ZodString;
|
|
1314
|
+
user_id: z.ZodString;
|
|
1315
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
1316
|
+
id: z.ZodString;
|
|
1317
1317
|
name: z.ZodOptional<z.ZodString>;
|
|
1318
1318
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
1319
1319
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -1341,10 +1341,10 @@ declare const rstreamAuthPayloadSchema: z.ZodIntersection<z.ZodDiscriminatedUnio
|
|
|
1341
1341
|
}>]>>;
|
|
1342
1342
|
list: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
|
|
1343
1343
|
filters: z.ZodOptional<z.ZodType<FilterNode<{
|
|
1344
|
-
client_id: z.
|
|
1345
|
-
user_id: z.
|
|
1346
|
-
status: z.
|
|
1347
|
-
id: z.
|
|
1344
|
+
client_id: z.ZodString;
|
|
1345
|
+
user_id: z.ZodString;
|
|
1346
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
1347
|
+
id: z.ZodString;
|
|
1348
1348
|
name: z.ZodOptional<z.ZodString>;
|
|
1349
1349
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
1350
1350
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -1369,10 +1369,10 @@ declare const rstreamAuthPayloadSchema: z.ZodIntersection<z.ZodDiscriminatedUnio
|
|
|
1369
1369
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1370
1370
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
1371
1371
|
}>, z.ZodTypeDef, FilterNode<{
|
|
1372
|
-
client_id: z.
|
|
1373
|
-
user_id: z.
|
|
1374
|
-
status: z.
|
|
1375
|
-
id: z.
|
|
1372
|
+
client_id: z.ZodString;
|
|
1373
|
+
user_id: z.ZodString;
|
|
1374
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
1375
|
+
id: z.ZodString;
|
|
1376
1376
|
name: z.ZodOptional<z.ZodString>;
|
|
1377
1377
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
1378
1378
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -1484,10 +1484,10 @@ declare const rstreamAuthPayloadSchema: z.ZodIntersection<z.ZodDiscriminatedUnio
|
|
|
1484
1484
|
}>>;
|
|
1485
1485
|
}, "strip", z.ZodTypeAny, {
|
|
1486
1486
|
filters?: FilterNode<{
|
|
1487
|
-
client_id: z.
|
|
1488
|
-
user_id: z.
|
|
1489
|
-
status: z.
|
|
1490
|
-
id: z.
|
|
1487
|
+
client_id: z.ZodString;
|
|
1488
|
+
user_id: z.ZodString;
|
|
1489
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
1490
|
+
id: z.ZodString;
|
|
1491
1491
|
name: z.ZodOptional<z.ZodString>;
|
|
1492
1492
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
1493
1493
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -1543,10 +1543,10 @@ declare const rstreamAuthPayloadSchema: z.ZodIntersection<z.ZodDiscriminatedUnio
|
|
|
1543
1543
|
} | undefined;
|
|
1544
1544
|
}, {
|
|
1545
1545
|
filters?: FilterNode<{
|
|
1546
|
-
client_id: z.
|
|
1547
|
-
user_id: z.
|
|
1548
|
-
status: z.
|
|
1549
|
-
id: z.
|
|
1546
|
+
client_id: z.ZodString;
|
|
1547
|
+
user_id: z.ZodString;
|
|
1548
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
1549
|
+
id: z.ZodString;
|
|
1550
1550
|
name: z.ZodOptional<z.ZodString>;
|
|
1551
1551
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
1552
1552
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -1604,10 +1604,10 @@ declare const rstreamAuthPayloadSchema: z.ZodIntersection<z.ZodDiscriminatedUnio
|
|
|
1604
1604
|
}, "strip", z.ZodTypeAny, {
|
|
1605
1605
|
create?: boolean | {
|
|
1606
1606
|
filters?: FilterNode<{
|
|
1607
|
-
client_id: z.
|
|
1608
|
-
user_id: z.
|
|
1609
|
-
status: z.
|
|
1610
|
-
id: z.
|
|
1607
|
+
client_id: z.ZodString;
|
|
1608
|
+
user_id: z.ZodString;
|
|
1609
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
1610
|
+
id: z.ZodString;
|
|
1611
1611
|
name: z.ZodOptional<z.ZodString>;
|
|
1612
1612
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
1613
1613
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -1638,10 +1638,10 @@ declare const rstreamAuthPayloadSchema: z.ZodIntersection<z.ZodDiscriminatedUnio
|
|
|
1638
1638
|
path: z.ZodOptional<z.ZodString>;
|
|
1639
1639
|
}> | undefined;
|
|
1640
1640
|
filters?: FilterNode<{
|
|
1641
|
-
client_id: z.
|
|
1642
|
-
user_id: z.
|
|
1643
|
-
status: z.
|
|
1644
|
-
id: z.
|
|
1641
|
+
client_id: z.ZodString;
|
|
1642
|
+
user_id: z.ZodString;
|
|
1643
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
1644
|
+
id: z.ZodString;
|
|
1645
1645
|
name: z.ZodOptional<z.ZodString>;
|
|
1646
1646
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
1647
1647
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -1669,10 +1669,10 @@ declare const rstreamAuthPayloadSchema: z.ZodIntersection<z.ZodDiscriminatedUnio
|
|
|
1669
1669
|
} | undefined;
|
|
1670
1670
|
list?: boolean | {
|
|
1671
1671
|
filters?: FilterNode<{
|
|
1672
|
-
client_id: z.
|
|
1673
|
-
user_id: z.
|
|
1674
|
-
status: z.
|
|
1675
|
-
id: z.
|
|
1672
|
+
client_id: z.ZodString;
|
|
1673
|
+
user_id: z.ZodString;
|
|
1674
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
1675
|
+
id: z.ZodString;
|
|
1676
1676
|
name: z.ZodOptional<z.ZodString>;
|
|
1677
1677
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
1678
1678
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -1730,10 +1730,10 @@ declare const rstreamAuthPayloadSchema: z.ZodIntersection<z.ZodDiscriminatedUnio
|
|
|
1730
1730
|
}, {
|
|
1731
1731
|
create?: boolean | {
|
|
1732
1732
|
filters?: FilterNode<{
|
|
1733
|
-
client_id: z.
|
|
1734
|
-
user_id: z.
|
|
1735
|
-
status: z.
|
|
1736
|
-
id: z.
|
|
1733
|
+
client_id: z.ZodString;
|
|
1734
|
+
user_id: z.ZodString;
|
|
1735
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
1736
|
+
id: z.ZodString;
|
|
1737
1737
|
name: z.ZodOptional<z.ZodString>;
|
|
1738
1738
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
1739
1739
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -1764,10 +1764,10 @@ declare const rstreamAuthPayloadSchema: z.ZodIntersection<z.ZodDiscriminatedUnio
|
|
|
1764
1764
|
path: z.ZodOptional<z.ZodString>;
|
|
1765
1765
|
}> | undefined;
|
|
1766
1766
|
filters?: FilterNode<{
|
|
1767
|
-
client_id: z.
|
|
1768
|
-
user_id: z.
|
|
1769
|
-
status: z.
|
|
1770
|
-
id: z.
|
|
1767
|
+
client_id: z.ZodString;
|
|
1768
|
+
user_id: z.ZodString;
|
|
1769
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
1770
|
+
id: z.ZodString;
|
|
1771
1771
|
name: z.ZodOptional<z.ZodString>;
|
|
1772
1772
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
1773
1773
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -1795,10 +1795,10 @@ declare const rstreamAuthPayloadSchema: z.ZodIntersection<z.ZodDiscriminatedUnio
|
|
|
1795
1795
|
} | undefined;
|
|
1796
1796
|
list?: boolean | {
|
|
1797
1797
|
filters?: FilterNode<{
|
|
1798
|
-
client_id: z.
|
|
1799
|
-
user_id: z.
|
|
1800
|
-
status: z.
|
|
1801
|
-
id: z.
|
|
1798
|
+
client_id: z.ZodString;
|
|
1799
|
+
user_id: z.ZodString;
|
|
1800
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
1801
|
+
id: z.ZodString;
|
|
1802
1802
|
name: z.ZodOptional<z.ZodString>;
|
|
1803
1803
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
1804
1804
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -1858,10 +1858,10 @@ declare const rstreamAuthPayloadSchema: z.ZodIntersection<z.ZodDiscriminatedUnio
|
|
|
1858
1858
|
permissions?: {
|
|
1859
1859
|
create?: boolean | {
|
|
1860
1860
|
filters?: FilterNode<{
|
|
1861
|
-
client_id: z.
|
|
1862
|
-
user_id: z.
|
|
1863
|
-
status: z.
|
|
1864
|
-
id: z.
|
|
1861
|
+
client_id: z.ZodString;
|
|
1862
|
+
user_id: z.ZodString;
|
|
1863
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
1864
|
+
id: z.ZodString;
|
|
1865
1865
|
name: z.ZodOptional<z.ZodString>;
|
|
1866
1866
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
1867
1867
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -1892,10 +1892,10 @@ declare const rstreamAuthPayloadSchema: z.ZodIntersection<z.ZodDiscriminatedUnio
|
|
|
1892
1892
|
path: z.ZodOptional<z.ZodString>;
|
|
1893
1893
|
}> | undefined;
|
|
1894
1894
|
filters?: FilterNode<{
|
|
1895
|
-
client_id: z.
|
|
1896
|
-
user_id: z.
|
|
1897
|
-
status: z.
|
|
1898
|
-
id: z.
|
|
1895
|
+
client_id: z.ZodString;
|
|
1896
|
+
user_id: z.ZodString;
|
|
1897
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
1898
|
+
id: z.ZodString;
|
|
1899
1899
|
name: z.ZodOptional<z.ZodString>;
|
|
1900
1900
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
1901
1901
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -1923,10 +1923,10 @@ declare const rstreamAuthPayloadSchema: z.ZodIntersection<z.ZodDiscriminatedUnio
|
|
|
1923
1923
|
} | undefined;
|
|
1924
1924
|
list?: boolean | {
|
|
1925
1925
|
filters?: FilterNode<{
|
|
1926
|
-
client_id: z.
|
|
1927
|
-
user_id: z.
|
|
1928
|
-
status: z.
|
|
1929
|
-
id: z.
|
|
1926
|
+
client_id: z.ZodString;
|
|
1927
|
+
user_id: z.ZodString;
|
|
1928
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
1929
|
+
id: z.ZodString;
|
|
1930
1930
|
name: z.ZodOptional<z.ZodString>;
|
|
1931
1931
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
1932
1932
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -1987,10 +1987,10 @@ declare const rstreamAuthPayloadSchema: z.ZodIntersection<z.ZodDiscriminatedUnio
|
|
|
1987
1987
|
permissions?: {
|
|
1988
1988
|
create?: boolean | {
|
|
1989
1989
|
filters?: FilterNode<{
|
|
1990
|
-
client_id: z.
|
|
1991
|
-
user_id: z.
|
|
1992
|
-
status: z.
|
|
1993
|
-
id: z.
|
|
1990
|
+
client_id: z.ZodString;
|
|
1991
|
+
user_id: z.ZodString;
|
|
1992
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
1993
|
+
id: z.ZodString;
|
|
1994
1994
|
name: z.ZodOptional<z.ZodString>;
|
|
1995
1995
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
1996
1996
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -2021,10 +2021,10 @@ declare const rstreamAuthPayloadSchema: z.ZodIntersection<z.ZodDiscriminatedUnio
|
|
|
2021
2021
|
path: z.ZodOptional<z.ZodString>;
|
|
2022
2022
|
}> | undefined;
|
|
2023
2023
|
filters?: FilterNode<{
|
|
2024
|
-
client_id: z.
|
|
2025
|
-
user_id: z.
|
|
2026
|
-
status: z.
|
|
2027
|
-
id: z.
|
|
2024
|
+
client_id: z.ZodString;
|
|
2025
|
+
user_id: z.ZodString;
|
|
2026
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
2027
|
+
id: z.ZodString;
|
|
2028
2028
|
name: z.ZodOptional<z.ZodString>;
|
|
2029
2029
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
2030
2030
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -2052,10 +2052,10 @@ declare const rstreamAuthPayloadSchema: z.ZodIntersection<z.ZodDiscriminatedUnio
|
|
|
2052
2052
|
} | undefined;
|
|
2053
2053
|
list?: boolean | {
|
|
2054
2054
|
filters?: FilterNode<{
|
|
2055
|
-
client_id: z.
|
|
2056
|
-
user_id: z.
|
|
2057
|
-
status: z.
|
|
2058
|
-
id: z.
|
|
2055
|
+
client_id: z.ZodString;
|
|
2056
|
+
user_id: z.ZodString;
|
|
2057
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
2058
|
+
id: z.ZodString;
|
|
2059
2059
|
name: z.ZodOptional<z.ZodString>;
|
|
2060
2060
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
2061
2061
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -2118,10 +2118,10 @@ declare const rstreamAuthPayloadSchema: z.ZodIntersection<z.ZodDiscriminatedUnio
|
|
|
2118
2118
|
permissions?: {
|
|
2119
2119
|
create?: boolean | {
|
|
2120
2120
|
filters?: FilterNode<{
|
|
2121
|
-
client_id: z.
|
|
2122
|
-
user_id: z.
|
|
2123
|
-
status: z.
|
|
2124
|
-
id: z.
|
|
2121
|
+
client_id: z.ZodString;
|
|
2122
|
+
user_id: z.ZodString;
|
|
2123
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
2124
|
+
id: z.ZodString;
|
|
2125
2125
|
name: z.ZodOptional<z.ZodString>;
|
|
2126
2126
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
2127
2127
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -2152,10 +2152,10 @@ declare const rstreamAuthPayloadSchema: z.ZodIntersection<z.ZodDiscriminatedUnio
|
|
|
2152
2152
|
path: z.ZodOptional<z.ZodString>;
|
|
2153
2153
|
}> | undefined;
|
|
2154
2154
|
filters?: FilterNode<{
|
|
2155
|
-
client_id: z.
|
|
2156
|
-
user_id: z.
|
|
2157
|
-
status: z.
|
|
2158
|
-
id: z.
|
|
2155
|
+
client_id: z.ZodString;
|
|
2156
|
+
user_id: z.ZodString;
|
|
2157
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
2158
|
+
id: z.ZodString;
|
|
2159
2159
|
name: z.ZodOptional<z.ZodString>;
|
|
2160
2160
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
2161
2161
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -2183,10 +2183,10 @@ declare const rstreamAuthPayloadSchema: z.ZodIntersection<z.ZodDiscriminatedUnio
|
|
|
2183
2183
|
} | undefined;
|
|
2184
2184
|
list?: boolean | {
|
|
2185
2185
|
filters?: FilterNode<{
|
|
2186
|
-
client_id: z.
|
|
2187
|
-
user_id: z.
|
|
2188
|
-
status: z.
|
|
2189
|
-
id: z.
|
|
2186
|
+
client_id: z.ZodString;
|
|
2187
|
+
user_id: z.ZodString;
|
|
2188
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
2189
|
+
id: z.ZodString;
|
|
2190
2190
|
name: z.ZodOptional<z.ZodString>;
|
|
2191
2191
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
2192
2192
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -2249,10 +2249,10 @@ declare const rstreamAuthPayloadSchema: z.ZodIntersection<z.ZodDiscriminatedUnio
|
|
|
2249
2249
|
permissions?: {
|
|
2250
2250
|
create?: boolean | {
|
|
2251
2251
|
filters?: FilterNode<{
|
|
2252
|
-
client_id: z.
|
|
2253
|
-
user_id: z.
|
|
2254
|
-
status: z.
|
|
2255
|
-
id: z.
|
|
2252
|
+
client_id: z.ZodString;
|
|
2253
|
+
user_id: z.ZodString;
|
|
2254
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
2255
|
+
id: z.ZodString;
|
|
2256
2256
|
name: z.ZodOptional<z.ZodString>;
|
|
2257
2257
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
2258
2258
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -2283,10 +2283,10 @@ declare const rstreamAuthPayloadSchema: z.ZodIntersection<z.ZodDiscriminatedUnio
|
|
|
2283
2283
|
path: z.ZodOptional<z.ZodString>;
|
|
2284
2284
|
}> | undefined;
|
|
2285
2285
|
filters?: FilterNode<{
|
|
2286
|
-
client_id: z.
|
|
2287
|
-
user_id: z.
|
|
2288
|
-
status: z.
|
|
2289
|
-
id: z.
|
|
2286
|
+
client_id: z.ZodString;
|
|
2287
|
+
user_id: z.ZodString;
|
|
2288
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
2289
|
+
id: z.ZodString;
|
|
2290
2290
|
name: z.ZodOptional<z.ZodString>;
|
|
2291
2291
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
2292
2292
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -2314,10 +2314,10 @@ declare const rstreamAuthPayloadSchema: z.ZodIntersection<z.ZodDiscriminatedUnio
|
|
|
2314
2314
|
} | undefined;
|
|
2315
2315
|
list?: boolean | {
|
|
2316
2316
|
filters?: FilterNode<{
|
|
2317
|
-
client_id: z.
|
|
2318
|
-
user_id: z.
|
|
2319
|
-
status: z.
|
|
2320
|
-
id: z.
|
|
2317
|
+
client_id: z.ZodString;
|
|
2318
|
+
user_id: z.ZodString;
|
|
2319
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
2320
|
+
id: z.ZodString;
|
|
2321
2321
|
name: z.ZodOptional<z.ZodString>;
|
|
2322
2322
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
2323
2323
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -2499,10 +2499,10 @@ declare class RstreamClientsRessource {
|
|
|
2499
2499
|
}
|
|
2500
2500
|
|
|
2501
2501
|
declare const tunnelSchema: z.ZodObject<{
|
|
2502
|
-
client_id: z.
|
|
2503
|
-
user_id: z.
|
|
2504
|
-
status: z.
|
|
2505
|
-
id: z.
|
|
2502
|
+
client_id: z.ZodString;
|
|
2503
|
+
user_id: z.ZodString;
|
|
2504
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
2505
|
+
id: z.ZodString;
|
|
2506
2506
|
name: z.ZodOptional<z.ZodString>;
|
|
2507
2507
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
2508
2508
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -2527,11 +2527,11 @@ declare const tunnelSchema: z.ZodObject<{
|
|
|
2527
2527
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2528
2528
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
2529
2529
|
}, "strip", z.ZodTypeAny, {
|
|
2530
|
+
status: "online" | "offline";
|
|
2531
|
+
client_id: string;
|
|
2532
|
+
user_id: string;
|
|
2533
|
+
id: string;
|
|
2530
2534
|
type?: "bytestream" | "datagram" | undefined;
|
|
2531
|
-
status?: "online" | "offline" | undefined;
|
|
2532
|
-
client_id?: string | undefined;
|
|
2533
|
-
user_id?: string | undefined;
|
|
2534
|
-
id?: string | undefined;
|
|
2535
2535
|
name?: string | undefined;
|
|
2536
2536
|
creation_date?: Date | undefined;
|
|
2537
2537
|
publish?: boolean | undefined;
|
|
@@ -2555,11 +2555,11 @@ declare const tunnelSchema: z.ZodObject<{
|
|
|
2555
2555
|
email_blacklist?: string[] | undefined;
|
|
2556
2556
|
challenge?: boolean | undefined;
|
|
2557
2557
|
}, {
|
|
2558
|
+
status: "online" | "offline";
|
|
2559
|
+
client_id: string;
|
|
2560
|
+
user_id: string;
|
|
2561
|
+
id: string;
|
|
2558
2562
|
type?: "bytestream" | "datagram" | undefined;
|
|
2559
|
-
status?: "online" | "offline" | undefined;
|
|
2560
|
-
client_id?: string | undefined;
|
|
2561
|
-
user_id?: string | undefined;
|
|
2562
|
-
id?: string | undefined;
|
|
2563
2563
|
name?: string | undefined;
|
|
2564
2564
|
creation_date?: Date | undefined;
|
|
2565
2565
|
publish?: boolean | undefined;
|
|
@@ -2586,8 +2586,8 @@ declare const tunnelSchema: z.ZodObject<{
|
|
|
2586
2586
|
declare const listTunnelsParamsSchema: z.ZodObject<{
|
|
2587
2587
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
2588
2588
|
filters: z.ZodOptional<z.ZodObject<{
|
|
2589
|
-
status: z.ZodOptional<z.
|
|
2590
|
-
client_id: z.ZodOptional<z.
|
|
2589
|
+
status: z.ZodOptional<z.ZodEnum<["online", "offline"]>>;
|
|
2590
|
+
client_id: z.ZodOptional<z.ZodString>;
|
|
2591
2591
|
publish: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
2592
2592
|
protocol: z.ZodOptional<z.ZodOptional<z.ZodEnum<["tls", "dtls", "quic", "http"]>>>;
|
|
2593
2593
|
labels: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodString>>>>;
|
|
@@ -2624,10 +2624,10 @@ declare const listTunnelsParamsSchema: z.ZodObject<{
|
|
|
2624
2624
|
} | undefined;
|
|
2625
2625
|
}>;
|
|
2626
2626
|
declare const listTunnelsResponseSchema: z.ZodArray<z.ZodObject<{
|
|
2627
|
-
client_id: z.
|
|
2628
|
-
user_id: z.
|
|
2629
|
-
status: z.
|
|
2630
|
-
id: z.
|
|
2627
|
+
client_id: z.ZodString;
|
|
2628
|
+
user_id: z.ZodString;
|
|
2629
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
2630
|
+
id: z.ZodString;
|
|
2631
2631
|
name: z.ZodOptional<z.ZodString>;
|
|
2632
2632
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
2633
2633
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -2652,11 +2652,11 @@ declare const listTunnelsResponseSchema: z.ZodArray<z.ZodObject<{
|
|
|
2652
2652
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2653
2653
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
2654
2654
|
}, "strip", z.ZodTypeAny, {
|
|
2655
|
+
status: "online" | "offline";
|
|
2656
|
+
client_id: string;
|
|
2657
|
+
user_id: string;
|
|
2658
|
+
id: string;
|
|
2655
2659
|
type?: "bytestream" | "datagram" | undefined;
|
|
2656
|
-
status?: "online" | "offline" | undefined;
|
|
2657
|
-
client_id?: string | undefined;
|
|
2658
|
-
user_id?: string | undefined;
|
|
2659
|
-
id?: string | undefined;
|
|
2660
2660
|
name?: string | undefined;
|
|
2661
2661
|
creation_date?: Date | undefined;
|
|
2662
2662
|
publish?: boolean | undefined;
|
|
@@ -2680,11 +2680,11 @@ declare const listTunnelsResponseSchema: z.ZodArray<z.ZodObject<{
|
|
|
2680
2680
|
email_blacklist?: string[] | undefined;
|
|
2681
2681
|
challenge?: boolean | undefined;
|
|
2682
2682
|
}, {
|
|
2683
|
+
status: "online" | "offline";
|
|
2684
|
+
client_id: string;
|
|
2685
|
+
user_id: string;
|
|
2686
|
+
id: string;
|
|
2683
2687
|
type?: "bytestream" | "datagram" | undefined;
|
|
2684
|
-
status?: "online" | "offline" | undefined;
|
|
2685
|
-
client_id?: string | undefined;
|
|
2686
|
-
user_id?: string | undefined;
|
|
2687
|
-
id?: string | undefined;
|
|
2688
2688
|
name?: string | undefined;
|
|
2689
2689
|
creation_date?: Date | undefined;
|
|
2690
2690
|
publish?: boolean | undefined;
|
|
@@ -2944,10 +2944,10 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2944
2944
|
}>, z.ZodObject<{
|
|
2945
2945
|
type: z.ZodLiteral<"tunnel.created">;
|
|
2946
2946
|
object: z.ZodObject<{
|
|
2947
|
-
client_id: z.
|
|
2948
|
-
user_id: z.
|
|
2949
|
-
status: z.
|
|
2950
|
-
id: z.
|
|
2947
|
+
client_id: z.ZodString;
|
|
2948
|
+
user_id: z.ZodString;
|
|
2949
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
2950
|
+
id: z.ZodString;
|
|
2951
2951
|
name: z.ZodOptional<z.ZodString>;
|
|
2952
2952
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
2953
2953
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -2972,11 +2972,11 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
2972
2972
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2973
2973
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
2974
2974
|
}, "strip", z.ZodTypeAny, {
|
|
2975
|
+
status: "online" | "offline";
|
|
2976
|
+
client_id: string;
|
|
2977
|
+
user_id: string;
|
|
2978
|
+
id: string;
|
|
2975
2979
|
type?: "bytestream" | "datagram" | undefined;
|
|
2976
|
-
status?: "online" | "offline" | undefined;
|
|
2977
|
-
client_id?: string | undefined;
|
|
2978
|
-
user_id?: string | undefined;
|
|
2979
|
-
id?: string | undefined;
|
|
2980
2980
|
name?: string | undefined;
|
|
2981
2981
|
creation_date?: Date | undefined;
|
|
2982
2982
|
publish?: boolean | undefined;
|
|
@@ -3000,11 +3000,11 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3000
3000
|
email_blacklist?: string[] | undefined;
|
|
3001
3001
|
challenge?: boolean | undefined;
|
|
3002
3002
|
}, {
|
|
3003
|
+
status: "online" | "offline";
|
|
3004
|
+
client_id: string;
|
|
3005
|
+
user_id: string;
|
|
3006
|
+
id: string;
|
|
3003
3007
|
type?: "bytestream" | "datagram" | undefined;
|
|
3004
|
-
status?: "online" | "offline" | undefined;
|
|
3005
|
-
client_id?: string | undefined;
|
|
3006
|
-
user_id?: string | undefined;
|
|
3007
|
-
id?: string | undefined;
|
|
3008
3008
|
name?: string | undefined;
|
|
3009
3009
|
creation_date?: Date | undefined;
|
|
3010
3010
|
publish?: boolean | undefined;
|
|
@@ -3030,11 +3030,11 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3030
3030
|
}>;
|
|
3031
3031
|
}, "strip", z.ZodTypeAny, {
|
|
3032
3032
|
object: {
|
|
3033
|
+
status: "online" | "offline";
|
|
3034
|
+
client_id: string;
|
|
3035
|
+
user_id: string;
|
|
3036
|
+
id: string;
|
|
3033
3037
|
type?: "bytestream" | "datagram" | undefined;
|
|
3034
|
-
status?: "online" | "offline" | undefined;
|
|
3035
|
-
client_id?: string | undefined;
|
|
3036
|
-
user_id?: string | undefined;
|
|
3037
|
-
id?: string | undefined;
|
|
3038
3038
|
name?: string | undefined;
|
|
3039
3039
|
creation_date?: Date | undefined;
|
|
3040
3040
|
publish?: boolean | undefined;
|
|
@@ -3061,11 +3061,11 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3061
3061
|
type: "tunnel.created";
|
|
3062
3062
|
}, {
|
|
3063
3063
|
object: {
|
|
3064
|
+
status: "online" | "offline";
|
|
3065
|
+
client_id: string;
|
|
3066
|
+
user_id: string;
|
|
3067
|
+
id: string;
|
|
3064
3068
|
type?: "bytestream" | "datagram" | undefined;
|
|
3065
|
-
status?: "online" | "offline" | undefined;
|
|
3066
|
-
client_id?: string | undefined;
|
|
3067
|
-
user_id?: string | undefined;
|
|
3068
|
-
id?: string | undefined;
|
|
3069
3069
|
name?: string | undefined;
|
|
3070
3070
|
creation_date?: Date | undefined;
|
|
3071
3071
|
publish?: boolean | undefined;
|
|
@@ -3093,10 +3093,10 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3093
3093
|
}>, z.ZodObject<{
|
|
3094
3094
|
type: z.ZodLiteral<"tunnel.updated">;
|
|
3095
3095
|
object: z.ZodObject<{
|
|
3096
|
-
client_id: z.
|
|
3097
|
-
user_id: z.
|
|
3098
|
-
status: z.
|
|
3099
|
-
id: z.
|
|
3096
|
+
client_id: z.ZodString;
|
|
3097
|
+
user_id: z.ZodString;
|
|
3098
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
3099
|
+
id: z.ZodString;
|
|
3100
3100
|
name: z.ZodOptional<z.ZodString>;
|
|
3101
3101
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
3102
3102
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -3121,11 +3121,11 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3121
3121
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3122
3122
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
3123
3123
|
}, "strip", z.ZodTypeAny, {
|
|
3124
|
+
status: "online" | "offline";
|
|
3125
|
+
client_id: string;
|
|
3126
|
+
user_id: string;
|
|
3127
|
+
id: string;
|
|
3124
3128
|
type?: "bytestream" | "datagram" | undefined;
|
|
3125
|
-
status?: "online" | "offline" | undefined;
|
|
3126
|
-
client_id?: string | undefined;
|
|
3127
|
-
user_id?: string | undefined;
|
|
3128
|
-
id?: string | undefined;
|
|
3129
3129
|
name?: string | undefined;
|
|
3130
3130
|
creation_date?: Date | undefined;
|
|
3131
3131
|
publish?: boolean | undefined;
|
|
@@ -3149,11 +3149,11 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3149
3149
|
email_blacklist?: string[] | undefined;
|
|
3150
3150
|
challenge?: boolean | undefined;
|
|
3151
3151
|
}, {
|
|
3152
|
+
status: "online" | "offline";
|
|
3153
|
+
client_id: string;
|
|
3154
|
+
user_id: string;
|
|
3155
|
+
id: string;
|
|
3152
3156
|
type?: "bytestream" | "datagram" | undefined;
|
|
3153
|
-
status?: "online" | "offline" | undefined;
|
|
3154
|
-
client_id?: string | undefined;
|
|
3155
|
-
user_id?: string | undefined;
|
|
3156
|
-
id?: string | undefined;
|
|
3157
3157
|
name?: string | undefined;
|
|
3158
3158
|
creation_date?: Date | undefined;
|
|
3159
3159
|
publish?: boolean | undefined;
|
|
@@ -3179,11 +3179,11 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3179
3179
|
}>;
|
|
3180
3180
|
}, "strip", z.ZodTypeAny, {
|
|
3181
3181
|
object: {
|
|
3182
|
+
status: "online" | "offline";
|
|
3183
|
+
client_id: string;
|
|
3184
|
+
user_id: string;
|
|
3185
|
+
id: string;
|
|
3182
3186
|
type?: "bytestream" | "datagram" | undefined;
|
|
3183
|
-
status?: "online" | "offline" | undefined;
|
|
3184
|
-
client_id?: string | undefined;
|
|
3185
|
-
user_id?: string | undefined;
|
|
3186
|
-
id?: string | undefined;
|
|
3187
3187
|
name?: string | undefined;
|
|
3188
3188
|
creation_date?: Date | undefined;
|
|
3189
3189
|
publish?: boolean | undefined;
|
|
@@ -3210,11 +3210,11 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3210
3210
|
type: "tunnel.updated";
|
|
3211
3211
|
}, {
|
|
3212
3212
|
object: {
|
|
3213
|
+
status: "online" | "offline";
|
|
3214
|
+
client_id: string;
|
|
3215
|
+
user_id: string;
|
|
3216
|
+
id: string;
|
|
3213
3217
|
type?: "bytestream" | "datagram" | undefined;
|
|
3214
|
-
status?: "online" | "offline" | undefined;
|
|
3215
|
-
client_id?: string | undefined;
|
|
3216
|
-
user_id?: string | undefined;
|
|
3217
|
-
id?: string | undefined;
|
|
3218
3218
|
name?: string | undefined;
|
|
3219
3219
|
creation_date?: Date | undefined;
|
|
3220
3220
|
publish?: boolean | undefined;
|
|
@@ -3242,10 +3242,10 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3242
3242
|
}>, z.ZodObject<{
|
|
3243
3243
|
type: z.ZodLiteral<"tunnel.deleted">;
|
|
3244
3244
|
object: z.ZodObject<{
|
|
3245
|
-
client_id: z.
|
|
3246
|
-
user_id: z.
|
|
3247
|
-
status: z.
|
|
3248
|
-
id: z.
|
|
3245
|
+
client_id: z.ZodString;
|
|
3246
|
+
user_id: z.ZodString;
|
|
3247
|
+
status: z.ZodEnum<["online", "offline"]>;
|
|
3248
|
+
id: z.ZodString;
|
|
3249
3249
|
name: z.ZodOptional<z.ZodString>;
|
|
3250
3250
|
creation_date: z.ZodOptional<z.ZodDate>;
|
|
3251
3251
|
type: z.ZodOptional<z.ZodEnum<["bytestream", "datagram"]>>;
|
|
@@ -3270,11 +3270,11 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3270
3270
|
email_blacklist: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3271
3271
|
challenge: z.ZodOptional<z.ZodBoolean>;
|
|
3272
3272
|
}, "strip", z.ZodTypeAny, {
|
|
3273
|
+
status: "online" | "offline";
|
|
3274
|
+
client_id: string;
|
|
3275
|
+
user_id: string;
|
|
3276
|
+
id: string;
|
|
3273
3277
|
type?: "bytestream" | "datagram" | undefined;
|
|
3274
|
-
status?: "online" | "offline" | undefined;
|
|
3275
|
-
client_id?: string | undefined;
|
|
3276
|
-
user_id?: string | undefined;
|
|
3277
|
-
id?: string | undefined;
|
|
3278
3278
|
name?: string | undefined;
|
|
3279
3279
|
creation_date?: Date | undefined;
|
|
3280
3280
|
publish?: boolean | undefined;
|
|
@@ -3298,11 +3298,11 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3298
3298
|
email_blacklist?: string[] | undefined;
|
|
3299
3299
|
challenge?: boolean | undefined;
|
|
3300
3300
|
}, {
|
|
3301
|
+
status: "online" | "offline";
|
|
3302
|
+
client_id: string;
|
|
3303
|
+
user_id: string;
|
|
3304
|
+
id: string;
|
|
3301
3305
|
type?: "bytestream" | "datagram" | undefined;
|
|
3302
|
-
status?: "online" | "offline" | undefined;
|
|
3303
|
-
client_id?: string | undefined;
|
|
3304
|
-
user_id?: string | undefined;
|
|
3305
|
-
id?: string | undefined;
|
|
3306
3306
|
name?: string | undefined;
|
|
3307
3307
|
creation_date?: Date | undefined;
|
|
3308
3308
|
publish?: boolean | undefined;
|
|
@@ -3328,11 +3328,11 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3328
3328
|
}>;
|
|
3329
3329
|
}, "strip", z.ZodTypeAny, {
|
|
3330
3330
|
object: {
|
|
3331
|
+
status: "online" | "offline";
|
|
3332
|
+
client_id: string;
|
|
3333
|
+
user_id: string;
|
|
3334
|
+
id: string;
|
|
3331
3335
|
type?: "bytestream" | "datagram" | undefined;
|
|
3332
|
-
status?: "online" | "offline" | undefined;
|
|
3333
|
-
client_id?: string | undefined;
|
|
3334
|
-
user_id?: string | undefined;
|
|
3335
|
-
id?: string | undefined;
|
|
3336
3336
|
name?: string | undefined;
|
|
3337
3337
|
creation_date?: Date | undefined;
|
|
3338
3338
|
publish?: boolean | undefined;
|
|
@@ -3359,11 +3359,11 @@ declare const eventSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
3359
3359
|
type: "tunnel.deleted";
|
|
3360
3360
|
}, {
|
|
3361
3361
|
object: {
|
|
3362
|
+
status: "online" | "offline";
|
|
3363
|
+
client_id: string;
|
|
3364
|
+
user_id: string;
|
|
3365
|
+
id: string;
|
|
3362
3366
|
type?: "bytestream" | "datagram" | undefined;
|
|
3363
|
-
status?: "online" | "offline" | undefined;
|
|
3364
|
-
client_id?: string | undefined;
|
|
3365
|
-
user_id?: string | undefined;
|
|
3366
|
-
id?: string | undefined;
|
|
3367
3367
|
name?: string | undefined;
|
|
3368
3368
|
creation_date?: Date | undefined;
|
|
3369
3369
|
publish?: boolean | undefined;
|