ionic-vhframeworks 3.6.5 → 3.6.6
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/bundles/ionic-vhframeworks.umd.js +1 -1
- package/bundles/ionic-vhframeworks.umd.js.map +1 -1
- package/bundles/ionic-vhframeworks.umd.min.js +1 -1
- package/bundles/ionic-vhframeworks.umd.min.js.map +1 -1
- package/fesm2015/ionic-vhframeworks.js.map +1 -1
- package/ionic-vhframeworks.metadata.json +1 -1
- package/lib/ionic-vhframeworks.service.d.ts +12 -0
- package/package.json +1 -1
|
@@ -6997,6 +6997,18 @@ export declare class VhQuerySales {
|
|
|
6997
6997
|
private subjectwarrantys;
|
|
6998
6998
|
constructor(vhmongo_firebase: Vhmongo_firebase, vhQuery: VhQuery, vhAuth: VhAuth, vhAlgorithm: VhAlgorithm, iap2: InAppPurchase2, platform: Platform);
|
|
6999
6999
|
/**------------------------TIKI Ecommerce-------------------------- */
|
|
7000
|
+
/**
|
|
7001
|
+
* @example:
|
|
7002
|
+
* this.vhQuerySales.GetShippingStampForDropshipTiki(code, access_token).then((result)=>{
|
|
7003
|
+
console.log('result', result);
|
|
7004
|
+
},error=>{
|
|
7005
|
+
console.log('error', error);
|
|
7006
|
+
})
|
|
7007
|
+
* @param code :string
|
|
7008
|
+
* @param access_token :string
|
|
7009
|
+
* @returns Promise
|
|
7010
|
+
*/
|
|
7011
|
+
GetShippingStampForDropshipTiki(code: string, access_token: string): Promise<unknown>;
|
|
7000
7012
|
/**
|
|
7001
7013
|
* @example:
|
|
7002
7014
|
* this.vhQuerySales.getSellerInventoriesForConfirmationTiki(access_token).then((result)=>{
|