blink 1.1.15 → 1.1.17
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/cli/{auth-DCUw-BJE.js → auth-Db3lxkv2.js} +2 -2
- package/dist/cli/{chat-ebiRKqit.js → chat-BtLHnRou.js} +1 -1
- package/dist/cli/{dev-D6lIT1u-.js → dev-VE6iNqe3.js} +104 -104
- package/dist/cli/index.js +4 -4
- package/dist/cli/init-BmUPyFWc.js +25 -0
- package/dist/cli/{init-templates-C_keoZ45.js → init-templates-3vtw2MZQ.js} +178 -143
- package/dist/cli/login-D1muj139.js +1 -0
- package/dist/cli/{run-DT3wRuFc.js → run-BlY6czRh.js} +1 -1
- package/dist/cli/{setup-slack-app-Bo1yEsSq.js → setup-slack-app-BeKQIOnA.js} +1 -1
- package/dist/cli/{util-DBfnc6lD.js → util-x4GqZFrj.js} +1 -1
- package/dist/node/agent/index.node.cjs +1 -1
- package/dist/node/agent/index.node.js +1 -1
- package/dist/node/{index.node-sb6fILn2.cjs → index.node-CijG75ex.cjs} +1 -1
- package/dist/node/{index.node-CERnwYbK.js → index.node-CvZqlsJo.js} +1 -1
- package/dist/node/react/index.node.cjs +237 -202
- package/dist/node/react/index.node.d.cts +3 -1
- package/dist/node/react/index.node.d.ts +3 -1
- package/dist/node/react/index.node.js +216 -181
- package/package.json +6 -4
- package/dist/cli/init-DYcep43s.js +0 -3
- package/dist/cli/login-P-KIKeEv.js +0 -1
- /package/dist/cli/{dist-AXHevRdg.js → dist-DxkSGwUH.js} +0 -0
- /package/dist/cli/{open-DCYivxgo.js → open-S_jcQ0nw.js} +0 -0
|
@@ -403,6 +403,7 @@ interface UseDevMode {
|
|
|
403
403
|
readonly auth: UseAuth;
|
|
404
404
|
readonly server: LocalServer;
|
|
405
405
|
readonly showWaitingPlaceholder: boolean;
|
|
406
|
+
readonly editModeMissingApiKey: boolean;
|
|
406
407
|
}
|
|
407
408
|
/**
|
|
408
409
|
* useDevMode abstracts all the business logic for running/editing an agent.
|
|
@@ -430,12 +431,13 @@ declare function useDotenv(directory: string, name?: string): Record<string, str
|
|
|
430
431
|
interface UseEditAgentOptions {
|
|
431
432
|
readonly directory: string;
|
|
432
433
|
readonly apiServerUrl?: string;
|
|
433
|
-
readonly
|
|
434
|
+
readonly env: Record<string, string>;
|
|
434
435
|
readonly getDevhookUrl: () => string;
|
|
435
436
|
}
|
|
436
437
|
declare function useEditAgent(options: UseEditAgentOptions): {
|
|
437
438
|
client: Client | undefined;
|
|
438
439
|
error: Error | undefined;
|
|
440
|
+
missingApiKey: boolean;
|
|
439
441
|
setUserAgentUrl: (url: string) => void;
|
|
440
442
|
};
|
|
441
443
|
//#endregion
|
|
@@ -403,6 +403,7 @@ interface UseDevMode {
|
|
|
403
403
|
readonly auth: UseAuth;
|
|
404
404
|
readonly server: LocalServer;
|
|
405
405
|
readonly showWaitingPlaceholder: boolean;
|
|
406
|
+
readonly editModeMissingApiKey: boolean;
|
|
406
407
|
}
|
|
407
408
|
/**
|
|
408
409
|
* useDevMode abstracts all the business logic for running/editing an agent.
|
|
@@ -430,12 +431,13 @@ declare function useDotenv(directory: string, name?: string): Record<string, str
|
|
|
430
431
|
interface UseEditAgentOptions {
|
|
431
432
|
readonly directory: string;
|
|
432
433
|
readonly apiServerUrl?: string;
|
|
433
|
-
readonly
|
|
434
|
+
readonly env: Record<string, string>;
|
|
434
435
|
readonly getDevhookUrl: () => string;
|
|
435
436
|
}
|
|
436
437
|
declare function useEditAgent(options: UseEditAgentOptions): {
|
|
437
438
|
client: Client | undefined;
|
|
438
439
|
error: Error | undefined;
|
|
440
|
+
missingApiKey: boolean;
|
|
439
441
|
setUserAgentUrl: (url: string) => void;
|
|
440
442
|
};
|
|
441
443
|
//#endregion
|