@epam/ai-dial-shared 0.29.0-rc.9 → 0.29.0
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/package.json +1 -1
- package/src/types/chat.d.ts +5 -4
package/package.json
CHANGED
package/src/types/chat.d.ts
CHANGED
|
@@ -63,13 +63,15 @@ export declare enum UploadStatus {
|
|
|
63
63
|
FAILED = "FAILED",
|
|
64
64
|
ALL_LOADED = "ALL_LOADED"
|
|
65
65
|
}
|
|
66
|
-
export interface
|
|
66
|
+
export interface EntityDates {
|
|
67
|
+
createdAt?: number;
|
|
68
|
+
updatedAt?: number;
|
|
69
|
+
}
|
|
70
|
+
export interface Entity extends EntityDates {
|
|
67
71
|
id: string;
|
|
68
72
|
name: string;
|
|
69
73
|
folderId: string;
|
|
70
74
|
status?: UploadStatus;
|
|
71
|
-
createdAt?: number;
|
|
72
|
-
updatedAt?: number;
|
|
73
75
|
author?: string;
|
|
74
76
|
}
|
|
75
77
|
export declare enum PublishActions {
|
|
@@ -99,7 +101,6 @@ export interface ShareEntity extends Entity, ShareInterface {
|
|
|
99
101
|
}
|
|
100
102
|
export interface ConversationInfo extends ShareEntity {
|
|
101
103
|
model: ConversationEntityModel;
|
|
102
|
-
lastActivityDate?: number;
|
|
103
104
|
isPlayback?: boolean;
|
|
104
105
|
isReplay?: boolean;
|
|
105
106
|
}
|