@drxsuperapp/sdk 1.1.241 → 1.1.243
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
|
@@ -514,15 +514,15 @@ Your branch is up to date with 'origin/master'.
|
|
|
514
514
|
nothing to commit, working tree clean
|
|
515
515
|
Everything up-to-date
|
|
516
516
|
✅ Changes committed and pushed
|
|
517
|
-
v1.1.
|
|
517
|
+
v1.1.243
|
|
518
518
|
To https://gitlab.com/drx-super/drx-sdk.git
|
|
519
|
-
|
|
519
|
+
01c9265..37cf06e master -> master
|
|
520
520
|
✅ Version bumped
|
|
521
521
|
|
|
522
|
-
> @drxsuperapp/sdk@1.1.
|
|
522
|
+
> @drxsuperapp/sdk@1.1.243 prepublishOnly
|
|
523
523
|
> npm run build
|
|
524
524
|
|
|
525
525
|
|
|
526
|
-
> @drxsuperapp/sdk@1.1.
|
|
526
|
+
> @drxsuperapp/sdk@1.1.243 build
|
|
527
527
|
> tsc
|
|
528
528
|
|
|
@@ -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
|
|