@drxsuperapp/sdk 1.1.298 → 1.1.300
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
|
@@ -599,20 +599,21 @@
|
|
|
599
599
|
# https://opencollective.com/openapi_generator/donate #
|
|
600
600
|
################################################################################
|
|
601
601
|
✅ SDK generated
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
602
|
+
On branch master
|
|
603
|
+
Your branch is up to date with 'origin/master'.
|
|
604
|
+
|
|
605
|
+
nothing to commit, working tree clean
|
|
606
|
+
Everything up-to-date
|
|
606
607
|
✅ Changes committed and pushed
|
|
607
|
-
v1.1.
|
|
608
|
+
v1.1.300
|
|
608
609
|
To https://gitlab.com/drx-super/drx-sdk.git
|
|
609
|
-
|
|
610
|
+
a50bd53..5cf933b master -> master
|
|
610
611
|
✅ Version bumped
|
|
611
612
|
|
|
612
|
-
> @drxsuperapp/sdk@1.1.
|
|
613
|
+
> @drxsuperapp/sdk@1.1.300 prepublishOnly
|
|
613
614
|
> npm run build
|
|
614
615
|
|
|
615
616
|
|
|
616
|
-
> @drxsuperapp/sdk@1.1.
|
|
617
|
+
> @drxsuperapp/sdk@1.1.300 build
|
|
617
618
|
> tsc
|
|
618
619
|
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import type { ApiPadelMatchesGetFilterParameterName } from './ApiPadelMatchesGetFilterParameterName';
|
|
13
|
+
import type { ApiPadelMatchesGetFilterParameterPlayedAt } from './ApiPadelMatchesGetFilterParameterPlayedAt';
|
|
13
14
|
/**
|
|
14
15
|
*
|
|
15
16
|
* @export
|
|
@@ -36,10 +37,10 @@ export interface ApiMmaEventsGetFilterParameter {
|
|
|
36
37
|
status?: ApiPadelMatchesGetFilterParameterName;
|
|
37
38
|
/**
|
|
38
39
|
*
|
|
39
|
-
* @type {
|
|
40
|
+
* @type {ApiPadelMatchesGetFilterParameterPlayedAt}
|
|
40
41
|
* @memberof ApiMmaEventsGetFilterParameter
|
|
41
42
|
*/
|
|
42
|
-
datetime?:
|
|
43
|
+
datetime?: ApiPadelMatchesGetFilterParameterPlayedAt;
|
|
43
44
|
}
|
|
44
45
|
/**
|
|
45
46
|
* Check if a given object implements the ApiMmaEventsGetFilterParameter interface.
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
14
|
import { ApiPadelMatchesGetFilterParameterNameFromJSON, ApiPadelMatchesGetFilterParameterNameToJSON, } from './ApiPadelMatchesGetFilterParameterName';
|
|
15
|
+
import { ApiPadelMatchesGetFilterParameterPlayedAtFromJSON, ApiPadelMatchesGetFilterParameterPlayedAtToJSON, } from './ApiPadelMatchesGetFilterParameterPlayedAt';
|
|
15
16
|
/**
|
|
16
17
|
* Check if a given object implements the ApiMmaEventsGetFilterParameter interface.
|
|
17
18
|
*/
|
|
@@ -29,7 +30,7 @@ export function ApiMmaEventsGetFilterParameterFromJSONTyped(json, ignoreDiscrimi
|
|
|
29
30
|
'id': json['id'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['id']),
|
|
30
31
|
'name': json['name'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['name']),
|
|
31
32
|
'status': json['status'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['status']),
|
|
32
|
-
'datetime': json['datetime'] == null ? undefined :
|
|
33
|
+
'datetime': json['datetime'] == null ? undefined : ApiPadelMatchesGetFilterParameterPlayedAtFromJSON(json['datetime']),
|
|
33
34
|
};
|
|
34
35
|
}
|
|
35
36
|
export function ApiMmaEventsGetFilterParameterToJSON(json) {
|
|
@@ -43,6 +44,6 @@ export function ApiMmaEventsGetFilterParameterToJSONTyped(value, ignoreDiscrimin
|
|
|
43
44
|
'id': ApiPadelMatchesGetFilterParameterNameToJSON(value['id']),
|
|
44
45
|
'name': ApiPadelMatchesGetFilterParameterNameToJSON(value['name']),
|
|
45
46
|
'status': ApiPadelMatchesGetFilterParameterNameToJSON(value['status']),
|
|
46
|
-
'datetime':
|
|
47
|
+
'datetime': ApiPadelMatchesGetFilterParameterPlayedAtToJSON(value['datetime']),
|
|
47
48
|
};
|
|
48
49
|
}
|
|
@@ -20,6 +20,13 @@ import {
|
|
|
20
20
|
ApiPadelMatchesGetFilterParameterNameToJSON,
|
|
21
21
|
ApiPadelMatchesGetFilterParameterNameToJSONTyped,
|
|
22
22
|
} from './ApiPadelMatchesGetFilterParameterName';
|
|
23
|
+
import type { ApiPadelMatchesGetFilterParameterPlayedAt } from './ApiPadelMatchesGetFilterParameterPlayedAt';
|
|
24
|
+
import {
|
|
25
|
+
ApiPadelMatchesGetFilterParameterPlayedAtFromJSON,
|
|
26
|
+
ApiPadelMatchesGetFilterParameterPlayedAtFromJSONTyped,
|
|
27
|
+
ApiPadelMatchesGetFilterParameterPlayedAtToJSON,
|
|
28
|
+
ApiPadelMatchesGetFilterParameterPlayedAtToJSONTyped,
|
|
29
|
+
} from './ApiPadelMatchesGetFilterParameterPlayedAt';
|
|
23
30
|
|
|
24
31
|
/**
|
|
25
32
|
*
|
|
@@ -47,10 +54,10 @@ export interface ApiMmaEventsGetFilterParameter {
|
|
|
47
54
|
status?: ApiPadelMatchesGetFilterParameterName;
|
|
48
55
|
/**
|
|
49
56
|
*
|
|
50
|
-
* @type {
|
|
57
|
+
* @type {ApiPadelMatchesGetFilterParameterPlayedAt}
|
|
51
58
|
* @memberof ApiMmaEventsGetFilterParameter
|
|
52
59
|
*/
|
|
53
|
-
datetime?:
|
|
60
|
+
datetime?: ApiPadelMatchesGetFilterParameterPlayedAt;
|
|
54
61
|
}
|
|
55
62
|
|
|
56
63
|
/**
|
|
@@ -73,7 +80,7 @@ export function ApiMmaEventsGetFilterParameterFromJSONTyped(json: any, ignoreDis
|
|
|
73
80
|
'id': json['id'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['id']),
|
|
74
81
|
'name': json['name'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['name']),
|
|
75
82
|
'status': json['status'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['status']),
|
|
76
|
-
'datetime': json['datetime'] == null ? undefined :
|
|
83
|
+
'datetime': json['datetime'] == null ? undefined : ApiPadelMatchesGetFilterParameterPlayedAtFromJSON(json['datetime']),
|
|
77
84
|
};
|
|
78
85
|
}
|
|
79
86
|
|
|
@@ -91,7 +98,7 @@ export function ApiMmaEventsGetFilterParameterToJSONTyped(value?: ApiMmaEventsGe
|
|
|
91
98
|
'id': ApiPadelMatchesGetFilterParameterNameToJSON(value['id']),
|
|
92
99
|
'name': ApiPadelMatchesGetFilterParameterNameToJSON(value['name']),
|
|
93
100
|
'status': ApiPadelMatchesGetFilterParameterNameToJSON(value['status']),
|
|
94
|
-
'datetime':
|
|
101
|
+
'datetime': ApiPadelMatchesGetFilterParameterPlayedAtToJSON(value['datetime']),
|
|
95
102
|
};
|
|
96
103
|
}
|
|
97
104
|
|