@mtgame/core 0.1.76 → 0.1.77
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/mtgame-core.umd.js +4 -0
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/esm2015/models/organization-bill.js +5 -1
- package/fesm2015/mtgame-core.js +4 -0
- package/fesm2015/mtgame-core.js.map +1 -1
- package/models/organization-bill.d.ts +2 -0
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -9793,6 +9793,8 @@
|
|
|
9793
9793
|
sum: 'sum',
|
|
9794
9794
|
payment_date: 'paymentDate',
|
|
9795
9795
|
pay_till_date: 'payTillDate',
|
|
9796
|
+
date_from: 'dateFrom',
|
|
9797
|
+
date_to: 'dateTo',
|
|
9796
9798
|
created_at: 'createdAt',
|
|
9797
9799
|
},
|
|
9798
9800
|
relation: {
|
|
@@ -9800,6 +9802,8 @@
|
|
|
9800
9802
|
status: enumField(exports.OrganizationBillStatuses),
|
|
9801
9803
|
paymentDate: DateTimeField,
|
|
9802
9804
|
payTillDate: DateTimeField,
|
|
9805
|
+
dateFrom: DateTimeField,
|
|
9806
|
+
dateTo: DateTimeField,
|
|
9803
9807
|
createdAt: DateTimeField,
|
|
9804
9808
|
}
|
|
9805
9809
|
})
|