@etsoo/appscript 1.3.29 → 1.3.31

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.
@@ -286,21 +286,10 @@ export declare abstract class CoreApp<U extends IUser, S extends IAppSettings, N
286
286
  * @returns string
287
287
  */
288
288
  formatDate(input?: Date | string, options?: DateUtils.FormatOptions, timeZone?: string): string | undefined;
289
- /**
290
- * Format money number
291
- * @param input Input money number
292
- * @param isInteger Is integer
293
- * @param options Options
294
- * @returns Result
295
- */
296
- formatMoney(input?: number | bigint, isInteger?: boolean, options?: Intl.NumberFormatOptions): string | undefined;
297
- /**
298
- * Format number
299
- * @param input Input number
300
- * @param options Options
301
- * @returns Result
302
- */
303
- formatNumber(input?: number | bigint, options?: Intl.NumberFormatOptions): string | undefined;
289
+ formatMoney(input: null | undefined, isInteger?: boolean, options?: Intl.NumberFormatOptions): undefined;
290
+ formatMoney(input: number | bigint, isInteger?: boolean, options?: Intl.NumberFormatOptions): string;
291
+ formatNumber(input: null | undefined, options?: Intl.NumberFormatOptions): undefined;
292
+ formatNumber(input: number | bigint, options?: Intl.NumberFormatOptions): string;
304
293
  /**
305
294
  * Format error
306
295
  * @param error Error
@@ -717,6 +717,8 @@ class CoreApp {
717
717
  * @returns Result
718
718
  */
719
719
  formatMoney(input, isInteger = false, options) {
720
+ if (input == null)
721
+ return undefined;
720
722
  return shared_1.NumberUtils.formatMoney(input, this.currency, this.culture, isInteger, options);
721
723
  }
722
724
  /**
@@ -726,6 +728,8 @@ class CoreApp {
726
728
  * @returns Result
727
729
  */
728
730
  formatNumber(input, options) {
731
+ if (input == null)
732
+ return undefined;
729
733
  return shared_1.NumberUtils.format(input, this.culture, options);
730
734
  }
731
735
  /**
@@ -233,14 +233,29 @@ export interface IApp {
233
233
  * @param options Options
234
234
  * @returns Result
235
235
  */
236
- formatMoney(input?: number | bigint, isInteger?: boolean, options?: Intl.NumberFormatOptions): string | undefined;
236
+ formatMoney(input: null | undefined, isInteger?: boolean, options?: Intl.NumberFormatOptions): undefined;
237
+ /**
238
+ * Format money number
239
+ * @param input Input money number
240
+ * @param isInteger Is integer
241
+ * @param options Options
242
+ * @returns Result
243
+ */
244
+ formatMoney(input: number | bigint, isInteger?: boolean, options?: Intl.NumberFormatOptions): string;
245
+ /**
246
+ * Format number
247
+ * @param input Input number
248
+ * @param options Options
249
+ * @returns Result
250
+ */
251
+ formatNumber(input: null | undefined, options?: Intl.NumberFormatOptions): undefined;
237
252
  /**
238
253
  * Format number
239
254
  * @param input Input number
240
255
  * @param options Options
241
256
  * @returns Result
242
257
  */
243
- formatNumber(input?: number | bigint, options?: Intl.NumberFormatOptions): string | undefined;
258
+ formatNumber(input: number | bigint, options?: Intl.NumberFormatOptions): string;
244
259
  /**
245
260
  * Do refresh token result
246
261
  * @param result Result
@@ -3,6 +3,7 @@ import { DataTypes } from '@etsoo/shared';
3
3
  import { IApp } from '../app/IApp';
4
4
  import { IActionResult } from '../result/IActionResult';
5
5
  import { BaseApi } from './BaseApi';
6
+ import { AuditLineDto, AuditLinePayload } from './dto/AuditLineDto';
6
7
  import { QueryRQ } from './rq/QueryRQ';
7
8
  import { TiplistRQ } from './rq/TiplistRQ';
8
9
  /**
@@ -46,6 +47,13 @@ export declare class EntityApi<T extends IApp = IApp> extends BaseApi<T> {
46
47
  * @returns Result
47
48
  */
