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 +1 -0
- package/package.json +1 -1
- package/types.ts +1 -0
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
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',
|