@evercam/api 1.0.0-fbf4f4d51 → 1.0.0-feccd27be

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.
Files changed (57) hide show
  1. package/README.md +1 -0
  2. package/dist/api/api/3dFirebaseApi.d.ts +164 -15
  3. package/dist/api/api/adminApi.d.ts +44 -13
  4. package/dist/api/api/aiApi.d.ts +85 -50
  5. package/dist/api/api/authzApi.d.ts +1 -2
  6. package/dist/api/api/evercamApi.d.ts +54 -3
  7. package/dist/api/api/evercamLabsApi.d.ts +1 -2
  8. package/dist/api/api/exNvrApi.d.ts +1 -1
  9. package/dist/api/api/ingestApi.d.ts +46 -42
  10. package/dist/api/types/360.d.ts +56 -51
  11. package/dist/api/types/aiConfigs.d.ts +154 -0
  12. package/dist/api/types/analytics.d.ts +85 -54
  13. package/dist/api/types/anpr.d.ts +40 -0
  14. package/dist/api/types/auditLogs.d.ts +18 -0
  15. package/dist/api/types/authz.d.ts +1 -0
  16. package/dist/api/types/automation.d.ts +11 -2
  17. package/dist/api/types/axios.d.ts +3 -3
  18. package/dist/api/types/bim.d.ts +17 -0
  19. package/dist/api/types/camera.d.ts +18 -26
  20. package/dist/api/types/comments.d.ts +8 -6
  21. package/dist/api/types/connector.d.ts +1 -0
  22. package/dist/api/types/coolify.d.ts +18 -2
  23. package/dist/api/types/copilot.d.ts +10 -5
  24. package/dist/api/types/detections.d.ts +6 -11
  25. package/dist/api/types/drone.d.ts +96 -6
  26. package/dist/api/types/gateReport.d.ts +19 -32
  27. package/dist/api/types/gateReportManagement.d.ts +175 -0
  28. package/dist/api/types/index.d.ts +7 -1
  29. package/dist/api/types/ingest.d.ts +18 -3
  30. package/dist/api/types/map.d.ts +12 -0
  31. package/dist/api/types/media.d.ts +1 -0
  32. package/dist/api/types/oauth.d.ts +62 -0
  33. package/dist/api/types/planner.d.ts +97 -0
  34. package/dist/api/types/progressPhoto.d.ts +2 -1
  35. package/dist/api/types/project.d.ts +31 -3
  36. package/dist/api/types/recording.d.ts +4 -10
  37. package/dist/api/types/ring.d.ts +53 -0
  38. package/dist/api/types/roi.d.ts +2 -2
  39. package/dist/api/types/shared.d.ts +19 -0
  40. package/dist/api/types/siteAnalytics.d.ts +7 -17
  41. package/dist/api/types/siteView.d.ts +74 -0
  42. package/dist/api/types/smartSeach.d.ts +5 -0
  43. package/dist/api/types/snapshots.d.ts +48 -3
  44. package/dist/api/types/storageProvider.d.ts +19 -0
  45. package/dist/api/types/timelapse.d.ts +6 -2
  46. package/dist/api/types/user.d.ts +0 -2
  47. package/dist/api/utils.d.ts +0 -1
  48. package/dist/index.js +1734 -963
  49. package/dist/index.js.map +1 -1
  50. package/dist/index.umd.cjs +1 -1
  51. package/dist/index.umd.cjs.map +1 -1
  52. package/dist/shared/types/components.d.ts +62 -9
  53. package/dist/shared/types/imagePlayer.d.ts +9 -2
  54. package/dist/shared/types/index.d.ts +1 -0
  55. package/dist/shared/types/rbac.d.ts +67 -0
  56. package/package.json +2 -2
  57. package/dist/api/types/storageServers.d.ts +0 -4
@@ -1,4 +1,4 @@
1
- import { AdminCamera, Camera, CameraExid, DateType, EntityByExid, Exid, PaginationParams } from "@evercam/api/types";
1
+ import { AdminCamera, Camera, CameraExid, DateType, EntityByExid, Exid, Operator, PaginationParams } from "@evercam/api/types";
2
2
  export type ProjectExid = Exid;
3
3
  export type ProjectsByExid = EntityByExid<Project>;
