Skip to content

Commit

Permalink
Merge pull request #97 from rubenCodeforges/latest/v9
Browse files Browse the repository at this point in the history
Latest/v9

@runette @Psycholive  published
  • Loading branch information
rubenCodeforges authored Apr 29, 2020
2 parents 688ad55 + d01d1b0 commit fad57f4
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 20 deletions.
30 changes: 16 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ng-gapi",
"version": "0.0.73",
"description": "Angular 7+ Google api module ng-gapi",
"version": "0.0.90",
"description": "Angular 9+ Google api module ng-gapi",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
Expand Down Expand Up @@ -41,19 +41,21 @@
},
"homepage": "https://github.com/rubenCodeforges/ng-gapi#readme",
"dependencies": {
"@types/gapi": "^0.0.35",
"@types/gapi.auth2": "^0.0.44",
"rxjs-compat": "^6.1.0"
"@types/gapi": "^0.0.39",
"@types/gapi.auth2": "^0.0.51",
"tslib": "^1.11.1"
},
"devDependencies": {
"@angular/compiler": "^4.4.6",
"@angular/compiler-cli": "^4.4.6",
"@angular/core": "^4.4.6",
"@angular/platform-server": "^4.4.6",
"@types/node": "7.0.10",
"rxjs": "^6.3.3",
"typescript": "^2.6.2",
"tslint": "~5.11.0",
"zone.js": "^0.8.18"
"@angular/compiler": "^9.1.0",
"@angular/compiler-cli": "^9.1.0",
"@angular/core": "^9.1.0",
"@angular/platform-server": "^9.1.0",
"@angular/animations": "^9.1.0",
"@angular/common": "^9.1.0",
"@types/node": "^13.9.8",
"rxjs": "^6.5.4",
"typescript": "^3.8.3",
"tslint": "~6.1.0",
"zone.js": "^0.10.3"
}
}
2 changes: 1 addition & 1 deletion src/GoogleApiModule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {GoogleApiService} from "./GoogleApiService";

@NgModule()
export class GoogleApiModule {
static forRoot(gapiConfigProvider: Provider): ModuleWithProviders {
static forRoot(gapiConfigProvider: Provider): ModuleWithProviders<GoogleApiModule> {
return {
ngModule: GoogleApiModule,
providers: [
Expand Down
3 changes: 1 addition & 2 deletions src/GoogleApiService.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import {Observable} from "rxjs/Observable";
import {Inject, Injectable, InjectionToken} from "@angular/core";
import {GoogleApiConfig, NgGapiClientConfig} from "./config/GoogleApiConfig";
import {Observer} from "rxjs/Observer";
import {Observable, Observer} from 'rxjs';

export let NG_GAPI_CONFIG: InjectionToken<NgGapiClientConfig> =
new InjectionToken<NgGapiClientConfig>("ng-gapi.config");
Expand Down
4 changes: 1 addition & 3 deletions src/GoogleAuthService.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
import {Injectable} from "@angular/core";
import {GoogleApiService} from "./GoogleApiService";
import GoogleAuth = gapi.auth2.GoogleAuth;
import {Observable, Observer, of} from 'rxjs';
import {mergeMap} from 'rxjs/operators';
import {of} from 'rxjs/internal/observable/of';
import {Observable} from 'rxjs/Observable';
import {Observer} from 'rxjs/Observer';

@Injectable()
export class GoogleAuthService {
Expand Down

0 comments on commit fad57f4

Please sign in to comment.