@kiminix/tp-client 2.5.0 → 2.6.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.
package/dist/index.d.ts CHANGED
@@ -4,7 +4,7 @@ export { StatisticsAdminAPIs } from './statistics/admin-apis';
4
4
  export { DealsAPIs } from './deals/apis';
5
5
  export * from './deals/index';
6
6
  export * from './iam/index';
7
- export { Business } from './business/index';
7
+ export * from './business/index';
8
8
  export * from './reservations/index';
9
9
  export * from './cashback/index';
10
10
  export * from './discounts/index';
package/dist/index.js CHANGED
@@ -6,6 +6,8 @@ export { DealsAPIs } from './deals/apis';
6
6
  export * from './deals/index';
7
7
  // iam module
8
8
  export * from './iam/index';
9
+ // business module
10
+ export * from './business/index';
9
11
  // reservations module
10
12
  export * from './reservations/index';
11
13
  // cashback module
@@ -1,5 +1,5 @@
1
1
  import { VoucherStatus } from "../../../enum";
2
- export interface Business {
2
+ export interface VoucherBusiness {
3
3
  id: string;
4
4
  identifier: string;
5
5
  name: string;
@@ -10,7 +10,7 @@ export interface Business {
10
10
  export interface Voucher {
11
11
  id: string;
12
12
  status: VoucherStatus;
13
- business: Business;
13
+ business: VoucherBusiness;
14
14
  datetime: string;
15
15
  persons: number;
16
16
  createdAt: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kiminix/tp-client",
3
- "version": "2.5.0",
3
+ "version": "2.6.0",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [