@yolo-croket-dev/amqp-access 0.6.55 → 0.6.56
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
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
import { ItemReviewIntegrationTypeEnum } from '@yolo-croket-dev/entity-v2/item-review-integration/item-review-integration.entity';
|
|
1
2
|
export declare class CreateItemReviewIntegrationPayload {
|
|
3
|
+
integrationType?: ItemReviewIntegrationTypeEnum;
|
|
2
4
|
itemIds: string[];
|
|
3
5
|
memo?: string;
|
|
4
6
|
}
|
|
@@ -11,9 +11,15 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.CreateItemReviewIntegrationPayload = void 0;
|
|
13
13
|
const class_validator_1 = require("class-validator");
|
|
14
|
+
const item_review_integration_entity_1 = require("@yolo-croket-dev/entity-v2/item-review-integration/item-review-integration.entity");
|
|
14
15
|
class CreateItemReviewIntegrationPayload {
|
|
15
16
|
}
|
|
16
17
|
exports.CreateItemReviewIntegrationPayload = CreateItemReviewIntegrationPayload;
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, class_validator_1.IsString)(),
|
|
20
|
+
(0, class_validator_1.IsOptional)(),
|
|
21
|
+
__metadata("design:type", String)
|
|
22
|
+
], CreateItemReviewIntegrationPayload.prototype, "integrationType", void 0);
|
|
17
23
|
__decorate([
|
|
18
24
|
(0, class_validator_1.IsArray)(),
|
|
19
25
|
(0, class_validator_1.IsMongoId)({ each: true }),
|