@chatbotkit/sdk 1.24.0 → 1.26.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chatbotkit/sdk",
3
- "version": "1.24.0",
3
+ "version": "1.26.0",
4
4
  "description": "The fastest way to build advanced AI chat bots",
5
5
  "license": "ISC",
6
6
  "engines": {
@@ -3290,33 +3290,16 @@
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.23.0"
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
- ],
3310
3293
  "scripts": {
3311
3294
  "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",
3295
+ "build:01-cjs": "tsc -p tsconfig.cjs.json",
3296
+ "build:01-cjs_rename": "node ../../scripts/rename-cjs.js",
3297
+ "build:01-cjs_rewrite_cjs": "node ../../scripts/rewrite-cjs.js",
3298
+ "build:01-cjs_rewrite_ts": "node ../../scripts/rewrite-ts.js",
3299
+ "build:03-docs": "typedoc",
3300
+ "build:02-esm": "tsc -p tsconfig.esm.json",
3301
+ "build:00-exports": "node ../../scripts/create-standard-exports.js",
3302
+ "build:00-types": "tsc -p tsconfig.types.json",
3320
3303
  "build:types_copy": "node scripts/copy-types.js",
3321
3304
  "build:types_dist": "node scripts/copy-types-dist.js",
3322
3305
  "check": "tsc -p tsconfig.check.json",
@@ -3329,8 +3312,27 @@
3329
3312
  "clean:types": "rimraf types",
3330
3313
  "generate:api-types": "openapi-typescript src/types/api/v1.json --output ./src/types/api/v1.d.ts",
3331
3314
  "lint": "eslint .",
3315
+ "postpack": "node ../../scripts/create-standard-exports.js",
3316
+ "prepack": "node ../../scripts/create-dist-exports.js",
3332
3317
  "test": "true",
3333
3318
  "update:api-types": "node scripts/export-api.js https://api.chatbotkit.com/v1/spec.json src/types/api/v1.json",
3334
3319
  "resolve:api-types": "node scripts/resolve-api.js src/types/api/v1.json src/types/api/v1.json"
3335
- }
3336
- }
3320
+ },
3321
+ "types": "./dist/cjs/index.d.ts",
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
+ }