@chatbotkit/sdk 1.24.0 → 1.25.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.
- package/dist/cjs/types/api/v1.d.ts +31 -1
- package/dist/esm/types/api/v1.d.ts +31 -1
- package/package.json +9 -9
|
@@ -5108,7 +5108,13 @@ export interface operations {
|
|
|
5108
5108
|
};
|
|
5109
5109
|
requestBody: {
|
|
5110
5110
|
content: {
|
|
5111
|
-
"application/json":
|
|
5111
|
+
"application/json": {
|
|
5112
|
+
/**
|
|
5113
|
+
* @description If true, deletes all resources associated with the blueprint. If false or omitted, only the blueprint is deleted.
|
|
5114
|
+
* @default false
|
|
5115
|
+
*/
|
|
5116
|
+
deleteResources?: boolean;
|
|
5117
|
+
};
|
|
5112
5118
|
};
|
|
5113
5119
|
};
|
|
5114
5120
|
responses: {
|
|
@@ -6828,6 +6834,16 @@ export interface operations {
|
|
|
6828
6834
|
botId?: string;
|
|
6829
6835
|
/** @description The schedule of the task */
|
|
6830
6836
|
schedule?: string;
|
|
6837
|
+
/**
|
|
6838
|
+
* @description The task execution status
|
|
6839
|
+
* @enum {string}
|
|
6840
|
+
*/
|
|
6841
|
+
status?: "idle" | "running";
|
|
6842
|
+
/**
|
|
6843
|
+
* @description The task execution outcome
|
|
6844
|
+
* @enum {string}
|
|
6845
|
+
*/
|
|
6846
|
+
outcome?: "pending" | "success" | "failure";
|
|
6831
6847
|
}[];
|
|
6832
6848
|
};
|
|
6833
6849
|
"application/jsonl": {
|
|
@@ -6858,6 +6874,16 @@ export interface operations {
|
|
|
6858
6874
|
botId?: string;
|
|
6859
6875
|
/** @description The schedule of the task */
|
|
6860
6876
|
schedule?: string;
|
|
6877
|
+
/**
|
|
6878
|
+
* @description The task execution status
|
|
6879
|
+
* @enum {string}
|
|
6880
|
+
*/
|
|
6881
|
+
status?: "idle" | "running";
|
|
6882
|
+
/**
|
|
6883
|
+
* @description The task execution outcome
|
|
6884
|
+
* @enum {string}
|
|
6885
|
+
*/
|
|
6886
|
+
outcome?: "pending" | "success" | "failure";
|
|
6861
6887
|
};
|
|
6862
6888
|
};
|
|
6863
6889
|
};
|
|
@@ -17262,6 +17288,7 @@ export interface operations {
|
|
|
17262
17288
|
createdAt: number;
|
|
17263
17289
|
/** @description The timestamp (ms) when the instance was updated */
|
|
17264
17290
|
updatedAt: number;
|
|
17291
|
+
instruction: string;
|
|
17265
17292
|
icon: string;
|
|
17266
17293
|
/** @description A JSON Schema object type definition (https://json-schema.org/). Represents an object schema with properties and validation rules. */
|
|
17267
17294
|
schema: {
|
|
@@ -17281,6 +17308,7 @@ export interface operations {
|
|
|
17281
17308
|
/** @description Required property names */
|
|
17282
17309
|
required?: string[];
|
|
17283
17310
|
};
|
|
17311
|
+
tags?: string[];
|
|
17284
17312
|
setup?: string;
|
|
17285
17313
|
commentary?: string;
|
|
17286
17314
|
}[];
|
|
@@ -17307,6 +17335,7 @@ export interface operations {
|
|
|
17307
17335
|
createdAt: number;
|
|
17308
17336
|
/** @description The timestamp (ms) when the instance was updated */
|
|
17309
17337
|
updatedAt: number;
|
|
17338
|
+
instruction: string;
|
|
17310
17339
|
icon: string;
|
|
17311
17340
|
/** @description A JSON Schema object type definition (https://json-schema.org/). Represents an object schema with properties and validation rules. */
|
|
17312
17341
|
schema: {
|
|
@@ -17326,6 +17355,7 @@ export interface operations {
|
|
|
17326
17355
|
/** @description Required property names */
|
|
17327
17356
|
required?: string[];
|
|
17328
17357
|
};
|
|
17358
|
+
tags?: string[];
|
|
17329
17359
|
setup?: string;
|
|
17330
17360
|
commentary?: string;
|
|
17331
17361
|
};
|
|
@@ -5108,7 +5108,13 @@ export interface operations {
|
|
|
5108
5108
|
};
|
|
5109
5109
|
requestBody: {
|
|
5110
5110
|
content: {
|
|
5111
|
-
"application/json":
|
|
5111
|
+
"application/json": {
|
|
5112
|
+
/**
|
|
5113
|
+
* @description If true, deletes all resources associated with the blueprint. If false or omitted, only the blueprint is deleted.
|
|
5114
|
+
* @default false
|
|
5115
|
+
*/
|
|
5116
|
+
deleteResources?: boolean;
|
|
5117
|
+
};
|
|
5112
5118
|
};
|
|
5113
5119
|
};
|
|
5114
5120
|
responses: {
|
|
@@ -6828,6 +6834,16 @@ export interface operations {
|
|
|
6828
6834
|
botId?: string;
|
|
6829
6835
|
/** @description The schedule of the task */
|
|
6830
6836
|
schedule?: string;
|
|
6837
|
+
/**
|
|
6838
|
+
* @description The task execution status
|
|
6839
|
+
* @enum {string}
|
|
6840
|
+
*/
|
|
6841
|
+
status?: "idle" | "running";
|
|
6842
|
+
/**
|
|
6843
|
+
* @description The task execution outcome
|
|
6844
|
+
* @enum {string}
|
|
6845
|
+
*/
|
|
6846
|
+
outcome?: "pending" | "success" | "failure";
|
|
6831
6847
|
}[];
|
|
6832
6848
|
};
|
|
6833
6849
|
"application/jsonl": {
|
|
@@ -6858,6 +6874,16 @@ export interface operations {
|
|
|
6858
6874
|
botId?: string;
|
|
6859
6875
|
/** @description The schedule of the task */
|
|
6860
6876
|
schedule?: string;
|
|
6877
|
+
/**
|
|
6878
|
+
* @description The task execution status
|
|
6879
|
+
* @enum {string}
|
|
6880
|
+
*/
|
|
6881
|
+
status?: "idle" | "running";
|
|
6882
|
+
/**
|
|
6883
|
+
* @description The task execution outcome
|
|
6884
|
+
* @enum {string}
|
|
6885
|
+
*/
|
|
6886
|
+
outcome?: "pending" | "success" | "failure";
|
|
6861
6887
|
};
|
|
6862
6888
|
};
|
|
6863
6889
|
};
|
|
@@ -17262,6 +17288,7 @@ export interface operations {
|
|
|
17262
17288
|
createdAt: number;
|
|
17263
17289
|
/** @description The timestamp (ms) when the instance was updated */
|
|
17264
17290
|
updatedAt: number;
|
|
17291
|
+
instruction: string;
|
|
17265
17292
|
icon: string;
|
|
17266
17293
|
/** @description A JSON Schema object type definition (https://json-schema.org/). Represents an object schema with properties and validation rules. */
|
|
17267
17294
|
schema: {
|
|
@@ -17281,6 +17308,7 @@ export interface operations {
|
|
|
17281
17308
|
/** @description Required property names */
|
|
17282
17309
|
required?: string[];
|
|
17283
17310
|
};
|
|
17311
|
+
tags?: string[];
|
|
17284
17312
|
setup?: string;
|
|
17285
17313
|
commentary?: string;
|
|
17286
17314
|
}[];
|
|
@@ -17307,6 +17335,7 @@ export interface operations {
|
|
|
17307
17335
|
createdAt: number;
|
|
17308
17336
|
/** @description The timestamp (ms) when the instance was updated */
|
|
17309
17337
|
updatedAt: number;
|
|
17338
|
+
instruction: string;
|
|
17310
17339
|
icon: string;
|
|
17311
17340
|
/** @description A JSON Schema object type definition (https://json-schema.org/). Represents an object schema with properties and validation rules. */
|
|
17312
17341
|
schema: {
|
|
@@ -17326,6 +17355,7 @@ export interface operations {
|
|
|
17326
17355
|
/** @description Required property names */
|
|
17327
17356
|
required?: string[];
|
|
17328
17357
|
};
|
|
17358
|
+
tags?: string[];
|
|
17329
17359
|
setup?: string;
|
|
17330
17360
|
commentary?: string;
|
|
17331
17361
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chatbotkit/sdk",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.25.0",
|
|
4
4
|
"description": "The fastest way to build advanced AI chat bots",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"engines": {
|
|
@@ -3309,14 +3309,14 @@
|
|
|
3309
3309
|
],
|
|
3310
3310
|
"scripts": {
|
|
3311
3311
|
"build": "run-s build:*",
|
|
3312
|
-
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
3313
|
-
"build:cjs_rename": "node ../../scripts/rename-cjs.js",
|
|
3314
|
-
"build:cjs_rewrite_cjs": "node ../../scripts/rewrite-cjs.js",
|
|
3315
|
-
"build:cjs_rewrite_ts": "node ../../scripts/rewrite-ts.js",
|
|
3316
|
-
"build:docs": "typedoc",
|
|
3317
|
-
"build:esm": "tsc -p tsconfig.esm.json",
|
|
3318
|
-
"build:exports": "node ../../scripts/create-standard-exports.js",
|
|
3319
|
-
"build:types": "tsc -p tsconfig.types.json",
|
|
3312
|
+
"build:01-cjs": "tsc -p tsconfig.cjs.json",
|
|
3313
|
+
"build:01-cjs_rename": "node ../../scripts/rename-cjs.js",
|
|
3314
|
+
"build:01-cjs_rewrite_cjs": "node ../../scripts/rewrite-cjs.js",
|
|
3315
|
+
"build:01-cjs_rewrite_ts": "node ../../scripts/rewrite-ts.js",
|
|
3316
|
+
"build:03-docs": "typedoc",
|
|
3317
|
+
"build:02-esm": "tsc -p tsconfig.esm.json",
|
|
3318
|
+
"build:00-exports": "node ../../scripts/create-standard-exports.js",
|
|
3319
|
+
"build:00-types": "tsc -p tsconfig.types.json",
|
|
3320
3320
|
"build:types_copy": "node scripts/copy-types.js",
|
|
3321
3321
|
"build:types_dist": "node scripts/copy-types-dist.js",
|
|
3322
3322
|
"check": "tsc -p tsconfig.check.json",
|