@tap-payments/os-micro-frontend-shared 0.1.310 → 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.
- package/build/constants/api.d.ts +1 -1
- package/build/constants/api.js +1 -1
- package/build/constants/authentication.d.ts +2 -0
- package/build/constants/authentication.js +15 -0
- package/build/constants/index.d.ts +1 -0
- package/build/constants/index.js +1 -0
- package/build/constants/table/cell/authenticationsTableCellWidth.d.ts +2 -2
- package/build/constants/table/cell/authenticationsTableCellWidth.js +2 -2
- package/package.json +1 -1
package/build/constants/api.d.ts
CHANGED
package/build/constants/api.js
CHANGED
|
@@ -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];
|
package/build/constants/index.js
CHANGED
|
@@ -60,12 +60,12 @@ export declare const authenticationsTableCellWidth: {
|
|
|
60
60
|
readonly sheet: "250px";
|
|
61
61
|
};
|
|
62
62
|
readonly authentication_id: {
|
|
63
|
-
readonly default: "
|
|
63
|
+
readonly default: "260px";
|
|
64
64
|
readonly text: "320px";
|
|
65
65
|
readonly sheet: "320px";
|
|
66
66
|
};
|
|
67
67
|
readonly charge_id: {
|
|
68
|
-
readonly default: "
|
|
68
|
+
readonly default: "245px";
|
|
69
69
|
readonly text: "290px";
|
|
70
70
|
readonly sheet: "290px";
|
|
71
71
|
};
|
|
@@ -60,12 +60,12 @@ export const authenticationsTableCellWidth = {
|
|
|
60
60
|
sheet: '250px',
|
|
61
61
|
},
|
|
62
62
|
authentication_id: {
|
|
63
|
-
default: '
|
|
63
|
+
default: '260px',
|
|
64
64
|
text: '320px',
|
|
65
65
|
sheet: '320px',
|
|
66
66
|
},
|
|
67
67
|
charge_id: {
|
|
68
|
-
default: '
|
|
68
|
+
default: '245px',
|
|
69
69
|
text: '290px',
|
|
70
70
|
sheet: '290px',
|
|
71
71
|
},
|
package/package.json
CHANGED