@teemill/pickfaces 0.4.0 → 0.5.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.
Files changed (38) hide show
  1. package/README.md +2 -2
  2. package/dist/apis/PickfacesApi.d.ts +14 -1
  3. package/dist/apis/PickfacesApi.js +65 -1
  4. package/dist/models/CreatePickfaceRequest.d.ts +1 -1
  5. package/dist/models/CreatePickfaceRequest.js +1 -1
  6. package/dist/models/CreatePickfaceRequestDimensions.d.ts +1 -1
  7. package/dist/models/CreatePickfaceRequestDimensions.js +1 -1
  8. package/dist/models/GetPickfaces200Response.d.ts +1 -1
  9. package/dist/models/GetPickfaces200Response.js +1 -1
  10. package/dist/models/ModelError.d.ts +1 -1
  11. package/dist/models/ModelError.js +1 -1
  12. package/dist/models/Pickface.d.ts +1 -1
  13. package/dist/models/Pickface.js +1 -1
  14. package/dist/models/PickfaceContentsInner.d.ts +1 -1
  15. package/dist/models/PickfaceContentsInner.js +1 -1
  16. package/dist/models/PickfaceContentsInnerApplicationsInner.d.ts +1 -1
  17. package/dist/models/PickfaceContentsInnerApplicationsInner.js +1 -1
  18. package/dist/models/PickfaceContentsInnerMetadata.d.ts +1 -1
  19. package/dist/models/PickfaceContentsInnerMetadata.js +1 -1
  20. package/dist/models/PickfaceContentsInnerQuantity.d.ts +1 -1
  21. package/dist/models/PickfaceContentsInnerQuantity.js +1 -1
  22. package/dist/models/UpdatePickfaceRequest.d.ts +1 -1
  23. package/dist/models/UpdatePickfaceRequest.js +1 -1
  24. package/dist/runtime.d.ts +1 -1
  25. package/dist/runtime.js +1 -1
  26. package/package.json +1 -1
  27. package/src/apis/PickfacesApi.ts +59 -1
  28. package/src/models/CreatePickfaceRequest.ts +1 -1
  29. package/src/models/CreatePickfaceRequestDimensions.ts +1 -1
  30. package/src/models/GetPickfaces200Response.ts +1 -1
  31. package/src/models/ModelError.ts +1 -1
  32. package/src/models/Pickface.ts +1 -1
  33. package/src/models/PickfaceContentsInner.ts +1 -1
  34. package/src/models/PickfaceContentsInnerApplicationsInner.ts +1 -1
  35. package/src/models/PickfaceContentsInnerMetadata.ts +1 -1
  36. package/src/models/PickfaceContentsInnerQuantity.ts +1 -1
  37. package/src/models/UpdatePickfaceRequest.ts +1 -1
  38. package/src/runtime.ts +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/pickfaces@0.4.0
1
+ ## @teemill/pickfaces@0.5.0
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). 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/pickfaces@0.4.0 --save
39
+ npm install @teemill/pickfaces@0.5.0 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -2,7 +2,7 @@
2
2
  * Pickfaces API
3
3
  * Manage Teemill Pickfaces. 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.4.0
5
+ * The version of the OpenAPI document: 0.5.0
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -19,6 +19,9 @@ export interface DeletePickfaceRequest {
19
19
  project: string;
20
20
  pickfaceId: string;
21
21
  }
