@skybloxsystems/ticket-bot
Version:
32 lines (28 loc) • 1.37 kB
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
var constants = {
attributes: {
amount_cents: 'amount_cents',
total_historical_amount_cents: 'total_historical_amount_cents',
declined_since: 'declined_since',
created_at: 'created_at',
pledge_cap_cents: 'pledge_cap_cents',
patron_pays_fees: 'patron_pays_fees',
unread_count: 'unread_count'
},
relationships: {
patron: 'patron',
reward: 'reward',
creator: 'creator',
address: 'address',
card: 'card',
pledge_vat_location: 'pledge_vat_location'
}
};
exports.default = _extends({}, constants, {
default_attributes: [constants.attributes.amount_cents, constants.attributes.declined_since, constants.attributes.created_at, constants.attributes.pledge_cap_cents, constants.attributes.patron_pays_fees],
default_relationships: [constants.relationships.patron, constants.relationships.reward, constants.relationships.creator, constants.relationships.address, constants.relationships.pledge_vat_location]
});
;