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.
- package/dist/app/entities/app.entity.d.ts +8 -8
- package/dist/app/entities/app.entity.js +3 -3
- package/dist/app/enums/app-category.enum.d.ts +1 -1
- package/dist/app/enums/app-category.enum.js +32 -32
- package/dist/app/enums/app-type.enum.d.ts +1 -1
- package/dist/app/enums/app-type.enum.js +8 -8
- package/dist/app/enums/header-type.enum.d.ts +1 -1
- package/dist/app/enums/header-type.enum.js +6 -6
- package/dist/app/enums/index.d.ts +4 -4
- package/dist/app/enums/index.js +5 -5
- package/dist/app/enums/mode.enum.d.ts +1 -1
- package/dist/app/enums/mode.enum.js +12 -12
- package/dist/app/interfaces/i-app.d.ts +8 -8
- package/dist/company/enums/index.d.ts +2 -2
- package/dist/company/enums/index.js +3 -3
- package/dist/company/enums/keys.enum.d.ts +1 -1
- package/dist/company/enums/keys.enum.js +9 -9
- package/dist/company/enums/message-type.enum.d.ts +1 -1
- package/dist/company/enums/message-type.enum.js +7 -7
- package/dist/esm2022/app/entities/app.entity.mjs +7 -7
- package/dist/esm2022/app/enums/app-category.enum.mjs +32 -32
- package/dist/esm2022/app/enums/app-type.enum.mjs +8 -8
- package/dist/esm2022/app/enums/header-type.enum.mjs +6 -6
- package/dist/esm2022/app/enums/index.mjs +5 -5
- package/dist/esm2022/app/enums/mode.enum.mjs +12 -12
- package/dist/esm2022/app/interfaces/i-app.mjs +1 -1
- package/dist/esm2022/company/enums/index.mjs +3 -3
- package/dist/esm2022/company/enums/keys.enum.mjs +9 -9
- package/dist/esm2022/company/enums/message-type.enum.mjs +7 -7
- package/dist/esm2022/feature/entities/feature.entity.mjs +1 -1
- package/dist/esm2022/feature/interfaces/i-feature.mjs +1 -1
- package/dist/esm2022/installation/entities/installation-app.entity.mjs +3 -3
- package/dist/esm2022/installation/interfaces/i-installation-app.mjs +1 -1
- package/dist/esm2022/plan/entities/plan.entity.mjs +3 -3
- package/dist/esm2022/plan/enums/index.mjs +2 -2
- package/dist/esm2022/plan/enums/plans-identifier.enum.mjs +6 -6
- package/dist/esm2022/plan/interfaces/i-plan.mjs +1 -1
- package/dist/feature/entities/feature.entity.d.ts +2 -2
- package/dist/feature/interfaces/i-feature.d.ts +2 -2
- package/dist/fesm2022/cecon-interfaces.mjs +82 -82
- package/dist/fesm2022/cecon-interfaces.mjs.map +1 -1
- package/dist/installation/entities/installation-app.entity.d.ts +2 -2
- package/dist/installation/entities/installation-app.entity.js +1 -1
- package/dist/installation/interfaces/i-installation-app.d.ts +2 -2
- package/dist/package.json +1 -1
- package/dist/plan/entities/plan.entity.d.ts +2 -2
- package/dist/plan/entities/plan.entity.js +1 -1
- package/dist/plan/enums/index.d.ts +1 -1
- package/dist/plan/enums/index.js +2 -2
- package/dist/plan/enums/plans-identifier.enum.d.ts +1 -1
- package/dist/plan/enums/plans-identifier.enum.js +6 -6
- package/dist/plan/interfaces/i-plan.d.ts +2 -2
- package/package.json +1 -1
@@ -1,9 +1,9 @@
|
|
1
|
-
import {
|
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:
|
6
|
+
mode: EAppMode;
|
7
7
|
name: string;
|
8
8
|
version: string;
|
9
9
|
constructor(data?: Partial<InstallationAppEntity>);
|
package/dist/package.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
import { IntervalTypeEnum } from '../../general/enums';
|
2
|
-
import {
|
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:
|
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.
|
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 {
|
2
|
+
export { EPlanIdentifier } from './plans-identifier.enum';
|
package/dist/plan/enums/index.js
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.
|
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, "
|
7
|
+
Object.defineProperty(exports, "EPlanIdentifier", { enumerable: true, get: function () { return plans_identifier_enum_1.EPlanIdentifier; } });
|
@@ -1,8 +1,8 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.
|
4
|
-
var
|
5
|
-
(function (
|
6
|
-
|
7
|
-
|
8
|
-
})(
|
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 {
|
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:
|
8
|
+
identifier: EPlanIdentifier;
|
9
9
|
index: number;
|
10
10
|
interval: number;
|
11
11
|
intervalType: IntervalTypeEnum;
|