22
+ export interface ExportPickfacesRequest {
23
+ project: string;
24
+ }
22
25
  export interface GetPickfaceRequest {
23
26
  project: string;
24
27
  pickfaceId: string;
@@ -58,6 +61,16 @@ export declare class PickfacesApi extends runtime.BaseAPI {
58
61
  * Delete Pickface
59
62
  */
60
63
  deletePickface(project: string, pickfaceId: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
64
+ /**
65
+ * Export pickfaces as a CSV file
66
+ * Export pickfaces
67
+ */
68
+ exportPickfacesRaw(requestParameters: ExportPickfacesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Blob>>;
69
+ /**
70
+ * Export pickfaces as a CSV file
71
+ * Export pickfaces
72
+ */
73
+ exportPickfaces(project: string, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Blob>;
61
74
  /**
62
75
  * Get a pickface
63
76
  * Get pickface
@@ -5,7 +5,7 @@
5
5
  * Pickfaces API
6
6
  * Manage Teemill Pickfaces. 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.4.0
8
+ * The version of the OpenAPI document: 0.5.0
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -220,6 +220,70 @@ var PickfacesApi = /** @class */ (function (_super) {
220
220
  });
221
221
  });
222
222
  };
223
+ /**
224
+ * Export pickfaces as a CSV file
225
+ * Export pickfaces
226
+ */
227
+ PickfacesApi.prototype.exportPickfacesRaw = function (requestParameters, initOverrides) {
228
+ return __awaiter(this, void 0, void 0, function () {
229
+ var queryParameters, headerParameters, _a, _b, response;
230
+ return __generator(this, function (_c) {
231
+ switch (_c.label) {
232
+ case 0:
233
+ if (requestParameters.project === null || requestParameters.project === undefined) {
234
+ throw new runtime.RequiredError('project', 'Required parameter requestParameters.project was null or undefined when calling exportPickfaces.');
235
+ }
236
+ queryParameters = {};
237
+ if (requestParameters.project !== undefined) {
238
+ queryParameters['project'] = requestParameters.project;
239
+ }
240
+ headerParameters = {};
241
+ if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 2];
242
+ // oauth required
243
+ _a = headerParameters;
244
+ _b = "Authorization";
245
+ return [4 /*yield*/, this.configuration.accessToken("session-oauth", [])];
246
+ case 1:
247
+ // oauth required
248
+ _a[_b] = _c.sent();
249
+ _c.label = 2;
250
+ case 2:
251
+ if (this.configuration && this.configuration.apiKey) {
252
+ headerParameters["Authorization"] = this.configuration.apiKey("Authorization"); // api-key authentication
253
+ }
254
+ return [4 /*yield*/, this.request({
255
+ path: "/v1/pickfaces/export",
256
+ method: 'GET',
257
+ headers: headerParameters,
258
+ query: queryParameters,
259
+ }, initOverrides)];
260
+ case 3:
261
+ response = _c.sent();
262
+ return [2 /*return*/, new runtime.BlobApiResponse(response)];
263
+ }
264
+ });
265
+ });
266
+ };
267
+ /**
268
+ * Export pickfaces as a CSV file
269
+ * Export pickfaces
270
+ */
271
+ PickfacesApi.prototype.exportPickfaces = function (project, initOverrides) {
272
+ return __awaiter(this, void 0, void 0, function () {
273
+ var response;
274
+ return __generator(this, function (_a) {
275
+ switch (_a.label) {
276
+ case 0: return [4 /*yield*/, this.exportPickfacesRaw({
277
+ project: project,
278
+ }, initOverrides)];
279
+ case 1:
280
+ response = _a.sent();
281
+ return [4 /*yield*/, response.value()];
282
+ case 2: return [2 /*return*/, _a.sent()];
283
+ }
284
+ });
285
+ });
286
+ };
223
287
  /**
224
288
  * Get a pickface
225
289
  * Get pickface
@@ -2,7 +2,7 @@
2
2
  * Pickfaces API
3
3
  * Manage Teemill Pickfaces. 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.4.0
5
+ * The version of the OpenAPI document: 0.5.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
  * Pickfaces API
6
6
  * Manage Teemill Pickfaces. 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.4.0
8
+ * The version of the OpenAPI document: 0.5.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
  * Pickfaces API
3
3
  * Manage Teemill Pickfaces. 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.4.0
5
+ * The version of the OpenAPI document: 0.5.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
  * Pickfaces API
6
6
  * Manage Teemill Pickfaces. 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.4.0
8
+ * The version of the OpenAPI document: 0.5.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
  * Pickfaces API
3
3
  * Manage Teemill Pickfaces. 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.4.0
5
+ * The version of the OpenAPI document: 0.5.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
  * Pickfaces API
6
6
  * Manage Teemill Pickfaces. 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.4.0
8
+ * The version of the OpenAPI document: 0.5.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
  * Pickfaces API
3
3
  * Manage Teemill Pickfaces. 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.4.0
5
+ * The version of the OpenAPI document: 0.5.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
  * Pickfaces API
6
6
  * Manage Teemill Pickfaces. 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.4.0
8
+ * The version of the OpenAPI document: 0.5.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
  * Pickfaces API
3
3
  * Manage Teemill Pickfaces. 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.4.0
5
+ * The version of the OpenAPI document: 0.5.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
  * Pickfaces API
6
6
  * Manage Teemill Pickfaces. 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.4.0
8
+ * The version of the OpenAPI document: 0.5.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
  * Pickfaces API
3
3
  * Manage Teemill Pickfaces. 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.4.0
5
+ * The version of the OpenAPI document: 0.5.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
  * Pickfaces API
6
6
  * Manage Teemill Pickfaces. 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.4.0
8
+ * The version of the OpenAPI document: 0.5.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
  * Pickfaces API
3
3
  * Manage Teemill Pickfaces. 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.4.0
5
+ * The version of the OpenAPI document: 0.5.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
  * Pickfaces API
6
6
  * Manage Teemill Pickfaces. 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.4.0
8
+ * The version of the OpenAPI document: 0.5.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
  * Pickfaces API
3
3
  * Manage Teemill Pickfaces. 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.4.0
5
+ * The version of the OpenAPI document: 0.5.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
  * Pickfaces API
6
6
  * Manage Teemill Pickfaces. 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.4.0
8
+ * The version of the OpenAPI document: 0.5.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
  * Pickfaces API
3
3
  * Manage Teemill Pickfaces. 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.4.0
5
+ * The version of the OpenAPI document: 0.5.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
  * Pickfaces API
6
6
  * Manage Teemill Pickfaces. 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.4.0
8
+ * The version of the OpenAPI document: 0.5.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
  * Pickfaces API
3
3
  * Manage Teemill Pickfaces. 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.4.0
5
+ * The version of the OpenAPI document: 0.5.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
  * Pickfaces API
6
6
  * Manage Teemill Pickfaces. 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.4.0
8
+ * The version of the OpenAPI document: 0.5.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/runtime.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Pickfaces API
3
3
  * Manage Teemill Pickfaces. 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.4.0
5
+ * The version of the OpenAPI document: 0.5.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/runtime.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Pickfaces API
6
6
  * Manage Teemill Pickfaces. 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.4.0
8
+ * The version of the OpenAPI document: 0.5.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teemill/pickfaces",
3
- "version": "0.4.0",
3
+ "version": "0.5.0",
4
4
  "description": "OpenAPI client for @teemill/pickfaces",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -4,7 +4,7 @@
4
4
  * Pickfaces API
5
5
  * Manage Teemill Pickfaces. 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.4.0
7
+ * The version of the OpenAPI document: 0.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -41,6 +41,10 @@ export interface DeletePickfaceRequest {
41
41
  pickfaceId: string;
42
42
  }
43
43
 
44
+ export interface ExportPickfacesRequest {
45
+ project: string;
46
+ }
47
+
44
48
  export interface GetPickfaceRequest {
45
49
  project: string;
46
50
  pickfaceId: string;
@@ -181,6 +185,60 @@ export class PickfacesApi extends runtime.BaseAPI {
181
185
  );
182
186
  }
183
187
 
188
+ /**
189
+ * Export pickfaces as a CSV file
190
+ * Export pickfaces
191
+ */
192
+ async exportPickfacesRaw(requestParameters: ExportPickfacesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Blob>> {
193
+ if (requestParameters.project === null || requestParameters.project === undefined) {
194
+ throw new runtime.RequiredError('project','Required parameter requestParameters.project was null or undefined when calling exportPickfaces.');
195
+ }
196
+
197
+ const queryParameters: any = {};
198
+
199
+ if (requestParameters.project !== undefined) {
200
+ queryParameters['project'] = requestParameters.project;
201
+ }
202
+
203
+ const headerParameters: runtime.HTTPHeaders = {};
204
+
205
+ if (this.configuration && this.configuration.accessToken) {
206
+ // oauth required
207
+ headerParameters["Authorization"] = await this.configuration.accessToken("session-oauth", []);
208
+ }
209
+
210
+ if (this.configuration && this.configuration.apiKey) {
211
+ headerParameters["Authorization"] = this.configuration.apiKey("Authorization"); // api-key authentication
212
+ }
213
+
214
+ const response = await this.request({
215
+ path: `/v1/pickfaces/export`,
216
+ method: 'GET',
217
+ headers: headerParameters,
218
+ query: queryParameters,
219
+ }, initOverrides);
220
+
221
+ return new runtime.BlobApiResponse(response);
222
+ }
223
+
224
+ /**
225
+ * Export pickfaces as a CSV file
226
+ * Export pickfaces
227
+ */
228
+ async exportPickfaces(
229
+ project: string,
230
+ initOverrides?: RequestInit | runtime.InitOverrideFunction
231
+ ): Promise<Blob> {
232
+ const response = await this.exportPickfacesRaw(
233
+ {
234
+ project: project,
235
+ },
236
+ initOverrides
237
+ );
238
+
239
+ return await response.value();
240
+ }
241
+
184
242
  /**
185
243
  * Get a pickface
186
244
  * Get pickface
@@ -4,7 +4,7 @@
4
4
  * Pickfaces API
5
5
  * Manage Teemill Pickfaces. 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.4.0
7
+ * The version of the OpenAPI document: 0.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Pickfaces API
5
5
  * Manage Teemill Pickfaces. 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.4.0
7
+ * The version of the OpenAPI document: 0.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Pickfaces API
5
5
  * Manage Teemill Pickfaces. 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.4.0
7
+ * The version of the OpenAPI document: 0.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Pickfaces API
5
5
  * Manage Teemill Pickfaces. 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.4.0
7
+ * The version of the OpenAPI document: 0.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Pickfaces API
5
5
  * Manage Teemill Pickfaces. 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.4.0
7
+ * The version of the OpenAPI document: 0.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Pickfaces API
5
5
  * Manage Teemill Pickfaces. 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.4.0
7
+ * The version of the OpenAPI document: 0.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Pickfaces API
5
5
  * Manage Teemill Pickfaces. 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.4.0
7
+ * The version of the OpenAPI document: 0.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Pickfaces API
5
5
  * Manage Teemill Pickfaces. 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.4.0
7
+ * The version of the OpenAPI document: 0.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Pickfaces API
5
5
  * Manage Teemill Pickfaces. 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.4.0
7
+ * The version of the OpenAPI document: 0.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Pickfaces API
5
5
  * Manage Teemill Pickfaces. 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.4.0
7
+ * The version of the OpenAPI document: 0.5.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/src/runtime.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Pickfaces API
5
5
  * Manage Teemill Pickfaces. 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.4.0
7
+ * The version of the OpenAPI document: 0.5.0
8
8
  * Contact: hello@teemill.com
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).