@teemill/platform 0.5.0 → 0.6.0

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.
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/platform@0.5.0
1
+ ## @teemill/platform@0.6.0
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install @teemill/platform@0.5.0 --save
39
+ npm install @teemill/platform@0.6.0 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/api.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Platform API
5
5
  * Manage Your podOS platform Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 0.5.0
7
+ * The version of the OpenAPI document: 0.6.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -166,6 +166,12 @@ export interface Fulfillment {
166
166
  * @memberof Fulfillment
167
167
  */
168
168
  'status'?: OrderStatus;
169
+ /**
170
+ *
171
+ * @type {FulfillmentFulfiller}
172
+ * @memberof Fulfillment
173
+ */
174
+ 'fulfiller'?: FulfillmentFulfiller;
169
175
  /**
170
176
  *
171
177
  * @type {Array<FulfillmentItem>}
@@ -199,6 +205,38 @@ export interface Fulfillment {
199
205
  }
200
206
 
201
207
 
208
+ /**
209
+ * The fulfiller that will be processing this order.
210
+ * @export
211
+ * @interface FulfillmentFulfiller
212
+ */
213
+ export interface FulfillmentFulfiller {
214
+ /**
215
+ *
216
+ * @type {FulfillmentFulfillerLocation}
217
+ * @memberof FulfillmentFulfiller
218
+ */
219
+ 'location'?: FulfillmentFulfillerLocation;
220
+ }
221
+ /**
222
+ *
223
+ * @export
224
+ * @interface FulfillmentFulfillerLocation
225
+ */
226
+ export interface FulfillmentFulfillerLocation {
227
+ /**
228
+ *
229
+ * @type {string}
230
+ * @memberof FulfillmentFulfillerLocation
231
+ */
232
+ 'city'?: string | null;
233
+ /**
234
+ *
235
+ * @type {string}
236
+ * @memberof FulfillmentFulfillerLocation
237
+ */
238
+ 'country'?: string | null;
239
+ }
202
240
  /**
203
241
  *
204
242
  * @export
@@ -224,6 +262,56 @@ export interface FulfillmentItem {
224
262
  */
225
263
  'quantity'?: number;
226
264
  }
265
+ /**
266
+ * Image description
267
+ * @export
268
+ * @interface Image
269
+ */
270
+ export interface Image {
271
+ /**
272
+ * Unique object identifier
273
+ * @type {string}
274
+ * @memberof Image
275
+ */
276
+ 'id'?: string;
277
+ /**
278
+ *
279
+ * @type {string}
280
+ * @memberof Image
281
+ */
282
+ 'src'?: string;
283
+ /**
284
+ *
285
+ * @type {string}
286
+ * @memberof Image
287
+ */
288
+ 'alt'?: string;
289
+ /**
290
+ *
291
+ * @type {number}
292
+ * @memberof Image
293
+ */
294
+ 'sortOrder'?: number;
295
+ }
296
+ /**
297
+ *
298
+ * @export
299
+ * @interface Option
300
+ */
301
+ export interface Option {
302
+ /**
303
+ * Option name
304
+ * @type {string}
305
+ * @memberof Option
306
+ */
307
+ 'name': string;
308
+ /**
309
+ * Option value
310
+ * @type {string}
311
+ * @memberof Option
312
+ */
313
+ 'value': string;
314
+ }
227
315
  /**
228
316
  *
229
317
  * @export
@@ -353,12 +441,30 @@ export interface OrderItem {
353
441
  * @memberof OrderItem
354
442
  */
355
443
  'variantRef': string;
444
+ /**
445
+ * Options associated to an order item\'s variant, such as color and size.
446
+ * @type {Array<Option>}
447
+ * @memberof OrderItem
448
+ */
449
+ 'options'?: Array<Option>;
356
450
  /**
357
451
  *
358
452
  * @type {number}
359
453
  * @memberof OrderItem
360
454
  */
361
455
  'quantity': number;
456
+ /**
457
+ * The name of the product
458
+ * @type {string}
459
+ * @memberof OrderItem
460
+ */
461
+ 'name'?: string;
462
+ /**
463
+ * Images
464
+ * @type {Array<Image>}
465
+ * @memberof OrderItem
466
+ */
467
+ 'images'?: Array<Image>;
362
468
  /**
363
469
  *
364
470
  * @type {Price}
package/base.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Platform API
5
5
  * Manage Your podOS platform Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 0.5.0
7
+ * The version of the OpenAPI document: 0.6.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/common.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Platform API
5
5
  * Manage Your podOS platform Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 0.5.0
7
+ * The version of the OpenAPI document: 0.6.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/configuration.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Platform API
5
5
  * Manage Your podOS platform Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 0.5.0
7
+ * The version of the OpenAPI document: 0.6.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.5.0
5
+ * The version of the OpenAPI document: 0.6.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -156,6 +156,12 @@ export interface Fulfillment {
156
156
  * @memberof Fulfillment
157
157
  */
158
158
  'status'?: OrderStatus;
