@mtgame/core 0.1.68 → 0.1.69
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 +27 -0
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/esm2015/models/organization-statistic.js +25 -0
- package/esm2015/models/public-api.js +2 -1
- package/fesm2015/mtgame-core.js +23 -1
- package/fesm2015/mtgame-core.js.map +1 -1
- package/models/organization-statistic.d.ts +10 -0
- package/models/public-api.d.ts +1 -0
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -9853,6 +9853,33 @@
|
|
|
9853
9853
|
})
|
|
9854
9854
|
], exports.OrganizationTariff);
|
|
9855
9855
|
|
|
9856
|
+
exports.OrganizationStatistic = /** @class */ (function (_super) {
|
|
9857
|
+
__extends(OrganizationStatistic, _super);
|
|
9858
|
+
function OrganizationStatistic() {
|
|
9859
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
9860
|
+
}
|
|
9861
|
+
OrganizationStatistic.toFront = function (data) { };
|
|
9862
|
+
OrganizationStatistic.toBack = function (data) { };
|
|
9863
|
+
return OrganizationStatistic;
|
|
9864
|
+
}(BaseModel));
|
|
9865
|
+
__decorate([
|
|
9866
|
+
ToFrontHook
|
|
9867
|
+
], exports.OrganizationStatistic, "toFront", null);
|
|
9868
|
+
__decorate([
|
|
9869
|
+
ToBackHook
|
|
9870
|
+
], exports.OrganizationStatistic, "toBack", null);
|
|
9871
|
+
exports.OrganizationStatistic = __decorate([
|
|
9872
|
+
ModelInstance({
|
|
9873
|
+
mappingFields: {
|
|
9874
|
+
id: 'id',
|
|
9875
|
+
players_count: 'playersCount',
|
|
9876
|
+
teams_count: 'teamsCount',
|
|
9877
|
+
games_count: 'gamesCount',
|
|
9878
|
+
paid_sum: 'paidSum',
|
|
9879
|
+
},
|
|
9880
|
+
})
|
|
9881
|
+
], exports.OrganizationStatistic);
|
|
9882
|
+
|
|
9856
9883
|
var CentrifugoService = /** @class */ (function () {
|
|
9857
9884
|
function CentrifugoService(httpClient, configService) {
|
|
9858
9885
|
this.httpClient = httpClient;
|