@voiceflow/utils-designer 1.8.0 → 1.8.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.
@@ -24,13 +24,13 @@ export declare const entityVariantsValidator: import("./main").IValidatorWithCon
24
24
  value: string;
25
25
  id: string;
26
26
  createdAt: string;
27
- updatedAt: string;
28
- updatedByID: number | null;
29
- assistantID: string;
30
- environmentID: string;
31
27
  entityID: string;
32
28
  language: "en-us";
33
29
  synonyms: string[];
30
+ updatedAt?: string | undefined;
31
+ updatedByID?: number | null | undefined;
32
+ assistantID?: string | undefined;
33
+ environmentID?: string | undefined;
34
34
  }, "value" | "synonyms">[], {
35
35
  classifier: string | null;
36
36
  }>;
@@ -22,13 +22,13 @@ export declare const intentNameValidator: import("./main").IValidatorWithContext
22
22
  export declare const intentUtterancesValidator: import("./main").IValidatorWithContext<Pick<{
23
23
  id: string;
24
24
  createdAt: string;
25
- updatedAt: string;
26
- updatedByID: number | null;
27
- assistantID: string;
28
- environmentID: string;
29
25
  text: import("@voiceflow/dtos").UtteranceText;
30
26
  language: "en-us";
31
27
  intentID: string;
28
+ updatedAt?: string | undefined;
29
+ updatedByID?: number | null | undefined;
30
+ assistantID?: string | undefined;
31
+ environmentID?: string | undefined;
32
32
  }, "id" | "text">[], {
33
33
  isBuiltInIntent?: boolean | undefined;
34
34
  }>;
@@ -24,13 +24,13 @@ export declare const entityVariantsValidator: import("./main.js").IValidatorWith
24
24
  value: string;
25
25
  id: string;
26
26
  createdAt: string;
27
- updatedAt: string;
28
- updatedByID: number | null;
29
- assistantID: string;
30
- environmentID: string;
31
27
  entityID: string;
32
28
  language: "en-us";
33
29
  synonyms: string[];
30
+ updatedAt?: string | undefined;
31
+ updatedByID?: number | null | undefined;
32
+ assistantID?: string | undefined;
33
+ environmentID?: string | undefined;
34
34
  }, "value" | "synonyms">[], {
35
35
  classifier: string | null;
36
36
  }>;
@@ -22,13 +22,13 @@ export declare const intentNameValidator: import("./main.js").IValidatorWithCont
22
22
  export declare const intentUtterancesValidator: import("./main.js").IValidatorWithContext<Pick<{
23
23
  id: string;
24
24
  createdAt: string;
25
- updatedAt: string;
26
- updatedByID: number | null;
27
- assistantID: string;
28
- environmentID: string;
29
25
  text: import("@voiceflow/dtos").UtteranceText;
30
26
  language: "en-us";
31
27
  intentID: string;
28
+ updatedAt?: string | undefined;
29
+ updatedByID?: number | null | undefined;
30
+ assistantID?: string | undefined;
31
+ environmentID?: string | undefined;
32
32
  }, "id" | "text">[], {
33
33
  isBuiltInIntent?: boolean | undefined;
34
34
  }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voiceflow/utils-designer",
3
- "version": "1.8.0",
3
+ "version": "1.8.1",
4
4
  "exports": {
5
5
  ".": {
6
6
  "types": "./build/cjs/main.d.ts",
@@ -36,7 +36,7 @@
36
36
  },
37
37
  "dependencies": {
38
38
  "@voiceflow/common": "8.2.7",
39
- "@voiceflow/dtos": "1.27.0",
39
+ "@voiceflow/dtos": "1.28.0",
40
40
  "bidirectional-adapter": "1.2.1",
41
41
  "ts-pattern": "^5.0.5",
42
42
  "zod": "3.22.4"
@@ -49,5 +49,5 @@
49
49
  "tsd": {
50
50
  "directory": "src"
51
51
  },
52
- "gitHead": "7aa57a85f1a200e6d6ed72b915a8554f09a1d038"
52
+ "gitHead": "e1d6eebef60087add1d9feb97f65e1b0208172fb"
53
53
  }