@yolo-croket-dev/amqp-access 0.0.182 → 0.0.184

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.
@@ -8,6 +8,8 @@ export declare enum PatchProcessV2ToCheckingStockResultStatusEnum {
8
8
  NOT_FOUND = "NOT_FOUND",
9
9
  /** @description process가 waitingOrder 가 아님 */
10
10
  INVALID_PROCESS = "INVALID_PROCESS",
11
+ /** @description process_v2가 이미 재고확인중 */
12
+ ALREADY_PROCESS = "ALREADY_PROCESS",
11
13
  /** @description 예기치 못한 오류 */
12
14
  SERVER_ERROR = "SERVER_ERROR"
13
15
  }
@@ -26,6 +26,8 @@ var PatchProcessV2ToCheckingStockResultStatusEnum;
26
26
  PatchProcessV2ToCheckingStockResultStatusEnum["NOT_FOUND"] = "NOT_FOUND";
27
27
  /** @description process가 waitingOrder 가 아님 */
28
28
  PatchProcessV2ToCheckingStockResultStatusEnum["INVALID_PROCESS"] = "INVALID_PROCESS";
29
+ /** @description process_v2가 이미 재고확인중 */
30
+ PatchProcessV2ToCheckingStockResultStatusEnum["ALREADY_PROCESS"] = "ALREADY_PROCESS";
29
31
  /** @description 예기치 못한 오류 */
30
32
  PatchProcessV2ToCheckingStockResultStatusEnum["SERVER_ERROR"] = "SERVER_ERROR";
31
33
  })(PatchProcessV2ToCheckingStockResultStatusEnum = exports.PatchProcessV2ToCheckingStockResultStatusEnum || (exports.PatchProcessV2ToCheckingStockResultStatusEnum = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yolo-croket-dev/amqp-access",
3
- "version": "0.0.182",
3
+ "version": "0.0.184",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -1,6 +1,8 @@
1
1
  import { BusinessInfo } from '@yolo-croket-dev/entity-v2/store';
2
2
  export declare class GetStoreBusinessInfoChangeHistoryPayload {
3
3
  targetMonth: string;
4
+ skip: number;
5
+ limit: number;
4
6
  }
5
7
  export interface GetStoreBusinessInfoChangeHistoryResult {
6
8
  changeHistories: GetStoreBusinessInfoChangeHistory[];
@@ -18,4 +18,12 @@ __decorate([
18
18
  (0, class_validator_1.IsDateString)(),
19
19
  __metadata("design:type", String)
20
20
  ], GetStoreBusinessInfoChangeHistoryPayload.prototype, "targetMonth", void 0);
21
+ __decorate([
22
+ (0, class_validator_1.IsNumber)(),
23
+ __metadata("design:type", Number)
24
+ ], GetStoreBusinessInfoChangeHistoryPayload.prototype, "skip", void 0);
25
+ __decorate([
26
+ (0, class_validator_1.IsNumber)(),
27
+ __metadata("design:type", Number)
28
+ ], GetStoreBusinessInfoChangeHistoryPayload.prototype, "limit", void 0);
21
29
  exports.GetStoreBusinessInfoChangeHistoryPayload = GetStoreBusinessInfoChangeHistoryPayload;