@teemill/pickfaces 0.12.0 → 0.12.2

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 (142) hide show
  1. package/.openapi-generator/FILES +4 -2
  2. package/.openapi-generator/VERSION +1 -1
  3. package/README.md +2 -2
  4. package/dist/apis/PickfacesApi.d.ts +9 -9
  5. package/dist/apis/PickfacesApi.js +428 -729
  6. package/dist/esm/apis/PickfacesApi.d.ts +189 -0
  7. package/dist/esm/apis/PickfacesApi.js +565 -0
  8. package/dist/esm/apis/index.d.ts +1 -0
  9. package/dist/esm/apis/index.js +3 -0
  10. package/dist/esm/index.d.ts +3 -0
  11. package/dist/esm/index.js +5 -0
  12. package/dist/esm/models/ApiError.d.ts +37 -0
  13. package/dist/esm/models/ApiError.js +42 -0
  14. package/dist/esm/models/ContainerModel.d.ts +61 -0
  15. package/dist/esm/models/ContainerModel.js +54 -0
  16. package/dist/esm/models/ContainerModels.d.ts +32 -0
  17. package/dist/esm/models/ContainerModels.js +39 -0
  18. package/dist/esm/models/CreatePickfaceRequest.d.ts +37 -0
  19. package/dist/esm/models/CreatePickfaceRequest.js +40 -0
  20. package/dist/esm/models/CreatePickfaceRequestDimensions.d.ts +43 -0
  21. package/dist/esm/models/CreatePickfaceRequestDimensions.js +42 -0
  22. package/dist/esm/models/GetPickfaces200Response.d.ts +38 -0
  23. package/dist/esm/models/GetPickfaces200Response.js +41 -0
  24. package/dist/esm/models/ListPickfaceLogs200Response.d.ts +38 -0
  25. package/dist/esm/models/ListPickfaceLogs200Response.js +41 -0
  26. package/dist/esm/models/ModelError.d.ts +37 -0
  27. package/dist/esm/models/ModelError.js +46 -0
  28. package/dist/esm/models/MoveStockRequest.d.ts +43 -0
  29. package/dist/esm/models/MoveStockRequest.js +48 -0
  30. package/dist/esm/models/Pickface.d.ts +83 -0
  31. package/dist/esm/models/Pickface.js +58 -0
  32. package/dist/esm/models/PickfaceContainerModel.d.ts +37 -0
  33. package/dist/esm/models/PickfaceContainerModel.js +40 -0
  34. package/dist/esm/models/PickfaceContentsInner.d.ts +58 -0
  35. package/dist/esm/models/PickfaceContentsInner.js +49 -0
  36. package/dist/esm/models/PickfaceContentsInnerApplicationsInner.d.ts +37 -0
  37. package/dist/esm/models/PickfaceContentsInnerApplicationsInner.js +40 -0
  38. package/dist/esm/models/PickfaceContentsInnerMetadata.d.ts +43 -0
  39. package/dist/esm/models/PickfaceContentsInnerMetadata.js +42 -0
  40. package/dist/esm/models/PickfaceContentsInnerQuantity.d.ts +43 -0
  41. package/dist/esm/models/PickfaceContentsInnerQuantity.js +42 -0
  42. package/dist/esm/models/PickfaceLastPicked.d.ts +55 -0
  43. package/dist/esm/models/PickfaceLastPicked.js +46 -0
  44. package/dist/esm/models/PickfaceLastRestocked.d.ts +55 -0
  45. package/dist/esm/models/PickfaceLastRestocked.js +46 -0
  46. package/dist/esm/models/PickfaceLog.d.ts +55 -0
  47. package/dist/esm/models/PickfaceLog.js +46 -0
  48. package/dist/esm/models/PickfaceLogUser.d.ts +37 -0
  49. package/dist/esm/models/PickfaceLogUser.js +45 -0
  50. package/dist/esm/models/PickfaceModel.d.ts +37 -0
  51. package/dist/esm/models/PickfaceModel.js +40 -0
  52. package/dist/esm/models/PickfaceModels.d.ts +32 -0
  53. package/dist/esm/models/PickfaceModels.js +39 -0
  54. package/dist/esm/models/UpdatePickfaceRequest.d.ts +44 -0
  55. package/dist/esm/models/UpdatePickfaceRequest.js +43 -0
  56. package/dist/esm/models/UpdatePickfaceRequestContents.d.ts +37 -0
  57. package/dist/esm/models/UpdatePickfaceRequestContents.js +40 -0
  58. package/dist/esm/models/UpdatePickfaceRequestContentsInner.d.ts +38 -0
  59. package/dist/esm/models/UpdatePickfaceRequestContentsInner.js +45 -0
  60. package/dist/esm/models/UpdatePickfaceRequestContentsInnerQuantity.d.ts +45 -0
  61. package/dist/esm/models/UpdatePickfaceRequestContentsInnerQuantity.js +51 -0
  62. package/dist/esm/models/UpdatePickfaceRequestContentsInnerQuantityOneOf.d.ts +45 -0
  63. package/dist/esm/models/UpdatePickfaceRequestContentsInnerQuantityOneOf.js +51 -0
  64. package/dist/esm/models/index.d.ts +19 -0
  65. package/dist/esm/models/index.js +21 -0
  66. package/dist/esm/runtime.d.ts +187 -0
  67. package/dist/esm/runtime.js +333 -0
  68. package/dist/models/ApiError.d.ts +1 -1
  69. package/dist/models/ApiError.js +1 -1
  70. package/dist/models/ContainerModel.d.ts +61 -0
  71. package/dist/models/ContainerModel.js +61 -0
  72. package/dist/models/ContainerModels.d.ts +32 -0
  73. package/dist/models/ContainerModels.js +46 -0
  74. package/dist/models/CreatePickfaceRequest.d.ts +2 -2
  75. package/dist/models/CreatePickfaceRequest.js +3 -3
  76. package/dist/models/GetPickfaces200Response.d.ts +1 -1
  77. package/dist/models/GetPickfaces200Response.js +2 -2
  78. package/dist/models/ListPickfaceLogs200Response.d.ts +1 -1
  79. package/dist/models/ListPickfaceLogs200Response.js +2 -2
  80. package/dist/models/ModelError.js +2 -2
  81. package/dist/models/MoveStockRequest.d.ts +1 -1
  82. package/dist/models/MoveStockRequest.js +1 -1
  83. package/dist/models/Pickface.d.ts +4 -4
  84. package/dist/models/Pickface.js +7 -7
  85. package/dist/models/PickfaceContainerModel.d.ts +37 -0
  86. package/dist/models/PickfaceContainerModel.js +47 -0
  87. package/dist/models/PickfaceContentsInner.d.ts +1 -1
  88. package/dist/models/PickfaceContentsInner.js +4 -4
  89. package/dist/models/PickfaceContentsInnerApplicationsInner.d.ts +1 -1
  90. package/dist/models/PickfaceContentsInnerApplicationsInner.js +1 -1
  91. package/dist/models/PickfaceContentsInnerMetadata.d.ts +1 -1
  92. package/dist/models/PickfaceContentsInnerMetadata.js +1 -1
  93. package/dist/models/PickfaceContentsInnerQuantity.d.ts +1 -1
  94. package/dist/models/PickfaceContentsInnerQuantity.js +1 -1
  95. package/dist/models/PickfaceLastPicked.d.ts +1 -1
  96. package/dist/models/PickfaceLastPicked.js +1 -1
  97. package/dist/models/PickfaceLastRestocked.d.ts +1 -1
  98. package/dist/models/PickfaceLastRestocked.js +1 -1
  99. package/dist/models/PickfaceLog.d.ts +1 -1
  100. package/dist/models/PickfaceLog.js +1 -1
  101. package/dist/models/PickfaceLogUser.js +2 -2
  102. package/dist/models/PickfaceModel.d.ts +1 -1
  103. package/dist/models/PickfaceModel.js +1 -1
  104. package/dist/models/PickfaceModels.d.ts +1 -1
  105. package/dist/models/PickfaceModels.js +2 -2
  106. package/dist/models/UpdatePickfaceRequest.d.ts +2 -2
  107. package/dist/models/UpdatePickfaceRequest.js +4 -4
  108. package/dist/models/UpdatePickfaceRequestContentsInner.d.ts +1 -1
  109. package/dist/models/UpdatePickfaceRequestContentsInner.js +2 -2
  110. package/dist/models/UpdatePickfaceRequestContentsInnerQuantity.d.ts +1 -1
  111. package/dist/models/UpdatePickfaceRequestContentsInnerQuantity.js +1 -1
  112. package/dist/models/index.d.ts +3 -2
  113. package/dist/models/index.js +3 -2
  114. package/dist/runtime.d.ts +1 -1
  115. package/dist/runtime.js +223 -439
  116. package/package.json +4 -2
  117. package/src/apis/PickfacesApi.ts +16 -16
  118. package/src/models/ApiError.ts +1 -1
  119. package/src/models/ContainerModel.ts +103 -0
  120. package/src/models/ContainerModels.ts +67 -0
  121. package/src/models/CreatePickfaceRequest.ts +4 -4
  122. package/src/models/GetPickfaces200Response.ts +1 -1
  123. package/src/models/ListPickfaceLogs200Response.ts +1 -1
  124. package/src/models/MoveStockRequest.ts +1 -1
  125. package/src/models/Pickface.ts +11 -11
  126. package/src/models/PickfaceContainerModel.ts +68 -0
  127. package/src/models/PickfaceContentsInner.ts +1 -1
  128. package/src/models/PickfaceContentsInnerApplicationsInner.ts +1 -1
  129. package/src/models/PickfaceContentsInnerMetadata.ts +1 -1
  130. package/src/models/PickfaceContentsInnerQuantity.ts +1 -1
  131. package/src/models/PickfaceLastPicked.ts +1 -1
  132. package/src/models/PickfaceLastRestocked.ts +1 -1
  133. package/src/models/PickfaceLog.ts +1 -1
  134. package/src/models/PickfaceModel.ts +1 -1
  135. package/src/models/PickfaceModels.ts +1 -1
  136. package/src/models/UpdatePickfaceRequest.ts +4 -4
  137. package/src/models/UpdatePickfaceRequestContentsInner.ts +1 -1
  138. package/src/models/UpdatePickfaceRequestContentsInnerQuantity.ts +1 -1
  139. package/src/models/index.ts +3 -2
  140. package/src/runtime.ts +1 -1
  141. package/tsconfig.esm.json +7 -0
  142. package/tsconfig.json +2 -2
