@teemill/pickfaces 0.25.0 → 0.27.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 +75 -2
- package/api.ts +58 -86
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +55 -86
- package/dist/api.js +7 -3
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +55 -86
- package/dist/esm/api.js +6 -2
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/ApiError.md +22 -0
- package/docs/ContainerType.md +31 -0
- package/docs/ContainerTypes.md +20 -0
- package/docs/CreatePickfaceRequest.md +30 -0
- package/docs/ExportPickfaces202Response.md +20 -0
- package/docs/IssueEmptyPickfaceRequest.md +20 -0
- package/docs/IssueWrongContentsPickfaceRequest.md +22 -0
- package/docs/ListPickfaceLogs200Response.md +22 -0
- package/docs/ListPickfaces200Response.md +22 -0
- package/docs/MoveStockRequest.md +24 -0
- package/docs/Pickface.md +44 -0
- package/docs/PickfaceContainerType.md +22 -0
- package/docs/PickfaceContentsInner.md +26 -0
- package/docs/PickfaceContentsInnerMetadata.md +29 -0
- package/docs/PickfaceContentsInnerQuantity.md +24 -0
- package/docs/PickfaceIssue.md +23 -0
- package/docs/PickfaceLog.md +28 -0
- package/docs/PickfaceZone.md +24 -0
- package/docs/PickfacesApi.md +957 -0
- package/docs/UpdatePickfaceRequest.md +35 -0
- package/docs/UpdatePickfaceRequestContentsInner.md +22 -0
- package/docs/UpdatePickfaceRequestContentsInnerQuantity.md +22 -0
- package/docs/UpdatePickfaceRequestContentsInnerQuantityAvailable.md +23 -0
- package/docs/UpdatePickfaceRequestContentsInnerQuantityReserved.md +23 -0
- package/docs/VariantAttribute.md +24 -0
- package/docs/VariantAttributeThumbnail.md +23 -0
- package/index.ts +1 -1
- package/package.json +1 -1
package/dist/esm/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickfaces API
|
|
3
3
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.27.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -301,16 +301,16 @@ export interface Pickface {
|
|
|
301
301
|
'fullness': number;
|
|
302
302
|
/**
|
|
303
303
|
*
|
|
304
|
-
* @type {
|
|
304
|
+
* @type {PickfaceLog}
|
|
305
305
|
* @memberof Pickface
|
|
306
306
|
*/
|
|
307
|
-
'lastPicked':
|
|
307
|
+
'lastPicked': PickfaceLog | null;
|
|
308
308
|
/**
|
|
309
309
|
*
|
|
310
|
-
* @type {
|
|
310
|
+
* @type {PickfaceLog}
|
|
311
311
|
* @memberof Pickface
|
|
312
312
|
*/
|
|
313
|
-
'lastRestocked':
|
|
313
|
+
'lastRestocked': PickfaceLog | null;
|
|
314
314
|
/**
|
|
315
315
|
*
|
|
316
316
|
* @type {PickfaceIssue}
|
|
@@ -455,80 +455,6 @@ export interface PickfaceIssue {
|
|
|
455
455
|
*/
|
|
456
456
|
'ref'?: string;
|
|
457
457
|
}
|
|
458
|
-
/**
|
|
459
|
-
*
|
|
460
|
-
* @export
|
|
461
|
-
* @interface PickfaceLastPicked
|
|
462
|
-
*/
|
|
463
|
-
export interface PickfaceLastPicked {
|
|
464
|
-
/**
|
|
465
|
-
* Unique object identifier
|
|
466
|
-
* @type {string}
|
|
467
|
-
* @memberof PickfaceLastPicked
|
|
468
|
-
*/
|
|
469
|
-
'id': string;
|
|
470
|
-
/**
|
|
471
|
-
* A reference to the resource location
|
|
472
|
-
* @type {string}
|
|
473
|
-
* @memberof PickfaceLastPicked
|
|
474
|
-
*/
|
|
475
|
-
'userRef': string;
|
|
476
|
-
/**
|
|
477
|
-
* The action that was taken
|
|
478
|
-
* @type {string}
|
|
479
|
-
* @memberof PickfaceLastPicked
|
|
480
|
-
*/
|
|
481
|
-
'action': string;
|
|
482
|
-
/**
|
|
483
|
-
* The reason for the action
|
|
484
|
-
* @type {string}
|
|
485
|
-
* @memberof PickfaceLastPicked
|
|
486
|
-
*/
|
|
487
|
-
'reason': string | null;
|
|
488
|
-
/**
|
|
489
|
-
* ISO 8601 Created at timestamp
|
|
490
|
-
* @type {string}
|
|
491
|
-
* @memberof PickfaceLastPicked
|
|
492
|
-
*/
|
|
493
|
-
'createdAt': string;
|
|
494
|
-
}
|
|
495
|
-
/**
|
|
496
|
-
*
|
|
497
|
-
* @export
|
|
498
|
-
* @interface PickfaceLastRestocked
|
|
499
|
-
*/
|
|
500
|
-
export interface PickfaceLastRestocked {
|
|
501
|
-
/**
|
|
502
|
-
* Unique object identifier
|
|
503
|
-
* @type {string}
|
|
504
|
-
* @memberof PickfaceLastRestocked
|
|
505
|
-
*/
|
|
506
|
-
'id': string;
|
|
507
|
-
/**
|
|
508
|
-
* A reference to the resource location
|
|
509
|
-
* @type {string}
|
|
510
|
-
* @memberof PickfaceLastRestocked
|
|
511
|
-
*/
|
|
512
|
-
'userRef': string;
|
|
513
|
-
/**
|
|
514
|
-
* The action that was taken
|
|
515
|
-
* @type {string}
|
|
516
|
-
* @memberof PickfaceLastRestocked
|
|
517
|
-
*/
|
|
518
|
-
'action': string;
|
|
519
|
-
/**
|
|
520
|
-
* The reason for the action
|
|
521
|
-
* @type {string}
|
|
522
|
-
* @memberof PickfaceLastRestocked
|
|
523
|
-
*/
|
|
524
|
-
'reason': string | null;
|
|
525
|
-
/**
|
|
526
|
-
* ISO 8601 Created at timestamp
|
|
527
|
-
* @type {string}
|
|
528
|
-
* @memberof PickfaceLastRestocked
|
|
529
|
-
*/
|
|
530
|
-
'createdAt': string;
|
|
531
|
-
}
|
|
532
458
|
/**
|
|
533
459
|
*
|
|
534
460
|
* @export
|
|
@@ -672,23 +598,66 @@ export interface UpdatePickfaceRequestContentsInner {
|
|
|
672
598
|
*/
|
|
673
599
|
export interface UpdatePickfaceRequestContentsInnerQuantity {
|
|
674
600
|
/**
|
|
675
|
-
*
|
|
676
|
-
* @type {
|
|
601
|
+
*
|
|
602
|
+
* @type {UpdatePickfaceRequestContentsInnerQuantityAvailable}
|
|
677
603
|
* @memberof UpdatePickfaceRequestContentsInnerQuantity
|
|
678
604
|
*/
|
|
679
|
-
'
|
|
605
|
+
'available'?: UpdatePickfaceRequestContentsInnerQuantityAvailable | null;
|
|
680
606
|
/**
|
|
681
|
-
*
|
|
682
|
-
* @type {
|
|
607
|
+
*
|
|
608
|
+
* @type {UpdatePickfaceRequestContentsInnerQuantityReserved}
|
|
683
609
|
* @memberof UpdatePickfaceRequestContentsInnerQuantity
|
|
684
610
|
*/
|
|
611
|
+
'reserved'?: UpdatePickfaceRequestContentsInnerQuantityReserved | null;
|
|
612
|
+
}
|
|
613
|
+
/**
|
|
614
|
+
* The amount to add or subtract from the available stock on the pickface
|
|
615
|
+
* @export
|
|
616
|
+
* @interface UpdatePickfaceRequestContentsInnerQuantityAvailable
|
|
617
|
+
*/
|
|
618
|
+
export interface UpdatePickfaceRequestContentsInnerQuantityAvailable {
|
|
619
|
+
/**
|
|
620
|
+
*
|
|
621
|
+
* @type {string}
|
|
622
|
+
* @memberof UpdatePickfaceRequestContentsInnerQuantityAvailable
|
|
623
|
+
*/
|
|
624
|
+
'operation'?: UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum;
|
|
625
|
+
/**
|
|
626
|
+
*
|
|
627
|
+
* @type {number}
|
|
628
|
+
* @memberof UpdatePickfaceRequestContentsInnerQuantityAvailable
|
|
629
|
+
*/
|
|
630
|
+
'value': number;
|
|
631
|
+
}
|
|
632
|
+
export declare const UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum: {
|
|
633
|
+
readonly Add: "add";
|
|
634
|
+
readonly Subtract: "subtract";
|
|
635
|
+
};
|
|
636
|
+
export type UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum];
|
|
637
|
+
/**
|
|
638
|
+
* The amount to add or subtract from the reserved stock on the pickface. Note that you cannot subtract more than the amount of stock that has been reserved for PodOS orders.
|
|
639
|
+
* @export
|
|
640
|
+
* @interface UpdatePickfaceRequestContentsInnerQuantityReserved
|
|
641
|
+
*/
|
|
642
|
+
export interface UpdatePickfaceRequestContentsInnerQuantityReserved {
|
|
643
|
+
/**
|
|
644
|
+
*
|
|
645
|
+
* @type {string}
|
|
646
|
+
* @memberof UpdatePickfaceRequestContentsInnerQuantityReserved
|
|
647
|
+
*/
|
|
648
|
+
'operation'?: UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum;
|
|
649
|
+
/**
|
|
650
|
+
*
|
|
651
|
+
* @type {number}
|
|
652
|
+
* @memberof UpdatePickfaceRequestContentsInnerQuantityReserved
|
|
653
|
+
*/
|
|
685
654
|
'value': number;
|
|
686
655
|
}
|
|
687
|
-
export declare const
|
|
656
|
+
export declare const UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum: {
|
|
688
657
|
readonly Add: "add";
|
|
689
658
|
readonly Subtract: "subtract";
|
|
690
659
|
};
|
|
691
|
-
export type
|
|
660
|
+
export type UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum];
|
|
692
661
|
/**
|
|
693
662
|
*
|
|
694
663
|
* @export
|
package/dist/esm/api.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Pickfaces API
|
|
5
5
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.27.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -26,7 +26,11 @@ import globalAxios from 'axios';
|
|
|
26
26
|
import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from './common';
|
|
27
27
|
// @ts-ignore
|
|
28
28
|
import { BASE_PATH, BaseAPI, operationServerMap } from './base';
|
|
29
|
-
export const
|
|
29
|
+
export const UpdatePickfaceRequestContentsInnerQuantityAvailableOperationEnum = {
|
|
30
|
+
Add: 'add',
|
|
31
|
+
Subtract: 'subtract'
|
|
32
|
+
};
|
|
33
|
+
export const UpdatePickfaceRequestContentsInnerQuantityReservedOperationEnum = {
|
|
30
34
|
Add: 'add',
|
|
31
35
|
Subtract: 'subtract'
|
|
32
36
|
};
|
package/dist/esm/base.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickfaces API
|
|
3
3
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.27.0
|
|
6
6
|
*
|
|
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
|
* Pickfaces API
|
|
5
5
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.27.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickfaces API
|
|
3
3
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.27.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/common.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Pickfaces API
|
|
5
5
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.27.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickfaces API
|
|
3
3
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.27.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Pickfaces API
|
|
5
5
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.27.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Pickfaces API
|
|
3
3
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.27.0
|
|
6
6
|
*
|
|
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
|
* Pickfaces API
|
|
5
5
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.27.0
|
|
8
8
|
*
|
|
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
|
* Pickfaces API
|
|
3
3
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.27.0
|
|
6
6
|
*
|
|
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
|
* Pickfaces API
|
|
6
6
|
* Use this API to access your pickfaces. You must have the warehouse module installed to access this API.
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
+
* The version of the OpenAPI document: 0.27.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/docs/ApiError.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# ApiError
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**code** | **string** | | [optional] [default to undefined]
|
|
9
|
+
**message** | **string** | | [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { ApiError } from '@teemill/pickfaces';
|
|
15
|
+
|
|
16
|
+
const instance: ApiError = {
|
|
17
|
+
code,
|
|
18
|
+
message,
|
|
19
|
+
};
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# ContainerType
|
|
2
|
+
|
|
3
|
+
The factory container the pickface is within
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**id** | **string** | Unique object identifier | [default to undefined]
|
|
10
|
+
**ref** | **string** | A reference to the resource location | [default to undefined]
|
|
11
|
+
**name** | **string** | | [default to undefined]
|
|
12
|
+
**width** | **number** | The width of the container in millimetres | [optional] [default to undefined]
|
|
13
|
+
**depth** | **number** | The depth of the container in millimetres | [optional] [default to undefined]
|
|
14
|
+
**height** | **number** | The height of the container in millimetres | [optional] [default to undefined]
|
|
15
|
+
|
|
16
|
+
## Example
|
|
17
|
+
|
|
18
|
+
```typescript
|
|
19
|
+
import { ContainerType } from '@teemill/pickfaces';
|
|
20
|
+
|
|
21
|
+
const instance: ContainerType = {
|
|
22
|
+
id,
|
|
23
|
+
ref,
|
|
24
|
+
name,
|
|
25
|
+
width,
|
|
26
|
+
depth,
|
|
27
|
+
height,
|
|
28
|
+
};
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# ContainerTypes
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**containerTypes** | [**Array<ContainerType>**](ContainerType.md) | | [optional] [default to undefined]
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
import { ContainerTypes } from '@teemill/pickfaces';
|
|
14
|
+
|
|
15
|
+
const instance: ContainerTypes = {
|
|
16
|
+
containerTypes,
|
|
17
|
+
};
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# CreatePickfaceRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**location** | **string** | A human readable location for the pickface i.e. \"1 Wf 49\" | [default to undefined]
|
|
9
|
+
**name** | **string** | A user defined name for the pickface, if this is not provided the location will be used as the name. | [optional] [default to undefined]
|
|
10
|
+
**containerTypeId** | **string** | Use \'Pickfaces API\' > \'List pickface container types\' to get a list of available options. | [default to undefined]
|
|
11
|
+
**bulk** | **boolean** | Whether the pickface is used for bulk storage | [optional] [default to false]
|
|
12
|
+
**mixedContents** | **boolean** | Whether the pickface can contain mixed contents. | [optional] [default to false]
|
|
13
|
+
**zoneId** | **string** | Typically this field is left empty. Use \'Zones API\' > \'List warehouse zones\' to get a list of available options. | [optional] [default to undefined]
|
|
14
|
+
|
|
15
|
+
## Example
|
|
16
|
+
|
|
17
|
+
```typescript
|
|
18
|
+
import { CreatePickfaceRequest } from '@teemill/pickfaces';
|
|
19
|
+
|
|
20
|
+
const instance: CreatePickfaceRequest = {
|
|
21
|
+
location,
|
|
22
|
+
name,
|
|
23
|
+
containerTypeId,
|
|
24
|
+
bulk,
|
|
25
|
+
mixedContents,
|
|
26
|
+
zoneId,
|
|
27
|
+
};
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# ExportPickfaces202Response
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**message** | **string** | A message describing the export status | [optional] [default to undefined]
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
import { ExportPickfaces202Response } from '@teemill/pickfaces';
|
|
14
|
+
|
|
15
|
+
const instance: ExportPickfaces202Response = {
|
|
16
|
+
message,
|
|
17
|
+
};
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# IssueEmptyPickfaceRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**issueRef** | **string** | A reference to the resource location | [optional] [default to undefined]
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
import { IssueEmptyPickfaceRequest } from '@teemill/pickfaces';
|
|
14
|
+
|
|
15
|
+
const instance: IssueEmptyPickfaceRequest = {
|
|
16
|
+
issueRef,
|
|
17
|
+
};
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# IssueWrongContentsPickfaceRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**issueRef** | **string** | A reference to the resource location | [optional] [default to undefined]
|
|
9
|
+
**variantRef** | **string** | A reference to the resource location | [optional] [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { IssueWrongContentsPickfaceRequest } from '@teemill/pickfaces';
|
|
15
|
+
|
|
16
|
+
const instance: IssueWrongContentsPickfaceRequest = {
|
|
17
|
+
issueRef,
|
|
18
|
+
variantRef,
|
|
19
|
+
};
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# ListPickfaceLogs200Response
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**logs** | [**Array<PickfaceLog>**](PickfaceLog.md) | | [optional] [default to undefined]
|
|
9
|
+
**nextPageToken** | **number** | The token referencing the next page number | [optional] [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { ListPickfaceLogs200Response } from '@teemill/pickfaces';
|
|
15
|
+
|
|
16
|
+
const instance: ListPickfaceLogs200Response = {
|
|
17
|
+
logs,
|
|
18
|
+
nextPageToken,
|
|
19
|
+
};
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# ListPickfaces200Response
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**pickfaces** | [**Array<Pickface>**](Pickface.md) | | [optional] [default to undefined]
|
|
9
|
+
**nextPageToken** | **number** | The token referencing the next page number | [optional] [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { ListPickfaces200Response } from '@teemill/pickfaces';
|
|
15
|
+
|
|
16
|
+
const instance: ListPickfaces200Response = {
|
|
17
|
+
pickfaces,
|
|
18
|
+
nextPageToken,
|
|
19
|
+
};
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# MoveStockRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**variantRef** | **string** | The variant to move from the pickface | [default to undefined]
|
|
9
|
+
**quantity** | **number** | The quantity to move from the pickface | [default to undefined]
|
|
10
|
+
**toPickfaceRef** | **string** | The pickface to move the stock to | [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { MoveStockRequest } from '@teemill/pickfaces';
|
|
16
|
+
|
|
17
|
+
const instance: MoveStockRequest = {
|
|
18
|
+
variantRef,
|
|
19
|
+
quantity,
|
|
20
|
+
toPickfaceRef,
|
|
21
|
+
};
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
package/docs/Pickface.md
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# Pickface
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **string** | Unique object identifier | [default to undefined]
|
|
9
|
+
**ref** | **string** | A reference to the resource location | [default to undefined]
|
|
10
|
+
**zone** | [**PickfaceZone**](PickfaceZone.md) | | [default to undefined]
|
|
11
|
+
**code** | **string** | The human readable location of the pickface, if a name is provided this will be the name. | [default to undefined]
|
|
12
|
+
**enabled** | **boolean** | | [default to undefined]
|
|
13
|
+
**mixedContents** | **boolean** | Whether the pickface can contain mixed contents. | [default to undefined]
|
|
14
|
+
**bulk** | **boolean** | Whether the pickface is used for bulk storage and not for picking | [default to undefined]
|
|
15
|
+
**containerType** | [**PickfaceContainerType**](PickfaceContainerType.md) | | [default to undefined]
|
|
16
|
+
**fullness** | **number** | The percentage of the pickface that has been taken up by its contents | [default to undefined]
|
|
17
|
+
**lastPicked** | [**PickfaceLog**](PickfaceLog.md) | | [default to undefined]
|
|
18
|
+
**lastRestocked** | [**PickfaceLog**](PickfaceLog.md) | | [default to undefined]
|
|
19
|
+
**issue** | [**PickfaceIssue**](PickfaceIssue.md) | | [default to undefined]
|
|
20
|
+
**contents** | [**Array<PickfaceContentsInner>**](PickfaceContentsInner.md) | | [default to undefined]
|
|
21
|
+
|
|
22
|
+
## Example
|
|
23
|
+
|
|
24
|
+
```typescript
|
|
25
|
+
import { Pickface } from '@teemill/pickfaces';
|
|
26
|
+
|
|
27
|
+
const instance: Pickface = {
|
|
28
|
+
id,
|
|
29
|
+
ref,
|
|
30
|
+
zone,
|
|
31
|
+
code,
|
|
32
|
+
enabled,
|
|
33
|
+
mixedContents,
|
|
34
|
+
bulk,
|
|
35
|
+
containerType,
|
|
36
|
+
fullness,
|
|
37
|
+
lastPicked,
|
|
38
|
+
lastRestocked,
|
|
39
|
+
issue,
|
|
40
|
+
contents,
|
|
41
|
+
};
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# PickfaceContainerType
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **string** | Unique object identifier | [optional] [default to undefined]
|
|
9
|
+
**ref** | **string** | A reference to the resource location | [optional] [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { PickfaceContainerType } from '@teemill/pickfaces';
|
|
15
|
+
|
|
16
|
+
const instance: PickfaceContainerType = {
|
|
17
|
+
id,
|
|
18
|
+
ref,
|
|
19
|
+
};
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# PickfaceContentsInner
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**variantRef** | **string** | A reference to the resource location | [default to undefined]
|
|
9
|
+
**ownerProjectId** | **string** | The ID of the project that the contents belongs to. For example, if you had a 3PL item this would be the project that created the product. | [default to undefined]
|
|
10
|
+
**quantity** | [**PickfaceContentsInnerQuantity**](PickfaceContentsInnerQuantity.md) | | [default to undefined]
|
|
11
|
+
**metadata** | [**PickfaceContentsInnerMetadata**](PickfaceContentsInnerMetadata.md) | | [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { PickfaceContentsInner } from '@teemill/pickfaces';
|
|
17
|
+
|
|
18
|
+
const instance: PickfaceContentsInner = {
|
|
19
|
+
variantRef,
|
|
20
|
+
ownerProjectId,
|
|
21
|
+
quantity,
|
|
22
|
+
metadata,
|
|
23
|
+
};
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|