@voiceflow/dtos-interact 1.16.0 → 1.17.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/text/text.dto.d.ts +54 -1
- package/build/cjs/text/text.dto.d.ts.map +1 -1
- package/build/cjs/text/text.dto.js +29 -2
- package/build/cjs/text/text.dto.js.map +1 -1
- package/build/cjs/trace/any.dto.d.ts +13 -13
- package/build/cjs/trace/card.dto.d.ts +7 -7
- package/build/cjs/trace/carousel.dto.d.ts +8 -8
- package/build/cjs/trace/text.dto.d.ts +4 -4
- package/build/cjs/widget-settings/widget-settings.dto.d.ts +14 -6
- package/build/cjs/widget-settings/widget-settings.dto.d.ts.map +1 -1
- package/build/cjs/widget-settings/widget-settings.dto.js +1 -0
- package/build/cjs/widget-settings/widget-settings.dto.js.map +1 -1
- package/build/esm/text/text.dto.d.ts +54 -1
- package/build/esm/text/text.dto.d.ts.map +1 -1
- package/build/esm/text/text.dto.js +26 -1
- package/build/esm/text/text.dto.js.map +1 -1
- package/build/esm/trace/any.dto.d.ts +13 -13
- package/build/esm/trace/card.dto.d.ts +7 -7
- package/build/esm/trace/carousel.dto.d.ts +8 -8
- package/build/esm/trace/text.dto.d.ts +4 -4
- package/build/esm/widget-settings/widget-settings.dto.d.ts +14 -6
- package/build/esm/widget-settings/widget-settings.dto.d.ts.map +1 -1
- package/build/esm/widget-settings/widget-settings.dto.js +1 -0
- package/build/esm/widget-settings/widget-settings.dto.js.map +1 -1
- package/package.json +2 -2
|
@@ -1,4 +1,57 @@
|
|
|
1
1
|
import z from 'zod';
|
|
2
|
-
export
|
|
2
|
+
export interface SlateTextColor {
|
|
3
|
+
r: number;
|
|
4
|
+
g: number;
|
|
5
|
+
b: number;
|
|
6
|
+
a: number;
|
|
7
|
+
}
|
|
8
|
+
export declare enum SlateTextProperty {
|
|
9
|
+
BACKGROUND_COLOR = "backgroundColor",
|
|
10
|
+
COLOR = "color",
|
|
11
|
+
ITALIC = "italic",
|
|
12
|
+
UNDERLINE = "underline",
|
|
13
|
+
FONT_WEIGHT = "fontWeight",
|
|
14
|
+
FONT_FAMILY = "fontFamily",
|
|
15
|
+
STRIKE_THROUGH = "strikeThrough"
|
|
16
|
+
}
|
|
17
|
+
export declare enum SlateTextElementType {
|
|
18
|
+
LINK = "link",
|
|
19
|
+
VARIABLE = "variable"
|
|
20
|
+
}
|
|
21
|
+
export declare enum SlateTextElementProperty {
|
|
22
|
+
TEXT_ALIGN = "textAlign"
|
|
23
|
+
}
|
|
24
|
+
export interface SlateText {
|
|
25
|
+
text: string;
|
|
26
|
+
[SlateTextProperty.BACKGROUND_COLOR]?: SlateTextColor;
|
|
27
|
+
[SlateTextProperty.COLOR]?: SlateTextColor;
|
|
28
|
+
[SlateTextProperty.ITALIC]?: boolean;
|
|
29
|
+
[SlateTextProperty.UNDERLINE]?: boolean;
|
|
30
|
+
[SlateTextProperty.FONT_WEIGHT]?: string;
|
|
31
|
+
[SlateTextProperty.FONT_FAMILY]?: string;
|
|
32
|
+
[SlateTextProperty.STRIKE_THROUGH]?: boolean;
|
|
33
|
+
}
|
|
34
|
+
export interface SlateTextElement {
|
|
35
|
+
type?: string;
|
|
36
|
+
children: Descendant[];
|
|
37
|
+
[SlateTextElementProperty.TEXT_ALIGN]?: string;
|
|
38
|
+
}
|
|
39
|
+
export interface SlateTextLinkElement extends SlateTextElement {
|
|
40
|
+
type: SlateTextElementType.LINK;
|
|
41
|
+
url?: string;
|
|
42
|
+
}
|
|
43
|
+
export interface SlateTextVariableElement extends SlateTextElement {
|
|
44
|
+
type: SlateTextElementType.VARIABLE;
|
|
45
|
+
id: string;
|
|
46
|
+
path?: string;
|
|
47
|
+
name: string;
|
|
48
|
+
isSlot?: boolean;
|
|
49
|
+
isSecret?: boolean;
|
|
50
|
+
}
|
|
51
|
+
export type AnySlateTextElement = SlateTextElement | SlateTextLinkElement | SlateTextVariableElement;
|
|
52
|
+
export type Descendant = AnySlateTextElement | SlateText;
|
|
53
|
+
export declare const isSlateTextVariableElement: (element: SlateTextElement) => element is SlateTextVariableElement;
|
|
54
|
+
export declare const isSlateTextLinkElement: (element: SlateTextElement) => element is SlateTextLinkElement;
|
|
55
|
+
export declare const SlateTextValueDTO: z.ZodArray<z.ZodEffects<z.ZodAny, SlateText | SlateTextElement | SlateTextLinkElement | SlateTextVariableElement, any>, "many">;
|
|
3
56
|
export type SlateTextValue = z.infer<typeof SlateTextValueDTO>;
|
|
4
57
|
//# sourceMappingURL=text.dto.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"text.dto.d.ts","sourceRoot":"","sources":["../../../src/text/text.dto.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"text.dto.d.ts","sourceRoot":"","sources":["../../../src/text/text.dto.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAEpB,MAAM,WAAW,cAAc;IAC7B,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;CACX;AAED,oBAAY,iBAAiB;IAC3B,gBAAgB,oBAAoB;IACpC,KAAK,UAAU;IACf,MAAM,WAAW;IACjB,SAAS,cAAc;IACvB,WAAW,eAAe;IAC1B,WAAW,eAAe;IAC1B,cAAc,kBAAkB;CACjC;AAED,oBAAY,oBAAoB;IAC9B,IAAI,SAAS;IACb,QAAQ,aAAa;CACtB;AAED,oBAAY,wBAAwB;IAClC,UAAU,cAAc;CACzB;AAED,MAAM,WAAW,SAAS;IACxB,IAAI,EAAE,MAAM,CAAC;IACb,CAAC,iBAAiB,CAAC,gBAAgB,CAAC,CAAC,EAAE,cAAc,CAAC;IACtD,CAAC,iBAAiB,CAAC,KAAK,CAAC,CAAC,EAAE,cAAc,CAAC;IAC3C,CAAC,iBAAiB,CAAC,MAAM,CAAC,CAAC,EAAE,OAAO,CAAC;IACrC,CAAC,iBAAiB,CAAC,SAAS,CAAC,CAAC,EAAE,OAAO,CAAC;IACxC,CAAC,iBAAiB,CAAC,WAAW,CAAC,CAAC,EAAE,MAAM,CAAC;IACzC,CAAC,iBAAiB,CAAC,WAAW,CAAC,CAAC,EAAE,MAAM,CAAC;IACzC,CAAC,iBAAiB,CAAC,cAAc,CAAC,CAAC,EAAE,OAAO,CAAC;CAC9C;AAED,MAAM,WAAW,gBAAgB;IAC/B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,UAAU,EAAE,CAAC;IACvB,CAAC,wBAAwB,CAAC,UAAU,CAAC,CAAC,EAAE,MAAM,CAAC;CAChD;AAED,MAAM,WAAW,oBAAqB,SAAQ,gBAAgB;IAC5D,IAAI,EAAE,oBAAoB,CAAC,IAAI,CAAC;IAChC,GAAG,CAAC,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,wBAAyB,SAAQ,gBAAgB;IAChE,IAAI,EAAE,oBAAoB,CAAC,QAAQ,CAAC;IACpC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,MAAM,MAAM,mBAAmB,GAAG,gBAAgB,GAAG,oBAAoB,GAAG,wBAAwB,CAAC;AAErG,MAAM,MAAM,UAAU,GAAG,mBAAmB,GAAG,SAAS,CAAC;AAEzD,eAAO,MAAM,0BAA0B,YAAa,gBAAgB,KAAG,OAAO,IAAI,wBAEjF,CAAC;AAEF,eAAO,MAAM,sBAAsB,YAAa,gBAAgB,KAAG,OAAO,IAAI,oBAE7E,CAAC;AAGF,eAAO,MAAM,iBAAiB,iIAA2D,CAAC;AAE1F,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC"}
|
|
@@ -3,8 +3,35 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.SlateTextValueDTO = void 0;
|
|
6
|
+
exports.SlateTextValueDTO = exports.isSlateTextLinkElement = exports.isSlateTextVariableElement = exports.SlateTextElementProperty = exports.SlateTextElementType = exports.SlateTextProperty = void 0;
|
|
7
7
|
const zod_1 = __importDefault(require("zod"));
|
|
8
|
+
var SlateTextProperty;
|
|
9
|
+
(function (SlateTextProperty) {
|
|
10
|
+
SlateTextProperty["BACKGROUND_COLOR"] = "backgroundColor";
|
|
11
|
+
SlateTextProperty["COLOR"] = "color";
|
|
12
|
+
SlateTextProperty["ITALIC"] = "italic";
|
|
13
|
+
SlateTextProperty["UNDERLINE"] = "underline";
|
|
14
|
+
SlateTextProperty["FONT_WEIGHT"] = "fontWeight";
|
|
15
|
+
SlateTextProperty["FONT_FAMILY"] = "fontFamily";
|
|
16
|
+
SlateTextProperty["STRIKE_THROUGH"] = "strikeThrough";
|
|
17
|
+
})(SlateTextProperty || (exports.SlateTextProperty = SlateTextProperty = {}));
|
|
18
|
+
var SlateTextElementType;
|
|
19
|
+
(function (SlateTextElementType) {
|
|
20
|
+
SlateTextElementType["LINK"] = "link";
|
|
21
|
+
SlateTextElementType["VARIABLE"] = "variable";
|
|
22
|
+
})(SlateTextElementType || (exports.SlateTextElementType = SlateTextElementType = {}));
|
|
23
|
+
var SlateTextElementProperty;
|
|
24
|
+
(function (SlateTextElementProperty) {
|
|
25
|
+
SlateTextElementProperty["TEXT_ALIGN"] = "textAlign";
|
|
26
|
+
})(SlateTextElementProperty || (exports.SlateTextElementProperty = SlateTextElementProperty = {}));
|
|
27
|
+
const isSlateTextVariableElement = (element) => {
|
|
28
|
+
return element.type === SlateTextElementType.VARIABLE;
|
|
29
|
+
};
|
|
30
|
+
exports.isSlateTextVariableElement = isSlateTextVariableElement;
|
|
31
|
+
const isSlateTextLinkElement = (element) => {
|
|
32
|
+
return element.type === SlateTextElementType.LINK;
|
|
33
|
+
};
|
|
34
|
+
exports.isSlateTextLinkElement = isSlateTextLinkElement;
|
|
8
35
|
// TODO: define and manage later
|
|
9
|
-
exports.SlateTextValueDTO = zod_1.default.array(zod_1.default.any());
|
|
36
|
+
exports.SlateTextValueDTO = zod_1.default.array(zod_1.default.any().transform((value) => value));
|
|
10
37
|
//# sourceMappingURL=text.dto.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"text.dto.js","sourceRoot":"","sources":["../../../src/text/text.dto.ts"],"names":[],"mappings":";;;;;;AAAA,8CAAoB;
|
|
1
|
+
{"version":3,"file":"text.dto.js","sourceRoot":"","sources":["../../../src/text/text.dto.ts"],"names":[],"mappings":";;;;;;AAAA,8CAAoB;AASpB,IAAY,iBAQX;AARD,WAAY,iBAAiB;IAC3B,yDAAoC,CAAA;IACpC,oCAAe,CAAA;IACf,sCAAiB,CAAA;IACjB,4CAAuB,CAAA;IACvB,+CAA0B,CAAA;IAC1B,+CAA0B,CAAA;IAC1B,qDAAgC,CAAA;AAClC,CAAC,EARW,iBAAiB,iCAAjB,iBAAiB,QAQ5B;AAED,IAAY,oBAGX;AAHD,WAAY,oBAAoB;IAC9B,qCAAa,CAAA;IACb,6CAAqB,CAAA;AACvB,CAAC,EAHW,oBAAoB,oCAApB,oBAAoB,QAG/B;AAED,IAAY,wBAEX;AAFD,WAAY,wBAAwB;IAClC,oDAAwB,CAAA;AAC1B,CAAC,EAFW,wBAAwB,wCAAxB,wBAAwB,QAEnC;AAqCM,MAAM,0BAA0B,GAAG,CAAC,OAAyB,EAAuC,EAAE;IAC3G,OAAO,OAAO,CAAC,IAAI,KAAK,oBAAoB,CAAC,QAAQ,CAAC;AACxD,CAAC,CAAC;AAFW,QAAA,0BAA0B,8BAErC;AAEK,MAAM,sBAAsB,GAAG,CAAC,OAAyB,EAAmC,EAAE;IACnG,OAAO,OAAO,CAAC,IAAI,KAAK,oBAAoB,CAAC,IAAI,CAAC;AACpD,CAAC,CAAC;AAFW,QAAA,sBAAsB,0BAEjC;AAEF,gCAAgC;AACnB,QAAA,iBAAiB,GAAG,aAAC,CAAC,KAAK,CAAC,aAAC,CAAC,GAAG,EAAE,CAAC,SAAS,CAAC,CAAC,KAAiB,EAAE,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC"}
|
|
@@ -454,10 +454,10 @@ export declare const AnyTraceDTO: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
454
454
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
455
455
|
description: z.ZodObject<{
|
|
456
456
|
text: z.ZodString;
|
|
457
|
-
slate: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
457
|
+
slate: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodAny, import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement, any>, "many">>;
|
|
458
458
|
}, "strip", z.ZodTypeAny, {
|
|
459
459
|
text: string;
|
|
460
|
-
slate?:
|
|
460
|
+
slate?: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[] | undefined;
|
|
461
461
|
}, {
|
|
462
462
|
text: string;
|
|
463
463
|
slate?: any[] | undefined;
|
|
@@ -475,7 +475,7 @@ export declare const AnyTraceDTO: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
475
475
|
imageUrl: string | null;
|
|
476
476
|
description: {
|
|
477
477
|
text: string;
|
|
478
|
-
slate?:
|
|
478
|
+
slate?: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[] | undefined;
|
|
479
479
|
};
|
|
480
480
|
}, {
|
|
481
481
|
title: string;
|
|
@@ -508,7 +508,7 @@ export declare const AnyTraceDTO: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
508
508
|
imageUrl: string | null;
|
|
509
509
|
description: {
|
|
510
510
|
text: string;
|
|
511
|
-
slate?:
|
|
511
|
+
slate?: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[] | undefined;
|
|
512
512
|
};
|
|
513
513
|
};
|
|
514
514
|
paths?: {
|
|
@@ -619,10 +619,10 @@ export declare const AnyTraceDTO: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
619
619
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
620
620
|
description: z.ZodObject<{
|
|
621
621
|
text: z.ZodString;
|
|
622
|
-
slate: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
622
|
+
slate: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodAny, import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement, any>, "many">>;
|
|
623
623
|
}, "strip", z.ZodTypeAny, {
|
|
624
624
|
text: string;
|
|
625
|
-
slate?:
|
|
625
|
+
slate?: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[] | undefined;
|
|
626
626
|
}, {
|
|
627
627
|
text: string;
|
|
628
628
|
slate?: any[] | undefined;
|
|
@@ -641,7 +641,7 @@ export declare const AnyTraceDTO: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
641
641
|
imageUrl: string | null;
|
|
642
642
|
description: {
|
|
643
643
|
text: string;
|
|
644
|
-
slate?:
|
|
644
|
+
slate?: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[] | undefined;
|
|
645
645
|
};
|
|
646
646
|
id?: string | undefined;
|
|
647
647
|
}, {
|
|
@@ -679,7 +679,7 @@ export declare const AnyTraceDTO: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
679
679
|
imageUrl: string | null;
|
|
680
680
|
description: {
|
|
681
681
|
text: string;
|
|
682
|
-
slate?:
|
|
682
|
+
slate?: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[] | undefined;
|
|
683
683
|
};
|
|
684
684
|
id?: string | undefined;
|
|
685
685
|
}[];
|
|
@@ -720,7 +720,7 @@ export declare const AnyTraceDTO: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
720
720
|
imageUrl: string | null;
|
|
721
721
|
description: {
|
|
722
722
|
text: string;
|
|
723
|
-
slate?:
|
|
723
|
+
slate?: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[] | undefined;
|
|
724
724
|
};
|
|
725
725
|
id?: string | undefined;
|
|
726
726
|
}[];
|
|
@@ -1981,9 +1981,9 @@ export declare const AnyTraceDTO: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
1981
1981
|
ai: z.ZodOptional<z.ZodBoolean>;
|
|
1982
1982
|
slate: z.ZodObject<{
|
|
1983
1983
|
id: z.ZodString;
|
|
1984
|
-
content: z.ZodArray<z.ZodAny, "many">;
|
|
1984
|
+
content: z.ZodArray<z.ZodEffects<z.ZodAny, import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement, any>, "many">;
|
|
1985
1985
|
}, "strip", z.ZodTypeAny, {
|
|
1986
|
-
content:
|
|
1986
|
+
content: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[];
|
|
1987
1987
|
id: string;
|
|
1988
1988
|
}, {
|
|
1989
1989
|
content: any[];
|
|
@@ -2001,7 +2001,7 @@ export declare const AnyTraceDTO: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
2001
2001
|
}, "strip", z.ZodTypeAny, {
|
|
2002
2002
|
message: string;
|
|
2003
2003
|
slate: {
|
|
2004
|
-
content:
|
|
2004
|
+
content: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[];
|
|
2005
2005
|
id: string;
|
|
2006
2006
|
};
|
|
2007
2007
|
ai?: boolean | undefined;
|
|
@@ -2028,7 +2028,7 @@ export declare const AnyTraceDTO: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
2028
2028
|
payload: {
|
|
2029
2029
|
message: string;
|
|
2030
2030
|
slate: {
|
|
2031
|
-
content:
|
|
2031
|
+
content: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[];
|
|
2032
2032
|
id: string;
|
|
2033
2033
|
};
|
|
2034
2034
|
ai?: boolean | undefined;
|
|
@@ -34,10 +34,10 @@ export declare const CardTraceCardDTO: z.ZodObject<{
|
|
|
34
34
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
35
35
|
description: z.ZodObject<{
|
|
36
36
|
text: z.ZodString;
|
|
37
|
-
slate: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
37
|
+
slate: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodAny, import("../text/text.dto").SlateText | import("../text/text.dto").SlateTextElement | import("../text/text.dto").SlateTextLinkElement | import("../text/text.dto").SlateTextVariableElement, any>, "many">>;
|
|
38
38
|
}, "strip", z.ZodTypeAny, {
|
|
39
39
|
text: string;
|
|
40
|
-
slate?:
|
|
40
|
+
slate?: (import("../text/text.dto").SlateText | import("../text/text.dto").SlateTextElement | import("../text/text.dto").SlateTextLinkElement | import("../text/text.dto").SlateTextVariableElement)[] | undefined;
|
|
41
41
|
}, {
|
|
42
42
|
text: string;
|
|
43
43
|
slate?: any[] | undefined;
|
|
@@ -55,7 +55,7 @@ export declare const CardTraceCardDTO: z.ZodObject<{
|
|
|
55
55
|
imageUrl: string | null;
|
|
56
56
|
description: {
|
|
57
57
|
text: string;
|
|
58
|
-
slate?:
|
|
58
|
+
slate?: (import("../text/text.dto").SlateText | import("../text/text.dto").SlateTextElement | import("../text/text.dto").SlateTextLinkElement | import("../text/text.dto").SlateTextVariableElement)[] | undefined;
|
|
59
59
|
};
|
|
60
60
|
}, {
|
|
61
61
|
title: string;
|
|
@@ -143,10 +143,10 @@ export declare const CardTraceDTO: z.ZodObject<{
|
|
|
143
143
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
144
144
|
description: z.ZodObject<{
|
|
145
145
|
text: z.ZodString;
|
|
146
|
-
slate: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
146
|
+
slate: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodAny, import("../text/text.dto").SlateText | import("../text/text.dto").SlateTextElement | import("../text/text.dto").SlateTextLinkElement | import("../text/text.dto").SlateTextVariableElement, any>, "many">>;
|
|
147
147
|
}, "strip", z.ZodTypeAny, {
|
|
148
148
|
text: string;
|
|
149
|
-
slate?:
|
|
149
|
+
slate?: (import("../text/text.dto").SlateText | import("../text/text.dto").SlateTextElement | import("../text/text.dto").SlateTextLinkElement | import("../text/text.dto").SlateTextVariableElement)[] | undefined;
|
|
150
150
|
}, {
|
|
151
151
|
text: string;
|
|
152
152
|
slate?: any[] | undefined;
|
|
@@ -164,7 +164,7 @@ export declare const CardTraceDTO: z.ZodObject<{
|
|
|
164
164
|
imageUrl: string | null;
|
|
165
165
|
description: {
|
|
166
166
|
text: string;
|
|
167
|
-
slate?:
|
|
167
|
+
slate?: (import("../text/text.dto").SlateText | import("../text/text.dto").SlateTextElement | import("../text/text.dto").SlateTextLinkElement | import("../text/text.dto").SlateTextVariableElement)[] | undefined;
|
|
168
168
|
};
|
|
169
169
|
}, {
|
|
170
170
|
title: string;
|
|
@@ -197,7 +197,7 @@ export declare const CardTraceDTO: z.ZodObject<{
|
|
|
197
197
|
imageUrl: string | null;
|
|
198
198
|
description: {
|
|
199
199
|
text: string;
|
|
200
|
-
slate?:
|
|
200
|
+
slate?: (import("../text/text.dto").SlateText | import("../text/text.dto").SlateTextElement | import("../text/text.dto").SlateTextLinkElement | import("../text/text.dto").SlateTextVariableElement)[] | undefined;
|
|
201
201
|
};
|
|
202
202
|
};
|
|
203
203
|
paths?: {
|
|
@@ -34,10 +34,10 @@ export declare const TraceCarouselCardDTO: z.ZodObject<{
|
|
|
34
34
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
35
35
|
description: z.ZodObject<{
|
|
36
36
|
text: z.ZodString;
|
|
37
|
-
slate: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
37
|
+
slate: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodAny, import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement, any>, "many">>;
|
|
38
38
|
}, "strip", z.ZodTypeAny, {
|
|
39
39
|
text: string;
|
|
40
|
-
slate?:
|
|
40
|
+
slate?: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[] | undefined;
|
|
41
41
|
}, {
|
|
42
42
|
text: string;
|
|
43
43
|
slate?: any[] | undefined;
|
|
@@ -56,7 +56,7 @@ export declare const TraceCarouselCardDTO: z.ZodObject<{
|
|
|
56
56
|
imageUrl: string | null;
|
|
57
57
|
description: {
|
|
58
58
|
text: string;
|
|
59
|
-
slate?:
|
|
59
|
+
slate?: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[] | undefined;
|
|
60
60
|
};
|
|
61
61
|
id?: string | undefined;
|
|
62
62
|
}, {
|
|
@@ -147,10 +147,10 @@ export declare const CarouselTraceDTO: z.ZodObject<{
|
|
|
147
147
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
148
148
|
description: z.ZodObject<{
|
|
149
149
|
text: z.ZodString;
|
|
150
|
-
slate: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
150
|
+
slate: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodAny, import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement, any>, "many">>;
|
|
151
151
|
}, "strip", z.ZodTypeAny, {
|
|
152
152
|
text: string;
|
|
153
|
-
slate?:
|
|
153
|
+
slate?: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[] | undefined;
|
|
154
154
|
}, {
|
|
155
155
|
text: string;
|
|
156
156
|
slate?: any[] | undefined;
|
|
@@ -169,7 +169,7 @@ export declare const CarouselTraceDTO: z.ZodObject<{
|
|
|
169
169
|
imageUrl: string | null;
|
|
170
170
|
description: {
|
|
171
171
|
text: string;
|
|
172
|
-
slate?:
|
|
172
|
+
slate?: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[] | undefined;
|
|
173
173
|
};
|
|
174
174
|
id?: string | undefined;
|
|
175
175
|
}, {
|
|
@@ -207,7 +207,7 @@ export declare const CarouselTraceDTO: z.ZodObject<{
|
|
|
207
207
|
imageUrl: string | null;
|
|
208
208
|
description: {
|
|
209
209
|
text: string;
|
|
210
|
-
slate?:
|
|
210
|
+
slate?: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[] | undefined;
|
|
211
211
|
};
|
|
212
212
|
id?: string | undefined;
|
|
213
213
|
}[];
|
|
@@ -248,7 +248,7 @@ export declare const CarouselTraceDTO: z.ZodObject<{
|
|
|
248
248
|
imageUrl: string | null;
|
|
249
249
|
description: {
|
|
250
250
|
text: string;
|
|
251
|
-
slate?:
|
|
251
|
+
slate?: (import("../main").SlateText | import("../main").SlateTextElement | import("../main").SlateTextLinkElement | import("../main").SlateTextVariableElement)[] | undefined;
|
|
252
252
|
};
|
|
253
253
|
id?: string | undefined;
|
|
254
254
|
}[];
|
|
@@ -38,9 +38,9 @@ export declare const TextTraceDTO: z.ZodObject<{
|
|
|
38
38
|
ai: z.ZodOptional<z.ZodBoolean>;
|
|
39
39
|
slate: z.ZodObject<{
|
|
40
40
|
id: z.ZodString;
|
|
41
|
-
content: z.ZodArray<z.ZodAny, "many">;
|
|
41
|
+
content: z.ZodArray<z.ZodEffects<z.ZodAny, import("../text/text.dto").SlateText | import("../text/text.dto").SlateTextElement | import("../text/text.dto").SlateTextLinkElement | import("../text/text.dto").SlateTextVariableElement, any>, "many">;
|
|
42
42
|
}, "strip", z.ZodTypeAny, {
|
|
43
|
-
content:
|
|
43
|
+
content: (import("../text/text.dto").SlateText | import("../text/text.dto").SlateTextElement | import("../text/text.dto").SlateTextLinkElement | import("../text/text.dto").SlateTextVariableElement)[];
|
|
44
44
|
id: string;
|
|
45
45
|
}, {
|
|
46
46
|
content: any[];
|
|
@@ -58,7 +58,7 @@ export declare const TextTraceDTO: z.ZodObject<{
|
|
|
58
58
|
}, "strip", z.ZodTypeAny, {
|
|
59
59
|
message: string;
|
|
60
60
|
slate: {
|
|
61
|
-
content:
|
|
61
|
+
content: (import("../text/text.dto").SlateText | import("../text/text.dto").SlateTextElement | import("../text/text.dto").SlateTextLinkElement | import("../text/text.dto").SlateTextVariableElement)[];
|
|
62
62
|
id: string;
|
|
63
63
|
};
|
|
64
64
|
ai?: boolean | undefined;
|
|
@@ -85,7 +85,7 @@ export declare const TextTraceDTO: z.ZodObject<{
|
|
|
85
85
|
payload: {
|
|
86
86
|
message: string;
|
|
87
87
|
slate: {
|
|
88
|
-
content:
|
|
88
|
+
content: (import("../text/text.dto").SlateText | import("../text/text.dto").SlateTextElement | import("../text/text.dto").SlateTextLinkElement | import("../text/text.dto").SlateTextVariableElement)[];
|
|
89
89
|
id: string;
|
|
90
90
|
};
|
|
91
91
|
ai?: boolean | undefined;
|
|
@@ -251,6 +251,7 @@ export declare const WidgetSettingsChatSettingsDTO: z.ZodObject<{
|
|
|
251
251
|
enabled: boolean;
|
|
252
252
|
}>;
|
|
253
253
|
handoffToAgentImageURL: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
254
|
+
streamingDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
254
255
|
}, "strip", z.ZodTypeAny, {
|
|
255
256
|
voiceInput: boolean;
|
|
256
257
|
voiceOutput: boolean;
|
|
@@ -283,6 +284,7 @@ export declare const WidgetSettingsChatSettingsDTO: z.ZodObject<{
|
|
|
283
284
|
secondaryButtonURL: string;
|
|
284
285
|
} | undefined;
|
|
285
286
|
handoffToAgentImageURL?: string | null | undefined;
|
|
287
|
+
streamingDisabled?: boolean | undefined;
|
|
286
288
|
}, {
|
|
287
289
|
voiceInput: boolean;
|
|
288
290
|
voiceOutput: boolean;
|
|
@@ -315,6 +317,7 @@ export declare const WidgetSettingsChatSettingsDTO: z.ZodObject<{
|
|
|
315
317
|
secondaryButtonURL: string;
|
|
316
318
|
} | undefined;
|
|
317
319
|
handoffToAgentImageURL?: string | null | undefined;
|
|
320
|
+
streamingDisabled?: boolean | undefined;
|
|
318
321
|
}>;
|
|
319
322
|
export type WidgetSettingsChatSettings = z.infer<typeof WidgetSettingsChatSettingsDTO>;
|
|
320
323
|
export declare const WidgetSettingsVoiceSettingsContentDTO: z.ZodObject<{
|
|
@@ -532,10 +535,10 @@ export declare const WidgetSettingsCommonSettingsDTO: z.ZodObject<{
|
|
|
532
535
|
SESSION_STORAGE: string;
|
|
533
536
|
}>;
|
|
534
537
|
}, "strip", z.ZodTypeAny, {
|
|
538
|
+
fontFamily: string;
|
|
535
539
|
sideSpacing: string;
|
|
536
540
|
bottomSpacing: string;
|
|
537
541
|
position: "right" | "left";
|
|
538
|
-
fontFamily: string;
|
|
539
542
|
primaryColor: {
|
|
540
543
|
color: string;
|
|
541
544
|
palette: {
|
|
@@ -564,10 +567,10 @@ export declare const WidgetSettingsCommonSettingsDTO: z.ZodObject<{
|
|
|
564
567
|
};
|
|
565
568
|
persistence: string;
|
|
566
569
|
}, {
|
|
570
|
+
fontFamily: string;
|
|
567
571
|
sideSpacing: string;
|
|
568
572
|
bottomSpacing: string;
|
|
569
573
|
position: "right" | "left";
|
|
570
|
-
fontFamily: string;
|
|
571
574
|
primaryColor: {
|
|
572
575
|
color: string;
|
|
573
576
|
palette: {
|
|
@@ -717,6 +720,7 @@ export declare const WidgetSettingsDTO: z.ZodObject<{
|
|
|
717
720
|
enabled: boolean;
|
|
718
721
|
}>;
|
|
719
722
|
handoffToAgentImageURL: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
723
|
+
streamingDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
720
724
|
}, "strip", z.ZodTypeAny, {
|
|
721
725
|
voiceInput: boolean;
|
|
722
726
|
voiceOutput: boolean;
|
|
@@ -749,6 +753,7 @@ export declare const WidgetSettingsDTO: z.ZodObject<{
|
|
|
749
753
|
secondaryButtonURL: string;
|
|
750
754
|
} | undefined;
|
|
751
755
|
handoffToAgentImageURL?: string | null | undefined;
|
|
756
|
+
streamingDisabled?: boolean | undefined;
|
|
752
757
|
}, {
|
|
753
758
|
voiceInput: boolean;
|
|
754
759
|
voiceOutput: boolean;
|
|
@@ -781,6 +786,7 @@ export declare const WidgetSettingsDTO: z.ZodObject<{
|
|
|
781
786
|
secondaryButtonURL: string;
|
|
782
787
|
} | undefined;
|
|
783
788
|
handoffToAgentImageURL?: string | null | undefined;
|
|
789
|
+
streamingDisabled?: boolean | undefined;
|
|
784
790
|
}>;
|
|
785
791
|
voice: z.ZodObject<{
|
|
786
792
|
renderMode: z.ZodNativeEnum<{
|
|
@@ -941,10 +947,10 @@ export declare const WidgetSettingsDTO: z.ZodObject<{
|
|
|
941
947
|
SESSION_STORAGE: string;
|
|
942
948
|
}>;
|
|
943
949
|
}, "strip", z.ZodTypeAny, {
|
|
950
|
+
fontFamily: string;
|
|
944
951
|
sideSpacing: string;
|
|
945
952
|
bottomSpacing: string;
|
|
946
953
|
position: "right" | "left";
|
|
947
|
-
fontFamily: string;
|
|
948
954
|
primaryColor: {
|
|
949
955
|
color: string;
|
|
950
956
|
palette: {
|
|
@@ -973,10 +979,10 @@ export declare const WidgetSettingsDTO: z.ZodObject<{
|
|
|
973
979
|
};
|
|
974
980
|
persistence: string;
|
|
975
981
|
}, {
|
|
982
|
+
fontFamily: string;
|
|
976
983
|
sideSpacing: string;
|
|
977
984
|
bottomSpacing: string;
|
|
978
985
|
position: "right" | "left";
|
|
979
|
-
fontFamily: string;
|
|
980
986
|
primaryColor: {
|
|
981
987
|
color: string;
|
|
982
988
|
palette: {
|
|
@@ -1075,12 +1081,13 @@ export declare const WidgetSettingsDTO: z.ZodObject<{
|
|
|
1075
1081
|
secondaryButtonURL: string;
|
|
1076
1082
|
} | undefined;
|
|
1077
1083
|
handoffToAgentImageURL?: string | null | undefined;
|
|
1084
|
+
streamingDisabled?: boolean | undefined;
|
|
1078
1085
|
};
|
|
1079
1086
|
common: {
|
|
1087
|
+
fontFamily: string;
|
|
1080
1088
|
sideSpacing: string;
|
|
1081
1089
|
bottomSpacing: string;
|
|
1082
1090
|
position: "right" | "left";
|
|
1083
|
-
fontFamily: string;
|
|
1084
1091
|
primaryColor: {
|
|
1085
1092
|
color: string;
|
|
1086
1093
|
palette: {
|
|
@@ -1161,12 +1168,13 @@ export declare const WidgetSettingsDTO: z.ZodObject<{
|
|
|
1161
1168
|
secondaryButtonURL: string;
|
|
1162
1169
|
} | undefined;
|
|
1163
1170
|
handoffToAgentImageURL?: string | null | undefined;
|
|
1171
|
+
streamingDisabled?: boolean | undefined;
|
|
1164
1172
|
};
|
|
1165
1173
|
common: {
|
|
1174
|
+
fontFamily: string;
|
|
1166
1175
|
sideSpacing: string;
|
|
1167
1176
|
bottomSpacing: string;
|
|
1168
1177
|
position: "right" | "left";
|
|
1169
|
-
fontFamily: string;
|
|
1170
1178
|
primaryColor: {
|
|
1171
1179
|
color: string;
|
|
1172
1180
|
palette: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"widget-settings.dto.d.ts","sourceRoot":"","sources":["../../../src/widget-settings/widget-settings.dto.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAWxB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAWxC,CAAC;AAEH,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,6BAA6B,CAAC,CAAC;AAEvF,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGxC,CAAC;AAEH,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,6BAA6B,CAAC,CAAC;AAEvF,eAAO,MAAM,wCAAwC;;;;;;;;;EAGnD,CAAC;AAEH,MAAM,MAAM,qCAAqC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wCAAwC,CAAC,CAAC;AAE7G,eAAO,MAAM,uCAAuC;;;;;;;;;EAGlD,CAAC;AAEH,MAAM,MAAM,oCAAoC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uCAAuC,CAAC,CAAC;AAE3G,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;EAK9C,CAAC;AAEH,MAAM,MAAM,gCAAgC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mCAAmC,CAAC,CAAC;AAEnG,eAAO,MAAM,yCAAyC;;;;;;;;;EAGpD,CAAC;AAEH,MAAM,MAAM,sCAAsC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yCAAyC,CAAC,CAAC;AAE/G,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;EAO1C,CAAC;AAEH,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,+BAA+B,CAAC,CAAC;AAE3F,eAAO,MAAM,6BAA6B
|
|
1
|
+
{"version":3,"file":"widget-settings.dto.d.ts","sourceRoot":"","sources":["../../../src/widget-settings/widget-settings.dto.ts"],"names":[],"mappings":"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"}
|
|
@@ -56,6 +56,7 @@ exports.WidgetSettingsChatSettingsDTO = zod_1.z.object({
|
|
|
56
56
|
disclaimer: exports.WidgetSettingsChatDisclaimerDTO.optional(),
|
|
57
57
|
aiDisclaimer: exports.WidgetSettingsChatSettingsAIDisclaimerDTO,
|
|
58
58
|
handoffToAgentImageURL: zod_1.z.string().nullable().optional(),
|
|
59
|
+
streamingDisabled: zod_1.z.boolean().optional(),
|
|
59
60
|
});
|
|
60
61
|
exports.WidgetSettingsVoiceSettingsContentDTO = zod_1.z.object({
|
|
61
62
|
imageURL: zod_1.z.string().nullable().optional(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"widget-settings.dto.js","sourceRoot":"","sources":["../../../src/widget-settings/widget-settings.dto.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAExB,iEAOgC;AAEnB,QAAA,6BAA6B,GAAG,OAAC,CAAC,MAAM,CAAC;IACpD,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE;IACd,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE;IACf,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE;IACf,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE;IACf,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE;IACf,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE;IACf,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE;IACf,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE;IACf,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE;IACf,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE;CAChB,CAAC,CAAC;AAIU,QAAA,6BAA6B,GAAG,OAAC,CAAC,MAAM,CAAC;IACpD,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;IACjB,OAAO,EAAE,qCAA6B;CACvC,CAAC,CAAC;AAIU,QAAA,wCAAwC,GAAG,OAAC,CAAC,MAAM,CAAC;IAC/D,OAAO,EAAE,OAAC,CAAC,OAAO,EAAE;IACpB,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;CACtC,CAAC,CAAC;AAIU,QAAA,uCAAuC,GAAG,OAAC,CAAC,MAAM,CAAC;IAC9D,OAAO,EAAE,OAAC,CAAC,OAAO,EAAE;IACpB,GAAG,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;CACtC,CAAC,CAAC;AAIU,QAAA,mCAAmC,GAAG,OAAC,CAAC,MAAM,CAAC;IAC1D,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;IACjB,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,OAAO,EAAE,OAAC,CAAC,OAAO,EAAE;IACpB,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;CAC3C,CAAC,CAAC;AAIU,QAAA,yCAAyC,GAAG,OAAC,CAAC,MAAM,CAAC;IAChE,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE;IAChB,OAAO,EAAE,OAAC,CAAC,OAAO,EAAE;CACrB,CAAC,CAAC;AAIU,QAAA,+BAA+B,GAAG,OAAC,CAAC,MAAM,CAAC;IACtD,OAAO,EAAE,OAAC,CAAC,OAAO,EAAE;IACpB,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE;IACjB,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE;IACvB,iBAAiB,EAAE,OAAC,CAAC,MAAM,EAAE;IAC7B,mBAAmB,EAAE,OAAC,CAAC,MAAM,EAAE;IAC/B,kBAAkB,EAAE,OAAC,CAAC,MAAM,EAAE;CAC/B,CAAC,CAAC;AAIU,QAAA,6BAA6B,GAAG,OAAC,CAAC,MAAM,CAAC;IACpD,UAAU,EAAE,OAAC,CAAC,OAAO,EAAE;IACvB,WAAW,EAAE,OAAC,CAAC,OAAO,EAAE;IACxB,UAAU,EAAE,OAAC,CAAC,UAAU,CAAC,mDAA4B,CAAC;IACtD,WAAW,EAAE,gDAAwC;IACrD,UAAU,EAAE,+CAAuC;IACnD,MAAM,EAAE,2CAAmC;IAC3C,eAAe,EAAE,OAAC,CAAC,MAAM,EAAE;IAC3B,UAAU,EAAE,uCAA+B,CAAC,QAAQ,EAAE;IACtD,YAAY,EAAE,iDAAyC;IACvD,sBAAsB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;
|
|
1
|
+
{"version":3,"file":"widget-settings.dto.js","sourceRoot":"","sources":["../../../src/widget-settings/widget-settings.dto.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,4 +1,57 @@
|
|
|
1
1
|
import z from 'zod';
|
|
2
|
-
export
|
|
2
|
+
export interface SlateTextColor {
|
|
3
|
+
r: number;
|
|
4
|
+
g: number;
|
|
5
|
+
b: number;
|
|
6
|
+
a: number;
|
|
7
|
+
}
|
|
8
|
+
export declare enum SlateTextProperty {
|
|
9
|
+
BACKGROUND_COLOR = "backgroundColor",
|
|
10
|
+
COLOR = "color",
|
|
11
|
+
ITALIC = "italic",
|
|
12
|
+
UNDERLINE = "underline",
|
|
13
|
+
FONT_WEIGHT = "fontWeight",
|
|
14
|
+
FONT_FAMILY = "fontFamily",
|
|
15
|
+
STRIKE_THROUGH = "strikeThrough"
|
|
16
|
+
}
|
|
17
|
+
export declare enum SlateTextElementType {
|
|
18
|
+
LINK = "link",
|
|
19
|
+
VARIABLE = "variable"
|
|
20
|
+
}
|
|
21
|
+
export declare enum SlateTextElementProperty {
|
|
22
|
+
TEXT_ALIGN = "textAlign"
|
|
23
|
+
}
|
|
24
|
+
export interface SlateText {
|
|
25
|
+
text: string;
|
|
26
|
+
[SlateTextProperty.BACKGROUND_COLOR]?: SlateTextColor;
|
|
27
|
+
[SlateTextProperty.COLOR]?: SlateTextColor;
|
|
28
|
+
[SlateTextProperty.ITALIC]?: boolean;
|
|
29
|
+
[SlateTextProperty.UNDERLINE]?: boolean;
|
|
30
|
+
[SlateTextProperty.FONT_WEIGHT]?: string;
|
|
31
|
+
[SlateTextProperty.FONT_FAMILY]?: string;
|
|
32
|
+
[SlateTextProperty.STRIKE_THROUGH]?: boolean;
|
|
33
|
+
}
|
|
34
|
+
export interface SlateTextElement {
|
|
35
|
+
type?: string;
|
|
36
|
+
children: Descendant[];
|
|
37
|
+
[SlateTextElementProperty.TEXT_ALIGN]?: string;
|
|
38
|
+
}
|
|
39
|
+
export interface SlateTextLinkElement extends SlateTextElement {
|
|
40
|
+
type: SlateTextElementType.LINK;
|
|
41
|
+
url?: string;
|
|
42
|
+
}
|
|
43
|
+
export interface SlateTextVariableElement extends SlateTextElement {
|
|
44
|
+
type: SlateTextElementType.VARIABLE;
|
|
45
|
+
id: string;
|
|
46
|
+
path?: string;
|
|
47
|
+
name: string;
|
|
48
|
+
isSlot?: boolean;
|
|
49
|
+
isSecret?: boolean;
|
|
50
|
+
}
|
|
51
|
+
export type AnySlateTextElement = SlateTextElement | SlateTextLinkElement | SlateTextVariableElement;
|
|
52
|
+
export type Descendant = AnySlateTextElement | SlateText;
|
|
53
|
+
export declare const isSlateTextVariableElement: (element: SlateTextElement) => element is SlateTextVariableElement;
|
|
54
|
+
export declare const isSlateTextLinkElement: (element: SlateTextElement) => element is SlateTextLinkElement;
|
|
55
|
+
export declare const SlateTextValueDTO: z.ZodArray<z.ZodEffects<z.ZodAny, SlateText | SlateTextElement | SlateTextLinkElement | SlateTextVariableElement, any>, "many">;
|
|
3
56
|
export type SlateTextValue = z.infer<typeof SlateTextValueDTO>;
|
|
4
57
|
//# sourceMappingURL=text.dto.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"text.dto.d.ts","sourceRoot":"","sources":["../../../src/text/text.dto.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"text.dto.d.ts","sourceRoot":"","sources":["../../../src/text/text.dto.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAEpB,MAAM,WAAW,cAAc;IAC7B,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;CACX;AAED,oBAAY,iBAAiB;IAC3B,gBAAgB,oBAAoB;IACpC,KAAK,UAAU;IACf,MAAM,WAAW;IACjB,SAAS,cAAc;IACvB,WAAW,eAAe;IAC1B,WAAW,eAAe;IAC1B,cAAc,kBAAkB;CACjC;AAED,oBAAY,oBAAoB;IAC9B,IAAI,SAAS;IACb,QAAQ,aAAa;CACtB;AAED,oBAAY,wBAAwB;IAClC,UAAU,cAAc;CACzB;AAED,MAAM,WAAW,SAAS;IACxB,IAAI,EAAE,MAAM,CAAC;IACb,CAAC,iBAAiB,CAAC,gBAAgB,CAAC,CAAC,EAAE,cAAc,CAAC;IACtD,CAAC,iBAAiB,CAAC,KAAK,CAAC,CAAC,EAAE,cAAc,CAAC;IAC3C,CAAC,iBAAiB,CAAC,MAAM,CAAC,CAAC,EAAE,OAAO,CAAC;IACrC,CAAC,iBAAiB,CAAC,SAAS,CAAC,CAAC,EAAE,OAAO,CAAC;IACxC,CAAC,iBAAiB,CAAC,WAAW,CAAC,CAAC,EAAE,MAAM,CAAC;IACzC,CAAC,iBAAiB,CAAC,WAAW,CAAC,CAAC,EAAE,MAAM,CAAC;IACzC,CAAC,iBAAiB,CAAC,cAAc,CAAC,CAAC,EAAE,OAAO,CAAC;CAC9C;AAED,MAAM,WAAW,gBAAgB;IAC/B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,UAAU,EAAE,CAAC;IACvB,CAAC,wBAAwB,CAAC,UAAU,CAAC,CAAC,EAAE,MAAM,CAAC;CAChD;AAED,MAAM,WAAW,oBAAqB,SAAQ,gBAAgB;IAC5D,IAAI,EAAE,oBAAoB,CAAC,IAAI,CAAC;IAChC,GAAG,CAAC,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,wBAAyB,SAAQ,gBAAgB;IAChE,IAAI,EAAE,oBAAoB,CAAC,QAAQ,CAAC;IACpC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,MAAM,MAAM,mBAAmB,GAAG,gBAAgB,GAAG,oBAAoB,GAAG,wBAAwB,CAAC;AAErG,MAAM,MAAM,UAAU,GAAG,mBAAmB,GAAG,SAAS,CAAC;AAEzD,eAAO,MAAM,0BAA0B,YAAa,gBAAgB,KAAG,OAAO,IAAI,wBAEjF,CAAC;AAEF,eAAO,MAAM,sBAAsB,YAAa,gBAAgB,KAAG,OAAO,IAAI,oBAE7E,CAAC;AAGF,eAAO,MAAM,iBAAiB,iIAA2D,CAAC;AAE1F,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC"}
|
|
@@ -1,4 +1,29 @@
|
|
|
1
1
|
import z from 'zod';
|
|
2
|
+
export var SlateTextProperty;
|
|
3
|
+
(function (SlateTextProperty) {
|
|
4
|
+
SlateTextProperty["BACKGROUND_COLOR"] = "backgroundColor";
|
|
5
|
+
SlateTextProperty["COLOR"] = "color";
|
|
6
|
+
SlateTextProperty["ITALIC"] = "italic";
|
|
7
|
+
SlateTextProperty["UNDERLINE"] = "underline";
|
|
8
|
+
SlateTextProperty["FONT_WEIGHT"] = "fontWeight";
|
|
9
|
+
SlateTextProperty["FONT_FAMILY"] = "fontFamily";
|
|
10
|
+
SlateTextProperty["STRIKE_THROUGH"] = "strikeThrough";
|
|
11
|
+
})(SlateTextProperty || (SlateTextProperty = {}));
|
|
12
|
+
export var SlateTextElementType;
|
|
13
|
+
(function (SlateTextElementType) {
|
|
14
|
+
SlateTextElementType["LINK"] = "link";
|
|
15
|
+
SlateTextElementType["VARIABLE"] = "variable";
|
|
16
|
+
})(SlateTextElementType || (SlateTextElementType = {}));
|
|
17
|
+
export var SlateTextElementProperty;
|
|
18
|
+
(function (SlateTextElementProperty) {
|
|
19
|
+
SlateTextElementProperty["TEXT_ALIGN"] = "textAlign";
|
|
20
|
+
})(SlateTextElementProperty || (SlateTextElementProperty = {}));
|
|
21
|
+
export const isSlateTextVariableElement = (element) => {
|
|
22
|
+
return element.type === SlateTextElementType.VARIABLE;
|
|
23
|
+
};
|
|
24
|
+
export const isSlateTextLinkElement = (element) => {
|
|
25
|
+
return element.type === SlateTextElementType.LINK;
|
|
26
|
+
};
|
|
2
27
|
// TODO: define and manage later
|
|
3
|
-
export const SlateTextValueDTO = z.array(z.any());
|
|
28
|
+
export const SlateTextValueDTO = z.array(z.any().transform((value) => value));
|
|
4
29
|
//# sourceMappingURL=text.dto.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"text.dto.js","sourceRoot":"","sources":["../../../src/text/text.dto.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"text.dto.js","sourceRoot":"","sources":["../../../src/text/text.dto.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AASpB,MAAM,CAAN,IAAY,iBAQX;AARD,WAAY,iBAAiB;IAC3B,yDAAoC,CAAA;IACpC,oCAAe,CAAA;IACf,sCAAiB,CAAA;IACjB,4CAAuB,CAAA;IACvB,+CAA0B,CAAA;IAC1B,+CAA0B,CAAA;IAC1B,qDAAgC,CAAA;AAClC,CAAC,EARW,iBAAiB,KAAjB,iBAAiB,QAQ5B;AAED,MAAM,CAAN,IAAY,oBAGX;AAHD,WAAY,oBAAoB;IAC9B,qCAAa,CAAA;IACb,6CAAqB,CAAA;AACvB,CAAC,EAHW,oBAAoB,KAApB,oBAAoB,QAG/B;AAED,MAAM,CAAN,IAAY,wBAEX;AAFD,WAAY,wBAAwB;IAClC,oDAAwB,CAAA;AAC1B,CAAC,EAFW,wBAAwB,KAAxB,wBAAwB,QAEnC;AAqCD,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC,OAAyB,EAAuC,EAAE;IAC3G,OAAO,OAAO,CAAC,IAAI,KAAK,oBAAoB,CAAC,QAAQ,CAAC;AACxD,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,OAAyB,EAAmC,EAAE;IACnG,OAAO,OAAO,CAAC,IAAI,KAAK,oBAAoB,CAAC,IAAI,CAAC;AACpD,CAAC,CAAC;AAEF,gCAAgC;AAChC,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,GAAG,EAAE,CAAC,SAAS,CAAC,CAAC,KAAiB,EAAE,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC"}
|
|
@@ -454,10 +454,10 @@ export declare const AnyTraceDTO: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
454
454
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
455
455
|
description: z.ZodObject<{
|
|
456
456
|
text: z.ZodString;
|
|
457
|
-
slate: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
457
|
+
slate: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodAny, import("../main.js").SlateText | import("../main.js").SlateTextElement | import("../main.js").SlateTextLinkElement | import("../main.js").SlateTextVariableElement, any>, "many">>;
|
|
458
458
|
}, "strip", z.ZodTypeAny, {
|
|
459
459
|
text: string;
|
|
460
|
-
slate?:
|
|
460
|
+
slate?: (import("../main.js").SlateText | import("../main.js").SlateTextElement | import("../main.js").SlateTextLinkElement | import("../main.js").SlateTextVariableElement)[] | undefined;
|
|
461
461
|
}, {
|
|
462
462
|
text: string;
|
|
463
463
|
slate?: any[] | undefined;
|
|
@@ -475,7 +475,7 @@ export declare const AnyTraceDTO: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
475
475
|
imageUrl: string | null;
|
|
476
476
|
description: {
|
|
477
477
|
text: string;
|
|
478
|
-
slate?:
|
|
478
|
+
slate?: (import("../main.js").SlateText | import("../main.js").SlateTextElement | import("../main.js").SlateTextLinkElement | import("../main.js").SlateTextVariableElement)[] | undefined;
|
|
479
479
|
};
|
|
480
480
|
}, {
|
|
481
481
|
title: string;
|
|
@@ -508,7 +508,7 @@ export declare const AnyTraceDTO: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
508
508
|
imageUrl: string | null;
|
|
509
509
|
description: {
|
|
510
510
|
text: string;
|
|
511
|
-
slate?:
|
|
511
|
+
slate?: (import("../main.js").SlateText | import("../main.js").SlateTextElement | import("../main.js").SlateTextLinkElement | import("../main.js").SlateTextVariableElement)[] | undefined;
|
|
512
512
|
};
|
|
513
513
|
};
|
|
514
514
|
paths?: {
|
|
@@ -619,10 +619,10 @@ export declare const AnyTraceDTO: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
619
619
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
620
620
|
description: z.ZodObject<{
|
|
621
621
|
text: z.ZodString;
|
|
622
|
-
slate: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
622
|
+
slate: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodAny, import("../main.js").SlateText | import("../main.js").SlateTextElement | import("../main.js").SlateTextLinkElement | import("../main.js").SlateTextVariableElement, any>, "many">>;
|
|
623
623
|
}, "strip", z.ZodTypeAny, {
|
|
624
624
|
text: string;
|
|
625
|
-
slate?:
|
|
625
|
+
slate?: (import("../main.js").SlateText | import("../main.js").SlateTextElement | import("../main.js").SlateTextLinkElement | import("../main.js").SlateTextVariableElement)[] | undefined;
|
|
626
626
|
}, {
|
|
627
627
|
text: string;
|
|
628
628
|
slate?: any[] | undefined;
|
|
@@ -641,7 +641,7 @@ export declare const AnyTraceDTO: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
641
641
|
imageUrl: string | null;
|
|
642
642
|
description: {
|
|
643
643
|
text: string;
|
|
644
|
-
slate?:
|
|
644
|
+
slate?: (import("../main.js").SlateText | import("../main.js").SlateTextElement | import("../main.js").SlateTextLinkElement | import("../main.js").SlateTextVariableElement)[] | undefined;
|
|
645
645
|
};
|
|
646
646
|
id?: string | undefined;
|
|
647
647
|
}, {
|
|
@@ -679,7 +679,7 @@ export declare const AnyTraceDTO: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
679
679
|
imageUrl: string | null;
|
|
680
680
|
description: {
|
|
681
681
|
text: string;
|
|
682
|
-
slate?:
|
|
682
|
+
slate?: (import("../main.js").SlateText | import("../main.js").SlateTextElement | import("../main.js").SlateTextLinkElement | import("../main.js").SlateTextVariableElement)[] | undefined;
|
|
683
683
|
};
|
|
684
684
|
id?: string | undefined;
|
|
685
685
|
}[];
|
|
@@ -720,7 +720,7 @@ export declare const AnyTraceDTO: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
720
720
|
imageUrl: string | null;
|
|
721
721
|
description: {
|
|
722
722
|
text: string;
|
|
723
|
-
slate?:
|
|
723
|
+
slate?: (import("../main.js").SlateText | import("../main.js").SlateTextElement | import("../main.js").SlateTextLinkElement | import("../main.js").SlateTextVariableElement)[] | undefined;
|
|
724
724
|
};
|
|
725
725
|
id?: string | undefined;
|
|
726
726
|
}[];
|
|
@@ -1981,9 +1981,9 @@ export declare const AnyTraceDTO: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
1981
1981
|
ai: z.ZodOptional<z.ZodBoolean>;
|
|
1982
1982
|
slate: z.ZodObject<{
|
|
1983
1983
|
id: z.ZodString;
|
|
1984
|
-
content: z.ZodArray<z.ZodAny, "many">;
|
|
1984
|
+
content: z.ZodArray<z.ZodEffects<z.ZodAny, import("../main.js").SlateText | import("../main.js").SlateTextElement | import("../main.js").SlateTextLinkElement | import("../main.js").SlateTextVariableElement, any>, "many">;
|
|
1985
1985
|
}, "strip", z.ZodTypeAny, {
|
|
1986
|
-
content:
|
|
1986
|
+
content: (import("../main.js").SlateText | import("../main.js").SlateTextElement | import("../main.js").SlateTextLinkElement | import("../main.js").SlateTextVariableElement)[];
|
|
1987
1987
|
id: string;
|
|
1988
1988
|
}, {
|
|
1989
1989
|
content: any[];
|
|
@@ -2001,7 +2001,7 @@ export declare const AnyTraceDTO: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
2001
2001
|
}, "strip", z.ZodTypeAny, {
|
|
2002
2002
|
message: string;
|
|
2003
2003
|
slate: {
|
|
2004
|
-
content:
|
|
2004
|
+
content: (import("../main.js").SlateText | import("../main.js").SlateTextElement | import("../main.js").SlateTextLinkElement | import("../main.js").SlateTextVariableElement)[];
|
|
2005
2005
|
id: string;
|
|
2006
2006
|
};
|
|
2007
2007
|
ai?: boolean | undefined;
|
|
@@ -2028,7 +2028,7 @@ export declare const AnyTraceDTO: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
2028
2028
|
payload: {
|
|
2029
2029
|
message: string;
|
|
2030
2030
|
slate: {
|
|
2031
|
-
content:
|
|
2031
|
+
content: (import("../main.js").SlateText | import("../main.js").SlateTextElement | import("../main.js").SlateTextLinkElement | import("../main.js").SlateTextVariableElement)[];
|
|
2032
2032
|
id: string;
|
|
2033
2033
|
};
|
|
2034
2034
|
ai?: boolean | undefined;
|
|
@@ -34,10 +34,10 @@ export declare const CardTraceCardDTO: z.ZodObject<{
|
|
|
34
34
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
35
35
|
description: z.ZodObject<{
|
|
36
36
|
text: z.ZodString;
|
|
37
|
-
slate: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
37
|
+
slate: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodAny, import("../text/text.dto.js").SlateText | import("../text/text.dto.js").SlateTextElement | import("../text/text.dto.js").SlateTextLinkElement | import("../text/text.dto.js").SlateTextVariableElement, any>, "many">>;
|
|
38
38
|
}, "strip", z.ZodTypeAny, {
|
|
39
39
|
text: string;
|
|
40
|
-
slate?:
|
|
40
|
+
slate?: (import("../text/text.dto.js").SlateText | import("../text/text.dto.js").SlateTextElement | import("../text/text.dto.js").SlateTextLinkElement | import("../text/text.dto.js").SlateTextVariableElement)[] | undefined;
|
|
41
41
|
}, {
|
|
42
42
|
text: string;
|
|
43
43
|
slate?: any[] | undefined;
|
|
@@ -55,7 +55,7 @@ export declare const CardTraceCardDTO: z.ZodObject<{
|
|
|
55
55
|
imageUrl: string | null;
|
|
56
56
|
description: {
|
|
57
57
|
text: string;
|
|
58
|
-
slate?:
|
|
58
|
+
slate?: (import("../text/text.dto.js").SlateText | import("../text/text.dto.js").SlateTextElement | import("../text/text.dto.js").SlateTextLinkElement | import("../text/text.dto.js").SlateTextVariableElement)[] | undefined;
|
|
59
59
|
};
|
|
60
60
|
}, {
|
|
61
61
|
title: string;
|
|
@@ -143,10 +143,10 @@ export declare const CardTraceDTO: z.ZodObject<{
|
|
|
143
143
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
144
144
|
description: z.ZodObject<{
|
|
145
145
|
text: z.ZodString;
|
|
146
|
-
slate: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
146
|
+
slate: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodAny, import("../text/text.dto.js").SlateText | import("../text/text.dto.js").SlateTextElement | import("../text/text.dto.js").SlateTextLinkElement | import("../text/text.dto.js").SlateTextVariableElement, any>, "many">>;
|
|
147
147
|
}, "strip", z.ZodTypeAny, {
|
|
148
148
|
text: string;
|
|
149
|
-
slate?:
|
|
149
|
+
slate?: (import("../text/text.dto.js").SlateText | import("../text/text.dto.js").SlateTextElement | import("../text/text.dto.js").SlateTextLinkElement | import("../text/text.dto.js").SlateTextVariableElement)[] | undefined;
|
|
150
150
|
}, {
|
|
151
151
|
text: string;
|
|
152
152
|
slate?: any[] | undefined;
|
|
@@ -164,7 +164,7 @@ export declare const CardTraceDTO: z.ZodObject<{
|
|
|
164
164
|
imageUrl: string | null;
|
|
165
165
|
description: {
|
|
166
166
|
text: string;
|
|
167
|
-
slate?:
|
|
167
|
+
slate?: (import("../text/text.dto.js").SlateText | import("../text/text.dto.js").SlateTextElement | import("../text/text.dto.js").SlateTextLinkElement | import("../text/text.dto.js").SlateTextVariableElement)[] | undefined;
|
|
168
168
|
};
|
|
169
169
|
}, {
|
|
170
170
|
title: string;
|
|
@@ -197,7 +197,7 @@ export declare const CardTraceDTO: z.ZodObject<{
|
|
|
197
197
|
imageUrl: string | null;
|
|
198
198
|
description: {
|
|
199
199
|
text: string;
|
|
200
|
-
slate?:
|
|
200
|
+
slate?: (import("../text/text.dto.js").SlateText | import("../text/text.dto.js").SlateTextElement | import("../text/text.dto.js").SlateTextLinkElement | import("../text/text.dto.js").SlateTextVariableElement)[] | undefined;
|
|
201
201
|
};
|
|
202
202
|
};
|
|
203
203
|
paths?: {
|
|
@@ -34,10 +34,10 @@ export declare const TraceCarouselCardDTO: z.ZodObject<{
|
|
|
34
34
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
35
35
|
description: z.ZodObject<{
|
|
36
36
|
text: z.ZodString;
|
|
37
|
-
slate: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
37
|
+
slate: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodAny, import("../main.js").SlateText | import("../main.js").SlateTextElement | import("../main.js").SlateTextLinkElement | import("../main.js").SlateTextVariableElement, any>, "many">>;
|
|
38
38
|
}, "strip", z.ZodTypeAny, {
|
|
39
39
|
text: string;
|
|
40
|
-
slate?:
|
|
40
|
+
slate?: (import("../main.js").SlateText | import("../main.js").SlateTextElement | import("../main.js").SlateTextLinkElement | import("../main.js").SlateTextVariableElement)[] | undefined;
|
|
41
41
|
}, {
|
|
42
42
|
text: string;
|
|
43
43
|
slate?: any[] | undefined;
|
|
@@ -56,7 +56,7 @@ export declare const TraceCarouselCardDTO: z.ZodObject<{
|
|
|
56
56
|
imageUrl: string | null;
|
|
57
57
|
description: {
|
|
58
58
|
text: string;
|
|
59
|
-
slate?:
|
|
59
|
+
slate?: (import("../main.js").SlateText | import("../main.js").SlateTextElement | import("../main.js").SlateTextLinkElement | import("../main.js").SlateTextVariableElement)[] | undefined;
|
|
60
60
|
};
|
|
61
61
|
id?: string | undefined;
|
|
62
62
|
}, {
|
|
@@ -147,10 +147,10 @@ export declare const CarouselTraceDTO: z.ZodObject<{
|
|
|
147
147
|
imageUrl: z.ZodNullable<z.ZodString>;
|
|
148
148
|
description: z.ZodObject<{
|
|
149
149
|
text: z.ZodString;
|
|
150
|
-
slate: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
150
|
+
slate: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodAny, import("../main.js").SlateText | import("../main.js").SlateTextElement | import("../main.js").SlateTextLinkElement | import("../main.js").SlateTextVariableElement, any>, "many">>;
|
|
151
151
|
}, "strip", z.ZodTypeAny, {
|
|
152
152
|
text: string;
|
|
153
|
-
slate?:
|
|
153
|
+
slate?: (import("../main.js").SlateText | import("../main.js").SlateTextElement | import("../main.js").SlateTextLinkElement | import("../main.js").SlateTextVariableElement)[] | undefined;
|
|
154
154
|
}, {
|
|
155
155
|
text: string;
|
|
156
156
|
slate?: any[] | undefined;
|
|
@@ -169,7 +169,7 @@ export declare const CarouselTraceDTO: z.ZodObject<{
|
|
|
169
169
|
imageUrl: string | null;
|
|
170
170
|
description: {
|
|
171
171
|
text: string;
|
|
172
|
-
slate?:
|
|
172
|
+
slate?: (import("../main.js").SlateText | import("../main.js").SlateTextElement | import("../main.js").SlateTextLinkElement | import("../main.js").SlateTextVariableElement)[] | undefined;
|
|
173
173
|
};
|
|
174
174
|
id?: string | undefined;
|
|
175
175
|
}, {
|
|
@@ -207,7 +207,7 @@ export declare const CarouselTraceDTO: z.ZodObject<{
|
|
|
207
207
|
imageUrl: string | null;
|
|
208
208
|
description: {
|
|
209
209
|
text: string;
|
|
210
|
-
slate?:
|
|
210
|
+
slate?: (import("../main.js").SlateText | import("../main.js").SlateTextElement | import("../main.js").SlateTextLinkElement | import("../main.js").SlateTextVariableElement)[] | undefined;
|
|
211
211
|
};
|
|
212
212
|
id?: string | undefined;
|
|
213
213
|
}[];
|
|
@@ -248,7 +248,7 @@ export declare const CarouselTraceDTO: z.ZodObject<{
|
|
|
248
248
|
imageUrl: string | null;
|
|
249
249
|
description: {
|
|
250
250
|
text: string;
|
|
251
|
-
slate?:
|
|
251
|
+
slate?: (import("../main.js").SlateText | import("../main.js").SlateTextElement | import("../main.js").SlateTextLinkElement | import("../main.js").SlateTextVariableElement)[] | undefined;
|
|
252
252
|
};
|
|
253
253
|
id?: string | undefined;
|
|
254
254
|
}[];
|
|
@@ -38,9 +38,9 @@ export declare const TextTraceDTO: z.ZodObject<{
|
|
|
38
38
|
ai: z.ZodOptional<z.ZodBoolean>;
|
|
39
39
|
slate: z.ZodObject<{
|
|
40
40
|
id: z.ZodString;
|
|
41
|
-
content: z.ZodArray<z.ZodAny, "many">;
|
|
41
|
+
content: z.ZodArray<z.ZodEffects<z.ZodAny, import("../text/text.dto.js").SlateText | import("../text/text.dto.js").SlateTextElement | import("../text/text.dto.js").SlateTextLinkElement | import("../text/text.dto.js").SlateTextVariableElement, any>, "many">;
|
|
42
42
|
}, "strip", z.ZodTypeAny, {
|
|
43
|
-
content:
|
|
43
|
+
content: (import("../text/text.dto.js").SlateText | import("../text/text.dto.js").SlateTextElement | import("../text/text.dto.js").SlateTextLinkElement | import("../text/text.dto.js").SlateTextVariableElement)[];
|
|
44
44
|
id: string;
|
|
45
45
|
}, {
|
|
46
46
|
content: any[];
|
|
@@ -58,7 +58,7 @@ export declare const TextTraceDTO: z.ZodObject<{
|
|
|
58
58
|
}, "strip", z.ZodTypeAny, {
|
|
59
59
|
message: string;
|
|
60
60
|
slate: {
|
|
61
|
-
content:
|
|
61
|
+
content: (import("../text/text.dto.js").SlateText | import("../text/text.dto.js").SlateTextElement | import("../text/text.dto.js").SlateTextLinkElement | import("../text/text.dto.js").SlateTextVariableElement)[];
|
|
62
62
|
id: string;
|
|
63
63
|
};
|
|
64
64
|
ai?: boolean | undefined;
|
|
@@ -85,7 +85,7 @@ export declare const TextTraceDTO: z.ZodObject<{
|
|
|
85
85
|
payload: {
|
|
86
86
|
message: string;
|
|
87
87
|
slate: {
|
|
88
|
-
content:
|
|
88
|
+
content: (import("../text/text.dto.js").SlateText | import("../text/text.dto.js").SlateTextElement | import("../text/text.dto.js").SlateTextLinkElement | import("../text/text.dto.js").SlateTextVariableElement)[];
|
|
89
89
|
id: string;
|
|
90
90
|
};
|
|
91
91
|
ai?: boolean | undefined;
|
|
@@ -251,6 +251,7 @@ export declare const WidgetSettingsChatSettingsDTO: z.ZodObject<{
|
|
|
251
251
|
enabled: boolean;
|
|
252
252
|
}>;
|
|
253
253
|
handoffToAgentImageURL: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
254
|
+
streamingDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
254
255
|
}, "strip", z.ZodTypeAny, {
|
|
255
256
|
voiceInput: boolean;
|
|
256
257
|
voiceOutput: boolean;
|
|
@@ -283,6 +284,7 @@ export declare const WidgetSettingsChatSettingsDTO: z.ZodObject<{
|
|
|
283
284
|
secondaryButtonURL: string;
|
|
284
285
|
} | undefined;
|
|
285
286
|
handoffToAgentImageURL?: string | null | undefined;
|
|
287
|
+
streamingDisabled?: boolean | undefined;
|
|
286
288
|
}, {
|
|
287
289
|
voiceInput: boolean;
|
|
288
290
|
voiceOutput: boolean;
|
|
@@ -315,6 +317,7 @@ export declare const WidgetSettingsChatSettingsDTO: z.ZodObject<{
|
|
|
315
317
|
secondaryButtonURL: string;
|
|
316
318
|
} | undefined;
|
|
317
319
|
handoffToAgentImageURL?: string | null | undefined;
|
|
320
|
+
streamingDisabled?: boolean | undefined;
|
|
318
321
|
}>;
|
|
319
322
|
export type WidgetSettingsChatSettings = z.infer<typeof WidgetSettingsChatSettingsDTO>;
|
|
320
323
|
export declare const WidgetSettingsVoiceSettingsContentDTO: z.ZodObject<{
|
|
@@ -532,10 +535,10 @@ export declare const WidgetSettingsCommonSettingsDTO: z.ZodObject<{
|
|
|
532
535
|
SESSION_STORAGE: string;
|
|
533
536
|
}>;
|
|
534
537
|
}, "strip", z.ZodTypeAny, {
|
|
538
|
+
fontFamily: string;
|
|
535
539
|
sideSpacing: string;
|
|
536
540
|
bottomSpacing: string;
|
|
537
541
|
position: "right" | "left";
|
|
538
|
-
fontFamily: string;
|
|
539
542
|
primaryColor: {
|
|
540
543
|
color: string;
|
|
541
544
|
palette: {
|
|
@@ -564,10 +567,10 @@ export declare const WidgetSettingsCommonSettingsDTO: z.ZodObject<{
|
|
|
564
567
|
};
|
|
565
568
|
persistence: string;
|
|
566
569
|
}, {
|
|
570
|
+
fontFamily: string;
|
|
567
571
|
sideSpacing: string;
|
|
568
572
|
bottomSpacing: string;
|
|
569
573
|
position: "right" | "left";
|
|
570
|
-
fontFamily: string;
|
|
571
574
|
primaryColor: {
|
|
572
575
|
color: string;
|
|
573
576
|
palette: {
|
|
@@ -717,6 +720,7 @@ export declare const WidgetSettingsDTO: z.ZodObject<{
|
|
|
717
720
|
enabled: boolean;
|
|
718
721
|
}>;
|
|
719
722
|
handoffToAgentImageURL: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
723
|
+
streamingDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
720
724
|
}, "strip", z.ZodTypeAny, {
|
|
721
725
|
voiceInput: boolean;
|
|
722
726
|
voiceOutput: boolean;
|
|
@@ -749,6 +753,7 @@ export declare const WidgetSettingsDTO: z.ZodObject<{
|
|
|
749
753
|
secondaryButtonURL: string;
|
|
750
754
|
} | undefined;
|
|
751
755
|
handoffToAgentImageURL?: string | null | undefined;
|
|
756
|
+
streamingDisabled?: boolean | undefined;
|
|
752
757
|
}, {
|
|
753
758
|
voiceInput: boolean;
|
|
754
759
|
voiceOutput: boolean;
|
|
@@ -781,6 +786,7 @@ export declare const WidgetSettingsDTO: z.ZodObject<{
|
|
|
781
786
|
secondaryButtonURL: string;
|
|
782
787
|
} | undefined;
|
|
783
788
|
handoffToAgentImageURL?: string | null | undefined;
|
|
789
|
+
streamingDisabled?: boolean | undefined;
|
|
784
790
|
}>;
|
|
785
791
|
voice: z.ZodObject<{
|
|
786
792
|
renderMode: z.ZodNativeEnum<{
|
|
@@ -941,10 +947,10 @@ export declare const WidgetSettingsDTO: z.ZodObject<{
|
|
|
941
947
|
SESSION_STORAGE: string;
|
|
942
948
|
}>;
|
|
943
949
|
}, "strip", z.ZodTypeAny, {
|
|
950
|
+
fontFamily: string;
|
|
944
951
|
sideSpacing: string;
|
|
945
952
|
bottomSpacing: string;
|
|
946
953
|
position: "right" | "left";
|
|
947
|
-
fontFamily: string;
|
|
948
954
|
primaryColor: {
|
|
949
955
|
color: string;
|
|
950
956
|
palette: {
|
|
@@ -973,10 +979,10 @@ export declare const WidgetSettingsDTO: z.ZodObject<{
|
|
|
973
979
|
};
|
|
974
980
|
persistence: string;
|
|
975
981
|
}, {
|
|
982
|
+
fontFamily: string;
|
|
976
983
|
sideSpacing: string;
|
|
977
984
|
bottomSpacing: string;
|
|
978
985
|
position: "right" | "left";
|
|
979
|
-
fontFamily: string;
|
|
980
986
|
primaryColor: {
|
|
981
987
|
color: string;
|
|
982
988
|
palette: {
|
|
@@ -1075,12 +1081,13 @@ export declare const WidgetSettingsDTO: z.ZodObject<{
|
|
|
1075
1081
|
secondaryButtonURL: string;
|
|
1076
1082
|
} | undefined;
|
|
1077
1083
|
handoffToAgentImageURL?: string | null | undefined;
|
|
1084
|
+
streamingDisabled?: boolean | undefined;
|
|
1078
1085
|
};
|
|
1079
1086
|
common: {
|
|
1087
|
+
fontFamily: string;
|
|
1080
1088
|
sideSpacing: string;
|
|
1081
1089
|
bottomSpacing: string;
|
|
1082
1090
|
position: "right" | "left";
|
|
1083
|
-
fontFamily: string;
|
|
1084
1091
|
primaryColor: {
|
|
1085
1092
|
color: string;
|
|
1086
1093
|
palette: {
|
|
@@ -1161,12 +1168,13 @@ export declare const WidgetSettingsDTO: z.ZodObject<{
|
|
|
1161
1168
|
secondaryButtonURL: string;
|
|
1162
1169
|
} | undefined;
|
|
1163
1170
|
handoffToAgentImageURL?: string | null | undefined;
|
|
1171
|
+
streamingDisabled?: boolean | undefined;
|
|
1164
1172
|
};
|
|
1165
1173
|
common: {
|
|
1174
|
+
fontFamily: string;
|
|
1166
1175
|
sideSpacing: string;
|
|
1167
1176
|
bottomSpacing: string;
|
|
1168
1177
|
position: "right" | "left";
|
|
1169
|
-
fontFamily: string;
|
|
1170
1178
|
primaryColor: {
|
|
1171
1179
|
color: string;
|
|
1172
1180
|
palette: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"widget-settings.dto.d.ts","sourceRoot":"","sources":["../../../src/widget-settings/widget-settings.dto.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAWxB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAWxC,CAAC;AAEH,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,6BAA6B,CAAC,CAAC;AAEvF,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGxC,CAAC;AAEH,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,6BAA6B,CAAC,CAAC;AAEvF,eAAO,MAAM,wCAAwC;;;;;;;;;EAGnD,CAAC;AAEH,MAAM,MAAM,qCAAqC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wCAAwC,CAAC,CAAC;AAE7G,eAAO,MAAM,uCAAuC;;;;;;;;;EAGlD,CAAC;AAEH,MAAM,MAAM,oCAAoC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uCAAuC,CAAC,CAAC;AAE3G,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;EAK9C,CAAC;AAEH,MAAM,MAAM,gCAAgC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mCAAmC,CAAC,CAAC;AAEnG,eAAO,MAAM,yCAAyC;;;;;;;;;EAGpD,CAAC;AAEH,MAAM,MAAM,sCAAsC,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yCAAyC,CAAC,CAAC;AAE/G,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;EAO1C,CAAC;AAEH,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,+BAA+B,CAAC,CAAC;AAE3F,eAAO,MAAM,6BAA6B
|
|
1
|
+
{"version":3,"file":"widget-settings.dto.d.ts","sourceRoot":"","sources":["../../../src/widget-settings/widget-settings.dto.ts"],"names":[],"mappings":"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"}
|
|
@@ -53,6 +53,7 @@ export const WidgetSettingsChatSettingsDTO = z.object({
|
|
|
53
53
|
disclaimer: WidgetSettingsChatDisclaimerDTO.optional(),
|
|
54
54
|
aiDisclaimer: WidgetSettingsChatSettingsAIDisclaimerDTO,
|
|
55
55
|
handoffToAgentImageURL: z.string().nullable().optional(),
|
|
56
|
+
streamingDisabled: z.boolean().optional(),
|
|
56
57
|
});
|
|
57
58
|
export const WidgetSettingsVoiceSettingsContentDTO = z.object({
|
|
58
59
|
imageURL: z.string().nullable().optional(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"widget-settings.dto.js","sourceRoot":"","sources":["../../../src/widget-settings/widget-settings.dto.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"widget-settings.dto.js","sourceRoot":"","sources":["../../../src/widget-settings/widget-settings.dto.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voiceflow/dtos-interact",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.17.1",
|
|
4
4
|
"exports": {
|
|
5
5
|
".": {
|
|
6
6
|
"types": "./build/cjs/main.d.ts",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"publishConfig": {
|
|
44
44
|
"access": "public"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "1608764a18e35813e08e7509fecbdbb2cbe650bc"
|
|
47
47
|
}
|