cat-documents-ng 1.0.31 → 1.0.34
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/Shared/constant/ERROR.d.ts +0 -2
- package/Shared/constant/SHARED.d.ts +2 -0
- package/Shared/constant/URLS.d.ts +0 -2
- package/fesm2022/cat-documents-ng.mjs +86 -187
- package/fesm2022/cat-documents-ng.mjs.map +1 -1
- package/lib/document/components/document-ai-chat/document-ai-chat.component.d.ts +16 -0
- package/lib/document/components/document-history/document-history.component.d.ts +2 -2
- package/lib/document/document.module.d.ts +30 -29
- package/lib/document/services/document-history-ai.service.d.ts +15 -93
- package/lib/document/services/document-http.service.d.ts +1 -22
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -49,7 +49,5 @@ export declare class ERRORS {
|
|
|
49
49
|
static ERROR_CALLING_API_WITH_SELECTION: string;
|
|
50
50
|
static ERROR_FILE_NAME_INVALID_CHARACTERS: string;
|
|
51
51
|
static ERROR_FILE_NAME_EMPTY: string;
|
|
52
|
-
static ERROR_SUMMARY_GENERATION: string;
|
|
53
|
-
static ERROR_INSIGHTS_GENERATION: string;
|
|
54
52
|
static ERROR_QUESTION_GENERATION: string;
|
|
55
53
|
}
|
|
@@ -455,6 +455,8 @@ export declare class SHARED {
|
|
|
455
455
|
static ERROR_PARSING_EMAIL_FILE: string;
|
|
456
456
|
static ERROR_LOADING_EMAIL_FILE: string;
|
|
457
457
|
static SMOOTH_SCROLL: ScrollBehavior;
|
|
458
|
+
static SUMMARY_PROMPT: string;
|
|
459
|
+
static INSIGHTS_PROMPT: string;
|
|
458
460
|
}
|
|
459
461
|
/**
|
|
460
462
|
* `DUMMYDOCUMENTLIST` is a mock list of document objects used for testing and development purposes.
|