@drxsuperapp/sdk 1.1.447 → 1.1.450
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,20 +875,15 @@ 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.
|
|
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
|
|
878
|
+
v1.1.450
|
|
884
879
|
To https://gitlab.com/drx-super/drx-sdk.git
|
|
885
|
-
|
|
880
|
+
9dc9130..31e4df4 master -> master
|
|
886
881
|
✅ Version bumped
|
|
887
882
|
|
|
888
|
-
> @drxsuperapp/sdk@1.1.
|
|
883
|
+
> @drxsuperapp/sdk@1.1.450 prepublishOnly
|
|
889
884
|
> npm run build
|
|
890
885
|
|
|
891
886
|
|
|
892
|
-
> @drxsuperapp/sdk@1.1.
|
|
887
|
+
> @drxsuperapp/sdk@1.1.450 build
|
|
893
888
|
> tsc
|
|
894
889
|
|
|
@@ -57,6 +57,12 @@ export interface ApiWalletBindPost200ResponseResponseObject {
|
|
|
57
57
|
* @memberof ApiWalletBindPost200ResponseResponseObject
|
|
58
58
|
*/
|
|
59
59
|
unbinded_at: string;
|
|
60
|
+
/**
|
|
61
|
+
*
|
|
62
|
+
* @type {boolean}
|
|
63
|
+
* @memberof ApiWalletBindPost200ResponseResponseObject
|
|
64
|
+
*/
|
|
65
|
+
isFirstTimeBind?: boolean;
|
|
60
66
|
}
|
|
61
67
|
/**
|
|
62
68
|
* Check if a given object implements the ApiWalletBindPost200ResponseResponseObject interface.
|
|
@@ -42,6 +42,7 @@ export function ApiWalletBindPost200ResponseResponseObjectFromJSONTyped(json, ig
|
|
|
42
42
|
'is_active': json['is_active'],
|
|
43
43
|
'binded_at': json['binded_at'],
|
|
44
44
|
'unbinded_at': json['unbinded_at'],
|
|
45
|
+
'isFirstTimeBind': json['isFirstTimeBind'] == null ? undefined : json['isFirstTimeBind'],
|
|
45
46
|
};
|
|
46
47
|
}
|
|
47
48
|
export function ApiWalletBindPost200ResponseResponseObjectToJSON(json) {
|
|
@@ -59,5 +60,6 @@ export function ApiWalletBindPost200ResponseResponseObjectToJSONTyped(value, ign
|
|
|
59
60
|
'is_active': value['is_active'],
|
|
60
61
|
'binded_at': value['binded_at'],
|
|
61
62
|
'unbinded_at': value['unbinded_at'],
|
|
63
|
+
'isFirstTimeBind': value['isFirstTimeBind'],
|
|
62
64
|
};
|
|
63
65
|
}
|
|
@@ -61,6 +61,12 @@ export interface ApiWalletBindPost200ResponseResponseObject {
|
|
|
61
61
|
* @memberof ApiWalletBindPost200ResponseResponseObject
|
|
62
62
|
*/
|
|
63
63
|
unbinded_at: string;
|
|
64
|
+
/**
|
|
65
|
+
*
|
|
66
|
+
* @type {boolean}
|
|
67
|
+
* @memberof ApiWalletBindPost200ResponseResponseObject
|
|
68
|
+
*/
|
|
69
|
+
isFirstTimeBind?: boolean;
|
|
64
70
|
}
|
|
65
71
|
|
|
66
72
|
/**
|
|
@@ -92,6 +98,7 @@ export function ApiWalletBindPost200ResponseResponseObjectFromJSONTyped(json: an
|
|
|
92
98
|
'is_active': json['is_active'],
|
|
93
99
|
'binded_at': json['binded_at'],
|
|
94
100
|
'unbinded_at': json['unbinded_at'],
|
|
101
|
+
'isFirstTimeBind': json['isFirstTimeBind'] == null ? undefined : json['isFirstTimeBind'],
|
|
95
102
|
};
|
|
96
103
|
}
|
|
97
104
|
|
|
@@ -113,6 +120,7 @@ export function ApiWalletBindPost200ResponseResponseObjectToJSONTyped(value?: Ap
|
|
|
113
120
|
'is_active': value['is_active'],
|
|
114
121
|
'binded_at': value['binded_at'],
|
|
115
122
|
'unbinded_at': value['unbinded_at'],
|
|
123
|
+
'isFirstTimeBind': value['isFirstTimeBind'],
|
|
116
124
|
};
|
|
117
125
|
}
|
|
118
126
|
|