@@ -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.12.0
5
+ * The version of the OpenAPI document: 0.12.2
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.12.0
8
+ * The version of the OpenAPI document: 0.12.2
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,17 +2,17 @@
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.12.0
5
+ * The version of the OpenAPI document: 0.12.2
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import type { PickfaceContainerModel } from './PickfaceContainerModel';
12
13
  import type { PickfaceContentsInner } from './PickfaceContentsInner';
13
14
  import type { PickfaceLastPicked } from './PickfaceLastPicked';
14
15
  import type { PickfaceLastRestocked } from './PickfaceLastRestocked';
15
- import type { PickfaceModel } from './PickfaceModel';
16
16
  /**
17
17
  *
18
18
  * @export
@@ -45,10 +45,10 @@ export interface Pickface {
45
45
  enabled?: boolean;
46
46
  /**
47
47
  *
48
- * @type {PickfaceModel}
48
+ * @type {PickfaceContainerModel}
49
49
  * @memberof Pickface
50
50
  */
51
- model?: PickfaceModel;
51
+ containerModel?: PickfaceContainerModel;
52
52
  /**
53
53
  * The percentage of the pickface that has been taken up by its contents
54
54
  * @type {number}
@@ -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.12.0
8
+ * The version of the OpenAPI document: 0.12.2
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -14,10 +14,10 @@
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
16
  exports.PickfaceToJSON = exports.PickfaceFromJSONTyped = exports.PickfaceFromJSON = exports.instanceOfPickface = void 0;
17
- var PickfaceContentsInner_1 = require("./PickfaceContentsInner");
18
- var PickfaceLastPicked_1 = require("./PickfaceLastPicked");
19
- var PickfaceLastRestocked_1 = require("./PickfaceLastRestocked");
20
- var PickfaceModel_1 = require("./PickfaceModel");
17
+ const PickfaceContainerModel_1 = require("./PickfaceContainerModel");
18
+ const PickfaceContentsInner_1 = require("./PickfaceContentsInner");
19
+ const PickfaceLastPicked_1 = require("./PickfaceLastPicked");
20
+ const PickfaceLastRestocked_1 = require("./PickfaceLastRestocked");
21
21
  /**
22
22
  * Check if a given object implements the Pickface interface.
23
23
  */
