@tap-payments/os-micro-frontend-shared 0.1.435 → 0.1.436

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.
@@ -74,6 +74,7 @@ function ViewsDropdown({ open, selectedViewInfo, setSelectedViewInfo, anchorEl,
74
74
  setDraftColumns(null);
75
75
  clearOriginalState();
76
76
  forceClose();
77
+ onClose === null || onClose === void 0 ? void 0 : onClose();
77
78
  }
78
79
  function applyAndClose() {
79
80
  const isDefaultView = selectedViewInfo.id === (defaultTemplate === null || defaultTemplate === void 0 ? void 0 : defaultTemplate.id) || selectedViewInfo.id === 'default' || (defaultTemplate === null || defaultTemplate === void 0 ? void 0 : defaultTemplate.default) === true;
@@ -88,6 +89,7 @@ function ViewsDropdown({ open, selectedViewInfo, setSelectedViewInfo, anchorEl,
88
89
  setDraftColumns(null);
89
90
  clearOriginalState();
90
91
  forceClose();
92
+ onClose === null || onClose === void 0 ? void 0 : onClose();
91
93
  }
92
94
  function toggleColumn(columnName) {
93
95
  if (!draftColumns)
@@ -29,6 +29,11 @@ export declare const chargeTableCellWidth: {
29
29
  readonly text: "180px";
30
30
  readonly sheet: "250px";
31
31
  };
32
+ readonly auth_code_reference: {
33
+ readonly default: "155px";
34
+ readonly text: "180px";
35
+ readonly sheet: "250px";
36
+ };
32
37
  readonly order: {
33
38
  readonly default: "80px";
34
39
  readonly text: "80px";
@@ -29,6 +29,11 @@ export const chargeTableCellWidth = {
29
29
  text: '180px',
30
30
  sheet: '250px',
31
31
  },
32
+ auth_code_reference: {
33
+ default: '155px',
34
+ text: '180px',
35
+ sheet: '250px',
36
+ },
32
37
  order: {
33
38
  default: '80px',
34
39
  text: '80px',
@@ -117,6 +117,7 @@ export interface Charge {
117
117
  status: AuthenticationStatus;
118
118
  threeDSecure?: {
119
119
  status: AuthenticationStatus;
120
+ provider: string;
120
121
  };
121
122
  };
122
123
  payment: {
@@ -332,6 +333,24 @@ export interface Charge {
332
333
  retailer: {
333
334
  id: string;
334
335
  };
336
+ payment_provider?: {
337
+ technology?: {
338
+ id: string;
339
+ brand?: {
340
+ name?: {
341
+ en: string;
342
+ };
343
+ };
344
+ };
345
+ institution?: {
346
+ id: string;
347
+ brand?: {
348
+ name?: {
349
+ en: string;
350
+ };
351
+ };
352
+ };
353
+ };
335
354
  };
336
355
  refunds: {
337
356
  summary: {
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.435",
4
+ "version": "0.1.436",
5
5
  "testVersion": 0,
6
6
  "type": "module",
7
7
  "main": "build/index.js",