cat-documents-ng 0.1.31 → 0.1.32

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.
@@ -33,4 +33,11 @@ export declare class ERRORS {
33
33
  * @type {string}
34
34
  */
35
35
  static ERROR_DOCUMENT_TYPES: string;
36
+ /**
37
+ * Error message when the file name contains invalid characters.
38
+ * Disallowed characters: <, >, :, ", /, \, |, ?, *
39
+ * @static
40
+ * @type {string}
41
+ */
42
+ static ERROR_INVALID_FILENAME_CHARACTERS: string;
36
43
  }
@@ -11,4 +11,10 @@ export declare class PERMISSIONS {
11
11
  * @type {string}
12
12
  */
13
13
  static DOCUMENT_POST: string;
14
+ /**
15
+ * Access permission for updating existing documents.
16
+ * @static
17
+ * @type {string}
18
+ */
19
+ static DOCUMENT_PUT: string;
14
20
  }
@@ -141,6 +141,12 @@ export declare class SHARED {
141
141
  * @type {string}
142
142
  */
143
143
  static UPDATE_DOCUMENT_NAME: string;
144
+ /**
145
+ * Identifier used to reference the file input element (e.g., for ViewChild or DOM access).
146
+ * @static
147
+ * @type {string}
148
+ */
149
+ static FILE_INPUT: string;
144
150
  }
145
151
  /**
146
152
  * `DUMMYDOCUMENTLIST` is a mock list of document objects used for testing and development purposes.