@@ -38,7 +38,7 @@ function PickfaceFromJSONTyped(json, ignoreDiscriminator) {
38
38
  'ref': json['ref'] == null ? undefined : json['ref'],
39
39
  'code': json['code'] == null ? undefined : json['code'],
40
40
  'enabled': json['enabled'] == null ? undefined : json['enabled'],
41
- 'model': json['model'] == null ? undefined : (0, PickfaceModel_1.PickfaceModelFromJSON)(json['model']),
41
+ 'containerModel': json['containerModel'] == null ? undefined : (0, PickfaceContainerModel_1.PickfaceContainerModelFromJSON)(json['containerModel']),
42
42
  'fullness': json['fullness'] == null ? undefined : json['fullness'],
43
43
  'lastPicked': json['lastPicked'] == null ? undefined : (0, PickfaceLastPicked_1.PickfaceLastPickedFromJSON)(json['lastPicked']),
44
44
  'lastRestocked': json['lastRestocked'] == null ? undefined : (0, PickfaceLastRestocked_1.PickfaceLastRestockedFromJSON)(json['lastRestocked']),
@@ -55,7 +55,7 @@ function PickfaceToJSON(value) {
55
55
  'ref': value['ref'],
56
56
  'code': value['code'],
57
57
  'enabled': value['enabled'],
58
- 'model': (0, PickfaceModel_1.PickfaceModelToJSON)(value['model']),
58
+ 'containerModel': (0, PickfaceContainerModel_1.PickfaceContainerModelToJSON)(value['containerModel']),
59
59
  'fullness': value['fullness'],
60
60
  'lastPicked': (0, PickfaceLastPicked_1.PickfaceLastPickedToJSON)(value['lastPicked']),
61
61
  'lastRestocked': (0, PickfaceLastRestocked_1.PickfaceLastRestockedToJSON)(value['lastRestocked']),
@@ -0,0 +1,37 @@
1
+ /**
2
+ * Pickfaces API
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
+ *
5
+ * The version of the OpenAPI document: 0.12.2
6
+ * Contact: hello@teemill.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface PickfaceContainerModel
16
+ */
17
+ export interface PickfaceContainerModel {
18
+ /**
19
+ * Unique object identifier
20
+ * @type {string}
21
+ * @memberof PickfaceContainerModel
22
+ */
23
+ id?: string;
24
+ /**
25
+ * A reference to the resource location
26
+ * @type {string}
27
+ * @memberof PickfaceContainerModel
28
+ */
29
+ ref?: string;
30
+ }
31
+ /**
32
+ * Check if a given object implements the PickfaceContainerModel interface.
33
+ */
34
+ export declare function instanceOfPickfaceContainerModel(value: object): boolean;
35
+ export declare function PickfaceContainerModelFromJSON(json: any): PickfaceContainerModel;
36
+ export declare function PickfaceContainerModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): PickfaceContainerModel;
37
+ export declare function PickfaceContainerModelToJSON(value?: PickfaceContainerModel | null): any;
@@ -0,0 +1,47 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Pickfaces API
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
+ *
8
+ * The version of the OpenAPI document: 0.12.2
9
+ * Contact: hello@teemill.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.PickfaceContainerModelToJSON = exports.PickfaceContainerModelFromJSONTyped = exports.PickfaceContainerModelFromJSON = exports.instanceOfPickfaceContainerModel = void 0;
17
+ /**
18
+ * Check if a given object implements the PickfaceContainerModel interface.
19
+ */
20
+ function instanceOfPickfaceContainerModel(value) {
21
+ return true;
22
+ }
23
+ exports.instanceOfPickfaceContainerModel = instanceOfPickfaceContainerModel;
24
+ function PickfaceContainerModelFromJSON(json) {
25
+ return PickfaceContainerModelFromJSONTyped(json, false);
26
+ }
27
+ exports.PickfaceContainerModelFromJSON = PickfaceContainerModelFromJSON;
28
+ function PickfaceContainerModelFromJSONTyped(json, ignoreDiscriminator) {
29
+ if (json == null) {
30
+ return json;
31
+ }
32
+ return {
33
+ 'id': json['id'] == null ? undefined : json['id'],
34
+ 'ref': json['ref'] == null ? undefined : json['ref'],
35
+ };
36
+ }
37
+ exports.PickfaceContainerModelFromJSONTyped = PickfaceContainerModelFromJSONTyped;
38
+ function PickfaceContainerModelToJSON(value) {
39
+ if (value == null) {
40
+ return value;
41
+ }
42
+ return {
43
+ 'id': value['id'],
44
+ 'ref': value['ref'],
45
+ };
46
+ }
47
+ exports.PickfaceContainerModelToJSON = PickfaceContainerModelToJSON;
@@ -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.12.0
5
+ * The version of the OpenAPI document: 0.12.2
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.12.0
8
+ * The version of the OpenAPI document: 0.12.2
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -14,9 +14,9 @@
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
16
  exports.PickfaceContentsInnerToJSON = exports.PickfaceContentsInnerFromJSONTyped = exports.PickfaceContentsInnerFromJSON = exports.instanceOfPickfaceContentsInner = void 0;
17
- var PickfaceContentsInnerApplicationsInner_1 = require("./PickfaceContentsInnerApplicationsInner");
18
- var PickfaceContentsInnerMetadata_1 = require("./PickfaceContentsInnerMetadata");
19
- var PickfaceContentsInnerQuantity_1 = require("./PickfaceContentsInnerQuantity");
17
+ const PickfaceContentsInnerApplicationsInner_1 = require("./PickfaceContentsInnerApplicationsInner");
18
+ const PickfaceContentsInnerMetadata_1 = require("./PickfaceContentsInnerMetadata");
19
+ const PickfaceContentsInnerQuantity_1 = require("./PickfaceContentsInnerQuantity");
20
20
  /**
21
21
  * Check if a given object implements the PickfaceContentsInner interface.
22
22
  */
@@ -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.12.0
5
+ * The version of the OpenAPI document: 0.12.2
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.12.0
8
+ * The version of the OpenAPI document: 0.12.2
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.12.0
5
+ * The version of the OpenAPI document: 0.12.2
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.12.0
8
+ * The version of the OpenAPI document: 0.12.2
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.12.0
5
+ * The version of the OpenAPI document: 0.12.2
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.12.0
8
+ * The version of the OpenAPI document: 0.12.2
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.12.0
5
+ * The version of the OpenAPI document: 0.12.2
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.12.0
8
+ * The version of the OpenAPI document: 0.12.2
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.12.0
5
+ * The version of the OpenAPI document: 0.12.2
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.12.0
8
+ * The version of the OpenAPI document: 0.12.2
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.12.0
5
+ * The version of the OpenAPI document: 0.12.2
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.12.0
8
+ * The version of the OpenAPI document: 0.12.2
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -14,12 +14,12 @@
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
16
  exports.PickfaceLogUserToJSON = exports.PickfaceLogUserFromJSONTyped = exports.PickfaceLogUserFromJSON = exports.instanceOfPickfaceLogUser = void 0;
17
- var runtime_1 = require("../runtime");
17
+ const runtime_1 = require("../runtime");
18
18
  /**
19
19
  * Check if a given object implements the PickfaceLogUser interface.
20
20
  */
21
21
  function instanceOfPickfaceLogUser(value) {
22
- var isInstance = true;
22
+ let isInstance = true;
23
23
  return isInstance;
24
24
  }
25
25
  exports.instanceOfPickfaceLogUser = instanceOfPickfaceLogUser;
@@ -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.12.0
5
+ * The version of the OpenAPI document: 0.12.1
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.12.0
8
+ * The version of the OpenAPI document: 0.12.1
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.12.0
5
+ * The version of the OpenAPI document: 0.12.1
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.12.0
8
+ * The version of the OpenAPI document: 0.12.1
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -14,7 +14,7 @@
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
16
  exports.PickfaceModelsToJSON = exports.PickfaceModelsFromJSONTyped = exports.PickfaceModelsFromJSON = exports.instanceOfPickfaceModels = void 0;
17
- var PickfaceModel_1 = require("./PickfaceModel");
17
+ const PickfaceModel_1 = require("./PickfaceModel");
18
18
  /**
19
19
  * Check if a given object implements the PickfaceModels interface.
20
20
  */
@@ -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.12.0
5
+ * The version of the OpenAPI document: 0.12.2
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -27,7 +27,7 @@ export interface UpdatePickfaceRequest {
27
27
  * @type {string}
28
28
  * @memberof UpdatePickfaceRequest
29
29
  */
30
- modelId?: string;
30
+ containerModelId?: string;
31
31
  /**
32
32
  *
33
33
  * @type {Array<UpdatePickfaceRequestContentsInner>}
@@ -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.12.0
8
+ * The version of the OpenAPI document: 0.12.2
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -14,7 +14,7 @@
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
16
  exports.UpdatePickfaceRequestToJSON = exports.UpdatePickfaceRequestFromJSONTyped = exports.UpdatePickfaceRequestFromJSON = exports.instanceOfUpdatePickfaceRequest = void 0;
17
- var UpdatePickfaceRequestContentsInner_1 = require("./UpdatePickfaceRequestContentsInner");
17
+ const UpdatePickfaceRequestContentsInner_1 = require("./UpdatePickfaceRequestContentsInner");
18
18
  /**
19
19
  * Check if a given object implements the UpdatePickfaceRequest interface.
20
20
  */
@@ -32,7 +32,7 @@ function UpdatePickfaceRequestFromJSONTyped(json, ignoreDiscriminator) {
32
32
  }
33
33
  return {
34
34
  'enabled': json['enabled'] == null ? undefined : json['enabled'],
35
- 'modelId': json['modelId'] == null ? undefined : json['modelId'],
35
+ 'containerModelId': json['containerModelId'] == null ? undefined : json['containerModelId'],
36
36
  'contents': json['contents'] == null ? undefined : (json['contents'].map(UpdatePickfaceRequestContentsInner_1.UpdatePickfaceRequestContentsInnerFromJSON)),
37
37
  };
38
38
  }
@@ -43,7 +43,7 @@ function UpdatePickfaceRequestToJSON(value) {
43
43
  }
44
44
  return {
45
45
  'enabled': value['enabled'],
46
- 'modelId': value['modelId'],
46
+ 'containerModelId': value['containerModelId'],
47
47
  'contents': value['contents'] == null ? undefined : (value['contents'].map(UpdatePickfaceRequestContentsInner_1.UpdatePickfaceRequestContentsInnerToJSON)),
48
48
  };
49
49
  }
