@evercam/api 1.0.0-9cdf48fed → 1.0.0-9ef2be5fa

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.
@@ -1,6 +1,10 @@
1
1
  import { type _360Scene, type Media, type DroneModel, type MobileCaptureSnapshot, type TimelineDateInterval, type TimelinePrecision, type Comment, TaskStatus, Tag } from "@evercam/api/types";
2
2
  import type { TimelineChartType, TimelineEvent, TimelineEventsGroup } from "@evercam/ui";
3
3
  import { TimelineDataProvider } from "@evercam/shared/components/timelinePlayer/providers";
4
+ export declare enum NavigationArrow {
5
+ Previous = "previous",
6
+ Next = "next"
7
+ }
4
8
  export declare enum WatermarkedImageDownloadOrigin {
5
9
  Drone = "drone",
6
10
  Bim = "BIM",
@@ -155,10 +159,12 @@ export declare enum FormSchemaComponents {
155
159
  MultiOption = "MultiOption",
156
160
  TextField = "TextField",
157
161
  CheckBox = "SwitchField",
158
- DateTime = "DatePickerInput",
162
+ Date = "DatePickerInput",
163
+ DateTime = "DateTimeField",
159
164
  TextArea = "Textarea",
160
165
  Search = "Autocomplete",
161
- ReadOnly = "ReadOnly"
166
+ ReadOnly = "ReadOnly",
167
+ Ratio = "RatioField"
162
168
  }
163
169
  export declare enum FormSchemaDataType {
164
170
  String = "string",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evercam/api",
3
- "version": "1.0.0-9cdf48fed",
3
+ "version": "1.0.0-9ef2be5fa",
4
4
  "description": "Evercam API client",
5
5
  "repository": {
6
6
  "type": "git",
@@ -24,7 +24,7 @@
24
24
  "dist"
25
25
  ],
26
26
  "engines": {
27
- "node": ">=22.20.0"
27
+ "node": ">=22"
28
28
  },
29
29
  "readme": "README.md",
30
30
  "scripts": {
@@ -36,7 +36,7 @@
36
36
  "publish-api": "cd ../.. && yarn publish-api"
37
37
  },
38
38
  "devDependencies": {
39
- "@types/node": "^24.7.2",
39
+ "@types/node": "^25.0.3",
40
40
  "vite": "latest",
41
41
  "vite-plugin-commonjs": "^0.10.3",
42
42
  "vite-plugin-dts": "^4.5.4"
@@ -47,4 +47,4 @@
47
47
  "idb-keyval": "^6.2.2",
48
48
  "moment-timezone": "^0.5.46"
49
49
  }
50
- }
50
+ }