@yolo-croket-dev/amqp-access 0.0.27-jun.0 → 0.0.27-jun.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/elastic-service/dto/es-store-item-v1/query/es-store-item-count-group.dto.d.ts +3 -3
- package/elastic-service/dto/es-store-item-v1/query/es-store-item-count-group.dto.js +7 -7
- package/elastic-service/dto/es-store-item-v2/query/es-store-item-v2-count-group.dto.d.ts +3 -3
- package/elastic-service/dto/es-store-item-v2/query/es-store-item-v2-count-group.dto.js +7 -7
- package/elastic-service/dto/index.d.ts +1 -0
- package/elastic-service/dto/index.js +1 -0
- package/package.json +1 -1
|
@@ -2,13 +2,13 @@ declare class CategoryInfo {
|
|
|
2
2
|
mainCategory: string;
|
|
3
3
|
subCategory?: string;
|
|
4
4
|
}
|
|
5
|
-
export declare enum
|
|
5
|
+
export declare enum StoreItemV1GroupTypeEnum {
|
|
6
6
|
'category' = "category",
|
|
7
7
|
'nation' = "nation",
|
|
8
8
|
'price' = "price"
|
|
9
9
|
}
|
|
10
10
|
export declare class ESStoreItemCountGroupPayloadDto {
|
|
11
|
-
groupType:
|
|
11
|
+
groupType: StoreItemV1GroupTypeEnum;
|
|
12
12
|
isViewSoldOut: boolean;
|
|
13
13
|
isItemPriceWithShippingFee: boolean;
|
|
14
14
|
categoryInfos?: CategoryInfo[];
|
|
@@ -35,7 +35,7 @@ export interface ESStoreItemCountGroup {
|
|
|
35
35
|
count: number;
|
|
36
36
|
}
|
|
37
37
|
export interface ESStoreItemCountGroupResultDto {
|
|
38
|
-
groupType:
|
|
38
|
+
groupType: StoreItemV1GroupTypeEnum;
|
|
39
39
|
groups: ESStoreItemCountGroup[];
|
|
40
40
|
}
|
|
41
41
|
export {};
|
|
@@ -9,7 +9,7 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.ESStoreItemCountGroupPayloadDto = exports.
|
|
12
|
+
exports.ESStoreItemCountGroupPayloadDto = exports.StoreItemV1GroupTypeEnum = void 0;
|
|
13
13
|
const class_validator_1 = require("class-validator");
|
|
14
14
|
class CategoryInfo {
|
|
15
15
|
}
|
|
@@ -22,12 +22,12 @@ __decorate([
|
|
|
22
22
|
(0, class_validator_1.IsString)(),
|
|
23
23
|
__metadata("design:type", String)
|
|
24
24
|
], CategoryInfo.prototype, "subCategory", void 0);
|
|
25
|
-
var
|
|
26
|
-
(function (
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
})(
|
|
25
|
+
var StoreItemV1GroupTypeEnum;
|
|
26
|
+
(function (StoreItemV1GroupTypeEnum) {
|
|
27
|
+
StoreItemV1GroupTypeEnum["category"] = "category";
|
|
28
|
+
StoreItemV1GroupTypeEnum["nation"] = "nation";
|
|
29
|
+
StoreItemV1GroupTypeEnum["price"] = "price";
|
|
30
|
+
})(StoreItemV1GroupTypeEnum || (exports.StoreItemV1GroupTypeEnum = StoreItemV1GroupTypeEnum = {}));
|
|
31
31
|
class ESStoreItemCountGroupPayloadDto {
|
|
32
32
|
}
|
|
33
33
|
exports.ESStoreItemCountGroupPayloadDto = ESStoreItemCountGroupPayloadDto;
|
|
@@ -2,13 +2,13 @@ export declare class ESStoreItemV2CategoryInfo {
|
|
|
2
2
|
mainCategory: string;
|
|
3
3
|
subCategory?: string;
|
|
4
4
|
}
|
|
5
|
-
export declare enum
|
|
5
|
+
export declare enum StoreItemV2GroupTypeEnum {
|
|
6
6
|
'category' = "category",
|
|
7
7
|
'nation' = "nation",
|
|
8
8
|
'price' = "price"
|
|
9
9
|
}
|
|
10
10
|
export declare class EsStoreItemV2CountGroupPayload {
|
|
11
|
-
groupType:
|
|
11
|
+
groupType: StoreItemV2GroupTypeEnum;
|
|
12
12
|
isViewSoldOut: boolean;
|
|
13
13
|
isItemPriceWithShippingFee: boolean;
|
|
14
14
|
categoryInfos?: ESStoreItemV2CategoryInfo[];
|
|
@@ -35,6 +35,6 @@ export interface ESStoreItemV2CountGroup {
|
|
|
35
35
|
count: number;
|
|
36
36
|
}
|
|
37
37
|
export interface EsStoreItemV2CountGroupResult {
|
|
38
|
-
groupType:
|
|
38
|
+
groupType: StoreItemV2GroupTypeEnum;
|
|
39
39
|
groups: ESStoreItemV2CountGroup[];
|
|
40
40
|
}
|
|
@@ -9,7 +9,7 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
9
9
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.EsStoreItemV2CountGroupPayload = exports.
|
|
12
|
+
exports.EsStoreItemV2CountGroupPayload = exports.StoreItemV2GroupTypeEnum = exports.ESStoreItemV2CategoryInfo = void 0;
|
|
13
13
|
const class_validator_1 = require("class-validator");
|
|
14
14
|
class ESStoreItemV2CategoryInfo {
|
|
15
15
|
}
|
|
@@ -23,12 +23,12 @@ __decorate([
|
|
|
23
23
|
(0, class_validator_1.IsString)(),
|
|
24
24
|
__metadata("design:type", String)
|
|
25
25
|
], ESStoreItemV2CategoryInfo.prototype, "subCategory", void 0);
|
|
26
|
-
var
|
|
27
|
-
(function (
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
})(
|
|
26
|
+
var StoreItemV2GroupTypeEnum;
|
|
27
|
+
(function (StoreItemV2GroupTypeEnum) {
|
|
28
|
+
StoreItemV2GroupTypeEnum["category"] = "category";
|
|
29
|
+
StoreItemV2GroupTypeEnum["nation"] = "nation";
|
|
30
|
+
StoreItemV2GroupTypeEnum["price"] = "price";
|
|
31
|
+
})(StoreItemV2GroupTypeEnum || (exports.StoreItemV2GroupTypeEnum = StoreItemV2GroupTypeEnum = {}));
|
|
32
32
|
class EsStoreItemV2CountGroupPayload {
|
|
33
33
|
}
|
|
34
34
|
exports.EsStoreItemV2CountGroupPayload = EsStoreItemV2CountGroupPayload;
|
|
@@ -14,6 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./es-store-item-v1"), exports);
|
|
17
18
|
__exportStar(require("./es-store-item-v2"), exports);
|
|
18
19
|
__exportStar(require("./es-store-item-dictionary"), exports);
|
|
19
20
|
__exportStar(require("./es-store-item-synonyms"), exports);
|