@@ -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.12.0
5
+ * The version of the OpenAPI document: 0.12.2
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.12.0
8
+ * The version of the OpenAPI document: 0.12.2
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -14,7 +14,7 @@
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
16
  exports.UpdatePickfaceRequestContentsInnerToJSON = exports.UpdatePickfaceRequestContentsInnerFromJSONTyped = exports.UpdatePickfaceRequestContentsInnerFromJSON = exports.instanceOfUpdatePickfaceRequestContentsInner = void 0;
17
- var UpdatePickfaceRequestContentsInnerQuantity_1 = require("./UpdatePickfaceRequestContentsInnerQuantity");
17
+ const UpdatePickfaceRequestContentsInnerQuantity_1 = require("./UpdatePickfaceRequestContentsInnerQuantity");
18
18
  /**
19
19
  * Check if a given object implements the UpdatePickfaceRequestContentsInner interface.
20
20
  */
@@ -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.12.0
5
+ * The version of the OpenAPI document: 0.12.2
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.12.0
8
+ * The version of the OpenAPI document: 0.12.2
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,9 +1,12 @@
1
1
  export * from './ApiError';
2
+ export * from './ContainerModel';
3
+ export * from './ContainerModels';
2
4
  export * from './CreatePickfaceRequest';
3
5
  export * from './GetPickfaces200Response';
