@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
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# PickfaceContentsInnerMetadata
|
|
2
|
+
|
|
3
|
+
Any additional metadata
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**title** | **string** | The title of the product | [default to undefined]
|
|
10
|
+
**sku** | **string** | The SKU of the product | [default to undefined]
|
|
11
|
+
**frontImage** | **string** | The image of the front of the product | [optional] [default to undefined]
|
|
12
|
+
**backImage** | **string** | The image of the back of the product | [optional] [default to undefined]
|
|
13
|
+
**attributes** | [**Array<VariantAttribute>**](VariantAttribute.md) | Attributes associated to a variant such as Colour and Size. An attribute can have thumbnail type of `text`, `color`, or `image`. | [optional] [default to undefined]
|
|
14
|
+
|
|
15
|
+
## Example
|
|
16
|
+
|
|
17
|
+
```typescript
|
|
18
|
+
import { PickfaceContentsInnerMetadata } from '@teemill/pickfaces';
|
|
19
|
+
|
|
20
|
+
const instance: PickfaceContentsInnerMetadata = {
|
|
21
|
+
title,
|
|
22
|
+
sku,
|
|
23
|
+
frontImage,
|
|
24
|
+
backImage,
|
|
25
|
+
attributes,
|
|
26
|
+
};
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
[[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
|
+
# PickfaceContentsInnerQuantity
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**total** | **number** | How many are in the box | [optional] [default to undefined]
|
|
9
|
+
**available** | **number** | How many are available to reserve | [optional] [default to undefined]
|
|
10
|
+
**reserved** | **number** | How many are pending some action e.g. to be picked | [optional] [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { PickfaceContentsInnerQuantity } from '@teemill/pickfaces';
|
|
16
|
+
|
|
17
|
+
const instance: PickfaceContentsInnerQuantity = {
|
|
18
|
+
total,
|
|
19
|
+
available,
|
|
20
|
+
reserved,
|
|
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)
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# PickfaceIssue
|
|
2
|
+
|
|
3
|
+
The open issue for the pickface
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**id** | **string** | Unique object identifier | [optional] [default to undefined]
|
|
10
|
+
**ref** | **string** | A reference to the resource location | [optional] [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { PickfaceIssue } from '@teemill/pickfaces';
|
|
16
|
+
|
|
17
|
+
const instance: PickfaceIssue = {
|
|
18
|
+
id,
|
|
19
|
+
ref,
|
|
20
|
+
};
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
[[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,28 @@
|
|
|
1
|
+
# PickfaceLog
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **string** | Unique object identifier | [default to undefined]
|
|
9
|
+
**userRef** | **string** | A reference to the resource location | [default to undefined]
|
|
10
|
+
**action** | **string** | The action that was taken | [default to undefined]
|
|
11
|
+
**reason** | **string** | The reason for the action | [default to undefined]
|
|
12
|
+
**createdAt** | **string** | ISO 8601 Created at timestamp | [default to undefined]
|
|
13
|
+
|
|
14
|
+
## Example
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
import { PickfaceLog } from '@teemill/pickfaces';
|
|
18
|
+
|
|
19
|
+
const instance: PickfaceLog = {
|
|
20
|
+
id,
|
|
21
|
+
userRef,
|
|
22
|
+
action,
|
|
23
|
+
reason,
|
|
24
|
+
createdAt,
|
|
25
|
+
};
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
[[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
|
+
# PickfaceZone
|
|
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
|
+
**name** | **string** | The name of the zone the pickface is in | [optional] [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { PickfaceZone } from '@teemill/pickfaces';
|
|
16
|
+
|
|
17
|
+
const instance: PickfaceZone = {
|
|
18
|
+
id,
|
|
19
|
+
ref,
|
|
20
|
+
name,
|
|
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)
|