@knime/scripting-editor 0.0.101 → 0.0.102
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/dist/main.js +9358 -9323
- package/dist/src/store/ai-bar.d.ts +4 -1
- package/package.json +1 -1
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { Ref } from 'vue';
|
|
2
|
+
import { InputOutputModel } from '../components/InputOutputItem.vue';
|
|
1
3
|
import { UseCodeEditorReturn } from '../editor';
|
|
2
4
|
export interface Message {
|
|
3
5
|
role: "reply" | "request";
|
|
@@ -12,6 +14,7 @@ export type PromptResponseStore = {
|
|
|
12
14
|
};
|
|
13
15
|
export declare const usePromptResponseStore: () => PromptResponseStore;
|
|
14
16
|
export declare const clearPromptResponseStore: () => void;
|
|
15
|
-
export declare const showDisclaimer:
|
|
17
|
+
export declare const showDisclaimer: Ref<boolean>;
|
|
16
18
|
export declare const activeEditorStore: import('vue').ShallowRef<UseCodeEditorReturn | undefined>;
|
|
17
19
|
export declare const setActiveEditorStoreForAi: (store: UseCodeEditorReturn | undefined) => void;
|
|
20
|
+
export declare const currentInputOutputItems: Ref<InputOutputModel[]>;
|
package/package.json
CHANGED