cecon-interfaces 1.2.67 → 1.2.69

Sign up to get free protection for your applications and to get access to all the features.
package/dist/index.d.ts CHANGED
@@ -40,6 +40,7 @@ export * from './subscription-company';
40
40
  export * from './subscription-customer';
41
41
  export * from './token';
42
42
  export * from './token-jwt';
43
+ export * from './used-apps';
43
44
  export * from './verifier-token';
44
45
  export * from './viacep';
45
46
  export * from './voucher';
package/dist/index.js CHANGED
@@ -56,6 +56,7 @@ __exportStar(require("./subscription-company"), exports);
56
56
  __exportStar(require("./subscription-customer"), exports);
57
57
  __exportStar(require("./token"), exports);
58
58
  __exportStar(require("./token-jwt"), exports);
59
+ __exportStar(require("./used-apps"), exports);
59
60
  __exportStar(require("./verifier-token"), exports);
60
61
  __exportStar(require("./viacep"), exports);
61
62
  __exportStar(require("./voucher"), exports);
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.2.67",
3
+ "version": "1.2.69",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -0,0 +1 @@
1
+ export { UsedAppsEntity } from './used-apps.entity';
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UsedAppsEntity = void 0;
4
+ var used_apps_entity_1 = require("./used-apps.entity");
5
+ Object.defineProperty(exports, "UsedAppsEntity", { enumerable: true, get: function () { return used_apps_entity_1.UsedAppsEntity; } });
@@ -0,0 +1,10 @@
1
+ import { IUsedApps } from '../interfaces/i-used-apps';
2
+ export declare class UsedAppsEntity implements IUsedApps {
3
+ id: string;
4
+ companyIds: string[];
5
+ total: number;
6
+ createdAt: Date;
7
+ appId: string;
8
+ appName: string;
9
+ constructor(data?: Partial<UsedAppsEntity>);
10
+ }
@@ -0,0 +1,25 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UsedAppsEntity = void 0;
4
+ var UsedAppsEntity = /** @class */ (function () {
5
+ // #endregion Properties (9)
6
+ // #region Constructors (1)
7
+ function UsedAppsEntity(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 UsedAppsEntity;
24
+ }());
25
+ exports.UsedAppsEntity = UsedAppsEntity;
@@ -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 IUsedApps {
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 { IUsedApps } from './i-used-apps';
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.2.67",
3
+ "version": "1.2.69",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",