@evercam/api 1.0.0-1e9dde45a → 1.0.0-1f78aff87

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,4 +1,5 @@
1
- import { type _360Scene, type Media, type DroneModel, type MobileCaptureSnapshot, type TimelineDateInterval, type TimelinePrecision, type Comment, type ProcoreUserProject, type ProcoreProjectAlbum, type ProcoreObservationType, type AconexUserProject, type AutodeskUserHub, type AutodeskProject, type AutodeskFolder, type ProcoreType, TaskStatus, Tag } from "@evercam/shared/types";
1
+ import { type _360Scene, type Media, type DroneModel, type MobileCaptureSnapshot, type TimelineDateInterval, type TimelinePrecision, type Comment, type ProcoreUserProject, type ProcoreProjectAlbum, type ProcoreObservationType, type AconexUserProject, type AutodeskUserHub, type AutodeskProject, type AutodeskFolder, type ProcoreType, TaskStatus, Tag, TuplePoint2D } from "@evercam/shared/types";
2
+ import type { IngestUploadInitResponse } from "@evercam/api/types";
2
3
  import type { TimelineChartType, TimelineEvent, TimelineEventsGroup } from "@evercam/ui";
3
4
  import { TimelineDataProvider } from "@evercam/shared/components/timelinePlayer/providers";
4
5
  import { SeriesOptionsType } from "highcharts";
@@ -34,6 +35,7 @@ export declare enum IframeMessageType {
34
35
  Upload360 = "upload360",
35
36
  FetchForgeToken = "FetchForgeToken",
36
37
  ForgeTokenResponse = "ForgeTokenResponse",
38
+ ShowBimUploadChoice = "showBimUploadChoice",
37
39
  ViewerLaunchFlags = "viewerLaunchFlags"
38
40
  }
39
41
  export declare enum NavigationArrow {
@@ -151,8 +153,8 @@ export type LeaderLineOptions = {
151
153
  startPlugSize?: number;
152
154
  endPlugSize?: number;
153
155
  path?: LeaderLinesPathType;
154
- startSocketGravity?: [number, number];
155
- endSocketGravity?: [number, number];
156
+ startSocketGravity?: TuplePoint2D;
157
+ endSocketGravity?: TuplePoint2D;
156
158
  dash?: {
157
159
  animation: boolean | {
158
160
  duration: number;
@@ -310,3 +312,11 @@ export type TableHeaderParams<TItem = unknown> = {
310
312
  toStringFn?: (item: TItem, key: string) => any;
311
313
  sort?: (a: unknown, b: unknown) => number;
312
314
  };
315
+ export type BimUploadObject = IngestUploadInitResponse & {
316
+ projectName: string;
317
+ };
318
+ export type BimUploadFileResult = {
319
+ url: string;
320
+ title: string;
321
+ fileExtension: string;
322
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evercam/api",
3
- "version": "1.0.0-1e9dde45a",
3
+ "version": "1.0.0-1f78aff87",
4
4
  "description": "Evercam API client",
5
5
  "repository": {
6
6
  "type": "git",
@@ -36,7 +36,7 @@
36
36
  "publish-api": "cd ../.. && yarn publish-api"
37
37
  },
38
38
  "devDependencies": {
39
- "@types/node": "^25.6.0",
39
+ "@types/node": "^25.6.2",
40
40
  "vite": "latest",
41
41
  "vite-plugin-commonjs": "^0.10.3",
42
42
  "vite-plugin-dts": "^4.5.4"