48
49
  protected queryBase<T extends DataTypes.IdType, RQ extends QueryRQ<T>, R extends object>(rq: RQ, payload?: IApiPayload<R[]>, queryKey?: string): Promise<R[] | undefined>;
50
+ /**
51
+ * Query audit history
52
+ * @param rq Request data
53
+ * @param payload Payload
54
+ * @returns Result
55
+ */
56
+ protected queryAuditBase<T extends DataTypes.IdType, R extends QueryRQ<T>>(rq: R, payload?: AuditLinePayload): Promise<AuditLineDto[] | undefined>;
49
57
  /**
50
58
  * Read
51
59
  * @param id Id
@@ -50,6 +50,15 @@ class EntityApi extends BaseApi_1.BaseApi {
50
50
  queryBase(rq, payload, queryKey = '') {
51
51
  return this.api.post(`${this.flag}/Query${queryKey}`, rq, payload);
52
52
  }
53
+ /**
54
+ * Query audit history
55
+ * @param rq Request data
56
+ * @param payload Payload
57
+ * @returns Result
58
+ */
59
+ queryAuditBase(rq, payload) {
60
+ return this.api.post(`${this.flag}/QueryAudit`, rq, payload);
61
+ }
53
62
  /**
54
63
  * Read
55
64
  * @param id Id
@@ -0,0 +1,24 @@
1
+ import { IApiPayload } from '@etsoo/restclient';
2
+ /**
3
+ * Audit line data
4
+ */
5
+ export declare type AuditLineDto = {
6
+ id: number;
7
+ creation: Date;
8
+ user: string;
9
+ action: string;
10
+ changes?: AuditLineChangesDto;
11
+ oldData?: Record<string, unknown>;
12
+ newData?: Record<string, unknown>;
13
+ };
14
+ /**
15
+ * Audit line changes data
16
+ */
17
+ export declare type AuditLineChangesDto = {
18
+ oldData: Record<string, unknown>;
19
+ newData: Record<string, unknown>;
20
+ };
21
+ /**
22
+ * Audit line API payload
23
+ */
24
+ export declare type AuditLinePayload = IApiPayload<AuditLineDto[]>;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -169,6 +169,7 @@
169
169
  "tokenExpiry": "Your session is about to expire. Click the Cancel button to continue",
170
170
  "type": "Type",
171
171
  "yes": "Yes",
172
+ "uid": "Universal ID",
172
173
  "unknownError": "Unknown Error",
173
174
  "unitJoin": "per {0}",
174
175
  "unitPC": "PC",
@@ -169,6 +169,7 @@
169
169
  "tokenExpiry": "您的会话即将过期。点击 取消 按钮继续使用",
170
170
  "type": "类型",
171
171
  "yes": "是",
172
+ "uid": "通用标识",
172
173
  "unknownError": "未知错误",
173
174
  "unitJoin": "每{0}",
174
175
  "unitPC": "件",
@@ -169,6 +169,7 @@
169
169
  "tokenExpiry": "您的會話即將過期。點擊 取消 按鈕繼續使用",
170
170
  "type": "類型",
171
171
  "yes": "是",
172
+ "uid": "通用標識",
172
173
  "unknownError": "未知錯誤",
173
174
  "unitJoin": "每{0}",
174
175
  "unitPC": "件",
@@ -16,6 +16,7 @@ export * from './business/EntityStatus';
16
16
  export * from './business/ProductUnit';
17
17
  export * from './business/RepeatOption';
18
18
  export * from './def/ListItem';
19
+ export * from './erp/dto/AuditLineDto';
19
20
  export * from './erp/dto/CurrencyDto';
20
21
  export * from './erp/dto/ExchangeRateDto';
21
22
  export * from './erp/dto/ExchangeRateHistoryDto';
package/lib/cjs/index.js CHANGED
@@ -39,6 +39,7 @@ __exportStar(require("./business/RepeatOption"), exports);
39
39
  // def
40
40
  __exportStar(require("./def/ListItem"), exports);
41
41
  // erp dto
42
+ __exportStar(require("./erp/dto/AuditLineDto"), exports);
42
43
  __exportStar(require("./erp/dto/CurrencyDto"), exports);
43
44
  __exportStar(require("./erp/dto/ExchangeRateDto"), exports);
44
45
  __exportStar(require("./erp/dto/ExchangeRateHistoryDto"), exports);
