app-v3-scripts-editor 1.33.4 → 1.34.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -3,8 +3,11 @@ export type NodeIntentCondition = Pick<IIntent, "id" | "slug" | "label" | "descr
|
|
|
3
3
|
export declare const pickNodeIntentCondition: (intent: IIntent) => NodeIntentCondition;
|
|
4
4
|
export declare const getNodeIntentConditionHandleId: (intent: Pick<IIntent, "id" | "slug">) => string;
|
|
5
5
|
export declare const isSilenceNodeIntentCondition: (condition?: Pick<IIntent, "id" | "label">) => boolean;
|
|
6
|
+
export declare const isNoResponseNodeIntentCondition: (condition?: Pick<IIntent, "id" | "label">) => boolean;
|
|
7
|
+
export declare const isSpecialNodeIntentCondition: (condition?: Pick<IIntent, "id" | "label">) => boolean;
|
|
6
8
|
export declare const isDefaultNodeIntentCondition: (condition?: Pick<IIntent, "id" | "label">) => boolean;
|
|
7
9
|
export declare const createSilentNodeIntentCondition: () => NodeIntentCondition;
|
|
10
|
+
export declare const createNoResponseNodeIntentCondition: () => NodeIntentCondition;
|
|
8
11
|
export declare const insertNodeIntentConditionBeforeDefault: <T extends Pick<IIntent, "id">>(conditions: T[], nextCondition: T) => T[];
|
|
9
12
|
export declare const splitDefaultNodeIntentConditions: <T extends Pick<IIntent, "id" | "label">>(conditions?: T[]) => {
|
|
10
13
|
removedDefaultConditions: T[];
|
|
@@ -12,4 +15,4 @@ export declare const splitDefaultNodeIntentConditions: <T extends Pick<IIntent,
|
|
|
12
15
|
};
|
|
13
16
|
export declare const getNodeIntentConditionHandleIds: <T extends Pick<IIntent, "id" | "slug">>(conditions?: T[]) => string[];
|
|
14
17
|
export declare const hasDefaultNodeIntentCondition: (conditions?: Array<Pick<IIntent, "id">>) => boolean;
|
|
15
|
-
export declare const appendMissingDefaultNodeIntentConditions: <T extends Pick<IIntent, "id" | "label">>(conditions: T[], createDefaultCondition: () => T, createSilenceCondition: () => T) => T[];
|
|
18
|
+
export declare const appendMissingDefaultNodeIntentConditions: <T extends Pick<IIntent, "id" | "label">>(conditions: T[], createDefaultCondition: () => T, createSilenceCondition: () => T, createNoResponseCondition: () => T) => T[];
|