@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 +9 -9
- package/dist/models/ApiPadelMatchesGetFilterParameterName.d.ts +6 -0
- package/dist/models/ApiPadelMatchesGetFilterParameterName.js +2 -0
- package/dist/models/ApiWeb3RewardGetFilterParameter.d.ts +6 -0
- package/dist/models/ApiWeb3RewardGetFilterParameter.js +2 -0
- package/models/ApiPadelMatchesGetFilterParameterName.ts +8 -0
- package/models/ApiWeb3RewardGetFilterParameter.ts +8 -0
- package/package.json +1 -1
package/deploy.log
CHANGED
|
@@ -753,21 +753,21 @@
|
|
|
753
753
|
# https://opencollective.com/openapi_generator/donate #
|
|
754
754
|
################################################################################
|
|
755
755
|
✅ SDK generated
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
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.
|
|
762
|
+
v1.1.374
|
|
763
763
|
To https://gitlab.com/drx-super/drx-sdk.git
|
|
764
|
-
|
|
764
|
+
a532b03..6b9fa48 master -> master
|
|
765
765
|
✅ Version bumped
|
|
766
766
|
|
|
767
|
-
> @drxsuperapp/sdk@1.1.
|
|
767
|
+
> @drxsuperapp/sdk@1.1.374 prepublishOnly
|
|
768
768
|
> npm run build
|
|
769
769
|
|
|
770
770
|
|
|
771
|
-
> @drxsuperapp/sdk@1.1.
|
|
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
|
|