@jugarhoy/api 1.1.21 → 1.1.23
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/apis/AppPlayRegistrationApi.ts +14 -14
- package/apis/AppPlaySearchApi.ts +135 -135
- package/apis/PositionsApi.ts +24 -24
- package/apis/RecurringGamesApi.ts +111 -111
- package/apis/VotingApi.ts +90 -90
- package/models/HasUserVoted200Response.ts +65 -0
- package/models/ListPlaySearchesByRecurringGame200Response.ts +81 -0
- package/models/index.ts +2 -2
- package/package.json +1 -1
- package/models/ApiAppRecurringGamesIdPlaySearchesGet200Response.ts +0 -81
- package/models/ApiAppVotingHasVotedPlaySearchIdGet200Response.ts +0 -65
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* Jugar Hoy - API
|
|
5
|
-
* API documentation for Jugar Hoy application
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 1.5.0
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
import { mapValues } from '../runtime';
|
|
16
|
-
/**
|
|
17
|
-
*
|
|
18
|
-
* @export
|
|
19
|
-
* @interface ApiAppVotingHasVotedPlaySearchIdGet200Response
|
|
20
|
-
*/
|
|
21
|
-
export interface ApiAppVotingHasVotedPlaySearchIdGet200Response {
|
|
22
|
-
/**
|
|
23
|
-
*
|
|
24
|
-
* @type {boolean}
|
|
25
|
-
* @memberof ApiAppVotingHasVotedPlaySearchIdGet200Response
|
|
26
|
-
*/
|
|
27
|
-
hasVoted?: boolean;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
/**
|
|
31
|
-
* Check if a given object implements the ApiAppVotingHasVotedPlaySearchIdGet200Response interface.
|
|
32
|
-
*/
|
|
33
|
-
export function instanceOfApiAppVotingHasVotedPlaySearchIdGet200Response(value: object): value is ApiAppVotingHasVotedPlaySearchIdGet200Response {
|
|
34
|
-
return true;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
export function ApiAppVotingHasVotedPlaySearchIdGet200ResponseFromJSON(json: any): ApiAppVotingHasVotedPlaySearchIdGet200Response {
|
|
38
|
-
return ApiAppVotingHasVotedPlaySearchIdGet200ResponseFromJSONTyped(json, false);
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
export function ApiAppVotingHasVotedPlaySearchIdGet200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiAppVotingHasVotedPlaySearchIdGet200Response {
|
|
42
|
-
if (json == null) {
|
|
43
|
-
return json;
|
|
44
|
-
}
|
|
45
|
-
return {
|
|
46
|
-
|
|
47
|
-
'hasVoted': json['hasVoted'] == null ? undefined : json['hasVoted'],
|
|
48
|
-
};
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
export function ApiAppVotingHasVotedPlaySearchIdGet200ResponseToJSON(json: any): ApiAppVotingHasVotedPlaySearchIdGet200Response {
|
|
52
|
-
return ApiAppVotingHasVotedPlaySearchIdGet200ResponseToJSONTyped(json, false);
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
export function ApiAppVotingHasVotedPlaySearchIdGet200ResponseToJSONTyped(value?: ApiAppVotingHasVotedPlaySearchIdGet200Response | null, ignoreDiscriminator: boolean = false): any {
|
|
56
|
-
if (value == null) {
|
|
57
|
-
return value;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
return {
|
|
61
|
-
|
|
62
|
-
'hasVoted': value['hasVoted'],
|
|
63
|
-
};
|
|
64
|
-
}
|
|
65
|
-
|