- HERENCIA-SIMCO.md actualizado con directivas v3.7 y v3.8 - Actualizaciones de configuracion Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
151 lines
6.8 KiB
JavaScript
151 lines
6.8 KiB
JavaScript
"use strict";
|
|
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.ListTenantsQueryDto = exports.UpdateTenantStatusDto = exports.UpdateTenantDto = exports.CreateTenantDto = void 0;
|
|
const class_validator_1 = require("class-validator");
|
|
const swagger_1 = require("@nestjs/swagger");
|
|
class CreateTenantDto {
|
|
}
|
|
exports.CreateTenantDto = CreateTenantDto;
|
|
__decorate([
|
|
(0, swagger_1.ApiProperty)({ description: 'Tenant name' }),
|
|
(0, class_validator_1.IsString)(),
|
|
__metadata("design:type", String)
|
|
], CreateTenantDto.prototype, "name", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiProperty)({ description: 'Tenant slug (unique identifier)' }),
|
|
(0, class_validator_1.IsString)(),
|
|
__metadata("design:type", String)
|
|
], CreateTenantDto.prototype, "slug", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)({ description: 'Custom domain' }),
|
|
(0, class_validator_1.IsString)(),
|
|
(0, class_validator_1.IsOptional)(),
|
|
__metadata("design:type", String)
|
|
], CreateTenantDto.prototype, "domain", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)({ description: 'Logo URL' }),
|
|
(0, class_validator_1.IsString)(),
|
|
(0, class_validator_1.IsOptional)(),
|
|
__metadata("design:type", String)
|
|
], CreateTenantDto.prototype, "logo_url", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)({ description: 'Plan ID' }),
|
|
(0, class_validator_1.IsUUID)(),
|
|
(0, class_validator_1.IsOptional)(),
|
|
__metadata("design:type", String)
|
|
], CreateTenantDto.prototype, "plan_id", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)({ description: 'Initial status', enum: ['active', 'trial', 'suspended'] }),
|
|
(0, class_validator_1.IsEnum)(['active', 'trial', 'suspended']),
|
|
(0, class_validator_1.IsOptional)(),
|
|
__metadata("design:type", String)
|
|
], CreateTenantDto.prototype, "status", void 0);
|
|
class UpdateTenantDto {
|
|
}
|
|
exports.UpdateTenantDto = UpdateTenantDto;
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)({ description: 'Tenant name' }),
|
|
(0, class_validator_1.IsString)(),
|
|
(0, class_validator_1.IsOptional)(),
|
|
__metadata("design:type", String)
|
|
], UpdateTenantDto.prototype, "name", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)({ description: 'Custom domain' }),
|
|
(0, class_validator_1.IsString)(),
|
|
(0, class_validator_1.IsOptional)(),
|
|
__metadata("design:type", String)
|
|
], UpdateTenantDto.prototype, "domain", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)({ description: 'Logo URL' }),
|
|
(0, class_validator_1.IsString)(),
|
|
(0, class_validator_1.IsOptional)(),
|
|
__metadata("design:type", String)
|
|
], UpdateTenantDto.prototype, "logo_url", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)({ description: 'Plan ID' }),
|
|
(0, class_validator_1.IsUUID)(),
|
|
(0, class_validator_1.IsOptional)(),
|
|
__metadata("design:type", String)
|
|
], UpdateTenantDto.prototype, "plan_id", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)({ description: 'Tenant settings (JSON)' }),
|
|
(0, class_validator_1.IsOptional)(),
|
|
__metadata("design:type", Object)
|
|
], UpdateTenantDto.prototype, "settings", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)({ description: 'Tenant metadata (JSON)' }),
|
|
(0, class_validator_1.IsOptional)(),
|
|
__metadata("design:type", Object)
|
|
], UpdateTenantDto.prototype, "metadata", void 0);
|
|
class UpdateTenantStatusDto {
|
|
}
|
|
exports.UpdateTenantStatusDto = UpdateTenantStatusDto;
|
|
__decorate([
|
|
(0, swagger_1.ApiProperty)({ description: 'New status', enum: ['active', 'suspended', 'trial', 'canceled'] }),
|
|
(0, class_validator_1.IsEnum)(['active', 'suspended', 'trial', 'canceled']),
|
|
__metadata("design:type", String)
|
|
], UpdateTenantStatusDto.prototype, "status", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)({ description: 'Reason for status change' }),
|
|
(0, class_validator_1.IsString)(),
|
|
(0, class_validator_1.IsOptional)(),
|
|
__metadata("design:type", String)
|
|
], UpdateTenantStatusDto.prototype, "reason", void 0);
|
|
class ListTenantsQueryDto {
|
|
constructor() {
|
|
this.page = 1;
|
|
this.limit = 10;
|
|
this.sortBy = 'created_at';
|
|
this.sortOrder = 'DESC';
|
|
}
|
|
}
|
|
exports.ListTenantsQueryDto = ListTenantsQueryDto;
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)({ description: 'Page number', default: 1 }),
|
|
(0, class_validator_1.IsNumber)(),
|
|
(0, class_validator_1.Min)(1),
|
|
(0, class_validator_1.IsOptional)(),
|
|
__metadata("design:type", Number)
|
|
], ListTenantsQueryDto.prototype, "page", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)({ description: 'Items per page', default: 10 }),
|
|
(0, class_validator_1.IsNumber)(),
|
|
(0, class_validator_1.Min)(1),
|
|
(0, class_validator_1.Max)(100),
|
|
(0, class_validator_1.IsOptional)(),
|
|
__metadata("design:type", Number)
|
|
], ListTenantsQueryDto.prototype, "limit", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)({ description: 'Search term (name or slug)' }),
|
|
(0, class_validator_1.IsString)(),
|
|
(0, class_validator_1.IsOptional)(),
|
|
__metadata("design:type", String)
|
|
], ListTenantsQueryDto.prototype, "search", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)({ description: 'Filter by status', enum: ['active', 'suspended', 'trial', 'canceled'] }),
|
|
(0, class_validator_1.IsEnum)(['active', 'suspended', 'trial', 'canceled']),
|
|
(0, class_validator_1.IsOptional)(),
|
|
__metadata("design:type", String)
|
|
], ListTenantsQueryDto.prototype, "status", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)({ description: 'Sort by field', enum: ['name', 'created_at', 'status'] }),
|
|
(0, class_validator_1.IsString)(),
|
|
(0, class_validator_1.IsOptional)(),
|
|
__metadata("design:type", String)
|
|
], ListTenantsQueryDto.prototype, "sortBy", void 0);
|
|
__decorate([
|
|
(0, swagger_1.ApiPropertyOptional)({ description: 'Sort order', enum: ['ASC', 'DESC'] }),
|
|
(0, class_validator_1.IsEnum)(['ASC', 'DESC']),
|
|
(0, class_validator_1.IsOptional)(),
|
|
__metadata("design:type", String)
|
|
], ListTenantsQueryDto.prototype, "sortOrder", void 0);
|
|
//# sourceMappingURL=index.js.map
|