cecon-interfaces 1.0.98 → 1.0.99

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.
Files changed (53) hide show
  1. package/dist/app/entities/app.entity.d.ts +8 -8
  2. package/dist/app/entities/app.entity.js +3 -3
  3. package/dist/app/enums/app-category.enum.d.ts +1 -1
  4. package/dist/app/enums/app-category.enum.js +32 -32
  5. package/dist/app/enums/app-type.enum.d.ts +1 -1
  6. package/dist/app/enums/app-type.enum.js +8 -8
  7. package/dist/app/enums/header-type.enum.d.ts +1 -1
  8. package/dist/app/enums/header-type.enum.js +6 -6
  9. package/dist/app/enums/index.d.ts +4 -4
  10. package/dist/app/enums/index.js +5 -5
  11. package/dist/app/enums/mode.enum.d.ts +1 -1
  12. package/dist/app/enums/mode.enum.js +12 -12
  13. package/dist/app/interfaces/i-app.d.ts +8 -8
  14. package/dist/company/enums/index.d.ts +2 -2
  15. package/dist/company/enums/index.js +3 -3
  16. package/dist/company/enums/keys.enum.d.ts +1 -1
  17. package/dist/company/enums/keys.enum.js +9 -9
  18. package/dist/company/enums/message-type.enum.d.ts +1 -1
  19. package/dist/company/enums/message-type.enum.js +7 -7
  20. package/dist/esm2022/app/entities/app.entity.mjs +7 -7
  21. package/dist/esm2022/app/enums/app-category.enum.mjs +32 -32
  22. package/dist/esm2022/app/enums/app-type.enum.mjs +8 -8
  23. package/dist/esm2022/app/enums/header-type.enum.mjs +6 -6
  24. package/dist/esm2022/app/enums/index.mjs +5 -5
  25. package/dist/esm2022/app/enums/mode.enum.mjs +12 -12
  26. package/dist/esm2022/app/interfaces/i-app.mjs +1 -1
  27. package/dist/esm2022/company/enums/index.mjs +3 -3
  28. package/dist/esm2022/company/enums/keys.enum.mjs +9 -9
  29. package/dist/esm2022/company/enums/message-type.enum.mjs +7 -7
  30. package/dist/esm2022/feature/entities/feature.entity.mjs +1 -1
  31. package/dist/esm2022/feature/interfaces/i-feature.mjs +1 -1
  32. package/dist/esm2022/installation/entities/installation-app.entity.mjs +3 -3
  33. package/dist/esm2022/installation/interfaces/i-installation-app.mjs +1 -1
  34. package/dist/esm2022/plan/entities/plan.entity.mjs +3 -3
  35. package/dist/esm2022/plan/enums/index.mjs +2 -2
  36. package/dist/esm2022/plan/enums/plans-identifier.enum.mjs +6 -6
  37. package/dist/esm2022/plan/interfaces/i-plan.mjs +1 -1
  38. package/dist/feature/entities/feature.entity.d.ts +2 -2
  39. package/dist/feature/interfaces/i-feature.d.ts +2 -2
  40. package/dist/fesm2022/cecon-interfaces.mjs +82 -82
  41. package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
  42. package/dist/installation/entities/installation-app.entity.d.ts +2 -2
  43. package/dist/installation/entities/installation-app.entity.js +1 -1
  44. package/dist/installation/interfaces/i-installation-app.d.ts +2 -2
  45. package/dist/package.json +1 -1
  46. package/dist/plan/entities/plan.entity.d.ts +2 -2
  47. package/dist/plan/entities/plan.entity.js +1 -1
  48. package/dist/plan/enums/index.d.ts +1 -1
  49. package/dist/plan/enums/index.js +2 -2
  50. package/dist/plan/enums/plans-identifier.enum.d.ts +1 -1
  51. package/dist/plan/enums/plans-identifier.enum.js +6 -6
  52. package/dist/plan/interfaces/i-plan.d.ts +2 -2
  53. package/package.json +1 -1
@@ -1,9 +1,9 @@
1
- import { AppModeEnum } from '../../app';
1
+ import { EAppMode } from '../../app';
2
2
  import { IInstallationApp } from '../interfaces/i-installation-app';
