@cbm-common/cbm-types 0.0.215 → 0.0.216

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.
@@ -15,6 +15,7 @@ export declare namespace CbmFinancialBankModel {
15
15
  interface Data {
16
16
  _id: string;
17
17
  company_id: string;
18
+ default?: boolean;
18
19
  bank_id: string;
19
20
  account_id: string;
20
21
  payment_term_id: string;
@@ -64,6 +65,7 @@ export declare namespace CbmFinancialBankModel {
64
65
  interface Data {
65
66
  _id?: string;
66
67
  company_id?: string;
68
+ default?: boolean;
67
69
  bank_id?: string;
68
70
  account_id?: string;
69
71
  payment_term_id?: string;
@@ -115,6 +117,7 @@ export declare namespace CbmFinancialBankModel {
115
117
  }
116
118
  interface SaveBody {
117
119
  bank_id?: string;
120
+ default: boolean;
118
121
  account_id?: string;
119
122
  payment_term_id: string;
120
123
  name: string;
@@ -129,6 +132,7 @@ export declare namespace CbmFinancialBankModel {
129
132
  }
130
133
  interface UpdateBody {
131
134
  bank_id?: string;
135
+ default?: boolean;
132
136
  account_id?: string;
133
137
  payment_term_id?: string;
134
138
  name?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cbm-common/cbm-types",
3
- "version": "0.0.215",
3
+ "version": "0.0.216",
4
4
  "main": "index.js",
5
5
  "types": "public-api.d.ts",
6
6
  "exports": {