cat-documents-ng 0.4.8 → 0.4.10

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.
@@ -298,6 +298,11 @@ export declare class DocumentUploadComponent implements OnInit, OnDestroy {
298
298
  * @returns Array of uploaded files with their metadata
299
299
  */
300
300
  getUploadedFiles(): UploadedFile[];
301
+ /**
302
+ * Creates the upload payload in the required format for onFilesUploaded event
303
+ * @returns The structured payload object
304
+ */
305
+ private createUploadPayload;
301
306
  /**
302
307
  * Resets the upload component to its initial state (useful when form is hidden)
303
308
  */
@@ -84,8 +84,8 @@ export declare class DocumentHttpService {
84
84
  /**
85
85
  * Fetches document status count data by application ID with optional context ID and category parameters.
86
86
  * @param {string} applicationId - The application ID to fetch status data.
87
- * @param {string | null} contextId - The context ID (applicant ID) to filter by. If null, omitted from query.
88
- * @param {string | null} categoryId - The category ID to filter by. If null, omitted from query.
87
+ * @param {string | null} contextId - The context ID (applicant ID) to filter by. If null, uses applicationId.
88
+ * @param {string | null} categoryId - The category ID to filter by.
89
89
  * @returns {Observable<StatusDataModel[]>} Observable that emits the status data.
90
90
  */
91
91
  getStatusDocumentCount(applicationId: string, contextId?: string | null, categoryId?: string | null): Observable<StatusDataModel[]>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cat-documents-ng",
3
- "version": "0.4.08",
3
+ "version": "0.4.10",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.0.0",
6
6
  "@angular/core": "^19.0.0"
package/public-api.d.ts CHANGED
@@ -15,6 +15,7 @@ export * from './lib/document/services/document-table-builder.service';
15
15
  export * from './lib/document/services/document-content-type.service';
16
16
  export * from './lib/document/services/document-zoom.service';
17
17
  export * from './lib/document/services/eml-parser.service';
18
+ export * from './lib/document/components/folder-container/folder-container.component';
18
19
  export * from './lib/document/services/excel-parser.service';
19
20
  export * from './lib/document/services/csv-parser.service';
20
21
  export * from './lib/document/directives/document.directive';