@yolo-croket-dev/amqp-access 0.7.261 → 0.7.263

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.
@@ -1,6 +1,6 @@
1
1
  import { PInfoPOptionInfo, POption, POptionTypeEnum } from '@yolo-croket-dev/entity-v2';
2
2
  declare class POptionForCreateChangedPurchasedOptionLog implements POption {
3
- detailSequence: number;
3
+ detailSequence?: number;
4
4
  optionName: string;
5
5
  optionNameList: string[];
6
6
  pNums?: number | undefined;
@@ -17,6 +17,7 @@ class POptionForCreateChangedPurchasedOptionLog {
17
17
  }
18
18
  __decorate([
19
19
  (0, class_validator_1.IsNumber)(),
20
+ (0, class_validator_1.IsOptional)(),
20
21
  __metadata("design:type", Number)
21
22
  ], POptionForCreateChangedPurchasedOptionLog.prototype, "detailSequence", void 0);
22
23
  __decorate([
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yolo-croket-dev/amqp-access",
3
- "version": "0.7.261",
3
+ "version": "0.7.263",
4
4
  "main": "index.js",
5
5
  "author": "Yolo Co., Ltd.",
6
6
  "description": "크로켓 amqp-access npm",
@@ -20,10 +20,10 @@
20
20
  "@nestjs/common": "^10.3.10",
21
21
  "@nestjs/mapped-types": "2.0.2",
22
22
  "@yolo-croket-dev/core": "^1.9.3",
23
- "@yolo-croket-dev/domain": "0.2.43",
23
+ "@yolo-croket-dev/domain": "0.2.44",
24
24
  "@yolo-croket-dev/dto-v2": "0.2.23",
25
- "@yolo-croket-dev/entity": "0.2.99",
26
- "@yolo-croket-dev/entity-v2": "0.3.19",
25
+ "@yolo-croket-dev/entity": "0.2.100",
26
+ "@yolo-croket-dev/entity-v2": "0.3.21",
27
27
  "class-transformer": "^0.5.1",
28
28
  "class-validator": "^0.13.2",
29
29
  "dotenv": "^16.3.1"
@@ -1,7 +1,7 @@
1
1
  import { PInfoPOptionInfo, POption, POptionTypeEnum } from '@yolo-croket-dev/entity-v2';
2
2
  import { ChangePurchasedOptionInfo } from '../../../../order-server';
3
3
  export declare class POptionByPatchStoreItemOptionRemainCount implements POption {
4
- detailSequence: number;
4
+ detailSequence?: number;
5
5
  optionName: string;
6
6
  optionNameList: string[];
7
7
  pNums?: number;
@@ -11,8 +11,8 @@ export declare class PInfoPOptionInfoByPatchStoreItemOptionRemainCount implement
11
11
  pOptionType?: POptionTypeEnum;
12
12
  }
13
13
  export declare class PatchStoreItemOptionRemainCountByChangePurchasedOptionPayload {
14
- operationId: string;
15
- operationFingerprint: string;
14
+ operationId?: string;
15
+ operationFingerprint?: string;
16
16
  storeItemId: string;
17
17
  changeOptions: ChangePurchasedOptionInfo[];
18
18
  pOptionInfo?: PInfoPOptionInfoByPatchStoreItemOptionRemainCount;
@@ -19,6 +19,7 @@ class POptionByPatchStoreItemOptionRemainCount {
19
19
  exports.POptionByPatchStoreItemOptionRemainCount = POptionByPatchStoreItemOptionRemainCount;
20
20
  __decorate([
21
21
  (0, class_validator_1.IsNumber)(),
22
+ (0, class_validator_1.IsOptional)(),
22
23
  __metadata("design:type", Number)
23
24
  ], POptionByPatchStoreItemOptionRemainCount.prototype, "detailSequence", void 0);
24
25
  __decorate([
@@ -55,11 +56,13 @@ exports.PatchStoreItemOptionRemainCountByChangePurchasedOptionPayload = PatchSto
55
56
  __decorate([
56
57
  (0, class_validator_1.IsString)(),
57
58
  (0, class_validator_1.IsNotEmpty)(),
59
+ (0, class_validator_1.IsOptional)(),
58
60
  __metadata("design:type", String)
59
61
  ], PatchStoreItemOptionRemainCountByChangePurchasedOptionPayload.prototype, "operationId", void 0);
60
62
  __decorate([
61
63
  (0, class_validator_1.IsString)(),
62
64
  (0, class_validator_1.IsNotEmpty)(),
65
+ (0, class_validator_1.IsOptional)(),
63
66
  __metadata("design:type", String)
64
67
  ], PatchStoreItemOptionRemainCountByChangePurchasedOptionPayload.prototype, "operationFingerprint", void 0);
65
68
  __decorate([