@drxsuperapp/sdk 1.1.372 → 1.1.374

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
@@ -753,21 +753,21 @@
753
753
  # https://opencollective.com/openapi_generator/donate #
754
754
  ################################################################################
755
755
  ✅ SDK generated
756
- [master 0598d12] VPS: Generated API SDK
757
- 5 files changed, 133 insertions(+), 6 deletions(-)
758
- create mode 100644 models/ApiWeb3RewardGetFilterParameter.ts
759
- To https://gitlab.com/drx-super/drx-sdk.git
760
- 774fb6b..0598d12 master -> master
756
+ On branch master
757
+ Your branch is up to date with 'origin/master'.
758
+
759
+ nothing to commit, working tree clean
760
+ Everything up-to-date
761
761
  ✅ Changes committed and pushed
762
- v1.1.372
762
+ v1.1.374
763
763
  To https://gitlab.com/drx-super/drx-sdk.git
764
- 0598d12..cea5273 master -> master
764
+ a532b03..6b9fa48 master -> master
765
765
  ✅ Version bumped
766
766
 
767
- > @drxsuperapp/sdk@1.1.372 prepublishOnly
767
+ > @drxsuperapp/sdk@1.1.374 prepublishOnly
768
768
  > npm run build
769
769
 
770
770
 
771
- > @drxsuperapp/sdk@1.1.372 build
771
+ > @drxsuperapp/sdk@1.1.374 build
772
772
  > tsc
773
773
 
@@ -21,6 +21,12 @@ export interface ApiPadelMatchesGetFilterParameterName {
21
21
  * @memberof ApiPadelMatchesGetFilterParameterName
22
22
  */
23
23
  eq?: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof ApiPadelMatchesGetFilterParameterName
28
+ */
29
+ ne?: string;
24
30
  /**
25
31
  *
26
32
  * @type {string}
@@ -26,6 +26,7 @@ export function ApiPadelMatchesGetFilterParameterNameFromJSONTyped(json, ignoreD
26
26
  }
27
27
  return {
28
28
  'eq': json['eq'] == null ? undefined : json['eq'],
29
+ 'ne': json['ne'] == null ? undefined : json['ne'],
29
30
  'contains': json['contains'] == null ? undefined : json['contains'],
30
31
  'startsWith': json['startsWith'] == null ? undefined : json['startsWith'],
31
32
  'endsWith': json['endsWith'] == null ? undefined : json['endsWith'],
@@ -40,6 +41,7 @@ export function ApiPadelMatchesGetFilterParameterNameToJSONTyped(value, ignoreDi
40
41
  }
41
42
  return {
42
43
  'eq': value['eq'],
44
+ 'ne': value['ne'],
43
45
  'contains': value['contains'],
44
46
  'startsWith': value['startsWith'],
45
47
  'endsWith': value['endsWith'],
@@ -22,6 +22,12 @@ export interface ApiWeb3RewardGetFilterParameter {
22
22
  * @memberof ApiWeb3RewardGetFilterParameter
23
23
  */
24
24
  name?: ApiPadelMatchesGetFilterParameterName;
25
+ /**
26
+ *
27
+ * @type {ApiPadelMatchesGetFilterParameterName}
28
+ * @memberof ApiWeb3RewardGetFilterParameter
29
+ */
30
+ category?: ApiPadelMatchesGetFilterParameterName;
25
31
  }
26
32
  /**
27
33
  * Check if a given object implements the ApiWeb3RewardGetFilterParameter interface.
@@ -27,6 +27,7 @@ export function ApiWeb3RewardGetFilterParameterFromJSONTyped(json, ignoreDiscrim
27
27
  }
28
28
  return {
29
29
  'name': json['name'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['name']),
30
+ 'category': json['category'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['category']),
30
31
  };
31
32
  }
32
33
  export function ApiWeb3RewardGetFilterParameterToJSON(json) {
@@ -38,5 +39,6 @@ export function ApiWeb3RewardGetFilterParameterToJSONTyped(value, ignoreDiscrimi
38
39
  }
39
40
  return {
40
41
  'name': ApiPadelMatchesGetFilterParameterNameToJSON(value['name']),
42
+ 'category': ApiPadelMatchesGetFilterParameterNameToJSON(value['category']),
41
43
  };
42
44
  }
@@ -25,6 +25,12 @@ export interface ApiPadelMatchesGetFilterParameterName {
25
25
  * @memberof ApiPadelMatchesGetFilterParameterName
26
26
  */
27
27
  eq?: string;
28
+ /**
29
+ *
30
+ * @type {string}
31
+ * @memberof ApiPadelMatchesGetFilterParameterName
32
+ */
33
+ ne?: string;
28
34
  /**
29
35
  *
30
36
  * @type {string}
@@ -63,6 +69,7 @@ export function ApiPadelMatchesGetFilterParameterNameFromJSONTyped(json: any, ig
63
69
  return {
64
70
 
65
71
  'eq': json['eq'] == null ? undefined : json['eq'],
72
+ 'ne': json['ne'] == null ? undefined : json['ne'],
66
73
  'contains': json['contains'] == null ? undefined : json['contains'],
67
74
  'startsWith': json['startsWith'] == null ? undefined : json['startsWith'],
68
75
  'endsWith': json['endsWith'] == null ? undefined : json['endsWith'],
@@ -81,6 +88,7 @@ export function ApiPadelMatchesGetFilterParameterNameToJSONTyped(value?: ApiPade
81
88
  return {
82
89
 
83
90
  'eq': value['eq'],
91
+ 'ne': value['ne'],
84
92
  'contains': value['contains'],
85
93
  'startsWith': value['startsWith'],
86
94
  'endsWith': value['endsWith'],
@@ -33,6 +33,12 @@ export interface ApiWeb3RewardGetFilterParameter {
33
33
  * @memberof ApiWeb3RewardGetFilterParameter
34
34
  */
35
35
  name?: ApiPadelMatchesGetFilterParameterName;
36
+ /**
37
+ *
38
+ * @type {ApiPadelMatchesGetFilterParameterName}
39
+ * @memberof ApiWeb3RewardGetFilterParameter
40
+ */
41
+ category?: ApiPadelMatchesGetFilterParameterName;
36
42
  }
37
43
 
38
44
  /**
@@ -53,6 +59,7 @@ export function ApiWeb3RewardGetFilterParameterFromJSONTyped(json: any, ignoreDi
53
59
  return {
54
60
 
55
61
  'name': json['name'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['name']),
62
+ 'category': json['category'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['category']),
56
63
  };
57
64
  }
58
65
 
@@ -68,6 +75,7 @@ export function ApiWeb3RewardGetFilterParameterToJSONTyped(value?: ApiWeb3Reward
68
75
  return {
69
76
 
70
77
  'name': ApiPadelMatchesGetFilterParameterNameToJSON(value['name']),
78
+ 'category': ApiPadelMatchesGetFilterParameterNameToJSON(value['category']),
71
79
  };
72
80
  }
73
81
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drxsuperapp/sdk",
3
- "version": "1.1.372",
3
+ "version": "1.1.374",
4
4
  "main": "index.ts",
5
5
  "types": "index.ts",
6
6
  "scripts": {