@openbox/shared-types 0.1.98 → 0.2.1

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.
@@ -31,7 +31,7 @@ export interface Customers {
31
31
  customerType: SystemSellingTypeGetSingleResponse;
32
32
  customerTypeNatural: SystemNaturalTypesGetSingleResponse;
33
33
  }
34
- export type CustomersRequest = Omit<Customers, 'id'> & {
34
+ export type CustomersRequest = Omit<Customers, 'id' | 'customerTaxerType' | 'personType' | 'customerType' | 'customerTypeNatural'> & {
35
35
  customerTaxerType: number;
36
36
  personType: number;
37
37
  customerType: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openbox/shared-types",
3
- "version": "0.1.98",
3
+ "version": "0.2.1",
4
4
  "description": "Shared Types for Openbox Cloud. ",
5
5
  "types": "lib/index.d.js",
6
6
  "main": "lib/index.js",
@@ -32,7 +32,10 @@ export interface Customers {
32
32
  customerType: SystemSellingTypeGetSingleResponse
33
33
  customerTypeNatural: SystemNaturalTypesGetSingleResponse
34
34
  }
35
- export type CustomersRequest = Omit<Customers, 'id'> & {
35
+ export type CustomersRequest = Omit<
36
+ Customers,
37
+ 'id' | 'customerTaxerType' | 'personType' | 'customerType' | 'customerTypeNatural'
38
+ > & {
36
39
  customerTaxerType: number
37
40
  personType: number
38
41
  customerType: number