cat-documents-ng 0.2.54 → 0.2.56

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.
@@ -215,6 +215,15 @@ export declare class SHARED {
215
215
  * @type {string}
216
216
  */
217
217
  static UPDATE_DOCUMENT_NAME: string;
218
+ static WIDTH: string;
219
+ static BASEZINDEX: number;
220
+ static CLOSE_ICON: string;
221
+ static SAVE: string;
222
+ static UPLOAD_PROGRESS_100: number;
223
+ static UPLOAD_PROGRESS_10: number;
224
+ static APPLICANT: string;
225
+ static CATAGORIES: string;
226
+ static DOCUMENTS: string;
218
227
  static Menu: {
219
228
  label: string;
220
229
  items: ({
@@ -12,6 +12,13 @@ export declare class URLS {
12
12
  * @type {string}
13
13
  */
14
14
  static CONFIGFILEURL: string;
15
+ /**
16
+ * The URL endpoint for document uploads.
17
+ * Used to send documents to the server for storage or processing.
18
+ * @static
19
+ * @type {string}
20
+ */
21
+ static DOCUMENT_UPLOAD_FILE: string;
15
22
  /**
16
23
  * The URL endpoint for document uploads.
17
24
  * Used to send documents to the server for storage or processing.
@@ -46,6 +53,27 @@ export declare class URLS {
46
53
  * @type {string}
47
54
  */
48
55
  static DOCUMENT_TYPES: string;
56
+ /**
57
+ * The URL endpoint for getting categories by source (Applicant/Application).
58
+ * Used to fetch document categories based on the selected source.
59
+ * @static
60
+ * @type {string}
61
+ */
62
+ static GET_CATEGORIES_BY_SOURCE: string;
63
+ /**
64
+ * The URL endpoint for getting document types by category ID.
65
+ * Used to fetch document types based on the selected category.
66
+ * @static
67
+ * @type {string}
68
+ */
69
+ static GET_DOCUMENT_TYPES_BY_CATEGORY: string;
70
+ /**
71
+ * The URL endpoint for saving document upload data.
72
+ * Used to save the complete document upload information.
73
+ * @static
74
+ * @type {string}
75
+ */
76
+ static SAVE_DOCUMENT_UPLOAD: string;
49
77
  /**
50
78
  * The query parameter to pass a context ID in API requests.
51
79
  * @static