@openbox/shared-types 0.5.26 → 0.5.27

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.
@@ -104,10 +104,15 @@ export type PartnersV1InvoicesCreateSingleRequestDataDetailsService = {
104
104
  id: string;
105
105
  name: string;
106
106
  };
107
+ export type PartnersV1InvoicesCreateSingleRequestDataDetailsProductBatch = {
108
+ batchNumber: string;
109
+ expirationDate: Date;
110
+ };
107
111
  export type PartnersV1InvoicesCreateSingleRequestDataDetailsProduct = {
108
112
  id: string;
109
113
  name: string;
110
114
  unit: InventoriesUnitsSVCode;
115
+ batch?: PartnersV1InvoicesCreateSingleRequestDataDetailsProductBatch;
111
116
  };
112
117
  export type PartnersV1InvoicesCreateSingleRequestDataDetails = {
113
118
  service: PartnersV1InvoicesCreateSingleRequestDataDetailsService | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openbox/shared-types",
3
- "version": "0.5.26",
3
+ "version": "0.5.27",
4
4
  "description": "Shared Types for Openbox Cloud. ",
5
5
  "types": "lib/index.d.js",
6
6
  "main": "lib/index.js",
@@ -126,10 +126,16 @@ export type PartnersV1InvoicesCreateSingleRequestDataDetailsService = {
126
126
  name: string
127
127
  }
128
128
 
129
+ export type PartnersV1InvoicesCreateSingleRequestDataDetailsProductBatch = {
130
+ batchNumber: string
131
+ expirationDate: Date
132
+ }
133
+
129
134
  export type PartnersV1InvoicesCreateSingleRequestDataDetailsProduct = {
130
135
  id: string
131
136
  name: string
132
137
  unit: InventoriesUnitsSVCode
138
+ batch?: PartnersV1InvoicesCreateSingleRequestDataDetailsProductBatch
133
139
  }
134
140
 
135
141
  export type PartnersV1InvoicesCreateSingleRequestDataDetails = {