@mbc-cqrs-serverless/survey-template
Version:
56 lines • 2.74 kB
JavaScript
;
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.SurveyTemplateUpdateDto = exports.UpdateSurveyTemplateAttributes = void 0;
const swagger_1 = require("@nestjs/swagger");
const class_transformer_1 = require("class-transformer");
const class_validator_1 = require("class-validator");
const survey_template_attributes_dto_1 = require("./survey-template-attributes.dto");
class UpdateSurveyTemplateAttributes extends (0, swagger_1.PartialType)(survey_template_attributes_dto_1.SurveyTemplateAttributes) {
}
exports.UpdateSurveyTemplateAttributes = UpdateSurveyTemplateAttributes;
class SurveyTemplateUpdateDto {
constructor(partial) {
Object.assign(this, partial);
}
}
exports.SurveyTemplateUpdateDto = SurveyTemplateUpdateDto;
__decorate([
(0, swagger_1.ApiProperty)({
description: 'Name of the survey template',
example: 'Customer Satisfaction Survey',
required: true,
}),
(0, class_validator_1.IsString)(),
(0, class_validator_1.IsOptional)(),
__metadata("design:type", String)
], SurveyTemplateUpdateDto.prototype, "name", void 0);
__decorate([
(0, swagger_1.ApiProperty)({
description: 'Whether the survey template is deleted',
example: false,
required: false,
}),
(0, class_validator_1.IsBoolean)(),
(0, class_validator_1.IsOptional)(),
__metadata("design:type", Boolean)
], SurveyTemplateUpdateDto.prototype, "isDeleted", void 0);
__decorate([
(0, swagger_1.ApiProperty)({
description: 'Survey template attributes including description and survey template structure',
required: true,
}),
(0, class_transformer_1.Type)(() => UpdateSurveyTemplateAttributes),
(0, class_validator_1.ValidateNested)(),
(0, class_validator_1.IsOptional)(),
__metadata("design:type", UpdateSurveyTemplateAttributes)
], SurveyTemplateUpdateDto.prototype, "attributes", void 0);
//# sourceMappingURL=survey-template-update.dto.js.map