@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 CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@epam/ai-dial-shared",
3
3
  "description": "Shared elements that support developing DIAL",
4
4
  "homepage": "https://epam-rail.com",
5
- "version": "0.29.0-rc.9",
5
+ "version": "0.29.0",
6
6
  "dependencies": {},
7
7
  "type": "module",
8
8
  "bugs": {
@@ -63,13 +63,15 @@ export declare enum UploadStatus {
63
63
  FAILED = "FAILED",
64
64
  ALL_LOADED = "ALL_LOADED"
65
65
  }
66
- export interface Entity {
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
  }