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 CHANGED
@@ -401,8 +401,8 @@ var PricingModule = class {
401
401
  * ```
402
402
  */
403
403
  async getAppPricing() {
404
- const response = await this.httpClient.get("/api/v1/dev/pricing");
405
- return response.data;
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 response = await this.httpClient.get("/api/v1/dev/pricing");
373
- return response.data;
372
+ const pricing = await this.httpClient.get("/api/v1/dev/pricing");
373
+ return pricing;
374
374
  }
375
375
  };
376
376
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "authtara-sdk",
3
- "version": "1.1.7",
3
+ "version": "1.1.8",
4
4
  "description": "SDK Client untuk integrasi dengan DigitalSolution Platform - SSO, Billing, dan Metering",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",