@crowdstrike/foundry-js 0.7.1 → 0.7.2
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/dist/types.d.ts +5 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
@@ -21,7 +21,12 @@ export interface ConnectResponseMessage<DATA extends LocalData = LocalData> exte
|
|
21
21
|
};
|
22
22
|
}
|
23
23
|
export type Theme = 'theme-light' | 'theme-dark';
|
24
|
+
export interface UserData {
|
25
|
+
uuid: string;
|
26
|
+
username: string;
|
27
|
+
}
|
24
28
|
export interface LocalData {
|
29
|
+
user: UserData;
|
25
30
|
theme: Theme;
|
26
31
|
cid: string;
|
27
32
|
locale: string;
|