@voiceflow/dtos-interact 1.4.0 → 1.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -522,7 +522,7 @@ export declare const AnyTraceDTO: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
522
522
  text: string;
523
523
  slate?: any[] | undefined;
524
524
  }>;
525
- id: z.ZodString;
525
+ id: z.ZodOptional<z.ZodString>;
526
526
  }, "strip", z.ZodTypeAny, {
527
527
  title: string;
528
528
  buttons: {
@@ -538,7 +538,7 @@ export declare const AnyTraceDTO: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
538
538
  text: string;
539
539
  slate?: any[] | undefined;
540
540
  };
541
- id: string;
541
+ id?: string | undefined;
542
542
  }, {
543
543
  title: string;
544
544
  buttons: {
@@ -554,7 +554,7 @@ export declare const AnyTraceDTO: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
554
554
  text: string;
555
555
  slate?: any[] | undefined;
556
556
  };
557
- id: string;
557
+ id?: string | undefined;
558
558
  }>, "many">;
559
559
  layout: z.ZodNativeEnum<{
560
560
  readonly LIST: "List";
@@ -576,7 +576,7 @@ export declare const AnyTraceDTO: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
576
576
  text: string;
577
577
  slate?: any[] | undefined;
578
578
  };
579
- id: string;
579
+ id?: string | undefined;
580
580
  }[];
581
581
  layout: "List" | "Carousel";
582
582
  }, {
@@ -595,7 +595,7 @@ export declare const AnyTraceDTO: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
595
595
  text: string;
596
596
  slate?: any[] | undefined;
597
597
  };
598
- id: string;
598
+ id?: string | undefined;
599
599
  }[];
600
600
  layout: "List" | "Carousel";
601
601
  }>;
@@ -617,7 +617,7 @@ export declare const AnyTraceDTO: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
617
617
  text: string;
618
618
  slate?: any[] | undefined;
619
619
  };
620
- id: string;
620
+ id?: string | undefined;
621
621
  }[];
622
622
  layout: "List" | "Carousel";
623
623
  };
@@ -649,7 +649,7 @@ export declare const AnyTraceDTO: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
649
649
  text: string;
650
650
  slate?: any[] | undefined;
651
651
  };
652
- id: string;
652
+ id?: string | undefined;
653
653
  }[];
654
654
  layout: "List" | "Carousel";
655
655
  };
@@ -42,7 +42,7 @@ export declare const TraceCarouselCardDTO: z.ZodObject<{
42
42
  text: string;
43
43
  slate?: any[] | undefined;
44
44
  }>;
