@tap-payments/os-micro-frontend-shared 0.1.130 → 0.1.131

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.
@@ -20,9 +20,9 @@ export declare const terminalsTableCellWidth: {
20
20
  readonly sheet: "80px";
21
21
  };
22
22
  readonly platform: {
23
- readonly default: "80px";
24
- readonly text: "80px";
25
- readonly sheet: "80px";
23
+ readonly default: "100px";
24
+ readonly text: "100px";
25
+ readonly sheet: "100px";
26
26
  };
27
27
  readonly branding: {
28
28
  readonly default: "80px";
@@ -20,9 +20,9 @@ export const terminalsTableCellWidth = {
20
20
  sheet: '80px',
21
21
  },
22
22
  platform: {
23
- default: '80px',
24
- text: '80px',
25
- sheet: '80px',
23
+ default: '100px',
24
+ text: '100px',
25
+ sheet: '100px',
26
26
  },
27
27
  branding: {
28
28
  default: '80px',
@@ -1,5 +1,9 @@
1
1
  import { Merchant } from './merchant';
2
2
  import { TextAndLang } from './user';
3
+ export interface Branch {
4
+ id: string;
5
+ name: TextAndLang[];
6
+ }
3
7
  export interface Entity {
4
8
  id: string;
5
9
  legal_name: TextAndLang[];
@@ -7,6 +11,7 @@ export interface Entity {
7
11
  created: number;
8
12
  country?: string;
9
13
  merchants?: Merchant[];
14
+ branches?: Branch;
10
15
  }
11
16
  type DataStatus = 'editable' | 'noneditable';
12
17
  export interface EntityDetails {
package/package.json CHANGED
@@ -1,8 +1,8 @@
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.130",
5
- "testVersion": 1,
4
+ "version": "0.1.131",
5
+ "testVersion": 0,
6
6
  "type": "module",
7
7
  "main": "build/index.js",
8
8
  "module": "build/index.js",