cat-documents-ng 0.2.45 → 0.2.47

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.
@@ -9,6 +9,7 @@ export declare class ERRORS {
9
9
  * @type {string}
10
10
  */
11
11
  static INVALID_RECIPIENT: string;
12
+ static NO_VALUE_FOUND: string;
12
13
  /**
13
14
  * Error message for invalid document.
14
15
  * @static
@@ -34,4 +35,16 @@ export declare class ERRORS {
34
35
  */
35
36
  static ERROR_DOCUMENT_TYPES: string;
36
37
  static ERROR_DOCUMENT_CATAGORY: string;
38
+ static NO_DOCUMENT_URL: string;
39
+ static DOWNLOAD_FAIL: string;
40
+ static ERROR_DELETING_DOCUMENT: string;
41
+ static ERROR_RECEIVING_DOCUMENT_LIST: string;
42
+ static CONTEXT_ID_REQUIRED: string;
43
+ static ERROR_FETCHING_STATUS_DATA: string;
44
+ static ERROR_FETCHING_USER_LIST: string;
45
+ static ERROR_FETCHING_DOCUMENT_LIST: string;
46
+ static ERROR_FETCHING_DOCUMENT_CATEGORIES: string;
47
+ static ERROR_FETCHING_DOCUMENTS_BY_STATUS: string;
48
+ static ERROR_FETCHING_DOCUMENTS_BY_CATEGORY: string;
49
+ static ERROR_CALLING_API_WITH_SELECTION: string;
37
50
  }
@@ -185,6 +185,18 @@ export declare class SHARED {
185
185
  * @type {string}
186
186
  */
187
187
  static DOCUMENT_TYPE_ID: string;
188
+ /**
189
+ * Represent blob.
190
+ * @static
191
+ * @type {string}
192
+ */
193
+ static DOCUMENT: string;
194
+ /**
195
+ * Represent none.
196
+ * @static
197
+ * @type {string}
198
+ */
199
+ static NONE: string;
188
200
  /**
189
201
  * Represent upload summery.
190
202
  * @static