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.
@@ -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 token?: string;
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 token?: string;
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