@drxsuperapp/sdk 1.1.444 → 1.1.446
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
|
@@ -869,21 +869,20 @@
|
|
|
869
869
|
# https://opencollective.com/openapi_generator/donate #
|
|
870
870
|
################################################################################
|
|
871
871
|
✅ SDK generated
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
Everything up-to-date
|
|
872
|
+
[master fa967c3] VPS: Generated API SDK
|
|
873
|
+
1 file changed, 15 insertions(+)
|
|
874
|
+
To https://gitlab.com/drx-super/drx-sdk.git
|
|
875
|
+
1c539fb..fa967c3 master -> master
|
|
877
876
|
✅ Changes committed and pushed
|
|
878
|
-
v1.1.
|
|
877
|
+
v1.1.446
|
|
879
878
|
To https://gitlab.com/drx-super/drx-sdk.git
|
|
880
|
-
|
|
879
|
+
fa967c3..cbf7f5a master -> master
|
|
881
880
|
✅ Version bumped
|
|
882
881
|
|
|
883
|
-
> @drxsuperapp/sdk@1.1.
|
|
882
|
+
> @drxsuperapp/sdk@1.1.446 prepublishOnly
|
|
884
883
|
> npm run build
|
|
885
884
|
|
|
886
885
|
|
|
887
|
-
> @drxsuperapp/sdk@1.1.
|
|
886
|
+
> @drxsuperapp/sdk@1.1.446 build
|
|
888
887
|
> tsc
|
|
889
888
|
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import type { ApiPadelMatchesGetFilterParameterName } from './ApiPadelMatchesGetFilterParameterName';
|
|
13
|
+
import type { ApiGarudakuGameTopupsGetFilterParameterIsPopular } from './ApiGarudakuGameTopupsGetFilterParameterIsPopular';
|
|
13
14
|
/**
|
|
14
15
|
*
|
|
15
16
|
* @export
|
|
@@ -28,6 +29,12 @@ export interface ApiWeb3RewardGetFilterParameter {
|
|
|
28
29
|
* @memberof ApiWeb3RewardGetFilterParameter
|
|
29
30
|
*/
|
|
30
31
|
category?: ApiPadelMatchesGetFilterParameterName;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {ApiGarudakuGameTopupsGetFilterParameterIsPopular}
|
|
35
|
+
* @memberof ApiWeb3RewardGetFilterParameter
|
|
36
|
+
*/
|
|
37
|
+
is_popular?: ApiGarudakuGameTopupsGetFilterParameterIsPopular;
|
|
31
38
|
}
|
|
32
39
|
/**
|
|
33
40
|
* Check if a given object implements the ApiWeb3RewardGetFilterParameter interface.
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
14
|
import { ApiPadelMatchesGetFilterParameterNameFromJSON, ApiPadelMatchesGetFilterParameterNameToJSON, } from './ApiPadelMatchesGetFilterParameterName';
|
|
15
|
+
import { ApiGarudakuGameTopupsGetFilterParameterIsPopularFromJSON, ApiGarudakuGameTopupsGetFilterParameterIsPopularToJSON, } from './ApiGarudakuGameTopupsGetFilterParameterIsPopular';
|
|
15
16
|
/**
|
|
16
17
|
* Check if a given object implements the ApiWeb3RewardGetFilterParameter interface.
|
|
17
18
|
*/
|
|
@@ -28,6 +29,7 @@ export function ApiWeb3RewardGetFilterParameterFromJSONTyped(json, ignoreDiscrim
|
|
|
28
29
|
return {
|
|
29
30
|
'name': json['name'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['name']),
|
|
30
31
|
'category': json['category'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['category']),
|
|
32
|
+
'is_popular': json['is_popular'] == null ? undefined : ApiGarudakuGameTopupsGetFilterParameterIsPopularFromJSON(json['is_popular']),
|
|
31
33
|
};
|
|
32
34
|
}
|
|
33
35
|
export function ApiWeb3RewardGetFilterParameterToJSON(json) {
|
|
@@ -40,5 +42,6 @@ export function ApiWeb3RewardGetFilterParameterToJSONTyped(value, ignoreDiscrimi
|
|
|
40
42
|
return {
|
|
41
43
|
'name': ApiPadelMatchesGetFilterParameterNameToJSON(value['name']),
|
|
42
44
|
'category': ApiPadelMatchesGetFilterParameterNameToJSON(value['category']),
|
|
45
|
+
'is_popular': ApiGarudakuGameTopupsGetFilterParameterIsPopularToJSON(value['is_popular']),
|
|
43
46
|
};
|
|
44
47
|
}
|
|
@@ -20,6 +20,13 @@ import {
|
|
|
20
20
|
ApiPadelMatchesGetFilterParameterNameToJSON,
|
|
21
21
|
ApiPadelMatchesGetFilterParameterNameToJSONTyped,
|
|
22
22
|
} from './ApiPadelMatchesGetFilterParameterName';
|
|
23
|
+
import type { ApiGarudakuGameTopupsGetFilterParameterIsPopular } from './ApiGarudakuGameTopupsGetFilterParameterIsPopular';
|
|
24
|
+
import {
|
|
25
|
+
ApiGarudakuGameTopupsGetFilterParameterIsPopularFromJSON,
|
|
26
|
+
ApiGarudakuGameTopupsGetFilterParameterIsPopularFromJSONTyped,
|
|
27
|
+
ApiGarudakuGameTopupsGetFilterParameterIsPopularToJSON,
|
|
28
|
+
ApiGarudakuGameTopupsGetFilterParameterIsPopularToJSONTyped,
|
|
29
|
+
} from './ApiGarudakuGameTopupsGetFilterParameterIsPopular';
|
|
23
30
|
|
|
24
31
|
/**
|
|
25
32
|
*
|
|
@@ -39,6 +46,12 @@ export interface ApiWeb3RewardGetFilterParameter {
|
|
|
39
46
|
* @memberof ApiWeb3RewardGetFilterParameter
|
|
40
47
|
*/
|
|
41
48
|
category?: ApiPadelMatchesGetFilterParameterName;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {ApiGarudakuGameTopupsGetFilterParameterIsPopular}
|
|
52
|
+
* @memberof ApiWeb3RewardGetFilterParameter
|
|
53
|
+
*/
|
|
54
|
+
is_popular?: ApiGarudakuGameTopupsGetFilterParameterIsPopular;
|
|
42
55
|
}
|
|
43
56
|
|
|
44
57
|
/**
|
|
@@ -60,6 +73,7 @@ export function ApiWeb3RewardGetFilterParameterFromJSONTyped(json: any, ignoreDi
|
|
|
60
73
|
|
|
61
74
|
'name': json['name'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['name']),
|
|
62
75
|
'category': json['category'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['category']),
|
|
76
|
+
'is_popular': json['is_popular'] == null ? undefined : ApiGarudakuGameTopupsGetFilterParameterIsPopularFromJSON(json['is_popular']),
|
|
63
77
|
};
|
|
64
78
|
}
|
|
65
79
|
|
|
@@ -76,6 +90,7 @@ export function ApiWeb3RewardGetFilterParameterToJSONTyped(value?: ApiWeb3Reward
|
|
|
76
90
|
|
|
77
91
|
'name': ApiPadelMatchesGetFilterParameterNameToJSON(value['name']),
|
|
78
92
|
'category': ApiPadelMatchesGetFilterParameterNameToJSON(value['category']),
|
|
93
|
+
'is_popular': ApiGarudakuGameTopupsGetFilterParameterIsPopularToJSON(value['is_popular']),
|
|
79
94
|
};
|
|
80
95
|
}
|
|
81
96
|
|