@nestbox-ai/admin 1.0.48 → 1.0.49
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 +2 -2
- package/api.ts +6 -0
- package/dist/api.d.ts +6 -0
- package/dist/esm/api.d.ts +6 -0
- package/docs/CreateMachineAgentDto.md +2 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @nestbox-ai/admin@1.0.
|
|
1
|
+
## @nestbox-ai/admin@1.0.49
|
|
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/admin@1.0.
|
|
39
|
+
npm install @nestbox-ai/admin@1.0.49 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -365,6 +365,12 @@ export interface CreateMachineAgentDto {
|
|
|
365
365
|
* @memberof CreateMachineAgentDto
|
|
366
366
|
*/
|
|
367
367
|
'userId': number;
|
|
368
|
+
/**
|
|
369
|
+
* Optional Input Schema JSON for agent.
|
|
370
|
+
* @type {object}
|
|
371
|
+
* @memberof CreateMachineAgentDto
|
|
372
|
+
*/
|
|
373
|
+
'inputSchema'?: object;
|
|
368
374
|
}
|
|
369
375
|
/**
|
|
370
376
|
*
|
package/dist/api.d.ts
CHANGED
|
@@ -355,6 +355,12 @@ export interface CreateMachineAgentDto {
|
|
|
355
355
|
* @memberof CreateMachineAgentDto
|
|
356
356
|
*/
|
|
357
357
|
'userId': number;
|
|
358
|
+
/**
|
|
359
|
+
* Optional Input Schema JSON for agent.
|
|
360
|
+
* @type {object}
|
|
361
|
+
* @memberof CreateMachineAgentDto
|
|
362
|
+
*/
|
|
363
|
+
'inputSchema'?: object;
|
|
358
364
|
}
|
|
359
365
|
/**
|
|
360
366
|
*
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -355,6 +355,12 @@ export interface CreateMachineAgentDto {
|
|
|
355
355
|
* @memberof CreateMachineAgentDto
|
|
356
356
|
*/
|
|
357
357
|
'userId': number;
|
|
358
|
+
/**
|
|
359
|
+
* Optional Input Schema JSON for agent.
|
|
360
|
+
* @type {object}
|
|
361
|
+
* @memberof CreateMachineAgentDto
|
|
362
|
+
*/
|
|
363
|
+
'inputSchema'?: object;
|
|
358
364
|
}
|
|
359
365
|
/**
|
|
360
366
|
*
|
|
@@ -17,6 +17,7 @@ Name | Type | Description | Notes
|
|
|
17
17
|
**parameters** | **Array<object>** | | [default to undefined]
|
|
18
18
|
**projectId** | **string** | | [default to undefined]
|
|
19
19
|
**userId** | **number** | | [default to undefined]
|
|
20
|
+
**inputSchema** | **object** | Optional Input Schema JSON for agent. | [optional] [default to undefined]
|
|
20
21
|
|
|
21
22
|
## Example
|
|
22
23
|
|
|
@@ -36,6 +37,7 @@ const instance: CreateMachineAgentDto = {
|
|
|
36
37
|
parameters,
|
|
37
38
|
projectId,
|
|
38
39
|
userId,
|
|
40
|
+
inputSchema,
|
|
39
41
|
};
|
|
40
42
|
```
|
|
41
43
|
|