@drxsuperapp/sdk 1.1.297 → 1.1.299
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,26 +599,20 @@
|
|
|
599
599
|
# https://opencollective.com/openapi_generator/donate #
|
|
600
600
|
################################################################################
|
|
601
601
|
✅ SDK generated
|
|
602
|
-
[master
|
|
603
|
-
|
|
604
|
-
create mode 100644 models/ApiMmaEventsGetFilterParameter.ts
|
|
602
|
+
[master 08bd28b] VPS: Generated API SDK
|
|
603
|
+
1 file changed, 11 insertions(+), 4 deletions(-)
|
|
605
604
|
To https://gitlab.com/drx-super/drx-sdk.git
|
|
606
|
-
|
|
605
|
+
42bf63e..08bd28b master -> master
|
|
607
606
|
✅ Changes committed and pushed
|
|
608
|
-
v1.1.
|
|
609
|
-
npm notice
|
|
610
|
-
npm notice New major version of npm available! 10.9.2 -> 11.5.2
|
|
611
|
-
npm notice Changelog: https://github.com/npm/cli/releases/tag/v11.5.2
|
|
612
|
-
npm notice To update run: npm install -g npm@11.5.2
|
|
613
|
-
npm notice
|
|
607
|
+
v1.1.299
|
|
614
608
|
To https://gitlab.com/drx-super/drx-sdk.git
|
|
615
|
-
|
|
609
|
+
08bd28b..a50bd53 master -> master
|
|
616
610
|
✅ Version bumped
|
|
617
611
|
|
|
618
|
-
> @drxsuperapp/sdk@1.1.
|
|
612
|
+
> @drxsuperapp/sdk@1.1.299 prepublishOnly
|
|
619
613
|
> npm run build
|
|
620
614
|
|
|
621
615
|
|
|
622
|
-
> @drxsuperapp/sdk@1.1.
|
|
616
|
+
> @drxsuperapp/sdk@1.1.299 build
|
|
623
617
|
> tsc
|
|
624
618
|
|
|
@@ -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
|
|
@@ -34,6 +35,12 @@ export interface ApiMmaEventsGetFilterParameter {
|
|
|
34
35
|
* @memberof ApiMmaEventsGetFilterParameter
|
|
35
36
|
*/
|
|
36
37
|
status?: ApiPadelMatchesGetFilterParameterName;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {ApiPadelMatchesGetFilterParameterPlayedAt}
|
|
41
|
+
* @memberof ApiMmaEventsGetFilterParameter
|
|
42
|
+
*/
|
|
43
|
+
datetime?: ApiPadelMatchesGetFilterParameterPlayedAt;
|
|
37
44
|
}
|
|
38
45
|
/**
|
|
39
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,6 +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']),
|
|
33
|
+
'datetime': json['datetime'] == null ? undefined : ApiPadelMatchesGetFilterParameterPlayedAtFromJSON(json['datetime']),
|
|
32
34
|
};
|
|
33
35
|
}
|
|
34
36
|
export function ApiMmaEventsGetFilterParameterToJSON(json) {
|
|
@@ -42,5 +44,6 @@ export function ApiMmaEventsGetFilterParameterToJSONTyped(value, ignoreDiscrimin
|
|
|
42
44
|
'id': ApiPadelMatchesGetFilterParameterNameToJSON(value['id']),
|
|
43
45
|
'name': ApiPadelMatchesGetFilterParameterNameToJSON(value['name']),
|
|
44
46
|
'status': ApiPadelMatchesGetFilterParameterNameToJSON(value['status']),
|
|
47
|
+
'datetime': ApiPadelMatchesGetFilterParameterPlayedAtToJSON(value['datetime']),
|
|
45
48
|
};
|
|
46
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
|
*
|
|
@@ -45,6 +52,12 @@ export interface ApiMmaEventsGetFilterParameter {
|
|
|
45
52
|
* @memberof ApiMmaEventsGetFilterParameter
|
|
46
53
|
*/
|
|
47
54
|
status?: ApiPadelMatchesGetFilterParameterName;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {ApiPadelMatchesGetFilterParameterPlayedAt}
|
|
58
|
+
* @memberof ApiMmaEventsGetFilterParameter
|
|
59
|
+
*/
|
|
60
|
+
datetime?: ApiPadelMatchesGetFilterParameterPlayedAt;
|
|
48
61
|
}
|
|
49
62
|
|
|
50
63
|
/**
|
|
@@ -67,6 +80,7 @@ export function ApiMmaEventsGetFilterParameterFromJSONTyped(json: any, ignoreDis
|
|
|
67
80
|
'id': json['id'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['id']),
|
|
68
81
|
'name': json['name'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['name']),
|
|
69
82
|
'status': json['status'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['status']),
|
|
83
|
+
'datetime': json['datetime'] == null ? undefined : ApiPadelMatchesGetFilterParameterPlayedAtFromJSON(json['datetime']),
|
|
70
84
|
};
|
|
71
85
|
}
|
|
72
86
|
|
|
@@ -84,6 +98,7 @@ export function ApiMmaEventsGetFilterParameterToJSONTyped(value?: ApiMmaEventsGe
|
|
|
84
98
|
'id': ApiPadelMatchesGetFilterParameterNameToJSON(value['id']),
|
|
85
99
|
'name': ApiPadelMatchesGetFilterParameterNameToJSON(value['name']),
|
|
86
100
|
'status': ApiPadelMatchesGetFilterParameterNameToJSON(value['status']),
|
|
101
|
+
'datetime': ApiPadelMatchesGetFilterParameterPlayedAtToJSON(value['datetime']),
|
|
87
102
|
};
|
|
88
103
|
}
|
|
89
104
|
|