@drxsuperapp/sdk 1.1.361 → 1.1.363
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
|
@@ -727,21 +727,20 @@
|
|
|
727
727
|
# https://opencollective.com/openapi_generator/donate #
|
|
728
728
|
################################################################################
|
|
729
729
|
✅ SDK generated
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
Everything up-to-date
|
|
730
|
+
[master 7bcd2b0] VPS: Generated API SDK
|
|
731
|
+
1 file changed, 15 insertions(+)
|
|
732
|
+
To https://gitlab.com/drx-super/drx-sdk.git
|
|
733
|
+
a60c918..7bcd2b0 master -> master
|
|
735
734
|
✅ Changes committed and pushed
|
|
736
|
-
v1.1.
|
|
735
|
+
v1.1.363
|
|
737
736
|
To https://gitlab.com/drx-super/drx-sdk.git
|
|
738
|
-
|
|
737
|
+
7bcd2b0..aedc56c master -> master
|
|
739
738
|
✅ Version bumped
|
|
740
739
|
|
|
741
|
-
> @drxsuperapp/sdk@1.1.
|
|
740
|
+
> @drxsuperapp/sdk@1.1.363 prepublishOnly
|
|
742
741
|
> npm run build
|
|
743
742
|
|
|
744
743
|
|
|
745
|
-
> @drxsuperapp/sdk@1.1.
|
|
744
|
+
> @drxsuperapp/sdk@1.1.363 build
|
|
746
745
|
> tsc
|
|
747
746
|
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import type { ApiPadelMatchesGetFilterParameterName } from './ApiPadelMatchesGetFilterParameterName';
|
|
13
|
+
import type { ApiPadelMatchesGetFilterParameterPlayedAt } from './ApiPadelMatchesGetFilterParameterPlayedAt';
|
|
13
14
|
/**
|
|
14
15
|
*
|
|
15
16
|
* @export
|
|
@@ -28,6 +29,12 @@ export interface ApiWeb3RedemptionGetFilterParameter {
|
|
|
28
29
|
* @memberof ApiWeb3RedemptionGetFilterParameter
|
|
29
30
|
*/
|
|
30
31
|
txHash?: ApiPadelMatchesGetFilterParameterName;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {ApiPadelMatchesGetFilterParameterPlayedAt}
|
|
35
|
+
* @memberof ApiWeb3RedemptionGetFilterParameter
|
|
36
|
+
*/
|
|
37
|
+
createdAt?: ApiPadelMatchesGetFilterParameterPlayedAt;
|
|
31
38
|
}
|
|
32
39
|
/**
|
|
33
40
|
* Check if a given object implements the ApiWeb3RedemptionGetFilterParameter interface.
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
* Do not edit the class manually.
|
|
13
13
|
*/
|
|
14
14
|
import { ApiPadelMatchesGetFilterParameterNameFromJSON, ApiPadelMatchesGetFilterParameterNameToJSON, } from './ApiPadelMatchesGetFilterParameterName';
|
|
15
|
+
import { ApiPadelMatchesGetFilterParameterPlayedAtFromJSON, ApiPadelMatchesGetFilterParameterPlayedAtToJSON, } from './ApiPadelMatchesGetFilterParameterPlayedAt';
|
|
15
16
|
/**
|
|
16
17
|
* Check if a given object implements the ApiWeb3RedemptionGetFilterParameter interface.
|
|
17
18
|
*/
|
|
@@ -28,6 +29,7 @@ export function ApiWeb3RedemptionGetFilterParameterFromJSONTyped(json, ignoreDis
|
|
|
28
29
|
return {
|
|
29
30
|
'status': json['status'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['status']),
|
|
30
31
|
'txHash': json['txHash'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['txHash']),
|
|
32
|
+
'createdAt': json['createdAt'] == null ? undefined : ApiPadelMatchesGetFilterParameterPlayedAtFromJSON(json['createdAt']),
|
|
31
33
|
};
|
|
32
34
|
}
|
|
33
35
|
export function ApiWeb3RedemptionGetFilterParameterToJSON(json) {
|
|
@@ -40,5 +42,6 @@ export function ApiWeb3RedemptionGetFilterParameterToJSONTyped(value, ignoreDisc
|
|
|
40
42
|
return {
|
|
41
43
|
'status': ApiPadelMatchesGetFilterParameterNameToJSON(value['status']),
|
|
42
44
|
'txHash': ApiPadelMatchesGetFilterParameterNameToJSON(value['txHash']),
|
|
45
|
+
'createdAt': ApiPadelMatchesGetFilterParameterPlayedAtToJSON(value['createdAt']),
|
|
43
46
|
};
|
|
44
47
|
}
|
|
@@ -20,6 +20,13 @@ import {
|
|
|
20
20
|
ApiPadelMatchesGetFilterParameterNameToJSON,
|
|
21
21
|
ApiPadelMatchesGetFilterParameterNameToJSONTyped,
|
|
22
22
|
} from './ApiPadelMatchesGetFilterParameterName';
|
|
23
|
+
import type { ApiPadelMatchesGetFilterParameterPlayedAt } from './ApiPadelMatchesGetFilterParameterPlayedAt';
|
|
24
|
+
import {
|
|
25
|
+
ApiPadelMatchesGetFilterParameterPlayedAtFromJSON,
|
|
26
|
+
ApiPadelMatchesGetFilterParameterPlayedAtFromJSONTyped,
|
|
27
|
+
ApiPadelMatchesGetFilterParameterPlayedAtToJSON,
|
|
28
|
+
ApiPadelMatchesGetFilterParameterPlayedAtToJSONTyped,
|
|
29
|
+
} from './ApiPadelMatchesGetFilterParameterPlayedAt';
|
|
23
30
|
|
|
24
31
|
/**
|
|
25
32
|
*
|
|
@@ -39,6 +46,12 @@ export interface ApiWeb3RedemptionGetFilterParameter {
|
|
|
39
46
|
* @memberof ApiWeb3RedemptionGetFilterParameter
|
|
40
47
|
*/
|
|
41
48
|
txHash?: ApiPadelMatchesGetFilterParameterName;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {ApiPadelMatchesGetFilterParameterPlayedAt}
|
|
52
|
+
* @memberof ApiWeb3RedemptionGetFilterParameter
|
|
53
|
+
*/
|
|
54
|
+
createdAt?: ApiPadelMatchesGetFilterParameterPlayedAt;
|
|
42
55
|
}
|
|
43
56
|
|
|
44
57
|
/**
|
|
@@ -60,6 +73,7 @@ export function ApiWeb3RedemptionGetFilterParameterFromJSONTyped(json: any, igno
|
|
|
60
73
|
|
|
61
74
|
'status': json['status'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['status']),
|
|
62
75
|
'txHash': json['txHash'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['txHash']),
|
|
76
|
+
'createdAt': json['createdAt'] == null ? undefined : ApiPadelMatchesGetFilterParameterPlayedAtFromJSON(json['createdAt']),
|
|
63
77
|
};
|
|
64
78
|
}
|
|
65
79
|
|
|
@@ -76,6 +90,7 @@ export function ApiWeb3RedemptionGetFilterParameterToJSONTyped(value?: ApiWeb3Re
|
|
|
76
90
|
|
|
77
91
|
'status': ApiPadelMatchesGetFilterParameterNameToJSON(value['status']),
|
|
78
92
|
'txHash': ApiPadelMatchesGetFilterParameterNameToJSON(value['txHash']),
|
|
93
|
+
'createdAt': ApiPadelMatchesGetFilterParameterPlayedAtToJSON(value['createdAt']),
|
|
79
94
|
};
|
|
80
95
|
}
|
|
81
96
|
|