45
- id: z.ZodString;
45
+ id: z.ZodOptional<z.ZodString>;
46
46
  }, "strip", z.ZodTypeAny, {
47
47
  title: string;
48
48
  buttons: {
@@ -58,7 +58,7 @@ export declare const TraceCarouselCardDTO: z.ZodObject<{
58
58
  text: string;
59
59
  slate?: any[] | undefined;
60
60
  };
61
- id: string;
61
+ id?: string | undefined;
62
62
  }, {
63
63
  title: string;
64
64
  buttons: {
@@ -74,7 +74,7 @@ export declare const TraceCarouselCardDTO: z.ZodObject<{
74
74
  text: string;
75
75
  slate?: any[] | undefined;
76
76
  };
77
- id: string;
77
+ id?: string | undefined;
78
78
  }>;
79
79
  export type TraceCarouselCard = z.infer<typeof TraceCarouselCardDTO>;
80
80
  export declare const CarouselTraceDTO: z.ZodObject<{
@@ -155,7 +155,7 @@ export declare const CarouselTraceDTO: z.ZodObject<{
155
155
  text: string;
156
156
  slate?: any[] | undefined;
157
157
  }>;
158
- id: z.ZodString;
158
+ id: z.ZodOptional<z.ZodString>;
159
159
  }, "strip", z.ZodTypeAny, {
160
160
  title: string;
161
161
  buttons: {
@@ -171,7 +171,7 @@ export declare const CarouselTraceDTO: z.ZodObject<{
171
171
  text: string;
172
172
  slate?: any[] | undefined;
173
173
  };
174
- id: string;
174
+ id?: string | undefined;
175
175
  }, {
176
176
  title: string;
177
177
  buttons: {
@@ -187,7 +187,7 @@ export declare const CarouselTraceDTO: z.ZodObject<{
187
187
  text: string;
188
188
  slate?: any[] | undefined;
189
189
  };
190
- id: string;
190
+ id?: string | undefined;
191
191
  }>, "many">;
192
192
  layout: z.ZodNativeEnum<{
193
193
  readonly LIST: "List";
@@ -209,7 +209,7 @@ export declare const CarouselTraceDTO: z.ZodObject<{
209
209
  text: string;
210
210
  slate?: any[] | undefined;
211
211
  };
212
- id: string;
212
+ id?: string | undefined;
213
213
  }[];
214
214
  layout: "List" | "Carousel";
215
215
  }, {
@@ -228,7 +228,7 @@ export declare const CarouselTraceDTO: z.ZodObject<{
228
228
  text: string;
229
229
  slate?: any[] | undefined;
230
230
  };
231
- id: string;
231
+ id?: string | undefined;
232
232
  }[];
233
233
  layout: "List" | "Carousel";
234
234
  }>;
@@ -250,7 +250,7 @@ export declare const CarouselTraceDTO: z.ZodObject<{
250
250
  text: string;
251
251
  slate?: any[] | undefined;
252
252
  };
253
- id: string;
253
+ id?: string | undefined;
254
254
  }[];
255
255
  layout: "List" | "Carousel";
256
256
  };
@@ -282,7 +282,7 @@ export declare const CarouselTraceDTO: z.ZodObject<{
282
282
  text: string;
283
283
  slate?: any[] | undefined;
284
284
  };
285
- id: string;
285
+ id?: string | undefined;
286
286
  }[];
287
287
  layout: "List" | "Carousel";
288
288
  };
