chatifai 1.0.20 → 1.0.21

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/types.d.ts CHANGED
@@ -381,3 +381,6 @@ export declare enum FileType {
381
381
  XLSX = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
382
382
  HTML = "text/html"
383
383
  }
384
+ export declare enum QueuesList {
385
+ CONTEXT_PROCESS = "context_process_queue"
386
+ }
package/dist/types.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.FileType = exports.zodFullTextSchema = exports.zodChunkSchema = exports.zodQuerySchema = exports.zodAgentSchema = exports.zodContextSchema = exports.zodUserSchema = exports.zodOrganizationSchema = exports.userRoles = exports.modelsList = void 0;
3
+ exports.QueuesList = exports.FileType = exports.zodFullTextSchema = exports.zodChunkSchema = exports.zodQuerySchema = exports.zodAgentSchema = exports.zodContextSchema = exports.zodUserSchema = exports.zodOrganizationSchema = exports.userRoles = exports.modelsList = void 0;
4
4
  const zod_1 = require("zod");
5
5
  exports.modelsList = [
6
6
  'gemini-2.5-flash-lite',
@@ -136,3 +136,7 @@ var FileType;
136
136
  FileType["XLSX"] = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";
137
137
  FileType["HTML"] = "text/html";
138
138
  })(FileType = exports.FileType || (exports.FileType = {}));
139
+ var QueuesList;
140
+ (function (QueuesList) {
141
+ QueuesList["CONTEXT_PROCESS"] = "context_process_queue";
142
+ })(QueuesList = exports.QueuesList || (exports.QueuesList = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chatifai",
3
- "version": "1.0.20",
3
+ "version": "1.0.21",
4
4
  "description": "SDK for interacting with the Chatifai API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/types.ts CHANGED
@@ -173,3 +173,7 @@ export enum FileType {
173
173
  XLSX = 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
174
174
  HTML = 'text/html',
175
175
  }
176
+
177
+ export enum QueuesList {
178
+ CONTEXT_PROCESS = 'context_process_queue',
179
+ }