@plus45/types 1.1.18 → 1.1.20

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/index.ts CHANGED
@@ -16,6 +16,7 @@ import { ScheduleRecurrence } from "./types/schedule/schedule_recurrence";
16
16
  export {
17
17
  // User Type Structures
18
18
  type User,
19
+ type UserSessionInfo,
19
20
 
20
21
  // Exercise Type Structures
21
22
  type Exercise,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plus45/types",
3
- "version": "1.1.18",
3
+ "version": "1.1.20",
4
4
  "main": "index.ts",
5
5
  "types": "index.ts"
6
6
  }
@@ -0,0 +1,6 @@
1
+ export type UserSessionInfo = {
2
+ userAgent: string;
3
+ platform: string;
4
+ language: string;
5
+ ipAddress?: string;
6
+ };