@tap-payments/os-micro-frontend-shared 0.1.320 → 0.1.321

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.
@@ -1001,4 +1001,5 @@ export declare const MF_APPS_MAPPER: Readonly<{
1001
1001
  TERMINALS: "TERMINALS";
1002
1002
  BILLING: "BILLING";
1003
1003
  ACCOUNT: "ACCOUNT";
1004
+ BUSINESS: "BUSINESS";
1004
1005
  }>;
@@ -485,4 +485,5 @@ export const MF_APPS_MAPPER = Object.freeze({
485
485
  TERMINALS: 'TERMINALS',
486
486
  BILLING: 'BILLING',
487
487
  ACCOUNT: 'ACCOUNT',
488
+ BUSINESS: 'BUSINESS',
488
489
  });
@@ -0,0 +1 @@
1
+ export declare const BUSINESS_COUNTRIES: string[];
@@ -0,0 +1 @@
1
+ export const BUSINESS_COUNTRIES = ['SA', 'KW', 'AE', 'BH', 'QA', 'OM', 'EG', 'JO', 'LB'];
@@ -17,3 +17,4 @@ export * from './rate';
17
17
  export * from './reports';
18
18
  export * from './document';
19
19
  export * from './authentication';
20
+ export * from './country';
@@ -17,3 +17,4 @@ export * from './rate';
17
17
  export * from './reports';
18
18
  export * from './document';
19
19
  export * from './authentication';
20
+ export * from './country';
@@ -132,7 +132,7 @@ export type MFWidgetBaseProps = {
132
132
  theme: Theme;
133
133
  };
134
134
  timezone: {
135
- current?: Timezone | null;
136
- default?: Timezone;
135
+ current: Timezone | null;
136
+ default: Timezone | null;
137
137
  };
138
138
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tap-payments/os-micro-frontend-shared",
3
3
  "description": "Shared components and utilities for Tap Payments micro frontends",
4
- "version": "0.1.320",
4
+ "version": "0.1.321",
5
5
  "testVersion": 0,
6
6
  "type": "module",
7
7
  "main": "build/index.js",