4
4
  export type Project = {
@@ -62,7 +62,8 @@ export declare enum ProjectArchiveTier {
62
62
  Full = "Full",
63
63
  Partial = "Partial",
64
64
  Minimal = "Minimal",
65
- ScheduledForDeletion = "Scheduled for Deletion"
65
+ ScheduledForDeletion = "Scheduled for Deletion",
66
+ No = "No"
66
67
  }
67
68
  export type UpdateCameraRestrictionPayload = {
68
69
  isAccessRestricted?: boolean;
@@ -109,6 +110,7 @@ export type ProjectsQueryParams = PaginationParams & {
109
110
  status: ProjectStatus;
110
111
  cameras: string;
111
112
  featureFlags: Array<ProjectFeatureFlag>;
113
+ featureFlagsOperator?: Operator;
112
114
  archived: string;
113
115
  };
114
116
  export type ProjectCreateRequestPayload = {
@@ -163,6 +165,7 @@ export type ProjectRole = {
163
165
  };
164
166
  export type ProjectMember = {
165
167
  id: string;
168
+ key?: string;
166
169
  email: string;
167
170
  fullname: string;
168
171
  lastSeenAt?: string;
@@ -172,7 +175,9 @@ export type ProjectMember = {
172
175
  resourceId: string;
173
176
  roleId: number;
174
177
  }>;
175
- company?: string | null;
178
+ company?: {
179
+ name: string;
180
+ } | null;
176
181
  };
177
182
  export type ProjectInvite = {
178
183
  id?: string;
@@ -193,6 +198,7 @@ export type ProjectMembersResponsePayload = {
193
198
  export type ProjectMembersRequestPayload = {
194
199
  roleId: number;
195
200
  emails: string[];
201
+ message?: string;
196
202
  overrideRole?: Partial<{
197
203
  permissions?: string[];
198
204
  subRoles?: Array<{
@@ -217,3 +223,25 @@ export type ProjectUsersResponsePayload = {
217
223
  invites: ProjectInvite[];
218
224
  errors: ProjectUserError[];
219
225
  };
226
+ export type ProjectStorageQueryParams = PaginationParams & {
227
+ cameraName: string;
228
+ cameraExid: CameraExid;
229
+ status: ProjectStorageStatus;
230
+ };
231
+ export type ProjectStorage = {
232
+ id: number;
233
+ cameraExid: CameraExid;
234
+ cameraName: string;
235
+ projectExid: string;
236
+ projectName: string;
237
+ status: ProjectStorageStatus;
238
+ requestor: string;
239
+ created_at: DateType;
240
+ };
241
+ export declare enum ProjectStorageStatus {
242
+ New = "new",
243
+ Pending = "pending",
244
+ Processing = "processing",
245
+ Completed = "completed",
246
+ Failed = "failed"
247
+ }
@@ -56,8 +56,7 @@ export type SnapshotRangeResponsePayload = {
56
56
  snapshots: Array<SnapshotInstance>;
57
57
  };
58
58
  export declare enum BrainTool {
59
- Detections = "detections",
60
- Segmentation = "sam"
59
+ Detections = "detections"
61
60
  }
62
61
  export declare enum CloudRecordingFrequency {
63
62
  EverySecond = 60,
@@ -77,6 +76,7 @@ export declare enum CloudRecordingDuration {
77
76
  Month = 30,
78
77
  ThreeMonths = 90
79
78
  }
79
+ export declare const CloudRecordingDurationLabel: Record<CloudRecordingDuration, string>;
80
80
  export declare enum CloudRecordingStatus {
81
81
  On = "on",
82
82
  Off = "off",
@@ -104,13 +104,6 @@ export declare enum SnapshotExtractionInterval {
104
104
  }
105
105
  export declare enum VpnServer {
106
106
  None = "None",
107
- OpenVPN1 = "OpenVPN1",
108
- OpenVPN2 = "OpenVPN2",
109
- OpenVPN3 = "OpenVPN3",
110
- OpenVPN4 = "OpenVPN4",
111
- OpenVPN5 = "OpenVPN5",
112
- PPTP1 = "PPTP1",
113
- PPTP2 = "PPTP2",
114
107
  WireGuard1 = "WireGuard1",
115
108
  WireGuard2 = "WireGuard2",
116
109
  WireGuard3 = "WireGuard3",
@@ -120,5 +113,6 @@ export declare enum VpnServer {
120
113
  WireGuard7 = "WireGuard7",
121
114
  WireGuard8 = "WireGuard8",
122
115
  WireGuard9 = "WireGuard9",
123
- WireGuard10 = "WireGuard10"
116
+ WireGuard10 = "WireGuard10",
117
+ WgHub = "WgHub"
124
118
  }
@@ -0,0 +1,53 @@
1
+ export type RingDevice = {
2
+ deviceId: string;
3
+ name: string;
4
+ deviceType: string;
5
+ firmwareVersion: string | null;
6
+ batteryLife: number | null;
7
+ location: string | null;
8
+ imported: boolean;
9
+ cameraExid?: string;
10
+ projectExid?: string;
11
+ projectName?: string;
12
+ };
13
+ export type RingDevicesResponsePayload = {
14
+ devices: RingDevice[];
15
+ };
16
+ export type RingImportDevicesPayload = {
17
+ deviceIds: string[];
18
+ projectExid: string;
19
+ deviceNames?: Record<string, string>;
20
+ };
21
+ export type RingImportResponsePayload = {
22
+ cameras: Array<{
23
+ exid: string;
24
+ name: string;
25
+ }>;
26
+ project: {
27
+ exid: string;
28
+ name: string;
29
+ };
30
+ };
31
+ export type RingMoveDevicePayload = {
32
+ projectExid: string;
33
+ };
34
+ export type RingMoveDeviceResponsePayload = {
35
+ status: string;
36
+ cameraExid: string;
37
+ projectExid: string;
38
+ };
39
+ export type RingLiveViewPayload = {
40
+ sdpOffer: string;
41
+ };
42
+ export type RingLiveViewResponse = {
43
+ sdpAnswer: string;
44
+ sessionUrl: string;
45
+ iceServers: Array<{
46
+ urls: string;
47
+ username?: string;
48
+ credential?: string;
49
+ }>;
50
+ };
51
+ export type RingStopLiveViewResponse = {
52
+ status: string;
53
+ };
@@ -9,8 +9,7 @@ export declare enum RoiShapeType {
9
9
  Polygon = "polygon",
10
10
  Line = "line",
11
11
  Direction = "direction",
12
- Rectangle = "rectangle",
13
- ROIBox = "ROIBox"
12
+ Rectangle = "rectangle"
14
13
  }
15
14
  export type RoiShape = {
16
15
  id: number | null;
@@ -19,6 +18,7 @@ export type RoiShape = {
19
18
  x2: number;
20
19
  y1: number;
21
20
  y2: number;
21
+ points?: [number, number][];
22
22
  };
23
23
  export declare enum RoiDirection {
24
24
  Arrived = "arrived",
@@ -1,4 +1,8 @@
1
1
  import { DateType } from "@evercam/api/types";
2
+ export declare enum Operator {
3
+ AND = "and",
4
+ OR = "or"
5
+ }
2
6
  type sortby = string;
3
7
  type sortDirection = "asc" | "desc";
4
8
  export type SortingUrlParam = `${sortby}|${sortDirection}`;
@@ -133,6 +137,21 @@ export interface JSON {
133
137
  stringify<T>(value: T, replacer?: (key: string, value: unknown) => unknown, space?: string | number): string & Stringified<T>;
134
138
  parse<T>(text: Stringified<T>, reviver?: (key: unknown, value: unknown) => unknown): T;
135
139
  }
140
+ export type TuplePoint2D = [number, number];
141
+ export type TuplePoint3D = [number, number, number];
142
+ export type Point2D = {
143
+ x: number;
144
+ y: number;
145
+ };
146
+ export type Point3D = {
147
+ x: number;
148
+ y: number;
149
+ z: number;
150
+ };
151
+ export type GeoPoint = {
152
+ lat: number;
153
+ lng: number;
154
+ };
136
155
  export type Exid = string;
137
156
  export type EntityByExid<Entity extends unknown> = Record<Exid, Entity>;
138
157
  export type BatteryVoltage = {
@@ -1,4 +1,4 @@
1
- import { BBox, BoundingBox, DateType, Schedule, ScheduleLowercase, CameraExid, DetectionModel, PaginationParams, PpeLabel, ProjectExid, CameraDateRangeFilter, CameraFeatureFlag, TimelineDateInterval, Camera, AdminCamera, _360FloorV2, _360FloorId, PaginatedItems, DateRangeFilter } from "@evercam/api/types";
1
+ import { BBox, BoundingBox, DateType, Schedule, ScheduleLowercase, CameraExid, DetectionModel, PaginationParams, PpeLabel, ProjectExid, CameraDateRangeFilter, CameraFeatureFlag, TimelineDateInterval, Camera, AdminCamera, _360FloorV2, _360FloorId, PaginatedItems, DateRangeFilter, TuplePoint2D } from "@evercam/api/types";
2
2
  import { DetectionLabel, DownloadFileType } from "@evercam/api/types";
3
3
  export declare enum SiteAnalyticsMode {
4
4
  Detections = "detections",
@@ -103,6 +103,7 @@ export type SmartSearchBackendQuery = {
103
103
  conditions: SmartSearchBackendQueryCondition[];
104
104
  }[];
105
105
  returnType: SmartSearchReturnType;
106
+ timeSchedule?: Schedule;
106
107
  };
107
108
  export declare enum SmartSearchTargets {
108
109
  Tracking = "tracking",
@@ -139,13 +140,9 @@ export declare enum SmartSearchConditionTypes {
139
140
  }
140
141
  export type SmartSearchOptionValue = DetectionLabel | SmartSearchOperatorType | SmartSearchConditionData | DateRangeFilter | SiteAnalyticsView;
141
142
  export type SmartSearchBackendQueryPayload = {
142
- cameraExid: string;
143
143
  name: string;
144
144
  description: string;
145
- query: {
146
- req: SmartSearchBackendQuery;
147
- timeSchedule?: Schedule | undefined;
148
- };
145
+ query: SmartSearchBackendQuery;
149
146
  fromDate?: DateType;
150
147
  toDate?: DateType;
151
148
  author: string;
@@ -158,10 +155,7 @@ export type SmartSearchBackendQueryPayload = {
158
155
  export type SavedQuery = {
159
156
  description: string;
160
157
  id: number;
161
- query: {
162
- req: SmartSearchBackendQuery;
163
- timeSchedule?: Schedule | undefined;
164
- };
158
+ query: SmartSearchBackendQuery;
165
159
  params: Record<string, string>;
166
160
  components?: Omit<SmartSearchPart, "id">[];
167
161
  toDate?: DateType;
@@ -190,7 +184,7 @@ export type DetectionsExportRequestParams = DetectionsRequestParams & {
190
184
  directDownload?: boolean;
191
185
  };
192
186
  export type SmartSearchHeatmapPoint = {
193
- coordinates: [number, number];
187
+ coordinates: TuplePoint2D;
194
188
  detectionsCount: number;
195
189
  };
196
190
  export type SmartSearchHeatmapData = {
@@ -247,7 +241,7 @@ export type SmartSearchRequestPayload = {
247
241
  fromDate?: string;
248
242
  toDate?: string;
249
243
  page?: number;
250
- pageSize?: number;
244
+ limit?: number;
251
245
  threshold?: number;
252
246
  };
253
247
  type SmartSearchResultItemBase = {
@@ -281,11 +275,7 @@ type SmartSearchResultItemByType = {
281
275
  [SmartSearchReturnType.FirstLastSeen]: SmartSearchResultItemFirstLastSeen;
282
276
  [SmartSearchReturnType.All]: SmartSearchResultItemAll;
283
277
  };
284
- export type SmartSearchResponse<R extends SmartSearchReturnType = SmartSearchReturnType.FirstLastSeen> = {
285
- data: PaginatedItems<SmartSearchResultItemByType[R]>;
286
- message?: string;
287
- success: boolean;
288
- };
278
+ export type SmartSearchResponse<R extends SmartSearchReturnType = SmartSearchReturnType.FirstLastSeen> = PaginatedItems<SmartSearchResultItemByType[R]>;
289
279
  export type SmartSearchMinifiedPart = {
290
280
  t: SmartSearchComponentType;
291
281
  v: unknown;
@@ -0,0 +1,74 @@
1
+ import { ForgeView } from "@evercam/api/types/360";
2
+ import { Point2D, Point3D } from "@evercam/api/types/shared";
3
+ export declare enum SiteViewSoftwareType {
4
+ Revit = "Revit",
5
+ Navisworks = "Navisworks",
6
+ Drone = "Drone",
7
+ Synchro = "Synchro"
8
+ }
9
+ export declare enum SiteViewerType {
10
+ ITwin = "iTwin",
11
+ Cesium = "Cesium",
12
+ Forge = "Forge"
13
+ }
14
+ export type SiteViewCameraListItem = {
15
+ projectId: string;
16
+ projectName: string;
17
+ software: SiteViewSoftwareType;
18
+ type: SiteViewerType;
19
+ uniqueId: string;
20
+ integrationType?: string;
21
+ };
22
+ export type ForgeUrn = {
23
+ displayName: string;
24
+ urn: string;
25
+ isModelHostedByEvercamACC?: boolean;
26
+ };
27
+ export type ForgeAccAlignmentData = {
28
+ bbox: {
29
+ min: Point2D;
30
+ max: Point2D;
31
+ };
32
+ transform: number[];
33
+ };
34
+ export type TimelineItem = {
35
+ taskNumber: number;
36
+ taskID: string;
37
+ actualStartDate: string;
38
+ actualEndDate: string;
39
+ plannedStartDate: string;
40
+ plannedEndDate: string;
41
+ objectIDs: number[];
42
+ };
43
+ export type ForgeMarkerTransform = {
44
+ default: {
45
+ position: Point3D;
46
+ type: string;
47
+ };
48
+ };
49
+ export type ForgeMarker = {
50
+ name: string;
51
+ cameraExid: string;
52
+ transforms: ForgeMarkerTransform;
53
+ };
54
+ export type ForgeProjectData = {
55
+ urns?: ForgeUrn[];
56
+ isEvercamAccount?: boolean;
57
+ accDrawingsAlignments?: Record<string, ForgeAccAlignmentData>;
58
+ timeline?: TimelineItem[];
59
+ savedView?: ForgeView;
60
+ markers?: ForgeMarker[];
61
+ };
62
+ export type ItwinModel = {
63
+ name: string;
64
+ iTwinId: string;
65
+ iModelId: string;
66
+ changeSetId?: string;
67
+ isIModel: boolean;
68
+ height?: number;
69
+ cesiumId?: number;
70
+ markerDistanceThreshold: number;
71
+ };
72
+ export type ItwinProjectData = {
73
+ models: ItwinModel[];
74
+ };
@@ -0,0 +1,5 @@
1
+ import { CameraExid } from "@evercam/api/types";
2
+ export type SmartSearchQueriesRequestPayload = {
3
+ camerasExid: CameraExid[];
4
+ name?: string;
5
+ };
@@ -5,8 +5,11 @@ export type SnapshotExtractionQyeryParams = PaginationParams & {
5
5
  status: SnapshotExtractionStatus;
6
6
  };
7
7
  export declare enum SnapshotExtractionStatus {
8
+ Cancelling = "canceling",
9
+ Cancelled = "cancelled",
8
10
  Completed = "completed",
9
11
  Failed = "failed",
12
+ Pending = "pending",
10
13
  Processing = "processing"
11
14
  }
12
15
  export declare enum SnapshotExtractionType {
@@ -30,6 +33,8 @@ export type SnapshotExtraction = {
30
33
  injectTo_cr: Boolean;
31
34
  schedule: Schedule;
32
35
  created_at: DateType;
36
+ jpegCount?: number;
37
+ obanJobId?: number;
33
38
  };
34
39
  export type SnapshotTestPayload = {
35
40
  cameraExid?: CameraExid;
@@ -42,18 +47,58 @@ export type SnapshotTestResponse = {
42
47
  status: string;
43
48
  data: string;
44
49
  };
50
+ export type SnapshotEmailDeliveryRequestPayload = {
51
+ snapshot: string;
52
+ recipients?: string[];
53
+ message?: string;
54
+ };
55
+ export type SnapshotEmailDeliveryResponsePayload = {
56
+ warning?: string;
57
+ };
45
58
  export type DeleteSnapshotQueryParams = {
46
59
  fromDate: DateType;
47
60
  toDate: DateType;
48
61
  adminEmail: string;
49
62
  adminFullname: string;
50
63
  };
51
- export type TransferCloudRecordingsQueryParams = {
64
+ export type SnapshotTransfer = {
65
+ id: number;
66
+ sourceCamera: SnapshotTransferCamera;
67
+ targetCamera: SnapshotTransferCamera;
68
+ fromDate: DateType;
69
+ toDate: DateType;
70
+ overwriteExisting?: boolean | null;
71
+ deleteSource?: boolean | null;
72
+ requestor: SnapshotTransferRequestor;
73
+ status: SnapshotTransferStatus;
74
+ insertedAt: DateType;
75
+ attempts?: number | null;
76
+ errorMessage?: string | null;
77
+ snapshotsTransferred?: number | null;
78
+ };
79
+ export type SnapshotTransferCamera = {
80
+ id: number;
81
+ exid: CameraExid;
82
+ name: string;
83
+ };
84
+ export type SnapshotTransferRequestor = {
85
+ email: string;
86
+ firstname: string;
87
+ lastname: string;
88
+ };
89
+ export declare enum SnapshotTransferStatus {
90
+ Completed = "completed",
91
+ Failed = "failed",
92
+ Processing = "processing",
93
+ Pending = "pending",
94
+ Cancelled = "cancelled"
95
+ }
96
+ export type TransferCloudRecordingsQueryParams = PaginationParams & {
52
97
  targetCameraExid: CameraExid;
53
98
  fromDate: DateType;
54
99
  toDate: DateType;
55
- overwriteExistingSnapshots?: boolean;
56
- keepSourceSnapshots?: boolean;
100
+ overwriteExisting?: boolean;
101
+ deleteSource?: boolean;
57
102
  adminEmail?: string;
58
103
  adminFullname?: string;
59
104
  };
@@ -0,0 +1,19 @@
1
+ import type { DateType } from "@evercam/api/types";
2
+ export type StorageProvider = {
3
+ id?: number;
4
+ cameraId: number;
5
+ type: string;
6
+ provider: string;
7
+ url: string;
8
+ startDate: DateType;
9
+ endDate: DateType;
10
+ config: Record<string, any>;
11
+ insertedAt?: DateType;
12
+ };
13
+ export type StorageProvidersResponsePayload = {
14
+ providers: StorageProvider[];
15
+ };
16
+ export declare enum ProjectStorageProvider {
17
+ Seaweedfs = "seaweedfs",
18
+ S3 = "s3"
19
+ }
@@ -1,4 +1,4 @@
1
- import { DateType, Schedule } from "@evercam/api/types";
1
+ import { DateType, Point2D, Schedule } from "@evercam/api/types";
2
2
  export declare enum TimelapseStatus {
3
3
  Pending = 11,
4
4
  Completed = 5,
@@ -7,7 +7,8 @@ export declare enum TimelapseStatus {
7
7
  export declare enum TimelapseDuration {
8
8
  ThirtySeconds = 30,
9
9
  SixtySeconds = 60,
10
- NintySeconds = 90
10
+ NintySeconds = 90,
11
+ TwoMinutes = 120
11
12
  }
12
13
  export type TimelapseVideoOptions = {
13
14
  width?: number;
@@ -15,7 +16,9 @@ export type TimelapseVideoOptions = {
15
16
  removeTimestamp: boolean;
16
17
  smoothTransition: boolean;
17
18
  evercamWatermark: boolean;
19
+ sectionBlur?: boolean;
18
20
  timestampPosition?: TimestampPositionCoordinates;
21
+ blurRegions?: BlurRegionCoordinates[];
19
22
  };
20
23
  export type TimestampPositionCoordinates = {
21
24
  x: number;
@@ -23,6 +26,7 @@ export type TimestampPositionCoordinates = {
23
26
  w: number;
24
27
  h: number;
25
28
  };
29
+ export type BlurRegionCoordinates = Point2D[];
26
30
  export type TimelapseLogoOptions = {
27
31
  id?: number;
28
32
  x: number;
@@ -55,7 +55,6 @@ export declare enum UserFeatureFlag {
55
55
  CompanyAdmin = "company-admin",
56
56
  VideoWalls = "video-walls",
57
57
  MassCameraSharing = "mass-camera-sharing",
58
- Copilot = "copilot",
59
58
  ProjectSharing = "project-sharing"
60
59
  }
61
60
  export type ProjectUser = User & {
@@ -177,7 +176,6 @@ export type SessionActivitiesListRequestPayload = {
177
176
  };
178
177
  export type SignupUserRequestPayload = {
179
178
  telephone: string;
180
- token: string;
181
179
  firstname: string;
182
180
  lastname: string;
183
181
  email: string;
@@ -7,4 +7,3 @@ export declare const toQueryString: <T extends Record<string, unknown>>(paramsOb
7
7
  forceArrayBrackets?: boolean | undefined;
8
8
  }) => string | undefined;
9
9
  export declare function queryStringToObject(queryString?: string): QueryParams;
10
- export declare function capitalizeFirstLetter(inputString: string): string;