@yolo-croket-dev/amqp-access 0.0.74-jun.1 → 0.0.74-jun.3
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/package.json
CHANGED
|
@@ -22,6 +22,10 @@ export declare class GetStoreItemByAtlasCategoryInfo {
|
|
|
22
22
|
subCategory?: string;
|
|
23
23
|
}
|
|
24
24
|
export declare class GetStoreItemIdsByAtlasSearchPayload {
|
|
25
|
+
/**
|
|
26
|
+
* @deprecated 페이지 (성능 이슈로 페이징 토큰 사용을 권장)
|
|
27
|
+
* */
|
|
28
|
+
page?: number;
|
|
25
29
|
/** 다음 페이징 토큰 */
|
|
26
30
|
searchAfter?: string;
|
|
27
31
|
/** 이전 페이징 토큰 */
|
|
@@ -74,6 +78,6 @@ export declare class GetStoreItemIdsByAtlasSearchPayload {
|
|
|
74
78
|
export interface GetStoreItemIdsByAtlasSearchResult {
|
|
75
79
|
allCount: number;
|
|
76
80
|
itemIds: string[];
|
|
77
|
-
searchAfter
|
|
78
|
-
searchBefore
|
|
81
|
+
searchAfter?: string;
|
|
82
|
+
searchBefore?: string;
|
|
79
83
|
}
|
|
@@ -48,6 +48,11 @@ __decorate([
|
|
|
48
48
|
class GetStoreItemIdsByAtlasSearchPayload {
|
|
49
49
|
}
|
|
50
50
|
exports.GetStoreItemIdsByAtlasSearchPayload = GetStoreItemIdsByAtlasSearchPayload;
|
|
51
|
+
__decorate([
|
|
52
|
+
(0, class_validator_1.IsNumber)(),
|
|
53
|
+
(0, class_validator_1.IsOptional)(),
|
|
54
|
+
__metadata("design:type", Number)
|
|
55
|
+
], GetStoreItemIdsByAtlasSearchPayload.prototype, "page", void 0);
|
|
51
56
|
__decorate([
|
|
52
57
|
(0, class_validator_1.IsString)(),
|
|
53
58
|
(0, class_validator_1.IsOptional)(),
|