@yolo-croket-dev/amqp-access 0.7.262 → 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.
- package/order-server/dto/changed-purchased-option-log/command/create-changed-purchased-option-log.dto.d.ts +1 -1
- package/order-server/dto/changed-purchased-option-log/command/create-changed-purchased-option-log.dto.js +1 -0
- package/package.json +4 -4
- package/store-item-server/dto/store-item/command/patch-store-item-option-remain-count-by-change-purchased-option.service.d.ts +1 -1
- package/store-item-server/dto/store-item/command/patch-store-item-option-remain-count-by-change-purchased-option.service.js +1 -0
|
@@ -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
|
|
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.
|
|
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.
|
|
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.
|
|
26
|
-
"@yolo-croket-dev/entity-v2": "0.3.
|
|
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
|
|
4
|
+
detailSequence?: number;
|
|
5
5
|
optionName: string;
|
|
6
6
|
optionNameList: string[];
|
|
7
7
|
pNums?: number;
|
|
@@ -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([
|