159
+ /**
160
+ *
161
+ * @type {FulfillmentFulfiller}
162
+ * @memberof Fulfillment
163
+ */
164
+ 'fulfiller'?: FulfillmentFulfiller;
159
165
  /**
160
166
  *
161
167
  * @type {Array<FulfillmentItem>}
@@ -187,6 +193,38 @@ export interface Fulfillment {
187
193
  */
188
194
  'packageWeight'?: number;
189
195
  }
196
+ /**
197
+ * The fulfiller that will be processing this order.
198
+ * @export
199
+ * @interface FulfillmentFulfiller
200
+ */
201
+ export interface FulfillmentFulfiller {
202
+ /**
203
+ *
204
+ * @type {FulfillmentFulfillerLocation}
205
+ * @memberof FulfillmentFulfiller
206
+ */
207
+ 'location'?: FulfillmentFulfillerLocation;
208
+ }
209
+ /**
210
+ *
211
+ * @export
212
+ * @interface FulfillmentFulfillerLocation
213
+ */
214
+ export interface FulfillmentFulfillerLocation {
215
+ /**
216
+ *
217
+ * @type {string}
218
+ * @memberof FulfillmentFulfillerLocation
219
+ */
220
+ 'city'?: string | null;
221
+ /**
222
+ *
223
+ * @type {string}
224
+ * @memberof FulfillmentFulfillerLocation
225
+ */
226
+ 'country'?: string | null;
227
+ }
190
228
  /**
191
229
  *
192
230
  * @export
@@ -212,6 +250,56 @@ export interface FulfillmentItem {
212
250
  */
213
251
  'quantity'?: number;
214
252
  }
253
+ /**
254
+ * Image description
255
+ * @export
256
+ * @interface Image
257
+ */
258
+ export interface Image {
259
+ /**
260
+ * Unique object identifier
261
+ * @type {string}
262
+ * @memberof Image
263
+ */
264
+ 'id'?: string;
265
+ /**
266
+ *
267
+ * @type {string}
268
+ * @memberof Image
269
+ */
270
+ 'src'?: string;
271
+ /**
272
+ *
273
+ * @type {string}
274
+ * @memberof Image
275
+ */
276
+ 'alt'?: string;
277
+ /**
278
+ *
279
+ * @type {number}
280
+ * @memberof Image
281
+ */
282
+ 'sortOrder'?: number;
283
+ }
284
+ /**
285
+ *
286
+ * @export
287
+ * @interface Option
288
+ */
289
+ export interface Option {
290
+ /**
291
+ * Option name
292
+ * @type {string}
293
+ * @memberof Option
294
+ */
295
+ 'name': string;
296
+ /**
297
+ * Option value
298
+ * @type {string}
299
+ * @memberof Option
300
+ */
301
+ 'value': string;
302
+ }
215
303
  /**
216
304
  *
217
305
  * @export
@@ -339,12 +427,30 @@ export interface OrderItem {
339
427
  * @memberof OrderItem
340
428
  */
341
429
  'variantRef': string;
430
+ /**
431
+ * Options associated to an order item\'s variant, such as color and size.
432
+ * @type {Array<Option>}
433
+ * @memberof OrderItem
434
+ */
435
+ 'options'?: Array<Option>;
342
436
  /**
343
437
  *
344
438
  * @type {number}
345
439
  * @memberof OrderItem
346
440
  */
347
441
  'quantity': number;
442
+ /**
443
+ * The name of the product
444
+ * @type {string}
445
+ * @memberof OrderItem
446
+ */
447
+ 'name'?: string;
448
+ /**
449
+ * Images
450
+ * @type {Array<Image>}
451
+ * @memberof OrderItem
452
+ */
453
+ 'images'?: Array<Image>;
348
454
  /**
349
455
  *
350
456
  * @type {Price}
package/dist/api.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Platform API
6
6
  * Manage Your podOS platform Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 0.5.0
8
+ * The version of the OpenAPI document: 0.6.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/base.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.5.0
5
+ * The version of the OpenAPI document: 0.6.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/base.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Platform API
6
6
  * Manage Your podOS platform Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 0.5.0
8
+ * The version of the OpenAPI document: 0.6.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.5.0
5
+ * The version of the OpenAPI document: 0.6.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Platform API
6
6
  * Manage Your podOS platform Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 0.5.0
8
+ * The version of the OpenAPI document: 0.6.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.5.0
5
+ * The version of the OpenAPI document: 0.6.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Platform API
6
6
  * Manage Your podOS platform Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 0.5.0
8
+ * The version of the OpenAPI document: 0.6.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.5.0
5
+ * The version of the OpenAPI document: 0.6.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -156,6 +156,12 @@ export interface Fulfillment {
156
156
  * @memberof Fulfillment
157
157
  */
158
158
  'status'?: OrderStatus;
159
+ /**
160
+ *
161
+ * @type {FulfillmentFulfiller}
162
+ * @memberof Fulfillment
163
+ */
164
+ 'fulfiller'?: FulfillmentFulfiller;
159
165
  /**
160
166
  *
161
167
  * @type {Array<FulfillmentItem>}
@@ -187,6 +193,38 @@ export interface Fulfillment {
187
193
  */
