ionic-vhframeworks 9.1.5 → 9.1.7
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.
|
@@ -12601,7 +12601,8 @@ export declare class VhQueryAutoWeb {
|
|
|
12601
12601
|
* this.vhQueryAutoWeb.createHosting_byEndUser()
|
|
12602
12602
|
* @returns
|
|
12603
12603
|
*/
|
|
12604
|
-
createHosting_byEndUser(): Promise<any>;
|
|
12604
|
+
createHosting_byEndUser(hosting: string): Promise<any>;
|
|
12605
|
+
removeHosting_byEndUser(hosting: string): Promise<any>;
|
|
12605
12606
|
/**
|
|
12606
12607
|
* @example
|
|
12607
12608
|
* this.vhQueryAutoWeb.signoutEndUser();
|
|
@@ -15231,10 +15232,10 @@ export declare class VhQueryAutoWeb {
|
|
|
15231
15232
|
addCustomer(data: any): Promise<unknown>;
|
|
15232
15233
|
/**
|
|
15233
15234
|
* @example:
|
|
15234
|
-
* this.vhQueryAutoWeb.
|
|
15235
|
+
* this.vhQueryAutoWeb.updateCustomer('5fb6780ca2148e09806c5b01', {hidden:true})
|
|
15235
15236
|
.then((rsp:any)=>{
|
|
15236
15237
|
if(rsp.vcode === 0){
|
|
15237
|
-
console.log('
|
|
15238
|
+
console.log('updateCustomer succeed');
|
|
15238
15239
|
}
|
|
15239
15240
|
}, error=>{
|
|
15240
15241
|
console.log('error', error);
|
|
@@ -18830,7 +18831,7 @@ export declare class VhBuildAutoWeb {
|
|
|
18830
18831
|
* @return Promise => rsp.data ={vcode, msg, data(array(object) = [{},{},..])} / error
|
|
18831
18832
|
* @notice : hàm này chỉ add được dữ liệu sau khi khách hàng hoặc nhân viên đã đăng nhập
|
|
18832
18833
|
* vcode == 0: success
|
|
18833
|
-
* vcode == 11: 'not logged in
|
|
18834
|
+
* vcode == 11: 'not logged in'
|
|
18834
18835
|
* vcode == 2: wrong projectname
|
|
18835
18836
|
*/
|
|
18836
18837
|
dynamic_getDocs_fromDatabase_byFields(colname: string, query: any, projection?: object, sort?: any, limit?: number): Promise<unknown>;
|
|
@@ -19789,7 +19790,13 @@ export declare class VhDesignAutoWeb {
|
|
|
19789
19790
|
*/
|
|
19790
19791
|
onAuthStateChangedEndUser(database: string): Promise<any>;
|
|
19791
19792
|
getHostings_byEndUser(database: string): Promise<any>;
|
|
19793
|
+
/**
|
|
19794
|
+
* vhDesignAutoWeb
|
|
19795
|
+
* @param hosting
|
|
19796
|
+
* @returns
|
|
19797
|
+
*/
|
|
19792
19798
|
createHosting_byEndUser(hosting: string): Promise<any>;
|
|
19799
|
+
removeHosting_byEndUser(hosting: string): Promise<any>;
|
|
19793
19800
|
/**
|
|
19794
19801
|
* @example
|
|
19795
19802
|
* this.vhDesignAutoWeb.signoutEndUser();
|
|
@@ -19972,7 +19979,7 @@ export declare class VhDesignAutoWeb {
|
|
|
19972
19979
|
* @return Promise => rsp ={vcode, msg, data(object)} / error
|
|
19973
19980
|
* @notice : hàm này chỉ add được dữ liệu sau khi khách hàng hoặc nhân viên đã đăng nhập
|
|
19974
19981
|
* vcode == 0: success
|
|
19975
|
-
* vcode == 11: 'not logged in
|
|
19982
|
+
* vcode == 11: 'not logged in'
|
|
19976
19983
|
*/
|
|
19977
19984
|
addBranch(data: any): Promise<unknown>;
|
|
19978
19985
|
/**
|