@nestbox-ai/agents 1.0.47 → 1.0.48

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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @nestbox-ai/agents@1.0.47
1
+ ## @nestbox-ai/agents@1.0.48
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install @nestbox-ai/agents@1.0.47 --save
39
+ npm install @nestbox-ai/agents@1.0.48 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/api.ts CHANGED
@@ -41,6 +41,12 @@ export interface AdHocCallbackDto {
41
41
  * @memberof AdHocCallbackDto
42
42
  */
43
43
  'eventTypes': Array<string>;
44
+ /**
45
+ *
46
+ * @type {object}
47
+ * @memberof AdHocCallbackDto
48
+ */
49
+ 'headers'?: object;
44
50
  }
45
51
  /**
46
52
  *
package/dist/api.d.ts CHANGED
@@ -31,6 +31,12 @@ export interface AdHocCallbackDto {
31
31
  * @memberof AdHocCallbackDto
32
32
  */
33
33
  'eventTypes': Array<string>;
34
+ /**
35
+ *
36
+ * @type {object}
37
+ * @memberof AdHocCallbackDto
38
+ */
39
+ 'headers'?: object;
34
40
  }
35
41
  /**
36
42
  *
package/dist/esm/api.d.ts CHANGED
@@ -31,6 +31,12 @@ export interface AdHocCallbackDto {
31
31
  * @memberof AdHocCallbackDto
32
32
  */
33
33
  'eventTypes': Array<string>;
34
+ /**
35
+ *
36
+ * @type {object}
37
+ * @memberof AdHocCallbackDto
38
+ */
39
+ 'headers'?: object;
34
40
  }
35
41
  /**
36
42
  *
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **url** | **string** | URL to send the callback to | [default to undefined]
9
9
  **eventTypes** | **Array&lt;string&gt;** | List of event types to subscribe to, such as QUERY_FAILED, QUERY_COMPLETED, etc. | [default to undefined]
10
+ **headers** | **object** | | [optional] [default to undefined]
10
11
 
11
12
  ## Example
12
13
 
@@ -16,6 +17,7 @@ import { AdHocCallbackDto } from '@nestbox-ai/agents';
16
17
  const instance: AdHocCallbackDto = {
17
18
  url,
18
19
  eventTypes,
20
+ headers,
19
21
  };
20
22
  ```
21
23
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nestbox-ai/agents",
3
- "version": "1.0.47",
3
+ "version": "1.0.48",
4
4
  "description": "OpenAPI client for @nestbox-ai/agents",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {