@drxsuperapp/sdk 1.1.445 → 1.1.447

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
@@ -875,15 +875,20 @@ Your branch is up to date with 'origin/master'.
875
875
  nothing to commit, working tree clean
876
876
  Everything up-to-date
877
877
  ✅ Changes committed and pushed
878
- v1.1.445
878
+ v1.1.447
879
+ npm notice
880
+ npm notice New major version of npm available! 10.9.2 -> 11.6.1
881
+ npm notice Changelog: https://github.com/npm/cli/releases/tag/v11.6.1
882
+ npm notice To update run: npm install -g npm@11.6.1
883
+ npm notice
879
884
  To https://gitlab.com/drx-super/drx-sdk.git
880
- 2b14389..1c539fb master -> master
885
+ cbf7f5a..ff0628f master -> master
881
886
  ✅ Version bumped
882
887
 
883
- > @drxsuperapp/sdk@1.1.445 prepublishOnly
888
+ > @drxsuperapp/sdk@1.1.447 prepublishOnly
884
889
  > npm run build
885
890
 
886
891
 
887
- > @drxsuperapp/sdk@1.1.445 build
892
+ > @drxsuperapp/sdk@1.1.447 build
888
893
  > tsc
889
894
 
@@ -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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drxsuperapp/sdk",
3
- "version": "1.1.445",
3
+ "version": "1.1.447",
4
4
  "main": "index.ts",
5
5
  "types": "index.ts",
6
6
  "scripts": {