3
3
  export declare class InstallationAppEntity implements IInstallationApp {
4
4
  iconUrl: string;
5
5
  id: string;
6
- mode: AppModeEnum;
6
+ mode: EAppMode;
7
7
  name: string;
8
8
  version: string;
9
9
  constructor(data?: Partial<InstallationAppEntity>);
@@ -9,7 +9,7 @@ var InstallationAppEntity = /** @class */ (function () {
9
9
  // #region Properties (5)
10
10
  this.iconUrl = '';
11
11
  this.id = '';
12
- this.mode = app_1.AppModeEnum.NATI_GO;
12
+ this.mode = app_1.EAppMode.NATI_GO;
13
13
  this.name = '';
14
14
  this.version = '';
15
15
  if (data) {
@@ -1,8 +1,8 @@
1
- import { AppModeEnum } from '../../app';
1
+ import { EAppMode } from '../../app';
2
2
  export interface IInstallationApp {
3
3
  iconUrl: string;
4
4
  id: string;
5
- mode: AppModeEnum;
5
+ mode: EAppMode;
6
6
  name: string;
7
7
  version: string;
8
8
  }
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.0.98",
3
+ "version": "1.0.99",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,5 +1,5 @@
1
1
  import { IntervalTypeEnum } from '../../general/enums';
2
- import { EPlanIdentifierType } from '../enums/plans-identifier.enum';
2
+ import { EPlanIdentifier } from '../enums/plans-identifier.enum';
3
3
  import { IPlan } from '../interfaces';
4
4
  import { PlanFeatureEntity } from './feature.entity';
5
5
  export declare class PlanEntity implements IPlan {
@@ -8,7 +8,7 @@ export declare class PlanEntity implements IPlan {
8
8
  id: string;
9
9
  tags: string[];
10
10
  index: number;
11
- identifier: EPlanIdentifierType;
11
+ identifier: EPlanIdentifier;
12
12
  interval: number;
13
13
  intervalType: IntervalTypeEnum;
14
14
  name: string;
@@ -13,7 +13,7 @@ var PlanEntity = /** @class */ (function () {
13
13
  this.id = '';
14
14
  this.tags = [];
15
15
  this.index = 0;
16
- this.identifier = plans_identifier_enum_1.EPlanIdentifierType.NATIGO;
16
+ this.identifier = plans_identifier_enum_1.EPlanIdentifier.NATIGO;
17
17
  this.interval = 12;
18
18
  this.intervalType = enums_1.IntervalTypeEnum.MONTHS;
19
19
  this.name = '';
@@ -1,2 +1,2 @@
1
1
  export { EPlanFeatureType } from './plans-feature-type.enum';
2
- export { EPlanIdentifierType } from './plans-identifier.enum';
2
+ export { EPlanIdentifier } from './plans-identifier.enum';
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.EPlanIdentifierType = exports.EPlanFeatureType = void 0;
3
+ exports.EPlanIdentifier = exports.EPlanFeatureType = void 0;
4
4
  var plans_feature_type_enum_1 = require("./plans-feature-type.enum");
5
5
  Object.defineProperty(exports, "EPlanFeatureType", { enumerable: true, get: function () { return plans_feature_type_enum_1.EPlanFeatureType; } });
6
6
  var plans_identifier_enum_1 = require("./plans-identifier.enum");
7
- Object.defineProperty(exports, "EPlanIdentifierType", { enumerable: true, get: function () { return plans_identifier_enum_1.EPlanIdentifierType; } });
7
+ Object.defineProperty(exports, "EPlanIdentifier", { enumerable: true, get: function () { return plans_identifier_enum_1.EPlanIdentifier; } });
@@ -1,4 +1,4 @@
1
- export declare enum EPlanIdentifierType {
1
+ export declare enum EPlanIdentifier {
2
2
  NATIGO = "NATIGO-UNO",
3
3
  SAT_MANAGER_NAPOLEON = "SAT-MANAGER-NAPOLEON"
4
4
  }
@@ -1,8 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.EPlanIdentifierType = void 0;
4
- var EPlanIdentifierType;
5
- (function (EPlanIdentifierType) {
6
- EPlanIdentifierType["NATIGO"] = "NATIGO-UNO";
7
- EPlanIdentifierType["SAT_MANAGER_NAPOLEON"] = "SAT-MANAGER-NAPOLEON";
8
- })(EPlanIdentifierType || (exports.EPlanIdentifierType = EPlanIdentifierType = {}));
3
+ exports.EPlanIdentifier = void 0;
4
+ var EPlanIdentifier;
5
+ (function (EPlanIdentifier) {
6
+ EPlanIdentifier["NATIGO"] = "NATIGO-UNO";
7
+ EPlanIdentifier["SAT_MANAGER_NAPOLEON"] = "SAT-MANAGER-NAPOLEON";
8
+ })(EPlanIdentifier || (exports.EPlanIdentifier = EPlanIdentifier = {}));
@@ -1,11 +1,11 @@
1
1
  import { IntervalTypeEnum } from '../../general/enums';
2
- import { EPlanIdentifierType } from '../enums/plans-identifier.enum';
2
+ import { EPlanIdentifier } from '../enums';
3
3
  import { IPlanFeature } from './i-feature';
4
4
  export interface IPlan {
5
5
  createdAt: Date;
6
6
  features: IPlanFeature[];
7
7
  id: string;
8
- identifier: EPlanIdentifierType;
8
+ identifier: EPlanIdentifier;
9
9
  index: number;
10
10
  interval: number;
11
11
  intervalType: IntervalTypeEnum;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cecon-interfaces",
3
- "version": "1.0.98",
3
+ "version": "1.0.99",
4
4
  "description": "Interfaces de Projetos Cecon",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",