@@ -1 +1 @@
1
- {"version":3,"file":"carousel.dto.d.ts","sourceRoot":"","sources":["../../../src/trace/carousel.dto.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAQxB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA8C,CAAC;AAEhF,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAErE,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM3B,CAAC;AAEH,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC"}
1
+ {"version":3,"file":"carousel.dto.d.ts","sourceRoot":"","sources":["../../../src/trace/carousel.dto.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAQxB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAyD,CAAC;AAE3F,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAErE,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM3B,CAAC;AAEH,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC"}
@@ -6,7 +6,7 @@ const carousel_layout_enum_1 = require("../enum/carousel-layout.enum");
6
6
  const card_dto_1 = require("./card.dto");
7
7
  const trace_type_enum_1 = require("./trace-type.enum");
8
8
  const utils_dto_1 = require("./utils.dto");
9
- exports.TraceCarouselCardDTO = card_dto_1.CardTraceCardDTO.extend({ id: zod_1.z.string() });
9
+ exports.TraceCarouselCardDTO = card_dto_1.CardTraceCardDTO.extend({ id: zod_1.z.string().optional() });
10
10
  exports.CarouselTraceDTO = utils_dto_1.BaseTraceDTO.extend({
11
11
  type: zod_1.z.literal(trace_type_enum_1.TraceType.CAROUSEL),
12
12
  payload: zod_1.z.object({
@@ -1 +1 @@
1
- {"version":3,"file":"carousel.dto.js","sourceRoot":"","sources":["../../../src/trace/carousel.dto.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAExB,sEAA6D;AAE7D,yCAA8C;AAC9C,uDAA8C;AAC9C,2CAA2C;AAE9B,QAAA,oBAAoB,GAAG,2BAAgB,CAAC,MAAM,CAAC,EAAE,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC;AAInE,QAAA,gBAAgB,GAAG,wBAAY,CAAC,MAAM,CAAC;IAClD,IAAI,EAAE,OAAC,CAAC,OAAO,CAAC,2BAAS,CAAC,QAAQ,CAAC;IACnC,OAAO,EAAE,OAAC,CAAC,MAAM,CAAC;QAChB,KAAK,EAAE,OAAC,CAAC,KAAK,CAAC,4BAAoB,CAAC;QACpC,MAAM,EAAE,OAAC,CAAC,UAAU,CAAC,qCAAc,CAAC;KACrC,CAAC;CACH,CAAC,CAAC"}
1
+ {"version":3,"file":"carousel.dto.js","sourceRoot":"","sources":["../../../src/trace/carousel.dto.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAExB,sEAA6D;AAE7D,yCAA8C;AAC9C,uDAA8C;AAC9C,2CAA2C;AAE9B,QAAA,oBAAoB,GAAG,2BAAgB,CAAC,MAAM,CAAC,EAAE,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;AAI9E,QAAA,gBAAgB,GAAG,wBAAY,CAAC,MAAM,CAAC;IAClD,IAAI,EAAE,OAAC,CAAC,OAAO,CAAC,2BAAS,CAAC,QAAQ,CAAC;IACnC,OAAO,EAAE,OAAC,CAAC,MAAM,CAAC;QAChB,KAAK,EAAE,OAAC,CAAC,KAAK,CAAC,4BAAoB,CAAC;QACpC,MAAM,EAAE,OAAC,CAAC,UAAU,CAAC,qCAAc,CAAC;KACrC,CAAC;CACH,CAAC,CAAC"}
@@ -522,7 +522,7 @@ export declare const AnyTraceDTO: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
522
522
  text: string;
523
523
  slate?: any[] | undefined;
524
524
  }>;
525
- id: z.ZodString;
525
+ id: z.ZodOptional<z.ZodString>;
526
526
  }, "strip", z.ZodTypeAny, {
527
527
  title: string;
528
528
  buttons: {
@@ -538,7 +538,7 @@ export declare const AnyTraceDTO: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
538
538
  text: string;
539
539
  slate?: any[] | undefined;
540
540
  };
541
- id: string;
541
+ id?: string | undefined;
542
542
  }, {
543
543
  title: string;
544
544
  buttons: {
@@ -554,7 +554,7 @@ export declare const AnyTraceDTO: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
554
554
  text: string;
555
555
  slate?: any[] | undefined;
556
556
  };
557
- id: string;
557
+ id?: string | undefined;
558
558
  }>, "many">;
559
559
  layout: z.ZodNativeEnum<{
560
560
  readonly LIST: "List";
@@ -576,7 +576,7 @@ export declare const AnyTraceDTO: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
576
576
  text: string;
577
577
  slate?: any[] | undefined;
578
578
  };
579
- id: string;
579
+ id?: string | undefined;
580
580
  }[];
581
581
  layout: "List" | "Carousel";
582
582
  }, {
@@ -595,7 +595,7 @@ export declare const AnyTraceDTO: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
595
595
  text: string;
596
596
  slate?: any[] | undefined;
597
597
  };
598
- id: string;
598
+ id?: string | undefined;
599
599
  }[];
600
600
  layout: "List" | "Carousel";
601
601
  }>;
@@ -617,7 +617,7 @@ export declare const AnyTraceDTO: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
617
617
  text: string;
618
618
  slate?: any[] | undefined;
619
619
  };
620
- id: string;
620
+ id?: string | undefined;
621
621
  }[];
622
622
  layout: "List" | "Carousel";
623
623
  };
@@ -649,7 +649,7 @@ export declare const AnyTraceDTO: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
649
649
  text: string;
650
650
  slate?: any[] | undefined;
651
651
  };
652
- id: string;
652
+ id?: string | undefined;
653
653
  }[];
