chatifai 1.0.18 → 1.0.19

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
@@ -360,6 +360,7 @@ export type ChunkType = z.infer<typeof zodChunkSchema>;
360
360
  export type QueryType = z.infer<typeof zodQuerySchema>;
361
361
  export type ModelType = (typeof modelsList)[number];
362
362
  export type UserRoleType = (typeof userRoles)[number];
363
+ export type FullFileTextType = z.infer<typeof zodFullTextSchema>;
363
364
  export declare enum FileType {
364
365
  PDF = "application/pdf",
365
366
  WORD = "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chatifai",
3
- "version": "1.0.18",
3
+ "version": "1.0.19",
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
@@ -150,6 +150,7 @@ export type ChunkType = z.infer<typeof zodChunkSchema>;
150
150
  export type QueryType = z.infer<typeof zodQuerySchema>;
151
151
  export type ModelType = (typeof modelsList)[number];
152
152
  export type UserRoleType = (typeof userRoles)[number];
153
+ export type FullFileTextType = z.infer<typeof zodFullTextSchema>;
153
154
 
154
155
  export enum FileType {
155
156
  PDF = 'application/pdf',