@orlikfy/api-interfaces 5.0.0 → 6.0.1
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 +856 -235
- package/dist/api.js +15 -8
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -35,6 +35,39 @@ export interface paths {
|
|
|
35
35
|
patch?: never;
|
|
36
36
|
trace?: never;
|
|
37
37
|
};
|
|
38
|
+
"/error-uncaught": {
|
|
39
|
+
parameters: {
|
|
40
|
+
query?: never;
|
|
41
|
+
header?: never;
|
|
42
|
+
path?: never;
|
|
43
|
+
cookie?: never;
|
|
44
|
+
};
|
|
45
|
+
get: operations["getErrorUncaught"];
|
|
46
|
+
put?: never;
|
|
47
|
+
post?: never;
|
|
48
|
+
delete?: never;
|
|
49
|
+
options?: never;
|
|
50
|
+
head?: never;
|
|
51
|
+
patch?: never;
|
|
52
|
+
trace?: never;
|
|
53
|
+
};
|
|
54
|
+
"/users/user-registered-cloud-fn-callback": {
|
|
55
|
+
parameters: {
|
|
56
|
+
query?: never;
|
|
57
|
+
header?: never;
|
|
58
|
+
path?: never;
|
|
59
|
+
cookie?: never;
|
|
60
|
+
};
|
|
61
|
+
get?: never;
|
|
62
|
+
put?: never;
|
|
63
|
+
/** postUserRegistration */
|
|
64
|
+
post: operations["postUserRegistration"];
|
|
65
|
+
delete?: never;
|
|
66
|
+
options?: never;
|
|
67
|
+
head?: never;
|
|
68
|
+
patch?: never;
|
|
69
|
+
trace?: never;
|
|
70
|
+
};
|
|
38
71
|
"/games/{gameId}": {
|
|
39
72
|
parameters: {
|
|
40
73
|
query?: never;
|
|
@@ -54,6 +87,27 @@ export interface paths {
|
|
|
54
87
|
patch?: never;
|
|
55
88
|
trace?: never;
|
|
56
89
|
};
|
|
90
|
+
"/nearby-games": {
|
|
91
|
+
parameters: {
|
|
92
|
+
query?: never;
|
|
93
|
+
header?: never;
|
|
94
|
+
path?: never;
|
|
95
|
+
cookie?: never;
|
|
96
|
+
};
|
|
97
|
+
/**
|
|
98
|
+
* getNearbyGamesByLocation
|
|
99
|
+
* @deprecated
|
|
100
|
+
* @description Use /location instead
|
|
101
|
+
*/
|
|
102
|
+
get: operations["getNearbyGamesDeprecated"];
|
|
103
|
+
put?: never;
|
|
104
|
+
post?: never;
|
|
105
|
+
delete?: never;
|
|
106
|
+
options?: never;
|
|
107
|
+
head?: never;
|
|
108
|
+
patch?: never;
|
|
109
|
+
trace?: never;
|
|
110
|
+
};
|
|
57
111
|
"/nearby-games/locations": {
|
|
58
112
|
parameters: {
|
|
59
113
|
query?: never;
|
|
@@ -378,6 +432,23 @@ export interface paths {
|
|
|
378
432
|
patch: operations["updateNearbyGamesAlertEnabled"];
|
|
379
433
|
trace?: never;
|
|
380
434
|
};
|
|
435
|
+
"/users/logout": {
|
|
436
|
+
parameters: {
|
|
437
|
+
query?: never;
|
|
438
|
+
header?: never;
|
|
439
|
+
path?: never;
|
|
440
|
+
cookie?: never;
|
|
441
|
+
};
|
|
442
|
+
get?: never;
|
|
443
|
+
put?: never;
|
|
444
|
+
/** logoutUser */
|
|
445
|
+
post: operations["logoutUser"];
|
|
446
|
+
delete?: never;
|
|
447
|
+
options?: never;
|
|
448
|
+
head?: never;
|
|
449
|
+
patch?: never;
|
|
450
|
+
trace?: never;
|
|
451
|
+
};
|
|
381
452
|
"/users/referral": {
|
|
382
453
|
parameters: {
|
|
383
454
|
query?: never;
|
|
@@ -431,6 +502,23 @@ export interface paths {
|
|
|
431
502
|
patch: operations["setMyLanguage"];
|
|
432
503
|
trace?: never;
|
|
433
504
|
};
|
|
505
|
+
"/users/me/stats": {
|
|
506
|
+
parameters: {
|
|
507
|
+
query?: never;
|
|
508
|
+
header?: never;
|
|
509
|
+
path?: never;
|
|
510
|
+
cookie?: never;
|
|
511
|
+
};
|
|
512
|
+
/** getMyUserStats */
|
|
513
|
+
get: operations["getMyUserStats"];
|
|
514
|
+
put?: never;
|
|
515
|
+
post?: never;
|
|
516
|
+
delete?: never;
|
|
517
|
+
options?: never;
|
|
518
|
+
head?: never;
|
|
519
|
+
patch?: never;
|
|
520
|
+
trace?: never;
|
|
521
|
+
};
|
|
434
522
|
"/user-meta/push-notification-enabled": {
|
|
435
523
|
parameters: {
|
|
436
524
|
query?: never;
|
|
@@ -637,23 +725,6 @@ export interface paths {
|
|
|
637
725
|
patch?: never;
|
|
638
726
|
trace?: never;
|
|
639
727
|
};
|
|
640
|
-
"/short-link": {
|
|
641
|
-
parameters: {
|
|
642
|
-
query?: never;
|
|
643
|
-
header?: never;
|
|
644
|
-
path?: never;
|
|
645
|
-
cookie?: never;
|
|
646
|
-
};
|
|
647
|
-
get?: never;
|
|
648
|
-
put?: never;
|
|
649
|
-
/** createShortLink */
|
|
650
|
-
post: operations["createShortLink"];
|
|
651
|
-
delete?: never;
|
|
652
|
-
options?: never;
|
|
653
|
-
head?: never;
|
|
654
|
-
patch?: never;
|
|
655
|
-
trace?: never;
|
|
656
|
-
};
|
|
657
728
|
"/recurring-games": {
|
|
658
729
|
parameters: {
|
|
659
730
|
query?: never;
|
|
@@ -772,6 +843,26 @@ export interface paths {
|
|
|
772
843
|
patch?: never;
|
|
773
844
|
trace?: never;
|
|
774
845
|
};
|
|
846
|
+
"/admin/restore-recurring-game": {
|
|
847
|
+
parameters: {
|
|
848
|
+
query?: never;
|
|
849
|
+
header?: never;
|
|
850
|
+
path?: never;
|
|
851
|
+
cookie?: never;
|
|
852
|
+
};
|
|
853
|
+
get?: never;
|
|
854
|
+
put?: never;
|
|
855
|
+
/**
|
|
856
|
+
* Restore abandoned recurring game
|
|
857
|
+
* @description Creates a new scheduled task to restore an abandoned recurring game by scheduling the next occurrence
|
|
858
|
+
*/
|
|
859
|
+
post: operations["restoreRecurringGame"];
|
|
860
|
+
delete?: never;
|
|
861
|
+
options?: never;
|
|
862
|
+
head?: never;
|
|
863
|
+
patch?: never;
|
|
864
|
+
trace?: never;
|
|
865
|
+
};
|
|
775
866
|
"/admin/adhoc/remove-old-game-chats": {
|
|
776
867
|
parameters: {
|
|
777
868
|
query?: never;
|
|
@@ -840,6 +931,61 @@ export interface paths {
|
|
|
840
931
|
patch?: never;
|
|
841
932
|
trace?: never;
|
|
842
933
|
};
|
|
934
|
+
"/admin/games-for-post-public": {
|
|
935
|
+
parameters: {
|
|
936
|
+
query?: never;
|
|
937
|
+
header?: never;
|
|
938
|
+
path?: never;
|
|
939
|
+
cookie?: never;
|
|
940
|
+
};
|
|
941
|
+
/** getGamesForPostPublic */
|
|
942
|
+
get: operations["getGamesForPostPublic"];
|
|
943
|
+
put?: never;
|
|
944
|
+
post?: never;
|
|
945
|
+
delete?: never;
|
|
946
|
+
options?: never;
|
|
947
|
+
head?: never;
|
|
948
|
+
patch?: never;
|
|
949
|
+
trace?: never;
|
|
950
|
+
};
|
|
951
|
+
"/admin/moderation/game/{gameId}": {
|
|
952
|
+
parameters: {
|
|
953
|
+
query?: never;
|
|
954
|
+
header?: never;
|
|
955
|
+
path: {
|
|
956
|
+
gameId: string;
|
|
957
|
+
};
|
|
958
|
+
cookie?: never;
|
|
959
|
+
};
|
|
960
|
+
get?: never;
|
|
961
|
+
put?: never;
|
|
962
|
+
post?: never;
|
|
963
|
+
/** cancelGameByAdmin */
|
|
964
|
+
delete: operations["cancelGameByAdmin"];
|
|
965
|
+
options?: never;
|
|
966
|
+
head?: never;
|
|
967
|
+
patch?: never;
|
|
968
|
+
trace?: never;
|
|
969
|
+
};
|
|
970
|
+
"/admin/moderation/user/{userId}": {
|
|
971
|
+
parameters: {
|
|
972
|
+
query?: never;
|
|
973
|
+
header?: never;
|
|
974
|
+
path: {
|
|
975
|
+
userId: string;
|
|
976
|
+
};
|
|
977
|
+
cookie?: never;
|
|
978
|
+
};
|
|
979
|
+
get?: never;
|
|
980
|
+
put?: never;
|
|
981
|
+
post?: never;
|
|
982
|
+
/** deleteUserByAdmin */
|
|
983
|
+
delete: operations["deleteUserByAdmin"];
|
|
984
|
+
options?: never;
|
|
985
|
+
head?: never;
|
|
986
|
+
patch?: never;
|
|
987
|
+
trace?: never;
|
|
988
|
+
};
|
|
843
989
|
"/admin/test-notifications/action-push": {
|
|
844
990
|
parameters: {
|
|
845
991
|
query?: never;
|
|
@@ -890,6 +1036,26 @@ export interface paths {
|
|
|
890
1036
|
delete?: never;
|
|
891
1037
|
options?: never;
|
|
892
1038
|
head?: never;
|
|
1039
|
+
/** updateChannelDetails */
|
|
1040
|
+
patch: operations["updateChannelDetails"];
|
|
1041
|
+
trace?: never;
|
|
1042
|
+
};
|
|
1043
|
+
"/chat/channel/{channelId}/members": {
|
|
1044
|
+
parameters: {
|
|
1045
|
+
query?: never;
|
|
1046
|
+
header?: never;
|
|
1047
|
+
path: {
|
|
1048
|
+
channelId: string;
|
|
1049
|
+
};
|
|
1050
|
+
cookie?: never;
|
|
1051
|
+
};
|
|
1052
|
+
/** getChannelMembers */
|
|
1053
|
+
get: operations["getChannelMembers"];
|
|
1054
|
+
put?: never;
|
|
1055
|
+
post?: never;
|
|
1056
|
+
delete?: never;
|
|
1057
|
+
options?: never;
|
|
1058
|
+
head?: never;
|
|
893
1059
|
patch?: never;
|
|
894
1060
|
trace?: never;
|
|
895
1061
|
};
|
|
@@ -980,40 +1146,6 @@ export interface paths {
|
|
|
980
1146
|
patch?: never;
|
|
981
1147
|
trace?: never;
|
|
982
1148
|
};
|
|
983
|
-
"/game-notifications/scheduled-notification": {
|
|
984
|
-
parameters: {
|
|
985
|
-
query?: never;
|
|
986
|
-
header?: never;
|
|
987
|
-
path?: never;
|
|
988
|
-
cookie?: never;
|
|
989
|
-
};
|
|
990
|
-
get?: never;
|
|
991
|
-
put?: never;
|
|
992
|
-
/** process scheduled notification */
|
|
993
|
-
post: operations["processScheduledNotification"];
|
|
994
|
-
delete?: never;
|
|
995
|
-
options?: never;
|
|
996
|
-
head?: never;
|
|
997
|
-
patch?: never;
|
|
998
|
-
trace?: never;
|
|
999
|
-
};
|
|
1000
|
-
"/rating/app": {
|
|
1001
|
-
parameters: {
|
|
1002
|
-
query?: never;
|
|
1003
|
-
header?: never;
|
|
1004
|
-
path?: never;
|
|
1005
|
-
cookie?: never;
|
|
1006
|
-
};
|
|
1007
|
-
get?: never;
|
|
1008
|
-
put?: never;
|
|
1009
|
-
/** create app rating by user */
|
|
1010
|
-
post: operations["createRating"];
|
|
1011
|
-
delete?: never;
|
|
1012
|
-
options?: never;
|
|
1013
|
-
head?: never;
|
|
1014
|
-
patch?: never;
|
|
1015
|
-
trace?: never;
|
|
1016
|
-
};
|
|
1017
1149
|
"/games/{gameId}/player-applications": {
|
|
1018
1150
|
parameters: {
|
|
1019
1151
|
query?: never;
|
|
@@ -1204,6 +1336,40 @@ export interface paths {
|
|
|
1204
1336
|
patch?: never;
|
|
1205
1337
|
trace?: never;
|
|
1206
1338
|
};
|
|
1339
|
+
"/game-notifications/scheduled-notification": {
|
|
1340
|
+
parameters: {
|
|
1341
|
+
query?: never;
|
|
1342
|
+
header?: never;
|
|
1343
|
+
path?: never;
|
|
1344
|
+
cookie?: never;
|
|
1345
|
+
};
|
|
1346
|
+
get?: never;
|
|
1347
|
+
put?: never;
|
|
1348
|
+
/** process scheduled notification */
|
|
1349
|
+
post: operations["processScheduledNotification"];
|
|
1350
|
+
delete?: never;
|
|
1351
|
+
options?: never;
|
|
1352
|
+
head?: never;
|
|
1353
|
+
patch?: never;
|
|
1354
|
+
trace?: never;
|
|
1355
|
+
};
|
|
1356
|
+
"/rating/app": {
|
|
1357
|
+
parameters: {
|
|
1358
|
+
query?: never;
|
|
1359
|
+
header?: never;
|
|
1360
|
+
path?: never;
|
|
1361
|
+
cookie?: never;
|
|
1362
|
+
};
|
|
1363
|
+
get?: never;
|
|
1364
|
+
put?: never;
|
|
1365
|
+
/** create app rating by user */
|
|
1366
|
+
post: operations["createRating"];
|
|
1367
|
+
delete?: never;
|
|
1368
|
+
options?: never;
|
|
1369
|
+
head?: never;
|
|
1370
|
+
patch?: never;
|
|
1371
|
+
trace?: never;
|
|
1372
|
+
};
|
|
1207
1373
|
"/contact/message": {
|
|
1208
1374
|
parameters: {
|
|
1209
1375
|
query?: never;
|
|
@@ -1446,6 +1612,23 @@ export interface paths {
|
|
|
1446
1612
|
patch?: never;
|
|
1447
1613
|
trace?: never;
|
|
1448
1614
|
};
|
|
1615
|
+
"/users/location": {
|
|
1616
|
+
parameters: {
|
|
1617
|
+
query?: never;
|
|
1618
|
+
header?: never;
|
|
1619
|
+
path?: never;
|
|
1620
|
+
cookie?: never;
|
|
1621
|
+
};
|
|
1622
|
+
get?: never;
|
|
1623
|
+
/** updateUserLocation */
|
|
1624
|
+
put: operations["updateUserLocation"];
|
|
1625
|
+
post?: never;
|
|
1626
|
+
delete?: never;
|
|
1627
|
+
options?: never;
|
|
1628
|
+
head?: never;
|
|
1629
|
+
patch?: never;
|
|
1630
|
+
trace?: never;
|
|
1631
|
+
};
|
|
1449
1632
|
"/hosted-games/{hostedGameId}/reassign/create-reassign-token": {
|
|
1450
1633
|
parameters: {
|
|
1451
1634
|
query?: never;
|
|
@@ -1525,12 +1708,12 @@ export interface components {
|
|
|
1525
1708
|
KnownException: KnownException;
|
|
1526
1709
|
MessageForClient: {
|
|
1527
1710
|
/**
|
|
1528
|
-
* @description A title of the error message in
|
|
1711
|
+
* @description A title of the error message in the user's language.
|
|
1529
1712
|
* @example Coś poszło nie tak
|
|
1530
1713
|
*/
|
|
1531
1714
|
title: string;
|
|
1532
1715
|
/**
|
|
1533
|
-
* @description Message for the client in
|
|
1716
|
+
* @description Message for the client in the user's language
|
|
1534
1717
|
* @example Podane dane sa nieprawidłowe. Spróbuj ponownie.
|
|
1535
1718
|
*/
|
|
1536
1719
|
message: string;
|
|
@@ -1545,6 +1728,13 @@ export interface components {
|
|
|
1545
1728
|
context: string;
|
|
1546
1729
|
contextDetails: string;
|
|
1547
1730
|
};
|
|
1731
|
+
UserRegisteredPayloadDto: {
|
|
1732
|
+
uid: string;
|
|
1733
|
+
email?: string;
|
|
1734
|
+
displayName?: string;
|
|
1735
|
+
phoneNumber?: string;
|
|
1736
|
+
photoURL?: string;
|
|
1737
|
+
};
|
|
1548
1738
|
/** @enum {string} */
|
|
1549
1739
|
visibility: Visibility;
|
|
1550
1740
|
HostRatingDto: {
|
|
@@ -1632,11 +1822,6 @@ export interface components {
|
|
|
1632
1822
|
gameContactPhone?: string;
|
|
1633
1823
|
gamePlayers: components["schemas"]["GamePlayerDto"][];
|
|
1634
1824
|
playerApplications: components["schemas"]["GamePlayerApplicationDto"][];
|
|
1635
|
-
/**
|
|
1636
|
-
* @deprecated
|
|
1637
|
-
* @description Use playerApplications instead
|
|
1638
|
-
*/
|
|
1639
|
-
playersApplication: components["schemas"]["GamePlayerApplicationDto"][];
|
|
1640
1825
|
locationType: components["schemas"]["AppGameLocationType"];
|
|
1641
1826
|
/** Format: date-time */
|
|
1642
1827
|
cancelledAt: string | null;
|
|
@@ -1869,6 +2054,12 @@ export interface components {
|
|
|
1869
2054
|
UpdateNearbyGamesEnabledDto: {
|
|
1870
2055
|
isEnabled: boolean;
|
|
1871
2056
|
};
|
|
2057
|
+
LogoutResponseDto: {
|
|
2058
|
+
/** @description Logout success status */
|
|
2059
|
+
success: boolean;
|
|
2060
|
+
/** @description Logout message */
|
|
2061
|
+
message: string;
|
|
2062
|
+
};
|
|
1872
2063
|
PostMyUserReferralDto: {
|
|
1873
2064
|
/** @description Referral user id */
|
|
1874
2065
|
referralId: string | null;
|
|
@@ -1915,6 +2106,11 @@ export interface components {
|
|
|
1915
2106
|
SetLanguageDto: {
|
|
1916
2107
|
language: components["schemas"]["AppLanguage"];
|
|
1917
2108
|
};
|
|
2109
|
+
UserStatsDto: {
|
|
2110
|
+
userId: string;
|
|
2111
|
+
playedGames: number;
|
|
2112
|
+
hostedGames: number;
|
|
2113
|
+
};
|
|
1918
2114
|
UpsertUserMetaBooleanDto: {
|
|
1919
2115
|
value: boolean;
|
|
1920
2116
|
};
|
|
@@ -2613,54 +2809,6 @@ export interface components {
|
|
|
2613
2809
|
gameDateEnd: string;
|
|
2614
2810
|
pendingPlayerApplicationsCount: number;
|
|
2615
2811
|
};
|
|
2616
|
-
AndroidInfo: {
|
|
2617
|
-
/** @description The Android package name */
|
|
2618
|
-
androidPackageName: string;
|
|
2619
|
-
/** @description The fallback link for Android */
|
|
2620
|
-
androidFallbackLink: string;
|
|
2621
|
-
};
|
|
2622
|
-
SocialMetaTagInfo: {
|
|
2623
|
-
/** @description The social title */
|
|
2624
|
-
socialTitle: string;
|
|
2625
|
-
/** @description The social description */
|
|
2626
|
-
socialDescription: string;
|
|
2627
|
-
/** @description The social image link */
|
|
2628
|
-
socialImageLink: string;
|
|
2629
|
-
};
|
|
2630
|
-
DynamicLinkInfo: {
|
|
2631
|
-
/** @description The domain URI prefix */
|
|
2632
|
-
domainUriPrefix: string;
|
|
2633
|
-
/** @description The link */
|
|
2634
|
-
link: string;
|
|
2635
|
-
/** @description Android specific information */
|
|
2636
|
-
androidInfo: components["schemas"]["AndroidInfo"];
|
|
2637
|
-
/** @description The social meta tag information */
|
|
2638
|
-
socialMetaTagInfo: components["schemas"]["SocialMetaTagInfo"];
|
|
2639
|
-
};
|
|
2640
|
-
/**
|
|
2641
|
-
* @description The option for the link suffix
|
|
2642
|
-
* @enum {string}
|
|
2643
|
-
*/
|
|
2644
|
-
LinkSuffixOption: LinkSuffixOption;
|
|
2645
|
-
Suffix: {
|
|
2646
|
-
/** @description The option for the link suffix */
|
|
2647
|
-
option: components["schemas"]["LinkSuffixOption"];
|
|
2648
|
-
};
|
|
2649
|
-
Payload: {
|
|
2650
|
-
/** @description Information about the dynamic link */
|
|
2651
|
-
dynamicLinkInfo: components["schemas"]["DynamicLinkInfo"];
|
|
2652
|
-
/** @description Suffix information */
|
|
2653
|
-
suffix: components["schemas"]["Suffix"];
|
|
2654
|
-
};
|
|
2655
|
-
CreateShortLinkDto: {
|
|
2656
|
-
/** @description The payload containing link information */
|
|
2657
|
-
payload: components["schemas"]["Payload"];
|
|
2658
|
-
/** @description The API key */
|
|
2659
|
-
apiKey: string;
|
|
2660
|
-
};
|
|
2661
|
-
ShortLinkDto: {
|
|
2662
|
-
shortLink: string;
|
|
2663
|
-
};
|
|
2664
2812
|
/** @enum {string} */
|
|
2665
2813
|
userRoleEnum: UserRoleEnum;
|
|
2666
2814
|
AdminUserStatsDto: {
|
|
@@ -2668,6 +2816,10 @@ export interface components {
|
|
|
2668
2816
|
playedGames: number;
|
|
2669
2817
|
gameApplications: number;
|
|
2670
2818
|
};
|
|
2819
|
+
RegionDto: {
|
|
2820
|
+
regionId: string;
|
|
2821
|
+
name: string;
|
|
2822
|
+
};
|
|
2671
2823
|
AdminUserDto: {
|
|
2672
2824
|
userId: string;
|
|
2673
2825
|
name: string;
|
|
@@ -2680,6 +2832,7 @@ export interface components {
|
|
|
2680
2832
|
versionInfo: string | null;
|
|
2681
2833
|
platform: string | null;
|
|
2682
2834
|
stats: components["schemas"]["AdminUserStatsDto"];
|
|
2835
|
+
region: components["schemas"]["RegionDto"] | null;
|
|
2683
2836
|
};
|
|
2684
2837
|
GetAdminUsersDto: {
|
|
2685
2838
|
users: components["schemas"]["AdminUserDto"][];
|
|
@@ -2702,6 +2855,14 @@ export interface components {
|
|
|
2702
2855
|
date: string;
|
|
2703
2856
|
count: number;
|
|
2704
2857
|
};
|
|
2858
|
+
RegionUserStatsDto: {
|
|
2859
|
+
regionName: string;
|
|
2860
|
+
userCount: number;
|
|
2861
|
+
};
|
|
2862
|
+
RegionDailyRegistrationsDto: {
|
|
2863
|
+
regionName: string;
|
|
2864
|
+
dailyRegistrations: components["schemas"]["DailyStatsDto"][];
|
|
2865
|
+
};
|
|
2705
2866
|
GetAdminUsersStatsDto: {
|
|
2706
2867
|
totalUsers: number;
|
|
2707
2868
|
platformStats: components["schemas"]["PlatformStatsDto"][];
|
|
@@ -2709,6 +2870,8 @@ export interface components {
|
|
|
2709
2870
|
platformVersionStats: components["schemas"]["PlatformVersionStatsDto"][];
|
|
2710
2871
|
/** @description Daily user registration counts */
|
|
2711
2872
|
dailyRegistrations: components["schemas"]["DailyStatsDto"][];
|
|
2873
|
+
regionStats: components["schemas"]["RegionUserStatsDto"][];
|
|
2874
|
+
regionDailyRegistrations: components["schemas"]["RegionDailyRegistrationsDto"][];
|
|
2712
2875
|
};
|
|
2713
2876
|
/** @enum {string} */
|
|
2714
2877
|
AdminGameTypeFilter: AdminGameTypeFilter;
|
|
@@ -2748,6 +2911,10 @@ export interface components {
|
|
|
2748
2911
|
cancelledAt: string | null;
|
|
2749
2912
|
cancellationReason: string | null;
|
|
2750
2913
|
isRecurring: boolean;
|
|
2914
|
+
/**
|
|
2915
|
+
* @deprecated
|
|
2916
|
+
* @description Dont use this field, generate link on frontend part.
|
|
2917
|
+
*/
|
|
2751
2918
|
link: string | null;
|
|
2752
2919
|
paymentTypes: components["schemas"]["paymentTypes"][];
|
|
2753
2920
|
gamePlayers: components["schemas"]["AdminGamePlayerDto"][];
|
|
@@ -2792,6 +2959,21 @@ export interface components {
|
|
|
2792
2959
|
GetKnownCitiesForPostDto: {
|
|
2793
2960
|
knownCities: string[];
|
|
2794
2961
|
};
|
|
2962
|
+
RestoreRecurringGameDto: {
|
|
2963
|
+
/**
|
|
2964
|
+
* @description ID of the abandoned recurring game to restore
|
|
2965
|
+
* @example 123e4567-e89b-12d3-a456-426614174000
|
|
2966
|
+
*/
|
|
2967
|
+
gameId: string;
|
|
2968
|
+
};
|
|
2969
|
+
RestoreRecurringGameResponseDto: {
|
|
2970
|
+
/** @description Success status */
|
|
2971
|
+
success: boolean;
|
|
2972
|
+
/** @description Message describing the result */
|
|
2973
|
+
message: string;
|
|
2974
|
+
/** @description ID of the scheduled task created for restoration */
|
|
2975
|
+
scheduledTaskId?: string;
|
|
2976
|
+
};
|
|
2795
2977
|
PostCustomNotificationDto: {
|
|
2796
2978
|
userIds: string[] | null;
|
|
2797
2979
|
test: boolean;
|
|
@@ -2831,9 +3013,21 @@ export interface components {
|
|
|
2831
3013
|
secondUserId: string | null;
|
|
2832
3014
|
teamId: string | null;
|
|
2833
3015
|
};
|
|
3016
|
+
ChannelMemberDto: {
|
|
3017
|
+
userId: string;
|
|
3018
|
+
displayName: string;
|
|
3019
|
+
thumbnail: string | null;
|
|
3020
|
+
role: string;
|
|
3021
|
+
};
|
|
3022
|
+
GetChannelMembersDto: {
|
|
3023
|
+
members: components["schemas"]["ChannelMemberDto"][];
|
|
3024
|
+
};
|
|
2834
3025
|
SetChannelMutedDto: {
|
|
2835
3026
|
isMuted: boolean;
|
|
2836
3027
|
};
|
|
3028
|
+
UpdateChannelDetailsDto: {
|
|
3029
|
+
name: string;
|
|
3030
|
+
};
|
|
2837
3031
|
GetMyChatUserDto: {
|
|
2838
3032
|
chatUserExternalId: string;
|
|
2839
3033
|
token: string | null;
|
|
@@ -2853,17 +3047,6 @@ export interface components {
|
|
|
2853
3047
|
channelExternalId: string;
|
|
2854
3048
|
member: components["schemas"]["SingleChannelMemberDto"];
|
|
2855
3049
|
};
|
|
2856
|
-
CreateAppRatingDto: {
|
|
2857
|
-
/**
|
|
2858
|
-
* @deprecated
|
|
2859
|
-
* @description Use appRate
|
|
2860
|
-
*/
|
|
2861
|
-
rating?: Record<string, never> | null;
|
|
2862
|
-
appRate?: number | null;
|
|
2863
|
-
hostRate?: number | null;
|
|
2864
|
-
comment: string;
|
|
2865
|
-
gameId: string;
|
|
2866
|
-
};
|
|
2867
3050
|
CreatedGamePlayerApplicationDto: {
|
|
2868
3051
|
gamePlayerApplicationId: string;
|
|
2869
3052
|
autoApproved: boolean;
|
|
@@ -2930,6 +3113,17 @@ export interface components {
|
|
|
2930
3113
|
UpdateTeamMemberDto: {
|
|
2931
3114
|
isAutoApproved: boolean;
|
|
2932
3115
|
};
|
|
3116
|
+
CreateAppRatingDto: {
|
|
3117
|
+
/**
|
|
3118
|
+
* @deprecated
|
|
3119
|
+
* @description Use appRate
|
|
3120
|
+
*/
|
|
3121
|
+
rating?: Record<string, never> | null;
|
|
3122
|
+
appRate?: number | null;
|
|
3123
|
+
hostRate?: number | null;
|
|
3124
|
+
comment: string;
|
|
3125
|
+
gameId: string;
|
|
3126
|
+
};
|
|
2933
3127
|
CreateContactMessageDto: {
|
|
2934
3128
|
message: string;
|
|
2935
3129
|
};
|
|
@@ -3022,6 +3216,13 @@ export interface components {
|
|
|
3022
3216
|
users: components["schemas"]["UserRankDto"][];
|
|
3023
3217
|
cached: boolean;
|
|
3024
3218
|
};
|
|
3219
|
+
UpdateUserLocationDto: {
|
|
3220
|
+
coordinates: components["schemas"]["CoordinatesDto"];
|
|
3221
|
+
};
|
|
3222
|
+
UserLocationDto: {
|
|
3223
|
+
coordinates: components["schemas"]["CoordinatesDto"];
|
|
3224
|
+
region: components["schemas"]["RegionDto"] | null;
|
|
3225
|
+
};
|
|
3025
3226
|
CreateReassignTokenResponseDto: {
|
|
3026
3227
|
token: string;
|
|
3027
3228
|
frontendURL: string;
|
|
@@ -3039,6 +3240,7 @@ export interface components {
|
|
|
3039
3240
|
}
|
|
3040
3241
|
export type MessageForClient = components['schemas']['MessageForClient'];
|
|
3041
3242
|
export type ErrorResponse = components['schemas']['ErrorResponse'];
|
|
3243
|
+
export type UserRegisteredPayloadDto = components['schemas']['UserRegisteredPayloadDto'];
|
|
3042
3244
|
export type HostRatingDto = components['schemas']['HostRatingDto'];
|
|
3043
3245
|
export type GameDetailsHostDto = components['schemas']['GameDetailsHostDto'];
|
|
3044
3246
|
export type CoordinatesDto = components['schemas']['CoordinatesDto'];
|
|
@@ -3073,10 +3275,12 @@ export type CreateNearbyGamesAlertDto = components['schemas']['CreateNearbyGames
|
|
|
3073
3275
|
export type GetNearbyGamesAlertDto = components['schemas']['GetNearbyGamesAlertDto'];
|
|
3074
3276
|
export type UpdateNearbyGamesAlertLocationDto = components['schemas']['UpdateNearbyGamesAlertLocationDto'];
|
|
3075
3277
|
export type UpdateNearbyGamesEnabledDto = components['schemas']['UpdateNearbyGamesEnabledDto'];
|
|
3278
|
+
export type LogoutResponseDto = components['schemas']['LogoutResponseDto'];
|
|
3076
3279
|
export type PostMyUserReferralDto = components['schemas']['PostMyUserReferralDto'];
|
|
3077
3280
|
export type MyUserDto = components['schemas']['MyUserDto'];
|
|
3078
3281
|
export type UpdatePartialUserDto = components['schemas']['UpdatePartialUserDto'];
|
|
3079
3282
|
export type SetLanguageDto = components['schemas']['SetLanguageDto'];
|
|
3283
|
+
export type UserStatsDto = components['schemas']['UserStatsDto'];
|
|
3080
3284
|
export type UpsertUserMetaBooleanDto = components['schemas']['UpsertUserMetaBooleanDto'];
|
|
3081
3285
|
export type CreateHostedGameDto = components['schemas']['CreateHostedGameDto'];
|
|
3082
3286
|
export type HostedGameDtoLocation = components['schemas']['HostedGameDtoLocation'];
|
|
@@ -3135,20 +3339,16 @@ export type GetUserNotificationsDto = components['schemas']['GetUserNotification
|
|
|
3135
3339
|
export type MarkNotificationsAsReadDto = components['schemas']['MarkNotificationsAsReadDto'];
|
|
3136
3340
|
export type RegisterDeviceNotificationTokenDto = components['schemas']['RegisterDeviceNotificationTokenDto'];
|
|
3137
3341
|
export type ArrivalDto = components['schemas']['ArrivalDto'];
|
|
3138
|
-
export type AndroidInfo = components['schemas']['AndroidInfo'];
|
|
3139
|
-
export type SocialMetaTagInfo = components['schemas']['SocialMetaTagInfo'];
|
|
3140
|
-
export type DynamicLinkInfo = components['schemas']['DynamicLinkInfo'];
|
|
3141
|
-
export type Suffix = components['schemas']['Suffix'];
|
|
3142
|
-
export type Payload = components['schemas']['Payload'];
|
|
3143
|
-
export type CreateShortLinkDto = components['schemas']['CreateShortLinkDto'];
|
|
3144
|
-
export type ShortLinkDto = components['schemas']['ShortLinkDto'];
|
|
3145
3342
|
export type AdminUserStatsDto = components['schemas']['AdminUserStatsDto'];
|
|
3343
|
+
export type RegionDto = components['schemas']['RegionDto'];
|
|
3146
3344
|
export type AdminUserDto = components['schemas']['AdminUserDto'];
|
|
3147
3345
|
export type GetAdminUsersDto = components['schemas']['GetAdminUsersDto'];
|
|
3148
3346
|
export type PlatformStatsDto = components['schemas']['PlatformStatsDto'];
|
|
3149
3347
|
export type VersionStatsDto = components['schemas']['VersionStatsDto'];
|
|
3150
3348
|
export type PlatformVersionStatsDto = components['schemas']['PlatformVersionStatsDto'];
|
|
3151
3349
|
export type DailyStatsDto = components['schemas']['DailyStatsDto'];
|
|
3350
|
+
export type RegionUserStatsDto = components['schemas']['RegionUserStatsDto'];
|
|
3351
|
+
export type RegionDailyRegistrationsDto = components['schemas']['RegionDailyRegistrationsDto'];
|
|
3152
3352
|
export type GetAdminUsersStatsDto = components['schemas']['GetAdminUsersStatsDto'];
|
|
3153
3353
|
export type AdminGamePlayerDto = components['schemas']['AdminGamePlayerDto'];
|
|
3154
3354
|
export type AdminGameDto = components['schemas']['AdminGameDto'];
|
|
@@ -3159,16 +3359,20 @@ export type GamesByLocation = components['schemas']['GamesByLocation'];
|
|
|
3159
3359
|
export type GetAdminGamesForPostDto = components['schemas']['GetAdminGamesForPostDto'];
|
|
3160
3360
|
export type GetAdminGamesStatsDto = components['schemas']['GetAdminGamesStatsDto'];
|
|
3161
3361
|
export type GetKnownCitiesForPostDto = components['schemas']['GetKnownCitiesForPostDto'];
|
|
3362
|
+
export type RestoreRecurringGameDto = components['schemas']['RestoreRecurringGameDto'];
|
|
3363
|
+
export type RestoreRecurringGameResponseDto = components['schemas']['RestoreRecurringGameResponseDto'];
|
|
3162
3364
|
export type PostCustomNotificationDto = components['schemas']['PostCustomNotificationDto'];
|
|
3163
3365
|
export type TestActionNotificationDto = components['schemas']['TestActionNotificationDto'];
|
|
3164
3366
|
export type ChannelGameDto = components['schemas']['ChannelGameDto'];
|
|
3165
3367
|
export type GetChannelDetailsDto = components['schemas']['GetChannelDetailsDto'];
|
|
3368
|
+
export type ChannelMemberDto = components['schemas']['ChannelMemberDto'];
|
|
3369
|
+
export type GetChannelMembersDto = components['schemas']['GetChannelMembersDto'];
|
|
3166
3370
|
export type SetChannelMutedDto = components['schemas']['SetChannelMutedDto'];
|
|
3371
|
+
export type UpdateChannelDetailsDto = components['schemas']['UpdateChannelDetailsDto'];
|
|
3167
3372
|
export type GetMyChatUserDto = components['schemas']['GetMyChatUserDto'];
|
|
3168
3373
|
export type CreateOrGetSingleChannelDto = components['schemas']['CreateOrGetSingleChannelDto'];
|
|
3169
3374
|
export type SingleChannelMemberDto = components['schemas']['SingleChannelMemberDto'];
|
|
3170
3375
|
export type SingleChannelDto = components['schemas']['SingleChannelDto'];
|
|
3171
|
-
export type CreateAppRatingDto = components['schemas']['CreateAppRatingDto'];
|
|
3172
3376
|
export type CreatedGamePlayerApplicationDto = components['schemas']['CreatedGamePlayerApplicationDto'];
|
|
3173
3377
|
export type RejectManyGamePlayerApplicationsDto = components['schemas']['RejectManyGamePlayerApplicationsDto'];
|
|
3174
3378
|
export type ApproveManyGamePlayerApplicationsDto = components['schemas']['ApproveManyGamePlayerApplicationsDto'];
|
|
@@ -3184,6 +3388,7 @@ export type TeamMemberCandidateDto = components['schemas']['TeamMemberCandidateD
|
|
|
3184
3388
|
export type GetTeamMemberCandidatesDto = components['schemas']['GetTeamMemberCandidatesDto'];
|
|
3185
3389
|
export type CreateTeamMembersDto = components['schemas']['CreateTeamMembersDto'];
|
|
3186
3390
|
export type UpdateTeamMemberDto = components['schemas']['UpdateTeamMemberDto'];
|
|
3391
|
+
export type CreateAppRatingDto = components['schemas']['CreateAppRatingDto'];
|
|
3187
3392
|
export type CreateContactMessageDto = components['schemas']['CreateContactMessageDto'];
|
|
3188
3393
|
export type UserProfileStatsDto = components['schemas']['UserProfileStatsDto'];
|
|
3189
3394
|
export type UserProfileDto = components['schemas']['UserProfileDto'];
|
|
@@ -3199,6 +3404,8 @@ export type UserGameDto = components['schemas']['UserGameDto'];
|
|
|
3199
3404
|
export type GetUserGamesDto = components['schemas']['GetUserGamesDto'];
|
|
3200
3405
|
export type UserRankDto = components['schemas']['UserRankDto'];
|
|
3201
3406
|
export type UsersTopRankDto = components['schemas']['UsersTopRankDto'];
|
|
3407
|
+
export type UpdateUserLocationDto = components['schemas']['UpdateUserLocationDto'];
|
|
3408
|
+
export type UserLocationDto = components['schemas']['UserLocationDto'];
|
|
3202
3409
|
export type CreateReassignTokenResponseDto = components['schemas']['CreateReassignTokenResponseDto'];
|
|
3203
3410
|
export type InactiveUsersNotificationResponseDto = components['schemas']['InactiveUsersNotificationResponseDto'];
|
|
3204
3411
|
export type $defs = Record<string, never>;
|
|
@@ -3269,6 +3476,76 @@ export interface operations {
|
|
|
3269
3476
|
};
|
|
3270
3477
|
};
|
|
3271
3478
|
};
|
|
3479
|
+
getErrorUncaught: {
|
|
3480
|
+
parameters: {
|
|
3481
|
+
query?: never;
|
|
3482
|
+
header?: {
|
|
3483
|
+
/** @description Request trace id for logs */
|
|
3484
|
+
"x-trace-request-id"?: string;
|
|
3485
|
+
/** @description Session trace id for logs */
|
|
3486
|
+
"x-trace-session-id"?: string;
|
|
3487
|
+
/** @description IANA Timezone */
|
|
3488
|
+
"x-timezone"?: string;
|
|
3489
|
+
};
|
|
3490
|
+
path?: never;
|
|
3491
|
+
cookie?: never;
|
|
3492
|
+
};
|
|
3493
|
+
requestBody?: never;
|
|
3494
|
+
responses: {
|
|
3495
|
+
200: {
|
|
3496
|
+
headers: {
|
|
3497
|
+
[name: string]: unknown;
|
|
3498
|
+
};
|
|
3499
|
+
content?: never;
|
|
3500
|
+
};
|
|
3501
|
+
/** @description Application Error */
|
|
3502
|
+
500: {
|
|
3503
|
+
headers: {
|
|
3504
|
+
[name: string]: unknown;
|
|
3505
|
+
};
|
|
3506
|
+
content: {
|
|
3507
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
3508
|
+
};
|
|
3509
|
+
};
|
|
3510
|
+
};
|
|
3511
|
+
};
|
|
3512
|
+
postUserRegistration: {
|
|
3513
|
+
parameters: {
|
|
3514
|
+
query?: never;
|
|
3515
|
+
header?: {
|
|
3516
|
+
/** @description Request trace id for logs */
|
|
3517
|
+
"x-trace-request-id"?: string;
|
|
3518
|
+
/** @description Session trace id for logs */
|
|
3519
|
+
"x-trace-session-id"?: string;
|
|
3520
|
+
/** @description IANA Timezone */
|
|
3521
|
+
"x-timezone"?: string;
|
|
3522
|
+
};
|
|
3523
|
+
path?: never;
|
|
3524
|
+
cookie?: never;
|
|
3525
|
+
};
|
|
3526
|
+
requestBody: {
|
|
3527
|
+
content: {
|
|
3528
|
+
"application/json": components["schemas"]["UserRegisteredPayloadDto"];
|
|
3529
|
+
};
|
|
3530
|
+
};
|
|
3531
|
+
responses: {
|
|
3532
|
+
201: {
|
|
3533
|
+
headers: {
|
|
3534
|
+
[name: string]: unknown;
|
|
3535
|
+
};
|
|
3536
|
+
content?: never;
|
|
3537
|
+
};
|
|
3538
|
+
/** @description Application Error */
|
|
3539
|
+
500: {
|
|
3540
|
+
headers: {
|
|
3541
|
+
[name: string]: unknown;
|
|
3542
|
+
};
|
|
3543
|
+
content: {
|
|
3544
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
3545
|
+
};
|
|
3546
|
+
};
|
|
3547
|
+
};
|
|
3548
|
+
};
|
|
3272
3549
|
getGameById: {
|
|
3273
3550
|
parameters: {
|
|
3274
3551
|
query?: never;
|
|
@@ -3306,6 +3583,49 @@ export interface operations {
|
|
|
3306
3583
|
};
|
|
3307
3584
|
};
|
|
3308
3585
|
};
|
|
3586
|
+
getNearbyGamesDeprecated: {
|
|
3587
|
+
parameters: {
|
|
3588
|
+
query?: {
|
|
3589
|
+
longitude?: string;
|
|
3590
|
+
latitude?: string;
|
|
3591
|
+
maxDistanceMeters?: string;
|
|
3592
|
+
gameLevel?: components["schemas"]["gameLevelEnum"][];
|
|
3593
|
+
locationType?: components["schemas"]["AppGameLocationType"][];
|
|
3594
|
+
specificDate?: string;
|
|
3595
|
+
/** @description Show private games, available only for admins. */
|
|
3596
|
+
showPrivate?: string;
|
|
3597
|
+
};
|
|
3598
|
+
header: {
|
|
3599
|
+
"x-timezone": string;
|
|
3600
|
+
/** @description Request trace id for logs */
|
|
3601
|
+
"x-trace-request-id"?: string;
|
|
3602
|
+
/** @description Session trace id for logs */
|
|
3603
|
+
"x-trace-session-id"?: string;
|
|
3604
|
+
};
|
|
3605
|
+
path?: never;
|
|
3606
|
+
cookie?: never;
|
|
3607
|
+
};
|
|
3608
|
+
requestBody?: never;
|
|
3609
|
+
responses: {
|
|
3610
|
+
200: {
|
|
3611
|
+
headers: {
|
|
3612
|
+
[name: string]: unknown;
|
|
3613
|
+
};
|
|
3614
|
+
content: {
|
|
3615
|
+
"application/json": components["schemas"]["NearbyGamesByLocationDto"];
|
|
3616
|
+
};
|
|
3617
|
+
};
|
|
3618
|
+
/** @description Application Error */
|
|
3619
|
+
500: {
|
|
3620
|
+
headers: {
|
|
3621
|
+
[name: string]: unknown;
|
|
3622
|
+
};
|
|
3623
|
+
content: {
|
|
3624
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
3625
|
+
};
|
|
3626
|
+
};
|
|
3627
|
+
};
|
|
3628
|
+
};
|
|
3309
3629
|
getNearbyGamesByLocation: {
|
|
3310
3630
|
parameters: {
|
|
3311
3631
|
query?: {
|
|
@@ -4118,6 +4438,42 @@ export interface operations {
|
|
|
4118
4438
|
};
|
|
4119
4439
|
};
|
|
4120
4440
|
};
|
|
4441
|
+
logoutUser: {
|
|
4442
|
+
parameters: {
|
|
4443
|
+
query?: never;
|
|
4444
|
+
header: {
|
|
4445
|
+
Authorization: string;
|
|
4446
|
+
/** @description Request trace id for logs */
|
|
4447
|
+
"x-trace-request-id"?: string;
|
|
4448
|
+
/** @description Session trace id for logs */
|
|
4449
|
+
"x-trace-session-id"?: string;
|
|
4450
|
+
/** @description IANA Timezone */
|
|
4451
|
+
"x-timezone"?: string;
|
|
4452
|
+
};
|
|
4453
|
+
path?: never;
|
|
4454
|
+
cookie?: never;
|
|
4455
|
+
};
|
|
4456
|
+
requestBody?: never;
|
|
4457
|
+
responses: {
|
|
4458
|
+
200: {
|
|
4459
|
+
headers: {
|
|
4460
|
+
[name: string]: unknown;
|
|
4461
|
+
};
|
|
4462
|
+
content: {
|
|
4463
|
+
"application/json": components["schemas"]["LogoutResponseDto"];
|
|
4464
|
+
};
|
|
4465
|
+
};
|
|
4466
|
+
/** @description Application Error */
|
|
4467
|
+
500: {
|
|
4468
|
+
headers: {
|
|
4469
|
+
[name: string]: unknown;
|
|
4470
|
+
};
|
|
4471
|
+
content: {
|
|
4472
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
4473
|
+
};
|
|
4474
|
+
};
|
|
4475
|
+
};
|
|
4476
|
+
};
|
|
4121
4477
|
postMyUserReferral: {
|
|
4122
4478
|
parameters: {
|
|
4123
4479
|
query?: never;
|
|
@@ -4303,6 +4659,41 @@ export interface operations {
|
|
|
4303
4659
|
};
|
|
4304
4660
|
};
|
|
4305
4661
|
};
|
|
4662
|
+
getMyUserStats: {
|
|
4663
|
+
parameters: {
|
|
4664
|
+
query?: never;
|
|
4665
|
+
header?: {
|
|
4666
|
+
/** @description Request trace id for logs */
|
|
4667
|
+
"x-trace-request-id"?: string;
|
|
4668
|
+
/** @description Session trace id for logs */
|
|
4669
|
+
"x-trace-session-id"?: string;
|
|
4670
|
+
/** @description IANA Timezone */
|
|
4671
|
+
"x-timezone"?: string;
|
|
4672
|
+
};
|
|
4673
|
+
path?: never;
|
|
4674
|
+
cookie?: never;
|
|
4675
|
+
};
|
|
4676
|
+
requestBody?: never;
|
|
4677
|
+
responses: {
|
|
4678
|
+
200: {
|
|
4679
|
+
headers: {
|
|
4680
|
+
[name: string]: unknown;
|
|
4681
|
+
};
|
|
4682
|
+
content: {
|
|
4683
|
+
"application/json": components["schemas"]["UserStatsDto"];
|
|
4684
|
+
};
|
|
4685
|
+
};
|
|
4686
|
+
/** @description Application Error */
|
|
4687
|
+
500: {
|
|
4688
|
+
headers: {
|
|
4689
|
+
[name: string]: unknown;
|
|
4690
|
+
};
|
|
4691
|
+
content: {
|
|
4692
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
4693
|
+
};
|
|
4694
|
+
};
|
|
4695
|
+
};
|
|
4696
|
+
};
|
|
4306
4697
|
upsertUserMetaPushNotificationEnabledValue: {
|
|
4307
4698
|
parameters: {
|
|
4308
4699
|
query?: never;
|
|
@@ -4868,10 +5259,11 @@ export interface operations {
|
|
|
4868
5259
|
};
|
|
4869
5260
|
};
|
|
4870
5261
|
};
|
|
4871
|
-
|
|
5262
|
+
createRecurringGame: {
|
|
4872
5263
|
parameters: {
|
|
4873
5264
|
query?: never;
|
|
4874
|
-
header
|
|
5265
|
+
header: {
|
|
5266
|
+
"x-api-key": string;
|
|
4875
5267
|
/** @description Request trace id for logs */
|
|
4876
5268
|
"x-trace-request-id"?: string;
|
|
4877
5269
|
/** @description Session trace id for logs */
|
|
@@ -4882,19 +5274,13 @@ export interface operations {
|
|
|
4882
5274
|
path?: never;
|
|
4883
5275
|
cookie?: never;
|
|
4884
5276
|
};
|
|
4885
|
-
requestBody
|
|
4886
|
-
content: {
|
|
4887
|
-
"application/json": components["schemas"]["CreateShortLinkDto"];
|
|
4888
|
-
};
|
|
4889
|
-
};
|
|
5277
|
+
requestBody?: never;
|
|
4890
5278
|
responses: {
|
|
4891
|
-
|
|
5279
|
+
201: {
|
|
4892
5280
|
headers: {
|
|
4893
5281
|
[name: string]: unknown;
|
|
4894
5282
|
};
|
|
4895
|
-
content
|
|
4896
|
-
"application/json": components["schemas"]["ShortLinkDto"];
|
|
4897
|
-
};
|
|
5283
|
+
content?: never;
|
|
4898
5284
|
};
|
|
4899
5285
|
/** @description Application Error */
|
|
4900
5286
|
500: {
|
|
@@ -4907,11 +5293,13 @@ export interface operations {
|
|
|
4907
5293
|
};
|
|
4908
5294
|
};
|
|
4909
5295
|
};
|
|
4910
|
-
|
|
5296
|
+
getUsers: {
|
|
4911
5297
|
parameters: {
|
|
4912
|
-
query?:
|
|
4913
|
-
|
|
4914
|
-
|
|
5298
|
+
query?: {
|
|
5299
|
+
/** @description Search term to filter users by name, surname, email, userId, or phone number */
|
|
5300
|
+
search?: string;
|
|
5301
|
+
};
|
|
5302
|
+
header?: {
|
|
4915
5303
|
/** @description Request trace id for logs */
|
|
4916
5304
|
"x-trace-request-id"?: string;
|
|
4917
5305
|
/** @description Session trace id for logs */
|
|
@@ -4924,43 +5312,7 @@ export interface operations {
|
|
|
4924
5312
|
};
|
|
4925
5313
|
requestBody?: never;
|
|
4926
5314
|
responses: {
|
|
4927
|
-
|
|
4928
|
-
headers: {
|
|
4929
|
-
[name: string]: unknown;
|
|
4930
|
-
};
|
|
4931
|
-
content?: never;
|
|
4932
|
-
};
|
|
4933
|
-
/** @description Application Error */
|
|
4934
|
-
500: {
|
|
4935
|
-
headers: {
|
|
4936
|
-
[name: string]: unknown;
|
|
4937
|
-
};
|
|
4938
|
-
content: {
|
|
4939
|
-
"application/json": components["schemas"]["ErrorResponse"];
|
|
4940
|
-
};
|
|
4941
|
-
};
|
|
4942
|
-
};
|
|
4943
|
-
};
|
|
4944
|
-
getUsers: {
|
|
4945
|
-
parameters: {
|
|
4946
|
-
query?: {
|
|
4947
|
-
/** @description Search term to filter users by name, surname, email, userId, or phone number */
|
|
4948
|
-
search?: string;
|
|
4949
|
-
};
|
|
4950
|
-
header?: {
|
|
4951
|
-
/** @description Request trace id for logs */
|
|
4952
|
-
"x-trace-request-id"?: string;
|
|
4953
|
-
/** @description Session trace id for logs */
|
|
4954
|
-
"x-trace-session-id"?: string;
|
|
4955
|
-
/** @description IANA Timezone */
|
|
4956
|
-
"x-timezone"?: string;
|
|
4957
|
-
};
|
|
4958
|
-
path?: never;
|
|
4959
|
-
cookie?: never;
|
|
4960
|
-
};
|
|
4961
|
-
requestBody?: never;
|
|
4962
|
-
responses: {
|
|
4963
|
-
200: {
|
|
5315
|
+
200: {
|
|
4964
5316
|
headers: {
|
|
4965
5317
|
[name: string]: unknown;
|
|
4966
5318
|
};
|
|
@@ -5184,6 +5536,45 @@ export interface operations {
|
|
|
5184
5536
|
};
|
|
5185
5537
|
};
|
|
5186
5538
|
};
|
|
5539
|
+
restoreRecurringGame: {
|
|
5540
|
+
parameters: {
|
|
5541
|
+
query?: never;
|
|
5542
|
+
header?: {
|
|
5543
|
+
/** @description Request trace id for logs */
|
|
5544
|
+
"x-trace-request-id"?: string;
|
|
5545
|
+
/** @description Session trace id for logs */
|
|
5546
|
+
"x-trace-session-id"?: string;
|
|
5547
|
+
/** @description IANA Timezone */
|
|
5548
|
+
"x-timezone"?: string;
|
|
5549
|
+
};
|
|
5550
|
+
path?: never;
|
|
5551
|
+
cookie?: never;
|
|
5552
|
+
};
|
|
5553
|
+
requestBody: {
|
|
5554
|
+
content: {
|
|
5555
|
+
"application/json": components["schemas"]["RestoreRecurringGameDto"];
|
|
5556
|
+
};
|
|
5557
|
+
};
|
|
5558
|
+
responses: {
|
|
5559
|
+
200: {
|
|
5560
|
+
headers: {
|
|
5561
|
+
[name: string]: unknown;
|
|
5562
|
+
};
|
|
5563
|
+
content: {
|
|
5564
|
+
"application/json": components["schemas"]["RestoreRecurringGameResponseDto"];
|
|
5565
|
+
};
|
|
5566
|
+
};
|
|
5567
|
+
/** @description Application Error */
|
|
5568
|
+
500: {
|
|
5569
|
+
headers: {
|
|
5570
|
+
[name: string]: unknown;
|
|
5571
|
+
};
|
|
5572
|
+
content: {
|
|
5573
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
5574
|
+
};
|
|
5575
|
+
};
|
|
5576
|
+
};
|
|
5577
|
+
};
|
|
5187
5578
|
removeOldGameChats: {
|
|
5188
5579
|
parameters: {
|
|
5189
5580
|
query?: {
|
|
@@ -5329,6 +5720,113 @@ export interface operations {
|
|
|
5329
5720
|
};
|
|
5330
5721
|
};
|
|
5331
5722
|
};
|
|
5723
|
+
getGamesForPostPublic: {
|
|
5724
|
+
parameters: {
|
|
5725
|
+
query?: {
|
|
5726
|
+
/** @description City name to filter games by. Possible values: */
|
|
5727
|
+
city?: string;
|
|
5728
|
+
/** @description It overrides default for city */
|
|
5729
|
+
radiusInKM?: string;
|
|
5730
|
+
/** @description Default true. If false, only games with free slots will be returned */
|
|
5731
|
+
returnFullGames?: unknown;
|
|
5732
|
+
/** @description Default 3. Games will be fetched from gameStartDaysOffset to gameStartDaysOffset+gameEndDaysOffset */
|
|
5733
|
+
gameEndDaysOffset?: unknown;
|
|
5734
|
+
};
|
|
5735
|
+
header?: {
|
|
5736
|
+
/** @description Request trace id for logs */
|
|
5737
|
+
"x-trace-request-id"?: string;
|
|
5738
|
+
/** @description Session trace id for logs */
|
|
5739
|
+
"x-trace-session-id"?: string;
|
|
5740
|
+
/** @description IANA Timezone */
|
|
5741
|
+
"x-timezone"?: string;
|
|
5742
|
+
};
|
|
5743
|
+
path?: never;
|
|
5744
|
+
cookie?: never;
|
|
5745
|
+
};
|
|
5746
|
+
requestBody?: never;
|
|
5747
|
+
responses: {
|
|
5748
|
+
200: {
|
|
5749
|
+
headers: {
|
|
5750
|
+
[name: string]: unknown;
|
|
5751
|
+
};
|
|
5752
|
+
content: {
|
|
5753
|
+
"application/json": components["schemas"]["GetAdminGamesForPostDto"];
|
|
5754
|
+
};
|
|
5755
|
+
};
|
|
5756
|
+
/** @description Application Error */
|
|
5757
|
+
500: {
|
|
5758
|
+
headers: {
|
|
5759
|
+
[name: string]: unknown;
|
|
5760
|
+
};
|
|
5761
|
+
content: {
|
|
5762
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
5763
|
+
};
|
|
5764
|
+
};
|
|
5765
|
+
};
|
|
5766
|
+
};
|
|
5767
|
+
cancelGameByAdmin: {
|
|
5768
|
+
parameters: {
|
|
5769
|
+
query?: {
|
|
5770
|
+
cancellationReason?: string;
|
|
5771
|
+
};
|
|
5772
|
+
header?: {
|
|
5773
|
+
/** @description Request trace id for logs */
|
|
5774
|
+
"x-trace-request-id"?: string;
|
|
5775
|
+
/** @description Session trace id for logs */
|
|
5776
|
+
"x-trace-session-id"?: string;
|
|
5777
|
+
/** @description IANA Timezone */
|
|
5778
|
+
"x-timezone"?: string;
|
|
5779
|
+
};
|
|
5780
|
+
path: {
|
|
5781
|
+
gameId: string;
|
|
5782
|
+
};
|
|
5783
|
+
cookie?: never;
|
|
5784
|
+
};
|
|
5785
|
+
requestBody?: never;
|
|
5786
|
+
responses: {
|
|
5787
|
+
200: {
|
|
5788
|
+
headers: {
|
|
5789
|
+
[name: string]: unknown;
|
|
5790
|
+
};
|
|
5791
|
+
content?: never;
|
|
5792
|
+
};
|
|
5793
|
+
/** @description Application Error */
|
|
5794
|
+
500: {
|
|
5795
|
+
headers: {
|
|
5796
|
+
[name: string]: unknown;
|
|
5797
|
+
};
|
|
5798
|
+
content: {
|
|
5799
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
5800
|
+
};
|
|
5801
|
+
};
|
|
5802
|
+
};
|
|
5803
|
+
};
|
|
5804
|
+
deleteUserByAdmin: {
|
|
5805
|
+
parameters: {
|
|
5806
|
+
query?: never;
|
|
5807
|
+
header?: {
|
|
5808
|
+
/** @description Request trace id for logs */
|
|
5809
|
+
"x-trace-request-id"?: string;
|
|
5810
|
+
/** @description Session trace id for logs */
|
|
5811
|
+
"x-trace-session-id"?: string;
|
|
5812
|
+
/** @description IANA Timezone */
|
|
5813
|
+
"x-timezone"?: string;
|
|
5814
|
+
};
|
|
5815
|
+
path: {
|
|
5816
|
+
userId: string;
|
|
5817
|
+
};
|
|
5818
|
+
cookie?: never;
|
|
5819
|
+
};
|
|
5820
|
+
requestBody?: never;
|
|
5821
|
+
responses: {
|
|
5822
|
+
200: {
|
|
5823
|
+
headers: {
|
|
5824
|
+
[name: string]: unknown;
|
|
5825
|
+
};
|
|
5826
|
+
content?: never;
|
|
5827
|
+
};
|
|
5828
|
+
};
|
|
5829
|
+
};
|
|
5332
5830
|
testActionNotification: {
|
|
5333
5831
|
parameters: {
|
|
5334
5832
|
query?: never;
|
|
@@ -5443,7 +5941,7 @@ export interface operations {
|
|
|
5443
5941
|
};
|
|
5444
5942
|
};
|
|
5445
5943
|
};
|
|
5446
|
-
|
|
5944
|
+
updateChannelDetails: {
|
|
5447
5945
|
parameters: {
|
|
5448
5946
|
query?: never;
|
|
5449
5947
|
header?: {
|
|
@@ -5461,7 +5959,7 @@ export interface operations {
|
|
|
5461
5959
|
};
|
|
5462
5960
|
requestBody: {
|
|
5463
5961
|
content: {
|
|
5464
|
-
"application/json": components["schemas"]["
|
|
5962
|
+
"application/json": components["schemas"]["UpdateChannelDetailsDto"];
|
|
5465
5963
|
};
|
|
5466
5964
|
};
|
|
5467
5965
|
responses: {
|
|
@@ -5482,7 +5980,7 @@ export interface operations {
|
|
|
5482
5980
|
};
|
|
5483
5981
|
};
|
|
5484
5982
|
};
|
|
5485
|
-
|
|
5983
|
+
getChannelMembers: {
|
|
5486
5984
|
parameters: {
|
|
5487
5985
|
query?: never;
|
|
5488
5986
|
header?: {
|
|
@@ -5493,7 +5991,9 @@ export interface operations {
|
|
|
5493
5991
|
/** @description IANA Timezone */
|
|
5494
5992
|
"x-timezone"?: string;
|
|
5495
5993
|
};
|
|
5496
|
-
path
|
|
5994
|
+
path: {
|
|
5995
|
+
channelId: string;
|
|
5996
|
+
};
|
|
5497
5997
|
cookie?: never;
|
|
5498
5998
|
};
|
|
5499
5999
|
requestBody?: never;
|
|
@@ -5503,7 +6003,7 @@ export interface operations {
|
|
|
5503
6003
|
[name: string]: unknown;
|
|
5504
6004
|
};
|
|
5505
6005
|
content: {
|
|
5506
|
-
"application/json": components["schemas"]["
|
|
6006
|
+
"application/json": components["schemas"]["GetChannelMembersDto"];
|
|
5507
6007
|
};
|
|
5508
6008
|
};
|
|
5509
6009
|
/** @description Application Error */
|
|
@@ -5517,7 +6017,7 @@ export interface operations {
|
|
|
5517
6017
|
};
|
|
5518
6018
|
};
|
|
5519
6019
|
};
|
|
5520
|
-
|
|
6020
|
+
muteChannel: {
|
|
5521
6021
|
parameters: {
|
|
5522
6022
|
query?: never;
|
|
5523
6023
|
header?: {
|
|
@@ -5528,12 +6028,18 @@ export interface operations {
|
|
|
5528
6028
|
/** @description IANA Timezone */
|
|
5529
6029
|
"x-timezone"?: string;
|
|
5530
6030
|
};
|
|
5531
|
-
path
|
|
6031
|
+
path: {
|
|
6032
|
+
channelId: string;
|
|
6033
|
+
};
|
|
5532
6034
|
cookie?: never;
|
|
5533
6035
|
};
|
|
5534
|
-
requestBody
|
|
6036
|
+
requestBody: {
|
|
6037
|
+
content: {
|
|
6038
|
+
"application/json": components["schemas"]["SetChannelMutedDto"];
|
|
6039
|
+
};
|
|
6040
|
+
};
|
|
5535
6041
|
responses: {
|
|
5536
|
-
|
|
6042
|
+
200: {
|
|
5537
6043
|
headers: {
|
|
5538
6044
|
[name: string]: unknown;
|
|
5539
6045
|
};
|
|
@@ -5550,7 +6056,7 @@ export interface operations {
|
|
|
5550
6056
|
};
|
|
5551
6057
|
};
|
|
5552
6058
|
};
|
|
5553
|
-
|
|
6059
|
+
getMyChatUser: {
|
|
5554
6060
|
parameters: {
|
|
5555
6061
|
query?: never;
|
|
5556
6062
|
header?: {
|
|
@@ -5564,37 +6070,30 @@ export interface operations {
|
|
|
5564
6070
|
path?: never;
|
|
5565
6071
|
cookie?: never;
|
|
5566
6072
|
};
|
|
5567
|
-
requestBody
|
|
5568
|
-
content: {
|
|
5569
|
-
"application/json": components["schemas"]["CreateOrGetSingleChannelDto"];
|
|
5570
|
-
};
|
|
5571
|
-
};
|
|
6073
|
+
requestBody?: never;
|
|
5572
6074
|
responses: {
|
|
5573
|
-
|
|
5574
|
-
500: {
|
|
6075
|
+
200: {
|
|
5575
6076
|
headers: {
|
|
5576
6077
|
[name: string]: unknown;
|
|
5577
6078
|
};
|
|
5578
6079
|
content: {
|
|
5579
|
-
"application/json": components["schemas"]["
|
|
6080
|
+
"application/json": components["schemas"]["GetMyChatUserDto"];
|
|
5580
6081
|
};
|
|
5581
6082
|
};
|
|
5582
|
-
|
|
6083
|
+
/** @description Application Error */
|
|
6084
|
+
500: {
|
|
5583
6085
|
headers: {
|
|
5584
6086
|
[name: string]: unknown;
|
|
5585
6087
|
};
|
|
5586
6088
|
content: {
|
|
5587
|
-
"application/json": components["schemas"]["
|
|
6089
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
5588
6090
|
};
|
|
5589
6091
|
};
|
|
5590
6092
|
};
|
|
5591
6093
|
};
|
|
5592
|
-
|
|
6094
|
+
postChatWebook: {
|
|
5593
6095
|
parameters: {
|
|
5594
|
-
query
|
|
5595
|
-
"api-key": string;
|
|
5596
|
-
remove?: string;
|
|
5597
|
-
};
|
|
6096
|
+
query?: never;
|
|
5598
6097
|
header?: {
|
|
5599
6098
|
/** @description Request trace id for logs */
|
|
5600
6099
|
"x-trace-request-id"?: string;
|
|
@@ -5614,13 +6113,21 @@ export interface operations {
|
|
|
5614
6113
|
};
|
|
5615
6114
|
content?: never;
|
|
5616
6115
|
};
|
|
6116
|
+
/** @description Application Error */
|
|
6117
|
+
500: {
|
|
6118
|
+
headers: {
|
|
6119
|
+
[name: string]: unknown;
|
|
6120
|
+
};
|
|
6121
|
+
content: {
|
|
6122
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
6123
|
+
};
|
|
6124
|
+
};
|
|
5617
6125
|
};
|
|
5618
6126
|
};
|
|
5619
|
-
|
|
6127
|
+
createOrGetSingleChannel: {
|
|
5620
6128
|
parameters: {
|
|
5621
6129
|
query?: never;
|
|
5622
|
-
header
|
|
5623
|
-
"x-api-key": string;
|
|
6130
|
+
header?: {
|
|
5624
6131
|
/** @description Request trace id for logs */
|
|
5625
6132
|
"x-trace-request-id"?: string;
|
|
5626
6133
|
/** @description Session trace id for logs */
|
|
@@ -5631,28 +6138,37 @@ export interface operations {
|
|
|
5631
6138
|
path?: never;
|
|
5632
6139
|
cookie?: never;
|
|
5633
6140
|
};
|
|
5634
|
-
requestBody
|
|
6141
|
+
requestBody: {
|
|
6142
|
+
content: {
|
|
6143
|
+
"application/json": components["schemas"]["CreateOrGetSingleChannelDto"];
|
|
6144
|
+
};
|
|
6145
|
+
};
|
|
5635
6146
|
responses: {
|
|
5636
|
-
|
|
6147
|
+
/** @description Application Error */
|
|
6148
|
+
500: {
|
|
5637
6149
|
headers: {
|
|
5638
6150
|
[name: string]: unknown;
|
|
5639
6151
|
};
|
|
5640
|
-
content
|
|
6152
|
+
content: {
|
|
6153
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
6154
|
+
};
|
|
5641
6155
|
};
|
|
5642
|
-
|
|
5643
|
-
500: {
|
|
6156
|
+
default: {
|
|
5644
6157
|
headers: {
|
|
5645
6158
|
[name: string]: unknown;
|
|
5646
6159
|
};
|
|
5647
6160
|
content: {
|
|
5648
|
-
"application/json": components["schemas"]["
|
|
6161
|
+
"application/json": components["schemas"]["SingleChannelDto"];
|
|
5649
6162
|
};
|
|
5650
6163
|
};
|
|
5651
6164
|
};
|
|
5652
6165
|
};
|
|
5653
|
-
|
|
6166
|
+
cleanupUnreadMessages: {
|
|
5654
6167
|
parameters: {
|
|
5655
|
-
query
|
|
6168
|
+
query: {
|
|
6169
|
+
"api-key": string;
|
|
6170
|
+
remove?: string;
|
|
6171
|
+
};
|
|
5656
6172
|
header?: {
|
|
5657
6173
|
/** @description Request trace id for logs */
|
|
5658
6174
|
"x-trace-request-id"?: string;
|
|
@@ -5664,28 +6180,14 @@ export interface operations {
|
|
|
5664
6180
|
path?: never;
|
|
5665
6181
|
cookie?: never;
|
|
5666
6182
|
};
|
|
5667
|
-
requestBody
|
|
5668
|
-
content: {
|
|
5669
|
-
"application/json": components["schemas"]["CreateAppRatingDto"];
|
|
5670
|
-
};
|
|
5671
|
-
};
|
|
6183
|
+
requestBody?: never;
|
|
5672
6184
|
responses: {
|
|
5673
|
-
|
|
5674
|
-
400: {
|
|
6185
|
+
201: {
|
|
5675
6186
|
headers: {
|
|
5676
6187
|
[name: string]: unknown;
|
|
5677
6188
|
};
|
|
5678
6189
|
content?: never;
|
|
5679
6190
|
};
|
|
5680
|
-
/** @description Application Error */
|
|
5681
|
-
500: {
|
|
5682
|
-
headers: {
|
|
5683
|
-
[name: string]: unknown;
|
|
5684
|
-
};
|
|
5685
|
-
content: {
|
|
5686
|
-
"application/json": components["schemas"]["ErrorResponse"];
|
|
5687
|
-
};
|
|
5688
|
-
};
|
|
5689
6191
|
};
|
|
5690
6192
|
};
|
|
5691
6193
|
postGameApplication: {
|
|
@@ -6256,6 +6758,78 @@ export interface operations {
|
|
|
6256
6758
|
};
|
|
6257
6759
|
};
|
|
6258
6760
|
};
|
|
6761
|
+
processScheduledNotification: {
|
|
6762
|
+
parameters: {
|
|
6763
|
+
query?: never;
|
|
6764
|
+
header: {
|
|
6765
|
+
"x-api-key": string;
|
|
6766
|
+
/** @description Request trace id for logs */
|
|
6767
|
+
"x-trace-request-id"?: string;
|
|
6768
|
+
/** @description Session trace id for logs */
|
|
6769
|
+
"x-trace-session-id"?: string;
|
|
6770
|
+
/** @description IANA Timezone */
|
|
6771
|
+
"x-timezone"?: string;
|
|
6772
|
+
};
|
|
6773
|
+
path?: never;
|
|
6774
|
+
cookie?: never;
|
|
6775
|
+
};
|
|
6776
|
+
requestBody?: never;
|
|
6777
|
+
responses: {
|
|
6778
|
+
201: {
|
|
6779
|
+
headers: {
|
|
6780
|
+
[name: string]: unknown;
|
|
6781
|
+
};
|
|
6782
|
+
content?: never;
|
|
6783
|
+
};
|
|
6784
|
+
/** @description Application Error */
|
|
6785
|
+
500: {
|
|
6786
|
+
headers: {
|
|
6787
|
+
[name: string]: unknown;
|
|
6788
|
+
};
|
|
6789
|
+
content: {
|
|
6790
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
6791
|
+
};
|
|
6792
|
+
};
|
|
6793
|
+
};
|
|
6794
|
+
};
|
|
6795
|
+
createRating: {
|
|
6796
|
+
parameters: {
|
|
6797
|
+
query?: never;
|
|
6798
|
+
header?: {
|
|
6799
|
+
/** @description Request trace id for logs */
|
|
6800
|
+
"x-trace-request-id"?: string;
|
|
6801
|
+
/** @description Session trace id for logs */
|
|
6802
|
+
"x-trace-session-id"?: string;
|
|
6803
|
+
/** @description IANA Timezone */
|
|
6804
|
+
"x-timezone"?: string;
|
|
6805
|
+
};
|
|
6806
|
+
path?: never;
|
|
6807
|
+
cookie?: never;
|
|
6808
|
+
};
|
|
6809
|
+
requestBody: {
|
|
6810
|
+
content: {
|
|
6811
|
+
"application/json": components["schemas"]["CreateAppRatingDto"];
|
|
6812
|
+
};
|
|
6813
|
+
};
|
|
6814
|
+
responses: {
|
|
6815
|
+
/** @description CannotCreateRatingAlreadyExists */
|
|
6816
|
+
400: {
|
|
6817
|
+
headers: {
|
|
6818
|
+
[name: string]: unknown;
|
|
6819
|
+
};
|
|
6820
|
+
content?: never;
|
|
6821
|
+
};
|
|
6822
|
+
/** @description Application Error */
|
|
6823
|
+
500: {
|
|
6824
|
+
headers: {
|
|
6825
|
+
[name: string]: unknown;
|
|
6826
|
+
};
|
|
6827
|
+
content: {
|
|
6828
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
6829
|
+
};
|
|
6830
|
+
};
|
|
6831
|
+
};
|
|
6832
|
+
};
|
|
6259
6833
|
createContactMessage: {
|
|
6260
6834
|
parameters: {
|
|
6261
6835
|
query?: never;
|
|
@@ -6732,6 +7306,45 @@ export interface operations {
|
|
|
6732
7306
|
};
|
|
6733
7307
|
};
|
|
6734
7308
|
};
|
|
7309
|
+
updateUserLocation: {
|
|
7310
|
+
parameters: {
|
|
7311
|
+
query?: never;
|
|
7312
|
+
header?: {
|
|
7313
|
+
/** @description Request trace id for logs */
|
|
7314
|
+
"x-trace-request-id"?: string;
|
|
7315
|
+
/** @description Session trace id for logs */
|
|
7316
|
+
"x-trace-session-id"?: string;
|
|
7317
|
+
/** @description IANA Timezone */
|
|
7318
|
+
"x-timezone"?: string;
|
|
7319
|
+
};
|
|
7320
|
+
path?: never;
|
|
7321
|
+
cookie?: never;
|
|
7322
|
+
};
|
|
7323
|
+
requestBody: {
|
|
7324
|
+
content: {
|
|
7325
|
+
"application/json": components["schemas"]["UpdateUserLocationDto"];
|
|
7326
|
+
};
|
|
7327
|
+
};
|
|
7328
|
+
responses: {
|
|
7329
|
+
200: {
|
|
7330
|
+
headers: {
|
|
7331
|
+
[name: string]: unknown;
|
|
7332
|
+
};
|
|
7333
|
+
content: {
|
|
7334
|
+
"application/json": components["schemas"]["UserLocationDto"];
|
|
7335
|
+
};
|
|
7336
|
+
};
|
|
7337
|
+
/** @description Application Error */
|
|
7338
|
+
500: {
|
|
7339
|
+
headers: {
|
|
7340
|
+
[name: string]: unknown;
|
|
7341
|
+
};
|
|
7342
|
+
content: {
|
|
7343
|
+
"application/json": components["schemas"]["ErrorResponse"];
|
|
7344
|
+
};
|
|
7345
|
+
};
|
|
7346
|
+
};
|
|
7347
|
+
};
|
|
6735
7348
|
generateReassignToken: {
|
|
6736
7349
|
parameters: {
|
|
6737
7350
|
query?: never;
|
|
@@ -7061,9 +7674,6 @@ export declare enum ArrivalType {
|
|
|
7061
7674
|
hosted_game = "hosted-game",
|
|
7062
7675
|
player_game = "player-game"
|
|
7063
7676
|
}
|
|
7064
|
-
export declare enum LinkSuffixOption {
|
|
7065
|
-
SHORT = "SHORT"
|
|
7066
|
-
}
|
|
7067
7677
|
export declare enum UserRoleEnum {
|
|
7068
7678
|
USER = "USER",
|
|
7069
7679
|
ADMIN = "ADMIN"
|
|
@@ -7108,7 +7718,10 @@ export declare enum AppTrophyType {
|
|
|
7108
7718
|
export declare enum ApiPaths {
|
|
7109
7719
|
getHello = "/hello",
|
|
7110
7720
|
getError = "/error",
|
|
7721
|
+
getErrorUncaught = "/error-uncaught",
|
|
7722
|
+
postUserRegistration = "/users/user-registered-cloud-fn-callback",
|
|
7111
7723
|
getGameById = "/games/{gameId}",
|
|
7724
|
+
getNearbyGamesDeprecated = "/nearby-games",
|
|
7112
7725
|
getNearbyGamesByLocation = "/nearby-games/locations",
|
|
7113
7726
|
getNearbyGamesList = "/nearby-games/list",
|
|
7114
7727
|
getLocationGames = "/location/{locationId}/games",
|
|
@@ -7130,11 +7743,13 @@ export declare enum ApiPaths {
|
|
|
7130
7743
|
getUserNearbyGamesAlert = "/nearby-games/alerts",
|
|
7131
7744
|
updateNearbyGamesAlertLocation = "/nearby-games/alerts/location",
|
|
7132
7745
|
updateNearbyGamesAlertEnabled = "/nearby-games/alerts/enabled",
|
|
7746
|
+
logoutUser = "/users/logout",
|
|
7133
7747
|
postMyUserReferral = "/users/referral",
|
|
7134
7748
|
getMyUser = "/users/me",
|
|
7135
7749
|
updateMyUserPartial = "/users/me",
|
|
7136
7750
|
deleteMyUser = "/users/me",
|
|
7137
7751
|
setMyLanguage = "/users/me/language",
|
|
7752
|
+
getMyUserStats = "/users/me/stats",
|
|
7138
7753
|
upsertUserMetaPushNotificationEnabledValue = "/user-meta/push-notification-enabled",
|
|
7139
7754
|
createHostedGame = "/hosted-games",
|
|
7140
7755
|
updateHostedGame = "/hosted-games/{hostedGameId}",
|
|
@@ -7151,7 +7766,6 @@ export declare enum ApiPaths {
|
|
|
7151
7766
|
registerDeviceToken = "/user-notifications/config/register-device-token",
|
|
7152
7767
|
unregisterDeviceToken = "/user-notifications/config/unregister-device-token/{token}",
|
|
7153
7768
|
getArrival = "/arrival",
|
|
7154
|
-
createShortLink = "/short-link",
|
|
7155
7769
|
createRecurringGame = "/recurring-games",
|
|
7156
7770
|
getUsers = "/admin/users",
|
|
7157
7771
|
getUsersStats = "/admin/users/stats",
|
|
@@ -7159,20 +7773,24 @@ export declare enum ApiPaths {
|
|
|
7159
7773
|
getGamesForPost = "/admin/games-for-post",
|
|
7160
7774
|
getGamesStats = "/admin/games/stats",
|
|
7161
7775
|
getKnownCitiesForPost = "/admin/known-cities",
|
|
7776
|
+
restoreRecurringGame = "/admin/restore-recurring-game",
|
|
7162
7777
|
removeOldGameChats = "/admin/adhoc/remove-old-game-chats",
|
|
7163
7778
|
emitGameUpdated = "/admin/adhoc/emit-game-updated",
|
|
7164
7779
|
postCustomNotification = "/admin/notifications/custom",
|
|
7165
7780
|
postCustomNotificationByAutomation = "/admin/automations/notifications/custom",
|
|
7781
|
+
getGamesForPostPublic = "/admin/games-for-post-public",
|
|
7782
|
+
cancelGameByAdmin = "/admin/moderation/game/{gameId}",
|
|
7783
|
+
deleteUserByAdmin = "/admin/moderation/user/{userId}",
|
|
7166
7784
|
testActionNotification = "/admin/test-notifications/action-push",
|
|
7167
7785
|
getChannelByReference = "/chat/channel/get-by-reference",
|
|
7168
7786
|
getChannelDetails = "/chat/channel/{channelId}",
|
|
7787
|
+
updateChannelDetails = "/chat/channel/{channelId}",
|
|
7788
|
+
getChannelMembers = "/chat/channel/{channelId}/members",
|
|
7169
7789
|
muteChannel = "/chat/channel/{channelId}/muted",
|
|
7170
7790
|
getMyChatUser = "/chat/user/me",
|
|
7171
7791
|
postChatWebook = "/chat/webhook",
|
|
7172
7792
|
createOrGetSingleChannel = "/chat/channel/single",
|
|
7173
7793
|
cleanupUnreadMessages = "/chat-maintenance/cleanup-unread-messages",
|
|
7174
|
-
processScheduledNotification = "/game-notifications/scheduled-notification",
|
|
7175
|
-
createRating = "/rating/app",
|
|
7176
7794
|
postGameApplication = "/games/{gameId}/player-applications",
|
|
7177
7795
|
deleteGameApplication = "/games/{gameId}/player-applications",
|
|
7178
7796
|
rejectHostedGameApplications = "/hosted-games/{hostedGameId}/applications/reject-many",
|
|
@@ -7188,6 +7806,8 @@ export declare enum ApiPaths {
|
|
|
7188
7806
|
removeTeamMember = "/teams/{teamId}/members/{userId}",
|
|
7189
7807
|
leave = "/teams/{teamId}/member/me",
|
|
7190
7808
|
acceptTeamInvitation = "/teams/{teamId}/invitations/accept",
|
|
7809
|
+
processScheduledNotification = "/game-notifications/scheduled-notification",
|
|
7810
|
+
createRating = "/rating/app",
|
|
7191
7811
|
createContactMessage = "/contact/message",
|
|
7192
7812
|
triggerNotificationsForGameFinished = "/game-notifications/game-finished",
|
|
7193
7813
|
triggerNotificationsForGameReminder = "/game-notifications/game-reminder",
|
|
@@ -7202,6 +7822,7 @@ export declare enum ApiPaths {
|
|
|
7202
7822
|
getUserProfileGames = "/user/{userId}/games",
|
|
7203
7823
|
getUserRank = "/user/{userId}/activity-rank",
|
|
7204
7824
|
getUsersTopRank = "/activity-rank/top",
|
|
7825
|
+
updateUserLocation = "/users/location",
|
|
7205
7826
|
generateReassignToken = "/hosted-games/{hostedGameId}/reassign/create-reassign-token",
|
|
7206
7827
|
reassignGameByToken = "/hosted-games/{hostedGameId}/reassign/{reassignToken}",
|
|
7207
7828
|
triggerInactiveUsersNotification = "/action-push/inactive-users-since-registered-notification",
|