@drxsuperapp/sdk 1.1.446 → 1.1.449

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,20 +869,21 @@
869
869
  # https://opencollective.com/openapi_generator/donate #
870
870
  ################################################################################
871
871
  ✅ SDK generated
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
872
+ On branch master
873
+ Your branch is up to date with 'origin/master'.
874
+
875
+ nothing to commit, working tree clean
876
+ Everything up-to-date
876
877
  ✅ Changes committed and pushed
877
- v1.1.446
878
+ v1.1.449
878
879
  To https://gitlab.com/drx-super/drx-sdk.git
879
- fa967c3..cbf7f5a master -> master
880
+ 192d08a..9dc9130 master -> master
880
881
  ✅ Version bumped
881
882
 
882
- > @drxsuperapp/sdk@1.1.446 prepublishOnly
883
+ > @drxsuperapp/sdk@1.1.449 prepublishOnly
883
884
  > npm run build
884
885
 
885
886
 
886
- > @drxsuperapp/sdk@1.1.446 build
887
+ > @drxsuperapp/sdk@1.1.449 build
887
888
  > tsc
888
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drxsuperapp/sdk",
3
- "version": "1.1.446",
3
+ "version": "1.1.449",
4
4
  "main": "index.ts",
5
5
  "types": "index.ts",
6
6
  "scripts": {