@tap-payments/os-micro-frontend-shared 0.1.311 → 0.1.312

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.
@@ -0,0 +1,2 @@
1
+ export declare const unAuthenticatedStatuses: string[];
2
+ export declare const allAuthenticationStatuses: string[];
@@ -0,0 +1,15 @@
1
+ const authenticationStatuses = ['AUTHENTICATED'];
2
+ export const unAuthenticatedStatuses = [
3
+ 'PENDING',
4
+ 'ATTEMPTED',
5
+ 'FAILED',
6
+ 'REJECTED',
7
+ 'UNAVAILABLE',
8
+ 'AUTHENTICATION_NOT_SUPPORTED_BY_SCHEME',
9
+ 'AUTHENTICATED_AUTHORIZE_FAILED',
10
+ 'UNDETERMINED',
11
+ 'EXEMPTED',
12
+ 'REJECTED',
13
+ 'INITIATED',
14
+ ];
15
+ export const allAuthenticationStatuses = [...authenticationStatuses, ...unAuthenticatedStatuses];
@@ -16,3 +16,4 @@ export * from './chips';
16
16
  export * from './rate';
17
17
  export * from './reports';
18
18
  export * from './document';
19
+ export * from './authentication';
@@ -16,3 +16,4 @@ export * from './chips';
16
16
  export * from './rate';
17
17
  export * from './reports';
18
18
  export * from './document';
19
+ export * from './authentication';
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.311",
4
+ "version": "0.1.312",
5
5
  "testVersion": 0,
6
6
  "type": "module",
7
7
  "main": "build/index.js",