@drxsuperapp/sdk 1.1.52 → 1.1.53

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,20 @@
93
93
  # https://opencollective.com/openapi_generator/donate #
94
94
  ################################################################################
95
95
  ✅ SDK generated
96
- [master 35d2031] VPS: Generated API SDK
97
- 8 files changed, 219 insertions(+), 122 deletions(-)
98
- delete mode 100644 models/ApiPadelMatchesGetFilterParameterIdAnyOf.ts
99
- create mode 100644 models/ApiPadelMatchesGetFilterParameterName.ts
100
- create mode 100644 models/ApiPadelMatchesGetFilterParameterPlayedAt.ts
96
+ [master e4eef59] VPS: Generated API SDK
97
+ 1 file changed, 6 insertions(+), 6 deletions(-)
101
98
  To https://gitlab.com/drx-super/drx-sdk.git
102
- 0196d37..35d2031 master -> master
99
+ 4f4011d..e4eef59 master -> master
103
100
  ✅ Changes committed and pushed
104
- v1.1.52
101
+ v1.1.53
105
102
  To https://gitlab.com/drx-super/drx-sdk.git
106
- 35d2031..4f4011d master -> master
103
+ e4eef59..3d3eb7e master -> master
107
104
  ✅ Version bumped
108
105
 
109
- > @drxsuperapp/sdk@1.1.52 prepublishOnly
106
+ > @drxsuperapp/sdk@1.1.53 prepublishOnly
110
107
  > npm run build
111
108
 
112
109
 
113
- > @drxsuperapp/sdk@1.1.52 build
110
+ > @drxsuperapp/sdk@1.1.53 build
114
111
  > tsc
115
112
 
@@ -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
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drxsuperapp/sdk",
3
- "version": "1.1.52",
3
+ "version": "1.1.53",
4
4
  "main": "index.ts",
5
5
  "types": "index.ts",
6
6
  "scripts": {