@drxsuperapp/sdk 1.1.241 → 1.1.242
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/deploy.log
CHANGED
|
@@ -508,21 +508,20 @@
|
|
|
508
508
|
# https://opencollective.com/openapi_generator/donate #
|
|
509
509
|
################################################################################
|
|
510
510
|
✅ SDK generated
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
Everything up-to-date
|
|
511
|
+
[master 074ab60] VPS: Generated API SDK
|
|
512
|
+
1 file changed, 11 insertions(+), 4 deletions(-)
|
|
513
|
+
To https://gitlab.com/drx-super/drx-sdk.git
|
|
514
|
+
a0165cb..074ab60 master -> master
|
|
516
515
|
✅ Changes committed and pushed
|
|
517
|
-
v1.1.
|
|
516
|
+
v1.1.242
|
|
518
517
|
To https://gitlab.com/drx-super/drx-sdk.git
|
|
519
|
-
|
|
518
|
+
074ab60..01c9265 master -> master
|
|
520
519
|
✅ Version bumped
|
|
521
520
|
|
|
522
|
-
> @drxsuperapp/sdk@1.1.
|
|
521
|
+
> @drxsuperapp/sdk@1.1.242 prepublishOnly
|
|
523
522
|
> npm run build
|
|
524
523
|
|
|
525
524
|
|
|
526
|
-
> @drxsuperapp/sdk@1.1.
|
|
525
|
+
> @drxsuperapp/sdk@1.1.242 build
|
|
527
526
|
> tsc
|
|
528
527
|
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import type { ApiPadelMatchesGetFilterParameterName } from './ApiPadelMatchesGetFilterParameterName';
|
|
13
13
|
import type { ApiPadelMatchesGetFilterParameterId } from './ApiPadelMatchesGetFilterParameterId';
|
|
14
|
+
import type { ApiPadelMatchesGetFilterParameterPlayedAt } from './ApiPadelMatchesGetFilterParameterPlayedAt';
|
|
14
15
|
/**
|
|
15
16
|
*
|
|
16
17
|
* @export
|
|
@@ -37,10 +38,10 @@ export interface ApiEsportMatchesGetFilterParameter {
|
|
|
37
38
|
videogameId?: ApiPadelMatchesGetFilterParameterId;
|
|
38
39
|
/**
|
|
39
40
|
*
|
|
40
|
-
* @type {
|
|
41
|
+
* @type {ApiPadelMatchesGetFilterParameterPlayedAt}
|
|
41
42
|
* @memberof ApiEsportMatchesGetFilterParameter
|
|
42
43
|
*/
|
|
43
|
-
beginAt?:
|
|
44
|
+
beginAt?: ApiPadelMatchesGetFilterParameterPlayedAt;
|
|
44
45
|
}
|
|
45
46
|
/**
|
|
46
47
|
* Check if a given object implements the ApiEsportMatchesGetFilterParameter interface.
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
*/
|
|
14
14
|
import { ApiPadelMatchesGetFilterParameterNameFromJSON, ApiPadelMatchesGetFilterParameterNameToJSON, } from './ApiPadelMatchesGetFilterParameterName';
|
|
15
15
|
import { ApiPadelMatchesGetFilterParameterIdFromJSON, ApiPadelMatchesGetFilterParameterIdToJSON, } from './ApiPadelMatchesGetFilterParameterId';
|
|
16
|
+
import { ApiPadelMatchesGetFilterParameterPlayedAtFromJSON, ApiPadelMatchesGetFilterParameterPlayedAtToJSON, } from './ApiPadelMatchesGetFilterParameterPlayedAt';
|
|
16
17
|
/**
|
|
17
18
|
* Check if a given object implements the ApiEsportMatchesGetFilterParameter interface.
|
|
18
19
|
*/
|
|
@@ -30,7 +31,7 @@ export function ApiEsportMatchesGetFilterParameterFromJSONTyped(json, ignoreDisc
|
|
|
30
31
|
'id': json['id'] == null ? undefined : ApiPadelMatchesGetFilterParameterIdFromJSON(json['id']),
|
|
31
32
|
'status': json['status'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['status']),
|
|
32
33
|
'videogameId': json['videogame_id'] == null ? undefined : ApiPadelMatchesGetFilterParameterIdFromJSON(json['videogame_id']),
|
|
33
|
-
'beginAt': json['begin_at'] == null ? undefined :
|
|
34
|
+
'beginAt': json['begin_at'] == null ? undefined : ApiPadelMatchesGetFilterParameterPlayedAtFromJSON(json['begin_at']),
|
|
34
35
|
};
|
|
35
36
|
}
|
|
36
37
|
export function ApiEsportMatchesGetFilterParameterToJSON(json) {
|
|
@@ -44,6 +45,6 @@ export function ApiEsportMatchesGetFilterParameterToJSONTyped(value, ignoreDiscr
|
|
|
44
45
|
'id': ApiPadelMatchesGetFilterParameterIdToJSON(value['id']),
|
|
45
46
|
'status': ApiPadelMatchesGetFilterParameterNameToJSON(value['status']),
|
|
46
47
|
'videogame_id': ApiPadelMatchesGetFilterParameterIdToJSON(value['videogameId']),
|
|
47
|
-
'begin_at':
|
|
48
|
+
'begin_at': ApiPadelMatchesGetFilterParameterPlayedAtToJSON(value['beginAt']),
|
|
48
49
|
};
|
|
49
50
|
}
|
|
@@ -27,6 +27,13 @@ import {
|
|
|
27
27
|
ApiPadelMatchesGetFilterParameterIdToJSON,
|
|
28
28
|
ApiPadelMatchesGetFilterParameterIdToJSONTyped,
|
|
29
29
|
} from './ApiPadelMatchesGetFilterParameterId';
|
|
30
|
+
import type { ApiPadelMatchesGetFilterParameterPlayedAt } from './ApiPadelMatchesGetFilterParameterPlayedAt';
|
|
31
|
+
import {
|
|
32
|
+
ApiPadelMatchesGetFilterParameterPlayedAtFromJSON,
|
|
33
|
+
ApiPadelMatchesGetFilterParameterPlayedAtFromJSONTyped,
|
|
34
|
+
ApiPadelMatchesGetFilterParameterPlayedAtToJSON,
|
|
35
|
+
ApiPadelMatchesGetFilterParameterPlayedAtToJSONTyped,
|
|
36
|
+
} from './ApiPadelMatchesGetFilterParameterPlayedAt';
|
|
30
37
|
|
|
31
38
|
/**
|
|
32
39
|
*
|
|
@@ -54,10 +61,10 @@ export interface ApiEsportMatchesGetFilterParameter {
|
|
|
54
61
|
videogameId?: ApiPadelMatchesGetFilterParameterId;
|
|
55
62
|
/**
|
|
56
63
|
*
|
|
57
|
-
* @type {
|
|
64
|
+
* @type {ApiPadelMatchesGetFilterParameterPlayedAt}
|
|
58
65
|
* @memberof ApiEsportMatchesGetFilterParameter
|
|
59
66
|
*/
|
|
60
|
-
beginAt?:
|
|
67
|
+
beginAt?: ApiPadelMatchesGetFilterParameterPlayedAt;
|
|
61
68
|
}
|
|
62
69
|
|
|
63
70
|
/**
|
|
@@ -80,7 +87,7 @@ export function ApiEsportMatchesGetFilterParameterFromJSONTyped(json: any, ignor
|
|
|
80
87
|
'id': json['id'] == null ? undefined : ApiPadelMatchesGetFilterParameterIdFromJSON(json['id']),
|
|
81
88
|
'status': json['status'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['status']),
|
|
82
89
|
'videogameId': json['videogame_id'] == null ? undefined : ApiPadelMatchesGetFilterParameterIdFromJSON(json['videogame_id']),
|
|
83
|
-
'beginAt': json['begin_at'] == null ? undefined :
|
|
90
|
+
'beginAt': json['begin_at'] == null ? undefined : ApiPadelMatchesGetFilterParameterPlayedAtFromJSON(json['begin_at']),
|
|
84
91
|
};
|
|
85
92
|
}
|
|
86
93
|
|
|
@@ -98,7 +105,7 @@ export function ApiEsportMatchesGetFilterParameterToJSONTyped(value?: ApiEsportM
|
|
|
98
105
|
'id': ApiPadelMatchesGetFilterParameterIdToJSON(value['id']),
|
|
99
106
|
'status': ApiPadelMatchesGetFilterParameterNameToJSON(value['status']),
|
|
100
107
|
'videogame_id': ApiPadelMatchesGetFilterParameterIdToJSON(value['videogameId']),
|
|
101
|
-
'begin_at':
|
|
108
|
+
'begin_at': ApiPadelMatchesGetFilterParameterPlayedAtToJSON(value['beginAt']),
|
|
102
109
|
};
|
|
103
110
|
}
|
|
104
111
|
|