@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,35 @@
|
|
|
1
|
+
# UpdatePickfaceRequest
|
|
2
|
+
|
|
3
|
+
A list of updates to apply to the pickface.
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**enabled** | **boolean** | | [default to undefined]
|
|
10
|
+
**containerTypeId** | **string** | Unique object identifier | [optional] [default to undefined]
|
|
11
|
+
**zoneId** | **string** | Unique object identifier | [optional] [default to undefined]
|
|
12
|
+
**mixedContents** | **boolean** | Whether the pickface can contain mixed contents. | [optional] [default to undefined]
|
|
13
|
+
**bulk** | **boolean** | Whether the pickface is used for bulk storage | [optional] [default to undefined]
|
|
14
|
+
**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]
|
|
15
|
+
**contents** | [**Array<UpdatePickfaceRequestContentsInner>**](UpdatePickfaceRequestContentsInner.md) | | [optional] [default to undefined]
|
|
16
|
+
**purchaseOrderId** | **string** | Unique object identifier | [optional] [default to undefined]
|
|
17
|
+
|
|
18
|
+
## Example
|
|
19
|
+
|
|
20
|
+
```typescript
|
|
21
|
+
import { UpdatePickfaceRequest } from '@teemill/pickfaces';
|
|
22
|
+
|
|
23
|
+
const instance: UpdatePickfaceRequest = {
|
|
24
|
+
enabled,
|
|
25
|
+
containerTypeId,
|
|
26
|
+
zoneId,
|
|
27
|
+
mixedContents,
|
|
28
|
+
bulk,
|
|
29
|
+
name,
|
|
30
|
+
contents,
|
|
31
|
+
purchaseOrderId,
|
|
32
|
+
};
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
[[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
|
+
# UpdatePickfaceRequestContentsInner
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**variantRef** | **string** | The variant to add or subtract from the pickface | [default to undefined]
|
|
9
|
+
**quantity** | [**UpdatePickfaceRequestContentsInnerQuantity**](UpdatePickfaceRequestContentsInnerQuantity.md) | | [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { UpdatePickfaceRequestContentsInner } from '@teemill/pickfaces';
|
|
15
|
+
|
|
16
|
+
const instance: UpdatePickfaceRequestContentsInner = {
|
|
17
|
+
variantRef,
|
|
18
|
+
quantity,
|
|
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
|
+
# UpdatePickfaceRequestContentsInnerQuantity
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**available** | [**UpdatePickfaceRequestContentsInnerQuantityAvailable**](UpdatePickfaceRequestContentsInnerQuantityAvailable.md) | | [optional] [default to undefined]
|
|
9
|
+
**reserved** | [**UpdatePickfaceRequestContentsInnerQuantityReserved**](UpdatePickfaceRequestContentsInnerQuantityReserved.md) | | [optional] [default to undefined]
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { UpdatePickfaceRequestContentsInnerQuantity } from '@teemill/pickfaces';
|
|
15
|
+
|
|
16
|
+
const instance: UpdatePickfaceRequestContentsInnerQuantity = {
|
|
17
|
+
available,
|
|
18
|
+
reserved,
|
|
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,23 @@
|
|
|
1
|
+
# UpdatePickfaceRequestContentsInnerQuantityAvailable
|
|
2
|
+
|
|
3
|
+
The amount to add or subtract from the available stock on the pickface
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**operation** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**value** | **number** | | [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { UpdatePickfaceRequestContentsInnerQuantityAvailable } from '@teemill/pickfaces';
|
|
16
|
+
|
|
17
|
+
const instance: UpdatePickfaceRequestContentsInnerQuantityAvailable = {
|
|
18
|
+
operation,
|
|
19
|
+
value,
|
|
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,23 @@
|
|
|
1
|
+
# UpdatePickfaceRequestContentsInnerQuantityReserved
|
|
2
|
+
|
|
3
|
+
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.
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**operation** | **string** | | [optional] [default to undefined]
|
|
10
|
+
**value** | **number** | | [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { UpdatePickfaceRequestContentsInnerQuantityReserved } from '@teemill/pickfaces';
|
|
16
|
+
|
|
17
|
+
const instance: UpdatePickfaceRequestContentsInnerQuantityReserved = {
|
|
18
|
+
operation,
|
|
19
|
+
value,
|
|
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,24 @@
|
|
|
1
|
+
# VariantAttribute
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**name** | **string** | Attribute name | [default to undefined]
|
|
9
|
+
**value** | **string** | Attribute value | [default to undefined]
|
|
10
|
+
**thumbnail** | [**VariantAttributeThumbnail**](VariantAttributeThumbnail.md) | | [optional] [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { VariantAttribute } from '@teemill/pickfaces';
|
|
16
|
+
|
|
17
|
+
const instance: VariantAttribute = {
|
|
18
|
+
name,
|
|
19
|
+
value,
|
|
20
|
+
thumbnail,
|
|
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
|
+
# VariantAttributeThumbnail
|
|
2
|
+
|
|
3
|
+
Attribute thumbnail
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**type** | **string** | | [default to undefined]
|
|
10
|
+
**value** | **string** | | [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { VariantAttributeThumbnail } from '@teemill/pickfaces';
|
|
16
|
+
|
|
17
|
+
const instance: VariantAttributeThumbnail = {
|
|
18
|
+
type,
|
|
19
|
+
value,
|
|
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)
|
package/index.ts
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).
|