quankee-framework-report 1.5.0 → 1.5.1
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.
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
class ReportModuleService {
|
|
2
|
+
http;
|
|
3
|
+
constructor(http) {
|
|
4
|
+
this.http = http;
|
|
5
|
+
}
|
|
6
|
+
getReportModules(baseUrl) {
|
|
7
|
+
return this.http.get(`${baseUrl}/api/report/engine/module`);
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
1
11
|
/*
|
|
2
12
|
* Public API Surface of quankee-framework-report
|
|
3
13
|
*/
|
|
@@ -5,4 +15,6 @@
|
|
|
5
15
|
/**
|
|
6
16
|
* Generated bundle index. Do not edit.
|
|
7
17
|
*/
|
|
18
|
+
|
|
19
|
+
export { ReportModuleService };
|
|
8
20
|
//# sourceMappingURL=quankee-framework-report.mjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"quankee-framework-report.mjs","sources":["../../../projects/quankee-framework-report/src/public-api.ts","../../../projects/quankee-framework-report/src/quankee-framework-report.ts"],"sourcesContent":["/*\n * Public API Surface of quankee-framework-report\n */\n\nexport * from './lib/core/module/report-module';\n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"quankee-framework-report.mjs","sources":["../../../projects/quankee-framework-report/src/lib/core/module/report-module.service.ts","../../../projects/quankee-framework-report/src/public-api.ts","../../../projects/quankee-framework-report/src/quankee-framework-report.ts"],"sourcesContent":["import {HttpClient} from '@angular/common/http';\nimport {Observable} from 'rxjs';\nimport {Response} from 'quankee-framework-response';\nimport {ReportModule} from './report-module';\n\nexport class ReportModuleService {\n\n constructor(private readonly http: HttpClient) { }\n\n getReportModules(baseUrl: string): Observable<Response<ReportModule[]>> {\n return this.http.get<Response<ReportModule[]>>(`${baseUrl}/api/report/engine/module`);\n }\n}\n","/*\n * Public API Surface of quankee-framework-report\n */\n\n\nexport * from './lib/core/module/report-module';\n\nexport * from './lib/core/module/report-module.service'\n\n\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"MAKa,mBAAmB,CAAA;AAED,IAAA,IAAA;AAA7B,IAAA,WAAA,CAA6B,IAAgB,EAAA;QAAhB,IAAI,CAAA,IAAA,GAAJ,IAAI;;AAEjC,IAAA,gBAAgB,CAAC,OAAe,EAAA;QAC9B,OAAO,IAAI,CAAC,IAAI,CAAC,GAAG,CAA2B,CAAG,EAAA,OAAO,CAA2B,yBAAA,CAAA,CAAC;;AAExF;;ACZD;;AAEG;;ACFH;;AAEG;;;;"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { Response } from 'quankee-framework-response';
|
|
4
|
+
import { ReportModule } from './report-module';
|
|
5
|
+
export declare class ReportModuleService {
|
|
6
|
+
private readonly http;
|
|
7
|
+
constructor(http: HttpClient);
|
|
8
|
+
getReportModules(baseUrl: string): Observable<Response<ReportModule[]>>;
|
|
9
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED