law-common 2.9.0 → 2.9.2-beta.5
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/bank.entity.response.d.ts +11 -0
- package/dist/src/api/interface/bank.update.dto.interface.d.ts +2 -1
- package/dist/src/api/interface/bank_history.api.d.ts +3 -0
- package/dist/src/api/interface/bank_history.api.js +2 -0
- package/dist/src/api/interface/bank_history_entity.response.d.ts +12 -0
- package/dist/src/api/interface/bank_history_entity.response.js +2 -0
- package/dist/src/entities/enums/bank_action.enum.d.ts +12 -0
- package/dist/src/entities/enums/bank_action.enum.js +43 -0
- package/dist/src/entities/enums/bank_entity_keys.enum.d.ts +17 -0
- package/dist/src/entities/enums/bank_entity_keys.enum.js +51 -0
- package/dist/src/entities/enums/bank_status.enum.d.ts +13 -0
- package/dist/src/entities/enums/bank_status.enum.js +26 -0
- package/dist/src/entities/index.d.ts +4 -0
- package/dist/src/entities/index.js +4 -0
- package/dist/src/entities/interface/bank.entity.interface.d.ts +9 -1
- package/dist/src/entities/interface/bank_history.entity.interface.d.ts +37 -0
- package/dist/src/entities/interface/bank_history.entity.interface.js +5 -0
- package/dist/src/enums/error.key.enum.d.ts +3 -1
- package/dist/src/enums/error.key.enum.js +2 -0
- package/package.json +33 -33
package/dist/src/api/index.d.ts
CHANGED
|
@@ -64,3 +64,5 @@ export * from "./interface/billing_timesheet_history.api";
|
|
|
64
64
|
export * from "./interface/reimbursement_history.api";
|
|
65
65
|
export * from "./interface/reimbursement_expense.api";
|
|
66
66
|
export * from "./interface/timesheet_history_entity.response";
|
|
67
|
+
export * from "./interface/bank_history.api";
|
|
68
|
+
export * from "./interface/bank_history_entity.response";
|
package/dist/src/api/index.js
CHANGED
|
@@ -80,3 +80,5 @@ __exportStar(require("./interface/billing_timesheet_history.api"), exports);
|
|
|
80
80
|
__exportStar(require("./interface/reimbursement_history.api"), exports);
|
|
81
81
|
__exportStar(require("./interface/reimbursement_expense.api"), exports);
|
|
82
82
|
__exportStar(require("./interface/timesheet_history_entity.response"), exports);
|
|
83
|
+
__exportStar(require("./interface/bank_history.api"), exports);
|
|
84
|
+
__exportStar(require("./interface/bank_history_entity.response"), exports);
|
|
@@ -1,4 +1,15 @@
|
|
|
1
|
+
import { BankActionEnum, BankStatusEnum } from "../../entities";
|
|
1
2
|
import { IBankApiEntity } from "./bank.entity.api";
|
|
2
3
|
import { IBaseResponse } from "./base.response.interface";
|
|
3
4
|
export type IBankApiEntityResponse = IBaseResponse<IBankApiEntity>;
|
|
4
5
|
export type IBankApiEntityResponseArray = IBaseResponse<IBankApiEntity[]>;
|
|
6
|
+
export type IBankFlowConfig = {
|
|
7
|
+
[key in BankStatusEnum]?: {
|
|
8
|
+
actions: {
|
|
9
|
+
[key in BankActionEnum]?: {
|
|
10
|
+
permissions: string[];
|
|
11
|
+
next: () => BankStatusEnum;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
};
|
|
15
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export type IBankHistoryEntitySearchByConstraintResponse = {
|
|
2
|
+
id: number;
|
|
3
|
+
createdBy: number;
|
|
4
|
+
changedLogs: IBankHistoryEntityChangedLogs[];
|
|
5
|
+
};
|
|
6
|
+
export type IBankHistoryEntityChangedLogs = {
|
|
7
|
+
key: string;
|
|
8
|
+
label: string;
|
|
9
|
+
newValue: string | number;
|
|
10
|
+
oldValue: string | number;
|
|
11
|
+
timeStamp: string;
|
|
12
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare enum BankActionEnum {
|
|
2
|
+
VIEW = "view",
|
|
3
|
+
EDIT = "edit",
|
|
4
|
+
DELETE = "delete",
|
|
5
|
+
CREATE = "create",
|
|
6
|
+
APPROVE = "approve",
|
|
7
|
+
REJECT = "reject",
|
|
8
|
+
RECALL = "recall"
|
|
9
|
+
}
|
|
10
|
+
export declare namespace BankActionEnum {
|
|
11
|
+
function getLabel(action: BankActionEnum): string;
|
|
12
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BankActionEnum = void 0;
|
|
4
|
+
const error_key_enum_1 = require("../../enums/error.key.enum");
|
|
5
|
+
const exceptions_1 = require("../../exceptions");
|
|
6
|
+
var BankActionEnum;
|
|
7
|
+
(function (BankActionEnum) {
|
|
8
|
+
BankActionEnum["VIEW"] = "view";
|
|
9
|
+
BankActionEnum["EDIT"] = "edit";
|
|
10
|
+
BankActionEnum["DELETE"] = "delete";
|
|
11
|
+
BankActionEnum["CREATE"] = "create";
|
|
12
|
+
BankActionEnum["APPROVE"] = "approve";
|
|
13
|
+
BankActionEnum["REJECT"] = "reject";
|
|
14
|
+
BankActionEnum["RECALL"] = "recall";
|
|
15
|
+
})(BankActionEnum || (exports.BankActionEnum = BankActionEnum = {}));
|
|
16
|
+
(function (BankActionEnum) {
|
|
17
|
+
const actionLabelMap = {
|
|
18
|
+
[BankActionEnum.APPROVE]: "Approve",
|
|
19
|
+
[BankActionEnum.VIEW]: "View",
|
|
20
|
+
[BankActionEnum.EDIT]: "Edit",
|
|
21
|
+
[BankActionEnum.DELETE]: "Delete",
|
|
22
|
+
[BankActionEnum.CREATE]: "Create",
|
|
23
|
+
[BankActionEnum.REJECT]: "Reject",
|
|
24
|
+
[BankActionEnum.RECALL]: "Recall",
|
|
25
|
+
};
|
|
26
|
+
function getLabel(action) {
|
|
27
|
+
if (!Object.values(BankActionEnum).includes(action)) {
|
|
28
|
+
throw new exceptions_1.AppBadRequestException({
|
|
29
|
+
key: error_key_enum_1.ErrorKeyEnum.BANK_FLOW_ACTION,
|
|
30
|
+
message: ["Invalid action value"],
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
const label = actionLabelMap[action];
|
|
34
|
+
if (!label) {
|
|
35
|
+
throw new exceptions_1.AppBadRequestException({
|
|
36
|
+
key: error_key_enum_1.ErrorKeyEnum.BANK_FLOW_ACTION,
|
|
37
|
+
message: ["Invalid action value"],
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
return label;
|
|
41
|
+
}
|
|
42
|
+
BankActionEnum.getLabel = getLabel;
|
|
43
|
+
})(BankActionEnum || (exports.BankActionEnum = BankActionEnum = {}));
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export declare enum BankEntityKeysEnum {
|
|
2
|
+
id = "id",
|
|
3
|
+
accountName = "accountName",
|
|
4
|
+
organizationId = "organizationId",
|
|
5
|
+
name = "name",
|
|
6
|
+
accountNo = "accountNo",
|
|
7
|
+
branchAddress = "branchAddress",
|
|
8
|
+
micrCode = "micrCode",
|
|
9
|
+
ifscCode = "ifscCode",
|
|
10
|
+
emailForPaymentInfoCsv = "emailForPaymentInfoCsv",
|
|
11
|
+
status = "status",
|
|
12
|
+
remark = "remark"
|
|
13
|
+
}
|
|
14
|
+
export declare namespace BankEntityKeysEnum {
|
|
15
|
+
const keyLabelMap: Record<BankEntityKeysEnum, string>;
|
|
16
|
+
function getLabel(key: BankEntityKeysEnum): string;
|
|
17
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BankEntityKeysEnum = void 0;
|
|
4
|
+
const error_key_enum_1 = require("../../enums/error.key.enum");
|
|
5
|
+
const exceptions_1 = require("../../exceptions");
|
|
6
|
+
var BankEntityKeysEnum;
|
|
7
|
+
(function (BankEntityKeysEnum) {
|
|
8
|
+
BankEntityKeysEnum["id"] = "id";
|
|
9
|
+
BankEntityKeysEnum["accountName"] = "accountName";
|
|
10
|
+
BankEntityKeysEnum["organizationId"] = "organizationId";
|
|
11
|
+
BankEntityKeysEnum["name"] = "name";
|
|
12
|
+
BankEntityKeysEnum["accountNo"] = "accountNo";
|
|
13
|
+
BankEntityKeysEnum["branchAddress"] = "branchAddress";
|
|
14
|
+
BankEntityKeysEnum["micrCode"] = "micrCode";
|
|
15
|
+
BankEntityKeysEnum["ifscCode"] = "ifscCode";
|
|
16
|
+
BankEntityKeysEnum["emailForPaymentInfoCsv"] = "emailForPaymentInfoCsv";
|
|
17
|
+
BankEntityKeysEnum["status"] = "status";
|
|
18
|
+
BankEntityKeysEnum["remark"] = "remark";
|
|
19
|
+
})(BankEntityKeysEnum || (exports.BankEntityKeysEnum = BankEntityKeysEnum = {}));
|
|
20
|
+
(function (BankEntityKeysEnum) {
|
|
21
|
+
BankEntityKeysEnum.keyLabelMap = {
|
|
22
|
+
[BankEntityKeysEnum.id]: "Bank ID",
|
|
23
|
+
[BankEntityKeysEnum.accountName]: "Account Name",
|
|
24
|
+
[BankEntityKeysEnum.organizationId]: "Organization ID",
|
|
25
|
+
[BankEntityKeysEnum.name]: "Bank Name",
|
|
26
|
+
[BankEntityKeysEnum.accountNo]: "Account Number",
|
|
27
|
+
[BankEntityKeysEnum.branchAddress]: "Branch Address",
|
|
28
|
+
[BankEntityKeysEnum.micrCode]: "MICR Code",
|
|
29
|
+
[BankEntityKeysEnum.ifscCode]: "IFSC Code",
|
|
30
|
+
[BankEntityKeysEnum.emailForPaymentInfoCsv]: "Email for Payment Info CSV",
|
|
31
|
+
[BankEntityKeysEnum.status]: "Status",
|
|
32
|
+
[BankEntityKeysEnum.remark]: "Remark",
|
|
33
|
+
};
|
|
34
|
+
function getLabel(key) {
|
|
35
|
+
if (!Object.values(BankEntityKeysEnum).includes(key)) {
|
|
36
|
+
throw new exceptions_1.AppBadRequestException({
|
|
37
|
+
key: error_key_enum_1.ErrorKeyEnum.BANK_KEY,
|
|
38
|
+
message: ["Invalid key name"],
|
|
39
|
+
});
|
|
40
|
+
}
|
|
41
|
+
const label = BankEntityKeysEnum.keyLabelMap[key];
|
|
42
|
+
if (!label) {
|
|
43
|
+
throw new exceptions_1.AppBadRequestException({
|
|
44
|
+
key: error_key_enum_1.ErrorKeyEnum.BANK_KEY,
|
|
45
|
+
message: ["Invalid key name"],
|
|
46
|
+
});
|
|
47
|
+
}
|
|
48
|
+
return label;
|
|
49
|
+
}
|
|
50
|
+
BankEntityKeysEnum.getLabel = getLabel;
|
|
51
|
+
})(BankEntityKeysEnum || (exports.BankEntityKeysEnum = BankEntityKeysEnum = {}));
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export declare enum BankStatusEnum {
|
|
2
|
+
CREATE_APPROVAL = "create_approval",
|
|
3
|
+
EDIT_APPROVAL = "edit_approval",
|
|
4
|
+
DELETE_APPROVAL = "delete_approval",
|
|
5
|
+
REJECTED = "rejected",
|
|
6
|
+
APPROVED = "approved",
|
|
7
|
+
DELETED = "deleted",
|
|
8
|
+
RESOLVED_REJECTED = "resolved_rejected"
|
|
9
|
+
}
|
|
10
|
+
export declare namespace BankStatusEnum {
|
|
11
|
+
function getNames(): string[];
|
|
12
|
+
function parse(value: string): BankStatusEnum;
|
|
13
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BankStatusEnum = void 0;
|
|
4
|
+
var BankStatusEnum;
|
|
5
|
+
(function (BankStatusEnum) {
|
|
6
|
+
BankStatusEnum["CREATE_APPROVAL"] = "create_approval";
|
|
7
|
+
BankStatusEnum["EDIT_APPROVAL"] = "edit_approval";
|
|
8
|
+
BankStatusEnum["DELETE_APPROVAL"] = "delete_approval";
|
|
9
|
+
BankStatusEnum["REJECTED"] = "rejected";
|
|
10
|
+
BankStatusEnum["APPROVED"] = "approved";
|
|
11
|
+
BankStatusEnum["DELETED"] = "deleted";
|
|
12
|
+
BankStatusEnum["RESOLVED_REJECTED"] = "resolved_rejected";
|
|
13
|
+
})(BankStatusEnum || (exports.BankStatusEnum = BankStatusEnum = {}));
|
|
14
|
+
(function (BankStatusEnum) {
|
|
15
|
+
function getNames() {
|
|
16
|
+
return Object.values(BankStatusEnum).filter((value) => typeof value === "string");
|
|
17
|
+
}
|
|
18
|
+
BankStatusEnum.getNames = getNames;
|
|
19
|
+
function parse(value) {
|
|
20
|
+
if (Object.values(BankStatusEnum).includes(value)) {
|
|
21
|
+
return value;
|
|
22
|
+
}
|
|
23
|
+
throw new Error("Invalid bank details status");
|
|
24
|
+
}
|
|
25
|
+
BankStatusEnum.parse = parse;
|
|
26
|
+
})(BankStatusEnum || (exports.BankStatusEnum = BankStatusEnum = {}));
|
|
@@ -48,3 +48,7 @@ export * from "./interface/reimbursement_history.entity.interface";
|
|
|
48
48
|
export * from "./interface/reimbursement_expense.entity.interface";
|
|
49
49
|
export * from "./enums/entity_search_constraint_type.enum";
|
|
50
50
|
export * from "./enums/timesheet_entity_keys.enum";
|
|
51
|
+
export * from "./enums/bank_action.enum";
|
|
52
|
+
export * from "./enums/bank_status.enum";
|
|
53
|
+
export * from "./interface/bank_history.entity.interface";
|
|
54
|
+
export * from "./enums/bank_entity_keys.enum";
|
|
@@ -64,3 +64,7 @@ __exportStar(require("./interface/reimbursement_history.entity.interface"), expo
|
|
|
64
64
|
__exportStar(require("./interface/reimbursement_expense.entity.interface"), exports);
|
|
65
65
|
__exportStar(require("./enums/entity_search_constraint_type.enum"), exports);
|
|
66
66
|
__exportStar(require("./enums/timesheet_entity_keys.enum"), exports);
|
|
67
|
+
__exportStar(require("./enums/bank_action.enum"), exports);
|
|
68
|
+
__exportStar(require("./enums/bank_status.enum"), exports);
|
|
69
|
+
__exportStar(require("./interface/bank_history.entity.interface"), exports);
|
|
70
|
+
__exportStar(require("./enums/bank_entity_keys.enum"), exports);
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { BankActionEnum } from "../enums/bank_action.enum";
|
|
2
|
+
import { BankStatusEnum } from "../enums/bank_status.enum";
|
|
1
3
|
import { IAuditColumnEntity } from "./audit-column.entity.interface";
|
|
2
4
|
import { IEntityFilterData } from "./entity.utils.interface";
|
|
3
5
|
export interface IBankEntity extends IAuditColumnEntity {
|
|
@@ -9,6 +11,12 @@ export interface IBankEntity extends IAuditColumnEntity {
|
|
|
9
11
|
branchAddress: string;
|
|
10
12
|
micrCode: string;
|
|
11
13
|
ifscCode: string;
|
|
12
|
-
|
|
14
|
+
emailForPaymentInfoCsv: string;
|
|
15
|
+
status?: BankStatusEnum;
|
|
16
|
+
remark?: string;
|
|
17
|
+
}
|
|
18
|
+
export interface IBankActionDataDto {
|
|
19
|
+
action: BankActionEnum;
|
|
20
|
+
remark?: string;
|
|
13
21
|
}
|
|
14
22
|
export type IBankEntityFilterData = IEntityFilterData<IBankEntity>;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EntitySearchConstraintTypeEnum } from "../enums/entity_search_constraint_type.enum";
|
|
2
|
+
import { HistoryOperationEnum } from "../enums/history_operation.enum";
|
|
3
|
+
import { IAuditColumnEntity } from "./audit-column.entity.interface";
|
|
4
|
+
import { IEntityCreateDto, IEntityFilterData } from "./entity.utils.interface";
|
|
5
|
+
export interface IBankHistoryEntity extends IAuditColumnEntity {
|
|
6
|
+
id: number;
|
|
7
|
+
entityId: number;
|
|
8
|
+
operation: HistoryOperationEnum;
|
|
9
|
+
data: string;
|
|
10
|
+
}
|
|
11
|
+
export interface IBankHistoryCreateDto extends IEntityCreateDto<IBankHistoryEntity> {
|
|
12
|
+
}
|
|
13
|
+
export interface IBankHistorySearchDto extends IEntityFilterData<IBankHistoryEntity> {
|
|
14
|
+
}
|
|
15
|
+
export declare const bankHistoryExcludeKeys: string[];
|
|
16
|
+
export type IBankEntitySearchConstraint = {
|
|
17
|
+
entityId: number[];
|
|
18
|
+
constraint: {
|
|
19
|
+
since: IBankEntitySearchSinceConstraint;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
export type IBankEntitySearchSinceConstraint = {
|
|
23
|
+
type: EntitySearchConstraintTypeEnum;
|
|
24
|
+
columnKey: string;
|
|
25
|
+
value: number;
|
|
26
|
+
};
|
|
27
|
+
export type IBankHistoryParsed = {
|
|
28
|
+
parsedData: any;
|
|
29
|
+
id: number;
|
|
30
|
+
entityId: number;
|
|
31
|
+
operation: HistoryOperationEnum;
|
|
32
|
+
data: string;
|
|
33
|
+
createdOn: Date;
|
|
34
|
+
updatedOn: Date;
|
|
35
|
+
createdBy: number;
|
|
36
|
+
updatedBy: number;
|
|
37
|
+
};
|
|
@@ -5,5 +5,7 @@ export declare enum ErrorKeyEnum {
|
|
|
5
5
|
BILLING_FLOW_ACTION = "BILLING_FLOW_ACTION",
|
|
6
6
|
REIMBURSEMENT_FLOW_ACTION = "REIMBURSEMENT_FLOW_ACTION",
|
|
7
7
|
REIMBURSEMENT_EXPENSE_FLOW_ACTION = "REIMBURSEMENT_EXPENSE_FLOW_ACTION",
|
|
8
|
-
TIMESHEET_KEY = "TIMESHEET_KEY"
|
|
8
|
+
TIMESHEET_KEY = "TIMESHEET_KEY",
|
|
9
|
+
BANK_FLOW_ACTION = "BANK_FLOW_ACTION",
|
|
10
|
+
BANK_KEY = "BANK_KEY"
|
|
9
11
|
}
|
|
@@ -10,4 +10,6 @@ var ErrorKeyEnum;
|
|
|
10
10
|
ErrorKeyEnum["REIMBURSEMENT_FLOW_ACTION"] = "REIMBURSEMENT_FLOW_ACTION";
|
|
11
11
|
ErrorKeyEnum["REIMBURSEMENT_EXPENSE_FLOW_ACTION"] = "REIMBURSEMENT_EXPENSE_FLOW_ACTION";
|
|
12
12
|
ErrorKeyEnum["TIMESHEET_KEY"] = "TIMESHEET_KEY";
|
|
13
|
+
ErrorKeyEnum["BANK_FLOW_ACTION"] = "BANK_FLOW_ACTION";
|
|
14
|
+
ErrorKeyEnum["BANK_KEY"] = "BANK_KEY";
|
|
13
15
|
})(ErrorKeyEnum || (exports.ErrorKeyEnum = ErrorKeyEnum = {}));
|
package/package.json
CHANGED
|
@@ -1,35 +1,35 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
2
|
+
"name": "law-common",
|
|
3
|
+
"version": "2.9.2-beta.5",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist/**/*"
|
|
8
|
+
],
|
|
9
|
+
"scripts": {
|
|
10
|
+
"clean": "rm -rf dist",
|
|
11
|
+
"build": "npm run clean && tsc",
|
|
12
|
+
"publish:beta": "npm version prerelease --preid beta && git push && npm run build && npm publish --tag beta",
|
|
13
|
+
"publish:patch": "npm version patch && git push && npm run build && npm publish",
|
|
14
|
+
"publish:minor": "npm version minor && git push && npm run build && npm publish",
|
|
15
|
+
"publish:major": "npm version major && git push && npm run build && npm publish",
|
|
16
|
+
"link": "npm run build && npm link",
|
|
17
|
+
"test": "jest"
|
|
18
|
+
},
|
|
19
|
+
"keywords": [],
|
|
20
|
+
"author": "",
|
|
21
|
+
"license": "ISC",
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"@types/jest": "^29.5.13",
|
|
24
|
+
"@types/node": "^22.6.1",
|
|
25
|
+
"jest": "^29.7.0",
|
|
26
|
+
"ts-jest": "^29.2.5",
|
|
27
|
+
"ts-node": "^10.9.2",
|
|
28
|
+
"typescript": "^5.6.2"
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@types/express": "^5.0.0",
|
|
32
|
+
"@types/multer": "^1.4.12",
|
|
33
|
+
"date-fns": "^4.1.0"
|
|
34
|
+
}
|
|
35
35
|
}
|