@@ -286,21 +286,10 @@ export declare abstract class CoreApp<U extends IUser, S extends IAppSettings, N
286
286
  * @returns string
287
287
  */
288
288
  formatDate(input?: Date | string, options?: DateUtils.FormatOptions, timeZone?: string): string | undefined;
289
- /**
290
- * Format money number
291
- * @param input Input money number
292
- * @param isInteger Is integer
293
- * @param options Options
294
- * @returns Result
295
- */
296
- formatMoney(input?: number | bigint, isInteger?: boolean, options?: Intl.NumberFormatOptions): string | undefined;
297
- /**
298
- * Format number
299
- * @param input Input number
300
- * @param options Options
301
- * @returns Result
302
- */
303
- formatNumber(input?: number | bigint, options?: Intl.NumberFormatOptions): string | undefined;
289
+ formatMoney(input: null | undefined, isInteger?: boolean, options?: Intl.NumberFormatOptions): undefined;
290
+ formatMoney(input: number | bigint, isInteger?: boolean, options?: Intl.NumberFormatOptions): string;
291
+ formatNumber(input: null | undefined, options?: Intl.NumberFormatOptions): undefined;
292
+ formatNumber(input: number | bigint, options?: Intl.NumberFormatOptions): string;
304
293
  /**
305
294
  * Format error
306
295
  * @param error Error
@@ -714,6 +714,8 @@ export class CoreApp {
714
714
  * @returns Result
715
715
  */
716
716
  formatMoney(input, isInteger = false, options) {
717
+ if (input == null)
718
+ return undefined;
717
719
  return NumberUtils.formatMoney(input, this.currency, this.culture, isInteger, options);
718
720
  }
719
721
  /**
@@ -723,6 +725,8 @@ export class CoreApp {
723
725
  * @returns Result
724
726
  */
725
727
  formatNumber(input, options) {
728
+ if (input == null)
729
+ return undefined;
726
730
  return NumberUtils.format(input, this.culture, options);
727
731
  }
728
732
  /**
@@ -233,14 +233,29 @@ export interface IApp {
233
233
  * @param options Options
234
234
  * @returns Result
235
235
  */
236
- formatMoney(input?: number | bigint, isInteger?: boolean, options?: Intl.NumberFormatOptions): string | undefined;
236
+ formatMoney(input: null | undefined, isInteger?: boolean, options?: Intl.NumberFormatOptions): undefined;
237
+ /**
238
+ * Format money number
239
+ * @param input Input money number
240
+ * @param isInteger Is integer
241
+ * @param options Options
242
+ * @returns Result
243
+ */
244
+ formatMoney(input: number | bigint, isInteger?: boolean, options?: Intl.NumberFormatOptions): string;
245
+ /**
246
+ * Format number
247
+ * @param input Input number
248
+ * @param options Options
249
+ * @returns Result
250
+ */
251
+ formatNumber(input: null | undefined, options?: Intl.NumberFormatOptions): undefined;
237
252
  /**
238
253
  * Format number
239
254
  * @param input Input number
240
255
  * @param options Options
241
256
  * @returns Result
242
257
  */
243
- formatNumber(input?: number | bigint, options?: Intl.NumberFormatOptions): string | undefined;
258
+ formatNumber(input: number | bigint, options?: Intl.NumberFormatOptions): string;
244
259
  /**
245
260
  * Do refresh token result
246
261
  * @param result Result
@@ -3,6 +3,7 @@ import { DataTypes } from '@etsoo/shared';
3
3
  import { IApp } from '../app/IApp';
4
4
  import { IActionResult } from '../result/IActionResult';
5
5
  import { BaseApi } from './BaseApi';
6
+ import { AuditLineDto, AuditLinePayload } from './dto/AuditLineDto';
6
7
  import { QueryRQ } from './rq/QueryRQ';
7
8
  import { TiplistRQ } from './rq/TiplistRQ';
8
9
  /**
@@ -46,6 +47,13 @@ export declare class EntityApi<T extends IApp = IApp> extends BaseApi<T> {
46
47
  * @returns Result
47
48
  */
48
49
  protected queryBase<T extends DataTypes.IdType, RQ extends QueryRQ<T>, R extends object>(rq: RQ, payload?: IApiPayload<R[]>, queryKey?: string): Promise<R[] | undefined>;
