curtain-web-api 1.0.24 → 1.0.25
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.
|
@@ -155,6 +155,7 @@ class CurtainWebAPI {
|
|
|
155
155
|
this.user.curtainLinkLimit = response.data.curtain_link_limit;
|
|
156
156
|
this.user.totalCurtain = response.data.total_curtain;
|
|
157
157
|
this.user.curtainLinkLimitExceeded = response.data.curtain_link_limit_exceeded;
|
|
158
|
+
console.log(this.user);
|
|
158
159
|
return this.user.updateDB().then((response) => {
|
|
159
160
|
return this.user;
|
|
160
161
|
});
|
package/package.json
CHANGED
|
@@ -135,7 +135,9 @@ export class CurtainWebAPI {
|
|
|
135
135
|
this.user.curtainLinkLimit = response.data.curtain_link_limit;
|
|
136
136
|
this.user.totalCurtain = response.data.total_curtain;
|
|
137
137
|
this.user.curtainLinkLimitExceeded = response.data.curtain_link_limit_exceeded;
|
|
138
|
+
console.log(this.user)
|
|
138
139
|
return this.user.updateDB().then((response) => {
|
|
140
|
+
|
|
139
141
|
return this.user;
|
|
140
142
|
});
|
|
141
143
|
|