@budibase/shared-core 3.34.1 → 3.34.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.
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export declare const ChatCommands: {
|
|
2
|
+
readonly ASK: "ask";
|
|
3
|
+
readonly NEW: "new";
|
|
4
|
+
readonly LINK: "link";
|
|
5
|
+
readonly UNSUPPORTED: "unsupported";
|
|
6
|
+
};
|
|
7
|
+
export type ChatCommand = (typeof ChatCommands)[keyof typeof ChatCommands];
|
|
8
|
+
export type SupportedChatCommand = typeof ChatCommands.ASK | typeof ChatCommands.NEW | typeof ChatCommands.LINK | typeof ChatCommands.UNSUPPORTED;
|
|
9
|
+
export declare const SupportedChatCommands: readonly ["ask", "new", "link", "unsupported"];
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
export * from "./ai";
|
|
2
2
|
export * from "./api";
|
|
3
|
+
export * from "./chat";
|
|
3
4
|
export * from "./fields";
|
|
4
5
|
export * from "./rows";
|
|
5
6
|
export * from "./colors";
|
|
6
7
|
export * from "./themes";
|
|
7
8
|
export * from "./urls";
|
|
8
|
-
export * from "./discord";
|
|
9
9
|
export declare const OperatorOptions: {
|
|
10
10
|
Equals: {
|
|
11
11
|
value: string;
|