angular-in-memory-web-api
Advanced tools
Comparing version 0.9.0 to 0.10.0
@@ -18,3 +18,3 @@ import { Observable, BehaviorSubject } from 'rxjs'; | ||
constructor(inMemDbService: InMemoryDbService, config?: InMemoryBackendConfigArgs); | ||
protected readonly dbReady: Observable<boolean>; | ||
protected get dbReady(): Observable<boolean>; | ||
/** | ||
@@ -21,0 +21,0 @@ * Process Request and return an Observable of Http Response object |
@@ -12,2 +12,8 @@ # "angular-in-memory-web-api" versions | ||
<a id="0.10.0"></a> | ||
## 0.10.0 (2020-03-12) | ||
* update to support Angular version 9.x and forward | ||
* no functional changes | ||
<a id="0.9.0"></a> | ||
@@ -14,0 +20,0 @@ ## 0.9.0 (2019-06-20) |
@@ -21,3 +21,3 @@ import { ModuleWithProviders, Type } from '@angular/core'; | ||
*/ | ||
static forRoot(dbCreator: Type<InMemoryDbService>, options?: InMemoryBackendConfigArgs): ModuleWithProviders; | ||
static forRoot(dbCreator: Type<InMemoryDbService>, options?: InMemoryBackendConfigArgs): ModuleWithProviders<HttpClientInMemoryWebApiModule>; | ||
/** | ||
@@ -29,3 +29,3 @@ * | ||
*/ | ||
static forFeature(dbCreator: Type<InMemoryDbService>, options?: InMemoryBackendConfigArgs): ModuleWithProviders; | ||
static forFeature(dbCreator: Type<InMemoryDbService>, options?: InMemoryBackendConfigArgs): ModuleWithProviders<HttpClientInMemoryWebApiModule>; | ||
} |
@@ -19,3 +19,3 @@ import { ModuleWithProviders, Type } from '@angular/core'; | ||
*/ | ||
static forRoot(dbCreator: Type<InMemoryDbService>, options?: InMemoryBackendConfigArgs): ModuleWithProviders; | ||
static forRoot(dbCreator: Type<InMemoryDbService>, options?: InMemoryBackendConfigArgs): ModuleWithProviders<InMemoryWebApiModule>; | ||
/** | ||
@@ -27,3 +27,3 @@ * | ||
*/ | ||
static forFeature(dbCreator: Type<InMemoryDbService>, options?: InMemoryBackendConfigArgs): ModuleWithProviders; | ||
static forFeature(dbCreator: Type<InMemoryDbService>, options?: InMemoryBackendConfigArgs): ModuleWithProviders<InMemoryWebApiModule>; | ||
} |
{ | ||
"name": "angular-in-memory-web-api", | ||
"version": "0.9.0", | ||
"version": "0.10.0", | ||
"description": "An in-memory web api for Angular demos and tests", | ||
@@ -32,19 +32,19 @@ "main": "bundles/in-memory-web-api.umd.js", | ||
"peerDependencies": { | ||
"@angular/common": ">=8.0.0", | ||
"@angular/core": ">=8.0.0", | ||
"@angular/common": ">=9.0.0", | ||
"@angular/core": ">=9.0.0", | ||
"rxjs": "^6.0.0" | ||
}, | ||
"devDependencies": { | ||
"@angular/animations": "^8.0.0", | ||
"@angular/common": "^8.0.0", | ||
"@angular/compiler": "^8.0.0", | ||
"@angular/compiler-cli": "^8.0.0", | ||
"@angular/core": "^8.0.0", | ||
"@angular/platform-browser": "^8.0.0", | ||
"@angular/platform-browser-dynamic": "^8.0.0", | ||
"@angular/platform-server": "^8.0.0", | ||
"@angular/animations": "^9.0.0", | ||
"@angular/common": "^9.0.0", | ||
"@angular/compiler": "^9.0.0", | ||
"@angular/compiler-cli": "^9.0.0", | ||
"@angular/core": "^9.0.0", | ||
"@angular/platform-browser": "^9.0.0", | ||
"@angular/platform-browser-dynamic": "^9.0.0", | ||
"@angular/platform-server": "^9.0.0", | ||
"@types/jasmine": "2.8.7", | ||
"@types/jasminewd2": "~2.0.3", | ||
"@types/jasmine-ajax": "^3.1.37", | ||
"@types/node": "^8.10.0", | ||
"@types/node": "^10.10.0", | ||
"canonical-path": "0.0.2", | ||
@@ -80,9 +80,10 @@ "concurrently": "^3.0.0", | ||
"systemjs": "0.21.3", | ||
"tslib": "1.11.1", | ||
"tslint": "^5.10.0", | ||
"typescript": "3.4.5", | ||
"typescript": "3.7.5", | ||
"vinyl-source-stream": "^2.0.0", | ||
"webpack": "2.2.1", | ||
"yargs": "^11.0.0", | ||
"zone.js": "^0.9.1" | ||
"zone.js": "^0.10.2" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
469951
49