law-common 10.15.1 → 10.16.0

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 (22) hide show
  1. package/dist/src/constants/constants.d.ts +2 -1
  2. package/dist/src/constants/constants.js +4 -7
  3. package/dist/src/entities/interface/bank_history.entity.interface.d.ts +2 -9
  4. package/dist/src/entities/interface/bank_history.entity.interface.js +0 -3
  5. package/dist/src/entities/interface/billing_history.entity.interface.d.ts +2 -9
  6. package/dist/src/entities/interface/billing_history.entity.interface.js +0 -3
  7. package/dist/src/entities/interface/billing_timesheet_history.entity.interface.d.ts +2 -9
  8. package/dist/src/entities/interface/billing_timesheet_history.entity.interface.js +0 -3
  9. package/dist/src/entities/interface/entity.utils.interface.d.ts +10 -1
  10. package/dist/src/entities/interface/leave_history.entity.interface.d.ts +2 -9
  11. package/dist/src/entities/interface/leave_history.entity.interface.js +0 -3
  12. package/dist/src/entities/interface/reimbursement_history.entity.interface.d.ts +2 -9
  13. package/dist/src/entities/interface/reimbursement_history.entity.interface.js +0 -3
  14. package/dist/src/entities/interface/timesheet_history.entity.interface.d.ts +2 -9
  15. package/dist/src/entities/interface/timesheet_history.entity.interface.js +0 -3
  16. package/dist/src/entities/interface/work_from_home_history.entity.interface.d.ts +2 -9
  17. package/dist/src/entities/interface/work_from_home_history.entity.interface.js +0 -3
  18. package/dist/src/enums/error.key.enum.d.ts +2 -1
  19. package/dist/src/enums/error.key.enum.js +1 -0
  20. package/dist/src/utils/helper.fn.util.d.ts +3 -1
  21. package/dist/src/utils/helper.fn.util.js +13 -0
  22. package/package.json +1 -1