654
654
  layout: "List" | "Carousel";
655
655
  };
@@ -42,7 +42,7 @@ export declare const TraceCarouselCardDTO: z.ZodObject<{
42
42
  text: string;
43
43
  slate?: any[] | undefined;
44
44
  }>;
45
- id: z.ZodString;
45
+ id: z.ZodOptional<z.ZodString>;
46
46
  }, "strip", z.ZodTypeAny, {
47
47
  title: string;
48
48
  buttons: {
@@ -58,7 +58,7 @@ export declare const TraceCarouselCardDTO: z.ZodObject<{
58
58
  text: string;
59
59
  slate?: any[] | undefined;
60
60
  };
61
- id: string;
61
+ id?: string | undefined;
62
62
  }, {
63
63
  title: string;
64
64
  buttons: {
@@ -74,7 +74,7 @@ export declare const TraceCarouselCardDTO: z.ZodObject<{
74
74
  text: string;
75
75
  slate?: any[] | undefined;
76
76
  };
77
- id: string;
77
+ id?: string | undefined;
78
78
  }>;
79
79
  export type TraceCarouselCard = z.infer<typeof TraceCarouselCardDTO>;
80
80
  export declare const CarouselTraceDTO: z.ZodObject<{
@@ -155,7 +155,7 @@ export declare const CarouselTraceDTO: z.ZodObject<{
155
155
  text: string;
156
156
  slate?: any[] | undefined;
157
157
  }>;
158
- id: z.ZodString;
158
+ id: z.ZodOptional<z.ZodString>;
159
159
  }, "strip", z.ZodTypeAny, {
160
160
  title: string;
161
161
  buttons: {
@@ -171,7 +171,7 @@ export declare const CarouselTraceDTO: z.ZodObject<{
171
171
  text: string;
172
172
  slate?: any[] | undefined;
173
173
  };
174
- id: string;
174
+ id?: string | undefined;
175
175
  }, {
176
176
  title: string;
177
177
  buttons: {
@@ -187,7 +187,7 @@ export declare const CarouselTraceDTO: z.ZodObject<{
187
187
  text: string;
188
188
  slate?: any[] | undefined;
189
189
  };
190
- id: string;
190
+ id?: string | undefined;
191
191
  }>, "many">;
192
192
  layout: z.ZodNativeEnum<{
193
193
  readonly LIST: "List";
@@ -209,7 +209,7 @@ export declare const CarouselTraceDTO: z.ZodObject<{
209
209
  text: string;
210
210
  slate?: any[] | undefined;
211
211
  };
212
- id: string;
212
+ id?: string | undefined;
213
213
  }[];
214
214
  layout: "List" | "Carousel";
215
215
  }, {
@@ -228,7 +228,7 @@ export declare const CarouselTraceDTO: z.ZodObject<{
228
228
  text: string;
229
229
  slate?: any[] | undefined;
230
230
  };
231
- id: string;
231
+ id?: string | undefined;
232
232
  }[];
233
233
  layout: "List" | "Carousel";
234
234
  }>;
@@ -250,7 +250,7 @@ export declare const CarouselTraceDTO: z.ZodObject<{
250
250
  text: string;
251
251
  slate?: any[] | undefined;
252
252
  };
253
- id: string;
253
+ id?: string | undefined;
254
254
  }[];
255
255
  layout: "List" | "Carousel";
256
256
  };
@@ -282,7 +282,7 @@ export declare const CarouselTraceDTO: z.ZodObject<{
282
282
  text: string;
283
283
  slate?: any[] | undefined;
284
284
  };
285
- id: string;
285
+ id?: string | undefined;
286
286
  }[];
287
287
  layout: "List" | "Carousel";
288
288
  };
