@dra2020/baseclient 1.0.22 → 1.0.23

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.
@@ -53,10 +53,12 @@ export declare type RevisionList = Revision[];
53
53
  export interface SessionUser {
54
54
  id: string;
55
55
  name: string;
56
+ twitterhandle: string;
56
57
  }
57
58
  export interface ActiveUser {
58
59
  id: string;
59
60
  name: string;
61
+ twitterhandle: string;
60
62
  active: number;
61
63
  }
62
64
  export interface SessionUserIndex {
@@ -73,12 +73,14 @@ export interface SessionUser
73
73
  {
74
74
  id: string;
75
75
  name: string;
76
+ twitterhandle: string;
76
77
  }
77
78
 
78
79
  export interface ActiveUser
79
80
  {
80
81
  id: string;
81
82
  name: string;
83
+ twitterhandle: string;
82
84
  active: number;
83
85
  }
84
86
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dra2020/baseclient",
3
- "version": "1.0.22",
3
+ "version": "1.0.23",
4
4
  "description": "Utility functions for Javascript projects.",
5
5
  "main": "dist/baseclient.js",
6
6
  "types": "./dist/all/all.d.ts",