@@ -1 +1,2 @@
1
- export declare const historyKeysToExclude: string[];
1
+ import { EntityEnum, EnumEntityType } from "../entities";
2
+ export declare function getDefaultHistoryKeysToExclude<T extends EnumEntityType<EntityEnum>>(): (keyof T)[];
@@ -1,9 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.historyKeysToExclude = void 0;
4
- exports.historyKeysToExclude = [
5
- "createdOn",
6
- "updatedOn",
7
- "createdBy",
8
- "updatedBy",
9
- ];
3
+ exports.getDefaultHistoryKeysToExclude = getDefaultHistoryKeysToExclude;
4
+ function getDefaultHistoryKeysToExclude() {
5
+ return ["createdOn", "updatedOn", "createdBy", "updatedBy"];
6
+ }
@@ -1,14 +1,7 @@
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 IBankHistoryEntity extends IAuditColumnEntity {
5
- id: number;
6
- entityId: number;
7
- operation: HistoryOperationEnum;
8
- data: string;
1
+ import { IBaseHistoryEntity, IEntityCreateDto, IEntityFilterData } from "./entity.utils.interface";
2
+ export interface IBankHistoryEntity extends IBaseHistoryEntity {
9
3
  }
10
4
  export interface IBankHistoryCreateDto extends IEntityCreateDto<IBankHistoryEntity> {
11
5
  }
12
6
  export interface IBankHistorySearchDto extends IEntityFilterData<IBankHistoryEntity> {
13
7
  }
14
- export declare const bankHistoryExcludeKeys: string[];
@@ -1,5 +1,2 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.bankHistoryExcludeKeys = void 0;
4
- const constants_1 = require("../../constants");
5
- exports.bankHistoryExcludeKeys = [...constants_1.historyKeysToExclude];
@@ -1,14 +1,7 @@
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 IBillingHistoryEntity extends IAuditColumnEntity {
5
- id: number;
6
- entityId: number;
7
- operation: HistoryOperationEnum;
8
- data: string;
1
+ import { IBaseHistoryEntity, IEntityCreateDto, IEntityFilterData } from "./entity.utils.interface";
2
+ export interface IBillingHistoryEntity extends IBaseHistoryEntity {
9
3
  }
10
4
  export interface IBillingHistoryCreateDto extends IEntityCreateDto<IBillingHistoryEntity> {
11
5
  }
12
6
  export interface IBillingHistorySearchDto extends IEntityFilterData<IBillingHistoryEntity> {
13
7
  }
14
- export declare const billingHistoryExcludeKeys: string[];
@@ -1,5 +1,2 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.billingHistoryExcludeKeys = void 0;
4
- const constants_1 = require("../../constants");
5
- exports.billingHistoryExcludeKeys = [...constants_1.historyKeysToExclude];
@@ -1,14 +1,7 @@
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 IBillingTimesheetHistoryEntity extends IAuditColumnEntity {
5
- id: number;
6
- entityId: number;
7
- operation: HistoryOperationEnum;
8
- data: string;
1
+ import { IBaseHistoryEntity, IEntityCreateDto, IEntityFilterData } from "./entity.utils.interface";
2
+ export interface IBillingTimesheetHistoryEntity extends IBaseHistoryEntity {
9
3
  }
10
4
  export interface IBillingTimesheetHistoryCreateDto extends IEntityCreateDto<IBillingTimesheetHistoryEntity> {
11
5
  }
12
6
  export interface IBillingTimesheetHistorySearchDto extends IEntityFilterData<IBillingTimesheetHistoryEntity> {
13
7
  }
14
- export declare const billingTimesheetHistoryExcludeKeys: string[];
@@ -1,5 +1,2 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.billingTimesheetHistoryExcludeKeys = void 0;
4
- const constants_1 = require("../../constants");
5
- exports.billingTimesheetHistoryExcludeKeys = [...constants_1.historyKeysToExclude];
@@ -22,6 +22,7 @@ import { IHolidayEntity } from "./holiday.entity.interface";
22
22
  import { IIndustryEntity } from "./industry.entity.interface";
23
23
  import { IIntermediaryBankEntity } from "./intermediary_bank.entity.interface";
24
24
  import { ILeaveEntity, IUserLeaveVirtualEntity } from "./leave.entity.interface";
25
+ import { ILeaveHistoryEntity } from "./leave_history.entity.interface";
25
26
  import { IOfficeLocationEntity } from "./office.location.entity";
26
27
  import { IOrganizationEntity } from "./organization.entity.interface";
27
28
  import { IPermissionEntity } from "./permission.entity.interface";
@@ -33,9 +34,11 @@ import { IRoleEntity } from "./role.entity.interface";
33
34
  import { IRolePermissionMappingEntity } from "./role.permission.mapping.entity.interface";
34
35
  import { ITaskEntity } from "./task.entity.interface";
35
36
  import { ITimesheetEntity } from "./timesheet.entity.interface";
37
+ import { ITimesheetHistoryEntity } from "./timesheet_history.entity.interface";
36
38
  import { IToDoListEntity } from "./to-do.entity.interface";
37
39
  import { IUserEntity } from "./user.entity.interface";
38
40
  import { IWorkFromHomeEntity } from "./work_from_home.entity.interface";
41
+ import { IWorkFromHomeHistoryEntity } from "./work_from_home_history.entity.interface";
39
42
  export type IApiEntity<T extends {
40
43
  createdOn: Date;
41
44
  updatedOn: Date;
@@ -108,7 +111,7 @@ export type IBaseEntityApiResponse<T extends {
108
111
  [K in EntityEnum | VirtualEntityEnum]?: IBaseEntityApiResponse<EnumEntityType<K>>;
109
112
  };
110
113
  };
111
- export type EnumEntityType<T extends EntityEnum | VirtualEntityEnum> = (T extends EntityEnum.BILLING ? IBillingEntity : T extends EntityEnum.BILLING_TIMESHEET ? IBillingTimesheetEntity : T extends EntityEnum.TIMESHEET ? ITimesheetEntity : T extends EntityEnum.USER ? IUserEntity : T extends EntityEnum.PROJECT ? IProjectEntity : T extends EntityEnum.CLIENT ? IClientEntity : T extends EntityEnum.LEAVE ? ILeaveEntity : T extends EntityEnum.BANK ? IBankEntity : T extends EntityEnum.BANK_HISTORY ? IBankHistoryEntity : T extends EntityEnum.BILLING_PAYMENT ? IBillingPaymentEntity : T extends EntityEnum.BILLING_TRANSACTION ? IBillingTransactionEntity : T extends EntityEnum.CLIENT_AFFILIATE ? IClientAffiliateEntity : T extends EntityEnum.CONFIGURATION ? IConfigurationEntity : T extends EntityEnum.HOLIDAY ? IHolidayEntity : T extends EntityEnum.HOLIDAY_LIST ? IHolidayListEntity : T extends EntityEnum.COUNTRY ? ICountryEntity : T extends EntityEnum.EXPENSE_TYPE ? IExpenseTypeEntity : T extends EntityEnum.INDUSTRY ? IIndustryEntity : T extends EntityEnum.INTERMEDIARY_BANK ? IIntermediaryBankEntity : T extends EntityEnum.OFFICE_LOCATION ? IOfficeLocationEntity : T extends EntityEnum.PERMISSION ? IPermissionEntity : T extends EntityEnum.ROLE ? IRoleEntity : T extends EntityEnum.TASK ? ITaskEntity : T extends EntityEnum.DESIGNATION ? IDesignationEntity : T extends EntityEnum.RATE ? IRateEntity : T extends EntityEnum.REIMBURSEMENT ? IReimbursementEntity : T extends EntityEnum.REIMBURSEMENT_EXPENSE ? IReimbursementExpenseEntity : T extends EntityEnum.WORK_FROM_HOME ? IWorkFromHomeEntity : T extends EntityEnum.ORGANIZATION ? IOrganizationEntity : T extends EntityEnum.PROJECT_USER_MAPPING ? IProjectUserMappingEntity : T extends EntityEnum.CLIENT_USER_MAPPING ? IClientUserMappingEntity : T extends EntityEnum.TO_DO_LIST ? IToDoListEntity : T extends EntityEnum.CRON_JOBS ? ICronJobsEntity : T extends EntityEnum.ROLE_PERMISSION_MAPPING ? IRolePermissionMappingEntity : T extends VirtualEntityEnum.USER_LEAVE ? IUserLeaveVirtualEntity : never) & {
114
+ export type EnumEntityType<T extends EntityEnum | VirtualEntityEnum> = (T extends EntityEnum.BILLING ? IBillingEntity : T extends EntityEnum.BILLING_TIMESHEET ? IBillingTimesheetEntity : T extends EntityEnum.TIMESHEET ? ITimesheetEntity : T extends EntityEnum.USER ? IUserEntity : T extends EntityEnum.PROJECT ? IProjectEntity : T extends EntityEnum.CLIENT ? IClientEntity : T extends EntityEnum.LEAVE ? ILeaveEntity : T extends EntityEnum.BANK ? IBankEntity : T extends EntityEnum.BILLING_PAYMENT ? IBillingPaymentEntity : T extends EntityEnum.BILLING_TRANSACTION ? IBillingTransactionEntity : T extends EntityEnum.CLIENT_AFFILIATE ? IClientAffiliateEntity : T extends EntityEnum.CONFIGURATION ? IConfigurationEntity : T extends EntityEnum.HOLIDAY ? IHolidayEntity : T extends EntityEnum.HOLIDAY_LIST ? IHolidayListEntity : T extends EntityEnum.COUNTRY ? ICountryEntity : T extends EntityEnum.EXPENSE_TYPE ? IExpenseTypeEntity : T extends EntityEnum.INDUSTRY ? IIndustryEntity : T extends EntityEnum.INTERMEDIARY_BANK ? IIntermediaryBankEntity : T extends EntityEnum.OFFICE_LOCATION ? IOfficeLocationEntity : T extends EntityEnum.PERMISSION ? IPermissionEntity : T extends EntityEnum.ROLE ? IRoleEntity : T extends EntityEnum.TASK ? ITaskEntity : T extends EntityEnum.DESIGNATION ? IDesignationEntity : T extends EntityEnum.RATE ? IRateEntity : T extends EntityEnum.REIMBURSEMENT ? IReimbursementEntity : T extends EntityEnum.REIMBURSEMENT_EXPENSE ? IReimbursementExpenseEntity : T extends EntityEnum.WORK_FROM_HOME ? IWorkFromHomeEntity : T extends EntityEnum.ORGANIZATION ? IOrganizationEntity : T extends EntityEnum.PROJECT_USER_MAPPING ? IProjectUserMappingEntity : T extends EntityEnum.CLIENT_USER_MAPPING ? IClientUserMappingEntity : T extends EntityEnum.TO_DO_LIST ? IToDoListEntity : T extends EntityEnum.CRON_JOBS ? ICronJobsEntity : T extends EntityEnum.ROLE_PERMISSION_MAPPING ? IRolePermissionMappingEntity : T extends VirtualEntityEnum.USER_LEAVE ? IUserLeaveVirtualEntity : T extends EntityEnum.BANK_HISTORY ? IBankHistoryEntity : T extends EntityEnum.LEAVE_HISTORY ? ILeaveHistoryEntity : T extends EntityEnum.WORK_FROM_HOME_HISTORY ? IWorkFromHomeHistoryEntity : T extends EntityEnum.TIMESHEET_HISTORY ? ITimesheetHistoryEntity : never) & {
112
115
  id: number;
113
116
  };
114
117
  export type EntityRelationConfig<T extends EntityEnum | VirtualEntityEnum> = {
@@ -197,6 +200,12 @@ export type IEntitySearchSinceConstraint = {
197
200
  columnKey: string;
198
201
  value: number;
199
202
  };
203
+ export interface IBaseHistoryEntity extends IAuditColumnEntity {
204
+ id: number;
205
+ entityId: number;
206
+ operation: HistoryOperationEnum;
207
+ data: string;
208
+ }
200
209
  export type IHistoryEntitySearchByConstraintResponse<T> = {
201
210
  id: number;
202
211
  createdBy: number;
@@ -1,14 +1,7 @@
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 ILeaveHistoryEntity extends IAuditColumnEntity {
5
- id: number;
6
- entityId: number;
7
- operation: HistoryOperationEnum;
8
- data: string;
1
+ import { IBaseHistoryEntity, IEntityCreateDto, IEntityFilterData } from "./entity.utils.interface";
2
+ export interface ILeaveHistoryEntity extends IBaseHistoryEntity {
9
3
  }
10
4
  export interface ILeaveHistoryCreateDto extends IEntityCreateDto<ILeaveHistoryEntity> {
11
5
  }
12
6
  export interface ILeaveHistorySearchDto extends IEntityFilterData<ILeaveHistoryEntity> {
13
7
  }
14
- export declare const leaveHistoryExcludeKeys: string[];
@@ -1,5 +1,2 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.leaveHistoryExcludeKeys = void 0;
4
- const constants_1 = require("../../constants");
5
- exports.leaveHistoryExcludeKeys = [...constants_1.historyKeysToExclude];
@@ -1,14 +1,7 @@
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;
1
+ import { IBaseHistoryEntity, IEntityCreateDto, IEntityFilterData } from "./entity.utils.interface";
2
+ export interface IReimbursementHistoryEntity extends IBaseHistoryEntity {
9
3
  }
10
4
  export interface IReimbursementHistoryCreateDto extends IEntityCreateDto<IReimbursementHistoryEntity> {
11
5
  }
12
6
  export interface IReimbursementHistorySearchDto extends IEntityFilterData<IReimbursementHistoryEntity> {
13
7
  }
14
- export declare const reimbursementHistoryExcludeKeys: string[];
@@ -1,5 +1,2 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.reimbursementHistoryExcludeKeys = void 0;
4
- const constants_1 = require("../../constants");
5
- exports.reimbursementHistoryExcludeKeys = [...constants_1.historyKeysToExclude];
@@ -1,11 +1,5 @@
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 ITimesheetHistoryEntity extends IAuditColumnEntity {
5
- id: number;
6
- entityId: number;
7
- operation: HistoryOperationEnum;
8
- data: string;
1
+ import { IBaseHistoryEntity, IEntityCreateDto, IEntityFilterData } from "./entity.utils.interface";
2
+ export interface ITimesheetHistoryEntity extends IBaseHistoryEntity {
9
3
  }
10
4
  export interface ITimesheetHistoryCreateDto extends IEntityCreateDto<ITimesheetHistoryEntity> {
11
5
  }
@@ -13,4 +7,3 @@ export interface ITimesheetHistoryUpdateDto extends IEntityCreateDto<ITimesheetH
13
7
  }
14
8
  export interface ITimesheetHistorySearchDto extends IEntityFilterData<ITimesheetHistoryEntity> {
15
9
  }
16
- export declare const timesheetHistoryExcludeKeys: string[];
@@ -1,5 +1,2 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.timesheetHistoryExcludeKeys = void 0;
4
- const constants_1 = require("../../constants");
5
- exports.timesheetHistoryExcludeKeys = [...constants_1.historyKeysToExclude];
@@ -1,14 +1,7 @@
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 IWorkFromHomeHistoryEntity extends IAuditColumnEntity {
5
- id: number;
6
- entityId: number;
7
- operation: HistoryOperationEnum;
8
- data: string;
1
+ import { IBaseHistoryEntity, IEntityCreateDto, IEntityFilterData } from "./entity.utils.interface";
2
+ export interface IWorkFromHomeHistoryEntity extends IBaseHistoryEntity {
9
3
  }
10
4
  export interface IWorkFromHomeHistoryCreateDto extends IEntityCreateDto<IWorkFromHomeHistoryEntity> {
11
5
  }
12
6
  export interface IWorkFromHomeHistorySearchDto extends IEntityFilterData<IWorkFromHomeHistoryEntity> {
13
7
  }
14
- export declare const WorkFromHomeHistoryExcludeKeys: string[];
@@ -1,5 +1,2 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.WorkFromHomeHistoryExcludeKeys = void 0;
4
- const constants_1 = require("../../constants");
5
- exports.WorkFromHomeHistoryExcludeKeys = [...constants_1.historyKeysToExclude];
@@ -21,5 +21,6 @@ export declare enum ErrorKeyEnum {
21
21
  WORK_FROM_HOME_FLOW_ACTION = "WORK_FROM_HOME_FLOW_ACTION",
22
22
  WORK_FROM_HOME_STATUS = "WORK_FROM_HOME_STATUS",
23
23
  WORK_FROM_HOME_FLOW = "WORK_FROM_HOME_FLOW",
24
- WORK_FROM_HOME_KEY = "WORK_FROM_HOME_KEY"
24
+ WORK_FROM_HOME_KEY = "WORK_FROM_HOME_KEY",
25
+ RELATED_ENTITIES = "RELATED_ENTITIES"
25
26
  }
@@ -26,4 +26,5 @@ var ErrorKeyEnum;
26
26
  ErrorKeyEnum["WORK_FROM_HOME_STATUS"] = "WORK_FROM_HOME_STATUS";
27
27
  ErrorKeyEnum["WORK_FROM_HOME_FLOW"] = "WORK_FROM_HOME_FLOW";
28
28
  ErrorKeyEnum["WORK_FROM_HOME_KEY"] = "WORK_FROM_HOME_KEY";
29
+ ErrorKeyEnum["RELATED_ENTITIES"] = "RELATED_ENTITIES";
29
30
  })(ErrorKeyEnum || (exports.ErrorKeyEnum = ErrorKeyEnum = {}));
@@ -1,4 +1,4 @@
1
- import { EntityEnum, EnumEntityType, IEntityFilterData } from "../entities";
1
+ import { EntityEnum, EnumEntityType, IBaseEntityServiceResponse, IEntityFilterData } from "../entities";
2
2
  import { Modify } from "../misc";
3
3
  export declare function groupByFunction<T, K>(list: T[], keyGetter: (input: T) => K): Map<K, T[]>;
4
4
  export declare function groupByOneToOneFunction<T, K>(list: T[], keyGetter: (input: T) => K): Map<K, T>;
@@ -174,3 +174,5 @@ export declare function transformDate<T extends {
174
174
  date: string;
175
175
  }>;
176
176
  export declare function capitalizeFirstWord(str: string): string;
177
+ export declare function getEntitiesFromSearchV2Response<E extends EntityEnum, // Enum key like EntityEnum.USER, EntityEnum.PROJECT, etc.
178
+ T extends EnumEntityType<E>>(searchResponseV2: IBaseEntityServiceResponse<EnumEntityType<EntityEnum>>, entityEnumKey: E, EntityClass: new () => T): T[];
@@ -32,7 +32,10 @@ exports.minutesToHoursMinutes = minutesToHoursMinutes;
32
32
  exports.createKeyLabelMap = createKeyLabelMap;
33
33
  exports.transformDate = transformDate;
34
34
  exports.capitalizeFirstWord = capitalizeFirstWord;
35
+ exports.getEntitiesFromSearchV2Response = getEntitiesFromSearchV2Response;
35
36
  const util_constants_1 = require("../constants/util.constants");
37
+ const error_key_enum_1 = require("../enums/error.key.enum");
38
+ const exceptions_1 = require("../exceptions");
36
39
  function groupByFunction(list, keyGetter) {
37
40
  const map = new Map();
38
41
  list.forEach((item) => {
@@ -380,3 +383,13 @@ function capitalizeFirstWord(str) {
380
383
  return str;
381
384
  return str.charAt(0).toUpperCase() + str.slice(1);
382
385
  }
386
+ function getEntitiesFromSearchV2Response(searchResponseV2, entityEnumKey, EntityClass) {
387
+ var _a;
388
+ if (!searchResponseV2.relatedEntities) {
389
+ throw new exceptions_1.AppBadRequestException({
390
+ key: error_key_enum_1.ErrorKeyEnum.RELATED_ENTITIES,
391
+ message: ["Invalid Search Operation"],
392
+ });
393
+ }
394
+ return (((_a = searchResponseV2.relatedEntities[entityEnumKey]) === null || _a === void 0 ? void 0 : _a.baseEntities) || []).map((entity) => Object.assign(new EntityClass(), entity));
395
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "law-common",
3
- "version": "10.15.1",
3
+ "version": "10.16.0",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "files": [