cecon-interfaces 1.2.68 → 1.2.70

Sign up to get free protection for your applications and to get access to all the features.
package/dist/index.d.ts CHANGED
@@ -22,6 +22,7 @@ export * from './iugu';
22
22
  export * from './lead';
23
23
  export * from './member';
24
24
  export * from './mobyo';
25
+ export * from './monitor';
25
26
  export * from './mottu';
26
27
  export * from './nati-v1';
27
28
  export * from './notification';
package/dist/index.js CHANGED
@@ -38,6 +38,7 @@ __exportStar(require("./iugu"), exports);
38
38
  __exportStar(require("./lead"), exports);
39
39
  __exportStar(require("./member"), exports);
40
40
  __exportStar(require("./mobyo"), exports);
41
+ __exportStar(require("./monitor"), exports);
41
42
  __exportStar(require("./mottu"), exports);
42
43
  __exportStar(require("./nati-v1"), exports);
43
44
  __exportStar(require("./notification"), exports);
@@ -0,0 +1 @@
1
+ export { MonitorEntity } from './monitor.entity';
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MonitorEntity = void 0;
4
+ var monitor_entity_1 = require("./monitor.entity");
5
+ Object.defineProperty(exports, "MonitorEntity", { enumerable: true, get: function () { return monitor_entity_1.MonitorEntity; } });
@@ -0,0 +1,10 @@
1
+ import { IMonitor } from '../interfaces/i-monitor';
2
+ export declare class MonitorEntity implements IMonitor {
3
+ id: string;
4
+ companyIds: string[];
5
+ total: number;
6
+ createdAt: Date;
7
+ appId: string;
8
+ appName: string;
9
+ constructor(data?: Partial<MonitorEntity>);
10
+ }
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.MonitorEntity = void 0;
4
+ var MonitorEntity = /** @class */ (function () {
5
+ // #endregion Properties (9)
6
+ // #region Constructors (1)
7
+ function MonitorEntity(data) {
8
+ // #region Properties (9)
9
+ this.id = '';
10
+ this.companyIds = [];
11
+ this.total = 0;
12
+ this.createdAt = new Date();
13
+ this.appId = '';
14
+ this.appName = '';
15
+ if (data) {
16
+ for (var key in data) {
17
+ if (data.hasOwnProperty(key) && key in this) {
18
+ this[key] = data[key];
19
+ }
20
+ }
21
+ }
22
+ }
23
+ return MonitorEntity;
24
+ }());
25
+ exports.MonitorEntity = MonitorEntity;
@@ -0,0 +1,2 @@
1
+ export * from './entities';
2
+ export * from './interfaces';
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./entities"), exports);
18
+ __exportStar(require("./interfaces"), exports);
@@ -0,0 +1,8 @@
1
+ export interface IMonitor {
2
+ id: string;
3
+ companyIds: string[];
4
+ total: number;
5
+ createdAt: Date;
6
+ appId: string;
7
+ appName: string;
8
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1 @@
1
+ export { IMonitor } from './i-monitor';
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.2.68",
3
+ "version": "1.2.70",
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.68",
3
+ "version": "1.2.70",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",