authtara-sdk 1.1.7 → 1.1.8
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/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -401,8 +401,8 @@ var PricingModule = class {
|
|
|
401
401
|
* ```
|
|
402
402
|
*/
|
|
403
403
|
async getAppPricing() {
|
|
404
|
-
const
|
|
405
|
-
return
|
|
404
|
+
const pricing = await this.httpClient.get("/api/v1/dev/pricing");
|
|
405
|
+
return pricing;
|
|
406
406
|
}
|
|
407
407
|
};
|
|
408
408
|
|
package/dist/index.mjs
CHANGED
|
@@ -369,8 +369,8 @@ var PricingModule = class {
|
|
|
369
369
|
* ```
|
|
370
370
|
*/
|
|
371
371
|
async getAppPricing() {
|
|
372
|
-
const
|
|
373
|
-
return
|
|
372
|
+
const pricing = await this.httpClient.get("/api/v1/dev/pricing");
|
|
373
|
+
return pricing;
|
|
374
374
|
}
|
|
375
375
|
};
|
|
376
376
|
|
package/package.json
CHANGED