@platform-modules/foreign-ministry 1.1.54 → 1.1.55
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.
|
@@ -3,6 +3,28 @@ export declare enum MembershipType {
|
|
|
3
3
|
SINGLE = "Single",
|
|
4
4
|
FAMILY = "Family"
|
|
5
5
|
}
|
|
6
|
+
export declare enum RequestType {
|
|
7
|
+
EMPLOYEE_FAMILY = "Employee Family",
|
|
8
|
+
EMPLOYEE_SELF = "Employee Self",
|
|
9
|
+
NON_EMPLOYEE = "Non Employee"
|
|
10
|
+
}
|
|
11
|
+
export declare enum RequestStatus {
|
|
12
|
+
DRAFT = "Draft",
|
|
13
|
+
SUBMITTED = "Submitted",
|
|
14
|
+
PENDING = "Pending",
|
|
15
|
+
IN_PROGRESS = "In Progress",
|
|
16
|
+
APPROVED = "Approved",
|
|
17
|
+
REJECTED = "Rejected",
|
|
18
|
+
COMPLETED = "Completed",
|
|
19
|
+
CANCELLED = "Cancelled"
|
|
20
|
+
}
|
|
21
|
+
export declare enum DiplomaticClubCardApprovalStatus {
|
|
22
|
+
PENDING = "Pending",
|
|
23
|
+
APPROVED = "Approved",
|
|
24
|
+
REJECTED = "Rejected",
|
|
25
|
+
SKIPPED = "Skipped",
|
|
26
|
+
IN_PROGRESS = "In Progress"
|
|
27
|
+
}
|
|
6
28
|
export declare class SubscriptionAmounts extends BaseModel {
|
|
7
29
|
membership_type: MembershipType;
|
|
8
30
|
amount: number;
|
|
@@ -9,7 +9,7 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.SubscriptionAmounts = exports.MembershipType = void 0;
|
|
12
|
+
exports.SubscriptionAmounts = exports.DiplomaticClubCardApprovalStatus = exports.RequestStatus = exports.RequestType = exports.MembershipType = void 0;
|
|
13
13
|
const typeorm_1 = require("typeorm");
|
|
14
14
|
const BaseModel_1 = require("./BaseModel");
|
|
15
15
|
var MembershipType;
|
|
@@ -17,6 +17,31 @@ var MembershipType;
|
|
|
17
17
|
MembershipType["SINGLE"] = "Single";
|
|
18
18
|
MembershipType["FAMILY"] = "Family";
|
|
19
19
|
})(MembershipType || (exports.MembershipType = MembershipType = {}));
|
|
20
|
+
var RequestType;
|
|
21
|
+
(function (RequestType) {
|
|
22
|
+
RequestType["EMPLOYEE_FAMILY"] = "Employee Family";
|
|
23
|
+
RequestType["EMPLOYEE_SELF"] = "Employee Self";
|
|
24
|
+
RequestType["NON_EMPLOYEE"] = "Non Employee";
|
|
25
|
+
})(RequestType || (exports.RequestType = RequestType = {}));
|
|
26
|
+
var RequestStatus;
|
|
27
|
+
(function (RequestStatus) {
|
|
28
|
+
RequestStatus["DRAFT"] = "Draft";
|
|
29
|
+
RequestStatus["SUBMITTED"] = "Submitted";
|
|
30
|
+
RequestStatus["PENDING"] = "Pending";
|
|
31
|
+
RequestStatus["IN_PROGRESS"] = "In Progress";
|
|
32
|
+
RequestStatus["APPROVED"] = "Approved";
|
|
33
|
+
RequestStatus["REJECTED"] = "Rejected";
|
|
34
|
+
RequestStatus["COMPLETED"] = "Completed";
|
|
35
|
+
RequestStatus["CANCELLED"] = "Cancelled";
|
|
36
|
+
})(RequestStatus || (exports.RequestStatus = RequestStatus = {}));
|
|
37
|
+
var DiplomaticClubCardApprovalStatus;
|
|
38
|
+
(function (DiplomaticClubCardApprovalStatus) {
|
|
39
|
+
DiplomaticClubCardApprovalStatus["PENDING"] = "Pending";
|
|
40
|
+
DiplomaticClubCardApprovalStatus["APPROVED"] = "Approved";
|
|
41
|
+
DiplomaticClubCardApprovalStatus["REJECTED"] = "Rejected";
|
|
42
|
+
DiplomaticClubCardApprovalStatus["SKIPPED"] = "Skipped";
|
|
43
|
+
DiplomaticClubCardApprovalStatus["IN_PROGRESS"] = "In Progress";
|
|
44
|
+
})(DiplomaticClubCardApprovalStatus || (exports.DiplomaticClubCardApprovalStatus = DiplomaticClubCardApprovalStatus = {}));
|
|
20
45
|
let SubscriptionAmounts = class SubscriptionAmounts extends BaseModel_1.BaseModel {
|
|
21
46
|
};
|
|
22
47
|
exports.SubscriptionAmounts = SubscriptionAmounts;
|
package/package.json
CHANGED
|
@@ -6,6 +6,31 @@ export enum MembershipType {
|
|
|
6
6
|
FAMILY = "Family"
|
|
7
7
|
}
|
|
8
8
|
|
|
9
|
+
export enum RequestType {
|
|
10
|
+
EMPLOYEE_FAMILY = "Employee Family",
|
|
11
|
+
EMPLOYEE_SELF = "Employee Self",
|
|
12
|
+
NON_EMPLOYEE = "Non Employee"
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
export enum RequestStatus {
|
|
16
|
+
DRAFT = "Draft",
|
|
17
|
+
SUBMITTED = "Submitted",
|
|
18
|
+
PENDING = "Pending",
|
|
19
|
+
IN_PROGRESS = "In Progress",
|
|
20
|
+
APPROVED = "Approved",
|
|
21
|
+
REJECTED = "Rejected",
|
|
22
|
+
COMPLETED = "Completed",
|
|
23
|
+
CANCELLED = "Cancelled"
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export enum DiplomaticClubCardApprovalStatus {
|
|
27
|
+
PENDING = "Pending",
|
|
28
|
+
APPROVED = "Approved",
|
|
29
|
+
REJECTED = "Rejected",
|
|
30
|
+
SKIPPED = "Skipped",
|
|
31
|
+
IN_PROGRESS = "In Progress"
|
|
32
|
+
}
|
|
33
|
+
|
|
9
34
|
@Entity({ name: 'subscription_amounts' })
|
|
10
35
|
export class SubscriptionAmounts extends BaseModel {
|
|
11
36
|
|