@chatbotkit/sdk 1.26.0 → 1.26.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.
- package/package.json +20 -22
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chatbotkit/sdk",
|
|
3
|
-
"version": "1.26.
|
|
3
|
+
"version": "1.26.1",
|
|
4
4
|
"description": "The fastest way to build advanced AI chat bots",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"engines": {
|
|
@@ -3290,6 +3290,23 @@
|
|
|
3290
3290
|
},
|
|
3291
3291
|
"./package.json": "./package.json"
|
|
3292
3292
|
},
|
|
3293
|
+
"types": "./dist/cjs/index.d.ts",
|
|
3294
|
+
"dependencies": {
|
|
3295
|
+
"tslib": "^2.6.2",
|
|
3296
|
+
"@chatbotkit/fetch": "1.26.1"
|
|
3297
|
+
},
|
|
3298
|
+
"devDependencies": {
|
|
3299
|
+
"npm-run-all": "^4.1.5",
|
|
3300
|
+
"typedoc": "^0.28.14",
|
|
3301
|
+
"typedoc-plugin-markdown": "^4.9.0",
|
|
3302
|
+
"typedoc-plugin-mdn-links": "^5.0.10",
|
|
3303
|
+
"typescript": "^5.9",
|
|
3304
|
+
"openapi-typescript": "7.4.4",
|
|
3305
|
+
"swagger-client": "^3.24.5"
|
|
3306
|
+
},
|
|
3307
|
+
"files": [
|
|
3308
|
+
"dist/**"
|
|
3309
|
+
],
|
|
3293
3310
|
"scripts": {
|
|
3294
3311
|
"build": "run-s build:*",
|
|
3295
3312
|
"build:01-cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -3312,27 +3329,8 @@
|
|
|
3312
3329
|
"clean:types": "rimraf types",
|
|
3313
3330
|
"generate:api-types": "openapi-typescript src/types/api/v1.json --output ./src/types/api/v1.d.ts",
|
|
3314
3331
|
"lint": "eslint .",
|
|
3315
|
-
"postpack": "node ../../scripts/create-standard-exports.js",
|
|
3316
|
-
"prepack": "node ../../scripts/create-dist-exports.js",
|
|
3317
3332
|
"test": "true",
|
|
3318
3333
|
"update:api-types": "node scripts/export-api.js https://api.chatbotkit.com/v1/spec.json src/types/api/v1.json",
|
|
3319
3334
|
"resolve:api-types": "node scripts/resolve-api.js src/types/api/v1.json src/types/api/v1.json"
|
|
3320
|
-
}
|
|
3321
|
-
|
|
3322
|
-
"dependencies": {
|
|
3323
|
-
"@chatbotkit/fetch": "workspace:*",
|
|
3324
|
-
"tslib": "^2.6.2"
|
|
3325
|
-
},
|
|
3326
|
-
"devDependencies": {
|
|
3327
|
-
"npm-run-all": "^4.1.5",
|
|
3328
|
-
"typedoc": "^0.28.14",
|
|
3329
|
-
"typedoc-plugin-markdown": "^4.9.0",
|
|
3330
|
-
"typedoc-plugin-mdn-links": "^5.0.10",
|
|
3331
|
-
"typescript": "^5.9",
|
|
3332
|
-
"openapi-typescript": "7.4.4",
|
|
3333
|
-
"swagger-client": "^3.24.5"
|
|
3334
|
-
},
|
|
3335
|
-
"files": [
|
|
3336
|
-
"dist/**"
|
|
3337
|
-
]
|
|
3338
|
-
}
|
|
3335
|
+
}
|
|
3336
|
+
}
|