cat-documents-ng 0.3.5 → 0.3.8

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.
@@ -13,6 +13,7 @@ export interface DocumentListItem {
13
13
  uploadedOn: string;
14
14
  ownerName: string;
15
15
  contentType: string;
16
+ aliasName?: string;
16
17
  }
17
18
  /**
18
19
  * Represents the complete document list response
@@ -9,6 +9,13 @@ export declare class DocumentTableBuilderService {
9
9
  * @returns TableData object
10
10
  */
11
11
  buildDocumentTable(documents: DocumentListItem[]): TableData;
12
+ /**
13
+ * Formats document name to include aliasName if available
14
+ * @param docName The document name
15
+ * @param aliasName The alias name (optional)
16
+ * @returns Formatted display name
17
+ */
18
+ private formatDocumentDisplayName;
12
19
  /**
13
20
  * Gets completion count for a category
14
21
  * @param category Document category
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cat-documents-ng",
3
- "version": "0.3.5",
3
+ "version": "0.3.8",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.0.0",
6
6
  "@angular/core": "^19.0.0"