UNPKG
@nestlab/google-recaptcha
Version:
latest (3.11.2)
3.11.2
3.11.1
3.11.0
3.10.0
3.9.0
3.8.0
3.7.0
3.6.0
3.5.0
3.4.1
3.4.0
3.3.1
3.3.0
3.2.0
3.1.9
3.1.8
3.1.7
3.1.6
3.1.5
3.1.4
3.1.3
3.1.2
3.1.1
3.1.0
3.0.3
3.0.2
3.0.1
3.0.0
2.1.2
2.1.1
2.1.0
2.0.8
2.0.7
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
1.1.11
1.1.10
1.1.9
1.1.8
1.1.7
1.1.6
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.14
1.0.13
1.0.12
1.0.11
1.0.10
1.0.9
1.0.8
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Google recaptcha module for NestJS.
github.com/chvarkov/google-recaptcha
chvarkov/google-recaptcha
@nestlab/google-recaptcha
/
interfaces
/
verify-response.d.ts
12 lines
(11 loc)
•
284 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
ErrorCode
}
from
'../enums/error-code'
;
export
interface
VerifyResponseV2
{
success
:
boolean
;
challenge_ts
:
string
;
hostname
:
string
;
errors
:
ErrorCode
[]; }
export
interface
VerifyResponseV3
extends
VerifyResponseV2
{
score
:
number
;
action
:
string
; }