@sampleapp.ai/sdk 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +3 -3
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -1,17 +1,17 @@
1
1
  import { ModalSearchAndChat } from "./components/ModalSearchAndChat";
2
2
  import { ChatButton } from "./components/ChatButton";
3
3
  import { SDKSettings, ComponentOptions } from "./types";
4
- declare class YourSDK {
4
+ declare class SampleAppSDK {
5
5
  ModalSearchAndChat: (settings: SDKSettings, options?: ComponentOptions) => ModalSearchAndChat;
6
6
  ChatButton: (settings: SDKSettings, options?: ComponentOptions) => ChatButton;
7
7
  version: string;
8
8
  }
9
- declare const sdk: YourSDK;
9
+ declare const sdk: SampleAppSDK;
10
10
  export default sdk;
11
11
  export { ModalSearchAndChat, ChatButton };
12
12
  export type { SDKSettings, ComponentOptions, BaseSettings, AiChatSettings, } from "./types";
13
13
  declare global {
14
14
  interface Window {
15
- YourSDK: YourSDK;
15
+ SampleAppSDK: SampleAppSDK;
16
16
  }
17
17
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sampleapp.ai/sdk",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "TypeScript SDK for your components",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",