50
+ /**
51
+ * Query audit history
52
+ * @param rq Request data
53
+ * @param payload Payload
54
+ * @returns Result
55
+ */
56
+ protected queryAuditBase<T extends DataTypes.IdType, R extends QueryRQ<T>>(rq: R, payload?: AuditLinePayload): Promise<AuditLineDto[] | undefined>;
49
57
  /**
50
58
  * Read
51
59
  * @param id Id
@@ -47,6 +47,15 @@ export class EntityApi extends BaseApi {
47
47
  queryBase(rq, payload, queryKey = '') {
48
48
  return this.api.post(`${this.flag}/Query${queryKey}`, rq, payload);
49
49
  }
50
+ /**
51
+ * Query audit history
52
+ * @param rq Request data
53
+ * @param payload Payload
54
+ * @returns Result
55
+ */
56
+ queryAuditBase(rq, payload) {
57
+ return this.api.post(`${this.flag}/QueryAudit`, rq, payload);
58
+ }
50
59
  /**
51
60
  * Read
52
61
  * @param id Id
@@ -0,0 +1,24 @@
1
+ import { IApiPayload } from '@etsoo/restclient';
2
+ /**
3
+ * Audit line data
4
+ */
5
+ export declare type AuditLineDto = {
6
+ id: number;
7
+ creation: Date;
8
+ user: string;
9
+ action: string;
10
+ changes?: AuditLineChangesDto;
11
+ oldData?: Record<string, unknown>;
12
+ newData?: Record<string, unknown>;
13
+ };
14
+ /**
15
+ * Audit line changes data
16
+ */
17
+ export declare type AuditLineChangesDto = {
18
+ oldData: Record<string, unknown>;
19
+ newData: Record<string, unknown>;
20
+ };
21
+ /**
22
+ * Audit line API payload
23
+ */
24
+ export declare type AuditLinePayload = IApiPayload<AuditLineDto[]>;
@@ -0,0 +1 @@
1
+ export {};
@@ -169,6 +169,7 @@
169
169
  "tokenExpiry": "Your session is about to expire. Click the Cancel button to continue",
170
170
  "type": "Type",
171
171
  "yes": "Yes",
172
+ "uid": "Universal ID",
172
173
  "unknownError": "Unknown Error",
173
174
  "unitJoin": "per {0}",
174
175
  "unitPC": "PC",
@@ -169,6 +169,7 @@
169
169
  "tokenExpiry": "您的会话即将过期。点击 取消 按钮继续使用",
170
170
  "type": "类型",
171
171
  "yes": "是",
172
+ "uid": "通用标识",
172
173
  "unknownError": "未知错误",
173
174
  "unitJoin": "每{0}",
174
175
  "unitPC": "件",
@@ -169,6 +169,7 @@
169
169
  "tokenExpiry": "您的會話即將過期。點擊 取消 按鈕繼續使用",
170
170
  "type": "類型",
171
171
  "yes": "是",
172
+ "uid": "通用標識",
172
173
  "unknownError": "未知錯誤",
173
174
  "unitJoin": "每{0}",
174
175
  "unitPC": "件",
@@ -16,6 +16,7 @@ export * from './business/EntityStatus';
16
16
  export * from './business/ProductUnit';
17
17
  export * from './business/RepeatOption';
18
18
  export * from './def/ListItem';
19
+ export * from './erp/dto/AuditLineDto';
19
20
  export * from './erp/dto/CurrencyDto';
20
21
  export * from './erp/dto/ExchangeRateDto';
21
22
  export * from './erp/dto/ExchangeRateHistoryDto';
package/lib/mjs/index.js CHANGED
@@ -22,6 +22,7 @@ export * from './business/RepeatOption';
22
22
  // def
23
23
  export * from './def/ListItem';
24
24
  // erp dto
25
+ export * from './erp/dto/AuditLineDto';
25
26
  export * from './erp/dto/CurrencyDto';
26
27
  export * from './erp/dto/ExchangeRateDto';
27
28
  export * from './erp/dto/ExchangeRateHistoryDto';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/appscript",
3
- "version": "1.3.29",
3
+ "version": "1.3.31",
4
4
  "description": "Applications shared TypeScript framework",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
