@osirus/agent 1.2.7 → 1.2.9

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.
@@ -1,5 +1,5 @@
1
- import { Address } from '../store/model/address.model';
2
- import { Either } from '../helpers/types';
1
+ import type { Address } from '../store/model/address.model';
2
+ import type { Either } from '../helpers/types';
3
3
  /**
4
4
  * Public config type for the widget.
5
5
  * Uses Either<> to ensure callers provide either AppConfig or LocalConfig (but not both).
@@ -42,6 +42,7 @@ export type CustomOption = {
42
42
  link: string;
43
43
  openNewTab: boolean;
44
44
  };
45
+ export declare const DEFAULT_BASE_API_URL = "https://osirus.ai/api";
45
46
  export declare function isAppConfig(config: unknown): config is AppConfig;
46
47
  export declare function isLocalConfig(config: unknown): config is LocalConfig;
47
48
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osirus/agent",
3
- "version": "1.2.7",
3
+ "version": "1.2.9",
4
4
  "author": "Osirus AI",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",