cecon-interfaces 1.2.71 → 1.2.72
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/esm2022/monitor/entities/monitor.entity.mjs +2 -2
- package/dist/esm2022/monitor/interfaces/i-monitor.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs +1 -1
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/monitor/entities/monitor.entity.d.ts +4 -1
- package/dist/monitor/entities/monitor.entity.js +1 -1
- package/dist/monitor/interfaces/i-monitor.d.ts +4 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
@@ -2,7 +2,10 @@ import { IAppInfo } from '../../purchases';
|
|
2
2
|
import { IMonitor } from '../interfaces/i-monitor';
|
3
3
|
export declare class MonitorEntity implements IMonitor {
|
4
4
|
id: string;
|
5
|
-
|
5
|
+
companies: {
|
6
|
+
id: string;
|
7
|
+
name: string;
|
8
|
+
}[];
|
6
9
|
total: number;
|
7
10
|
createdAt: Date;
|
8
11
|
app: IAppInfo;
|
@@ -5,7 +5,7 @@ var MonitorEntity = /** @class */ (function () {
|
|
5
5
|
function MonitorEntity(data) {
|
6
6
|
// #region Properties (9)
|
7
7
|
this.id = '';
|
8
|
-
this.
|
8
|
+
this.companies = [{ id: '', name: '' }];
|
9
9
|
this.total = 0;
|
10
10
|
this.createdAt = new Date();
|
11
11
|
this.app = { appId: '', name: '', version: '' };
|
package/dist/package.json
CHANGED