ionic-vhframeworks 9.2.0 → 9.2.2
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.
|
@@ -12626,7 +12626,7 @@ export declare class VhQueryAutoWeb {
|
|
|
12626
12626
|
/**
|
|
12627
12627
|
* Tạo mới hosting bởi EndUser
|
|
12628
12628
|
* @example
|
|
12629
|
-
* this.vhQueryAutoWeb.createHosting_byEndUser('
|
|
12629
|
+
* this.vhQueryAutoWeb.createHosting_byEndUser('subdomain')
|
|
12630
12630
|
.then(rsp=>{
|
|
12631
12631
|
console.log('createHosting_byEndUser', rsp);
|
|
12632
12632
|
if(rsp.vcode === 0){
|
|
@@ -12635,10 +12635,10 @@ export declare class VhQueryAutoWeb {
|
|
|
12635
12635
|
},(error:any)=>{
|
|
12636
12636
|
console.log('error', error)
|
|
12637
12637
|
})
|
|
12638
|
-
* @param
|
|
12638
|
+
* @param subdomain: abcd.webappgiare.vn
|
|
12639
12639
|
* @returns Promise object => response = {vcode, msg, data}
|
|
12640
12640
|
*/
|
|
12641
|
-
createHosting_byEndUser(
|
|
12641
|
+
createHosting_byEndUser(subdomain: string): Promise<any>;
|
|
12642
12642
|
/**
|
|
12643
12643
|
* xóa hosting bởi EndUser
|
|
12644
12644
|
* @example
|
|
@@ -18725,15 +18725,19 @@ export declare class VhBuildAutoWeb {
|
|
|
18725
18725
|
* vcode == 4: Please reset your password
|
|
18726
18726
|
*/
|
|
18727
18727
|
onAuthStateChangedEndUser(): Promise<any>;
|
|
18728
|
+
/**
|
|
18729
|
+
*
|
|
18730
|
+
* @returns
|
|
18731
|
+
*/
|
|
18728
18732
|
getHostings_byEndUser(): Promise<any>;
|
|
18729
18733
|
/**
|
|
18730
18734
|
* vhBuildAutoWeb
|
|
18731
|
-
* @param
|
|
18735
|
+
* @param subdomain
|
|
18732
18736
|
* @returns
|
|
18733
18737
|
*/
|
|
18734
|
-
createHosting_byEndUser(
|
|
18738
|
+
createHosting_byEndUser(subdomain: string): Promise<any>;
|
|
18735
18739
|
/**
|
|
18736
|
-
*
|
|
18740
|
+
* vhBuildAutoWeb
|
|
18737
18741
|
* @param hosting
|
|
18738
18742
|
* @returns
|
|
18739
18743
|
*/
|
|
@@ -20261,13 +20265,21 @@ export declare class VhDesignAutoWeb {
|
|
|
20261
20265
|
* vcode == 4: Please reset your password
|
|
20262
20266
|
*/
|
|
20263
20267
|
onAuthStateChangedEndUser(database: string): Promise<any>;
|
|
20264
|
-
|
|
20268
|
+
/**
|
|
20269
|
+
* vhDesignAutoWeb
|
|
20270
|
+
*/
|
|
20271
|
+
getHostings_byEndUser(): Promise<any>;
|
|
20272
|
+
/**
|
|
20273
|
+
* vhDesignAutoWeb
|
|
20274
|
+
* @param subdomain
|
|
20275
|
+
* @returns
|
|
20276
|
+
*/
|
|
20277
|
+
createHosting_byEndUser(subdomain: string): Promise<any>;
|
|
20265
20278
|
/**
|
|
20266
20279
|
* vhDesignAutoWeb
|
|
20267
20280
|
* @param hosting
|
|
20268
20281
|
* @returns
|
|
20269
20282
|
*/
|
|
20270
|
-
createHosting_byEndUser(hosting: string): Promise<any>;
|
|
20271
20283
|
removeHosting_byEndUser(hosting: string): Promise<any>;
|
|
20272
20284
|
/**
|
|
20273
20285
|
* @example
|
|
@@ -20306,7 +20318,7 @@ export declare class VhDesignAutoWeb {
|
|
|
20306
20318
|
* vcode == 0: success
|
|
20307
20319
|
* vcode == 2: wrong projectname
|
|
20308
20320
|
*/
|
|
20309
|
-
updateEndUser(
|
|
20321
|
+
updateEndUser(value: object): Promise<unknown>;
|
|
20310
20322
|
/**
|
|
20311
20323
|
* Hàm này xóa email người dùng webapp (người dùng đã nhập vào webapp mới xóa được)
|
|
20312
20324
|
* @example:
|
|
@@ -20323,7 +20335,7 @@ export declare class VhDesignAutoWeb {
|
|
|
20323
20335
|
* @return Promise object => response = {vcode, msg}
|
|
20324
20336
|
* vcode == 0: Deleted successfully
|
|
20325
20337
|
*/
|
|
20326
|
-
deleteEndUser(
|
|
20338
|
+
deleteEndUser(): Promise<unknown>;
|
|
20327
20339
|
/**
|
|
20328
20340
|
* Hàm này người thiết kế ở (vhuserweb) tạo tài khoản cho khách hàng của họ ở (vhdevweb)
|
|
20329
20341
|
* @example:
|