@selfcommunity/types 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.
@@ -3,7 +3,7 @@
3
3
  */
4
4
  export interface SSOSignInType {
5
5
  id: number;
6
- ext_id: number | null;
6
+ ext_id: string | null;
7
7
  username: string;
8
8
  role?: string | null;
9
9
  tags?: number[] | null;
@@ -13,7 +13,7 @@ export interface SSOSignInType {
13
13
  */
14
14
  export interface SSOSignUpType {
15
15
  id: number;
16
- ext_id?: number | null;
16
+ ext_id?: string | null;
17
17
  username: string;
18
18
  email: string;
19
19
  role?: string | null;
@@ -107,7 +107,7 @@ export interface SCUserType {
107
107
  /**
108
108
  * The external ID of the user. It is assigned only during signup if necessary.
109
109
  */
110
- ext_id?: number;
110
+ ext_id?: string;
111
111
  /**
112
112
  * User's tag list. List of Tag.
113
113
  */
@@ -362,7 +362,7 @@ export interface SCUserAutocompleteType {
362
362
  /**
363
363
  * The external ID of the user. It is assigned only during signup.
364
364
  */
365
- ext_id: number;
365
+ ext_id: string;
366
366
  }
367
367
  /**
368
368
  * SCUserCountersType interface
@@ -3,7 +3,7 @@
3
3
  */
4
4
  export interface SSOSignInType {
5
5
  id: number;
6
- ext_id: number | null;
6
+ ext_id: string | null;
7
7
  username: string;
8
8
  role?: string | null;
9
9
  tags?: number[] | null;
@@ -13,7 +13,7 @@ export interface SSOSignInType {
13
13
  */
14
14
  export interface SSOSignUpType {
15
15
  id: number;
16
- ext_id?: number | null;
16
+ ext_id?: string | null;
17
17
  username: string;
18
18
  email: string;
19
19
  role?: string | null;
@@ -107,7 +107,7 @@ export interface SCUserType {
107
107
  /**
108
108
  * The external ID of the user. It is assigned only during signup if necessary.
109
109
  */
110
- ext_id?: number;
110
+ ext_id?: string;
111
111
  /**
112
112
  * User's tag list. List of Tag.
113
113
  */
@@ -362,7 +362,7 @@ export interface SCUserAutocompleteType {
362
362
  /**
363
363
  * The external ID of the user. It is assigned only during signup.
364
364
  */
365
- ext_id: number;
365
+ ext_id: string;
366
366
  }
367
367
  /**
368
368
  * SCUserCountersType interface
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@selfcommunity/types",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "main": "./lib/cjs/index.js",
@@ -106,5 +106,5 @@
106
106
  "bugs": {
107
107
  "url": "https://github.com/selfcommunity/community-js/issues"
108
108
  },
109
- "gitHead": "889661a5469ff3ffb845e85fb6588832b5b3c91d"
109
+ "gitHead": "f3d9f91962e2ba962648b2dfbbcd8854a928c0cf"
110
110
  }