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.
@@ -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
- companyIds: string[];
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.companyIds = [];
8
+ this.companies = [{ id: '', name: '' }];
9
9
  this.total = 0;
10
10
  this.createdAt = new Date();
11
11
  this.app = { appId: '', name: '', version: '' };
@@ -1,7 +1,10 @@
1
1
  import { IAppInfo } from '../../purchases';
2
2
  export interface IMonitor {
3
3
  id: string;
4
- companyIds: string[];
4
+ companies: {
5
+ id: string;
6
+ name: string;
7
+ }[];
5
8
  total: number;
6
9
  createdAt: Date;
7
10
  app: IAppInfo;
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.2.71",
3
+ "version": "1.2.72",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.2.71",
3
+ "version": "1.2.72",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",