@voiceflow/dtos-interact 1.52.1-8e3edd4540.14 → 1.52.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/socket/socket-action-trace.dto.d.ts +51 -9
- package/build/cjs/socket/socket-action-trace.dto.d.ts.map +1 -1
- package/build/cjs/socket/socket-message.dto.d.ts +102 -18
- package/build/cjs/socket/socket-message.dto.d.ts.map +1 -1
- package/build/cjs/trace/any.dto.d.ts +31 -5
- package/build/cjs/trace/any.dto.d.ts.map +1 -1
- package/build/cjs/trace/text.dto.d.ts +31 -5
- package/build/cjs/trace/text.dto.d.ts.map +1 -1
- package/build/cjs/trace/text.dto.js +2 -1
- package/build/cjs/trace/text.dto.js.map +1 -1
- package/build/esm/socket/socket-action-trace.dto.d.ts +51 -9
- package/build/esm/socket/socket-action-trace.dto.d.ts.map +1 -1
- package/build/esm/socket/socket-message.dto.d.ts +102 -18
- package/build/esm/socket/socket-message.dto.d.ts.map +1 -1
- package/build/esm/trace/any.dto.d.ts +31 -5
- package/build/esm/trace/any.dto.d.ts.map +1 -1
- package/build/esm/trace/text.dto.d.ts +31 -5
- package/build/esm/trace/text.dto.d.ts.map +1 -1
- package/build/esm/trace/text.dto.js +2 -1
- package/build/esm/trace/text.dto.js.map +1 -1
- package/package.json +2 -2
|
@@ -2629,49 +2629,71 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
|
|
|
2629
2629
|
}, {
|
|
2630
2630
|
src: string;
|
|
2631
2631
|
}>>;
|
|
2632
|
-
messageID: z.
|
|
2632
|
+
messageID: z.ZodString;
|
|
2633
|
+
sourceUrls: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2634
|
+
url: z.ZodString;
|
|
2635
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2636
|
+
}, "strip", z.ZodTypeAny, {
|
|
2637
|
+
url: string;
|
|
2638
|
+
name?: string | undefined;
|
|
2639
|
+
}, {
|
|
2640
|
+
url: string;
|
|
2641
|
+
name?: string | undefined;
|
|
2642
|
+
}>, "many">>;
|
|
2633
2643
|
}, "strip", z.ZodTypeAny, {
|
|
2634
2644
|
message: string;
|
|
2645
|
+
messageID: string;
|
|
2635
2646
|
slate: {
|
|
2636
2647
|
id: string;
|
|
2637
2648
|
content: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[];
|
|
2638
2649
|
};
|
|
2639
2650
|
voice?: string | undefined;
|
|
2640
|
-
messageID?: string | undefined;
|
|
2641
2651
|
audio?: {
|
|
2642
2652
|
src: string;
|
|
2643
2653
|
} | undefined;
|
|
2644
2654
|
ai?: boolean | undefined;
|
|
2645
2655
|
delay?: number | undefined;
|
|
2656
|
+
sourceUrls?: {
|
|
2657
|
+
url: string;
|
|
2658
|
+
name?: string | undefined;
|
|
2659
|
+
}[] | undefined;
|
|
2646
2660
|
}, {
|
|
2647
2661
|
message: string;
|
|
2662
|
+
messageID: string;
|
|
2648
2663
|
slate: {
|
|
2649
2664
|
id: string;
|
|
2650
2665
|
content: any[];
|
|
2651
2666
|
};
|
|
2652
2667
|
voice?: string | undefined;
|
|
2653
|
-
messageID?: string | undefined;
|
|
2654
2668
|
audio?: {
|
|
2655
2669
|
src: string;
|
|
2656
2670
|
} | undefined;
|
|
2657
2671
|
ai?: boolean | undefined;
|
|
2658
2672
|
delay?: number | undefined;
|
|
2673
|
+
sourceUrls?: {
|
|
2674
|
+
url: string;
|
|
2675
|
+
name?: string | undefined;
|
|
2676
|
+
}[] | undefined;
|
|
2659
2677
|
}>;
|
|
2660
2678
|
}, "strip", z.ZodTypeAny, {
|
|
2661
2679
|
type: "text";
|
|
2662
2680
|
payload: {
|
|
2663
2681
|
message: string;
|
|
2682
|
+
messageID: string;
|
|
2664
2683
|
slate: {
|
|
2665
2684
|
id: string;
|
|
2666
2685
|
content: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[];
|
|
2667
2686
|
};
|
|
2668
2687
|
voice?: string | undefined;
|
|
2669
|
-
messageID?: string | undefined;
|
|
2670
2688
|
audio?: {
|
|
2671
2689
|
src: string;
|
|
2672
2690
|
} | undefined;
|
|
2673
2691
|
ai?: boolean | undefined;
|
|
2674
2692
|
delay?: number | undefined;
|
|
2693
|
+
sourceUrls?: {
|
|
2694
|
+
url: string;
|
|
2695
|
+
name?: string | undefined;
|
|
2696
|
+
}[] | undefined;
|
|
2675
2697
|
};
|
|
2676
2698
|
time?: number | undefined;
|
|
2677
2699
|
paths?: {
|
|
@@ -2688,17 +2710,21 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
|
|
|
2688
2710
|
type: "text";
|
|
2689
2711
|
payload: {
|
|
2690
2712
|
message: string;
|
|
2713
|
+
messageID: string;
|
|
2691
2714
|
slate: {
|
|
2692
2715
|
id: string;
|
|
2693
2716
|
content: any[];
|
|
2694
2717
|
};
|
|
2695
2718
|
voice?: string | undefined;
|
|
2696
|
-
messageID?: string | undefined;
|
|
2697
2719
|
audio?: {
|
|
2698
2720
|
src: string;
|
|
2699
2721
|
} | undefined;
|
|
2700
2722
|
ai?: boolean | undefined;
|
|
2701
2723
|
delay?: number | undefined;
|
|
2724
|
+
sourceUrls?: {
|
|
2725
|
+
url: string;
|
|
2726
|
+
name?: string | undefined;
|
|
2727
|
+
}[] | undefined;
|
|
2702
2728
|
};
|
|
2703
2729
|
time?: number | undefined;
|
|
2704
2730
|
paths?: {
|
|
@@ -4184,17 +4210,21 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
|
|
|
4184
4210
|
type: "text";
|
|
4185
4211
|
payload: {
|
|
4186
4212
|
message: string;
|
|
4213
|
+
messageID: string;
|
|
4187
4214
|
slate: {
|
|
4188
4215
|
id: string;
|
|
4189
4216
|
content: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[];
|
|
4190
4217
|
};
|
|
4191
4218
|
voice?: string | undefined;
|
|
4192
|
-
messageID?: string | undefined;
|
|
4193
4219
|
audio?: {
|
|
4194
4220
|
src: string;
|
|
4195
4221
|
} | undefined;
|
|
4196
4222
|
ai?: boolean | undefined;
|
|
4197
4223
|
delay?: number | undefined;
|
|
4224
|
+
sourceUrls?: {
|
|
4225
|
+
url: string;
|
|
4226
|
+
name?: string | undefined;
|
|
4227
|
+
}[] | undefined;
|
|
4198
4228
|
};
|
|
4199
4229
|
time?: number | undefined;
|
|
4200
4230
|
paths?: {
|
|
@@ -4818,17 +4848,21 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
|
|
|
4818
4848
|
type: "text";
|
|
4819
4849
|
payload: {
|
|
4820
4850
|
message: string;
|
|
4851
|
+
messageID: string;
|
|
4821
4852
|
slate: {
|
|
4822
4853
|
id: string;
|
|
4823
4854
|
content: any[];
|
|
4824
4855
|
};
|
|
4825
4856
|
voice?: string | undefined;
|
|
4826
|
-
messageID?: string | undefined;
|
|
4827
4857
|
audio?: {
|
|
4828
4858
|
src: string;
|
|
4829
4859
|
} | undefined;
|
|
4830
4860
|
ai?: boolean | undefined;
|
|
4831
4861
|
delay?: number | undefined;
|
|
4862
|
+
sourceUrls?: {
|
|
4863
|
+
url: string;
|
|
4864
|
+
name?: string | undefined;
|
|
4865
|
+
}[] | undefined;
|
|
4832
4866
|
};
|
|
4833
4867
|
time?: number | undefined;
|
|
4834
4868
|
paths?: {
|
|
@@ -5455,17 +5489,21 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
|
|
|
5455
5489
|
type: "text";
|
|
5456
5490
|
payload: {
|
|
5457
5491
|
message: string;
|
|
5492
|
+
messageID: string;
|
|
5458
5493
|
slate: {
|
|
5459
5494
|
id: string;
|
|
5460
5495
|
content: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[];
|
|
5461
5496
|
};
|
|
5462
5497
|
voice?: string | undefined;
|
|
5463
|
-
messageID?: string | undefined;
|
|
5464
5498
|
audio?: {
|
|
5465
5499
|
src: string;
|
|
5466
5500
|
} | undefined;
|
|
5467
5501
|
ai?: boolean | undefined;
|
|
5468
5502
|
delay?: number | undefined;
|
|
5503
|
+
sourceUrls?: {
|
|
5504
|
+
url: string;
|
|
5505
|
+
name?: string | undefined;
|
|
5506
|
+
}[] | undefined;
|
|
5469
5507
|
};
|
|
5470
5508
|
time?: number | undefined;
|
|
5471
5509
|
paths?: {
|
|
@@ -6092,17 +6130,21 @@ export declare const SocketActionTraceDTO: z.ZodObject<{
|
|
|
6092
6130
|
type: "text";
|
|
6093
6131
|
payload: {
|
|
6094
6132
|
message: string;
|
|
6133
|
+
messageID: string;
|
|
6095
6134
|
slate: {
|
|
6096
6135
|
id: string;
|
|
6097
6136
|
content: any[];
|
|
6098
6137
|
};
|
|
6099
6138
|
voice?: string | undefined;
|
|
6100
|
-
messageID?: string | undefined;
|
|
6101
6139
|
audio?: {
|
|
6102
6140
|
src: string;
|
|
6103
6141
|
} | undefined;
|
|
6104
6142
|
ai?: boolean | undefined;
|
|
6105
6143
|
delay?: number | undefined;
|
|
6144
|
+
sourceUrls?: {
|
|
6145
|
+
url: string;
|
|
6146
|
+
name?: string | undefined;
|
|
6147
|
+
}[] | undefined;
|
|
6106
6148
|
};
|
|
6107
6149
|
time?: number | undefined;
|
|
6108
6150
|
paths?: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"socket-action-trace.dto.d.ts","sourceRoot":"","sources":["../../../src/socket/socket-action-trace.dto.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,eAAO,MAAM,oBAAoB
|
|
1
|
+
{"version":3,"file":"socket-action-trace.dto.d.ts","sourceRoot":"","sources":["../../../src/socket/socket-action-trace.dto.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAO/B,CAAC;AAEH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC"}
|
|
@@ -6790,49 +6790,71 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
6790
6790
|
}, {
|
|
6791
6791
|
src: string;
|
|
6792
6792
|
}>>;
|
|
6793
|
-
messageID: z.
|
|
6793
|
+
messageID: z.ZodString;
|
|
6794
|
+
sourceUrls: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6795
|
+
url: z.ZodString;
|
|
6796
|
+
name: z.ZodOptional<z.ZodString>;
|
|
6797
|
+
}, "strip", z.ZodTypeAny, {
|
|
6798
|
+
url: string;
|
|
6799
|
+
name?: string | undefined;
|
|
6800
|
+
}, {
|
|
6801
|
+
url: string;
|
|
6802
|
+
name?: string | undefined;
|
|
6803
|
+
}>, "many">>;
|
|
6794
6804
|
}, "strip", z.ZodTypeAny, {
|
|
6795
6805
|
message: string;
|
|
6806
|
+
messageID: string;
|
|
6796
6807
|
slate: {
|
|
6797
6808
|
id: string;
|
|
6798
6809
|
content: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[];
|
|
6799
6810
|
};
|
|
6800
6811
|
voice?: string | undefined;
|
|
6801
|
-
messageID?: string | undefined;
|
|
6802
6812
|
audio?: {
|
|
6803
6813
|
src: string;
|
|
6804
6814
|
} | undefined;
|
|
6805
6815
|
ai?: boolean | undefined;
|
|
6806
6816
|
delay?: number | undefined;
|
|
6817
|
+
sourceUrls?: {
|
|
6818
|
+
url: string;
|
|
6819
|
+
name?: string | undefined;
|
|
6820
|
+
}[] | undefined;
|
|
6807
6821
|
}, {
|
|
6808
6822
|
message: string;
|
|
6823
|
+
messageID: string;
|
|
6809
6824
|
slate: {
|
|
6810
6825
|
id: string;
|
|
6811
6826
|
content: any[];
|
|
6812
6827
|
};
|
|
6813
6828
|
voice?: string | undefined;
|
|
6814
|
-
messageID?: string | undefined;
|
|
6815
6829
|
audio?: {
|
|
6816
6830
|
src: string;
|
|
6817
6831
|
} | undefined;
|
|
6818
6832
|
ai?: boolean | undefined;
|
|
6819
6833
|
delay?: number | undefined;
|
|
6834
|
+
sourceUrls?: {
|
|
6835
|
+
url: string;
|
|
6836
|
+
name?: string | undefined;
|
|
6837
|
+
}[] | undefined;
|
|
6820
6838
|
}>;
|
|
6821
6839
|
}, "strip", z.ZodTypeAny, {
|
|
6822
6840
|
type: "text";
|
|
6823
6841
|
payload: {
|
|
6824
6842
|
message: string;
|
|
6843
|
+
messageID: string;
|
|
6825
6844
|
slate: {
|
|
6826
6845
|
id: string;
|
|
6827
6846
|
content: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[];
|
|
6828
6847
|
};
|
|
6829
6848
|
voice?: string | undefined;
|
|
6830
|
-
messageID?: string | undefined;
|
|
6831
6849
|
audio?: {
|
|
6832
6850
|
src: string;
|
|
6833
6851
|
} | undefined;
|
|
6834
6852
|
ai?: boolean | undefined;
|
|
6835
6853
|
delay?: number | undefined;
|
|
6854
|
+
sourceUrls?: {
|
|
6855
|
+
url: string;
|
|
6856
|
+
name?: string | undefined;
|
|
6857
|
+
}[] | undefined;
|
|
6836
6858
|
};
|
|
6837
6859
|
time?: number | undefined;
|
|
6838
6860
|
paths?: {
|
|
@@ -6849,17 +6871,21 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
6849
6871
|
type: "text";
|
|
6850
6872
|
payload: {
|
|
6851
6873
|
message: string;
|
|
6874
|
+
messageID: string;
|
|
6852
6875
|
slate: {
|
|
6853
6876
|
id: string;
|
|
6854
6877
|
content: any[];
|
|
6855
6878
|
};
|
|
6856
6879
|
voice?: string | undefined;
|
|
6857
|
-
messageID?: string | undefined;
|
|
6858
6880
|
audio?: {
|
|
6859
6881
|
src: string;
|
|
6860
6882
|
} | undefined;
|
|
6861
6883
|
ai?: boolean | undefined;
|
|
6862
6884
|
delay?: number | undefined;
|
|
6885
|
+
sourceUrls?: {
|
|
6886
|
+
url: string;
|
|
6887
|
+
name?: string | undefined;
|
|
6888
|
+
}[] | undefined;
|
|
6863
6889
|
};
|
|
6864
6890
|
time?: number | undefined;
|
|
6865
6891
|
paths?: {
|
|
@@ -8345,17 +8371,21 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
8345
8371
|
type: "text";
|
|
8346
8372
|
payload: {
|
|
8347
8373
|
message: string;
|
|
8374
|
+
messageID: string;
|
|
8348
8375
|
slate: {
|
|
8349
8376
|
id: string;
|
|
8350
8377
|
content: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[];
|
|
8351
8378
|
};
|
|
8352
8379
|
voice?: string | undefined;
|
|
8353
|
-
messageID?: string | undefined;
|
|
8354
8380
|
audio?: {
|
|
8355
8381
|
src: string;
|
|
8356
8382
|
} | undefined;
|
|
8357
8383
|
ai?: boolean | undefined;
|
|
8358
8384
|
delay?: number | undefined;
|
|
8385
|
+
sourceUrls?: {
|
|
8386
|
+
url: string;
|
|
8387
|
+
name?: string | undefined;
|
|
8388
|
+
}[] | undefined;
|
|
8359
8389
|
};
|
|
8360
8390
|
time?: number | undefined;
|
|
8361
8391
|
paths?: {
|
|
@@ -8979,17 +9009,21 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
8979
9009
|
type: "text";
|
|
8980
9010
|
payload: {
|
|
8981
9011
|
message: string;
|
|
9012
|
+
messageID: string;
|
|
8982
9013
|
slate: {
|
|
8983
9014
|
id: string;
|
|
8984
9015
|
content: any[];
|
|
8985
9016
|
};
|
|
8986
9017
|
voice?: string | undefined;
|
|
8987
|
-
messageID?: string | undefined;
|
|
8988
9018
|
audio?: {
|
|
8989
9019
|
src: string;
|
|
8990
9020
|
} | undefined;
|
|
8991
9021
|
ai?: boolean | undefined;
|
|
8992
9022
|
delay?: number | undefined;
|
|
9023
|
+
sourceUrls?: {
|
|
9024
|
+
url: string;
|
|
9025
|
+
name?: string | undefined;
|
|
9026
|
+
}[] | undefined;
|
|
8993
9027
|
};
|
|
8994
9028
|
time?: number | undefined;
|
|
8995
9029
|
paths?: {
|
|
@@ -9616,17 +9650,21 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
9616
9650
|
type: "text";
|
|
9617
9651
|
payload: {
|
|
9618
9652
|
message: string;
|
|
9653
|
+
messageID: string;
|
|
9619
9654
|
slate: {
|
|
9620
9655
|
id: string;
|
|
9621
9656
|
content: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[];
|
|
9622
9657
|
};
|
|
9623
9658
|
voice?: string | undefined;
|
|
9624
|
-
messageID?: string | undefined;
|
|
9625
9659
|
audio?: {
|
|
9626
9660
|
src: string;
|
|
9627
9661
|
} | undefined;
|
|
9628
9662
|
ai?: boolean | undefined;
|
|
9629
9663
|
delay?: number | undefined;
|
|
9664
|
+
sourceUrls?: {
|
|
9665
|
+
url: string;
|
|
9666
|
+
name?: string | undefined;
|
|
9667
|
+
}[] | undefined;
|
|
9630
9668
|
};
|
|
9631
9669
|
time?: number | undefined;
|
|
9632
9670
|
paths?: {
|
|
@@ -10253,17 +10291,21 @@ export declare const SocketServerMessageDTO: z.ZodDiscriminatedUnion<"type", [z.
|
|
|
10253
10291
|
type: "text";
|
|
10254
10292
|
payload: {
|
|
10255
10293
|
message: string;
|
|
10294
|
+
messageID: string;
|
|
10256
10295
|
slate: {
|
|
10257
10296
|
id: string;
|
|
10258
10297
|
content: any[];
|
|
10259
10298
|
};
|
|
10260
10299
|
voice?: string | undefined;
|
|
10261
|
-
messageID?: string | undefined;
|
|
10262
10300
|
audio?: {
|
|
10263
10301
|
src: string;
|
|
10264
10302
|
} | undefined;
|
|
10265
10303
|
ai?: boolean | undefined;
|
|
10266
10304
|
delay?: number | undefined;
|
|
10305
|
+
sourceUrls?: {
|
|
10306
|
+
url: string;
|
|
10307
|
+
name?: string | undefined;
|
|
10308
|
+
}[] | undefined;
|
|
10267
10309
|
};
|
|
10268
10310
|
time?: number | undefined;
|
|
10269
10311
|
paths?: {
|
|
@@ -20883,49 +20925,71 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
20883
20925
|
}, {
|
|
20884
20926
|
src: string;
|
|
20885
20927
|
}>>;
|
|
20886
|
-
messageID: z.
|
|
20928
|
+
messageID: z.ZodString;
|
|
20929
|
+
sourceUrls: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
20930
|
+
url: z.ZodString;
|
|
20931
|
+
name: z.ZodOptional<z.ZodString>;
|
|
20932
|
+
}, "strip", z.ZodTypeAny, {
|
|
20933
|
+
url: string;
|
|
20934
|
+
name?: string | undefined;
|
|
20935
|
+
}, {
|
|
20936
|
+
url: string;
|
|
20937
|
+
name?: string | undefined;
|
|
20938
|
+
}>, "many">>;
|
|
20887
20939
|
}, "strip", z.ZodTypeAny, {
|
|
20888
20940
|
message: string;
|
|
20941
|
+
messageID: string;
|
|
20889
20942
|
slate: {
|
|
20890
20943
|
id: string;
|
|
20891
20944
|
content: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[];
|
|
20892
20945
|
};
|
|
20893
20946
|
voice?: string | undefined;
|
|
20894
|
-
messageID?: string | undefined;
|
|
20895
20947
|
audio?: {
|
|
20896
20948
|
src: string;
|
|
20897
20949
|
} | undefined;
|
|
20898
20950
|
ai?: boolean | undefined;
|
|
20899
20951
|
delay?: number | undefined;
|
|
20952
|
+
sourceUrls?: {
|
|
20953
|
+
url: string;
|
|
20954
|
+
name?: string | undefined;
|
|
20955
|
+
}[] | undefined;
|
|
20900
20956
|
}, {
|
|
20901
20957
|
message: string;
|
|
20958
|
+
messageID: string;
|
|
20902
20959
|
slate: {
|
|
20903
20960
|
id: string;
|
|
20904
20961
|
content: any[];
|
|
20905
20962
|
};
|
|
20906
20963
|
voice?: string | undefined;
|
|
20907
|
-
messageID?: string | undefined;
|
|
20908
20964
|
audio?: {
|
|
20909
20965
|
src: string;
|
|
20910
20966
|
} | undefined;
|
|
20911
20967
|
ai?: boolean | undefined;
|
|
20912
20968
|
delay?: number | undefined;
|
|
20969
|
+
sourceUrls?: {
|
|
20970
|
+
url: string;
|
|
20971
|
+
name?: string | undefined;
|
|
20972
|
+
}[] | undefined;
|
|
20913
20973
|
}>;
|
|
20914
20974
|
}, "strip", z.ZodTypeAny, {
|
|
20915
20975
|
type: "text";
|
|
20916
20976
|
payload: {
|
|
20917
20977
|
message: string;
|
|
20978
|
+
messageID: string;
|
|
20918
20979
|
slate: {
|
|
20919
20980
|
id: string;
|
|
20920
20981
|
content: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[];
|
|
20921
20982
|
};
|
|
20922
20983
|
voice?: string | undefined;
|
|
20923
|
-
messageID?: string | undefined;
|
|
20924
20984
|
audio?: {
|
|
20925
20985
|
src: string;
|
|
20926
20986
|
} | undefined;
|
|
20927
20987
|
ai?: boolean | undefined;
|
|
20928
20988
|
delay?: number | undefined;
|
|
20989
|
+
sourceUrls?: {
|
|
20990
|
+
url: string;
|
|
20991
|
+
name?: string | undefined;
|
|
20992
|
+
}[] | undefined;
|
|
20929
20993
|
};
|
|
20930
20994
|
time?: number | undefined;
|
|
20931
20995
|
paths?: {
|
|
@@ -20942,17 +21006,21 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
20942
21006
|
type: "text";
|
|
20943
21007
|
payload: {
|
|
20944
21008
|
message: string;
|
|
21009
|
+
messageID: string;
|
|
20945
21010
|
slate: {
|
|
20946
21011
|
id: string;
|
|
20947
21012
|
content: any[];
|
|
20948
21013
|
};
|
|
20949
21014
|
voice?: string | undefined;
|
|
20950
|
-
messageID?: string | undefined;
|
|
20951
21015
|
audio?: {
|
|
20952
21016
|
src: string;
|
|
20953
21017
|
} | undefined;
|
|
20954
21018
|
ai?: boolean | undefined;
|
|
20955
21019
|
delay?: number | undefined;
|
|
21020
|
+
sourceUrls?: {
|
|
21021
|
+
url: string;
|
|
21022
|
+
name?: string | undefined;
|
|
21023
|
+
}[] | undefined;
|
|
20956
21024
|
};
|
|
20957
21025
|
time?: number | undefined;
|
|
20958
21026
|
paths?: {
|
|
@@ -22438,17 +22506,21 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
22438
22506
|
type: "text";
|
|
22439
22507
|
payload: {
|
|
22440
22508
|
message: string;
|
|
22509
|
+
messageID: string;
|
|
22441
22510
|
slate: {
|
|
22442
22511
|
id: string;
|
|
22443
22512
|
content: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[];
|
|
22444
22513
|
};
|
|
22445
22514
|
voice?: string | undefined;
|
|
22446
|
-
messageID?: string | undefined;
|
|
22447
22515
|
audio?: {
|
|
22448
22516
|
src: string;
|
|
22449
22517
|
} | undefined;
|
|
22450
22518
|
ai?: boolean | undefined;
|
|
22451
22519
|
delay?: number | undefined;
|
|
22520
|
+
sourceUrls?: {
|
|
22521
|
+
url: string;
|
|
22522
|
+
name?: string | undefined;
|
|
22523
|
+
}[] | undefined;
|
|
22452
22524
|
};
|
|
22453
22525
|
time?: number | undefined;
|
|
22454
22526
|
paths?: {
|
|
@@ -23072,17 +23144,21 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
23072
23144
|
type: "text";
|
|
23073
23145
|
payload: {
|
|
23074
23146
|
message: string;
|
|
23147
|
+
messageID: string;
|
|
23075
23148
|
slate: {
|
|
23076
23149
|
id: string;
|
|
23077
23150
|
content: any[];
|
|
23078
23151
|
};
|
|
23079
23152
|
voice?: string | undefined;
|
|
23080
|
-
messageID?: string | undefined;
|
|
23081
23153
|
audio?: {
|
|
23082
23154
|
src: string;
|
|
23083
23155
|
} | undefined;
|
|
23084
23156
|
ai?: boolean | undefined;
|
|
23085
23157
|
delay?: number | undefined;
|
|
23158
|
+
sourceUrls?: {
|
|
23159
|
+
url: string;
|
|
23160
|
+
name?: string | undefined;
|
|
23161
|
+
}[] | undefined;
|
|
23086
23162
|
};
|
|
23087
23163
|
time?: number | undefined;
|
|
23088
23164
|
paths?: {
|
|
@@ -23709,17 +23785,21 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
23709
23785
|
type: "text";
|
|
23710
23786
|
payload: {
|
|
23711
23787
|
message: string;
|
|
23788
|
+
messageID: string;
|
|
23712
23789
|
slate: {
|
|
23713
23790
|
id: string;
|
|
23714
23791
|
content: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[];
|
|
23715
23792
|
};
|
|
23716
23793
|
voice?: string | undefined;
|
|
23717
|
-
messageID?: string | undefined;
|
|
23718
23794
|
audio?: {
|
|
23719
23795
|
src: string;
|
|
23720
23796
|
} | undefined;
|
|
23721
23797
|
ai?: boolean | undefined;
|
|
23722
23798
|
delay?: number | undefined;
|
|
23799
|
+
sourceUrls?: {
|
|
23800
|
+
url: string;
|
|
23801
|
+
name?: string | undefined;
|
|
23802
|
+
}[] | undefined;
|
|
23723
23803
|
};
|
|
23724
23804
|
time?: number | undefined;
|
|
23725
23805
|
paths?: {
|
|
@@ -24346,17 +24426,21 @@ export declare const SocketMessageDTO: z.ZodUnion<[z.ZodDiscriminatedUnion<"type
|
|
|
24346
24426
|
type: "text";
|
|
24347
24427
|
payload: {
|
|
24348
24428
|
message: string;
|
|
24429
|
+
messageID: string;
|
|
24349
24430
|
slate: {
|
|
24350
24431
|
id: string;
|
|
24351
24432
|
content: any[];
|
|
24352
24433
|
};
|
|
24353
24434
|
voice?: string | undefined;
|
|
24354
|
-
messageID?: string | undefined;
|
|
24355
24435
|
audio?: {
|
|
24356
24436
|
src: string;
|
|
24357
24437
|
} | undefined;
|
|
24358
24438
|
ai?: boolean | undefined;
|
|
24359
24439
|
delay?: number | undefined;
|
|
24440
|
+
sourceUrls?: {
|
|
24441
|
+
url: string;
|
|
24442
|
+
name?: string | undefined;
|
|
24443
|
+
}[] | undefined;
|
|
24360
24444
|
};
|
|
24361
24445
|
time?: number | undefined;
|
|
24362
24446
|
paths?: {
|