188
194
  'packageWeight'?: number;
189
195
  }
196
+ /**
197
+ * The fulfiller that will be processing this order.
198
+ * @export
199
+ * @interface FulfillmentFulfiller
200
+ */
201
+ export interface FulfillmentFulfiller {
202
+ /**
203
+ *
204
+ * @type {FulfillmentFulfillerLocation}
205
+ * @memberof FulfillmentFulfiller
206
+ */
207
+ 'location'?: FulfillmentFulfillerLocation;
208
+ }
209
+ /**
210
+ *
211
+ * @export
212
+ * @interface FulfillmentFulfillerLocation
213
+ */
214
+ export interface FulfillmentFulfillerLocation {
215
+ /**
216
+ *
217
+ * @type {string}
218
+ * @memberof FulfillmentFulfillerLocation
219
+ */
220
+ 'city'?: string | null;
221
+ /**
222
+ *
223
+ * @type {string}
224
+ * @memberof FulfillmentFulfillerLocation
225
+ */
226
+ 'country'?: string | null;
227
+ }
190
228
  /**
191
229
  *
192
230
  * @export
@@ -212,6 +250,56 @@ export interface FulfillmentItem {
212
250
  */
213
251
  'quantity'?: number;
214
252
  }
253
+ /**
254
+ * Image description
255
+ * @export
256
+ * @interface Image
257
+ */
258
+ export interface Image {
259
+ /**
260
+ * Unique object identifier
261
+ * @type {string}
262
+ * @memberof Image
263
+ */
264
+ 'id'?: string;
265
+ /**
266
+ *
267
+ * @type {string}
268
+ * @memberof Image
269
+ */
270
+ 'src'?: string;
271
+ /**
272
+ *
273
+ * @type {string}
274
+ * @memberof Image
275
+ */
276
+ 'alt'?: string;
277
+ /**
278
+ *
279
+ * @type {number}
280
+ * @memberof Image
281
+ */
282
+ 'sortOrder'?: number;
283
+ }
284
+ /**
285
+ *
286
+ * @export
287
+ * @interface Option
288
+ */
289
+ export interface Option {
290
+ /**
291
+ * Option name
292
+ * @type {string}
293
+ * @memberof Option
294
+ */
295
+ 'name': string;
296
+ /**
297
+ * Option value
298
+ * @type {string}
299
+ * @memberof Option
300
+ */
301
+ 'value': string;
302
+ }
215
303
  /**
216
304
  *
217
305
  * @export
@@ -339,12 +427,30 @@ export interface OrderItem {
339
427
  * @memberof OrderItem
340
428
  */
341
429
  'variantRef': string;
430
+ /**
431
+ * Options associated to an order item\'s variant, such as color and size.
432
+ * @type {Array<Option>}
433
+ * @memberof OrderItem
434
+ */
435
+ 'options'?: Array<Option>;
342
436
  /**
343
437
  *
344
438
  * @type {number}
345
439
  * @memberof OrderItem
346
440
  */
347
441
  'quantity': number;
442
+ /**
443
+ * The name of the product
444
+ * @type {string}
445
+ * @memberof OrderItem
446
+ */
447
+ 'name'?: string;
448
+ /**
449
+ * Images
450
+ * @type {Array<Image>}
451
+ * @memberof OrderItem
452
+ */
453
+ 'images'?: Array<Image>;
348
454
  /**
349
455
  *
350
456
  * @type {Price}
package/dist/esm/api.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Platform API
5
5
  * Manage Your podOS platform Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 0.5.0
7
+ * The version of the OpenAPI document: 0.6.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.5.0
5
+ * The version of the OpenAPI document: 0.6.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/base.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Platform API
5
5
  * Manage Your podOS platform Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 0.5.0
7
+ * The version of the OpenAPI document: 0.6.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.5.0
5
+ * The version of the OpenAPI document: 0.6.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Platform API
5
5
  * Manage Your podOS platform Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 0.5.0
7
+ * The version of the OpenAPI document: 0.6.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.5.0
5
+ * The version of the OpenAPI document: 0.6.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Platform API
5
5
  * Manage Your podOS platform Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 0.5.0
7
+ * The version of the OpenAPI document: 0.6.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.5.0
5
+ * The version of the OpenAPI document: 0.6.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/index.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Platform API
5
5
  * Manage Your podOS platform Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 0.5.0
7
+ * The version of the OpenAPI document: 0.6.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.5.0
5
+ * The version of the OpenAPI document: 0.6.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Platform API
6
6
  * Manage Your podOS platform Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 0.5.0
8
+ * The version of the OpenAPI document: 0.6.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/index.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Platform API
5
5
  * Manage Your podOS platform Currently this API is in development and is not yet publicly accessible. All paths and models are subject to change. For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
6
6
  *
7
- * The version of the OpenAPI document: 0.5.0
7
+ * The version of the OpenAPI document: 0.6.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teemill/platform",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
4
4
  "description": "OpenAPI client for @teemill/platform",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {