@teemill/pickfaces 0.24.1 → 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.
Files changed (53) hide show
  1. package/README.md +75 -2
  2. package/api.ts +87 -109
  3. package/base.ts +1 -1
  4. package/common.ts +1 -1
  5. package/configuration.ts +1 -1
  6. package/dist/api.d.ts +84 -109
  7. package/dist/api.js +7 -3
  8. package/dist/base.d.ts +1 -1
  9. package/dist/base.js +1 -1
  10. package/dist/common.d.ts +1 -1
  11. package/dist/common.js +1 -1
  12. package/dist/configuration.d.ts +1 -1
  13. package/dist/configuration.js +1 -1
  14. package/dist/esm/api.d.ts +84 -109
  15. package/dist/esm/api.js +6 -2
  16. package/dist/esm/base.d.ts +1 -1
  17. package/dist/esm/base.js +1 -1
  18. package/dist/esm/common.d.ts +1 -1
  19. package/dist/esm/common.js +1 -1
  20. package/dist/esm/configuration.d.ts +1 -1
  21. package/dist/esm/configuration.js +1 -1
  22. package/dist/esm/index.d.ts +1 -1
  23. package/dist/esm/index.js +1 -1
  24. package/dist/index.d.ts +1 -1
  25. package/dist/index.js +1 -1
  26. package/docs/ApiError.md +22 -0
  27. package/docs/ContainerType.md +31 -0
  28. package/docs/ContainerTypes.md +20 -0
  29. package/docs/CreatePickfaceRequest.md +30 -0
  30. package/docs/ExportPickfaces202Response.md +20 -0
  31. package/docs/IssueEmptyPickfaceRequest.md +20 -0
  32. package/docs/IssueWrongContentsPickfaceRequest.md +22 -0
  33. package/docs/ListPickfaceLogs200Response.md +22 -0
  34. package/docs/ListPickfaces200Response.md +22 -0
  35. package/docs/MoveStockRequest.md +24 -0
  36. package/docs/Pickface.md +44 -0
  37. package/docs/PickfaceContainerType.md +22 -0
  38. package/docs/PickfaceContentsInner.md +26 -0
  39. package/docs/PickfaceContentsInnerMetadata.md +29 -0
  40. package/docs/PickfaceContentsInnerQuantity.md +24 -0
  41. package/docs/PickfaceIssue.md +23 -0
  42. package/docs/PickfaceLog.md +28 -0
  43. package/docs/PickfaceZone.md +24 -0
  44. package/docs/PickfacesApi.md +957 -0
  45. package/docs/UpdatePickfaceRequest.md +35 -0
  46. package/docs/UpdatePickfaceRequestContentsInner.md +22 -0
  47. package/docs/UpdatePickfaceRequestContentsInnerQuantity.md +22 -0
  48. package/docs/UpdatePickfaceRequestContentsInnerQuantityAvailable.md +23 -0
  49. package/docs/UpdatePickfaceRequestContentsInnerQuantityReserved.md +23 -0
  50. package/docs/VariantAttribute.md +24 -0
  51. package/docs/VariantAttributeThumbnail.md +23 -0
  52. package/index.ts +1 -1
  53. package/package.json +1 -1
@@ -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)
@@ -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)
@@ -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)