cloud-ide-element 1.0.59 → 1.0.60
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.
package/index.d.ts
CHANGED
|
@@ -1460,6 +1460,21 @@ declare class NotificationService {
|
|
|
1460
1460
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<NotificationService>;
|
|
1461
1461
|
}
|
|
1462
1462
|
|
|
1463
|
+
declare class ICoreCyfm {
|
|
1464
|
+
_id?: string;
|
|
1465
|
+
cyfm_name?: string;
|
|
1466
|
+
cyfm_alt_text?: string;
|
|
1467
|
+
cyfm_path?: string;
|
|
1468
|
+
cyfm_size_in_byte?: number;
|
|
1469
|
+
cyfm_type?: string;
|
|
1470
|
+
cyfm_creation_dt?: string;
|
|
1471
|
+
cyfm_id_user?: string;
|
|
1472
|
+
cyfm_permissions?: [];
|
|
1473
|
+
cyfm_tags?: string[];
|
|
1474
|
+
cyfm_version?: number;
|
|
1475
|
+
cyfm_file_status_sygmt?: string;
|
|
1476
|
+
cyfm_isactive?: boolean;
|
|
1477
|
+
}
|
|
1463
1478
|
interface controllerResponse {
|
|
1464
1479
|
success?: boolean;
|
|
1465
1480
|
error_code?: string;
|
|
@@ -1474,6 +1489,20 @@ interface controllerResponse {
|
|
|
1474
1489
|
[key: string]: string;
|
|
1475
1490
|
};
|
|
1476
1491
|
}
|
|
1492
|
+
type IFileManagerErrorLogger = {
|
|
1493
|
+
[key in keyof MFileManager]: string;
|
|
1494
|
+
};
|
|
1495
|
+
declare class MFileManager {
|
|
1496
|
+
cyfm_id: string;
|
|
1497
|
+
constructor(init: MFileManager);
|
|
1498
|
+
Validate?(): Partial<IFileManagerErrorLogger>;
|
|
1499
|
+
}
|
|
1500
|
+
interface fileManagerResponseData extends ICoreCyfm {
|
|
1501
|
+
cyfm_file_base64: string;
|
|
1502
|
+
}
|
|
1503
|
+
interface fileManagerControllerResponse extends controllerResponse {
|
|
1504
|
+
data?: fileManagerResponseData[];
|
|
1505
|
+
}
|
|
1477
1506
|
interface CoreFileManagerInsertUpdateResponse extends controllerResponse {
|
|
1478
1507
|
data?: {
|
|
1479
1508
|
core_file_manager: {
|
|
@@ -1559,9 +1588,7 @@ declare class CideEleFileManagerService {
|
|
|
1559
1588
|
* @param fileId The file ID to fetch details for
|
|
1560
1589
|
* @returns Observable with file details
|
|
1561
1590
|
*/
|
|
1562
|
-
getFileDetails(fileId:
|
|
1563
|
-
cyfm_id: string;
|
|
1564
|
-
}): Observable<any>;
|
|
1591
|
+
getFileDetails(fileId: MFileManager): Observable<fileManagerControllerResponse>;
|
|
1565
1592
|
/**
|
|
1566
1593
|
* Angular 20: Service utility methods
|
|
1567
1594
|
*/
|