@teemill/pickfaces 0.22.0 → 0.22.1
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 +60 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +57 -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 +57 -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.22.
|
|
1
|
+
## @teemill/pickfaces@0.22.1
|
|
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.22.
|
|
39
|
+
npm install @teemill/pickfaces@0.22.1 --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.22.
|
|
7
|
+
* The version of the OpenAPI document: 0.22.1
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -396,6 +396,12 @@ export interface PickfaceContentsInnerMetadata {
|
|
|
396
396
|
* @memberof PickfaceContentsInnerMetadata
|
|
397
397
|
*/
|
|
398
398
|
'backImage'?: string | null;
|
|
399
|
+
/**
|
|
400
|
+
* Attributes associated to a variant such as Colour and Size. An attribute can have thumbnail type of `text`, `color`, or `image`.
|
|
401
|
+
* @type {Array<VariantAttribute>}
|
|
402
|
+
* @memberof PickfaceContentsInnerMetadata
|
|
403
|
+
*/
|
|
404
|
+
'attributes'?: Array<VariantAttribute>;
|
|
399
405
|
}
|
|
400
406
|
/**
|
|
401
407
|
*
|
|
@@ -666,6 +672,59 @@ export const UpdatePickfaceRequestContentsInnerQuantityOperationEnum = {
|
|
|
666
672
|
|
|
667
673
|
export type UpdatePickfaceRequestContentsInnerQuantityOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityOperationEnum];
|
|
668
674
|
|
|
675
|
+
/**
|
|
676
|
+
*
|
|
677
|
+
* @export
|
|
678
|
+
* @interface VariantAttribute
|
|
679
|
+
*/
|
|
680
|
+
export interface VariantAttribute {
|
|
681
|
+
/**
|
|
682
|
+
* Attribute name
|
|
683
|
+
* @type {string}
|
|
684
|
+
* @memberof VariantAttribute
|
|
685
|
+
*/
|
|
686
|
+
'name': string;
|
|
687
|
+
/**
|
|
688
|
+
* Attribute value
|
|
689
|
+
* @type {string}
|
|
690
|
+
* @memberof VariantAttribute
|
|
691
|
+
*/
|
|
692
|
+
'value': string;
|
|
693
|
+
/**
|
|
694
|
+
*
|
|
695
|
+
* @type {VariantAttributeThumbnail}
|
|
696
|
+
* @memberof VariantAttribute
|
|
697
|
+
*/
|
|
698
|
+
'thumbnail'?: VariantAttributeThumbnail;
|
|
699
|
+
}
|
|
700
|
+
/**
|
|
701
|
+
* Attribute thumbnail
|
|
702
|
+
* @export
|
|
703
|
+
* @interface VariantAttributeThumbnail
|
|
704
|
+
*/
|
|
705
|
+
export interface VariantAttributeThumbnail {
|
|
706
|
+
/**
|
|
707
|
+
*
|
|
708
|
+
* @type {string}
|
|
709
|
+
* @memberof VariantAttributeThumbnail
|
|
710
|
+
*/
|
|
711
|
+
'type': VariantAttributeThumbnailTypeEnum;
|
|
712
|
+
/**
|
|
713
|
+
*
|
|
714
|
+
* @type {string}
|
|
715
|
+
* @memberof VariantAttributeThumbnail
|
|
716
|
+
*/
|
|
717
|
+
'value': string;
|
|
718
|
+
}
|
|
719
|
+
|
|
720
|
+
export const VariantAttributeThumbnailTypeEnum = {
|
|
721
|
+
Text: 'text',
|
|
722
|
+
Color: 'color',
|
|
723
|
+
Image: 'image'
|
|
724
|
+
} as const;
|
|
725
|
+
|
|
726
|
+
export type VariantAttributeThumbnailTypeEnum = typeof VariantAttributeThumbnailTypeEnum[keyof typeof VariantAttributeThumbnailTypeEnum];
|
|
727
|
+
|
|
669
728
|
|
|
670
729
|
/**
|
|
671
730
|
* 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.22.
|
|
7
|
+
* The version of the OpenAPI document: 0.22.1
|
|
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.22.
|
|
7
|
+
* The version of the OpenAPI document: 0.22.1
|
|
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.22.
|
|
7
|
+
* The version of the OpenAPI document: 0.22.1
|
|
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.22.
|
|
5
|
+
* The version of the OpenAPI document: 0.22.1
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -386,6 +386,12 @@ export interface PickfaceContentsInnerMetadata {
|
|
|
386
386
|
* @memberof PickfaceContentsInnerMetadata
|
|
387
387
|
*/
|
|
388
388
|
'backImage'?: string | null;
|
|
389
|
+
/**
|
|
390
|
+
* Attributes associated to a variant such as Colour and Size. An attribute can have thumbnail type of `text`, `color`, or `image`.
|
|
391
|
+
* @type {Array<VariantAttribute>}
|
|
392
|
+
* @memberof PickfaceContentsInnerMetadata
|
|
393
|
+
*/
|
|
394
|
+
'attributes'?: Array<VariantAttribute>;
|
|
389
395
|
}
|
|
390
396
|
/**
|
|
391
397
|
*
|
|
@@ -653,6 +659,56 @@ export declare const UpdatePickfaceRequestContentsInnerQuantityOperationEnum: {
|
|
|
653
659
|
readonly Subtract: "subtract";
|
|
654
660
|
};
|
|
655
661
|
export type UpdatePickfaceRequestContentsInnerQuantityOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityOperationEnum];
|
|
662
|
+
/**
|
|
663
|
+
*
|
|
664
|
+
* @export
|
|
665
|
+
* @interface VariantAttribute
|
|
666
|
+
*/
|
|
667
|
+
export interface VariantAttribute {
|
|
668
|
+
/**
|
|
669
|
+
* Attribute name
|
|
670
|
+
* @type {string}
|
|
671
|
+
* @memberof VariantAttribute
|
|
672
|
+
*/
|
|
673
|
+
'name': string;
|
|
674
|
+
/**
|
|
675
|
+
* Attribute value
|
|
676
|
+
* @type {string}
|
|
677
|
+
* @memberof VariantAttribute
|
|
678
|
+
*/
|
|
679
|
+
'value': string;
|
|
680
|
+
/**
|
|
681
|
+
*
|
|
682
|
+
* @type {VariantAttributeThumbnail}
|
|
683
|
+
* @memberof VariantAttribute
|
|
684
|
+
*/
|
|
685
|
+
'thumbnail'?: VariantAttributeThumbnail;
|
|
686
|
+
}
|
|
687
|
+
/**
|
|
688
|
+
* Attribute thumbnail
|
|
689
|
+
* @export
|
|
690
|
+
* @interface VariantAttributeThumbnail
|
|
691
|
+
*/
|
|
692
|
+
export interface VariantAttributeThumbnail {
|
|
693
|
+
/**
|
|
694
|
+
*
|
|
695
|
+
* @type {string}
|
|
696
|
+
* @memberof VariantAttributeThumbnail
|
|
697
|
+
*/
|
|
698
|
+
'type': VariantAttributeThumbnailTypeEnum;
|
|
699
|
+
/**
|
|
700
|
+
*
|
|
701
|
+
* @type {string}
|
|
702
|
+
* @memberof VariantAttributeThumbnail
|
|
703
|
+
*/
|
|
704
|
+
'value': string;
|
|
705
|
+
}
|
|
706
|
+
export declare const VariantAttributeThumbnailTypeEnum: {
|
|
707
|
+
readonly Text: "text";
|
|
708
|
+
readonly Color: "color";
|
|
709
|
+
readonly Image: "image";
|
|
710
|
+
};
|
|
711
|
+
export type VariantAttributeThumbnailTypeEnum = typeof VariantAttributeThumbnailTypeEnum[keyof typeof VariantAttributeThumbnailTypeEnum];
|
|
656
712
|
/**
|
|
657
713
|
* PickfacesApi - axios parameter creator
|
|
658
714
|
* @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.22.
|
|
8
|
+
* The version of the OpenAPI document: 0.22.1
|
|
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.22.
|
|
5
|
+
* The version of the OpenAPI document: 0.22.1
|
|
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.22.
|
|
8
|
+
* The version of the OpenAPI document: 0.22.1
|
|
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.22.
|
|
5
|
+
* The version of the OpenAPI document: 0.22.1
|
|
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.22.
|
|
8
|
+
* The version of the OpenAPI document: 0.22.1
|
|
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.22.
|
|
5
|
+
* The version of the OpenAPI document: 0.22.1
|
|
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.22.
|
|
8
|
+
* The version of the OpenAPI document: 0.22.1
|
|
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.22.
|
|
5
|
+
* The version of the OpenAPI document: 0.22.1
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -386,6 +386,12 @@ export interface PickfaceContentsInnerMetadata {
|
|
|
386
386
|
* @memberof PickfaceContentsInnerMetadata
|
|
387
387
|
*/
|
|
388
388
|
'backImage'?: string | null;
|
|
389
|
+
/**
|
|
390
|
+
* Attributes associated to a variant such as Colour and Size. An attribute can have thumbnail type of `text`, `color`, or `image`.
|
|
391
|
+
* @type {Array<VariantAttribute>}
|
|
392
|
+
* @memberof PickfaceContentsInnerMetadata
|
|
393
|
+
*/
|
|
394
|
+
'attributes'?: Array<VariantAttribute>;
|
|
389
395
|
}
|
|
390
396
|
/**
|
|
391
397
|
*
|
|
@@ -653,6 +659,56 @@ export declare const UpdatePickfaceRequestContentsInnerQuantityOperationEnum: {
|
|
|
653
659
|
readonly Subtract: "subtract";
|
|
654
660
|
};
|
|
655
661
|
export type UpdatePickfaceRequestContentsInnerQuantityOperationEnum = typeof UpdatePickfaceRequestContentsInnerQuantityOperationEnum[keyof typeof UpdatePickfaceRequestContentsInnerQuantityOperationEnum];
|
|
662
|
+
/**
|
|
663
|
+
*
|
|
664
|
+
* @export
|
|
665
|
+
* @interface VariantAttribute
|
|
666
|
+
*/
|
|
667
|
+
export interface VariantAttribute {
|
|
668
|
+
/**
|
|
669
|
+
* Attribute name
|
|
670
|
+
* @type {string}
|
|
671
|
+
* @memberof VariantAttribute
|
|
672
|
+
*/
|
|
673
|
+
'name': string;
|
|
674
|
+
/**
|
|
675
|
+
* Attribute value
|
|
676
|
+
* @type {string}
|
|
677
|
+
* @memberof VariantAttribute
|
|
678
|
+
*/
|
|
679
|
+
'value': string;
|
|
680
|
+
/**
|
|
681
|
+
*
|
|
682
|
+
* @type {VariantAttributeThumbnail}
|
|
683
|
+
* @memberof VariantAttribute
|
|
684
|
+
*/
|
|
685
|
+
'thumbnail'?: VariantAttributeThumbnail;
|
|
686
|
+
}
|
|
687
|
+
/**
|
|
688
|
+
* Attribute thumbnail
|
|
689
|
+
* @export
|
|
690
|
+
* @interface VariantAttributeThumbnail
|
|
691
|
+
*/
|
|
692
|
+
export interface VariantAttributeThumbnail {
|
|
693
|
+
/**
|
|
694
|
+
*
|
|
695
|
+
* @type {string}
|
|
696
|
+
* @memberof VariantAttributeThumbnail
|
|
697
|
+
*/
|
|
698
|
+
'type': VariantAttributeThumbnailTypeEnum;
|
|
699
|
+
/**
|
|
700
|
+
*
|
|
701
|
+
* @type {string}
|
|
702
|
+
* @memberof VariantAttributeThumbnail
|
|
703
|
+
*/
|
|
704
|
+
'value': string;
|
|
705
|
+
}
|
|
706
|
+
export declare const VariantAttributeThumbnailTypeEnum: {
|
|
707
|
+
readonly Text: "text";
|
|
708
|
+
readonly Color: "color";
|
|
709
|
+
readonly Image: "image";
|
|
710
|
+
};
|
|
711
|
+
export type VariantAttributeThumbnailTypeEnum = typeof VariantAttributeThumbnailTypeEnum[keyof typeof VariantAttributeThumbnailTypeEnum];
|
|
656
712
|
/**
|
|
657
713
|
* PickfacesApi - axios parameter creator
|
|
658
714
|
* @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.22.
|
|
7
|
+
* The version of the OpenAPI document: 0.22.1
|
|
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.22.
|
|
5
|
+
* The version of the OpenAPI document: 0.22.1
|
|
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.22.
|
|
7
|
+
* The version of the OpenAPI document: 0.22.1
|
|
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.22.
|
|
5
|
+
* The version of the OpenAPI document: 0.22.1
|
|
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.22.
|
|
7
|
+
* The version of the OpenAPI document: 0.22.1
|
|
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.22.
|
|
5
|
+
* The version of the OpenAPI document: 0.22.1
|
|
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.22.
|
|
7
|
+
* The version of the OpenAPI document: 0.22.1
|
|
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.22.
|
|
5
|
+
* The version of the OpenAPI document: 0.22.1
|
|
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.22.
|
|
7
|
+
* The version of the OpenAPI document: 0.22.1
|
|
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.22.
|
|
5
|
+
* The version of the OpenAPI document: 0.22.1
|
|
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.22.
|
|
8
|
+
* The version of the OpenAPI document: 0.22.1
|
|
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.22.
|
|
7
|
+
* The version of the OpenAPI document: 0.22.1
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|