@@ -54,7 +54,7 @@
54
54
  "dependencies": {
55
55
  "@etsoo/notificationbase": "^1.1.14",
56
56
  "@etsoo/restclient": "^1.0.76",
57
- "@etsoo/shared": "^1.1.73",
57
+ "@etsoo/shared": "^1.1.76",
58
58
  "@types/crypto-js": "^4.1.1",
59
59
  "crypto-js": "^4.1.1"
60
60
  },
@@ -70,8 +70,8 @@
70
70
  "eslint": "^8.27.0",
71
71
  "eslint-config-airbnb-base": "^15.0.0",
72
72
  "eslint-plugin-import": "^2.26.0",
73
- "jest": "^29.3.0",
74
- "jest-environment-jsdom": "^29.3.0",
73
+ "jest": "^29.3.1",
74
+ "jest-environment-jsdom": "^29.3.1",
75
75
  "ts-jest": "^29.0.3",
76
76
  "typescript": "^4.8.4"
77
77
  }
@@ -996,6 +996,16 @@ export abstract class CoreApp<
996
996
  return DateUtils.format(input, currentCulture.name, options, timeZone);
997
997
  }
998
998
 
999
+ formatMoney(
1000
+ input: null | undefined,
1001
+ isInteger?: boolean,
1002
+ options?: Intl.NumberFormatOptions
1003
+ ): undefined;
1004
+ formatMoney(
1005
+ input: number | bigint,
1006
+ isInteger?: boolean,
1007
+ options?: Intl.NumberFormatOptions
1008
+ ): string;
999
1009
  /**
1000
1010
  * Format money number
1001
1011
  * @param input Input money number
@@ -1004,10 +1014,11 @@ export abstract class CoreApp<
1004
1014
  * @returns Result
1005
1015
  */
1006
1016
  formatMoney(
1007
- input?: number | bigint,
1017
+ input: number | bigint | null | undefined,
1008
1018
  isInteger: boolean = false,
1009
1019
  options?: Intl.NumberFormatOptions
1010
1020
  ) {
1021
+ if (input == null) return undefined;
1011
1022
  return NumberUtils.formatMoney(
1012
1023
  input,
1013
1024
  this.currency,
@@ -1017,13 +1028,25 @@ export abstract class CoreApp<
1017
1028
  );
1018
1029
  }
1019
1030
 
1031
+ formatNumber(
1032
+ input: null | undefined,
1033
+ options?: Intl.NumberFormatOptions
1034
+ ): undefined;
1035
+ formatNumber(
1036
+ input: number | bigint,
1037
+ options?: Intl.NumberFormatOptions
1038
+ ): string;
1020
1039
  /**
1021
1040
  * Format number
1022
1041
  * @param input Input number
1023
1042
  * @param options Options
1024
1043
  * @returns Result
1025
1044
  */
1026
- formatNumber(input?: number | bigint, options?: Intl.NumberFormatOptions) {
1045
+ formatNumber(
1046
+ input: number | bigint | null | undefined,
1047
+ options?: Intl.NumberFormatOptions
1048
+ ) {
1049
+ if (input == null) return undefined;
1027
1050
  return NumberUtils.format(input, this.culture, options);
1028
1051
  }
1029
1052
 
package/src/app/IApp.ts CHANGED
@@ -307,10 +307,23 @@ export interface IApp {
307
307
  * @returns Result
308
308
  */
309
309
  formatMoney(
310
- input?: number | bigint,
310
+ input: null | undefined,
311
311
  isInteger?: boolean,
312
312
  options?: Intl.NumberFormatOptions
313
- ): string | undefined;
313
+ ): undefined;
314
+
315
+ /**
316
+ * Format money number
317
+ * @param input Input money number
318
+ * @param isInteger Is integer
319
+ * @param options Options
320
+ * @returns Result
321
+ */
322
+ formatMoney(
323
+ input: number | bigint,
324
+ isInteger?: boolean,
325
+ options?: Intl.NumberFormatOptions
326
+ ): string;
314
327
 
315
328
  /**
316
329
  * Format number
@@ -319,9 +332,20 @@ export interface IApp {
319
332
  * @returns Result
320
333
  */
321
334
  formatNumber(
322
- input?: number | bigint,
335
+ input: null | undefined,
323
336
  options?: Intl.NumberFormatOptions
324
- ): string | undefined;
337
+ ): undefined;
338
+
339
+ /**
340
+ * Format number
341
+ * @param input Input number
342
+ * @param options Options
343
+ * @returns Result
344
+ */
345
+ formatNumber(
346
+ input: number | bigint,
347
+ options?: Intl.NumberFormatOptions
348
+ ): string;
325
349
 
