@onhand-bi/sdk 0.1.10 → 0.1.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onhand-bi/sdk",
3
- "version": "0.1.10",
3
+ "version": "0.1.12",
4
4
  "description": "OnhandBI SDK",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -2,6 +2,8 @@ import { AppResponse, Report, ReportResponse } from '../models';
2
2
  export declare class ClientService {
3
3
  static validateToken(token: string): Promise<import("axios").AxiosResponse<any, any>>;
4
4
  static getReports(token: string, requestParams?: any): Promise<Report>;
5
+ static getSubscriberReports(token: string, requestParams?: any): Promise<Report>;
6
+ static getTemplateReports(token: string, requestParams?: any): Promise<Report>;
5
7
  static getAppsOwner(token: string, requestParams?: any): Promise<Report>;
6
8
  static getAppsSubscribes(token: string, requestParams?: any): Promise<Report>;
7
9
  static getReport(token: string, reportId: number, isOwner?: boolean): Promise<ReportResponse>;