Skip to content

Commit

Permalink
Merge pull request #101 from chvarkov/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
chvarkov authored Sep 21, 2022
2 parents a8c5958 + 77bb1f3 commit 4da41d5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
7 changes: 4 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nestlab/google-recaptcha",
"version": "3.1.7",
"version": "3.1.8",
"description": "Google recaptcha module for NestJS.",
"keywords": [
"nestjs",
Expand Down Expand Up @@ -33,7 +33,8 @@
"peerDependencies": {
"@nestjs/axios": ">=0.0.1 <1.0.0",
"@nestjs/common": ">=8.0.0 <10.0.0",
"@nestjs/core": ">=8.0.0 <10.0.0"
"@nestjs/core": ">=8.0.0 <10.0.0",
"rxjs": ">=7.0.0 <8.0.0"
},
"peerDependenciesMeta": {
"@nestjs/graphql": {
Expand Down
3 changes: 2 additions & 1 deletion src/interfaces/google-recaptcha-module-options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@ export interface GoogleRecaptchaModuleAsyncOptions extends Pick<ModuleMetadata,
inject?: Array<InjectionToken | OptionalFactoryDependency>;
useClass?: Type<GoogleRecaptchaOptionsFactory>;
useExisting?: Type<GoogleRecaptchaOptionsFactory>;
useFactory?: (...args: unknown[]) => Promise<GoogleRecaptchaModuleOptions> | GoogleRecaptchaModuleOptions;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
useFactory?: (...args: any[]) => Promise<GoogleRecaptchaModuleOptions> | GoogleRecaptchaModuleOptions;
}

0 comments on commit 4da41d5

Please sign in to comment.