@orlikfy/api-interfaces 6.1.10 → 6.1.11

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/README.md CHANGED
@@ -4,6 +4,7 @@ TypeScript interfaces generated from the Orlikfy backend OpenAPI specification.
4
4
 
5
5
  # Changelog
6
6
 
7
+ v6.1.11 - private games on map - added query param
7
8
  v6.1.10 - notification preferences, optional price in alerts
8
9
 
9
10
  ## Publishing New Version
package/dist/api.d.ts CHANGED
@@ -87,27 +87,6 @@ export interface paths {
87
87
  patch?: never;
88
88
  trace?: never;
89
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
- };
111
90
  "/nearby-games/locations": {
112
91
  parameters: {
113
92
  query?: never;
@@ -1940,6 +1919,7 @@ export interface components {
1940
1919
  thumbnail: string | null;
1941
1920
  phone: string | null;
1942
1921
  rating: components["schemas"]["HostRatingDto"];
1922
+ isAnonymous: boolean;
1943
1923
  lastActive: string | null;
1944
1924
  };
1945
1925
  /** @enum {string} */
@@ -2032,6 +2012,7 @@ export interface components {
2032
2012
  thumbnail: string | null;
2033
2013
  phone: string | null;
2034
2014
  rating: components["schemas"]["HostRatingDto"];
2015
+ isAnonymous: boolean;
2035
2016
  };
2036
2017
  CommonGameDto: {
2037
2018
  gameId: string;
@@ -3852,49 +3833,6 @@ export interface operations {
3852
3833
  };
3853
3834
  };
3854
3835
  };
3855
- getNearbyGamesDeprecated: {
3856
- parameters: {
3857
- query?: {
3858
- longitude?: string;
3859
- latitude?: string;
3860
- maxDistanceMeters?: string;
3861
- gameLevel?: components["schemas"]["gameLevelEnum"][];
3862
- locationType?: components["schemas"]["AppGameLocationType"][];
3863
- specificDate?: string;
3864
- /** @description Show private games, available only for admins. */
3865
- showPrivate?: string;
3866
- };
3867
- header: {
3868
- "x-timezone": string;
3869
- /** @description Request trace id for logs */
3870
- "x-trace-request-id"?: string;
3871
- /** @description Session trace id for logs */
3872
- "x-trace-session-id"?: string;
3873
- };
3874
- path?: never;
3875
- cookie?: never;
3876
- };
3877
- requestBody?: never;
3878
- responses: {
3879
- 200: {
3880
- headers: {
3881
- [name: string]: unknown;
3882
- };
3883
- content: {
3884
- "application/json": components["schemas"]["NearbyGamesByLocationDto"];
3885
- };
3886
- };
3887
- /** @description Application Error */
3888
- 500: {
3889
- headers: {
3890
- [name: string]: unknown;
3891
- };
3892
- content: {
3893
- "application/json": components["schemas"]["ErrorResponse"];
3894
- };
3895
- };
3896
- };
3897
- };
3898
3836
  getNearbyGamesByLocation: {
3899
3837
  parameters: {
3900
3838
  query?: {
@@ -3906,6 +3844,8 @@ export interface operations {
3906
3844
  specificDate?: string;
3907
3845
  /** @description Show private games, available only for admins. */
3908
3846
  showPrivate?: string;
3847
+ /** @description Show private games with anonymized host data. Private games without user relation will have host info blurred. */
3848
+ showPrivateBlurred?: string;
3909
3849
  };
3910
3850
  header: {
3911
3851
  "x-timezone": string;
@@ -3949,6 +3889,8 @@ export interface operations {
3949
3889
  specificDate?: string;
3950
3890
  /** @description Show private games, available only for admins. */
3951
3891
  showPrivate?: string;
3892
+ /** @description Show private games with anonymized host data. Private games without user relation will have host info blurred. */
3893
+ showPrivateBlurred?: string;
3952
3894
  };
3953
3895
  header: {
3954
3896
  "x-timezone": string;
@@ -3992,6 +3934,8 @@ export interface operations {
3992
3934
  specificDate?: string;
3993
3935
  /** @description Show private games, available only for admins. */
3994
3936
  showPrivate?: string;
3937
+ /** @description Show private games with anonymized host data. Private games without user relation will have host info blurred. */
3938
+ showPrivateBlurred?: string;
3995
3939
  };
3996
3940
  header: {
3997
3941
  "x-timezone": string;
@@ -8433,7 +8377,6 @@ export declare enum ApiPaths {
8433
8377
  getErrorUncaught = "/error-uncaught",
8434
8378
  postUserRegistration = "/users/user-registered-cloud-fn-callback",
8435
8379
  getGameById = "/games/{gameId}",
8436
- getNearbyGamesDeprecated = "/nearby-games",
8437
8380
  getNearbyGamesByLocation = "/nearby-games/locations",
8438
8381
  getNearbyGamesList = "/nearby-games/list",
8439
8382
  getLocationGames = "/location/{locationId}/games",
package/dist/api.js CHANGED
@@ -327,7 +327,6 @@ var ApiPaths;
327
327
  ApiPaths["getErrorUncaught"] = "/error-uncaught";
328
328
  ApiPaths["postUserRegistration"] = "/users/user-registered-cloud-fn-callback";
329
329
  ApiPaths["getGameById"] = "/games/{gameId}";
330
- ApiPaths["getNearbyGamesDeprecated"] = "/nearby-games";
331
330
  ApiPaths["getNearbyGamesByLocation"] = "/nearby-games/locations";
332
331
  ApiPaths["getNearbyGamesList"] = "/nearby-games/list";
333
332
  ApiPaths["getLocationGames"] = "/location/{locationId}/games";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orlikfy/api-interfaces",
3
- "version": "6.1.10",
3
+ "version": "6.1.11",
4
4
  "description": "",
5
5
  "license": "ISC",
6
6
  "author": "kruligh",