File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 108
108
.vscode /
109
109
110
110
# Docs via yarn docs
111
- docs
111
+ docs / v2
Original file line number Diff line number Diff line change 32
32
"test:suite" : " jest --runInBand" ,
33
33
"test:infra" : " cd infra && docker-compose down && docker-compose pull && docker-compose up -d && sleep 30" ,
34
34
"test:clean" : " cd infra && docker-compose down --remove-orphans" ,
35
- "docs" : " typedoc src/index.ts --excludePrivate --excludeProtected" ,
36
- "docs:json" : " typedoc src/index.ts --json docs/spec.json --excludeProtected --excludePrivate"
35
+ "docs" : " typedoc src/index.ts --out docs/v2 -- excludePrivate --excludeProtected" ,
36
+ "docs:json" : " typedoc --json docs/v2/ spec.json --excludeExternals --excludePrivate --excludeProtected src/index.ts "
37
37
},
38
38
"dependencies" : {
39
39
"cross-fetch" : " ^3.1.5"
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ const _getRequestParams = (
59
59
return params
60
60
}
61
61
62
- params . headers = { 'Content-Type' : 'application/json' , ...options ?. headers }
62
+ params . headers = { 'Content-Type' : 'application/json;charset=UTF-8 ' , ...options ?. headers }
63
63
params . body = JSON . stringify ( body )
64
64
return { ...params , ...parameters }
65
65
}
You can’t perform that action at this time.
0 commit comments