58 lines
2.7 KiB
JavaScript
58 lines
2.7 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.SearchQueryDto = void 0;
|
|
const class_validator_1 = require("class-validator");
|
|
const class_transformer_1 = require("class-transformer");
|
|
const swagger_1 = require("@nestjs/swagger");
|
|
class SearchQueryDto {
|
|
q;
|
|
lat;
|
|
lng;
|
|
radius = 20000;
|
|
country;
|
|
}
|
|
exports.SearchQueryDto = SearchQueryDto;
|
|
__decorate([
|
|
(0, class_validator_1.IsString)(),
|
|
(0, swagger_1.ApiPropertyOptional)({ description: 'Search query string' }),
|
|
__metadata("design:type", String)
|
|
], SearchQueryDto.prototype, "q", void 0);
|
|
__decorate([
|
|
(0, class_validator_1.IsOptional)(),
|
|
(0, class_validator_1.IsNumber)(),
|
|
(0, class_transformer_1.Type)(() => Number),
|
|
(0, swagger_1.ApiPropertyOptional)({ description: 'Latitude for proximity search' }),
|
|
__metadata("design:type", Number)
|
|
], SearchQueryDto.prototype, "lat", void 0);
|
|
__decorate([
|
|
(0, class_validator_1.IsOptional)(),
|
|
(0, class_validator_1.IsNumber)(),
|
|
(0, class_transformer_1.Type)(() => Number),
|
|
(0, swagger_1.ApiPropertyOptional)({ description: 'Longitude for proximity search' }),
|
|
__metadata("design:type", Number)
|
|
], SearchQueryDto.prototype, "lng", void 0);
|
|
__decorate([
|
|
(0, class_validator_1.IsOptional)(),
|
|
(0, class_validator_1.IsNumber)(),
|
|
(0, class_validator_1.Min)(0),
|
|
(0, class_validator_1.Max)(50000),
|
|
(0, class_transformer_1.Type)(() => Number),
|
|
(0, swagger_1.ApiPropertyOptional)({ description: 'Proximity radius in meters', default: 20000 }),
|
|
__metadata("design:type", Number)
|
|
], SearchQueryDto.prototype, "radius", void 0);
|
|
__decorate([
|
|
(0, class_validator_1.IsOptional)(),
|
|
(0, class_validator_1.IsEnum)(['jordan', 'syria', 'egypt']),
|
|
(0, swagger_1.ApiPropertyOptional)({ description: 'Country filter', enum: ['jordan', 'syria', 'egypt'] }),
|
|
__metadata("design:type", String)
|
|
], SearchQueryDto.prototype, "country", void 0);
|
|
//# sourceMappingURL=search-query.dto.js.map
|