@@ -1 +1 @@
1
- {"version":3,"file":"carousel.dto.d.ts","sourceRoot":"","sources":["../../../src/trace/carousel.dto.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAQxB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA8C,CAAC;AAEhF,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAErE,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM3B,CAAC;AAEH,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC"}
1
+ {"version":3,"file":"carousel.dto.d.ts","sourceRoot":"","sources":["../../../src/trace/carousel.dto.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAQxB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAyD,CAAC;AAE3F,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAErE,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM3B,CAAC;AAEH,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC"}
@@ -3,7 +3,7 @@ import { CarouselLayout } from '../enum/carousel-layout.enum.js';
3
3
  import { CardTraceCardDTO } from './card.dto.js';
4
4
  import { TraceType } from './trace-type.enum.js';
5
5
  import { BaseTraceDTO } from './utils.dto.js';
6
- export const TraceCarouselCardDTO = CardTraceCardDTO.extend({ id: z.string() });
6
+ export const TraceCarouselCardDTO = CardTraceCardDTO.extend({ id: z.string().optional() });
7
7
  export const CarouselTraceDTO = BaseTraceDTO.extend({
8
8
  type: z.literal(TraceType.CAROUSEL),
9
9
  payload: z.object({
@@ -1 +1 @@
1
- {"version":3,"file":"carousel.dto.js","sourceRoot":"","sources":["../../../src/trace/carousel.dto.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAC;AAE7D,OAAO,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AAC9C,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAE3C,MAAM,CAAC,MAAM,oBAAoB,GAAG,gBAAgB,CAAC,MAAM,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC;AAIhF,MAAM,CAAC,MAAM,gBAAgB,GAAG,YAAY,CAAC,MAAM,CAAC;IAClD,IAAI,EAAE,CAAC,CAAC,OAAO,CAAC,SAAS,CAAC,QAAQ,CAAC;IACnC,OAAO,EAAE,CAAC,CAAC,MAAM,CAAC;QAChB,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,oBAAoB,CAAC;QACpC,MAAM,EAAE,CAAC,CAAC,UAAU,CAAC,cAAc,CAAC;KACrC,CAAC;CACH,CAAC,CAAC"}
1
+ {"version":3,"file":"carousel.dto.js","sourceRoot":"","sources":["../../../src/trace/carousel.dto.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,EAAE,cAAc,EAAE,MAAM,6BAA6B,CAAC;AAE7D,OAAO,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AAC9C,OAAO,EAAE,SAAS,EAAE,MAAM,mBAAmB,CAAC;AAC9C,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAE3C,MAAM,CAAC,MAAM,oBAAoB,GAAG,gBAAgB,CAAC,MAAM,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;AAI3F,MAAM,CAAC,MAAM,gBAAgB,GAAG,YAAY,CAAC,MAAM,CAAC;IAClD,IAAI,EAAE,CAAC,CAAC,OAAO,CAAC,SAAS,CAAC,QAAQ,CAAC;IACnC,OAAO,EAAE,CAAC,CAAC,MAAM,CAAC;QAChB,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,oBAAoB,CAAC;QACpC,MAAM,EAAE,CAAC,CAAC,UAAU,CAAC,cAAc,CAAC;KACrC,CAAC;CACH,CAAC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voiceflow/dtos-interact",
3
- "version": "1.4.0",
3
+ "version": "1.4.2",
4
4
  "exports": {
5
5
  ".": {
6
6
  "types": "./build/cjs/main.d.ts",
@@ -36,7 +36,7 @@
36
36
  "zod": "^3"
37
37
  },
38
38
  "engines": {
39
- "node": "20.11"
39
+ "node": "20"
40
40
  },
41
41
  "volta": {
42
42
  "extends": "../../package.json"
@@ -44,5 +44,5 @@
44
44
  "publishConfig": {
45
45
  "access": "public"
46
46
  },
47
- "gitHead": "2ce66443e3483b9750d69ef75dd668700f242925"
47
+ "gitHead": "50c69f77b9f397ac5920f645f3d3991cc2622570"
48
48
  }