@openbox/shared-types 0.4.7 → 0.4.8

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.
@@ -34,6 +34,6 @@ export type CustomersRequest = Omit<Customers, 'id' | 'taxerType' | 'personType'
34
34
  personTypeNatural?: number;
35
35
  branch: CustomersBranchesCreateSingleRequest;
36
36
  directory?: Omit<SystemDirectoryCreateSingleRequest, 'entityType' | 'entityId'>[];
37
- svFields: SystemSvFieldsRequest;
37
+ svFields?: SystemSvFieldsRequest;
38
38
  };
39
39
  export type CustomersResponse = Customers;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openbox/shared-types",
3
- "version": "0.4.07",
3
+ "version": "0.4.08",
4
4
  "description": "Shared Types for Openbox Cloud. ",
5
5
  "types": "lib/index.d.js",
6
6
  "main": "lib/index.js",
@@ -22,6 +22,7 @@
22
22
  "format:write": "yarn format --write"
23
23
  },
24
24
  "devDependencies": {
25
+ "@openbox/shared-types": "^0.4.7",
25
26
  "@types/node": "^20.1.5",
26
27
  "@typescript-eslint/eslint-plugin": "^5.46.1",
27
28
  "@typescript-eslint/parser": "^5.46.1",
@@ -42,6 +42,6 @@ export type CustomersRequest = Omit<
42
42
  personTypeNatural?: number
43
43
  branch: CustomersBranchesCreateSingleRequest
44
44
  directory?: Omit<SystemDirectoryCreateSingleRequest, 'entityType' | 'entityId'>[]
45
- svFields: SystemSvFieldsRequest
45
+ svFields?: SystemSvFieldsRequest
46
46
  }
47
47
  export type CustomersResponse = Customers