@kfijolek/boardgamegeekclient
Version:
Javascript client to interact with BoardGameGeek public XML API
60 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;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.BggGuildDto = void 0;
const jackson_js_1 = require("jackson-js");
let BggGuildDto = class BggGuildDto {
};
__decorate([
jackson_js_1.JsonProperty(),
jackson_js_1.JsonClassType({ type: () => [Number] }),
jackson_js_1.JsonAlias({ values: ["@_id"] })
], BggGuildDto.prototype, "id", void 0);
__decorate([
jackson_js_1.JsonProperty(),
jackson_js_1.JsonClassType({ type: () => [String] }),
jackson_js_1.JsonAlias({ values: ["@_name"] })
], BggGuildDto.prototype, "name", void 0);
__decorate([
jackson_js_1.JsonProperty(),
jackson_js_1.JsonClassType({ type: () => [String] }),
jackson_js_1.JsonAlias({ values: ["@_created"] })
], BggGuildDto.prototype, "created", void 0);
__decorate([
jackson_js_1.JsonProperty(),
jackson_js_1.JsonClassType({ type: () => [String] })
], BggGuildDto.prototype, "category", void 0);
__decorate([
jackson_js_1.JsonProperty(),
jackson_js_1.JsonClassType({ type: () => [String] })
], BggGuildDto.prototype, "website", void 0);
__decorate([
jackson_js_1.JsonProperty(),
jackson_js_1.JsonClassType({ type: () => [String] })
], BggGuildDto.prototype, "manager", void 0);
__decorate([
jackson_js_1.JsonProperty(),
jackson_js_1.JsonClassType({ type: () => [String] })
], BggGuildDto.prototype, "description", void 0);
__decorate([
jackson_js_1.JsonProperty(),
jackson_js_1.JsonClassType({ type: () => [Array, [Object]] }),
jackson_js_1.JsonFormat({
shape: jackson_js_1.JsonFormatShape.ARRAY
}),
jackson_js_1.JsonDeserialize({
// eslint-disable-next-line @typescript-eslint/no-explicit-any
using: (array) => array[0].member.map((item) => ({ name: item['@_name'], date: item['@_date'] }))
}),
jackson_js_1.JsonAlias({ values: ["members"] })
], BggGuildDto.prototype, "members", void 0);
BggGuildDto = __decorate([
jackson_js_1.JsonIgnoreProperties({ value: ['@_termsofuse', 'location'] })
], BggGuildDto);
exports.BggGuildDto = BggGuildDto;
//# sourceMappingURL=BggGuildDto.js.map