@drxsuperapp/sdk 1.1.52 → 1.1.54
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
|
@@ -93,23 +93,21 @@
|
|
|
93
93
|
# https://opencollective.com/openapi_generator/donate #
|
|
94
94
|
################################################################################
|
|
95
95
|
✅ SDK generated
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
To https://gitlab.com/drx-super/drx-sdk.git
|
|
102
|
-
0196d37..35d2031 master -> master
|
|
96
|
+
On branch master
|
|
97
|
+
Your branch is up to date with 'origin/master'.
|
|
98
|
+
|
|
99
|
+
nothing to commit, working tree clean
|
|
100
|
+
Everything up-to-date
|
|
103
101
|
✅ Changes committed and pushed
|
|
104
|
-
v1.1.
|
|
102
|
+
v1.1.54
|
|
105
103
|
To https://gitlab.com/drx-super/drx-sdk.git
|
|
106
|
-
|
|
104
|
+
3d3eb7e..9971a13 master -> master
|
|
107
105
|
✅ Version bumped
|
|
108
106
|
|
|
109
|
-
> @drxsuperapp/sdk@1.1.
|
|
107
|
+
> @drxsuperapp/sdk@1.1.54 prepublishOnly
|
|
110
108
|
> npm run build
|
|
111
109
|
|
|
112
110
|
|
|
113
|
-
> @drxsuperapp/sdk@1.1.
|
|
111
|
+
> @drxsuperapp/sdk@1.1.54 build
|
|
114
112
|
> tsc
|
|
115
113
|
|
|
@@ -16,23 +16,23 @@
|
|
|
16
16
|
*/
|
|
17
17
|
export interface ApiPadelMatchesGetFilterParameterPlayedAt {
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
19
|
+
* Exact date match (e.g., ?eq=2025-06-12)
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof ApiPadelMatchesGetFilterParameterPlayedAt
|
|
22
22
|
*/
|
|
23
|
-
eq?: string;
|
|
23
|
+
eq?: string | null;
|
|
24
24
|
/**
|
|
25
|
-
*
|
|
25
|
+
* Matches if before this date (e.g., ?before=2025-06-15)
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof ApiPadelMatchesGetFilterParameterPlayedAt
|
|
28
28
|
*/
|
|
29
|
-
before?: string;
|
|
29
|
+
before?: string | null;
|
|
30
30
|
/**
|
|
31
|
-
*
|
|
31
|
+
* Matches if after this date (e.g., ?after=2025-06-01)
|
|
32
32
|
* @type {string}
|
|
33
33
|
* @memberof ApiPadelMatchesGetFilterParameterPlayedAt
|
|
34
34
|
*/
|
|
35
|
-
after?: string;
|
|
35
|
+
after?: string | null;
|
|
36
36
|
}
|
|
37
37
|
/**
|
|
38
38
|
* Check if a given object implements the ApiPadelMatchesGetFilterParameterPlayedAt interface.
|
|
@@ -20,23 +20,23 @@ import { mapValues } from '../runtime';
|
|
|
20
20
|
*/
|
|
21
21
|
export interface ApiPadelMatchesGetFilterParameterPlayedAt {
|
|
22
22
|
/**
|
|
23
|
-
*
|
|
23
|
+
* Exact date match (e.g., ?eq=2025-06-12)
|
|
24
24
|
* @type {string}
|
|
25
25
|
* @memberof ApiPadelMatchesGetFilterParameterPlayedAt
|
|
26
26
|
*/
|
|
27
|
-
eq?: string;
|
|
27
|
+
eq?: string | null;
|
|
28
28
|
/**
|
|
29
|
-
*
|
|
29
|
+
* Matches if before this date (e.g., ?before=2025-06-15)
|
|
30
30
|
* @type {string}
|
|
31
31
|
* @memberof ApiPadelMatchesGetFilterParameterPlayedAt
|
|
32
32
|
*/
|
|
33
|
-
before?: string;
|
|
33
|
+
before?: string | null;
|
|
34
34
|
/**
|
|
35
|
-
*
|
|
35
|
+
* Matches if after this date (e.g., ?after=2025-06-01)
|
|
36
36
|
* @type {string}
|
|
37
37
|
* @memberof ApiPadelMatchesGetFilterParameterPlayedAt
|
|
38
38
|
*/
|
|
39
|
-
after?: string;
|
|
39
|
+
after?: string | null;
|
|
40
40
|
}
|
|
41
41
|
|
|
42
42
|
/**
|