@cimulate/copilot-sdk 3.1.0 → 3.2.0

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.
@@ -6,6 +6,9 @@ interface DisplayProducts<TReturnedFields extends ReturnedFields = ReturnedField
6
6
  eventSourceId: string;
7
7
  message: string;
8
8
  name: 'display_products';
9
+ title?: string;
10
+ attributes?: string[];
11
+ displayAttributes?: Record<string, string>;
9
12
  products: TReturnedFields;
10
13
  }
11
14
  export { DisplayProducts };
@@ -0,0 +1,13 @@
1
+ import { ProgressToolKwargs } from './ProgressToolKwargs';
2
+ interface Progress {
3
+ sessionId: string;
4
+ id: string;
5
+ createdAt: string;
6
+ eventSourceId: string;
7
+ message: string;
8
+ name: 'progress';
9
+ thought?: string;
10
+ toolName?: string;
11
+ toolKwargs?: ProgressToolKwargs;
12
+ }
13
+ export { Progress };
@@ -0,0 +1,5 @@
1
+ interface ProgressToolKwargs {
2
+ query?: string;
3
+ numResults?: number;
4
+ }
5
+ export { ProgressToolKwargs };
@@ -23,6 +23,8 @@ export * from './FollowUp';
23
23
  export * from './Inquiry';
24
24
  export * from './OperationAck';
25
25
  export * from './PartialInquiry';
26
+ export * from './Progress';
27
+ export * from './ProgressToolKwargs';
26
28
  export * from './RefinedSearch';
27
29
  export * from './ReturnedFields';
28
30
  export * from './SearchParams';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cimulate/copilot-sdk",
3
- "version": "3.1.0",
3
+ "version": "3.2.0",
4
4
  "description": "A lightweight API client SDK for Cimulate Copilot",
5
5
  "files": [
6
6
  "dist/**",
@@ -7,6 +7,9 @@ interface DisplayProducts<TReturnedFields extends ReturnedFields = ReturnedField
7
7
  eventSourceId: string;
8
8
  message: string;
9
9
  name: 'display_products';
10
+ title?: string;
11
+ attributes?: string[];
12
+ displayAttributes?: Record<string, string>;
10
13
  products: TReturnedFields;
11
14
  }
12
15
  export { DisplayProducts };
@@ -0,0 +1,13 @@
1
+ import { ProgressToolKwargs } from './ProgressToolKwargs';
2
+ interface Progress {
3
+ sessionId: string;
4
+ id: string;
5
+ createdAt: string;
6
+ eventSourceId: string;
7
+ message: string;
8
+ name: 'progress';
9
+ thought?: string;
10
+ toolName?: string;
11
+ toolKwargs?: ProgressToolKwargs;
12
+ }
13
+ export { Progress };
@@ -0,0 +1,6 @@
1
+
2
+ interface ProgressToolKwargs {
3
+ query?: string;
4
+ numResults?: number;
5
+ }
6
+ export { ProgressToolKwargs };
@@ -23,6 +23,8 @@ export * from './FollowUp';
23
23
  export * from './Inquiry';
24
24
  export * from './OperationAck';
25
25
  export * from './PartialInquiry';
26
+ export * from './Progress';
27
+ export * from './ProgressToolKwargs';
26
28
  export * from './RefinedSearch';
27
29
  export * from './ReturnedFields';
28
30
  export * from './SearchParams';