@selfcommunity/api-services 1.0.2 → 1.0.3
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.
- package/lib/cjs/services/sso/index.d.ts +1 -1
- package/lib/cjs/services/sso/index.js +1 -1
- package/lib/cjs/types/sso.d.ts +1 -1
- package/lib/cjs/types/user.d.ts +1 -1
- package/lib/esm/services/sso/index.d.ts +1 -1
- package/lib/esm/services/sso/index.js +1 -1
- package/lib/esm/types/sso.d.ts +1 -1
- package/lib/esm/types/user.d.ts +1 -1
- package/package.json +3 -3
|
@@ -36,7 +36,7 @@ export declare class SSOApiClient {
|
|
|
36
36
|
The async function `SignUp` will return the user registration data. It takes the username and ext_id obj as body params.
|
|
37
37
|
|
|
38
38
|
async SignUp() {
|
|
39
|
-
const data = {username: 'string', ext_id: '
|
|
39
|
+
const data = {username: 'string', ext_id: 'string'};
|
|
40
40
|
return await SSOService.SignUp(data);
|
|
41
41
|
}
|
|
42
42
|
```
|
|
@@ -40,7 +40,7 @@ exports.SSOApiClient = SSOApiClient;
|
|
|
40
40
|
The async function `SignUp` will return the user registration data. It takes the username and ext_id obj as body params.
|
|
41
41
|
|
|
42
42
|
async SignUp() {
|
|
43
|
-
const data = {username: 'string', ext_id: '
|
|
43
|
+
const data = {username: 'string', ext_id: 'string'};
|
|
44
44
|
return await SSOService.SignUp(data);
|
|
45
45
|
}
|
|
46
46
|
```
|
package/lib/cjs/types/sso.d.ts
CHANGED
package/lib/cjs/types/user.d.ts
CHANGED
|
@@ -36,7 +36,7 @@ export declare class SSOApiClient {
|
|
|
36
36
|
The async function `SignUp` will return the user registration data. It takes the username and ext_id obj as body params.
|
|
37
37
|
|
|
38
38
|
async SignUp() {
|
|
39
|
-
const data = {username: 'string', ext_id: '
|
|
39
|
+
const data = {username: 'string', ext_id: 'string'};
|
|
40
40
|
return await SSOService.SignUp(data);
|
|
41
41
|
}
|
|
42
42
|
```
|
|
@@ -36,7 +36,7 @@ export class SSOApiClient {
|
|
|
36
36
|
The async function `SignUp` will return the user registration data. It takes the username and ext_id obj as body params.
|
|
37
37
|
|
|
38
38
|
async SignUp() {
|
|
39
|
-
const data = {username: 'string', ext_id: '
|
|
39
|
+
const data = {username: 'string', ext_id: 'string'};
|
|
40
40
|
return await SSOService.SignUp(data);
|
|
41
41
|
}
|
|
42
42
|
```
|
package/lib/esm/types/sso.d.ts
CHANGED
package/lib/esm/types/user.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@selfcommunity/api-services",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"private": false,
|
|
6
6
|
"main": "./lib/cjs/index.js",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"access": "public"
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"@selfcommunity/types": "^1.0.
|
|
61
|
+
"@selfcommunity/types": "^1.0.3",
|
|
62
62
|
"@selfcommunity/utils": "^1.0.2",
|
|
63
63
|
"axios": "^1.4.0",
|
|
64
64
|
"jose": "^4.14.4"
|
|
@@ -115,5 +115,5 @@
|
|
|
115
115
|
"bugs": {
|
|
116
116
|
"url": "https://github.com/selfcommunity/community-js/issues"
|
|
117
117
|
},
|
|
118
|
-
"gitHead": "
|
|
118
|
+
"gitHead": "f3d9f91962e2ba962648b2dfbbcd8854a928c0cf"
|
|
119
119
|
}
|