@teemill/pickfaces 0.22.0 → 0.23.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 +2 -2
- package/api.ts +66 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +63 -1
- package/dist/api.js +7 -2
- 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 +63 -1
- package/dist/esm/api.js +6 -1
- 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/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/pickfaces@0.
|
|
1
|
+
## @teemill/pickfaces@0.23.0
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @teemill/pickfaces@0.
|
|
39
|
+
npm install @teemill/pickfaces@0.23.0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.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.23.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -285,6 +285,12 @@ export interface Pickface {
|
|
|
285
285
|
* @memberof Pickface
|
|
286
286
|
*/
|
|
287
287
|
'mixedContents'?: boolean;
|
|
288
|
+
/**
|
|
289
|
+
* Whether the pickface is used for bulk storage and not for picking
|
|
290
|
+
* @type {boolean}
|
|
291
|
+
* @memberof Pickface
|
|
292
|
+
*/
|
|
293
|
+
'bulk'?: boolean;
|
|
288
294
|
/**
|
|
289
295
|
*
|
|
290
296
|
* @type {PickfaceContainerType}
|
|
@@ -396,6 +402,12 @@ export interface PickfaceContentsInnerMetadata {
|
|
|
396
402
|
* @memberof PickfaceContentsInnerMetadata
|
|
397
403
|
*/
|
|
398
404
|
'backImage'?: string | null;
|
|
405
|
+
/**
|
|
406
|
+
* Attributes associated to a variant such as Colour and Size. An attribute can have thumbnail type of `text`, `color`, or `image`.
|
|
407
|
+
* @type {Array<VariantAttribute>}
|
|
408
|
+
* @memberof PickfaceContentsInnerMetadata
|
|
409
|
+
*/
|
|
410
|
+
'attributes'?: Array<VariantAttribute>;
|
|
399
411
|
}
|
|
400
412
|
/**
|
|
401
413
|
*
|
|
@@ -666,6 +678,59 @@ export const UpdatePickfaceRequestContentsInnerQuantityOperationEnum = {
|
|
|
666
678
|
|
|
667
679
|
export type UpdatePickfaceRequestContentsInnerQuantityOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityOperationEnum];
|
|
668
680
|
|
|
681
|
+
/**
|
|
682
|
+
*
|
|
683
|
+
* @export
|
|
684
|
+
* @interface VariantAttribute
|
|
685
|
+
*/
|
|
686
|
+
export interface VariantAttribute {
|
|
687
|
+
/**
|
|
688
|
+
* Attribute name
|
|
689
|
+
* @type {string}
|
|
690
|
+
* @memberof VariantAttribute
|
|
691
|
+
*/
|
|
692
|
+
'name': string;
|
|
693
|
+
/**
|
|
694
|
+
* Attribute value
|
|
695
|
+
* @type {string}
|
|
696
|
+
* @memberof VariantAttribute
|
|
697
|
+
*/
|
|
698
|
+
'value': string;
|
|
699
|
+
/**
|
|
700
|
+
*
|
|
701
|
+
* @type {VariantAttributeThumbnail}
|
|
702
|
+
* @memberof VariantAttribute
|
|
703
|
+
*/
|
|
704
|
+
'thumbnail'?: VariantAttributeThumbnail;
|
|
705
|
+
}
|
|
706
|
+
/**
|
|
707
|
+
* Attribute thumbnail
|
|
708
|
+
* @export
|
|
709
|
+
* @interface VariantAttributeThumbnail
|
|
710
|
+
*/
|
|
711
|
+
export interface VariantAttributeThumbnail {
|
|
712
|
+
/**
|
|
713
|
+
*
|
|
714
|
+
* @type {string}
|
|
715
|
+
* @memberof VariantAttributeThumbnail
|
|
716
|
+
*/
|
|
717
|
+
'type': VariantAttributeThumbnailTypeEnum;
|
|
718
|
+
/**
|
|
719
|
+
*
|
|
720
|
+
* @type {string}
|
|
721
|
+
* @memberof VariantAttributeThumbnail
|
|
722
|
+
*/
|
|
723
|
+
'value': string;
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
export const VariantAttributeThumbnailTypeEnum = {
|
|
727
|
+
Text: 'text',
|
|
728
|
+
Color: 'color',
|
|
729
|
+
Image: 'image'
|
|
730
|
+
} as const;
|
|
731
|
+
|
|
732
|
+
export type VariantAttributeThumbnailTypeEnum = typeof VariantAttributeThumbnailTypeEnum[keyof typeof VariantAttributeThumbnailTypeEnum];
|
|
733
|
+
|
|
669
734
|
|
|
670
735
|
/**
|
|
671
736
|
* PickfacesApi - axios parameter creator
|
package/base.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.23.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/common.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.23.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/configuration.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.23.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/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.23.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -275,6 +275,12 @@ export interface Pickface {
|
|
|
275
275
|
* @memberof Pickface
|
|
276
276
|
*/
|
|
277
277
|
'mixedContents'?: boolean;
|
|
278
|
+
/**
|
|
279
|
+
* Whether the pickface is used for bulk storage and not for picking
|
|
280
|
+
* @type {boolean}
|
|
281
|
+
* @memberof Pickface
|
|
282
|
+
*/
|
|
283
|
+
'bulk'?: boolean;
|
|
278
284
|
/**
|
|
279
285
|
*
|
|
280
286
|
* @type {PickfaceContainerType}
|
|
@@ -386,6 +392,12 @@ export interface PickfaceContentsInnerMetadata {
|
|
|
386
392
|
* @memberof PickfaceContentsInnerMetadata
|
|
387
393
|
*/
|
|
388
394
|
'backImage'?: string | null;
|
|
395
|
+
/**
|
|
396
|
+
* Attributes associated to a variant such as Colour and Size. An attribute can have thumbnail type of `text`, `color`, or `image`.
|
|
397
|
+
* @type {Array<VariantAttribute>}
|
|
398
|
+
* @memberof PickfaceContentsInnerMetadata
|
|
399
|
+
*/
|
|
400
|
+
'attributes'?: Array<VariantAttribute>;
|
|
389
401
|
}
|
|
390
402
|
/**
|
|
391
403
|
*
|
|
@@ -653,6 +665,56 @@ export declare const UpdatePickfaceRequestContentsInnerQuantityOperationEnum: {
|
|
|
653
665
|
readonly Subtract: "subtract";
|
|
654
666
|
};
|
|
655
667
|
export type UpdatePickfaceRequestContentsInnerQuantityOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityOperationEnum];
|
|
668
|
+
/**
|
|
669
|
+
*
|
|
670
|
+
* @export
|
|
671
|
+
* @interface VariantAttribute
|
|
672
|
+
*/
|
|
673
|
+
export interface VariantAttribute {
|
|
674
|
+
/**
|
|
675
|
+
* Attribute name
|
|
676
|
+
* @type {string}
|
|
677
|
+
* @memberof VariantAttribute
|
|
678
|
+
*/
|
|
679
|
+
'name': string;
|
|
680
|
+
/**
|
|
681
|
+
* Attribute value
|
|
682
|
+
* @type {string}
|
|
683
|
+
* @memberof VariantAttribute
|
|
684
|
+
*/
|
|
685
|
+
'value': string;
|
|
686
|
+
/**
|
|
687
|
+
*
|
|
688
|
+
* @type {VariantAttributeThumbnail}
|
|
689
|
+
* @memberof VariantAttribute
|
|
690
|
+
*/
|
|
691
|
+
'thumbnail'?: VariantAttributeThumbnail;
|
|
692
|
+
}
|
|
693
|
+
/**
|
|
694
|
+
* Attribute thumbnail
|
|
695
|
+
* @export
|
|
696
|
+
* @interface VariantAttributeThumbnail
|
|
697
|
+
*/
|
|
698
|
+
export interface VariantAttributeThumbnail {
|
|
699
|
+
/**
|
|
700
|
+
*
|
|
701
|
+
* @type {string}
|
|
702
|
+
* @memberof VariantAttributeThumbnail
|
|
703
|
+
*/
|
|
704
|
+
'type': VariantAttributeThumbnailTypeEnum;
|
|
705
|
+
/**
|
|
706
|
+
*
|
|
707
|
+
* @type {string}
|
|
708
|
+
* @memberof VariantAttributeThumbnail
|
|
709
|
+
*/
|
|
710
|
+
'value': string;
|
|
711
|
+
}
|
|
712
|
+
export declare const VariantAttributeThumbnailTypeEnum: {
|
|
713
|
+
readonly Text: "text";
|
|
714
|
+
readonly Color: "color";
|
|
715
|
+
readonly Image: "image";
|
|
716
|
+
};
|
|
717
|
+
export type VariantAttributeThumbnailTypeEnum = typeof VariantAttributeThumbnailTypeEnum[keyof typeof VariantAttributeThumbnailTypeEnum];
|
|
656
718
|
/**
|
|
657
719
|
* PickfacesApi - axios parameter creator
|
|
658
720
|
* @export
|
package/dist/api.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.23.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -22,7 +22,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
22
22
|
});
|
|
23
23
|
};
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
-
exports.ListPickfacesSortByEnum = exports.PickfacesApi = exports.PickfacesApiFactory = exports.PickfacesApiFp = exports.PickfacesApiAxiosParamCreator = exports.UpdatePickfaceRequestContentsInnerQuantityOperationEnum = void 0;
|
|
25
|
+
exports.ListPickfacesSortByEnum = exports.PickfacesApi = exports.PickfacesApiFactory = exports.PickfacesApiFp = exports.PickfacesApiAxiosParamCreator = exports.VariantAttributeThumbnailTypeEnum = exports.UpdatePickfaceRequestContentsInnerQuantityOperationEnum = void 0;
|
|
26
26
|
const axios_1 = require("axios");
|
|
27
27
|
// Some imports not used depending on template conditions
|
|
28
28
|
// @ts-ignore
|
|
@@ -33,6 +33,11 @@ exports.UpdatePickfaceRequestContentsInnerQuantityOperationEnum = {
|
|
|
33
33
|
Add: 'add',
|
|
34
34
|
Subtract: 'subtract'
|
|
35
35
|
};
|
|
36
|
+
exports.VariantAttributeThumbnailTypeEnum = {
|
|
37
|
+
Text: 'text',
|
|
38
|
+
Color: 'color',
|
|
39
|
+
Image: 'image'
|
|
40
|
+
};
|
|
36
41
|
/**
|
|
37
42
|
* PickfacesApi - axios parameter creator
|
|
38
43
|
* @export
|
package/dist/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.23.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/base.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.23.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/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.23.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/common.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.23.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.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.23.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/dist/configuration.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.23.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
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.23.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -275,6 +275,12 @@ export interface Pickface {
|
|
|
275
275
|
* @memberof Pickface
|
|
276
276
|
*/
|
|
277
277
|
'mixedContents'?: boolean;
|
|
278
|
+
/**
|
|
279
|
+
* Whether the pickface is used for bulk storage and not for picking
|
|
280
|
+
* @type {boolean}
|
|
281
|
+
* @memberof Pickface
|
|
282
|
+
*/
|
|
283
|
+
'bulk'?: boolean;
|
|
278
284
|
/**
|
|
279
285
|
*
|
|
280
286
|
* @type {PickfaceContainerType}
|
|
@@ -386,6 +392,12 @@ export interface PickfaceContentsInnerMetadata {
|
|
|
386
392
|
* @memberof PickfaceContentsInnerMetadata
|
|
387
393
|
*/
|
|
388
394
|
'backImage'?: string | null;
|
|
395
|
+
/**
|
|
396
|
+
* Attributes associated to a variant such as Colour and Size. An attribute can have thumbnail type of `text`, `color`, or `image`.
|
|
397
|
+
* @type {Array<VariantAttribute>}
|
|
398
|
+
* @memberof PickfaceContentsInnerMetadata
|
|
399
|
+
*/
|
|
400
|
+
'attributes'?: Array<VariantAttribute>;
|
|
389
401
|
}
|
|
390
402
|
/**
|
|
391
403
|
*
|
|
@@ -653,6 +665,56 @@ export declare const UpdatePickfaceRequestContentsInnerQuantityOperationEnum: {
|
|
|
653
665
|
readonly Subtract: "subtract";
|
|
654
666
|
};
|
|
655
667
|
export type UpdatePickfaceRequestContentsInnerQuantityOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityOperationEnum];
|
|
668
|
+
/**
|
|
669
|
+
*
|
|
670
|
+
* @export
|
|
671
|
+
* @interface VariantAttribute
|
|
672
|
+
*/
|
|
673
|
+
export interface VariantAttribute {
|
|
674
|
+
/**
|
|
675
|
+
* Attribute name
|
|
676
|
+
* @type {string}
|
|
677
|
+
* @memberof VariantAttribute
|
|
678
|
+
*/
|
|
679
|
+
'name': string;
|
|
680
|
+
/**
|
|
681
|
+
* Attribute value
|
|
682
|
+
* @type {string}
|
|
683
|
+
* @memberof VariantAttribute
|
|
684
|
+
*/
|
|
685
|
+
'value': string;
|
|
686
|
+
/**
|
|
687
|
+
*
|
|
688
|
+
* @type {VariantAttributeThumbnail}
|
|
689
|
+
* @memberof VariantAttribute
|
|
690
|
+
*/
|
|
691
|
+
'thumbnail'?: VariantAttributeThumbnail;
|
|
692
|
+
}
|
|
693
|
+
/**
|
|
694
|
+
* Attribute thumbnail
|
|
695
|
+
* @export
|
|
696
|
+
* @interface VariantAttributeThumbnail
|
|
697
|
+
*/
|
|
698
|
+
export interface VariantAttributeThumbnail {
|
|
699
|
+
/**
|
|
700
|
+
*
|
|
701
|
+
* @type {string}
|
|
702
|
+
* @memberof VariantAttributeThumbnail
|
|
703
|
+
*/
|
|
704
|
+
'type': VariantAttributeThumbnailTypeEnum;
|
|
705
|
+
/**
|
|
706
|
+
*
|
|
707
|
+
* @type {string}
|
|
708
|
+
* @memberof VariantAttributeThumbnail
|
|
709
|
+
*/
|
|
710
|
+
'value': string;
|
|
711
|
+
}
|
|
712
|
+
export declare const VariantAttributeThumbnailTypeEnum: {
|
|
713
|
+
readonly Text: "text";
|
|
714
|
+
readonly Color: "color";
|
|
715
|
+
readonly Image: "image";
|
|
716
|
+
};
|
|
717
|
+
export type VariantAttributeThumbnailTypeEnum = typeof VariantAttributeThumbnailTypeEnum[keyof typeof VariantAttributeThumbnailTypeEnum];
|
|
656
718
|
/**
|
|
657
719
|
* PickfacesApi - axios parameter creator
|
|
658
720
|
* @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.23.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -30,6 +30,11 @@ export const UpdatePickfaceRequestContentsInnerQuantityOperationEnum = {
|
|
|
30
30
|
Add: 'add',
|
|
31
31
|
Subtract: 'subtract'
|
|
32
32
|
};
|
|
33
|
+
export const VariantAttributeThumbnailTypeEnum = {
|
|
34
|
+
Text: 'text',
|
|
35
|
+
Color: 'color',
|
|
36
|
+
Image: 'image'
|
|
37
|
+
};
|
|
33
38
|
/**
|
|
34
39
|
* PickfacesApi - axios parameter creator
|
|
35
40
|
* @export
|
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.23.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.23.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.23.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.23.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.23.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.23.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.23.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.23.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.23.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.23.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
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.23.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|