@orlikfy/api-interfaces 6.0.1 → 6.0.2
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/dist/api.d.ts +24 -9
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -2877,6 +2877,14 @@ export interface components {
|
|
|
2877
2877
|
AdminGameTypeFilter: AdminGameTypeFilter;
|
|
2878
2878
|
/** @enum {string} */
|
|
2879
2879
|
GameVisibility: GameVisibility;
|
|
2880
|
+
AdminGameDtoLocation: {
|
|
2881
|
+
locationId: string;
|
|
2882
|
+
name: string;
|
|
2883
|
+
coordinates: components["schemas"]["CoordinatesDto"];
|
|
2884
|
+
address: string;
|
|
2885
|
+
city: string;
|
|
2886
|
+
region: components["schemas"]["RegionDto"] | null;
|
|
2887
|
+
};
|
|
2880
2888
|
AdminGamePlayerDto: {
|
|
2881
2889
|
playerId: string;
|
|
2882
2890
|
gamePlayerId: string;
|
|
@@ -2901,7 +2909,7 @@ export interface components {
|
|
|
2901
2909
|
priceAmount: string;
|
|
2902
2910
|
priceCurrency: components["schemas"]["priceCurrency"];
|
|
2903
2911
|
level: components["schemas"]["level"];
|
|
2904
|
-
location: components["schemas"]["
|
|
2912
|
+
location: components["schemas"]["AdminGameDtoLocation"];
|
|
2905
2913
|
distanceMeters: number | null;
|
|
2906
2914
|
currentUserParticipationStatus: components["schemas"]["userParticipationStatus"];
|
|
2907
2915
|
visibility: components["schemas"]["visibility"];
|
|
@@ -2930,13 +2938,6 @@ export interface components {
|
|
|
2930
2938
|
dateFormatted: string;
|
|
2931
2939
|
games: components["schemas"]["AdminGameDto"][];
|
|
2932
2940
|
};
|
|
2933
|
-
AdminGameDtoLocation: {
|
|
2934
|
-
locationId: string;
|
|
2935
|
-
name: string;
|
|
2936
|
-
coordinates: components["schemas"]["CoordinatesDto"];
|
|
2937
|
-
address: string;
|
|
2938
|
-
city: string;
|
|
2939
|
-
};
|
|
2940
2941
|
GamesByLocation: {
|
|
2941
2942
|
location: components["schemas"]["AdminGameDtoLocation"];
|
|
2942
2943
|
games: components["schemas"]["AdminGameDto"][];
|
|
@@ -2948,6 +2949,14 @@ export interface components {
|
|
|
2948
2949
|
gamesByDateMessage: string;
|
|
2949
2950
|
gamesByLocationMessage: string;
|
|
2950
2951
|
};
|
|
2952
|
+
RegionGameStatsDto: {
|
|
2953
|
+
regionName: string;
|
|
2954
|
+
gameCount: number;
|
|
2955
|
+
};
|
|
2956
|
+
RegionDailyGamesStatsDto: {
|
|
2957
|
+
regionName: string;
|
|
2958
|
+
dailyStats: components["schemas"]["DailyStatsDto"][];
|
|
2959
|
+
};
|
|
2951
2960
|
GetAdminGamesStatsDto: {
|
|
2952
2961
|
/** @description Daily game creation counts */
|
|
2953
2962
|
dailyGamesCreated: components["schemas"]["DailyStatsDto"][];
|
|
@@ -2955,6 +2964,10 @@ export interface components {
|
|
|
2955
2964
|
dailyApplicationsCreated: components["schemas"]["DailyStatsDto"][];
|
|
2956
2965
|
/** @description Daily game application acceptance counts */
|
|
2957
2966
|
dailyApplicationsAccepted: components["schemas"]["DailyStatsDto"][];
|
|
2967
|
+
regionStats: components["schemas"]["RegionGameStatsDto"][];
|
|
2968
|
+
regionDailyGamesCreated: components["schemas"]["RegionDailyGamesStatsDto"][];
|
|
2969
|
+
regionDailyApplicationsCreated: components["schemas"]["RegionDailyGamesStatsDto"][];
|
|
2970
|
+
regionDailyApplicationsAccepted: components["schemas"]["RegionDailyGamesStatsDto"][];
|
|
2958
2971
|
};
|
|
2959
2972
|
GetKnownCitiesForPostDto: {
|
|
2960
2973
|
knownCities: string[];
|
|
@@ -3350,13 +3363,15 @@ export type DailyStatsDto = components['schemas']['DailyStatsDto'];
|
|
|
3350
3363
|
export type RegionUserStatsDto = components['schemas']['RegionUserStatsDto'];
|
|
3351
3364
|
export type RegionDailyRegistrationsDto = components['schemas']['RegionDailyRegistrationsDto'];
|
|
3352
3365
|
export type GetAdminUsersStatsDto = components['schemas']['GetAdminUsersStatsDto'];
|
|
3366
|
+
export type AdminGameDtoLocation = components['schemas']['AdminGameDtoLocation'];
|
|
3353
3367
|
export type AdminGamePlayerDto = components['schemas']['AdminGamePlayerDto'];
|
|
3354
3368
|
export type AdminGameDto = components['schemas']['AdminGameDto'];
|
|
3355
3369
|
export type AdminGamesDto = components['schemas']['AdminGamesDto'];
|
|
3356
3370
|
export type GamesByDate = components['schemas']['GamesByDate'];
|
|
3357
|
-
export type AdminGameDtoLocation = components['schemas']['AdminGameDtoLocation'];
|
|
3358
3371
|
export type GamesByLocation = components['schemas']['GamesByLocation'];
|
|
3359
3372
|
export type GetAdminGamesForPostDto = components['schemas']['GetAdminGamesForPostDto'];
|
|
3373
|
+
export type RegionGameStatsDto = components['schemas']['RegionGameStatsDto'];
|
|
3374
|
+
export type RegionDailyGamesStatsDto = components['schemas']['RegionDailyGamesStatsDto'];
|
|
3360
3375
|
export type GetAdminGamesStatsDto = components['schemas']['GetAdminGamesStatsDto'];
|
|
3361
3376
|
export type GetKnownCitiesForPostDto = components['schemas']['GetKnownCitiesForPostDto'];
|
|
3362
3377
|
export type RestoreRecurringGameDto = components['schemas']['RestoreRecurringGameDto'];
|