326
350
  /**
327
351
  * Do refresh token result
@@ -3,6 +3,7 @@ import { DataTypes } from '@etsoo/shared';
3
3
  import { IApp } from '../app/IApp';
4
4
  import { IActionResult } from '../result/IActionResult';
5
5
  import { BaseApi } from './BaseApi';
6
+ import { AuditLineDto, AuditLinePayload } from './dto/AuditLineDto';
6
7
  import { QueryRQ } from './rq/QueryRQ';
7
8
  import { TiplistRQ } from './rq/TiplistRQ';
8
9
 
@@ -89,6 +90,19 @@ export class EntityApi<T extends IApp = IApp> extends BaseApi<T> {
89
90
  return this.api.post(`${this.flag}/Query${queryKey}`, rq, payload);
90
91
  }
91
92
 
93
+ /**
94
+ * Query audit history
95
+ * @param rq Request data
96
+ * @param payload Payload
97
+ * @returns Result
98
+ */
99
+ protected queryAuditBase<T extends DataTypes.IdType, R extends QueryRQ<T>>(
100
+ rq: R,
101
+ payload?: AuditLinePayload
102
+ ) {
103
+ return this.api.post(`${this.flag}/QueryAudit`, rq, payload);
104
+ }
105
+
92
106
  /**
93
107
  * Read
94
108
  * @param id Id
@@ -0,0 +1,27 @@
1
+ import { IApiPayload } from '@etsoo/restclient';
2
+
3
+ /**
4
+ * Audit line data
5
+ */
6
+ export type AuditLineDto = {
7
+ id: number;
8
+ creation: Date;
9
+ user: string;
10
+ action: string;
11
+ changes?: AuditLineChangesDto;
12
+ oldData?: Record<string, unknown>;
13
+ newData?: Record<string, unknown>;
14
+ };
15
+
16
+ /**
17
+ * Audit line changes data
18
+ */
19
+ export type AuditLineChangesDto = {
20
+ oldData: Record<string, unknown>;
21
+ newData: Record<string, unknown>;
22
+ };
23
+
24
+ /**
25
+ * Audit line API payload
26
+ */
27
+ export type AuditLinePayload = IApiPayload<AuditLineDto[]>;
@@ -169,6 +169,7 @@
169
169
  "tokenExpiry": "Your session is about to expire. Click the Cancel button to continue",
170
170
  "type": "Type",
171
171
  "yes": "Yes",
172
+ "uid": "Universal ID",
172
173
  "unknownError": "Unknown Error",
173
174
  "unitJoin": "per {0}",
174
175
  "unitPC": "PC",
@@ -169,6 +169,7 @@
169
169
  "tokenExpiry": "您的会话即将过期。点击 取消 按钮继续使用",
170
170
  "type": "类型",
171
171
  "yes": "是",
172
+ "uid": "通用标识",
172
173
  "unknownError": "未知错误",
173
174
  "unitJoin": "每{0}",
174
175
  "unitPC": "件",
@@ -169,6 +169,7 @@
169
169
  "tokenExpiry": "您的會話即將過期。點擊 取消 按鈕繼續使用",
170
170
  "type": "類型",
171
171
  "yes": "是",
172
+ "uid": "通用標識",
172
173
  "unknownError": "未知錯誤",
173
174
  "unitJoin": "每{0}",
174
175
  "unitPC": "件",
package/src/index.ts CHANGED
@@ -27,6 +27,7 @@ export * from './business/RepeatOption';
27
27
  export * from './def/ListItem';
28
28
 
29
29
  // erp dto
30
+ export * from './erp/dto/AuditLineDto';
30
31
  export * from './erp/dto/CurrencyDto';
31
32
  export * from './erp/dto/ExchangeRateDto';
32
33
  export * from './erp/dto/ExchangeRateHistoryDto';