law-common 2.8.1-beta.2 → 2.8.1-beta.20
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/src/api/index.d.ts +2 -0
- package/dist/src/api/index.js +2 -0
- package/dist/src/api/interface/reimbursement.entity.response.d.ts +31 -2
- package/dist/src/api/interface/reimbursement_expense.api.d.ts +3 -0
- package/dist/src/api/interface/reimbursement_expense.api.js +2 -0
- package/dist/src/api/interface/reimbursement_history.api.d.ts +3 -0
- package/dist/src/api/interface/reimbursement_history.api.js +2 -0
- package/dist/src/entities/enums/reimbursement.entity.enum.d.ts +17 -15
- package/dist/src/entities/enums/reimbursement.entity.enum.js +67 -18
- package/dist/src/entities/index.d.ts +2 -0
- package/dist/src/entities/index.js +2 -0
- package/dist/src/entities/interface/reimbursement.entity.interface.d.ts +19 -10
- package/dist/src/entities/interface/reimbursement_expense.entity.interface.d.ts +19 -0
- package/dist/src/entities/interface/reimbursement_expense.entity.interface.js +2 -0
- package/dist/src/entities/interface/reimbursement_history.entity.interface.d.ts +14 -0
- package/dist/src/entities/interface/reimbursement_history.entity.interface.js +5 -0
- package/dist/src/enums/error.key.enum.d.ts +2 -1
- package/dist/src/enums/error.key.enum.js +1 -0
- package/package.json +1 -1
package/dist/src/api/index.d.ts
CHANGED
|
@@ -61,3 +61,5 @@ export * from "./interface/billing.flow.update.dto";
|
|
|
61
61
|
export * from "./interface/timesheet.history.api";
|
|
62
62
|
export * from "./interface/billing.history.api";
|
|
63
63
|
export * from "./interface/billing_timesheet_history.api";
|
|
64
|
+
export * from "./interface/reimbursement_history.api";
|
|
65
|
+
export * from "./interface/reimbursement_expense.api";
|
package/dist/src/api/index.js
CHANGED
|
@@ -77,3 +77,5 @@ __exportStar(require("./interface/billing.flow.update.dto"), exports);
|
|
|
77
77
|
__exportStar(require("./interface/timesheet.history.api"), exports);
|
|
78
78
|
__exportStar(require("./interface/billing.history.api"), exports);
|
|
79
79
|
__exportStar(require("./interface/billing_timesheet_history.api"), exports);
|
|
80
|
+
__exportStar(require("./interface/reimbursement_history.api"), exports);
|
|
81
|
+
__exportStar(require("./interface/reimbursement_expense.api"), exports);
|
|
@@ -1,12 +1,41 @@
|
|
|
1
|
-
import { IApiEntity, IReimbursementEntity } from "../../entities";
|
|
1
|
+
import { IApiEntity, IReimbursementEntity, ReimbursementActionEnum, ReimbursementActionSubRowEnum, ReimbursementStatusEnum, ReimbursementSubRowState } from "../../entities";
|
|
2
2
|
import { IProjectEntityGet } from "./project.entity.response";
|
|
3
|
+
import { IReimbursementExpenseApiEntityArray } from "./reimbursement_expense.api";
|
|
3
4
|
import { IUserApiEntity } from "./user.entity.api";
|
|
4
5
|
export type IReimbursementApiEntity = IApiEntity<IReimbursementEntity>;
|
|
5
6
|
export type IReimbursementApiEntityArray = IReimbursementApiEntity[];
|
|
6
7
|
export type IReimbursementEntityGet = {
|
|
7
|
-
reimbursements:
|
|
8
|
+
reimbursements: IReimbursementResponse[];
|
|
8
9
|
users: {
|
|
9
10
|
[key: string]: IUserApiEntity;
|
|
10
11
|
};
|
|
11
12
|
projects: IProjectEntityGet;
|
|
12
13
|
};
|
|
14
|
+
export type IReimbursementFlowConfig = {
|
|
15
|
+
parent: {
|
|
16
|
+
[key in ReimbursementStatusEnum]?: {
|
|
17
|
+
actions: {
|
|
18
|
+
[key in ReimbursementActionEnum]?: {
|
|
19
|
+
permissions: string[];
|
|
20
|
+
next?: (data: IReimbursementFlowContextData) => ReimbursementStatusEnum;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
child: {
|
|
26
|
+
[key in ReimbursementSubRowState]?: {
|
|
27
|
+
actions: {
|
|
28
|
+
[key in ReimbursementActionSubRowEnum]?: {
|
|
29
|
+
permissions: string[];
|
|
30
|
+
next?: () => ReimbursementSubRowState;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
export type IReimbursementFlowContextData = {
|
|
37
|
+
expenseDetails: IReimbursementExpenseApiEntityArray;
|
|
38
|
+
};
|
|
39
|
+
export type IReimbursementResponse = IReimbursementApiEntity & {
|
|
40
|
+
expenseDetails: IReimbursementExpenseApiEntityArray;
|
|
41
|
+
};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export declare enum ReimbursementBillingTypeEnum {
|
|
2
2
|
BILLABLE = "BILLABLE",
|
|
3
|
-
NON_BILLABLE = "NON_BILLABLE"
|
|
3
|
+
NON_BILLABLE = "NON_BILLABLE",
|
|
4
|
+
HYBRID = "HYBRID"
|
|
4
5
|
}
|
|
5
6
|
export declare enum ReimbursementBillingPresentEnum {
|
|
6
7
|
YES = "YES",
|
|
@@ -17,12 +18,14 @@ export declare enum ReimbursementStatusEnum {
|
|
|
17
18
|
REJECTED = "REJECTED",
|
|
18
19
|
PARTIALLY_APPROVED = "PARTIALLY_APPROVED",
|
|
19
20
|
PAYMENT_PENDING = "PAYMENT_PENDING",
|
|
20
|
-
PAYMENT_DISBURSE = "PAYMENT_DISBURSE"
|
|
21
|
+
PAYMENT_DISBURSE = "PAYMENT_DISBURSE",
|
|
22
|
+
DELETED = "DELETED"
|
|
21
23
|
}
|
|
22
24
|
export declare enum ReimbursementSubRowState {
|
|
23
25
|
PENDING = "pending",
|
|
24
26
|
APPROVED = "approved",
|
|
25
|
-
|
|
27
|
+
REJECTED = "rejected",
|
|
28
|
+
DELETED = "deleted"
|
|
26
29
|
}
|
|
27
30
|
export declare enum ReimbursementPaymentStatusEnum {
|
|
28
31
|
PAID = "PAID",
|
|
@@ -34,18 +37,17 @@ export declare enum ReimbursementActionEnum {
|
|
|
34
37
|
DELETE = "delete",
|
|
35
38
|
APPROVE = "approve",
|
|
36
39
|
REJECT = "reject",
|
|
37
|
-
|
|
40
|
+
UPDATE_PAYMENT = "update_payment"
|
|
38
41
|
}
|
|
39
|
-
export declare enum
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
PAYMENT_PENDING = "payment_pending",
|
|
45
|
-
PAYMENT_DISBURSE = "payment_disburse"
|
|
42
|
+
export declare enum ReimbursementActionSubRowEnum {
|
|
43
|
+
PENDING = "pending",
|
|
44
|
+
APPROVE = "approve",
|
|
45
|
+
REJECT = "reject",
|
|
46
|
+
DELETE = "delete"
|
|
46
47
|
}
|
|
47
|
-
export declare
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
48
|
+
export declare namespace ReimbursementActionEnum {
|
|
49
|
+
function getLabel(action: ReimbursementActionEnum): string;
|
|
50
|
+
}
|
|
51
|
+
export declare namespace ReimbursementActionSubRowEnum {
|
|
52
|
+
function getLabel(action: ReimbursementActionSubRowEnum): string;
|
|
51
53
|
}
|
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.ReimbursementActionSubRowEnum = exports.ReimbursementActionEnum = exports.ReimbursementPaymentStatusEnum = exports.ReimbursementSubRowState = exports.ReimbursementStatusEnum = exports.ReimbursementIncurredByEnum = exports.ReimbursementBillingPresentEnum = exports.ReimbursementBillingTypeEnum = void 0;
|
|
4
|
+
const error_key_enum_1 = require("../../enums/error.key.enum");
|
|
5
|
+
const exceptions_1 = require("../../exceptions");
|
|
4
6
|
var ReimbursementBillingTypeEnum;
|
|
5
7
|
(function (ReimbursementBillingTypeEnum) {
|
|
6
8
|
ReimbursementBillingTypeEnum["BILLABLE"] = "BILLABLE";
|
|
7
9
|
ReimbursementBillingTypeEnum["NON_BILLABLE"] = "NON_BILLABLE";
|
|
10
|
+
ReimbursementBillingTypeEnum["HYBRID"] = "HYBRID";
|
|
8
11
|
})(ReimbursementBillingTypeEnum || (exports.ReimbursementBillingTypeEnum = ReimbursementBillingTypeEnum = {}));
|
|
9
12
|
var ReimbursementBillingPresentEnum;
|
|
10
13
|
(function (ReimbursementBillingPresentEnum) {
|
|
@@ -25,12 +28,14 @@ var ReimbursementStatusEnum;
|
|
|
25
28
|
ReimbursementStatusEnum["PARTIALLY_APPROVED"] = "PARTIALLY_APPROVED";
|
|
26
29
|
ReimbursementStatusEnum["PAYMENT_PENDING"] = "PAYMENT_PENDING";
|
|
27
30
|
ReimbursementStatusEnum["PAYMENT_DISBURSE"] = "PAYMENT_DISBURSE";
|
|
31
|
+
ReimbursementStatusEnum["DELETED"] = "DELETED";
|
|
28
32
|
})(ReimbursementStatusEnum || (exports.ReimbursementStatusEnum = ReimbursementStatusEnum = {}));
|
|
29
33
|
var ReimbursementSubRowState;
|
|
30
34
|
(function (ReimbursementSubRowState) {
|
|
31
35
|
ReimbursementSubRowState["PENDING"] = "pending";
|
|
32
36
|
ReimbursementSubRowState["APPROVED"] = "approved";
|
|
33
|
-
ReimbursementSubRowState["
|
|
37
|
+
ReimbursementSubRowState["REJECTED"] = "rejected";
|
|
38
|
+
ReimbursementSubRowState["DELETED"] = "deleted";
|
|
34
39
|
})(ReimbursementSubRowState || (exports.ReimbursementSubRowState = ReimbursementSubRowState = {}));
|
|
35
40
|
var ReimbursementPaymentStatusEnum;
|
|
36
41
|
(function (ReimbursementPaymentStatusEnum) {
|
|
@@ -44,20 +49,64 @@ var ReimbursementActionEnum;
|
|
|
44
49
|
ReimbursementActionEnum["DELETE"] = "delete";
|
|
45
50
|
ReimbursementActionEnum["APPROVE"] = "approve";
|
|
46
51
|
ReimbursementActionEnum["REJECT"] = "reject";
|
|
47
|
-
ReimbursementActionEnum["
|
|
52
|
+
ReimbursementActionEnum["UPDATE_PAYMENT"] = "update_payment";
|
|
48
53
|
})(ReimbursementActionEnum || (exports.ReimbursementActionEnum = ReimbursementActionEnum = {}));
|
|
49
|
-
var
|
|
50
|
-
(function (
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
54
|
+
var ReimbursementActionSubRowEnum;
|
|
55
|
+
(function (ReimbursementActionSubRowEnum) {
|
|
56
|
+
ReimbursementActionSubRowEnum["PENDING"] = "pending";
|
|
57
|
+
ReimbursementActionSubRowEnum["APPROVE"] = "approve";
|
|
58
|
+
ReimbursementActionSubRowEnum["REJECT"] = "reject";
|
|
59
|
+
ReimbursementActionSubRowEnum["DELETE"] = "delete";
|
|
60
|
+
})(ReimbursementActionSubRowEnum || (exports.ReimbursementActionSubRowEnum = ReimbursementActionSubRowEnum = {}));
|
|
61
|
+
(function (ReimbursementActionEnum) {
|
|
62
|
+
const actionLabelMap = {
|
|
63
|
+
[ReimbursementActionEnum.VIEW]: "View",
|
|
64
|
+
[ReimbursementActionEnum.EDIT]: "Edit",
|
|
65
|
+
[ReimbursementActionEnum.DELETE]: "Delete",
|
|
66
|
+
[ReimbursementActionEnum.APPROVE]: "Approve",
|
|
67
|
+
[ReimbursementActionEnum.REJECT]: "Reject",
|
|
68
|
+
[ReimbursementActionEnum.UPDATE_PAYMENT]: "Update Payment",
|
|
69
|
+
};
|
|
70
|
+
function getLabel(action) {
|
|
71
|
+
if (!Object.values(ReimbursementActionEnum).includes(action)) {
|
|
72
|
+
throw new exceptions_1.AppBadRequestException({
|
|
73
|
+
key: error_key_enum_1.ErrorKeyEnum.REIMBURSEMENT_FLOW_ACTION,
|
|
74
|
+
message: ["Invalid action value"],
|
|
75
|
+
});
|
|
76
|
+
}
|
|
77
|
+
const label = actionLabelMap[action];
|
|
78
|
+
if (!label) {
|
|
79
|
+
throw new exceptions_1.AppBadRequestException({
|
|
80
|
+
key: error_key_enum_1.ErrorKeyEnum.REIMBURSEMENT_FLOW_ACTION,
|
|
81
|
+
message: ["Invalid action value"],
|
|
82
|
+
});
|
|
83
|
+
}
|
|
84
|
+
return label;
|
|
85
|
+
}
|
|
86
|
+
ReimbursementActionEnum.getLabel = getLabel;
|
|
87
|
+
})(ReimbursementActionEnum || (exports.ReimbursementActionEnum = ReimbursementActionEnum = {}));
|
|
88
|
+
(function (ReimbursementActionSubRowEnum) {
|
|
89
|
+
const actionLabelMap = {
|
|
90
|
+
[ReimbursementActionSubRowEnum.PENDING]: "Pending",
|
|
91
|
+
[ReimbursementActionSubRowEnum.APPROVE]: "Approve",
|
|
92
|
+
[ReimbursementActionSubRowEnum.REJECT]: "Reject",
|
|
93
|
+
[ReimbursementActionSubRowEnum.DELETE]: "delete",
|
|
94
|
+
};
|
|
95
|
+
function getLabel(action) {
|
|
96
|
+
if (!Object.values(ReimbursementActionSubRowEnum).includes(action)) {
|
|
97
|
+
throw new exceptions_1.AppBadRequestException({
|
|
98
|
+
key: error_key_enum_1.ErrorKeyEnum.REIMBURSEMENT_FLOW_ACTION,
|
|
99
|
+
message: ["Invalid action value"],
|
|
100
|
+
});
|
|
101
|
+
}
|
|
102
|
+
const label = actionLabelMap[action];
|
|
103
|
+
if (!label) {
|
|
104
|
+
throw new exceptions_1.AppBadRequestException({
|
|
105
|
+
key: error_key_enum_1.ErrorKeyEnum.REIMBURSEMENT_FLOW_ACTION,
|
|
106
|
+
message: ["Invalid action value"],
|
|
107
|
+
});
|
|
108
|
+
}
|
|
109
|
+
return label;
|
|
110
|
+
}
|
|
111
|
+
ReimbursementActionSubRowEnum.getLabel = getLabel;
|
|
112
|
+
})(ReimbursementActionSubRowEnum || (exports.ReimbursementActionSubRowEnum = ReimbursementActionSubRowEnum = {}));
|
|
@@ -44,3 +44,5 @@ export * from "./enums/timesheet.action.enum";
|
|
|
44
44
|
export * from "./enums/billing.action.enum";
|
|
45
45
|
export * from "./enums/configuration.type.enum";
|
|
46
46
|
export * from "./enums/project_user_status.enum";
|
|
47
|
+
export * from "./interface/reimbursement_history.entity.interface";
|
|
48
|
+
export * from "./interface/reimbursement_expense.entity.interface";
|
|
@@ -60,3 +60,5 @@ __exportStar(require("./enums/timesheet.action.enum"), exports);
|
|
|
60
60
|
__exportStar(require("./enums/billing.action.enum"), exports);
|
|
61
61
|
__exportStar(require("./enums/configuration.type.enum"), exports);
|
|
62
62
|
__exportStar(require("./enums/project_user_status.enum"), exports);
|
|
63
|
+
__exportStar(require("./interface/reimbursement_history.entity.interface"), exports);
|
|
64
|
+
__exportStar(require("./interface/reimbursement_expense.entity.interface"), exports);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ReimbursementActionEnum, ReimbursementBillingPresentEnum, ReimbursementBillingTypeEnum, ReimbursementIncurredByEnum, ReimbursementPaymentStatusEnum, ReimbursementStatusEnum, ReimbursementSubRowState } from "../enums/reimbursement.entity.enum";
|
|
1
|
+
import { ReimbursementActionEnum, ReimbursementActionSubRowEnum, ReimbursementBillingPresentEnum, ReimbursementBillingTypeEnum, ReimbursementIncurredByEnum, ReimbursementPaymentStatusEnum, ReimbursementStatusEnum, ReimbursementSubRowState } from "../enums/reimbursement.entity.enum";
|
|
2
2
|
import { IAuditColumnEntity } from "./audit-column.entity.interface";
|
|
3
3
|
import { IEntityCreateDto, IEntityFilterData, IEntityUpdateDto } from "./entity.utils.interface";
|
|
4
4
|
export interface IReimbursementEntity extends IAuditColumnEntity {
|
|
@@ -8,12 +8,7 @@ export interface IReimbursementEntity extends IAuditColumnEntity {
|
|
|
8
8
|
amount: number;
|
|
9
9
|
billNo?: string;
|
|
10
10
|
expenseIncurredBy: ReimbursementIncurredByEnum;
|
|
11
|
-
reimbursementType: string;
|
|
12
11
|
billPresent: ReimbursementBillingPresentEnum;
|
|
13
|
-
split: boolean;
|
|
14
|
-
expenseDetailsJson: string;
|
|
15
|
-
projectIdsCsv: string;
|
|
16
|
-
userIdsCsv: string;
|
|
17
12
|
description: string;
|
|
18
13
|
attachmentUrlsCsv?: string;
|
|
19
14
|
status: ReimbursementStatusEnum;
|
|
@@ -24,20 +19,21 @@ export interface IReimbursementEntity extends IAuditColumnEntity {
|
|
|
24
19
|
approvedBy?: number;
|
|
25
20
|
}
|
|
26
21
|
export interface IReimbursementExpenseDetails {
|
|
27
|
-
members: number[];
|
|
28
22
|
details?: IReimbursementExpenseAllocation[];
|
|
29
23
|
}
|
|
30
24
|
export interface IReimbursementExpenseAllocation {
|
|
31
|
-
|
|
25
|
+
userId: number;
|
|
32
26
|
projectId: number;
|
|
33
27
|
amount: number;
|
|
28
|
+
expenseType: string;
|
|
34
29
|
state?: ReimbursementSubRowState;
|
|
30
|
+
action?: ReimbursementActionSubRowEnum;
|
|
35
31
|
}
|
|
36
32
|
export interface IReimbursementCreateDtoExtra {
|
|
37
|
-
expenseDetails:
|
|
33
|
+
expenseDetails: IReimbursementExpenseAllocation[];
|
|
38
34
|
attachmentDocumentUrls?: string[];
|
|
39
35
|
}
|
|
40
|
-
export type IReimbursementExclude = "
|
|
36
|
+
export type IReimbursementExclude = "billingType" | "attachmentUrlsCsv" | "amountReimbursed" | "processedBy" | "processedDate" | "approvedBy";
|
|
41
37
|
export interface IReimbursementEntityCreateDto extends Omit<IEntityCreateDto<IReimbursementEntity>, IReimbursementExclude>, IReimbursementCreateDtoExtra {
|
|
42
38
|
}
|
|
43
39
|
export interface IReimbursementUpdateDto extends IEntityUpdateDto<IReimbursementEntity> {
|
|
@@ -49,3 +45,16 @@ export interface IReimbursementActionDataDto {
|
|
|
49
45
|
action: ReimbursementActionEnum;
|
|
50
46
|
remark?: string;
|
|
51
47
|
}
|
|
48
|
+
export interface IReimbursementUpdateDto extends IEntityUpdateDto<IReimbursementEntity> {
|
|
49
|
+
expenseDetails: IReimbursementExpenseAllocation[];
|
|
50
|
+
actionData?: IReimbursementActionDataDto;
|
|
51
|
+
}
|
|
52
|
+
export interface IReimbursementRowData {
|
|
53
|
+
id: number;
|
|
54
|
+
userId: number;
|
|
55
|
+
projectId: number;
|
|
56
|
+
expenseType: string;
|
|
57
|
+
amount: number;
|
|
58
|
+
state: ReimbursementSubRowState;
|
|
59
|
+
action?: ReimbursementActionSubRowEnum;
|
|
60
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ReimbursementActionSubRowEnum, ReimbursementSubRowState } from "../enums/reimbursement.entity.enum";
|
|
2
|
+
import { IAuditColumnEntity } from "./audit-column.entity.interface";
|
|
3
|
+
import { IEntityCreateDto, IEntityUpdateDto } from "./entity.utils.interface";
|
|
4
|
+
export interface IReimbursementExpenseEntity extends IAuditColumnEntity {
|
|
5
|
+
id: number;
|
|
6
|
+
reimbursementId: number;
|
|
7
|
+
userId: number;
|
|
8
|
+
projectId: number;
|
|
9
|
+
expenseType: string;
|
|
10
|
+
amount: number;
|
|
11
|
+
state?: ReimbursementSubRowState;
|
|
12
|
+
}
|
|
13
|
+
export interface IReimbursementExpenseEntityCreateDto extends IEntityCreateDto<IReimbursementExpenseEntity> {
|
|
14
|
+
id?: number;
|
|
15
|
+
}
|
|
16
|
+
export interface IReimbursementExpenseEntityUpdateDto extends IEntityUpdateDto<IReimbursementExpenseEntity> {
|
|
17
|
+
id?: number;
|
|
18
|
+
action?: ReimbursementActionSubRowEnum;
|
|
19
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { HistoryOperationEnum } from "../enums/history_operation.enum";
|
|
2
|
+
import { IAuditColumnEntity } from "./audit-column.entity.interface";
|
|
3
|
+
import { IEntityCreateDto, IEntityFilterData } from "./entity.utils.interface";
|
|
4
|
+
export interface IReimbursementHistoryEntity extends IAuditColumnEntity {
|
|
5
|
+
id: number;
|
|
6
|
+
entityId: number;
|
|
7
|
+
operation: HistoryOperationEnum;
|
|
8
|
+
data: string;
|
|
9
|
+
}
|
|
10
|
+
export interface IReimbursementHistoryCreateDto extends IEntityCreateDto<IReimbursementHistoryEntity> {
|
|
11
|
+
}
|
|
12
|
+
export interface IReimbursementHistorySearchDto extends IEntityFilterData<IReimbursementHistoryEntity> {
|
|
13
|
+
}
|
|
14
|
+
export declare const reimbursementHistoryExcludeKeys: string[];
|
|
@@ -2,5 +2,6 @@ export declare enum ErrorKeyEnum {
|
|
|
2
2
|
TIME_UNIT = "TIME_UNIT",
|
|
3
3
|
CURRENCY = "CURRENCY",
|
|
4
4
|
TIMESHEET_FLOW_ACTION = "TIMESHEET_FLOW_ACTION",
|
|
5
|
-
BILLING_FLOW_ACTION = "BILLING_FLOW_ACTION"
|
|
5
|
+
BILLING_FLOW_ACTION = "BILLING_FLOW_ACTION",
|
|
6
|
+
REIMBURSEMENT_FLOW_ACTION = "REIMBURSEMENT_FLOW_ACTION"
|
|
6
7
|
}
|
|
@@ -7,4 +7,5 @@ var ErrorKeyEnum;
|
|
|
7
7
|
ErrorKeyEnum["CURRENCY"] = "CURRENCY";
|
|
8
8
|
ErrorKeyEnum["TIMESHEET_FLOW_ACTION"] = "TIMESHEET_FLOW_ACTION";
|
|
9
9
|
ErrorKeyEnum["BILLING_FLOW_ACTION"] = "BILLING_FLOW_ACTION";
|
|
10
|
+
ErrorKeyEnum["REIMBURSEMENT_FLOW_ACTION"] = "REIMBURSEMENT_FLOW_ACTION";
|
|
10
11
|
})(ErrorKeyEnum || (exports.ErrorKeyEnum = ErrorKeyEnum = {}));
|