@devlearning/swagger-generator 0.0.13 → 0.0.14
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/api.constants.js +2 -2
- package/package.json +1 -1
- package/src/api.constants.ts +2 -2
package/dist/api.constants.js
CHANGED
|
@@ -5,8 +5,8 @@ import * as Models from './model.autogenerated';
|
|
|
5
5
|
|
|
6
6
|
export abstract class ApiAutogeneratedService {
|
|
7
7
|
constructor(
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
public _http: HttpClient,
|
|
9
|
+
public _baseUrl: string,
|
|
10
10
|
) { }
|
|
11
11
|
|
|
12
12
|
protected abstract _handleRequest<T>(request: T): T;
|
package/package.json
CHANGED
package/src/api.constants.ts
CHANGED
|
@@ -6,8 +6,8 @@ import * as Models from './model.autogenerated';
|
|
|
6
6
|
|
|
7
7
|
export abstract class ApiAutogeneratedService {
|
|
8
8
|
constructor(
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
public _http: HttpClient,
|
|
10
|
+
public _baseUrl: string,
|
|
11
11
|
) { }
|
|
12
12
|
|
|
13
13
|
protected abstract _handleRequest<T>(request: T): T;
|