4
6
  export * from './ListPickfaceLogs200Response';
5
7
  export * from './MoveStockRequest';
6
8
  export * from './Pickface';
9
+ export * from './PickfaceContainerModel';
7
10
  export * from './PickfaceContentsInner';
8
11
  export * from './PickfaceContentsInnerApplicationsInner';
9
12
  export * from './PickfaceContentsInnerMetadata';
@@ -11,8 +14,6 @@ export * from './PickfaceContentsInnerQuantity';
11
14
  export * from './PickfaceLastPicked';
12
15
  export * from './PickfaceLastRestocked';
13
16
  export * from './PickfaceLog';
14
- export * from './PickfaceModel';
15
- export * from './PickfaceModels';
16
17
  export * from './UpdatePickfaceRequest';
17
18
  export * from './UpdatePickfaceRequestContentsInner';
18
19
  export * from './UpdatePickfaceRequestContentsInnerQuantity';
@@ -17,11 +17,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
17
17
  /* tslint:disable */
18
18
  /* eslint-disable */
19
19
  __exportStar(require("./ApiError"), exports);
20
+ __exportStar(require("./ContainerModel"), exports);
21
+ __exportStar(require("./ContainerModels"), exports);
20
22
  __exportStar(require("./CreatePickfaceRequest"), exports);
21
23
  __exportStar(require("./GetPickfaces200Response"), exports);
22
24
  __exportStar(require("./ListPickfaceLogs200Response"), exports);
23
25
  __exportStar(require("./MoveStockRequest"), exports);
24
26
  __exportStar(require("./Pickface"), exports);
27
+ __exportStar(require("./PickfaceContainerModel"), exports);
25
28
  __exportStar(require("./PickfaceContentsInner"), exports);
26
29
  __exportStar(require("./PickfaceContentsInnerApplicationsInner"), exports);
27
30
  __exportStar(require("./PickfaceContentsInnerMetadata"), exports);
@@ -29,8 +32,6 @@ __exportStar(require("./PickfaceContentsInnerQuantity"), exports);
29
32
  __exportStar(require("./PickfaceLastPicked"), exports);
30
33
  __exportStar(require("./PickfaceLastRestocked"), exports);
31
34
  __exportStar(require("./PickfaceLog"), exports);
32
- __exportStar(require("./PickfaceModel"), exports);
33
- __exportStar(require("./PickfaceModels"), exports);
34
35
  __exportStar(require("./UpdatePickfaceRequest"), exports);
35
36
  __exportStar(require("./UpdatePickfaceRequestContentsInner"), exports);
36
37
  __exportStar(require("./UpdatePickfaceRequestContentsInnerQuantity"), exports);
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.12.0
5
+ * The version of the OpenAPI document: 0.12.2
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).