@oxyfoo/gamelife-types 2.0.10 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -63,7 +63,7 @@ export interface ServerRequestLogin {
|
|
|
63
63
|
}
|
|
64
64
|
export interface ServerRequestGoogleSigninTokenSubmit {
|
|
65
65
|
status: 'google-signin-token-submit';
|
|
66
|
-
result: '
|
|
66
|
+
result: 'can-signin' | 'can-login' | 'invalid' | 'error';
|
|
67
67
|
callbackID?: string;
|
|
68
68
|
}
|
|
69
69
|
export interface ServerRequestGoogleSigninTokenReset {
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oxyfoo/gamelife-types",
|
|
3
|
-
"version": "2.0
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "GameLife Types - TypeScript types for the GameLife project.",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"types": "./index.d.ts",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"build": "tsc && tsc-alias && cp package.json README.md LICENSE ./dist/ && rm -f ./dist/tsconfig.tsbuildinfo",
|
|
9
|
-
"clean": "rm -rf dist node_modules",
|
|
10
9
|
"lint": "eslint .",
|
|
11
|
-
"test": "tsc --noEmit && echo \"No tests specified but there is no error in the code\""
|
|
10
|
+
"test": "tsc --noEmit && echo \"No tests specified but there is no error in the code\"",
|
|
11
|
+
"clean": "rm -rf dist node_modules"
|
|
12
12
|
},
|
|
13
13
|
"repository": {
|
|
14
14
|
"type": "git",
|