Spaces:
Build error
Build error
| ; | |
| 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.DomainProfile = void 0; | |
| const civkit_1 = require("civkit"); | |
| const firestore_1 = require("../shared/lib/firestore"); | |
| const crawler_options_1 = require("../dto/crawler-options"); | |
| let DomainProfile = class DomainProfile extends firestore_1.FirestoreRecord { | |
| static { this.collectionName = 'domainProfiles'; } | |
| }; | |
| exports.DomainProfile = DomainProfile; | |
| __decorate([ | |
| (0, civkit_1.Prop)({ | |
| required: true | |
| }), | |
| __metadata("design:type", String) | |
| ], DomainProfile.prototype, "path", void 0); | |
| __decorate([ | |
| (0, civkit_1.Prop)(), | |
| __metadata("design:type", String) | |
| ], DomainProfile.prototype, "triggerUrl", void 0); | |
| __decorate([ | |
| (0, civkit_1.Prop)({ required: true, type: crawler_options_1.ENGINE_TYPE }), | |
| __metadata("design:type", String) | |
| ], DomainProfile.prototype, "engine", void 0); | |
| __decorate([ | |
| (0, civkit_1.Prop)(), | |
| __metadata("design:type", Date) | |
| ], DomainProfile.prototype, "createdAt", void 0); | |
| __decorate([ | |
| (0, civkit_1.Prop)(), | |
| __metadata("design:type", Date) | |
| ], DomainProfile.prototype, "expireAt", void 0); | |
| exports.DomainProfile = DomainProfile = __decorate([ | |
| (0, civkit_1.Also)({ | |
| dictOf: Object | |
| }) | |
| ], DomainProfile); | |
| //# sourceMappingURL=domain-profile.js.map |