@vtecx/vtecxnext 2.2.15 → 2.2.16
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/dist/vtecxnext.js +4 -4
- package/package.json +1 -1
package/dist/vtecxnext.js
CHANGED
|
@@ -2828,7 +2828,7 @@ class VtecxNext {
|
|
|
2828
2828
|
checkNotNull(account, 'account');
|
|
2829
2829
|
// vte.cxへリクエスト
|
|
2830
2830
|
const method = 'PUT';
|
|
2831
|
-
const url = `${
|
|
2831
|
+
const url = `${SERVLETPATH_PROVIDER}/?_revokeuser=${account}${isDeleteGroups ? '&_deletegroup=true' : ''}`;
|
|
2832
2832
|
let response;
|
|
2833
2833
|
try {
|
|
2834
2834
|
response = await this.requestVtecx(method, url);
|
|
@@ -2872,7 +2872,7 @@ class VtecxNext {
|
|
|
2872
2872
|
}
|
|
2873
2873
|
// vte.cxへリクエスト
|
|
2874
2874
|
const method = 'PUT';
|
|
2875
|
-
const url = `${
|
|
2875
|
+
const url = `${SERVLETPATH_PROVIDER}/?_revokeuser${isDeleteGroups ? '&_deletegroup=true' : ''}`;
|
|
2876
2876
|
let response;
|
|
2877
2877
|
try {
|
|
2878
2878
|
response = await this.requestVtecx(method, url, JSON.stringify(feed));
|
|
@@ -2898,7 +2898,7 @@ class VtecxNext {
|
|
|
2898
2898
|
checkNotNull(account, 'account');
|
|
2899
2899
|
// vte.cxへリクエスト
|
|
2900
2900
|
const method = 'PUT';
|
|
2901
|
-
const url = `${
|
|
2901
|
+
const url = `${SERVLETPATH_PROVIDER}/?_activateuser=${account}`;
|
|
2902
2902
|
let response;
|
|
2903
2903
|
try {
|
|
2904
2904
|
response = await this.requestVtecx(method, url);
|
|
@@ -2941,7 +2941,7 @@ class VtecxNext {
|
|
|
2941
2941
|
}
|
|
2942
2942
|
// vte.cxへリクエスト
|
|
2943
2943
|
const method = 'PUT';
|
|
2944
|
-
const url = `${
|
|
2944
|
+
const url = `${SERVLETPATH_PROVIDER}/?_activateuser`;
|
|
2945
2945
|
let response;
|
|
2946
2946
|
try {
|
|
2947
2947
|
response = await this.requestVtecx(method, url, JSON.stringify(feed));
|