@overmap-ai/core 1.0.71-project-file-improvements.3 → 1.0.71-remove-login-timeout.0
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/constants/defaults.d.ts +2 -1
- package/dist/constants/index.d.ts +3 -3
- package/dist/enums/index.d.ts +5 -5
- package/dist/index.d.ts +6 -6
- package/dist/overmap-core.js +290 -452
- package/dist/overmap-core.js.map +1 -1
- package/dist/overmap-core.umd.cjs +299 -460
- package/dist/overmap-core.umd.cjs.map +1 -1
- package/dist/sdk/base.d.ts +8 -6
- package/dist/sdk/classes/OutboxCoordinator.d.ts +4 -4
- package/dist/sdk/classes/index.d.ts +1 -1
- package/dist/sdk/errors.d.ts +3 -1
- package/dist/sdk/globals.d.ts +7 -5
- package/dist/sdk/index.d.ts +6 -6
- package/dist/sdk/sdk.d.ts +6 -5
- package/dist/sdk/services/AgentService.d.ts +6 -10
- package/dist/sdk/services/AssetAttachmentService.d.ts +13 -12
- package/dist/sdk/services/AssetService.d.ts +5 -4
- package/dist/sdk/services/AssetStageCompletionService.d.ts +5 -4
- package/dist/sdk/services/AssetStageService.d.ts +5 -4
- package/dist/sdk/services/AssetTypeAttachmentService.d.ts +13 -12
- package/dist/sdk/services/AssetTypeService.d.ts +5 -4
- package/dist/sdk/services/BaseApiService.d.ts +5 -4
- package/dist/sdk/services/BaseAttachmentService.d.ts +7 -6
- package/dist/sdk/services/BaseAuthService.d.ts +5 -4
- package/dist/sdk/services/BaseService.d.ts +7 -5
- package/dist/sdk/services/BaseUploadService.d.ts +5 -4
- package/dist/sdk/services/CategoryService.d.ts +5 -4
- package/dist/sdk/services/DocumentAttachmentService.d.ts +13 -12
- package/dist/sdk/services/DocumentService.d.ts +5 -4
- package/dist/sdk/services/EmailDomainsService.d.ts +4 -3
- package/dist/sdk/services/EmailVerificationService.d.ts +4 -3
- package/dist/sdk/services/FileService.d.ts +5 -4
- package/dist/sdk/services/FormService.d.ts +5 -4
- package/dist/sdk/services/FormSubmissionService.d.ts +6 -5
- package/dist/sdk/services/GeoImageService.d.ts +5 -4
- package/dist/sdk/services/IssueAssociationService.d.ts +5 -4
- package/dist/sdk/services/IssueAttachmentService.d.ts +13 -12
- package/dist/sdk/services/IssueCommentService.d.ts +5 -4
- package/dist/sdk/services/IssueService.d.ts +5 -4
- package/dist/sdk/services/IssueTypeService.d.ts +5 -4
- package/dist/sdk/services/IssueUpdateService.d.ts +4 -3
- package/dist/sdk/services/JWTAuthService.d.ts +7 -6
- package/dist/sdk/services/LicenseService.d.ts +4 -3
- package/dist/sdk/services/OrganizationAccessService.d.ts +4 -3
- package/dist/sdk/services/OrganizationService.d.ts +4 -3
- package/dist/sdk/services/ProjectAccessService.d.ts +4 -3
- package/dist/sdk/services/ProjectAttachmentService.d.ts +13 -12
- package/dist/sdk/services/ProjectFileService.d.ts +9 -8
- package/dist/sdk/services/ProjectService.d.ts +4 -3
- package/dist/sdk/services/TeamService.d.ts +5 -4
- package/dist/sdk/services/UserService.d.ts +4 -3
- package/dist/sdk/services/WorkspaceService.d.ts +5 -4
- package/dist/sdk/services/index.d.ts +34 -34
- package/dist/sdk/typings.d.ts +9 -8
- package/dist/store/adapter.d.ts +12 -11
- package/dist/store/index.d.ts +2 -2
- package/dist/store/migrations.d.ts +2 -1
- package/dist/store/slices/agentsSlice.d.ts +11 -10
- package/dist/store/slices/assetAttachmentSlice.d.ts +16 -21
- package/dist/store/slices/assetSlice.d.ts +35 -24
- package/dist/store/slices/assetStageCompletionSlice.d.ts +33 -22
- package/dist/store/slices/assetStageSlice.d.ts +36 -25
- package/dist/store/slices/assetTypeAttachmentSlice.d.ts +16 -21
- package/dist/store/slices/assetTypeSlice.d.ts +16 -21
- package/dist/store/slices/authSlice.d.ts +10 -9
- package/dist/store/slices/categorySlice.d.ts +30 -16
- package/dist/store/slices/documentAttachmentSlice.d.ts +16 -21
- package/dist/store/slices/documentSlice.d.ts +30 -13
- package/dist/store/slices/emailDomainsSlice.d.ts +29 -15
- package/dist/store/slices/fileSlice.d.ts +7 -6
- package/dist/store/slices/formRevisionAttachmentSlice.d.ts +16 -21
- package/dist/store/slices/formRevisionSlice.d.ts +37 -26
- package/dist/store/slices/formSlice.d.ts +35 -21
- package/dist/store/slices/formSubmissionAttachmentSlice.d.ts +16 -21
- package/dist/store/slices/formSubmissionSlice.d.ts +16 -21
- package/dist/store/slices/geoImageSlice.d.ts +16 -21
- package/dist/store/slices/index.d.ts +38 -38
- package/dist/store/slices/issueAssociationSlice.d.ts +35 -24
- package/dist/store/slices/issueAttachmentSlice.d.ts +16 -21
- package/dist/store/slices/issueCommentSlice.d.ts +13 -18
- package/dist/store/slices/issueSlice.d.ts +13 -18
- package/dist/store/slices/issueTypeSlice.d.ts +12 -14
- package/dist/store/slices/issueUpdateSlice.d.ts +13 -18
- package/dist/store/slices/licenseSlice.d.ts +10 -9
- package/dist/store/slices/organizationAccessSlice.d.ts +11 -13
- package/dist/store/slices/organizationSlice.d.ts +27 -10
- package/dist/store/slices/outboxSlice.d.ts +15 -15
- package/dist/store/slices/projectAccessSlice.d.ts +11 -17
- package/dist/store/slices/projectAttachmentSlice.d.ts +16 -21
- package/dist/store/slices/projectFileSlice.d.ts +56 -44
- package/dist/store/slices/projectSlice.d.ts +10 -24
- package/dist/store/slices/rehydratedSlice.d.ts +7 -6
- package/dist/store/slices/teamSlice.d.ts +12 -14
- package/dist/store/slices/userSlice.d.ts +14 -13
- package/dist/store/slices/versioningSlice.d.ts +3 -2
- package/dist/store/slices/workspaceSlice.d.ts +31 -17
- package/dist/store/store.d.ts +7 -7
- package/dist/typings/index.d.ts +6 -6
- package/dist/typings/models/access.d.ts +3 -2
- package/dist/typings/models/agents.d.ts +3 -2
- package/dist/typings/models/assets.d.ts +3 -2
- package/dist/typings/models/attachments.d.ts +3 -2
- package/dist/typings/models/base.d.ts +3 -2
- package/dist/typings/models/categories.d.ts +3 -2
- package/dist/typings/models/documents.d.ts +2 -1
- package/dist/typings/models/emailDomain.d.ts +2 -1
- package/dist/typings/models/emailVerification.d.ts +3 -2
- package/dist/typings/models/forms.d.ts +4 -3
- package/dist/typings/models/geoImages.d.ts +5 -4
- package/dist/typings/models/index.d.ts +21 -21
- package/dist/typings/models/issueTypes.d.ts +3 -2
- package/dist/typings/models/issues.d.ts +7 -6
- package/dist/typings/models/license.d.ts +3 -2
- package/dist/typings/models/organizations.d.ts +2 -1
- package/dist/typings/models/projects.d.ts +5 -7
- package/dist/typings/models/store.d.ts +3 -3
- package/dist/typings/models/teams.d.ts +4 -3
- package/dist/typings/models/users.d.ts +2 -1
- package/dist/typings/models/workspace.d.ts +2 -1
- package/dist/typings/search.d.ts +1 -1
- package/dist/typings/store.d.ts +2 -1
- package/dist/utils/async/DeferredPromise.d.ts +1 -1
- package/dist/utils/colors.d.ts +2 -1
- package/dist/utils/coordinates.d.ts +3 -2
- package/dist/utils/file.d.ts +2 -1
- package/dist/utils/forms.d.ts +2 -1
- package/dist/utils/index.d.ts +10 -10
- package/dist/utils/offline.d.ts +2 -1
- package/dist/utils/utils.d.ts +2 -1
- package/package.json +18 -20
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
1
|
+
import { CreatedByModel, OfflineModel, SubmittedAtModel } from './base';
|
|
2
|
+
import { FileModel, FileWithNameModel, MaybeObjectURL } from '../files';
|
|
3
|
+
|
|
3
4
|
export interface Attachment extends OfflineModel, SubmittedAtModel, FileWithNameModel, CreatedByModel {
|
|
4
5
|
description?: string;
|
|
5
6
|
file_type: string;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
1
|
+
import { CreatedByModel, OfflineModel, SubmittedAtModel, TimestampedModel } from './base';
|
|
2
|
+
import { CSSColor } from '../colors';
|
|
3
|
+
|
|
3
4
|
export interface Category extends OfflineModel, SubmittedAtModel, TimestampedModel, CreatedByModel {
|
|
4
5
|
name: string;
|
|
5
6
|
description?: string;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { ColorModel, CreatedByModel, IconModel, OfflineModel, SubmittedAtModel, TimestampedModel } from './base';
|
|
2
|
+
|
|
2
3
|
export interface Document extends OfflineModel, SubmittedAtModel, CreatedByModel, TimestampedModel, IconModel, ColorModel {
|
|
3
4
|
title: string | null;
|
|
4
5
|
description: string | null;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
1
|
+
import { RegistrationPayload } from './users';
|
|
2
|
+
import { OfflineModel } from './base';
|
|
3
|
+
|
|
3
4
|
export type EmailVerificationPayload = undefined | RegistrationPayload | Omit<RegistrationPayload, "username" | "email">;
|
|
4
5
|
export interface EmailVerificationReturn {
|
|
5
6
|
username?: string;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
1
|
+
import { CreatedByModel, OfflineModel, Payload, SubmittedAtModel, TimestampedModel } from './base';
|
|
2
|
+
import { Attachment } from './attachments';
|
|
3
|
+
import { BaseSerializedObject, FieldValue, ISerializedField } from '@overmap-ai/forms';
|
|
4
|
+
|
|
4
5
|
export interface Form extends OfflineModel, SubmittedAtModel, CreatedByModel {
|
|
5
6
|
asset_type?: string;
|
|
6
7
|
issue_type?: string;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
1
|
+
import { CreatedByModel, OfflineModel, SubmittedAtModel } from './base';
|
|
2
|
+
import { CanvasMarkableModel, MarkableModel } from './geo';
|
|
3
|
+
import { FileWithNameModel } from '../files';
|
|
4
|
+
|
|
4
5
|
export interface GeoImage extends OfflineModel, SubmittedAtModel, CreatedByModel, MarkableModel, CanvasMarkableModel, FileWithNameModel {
|
|
5
6
|
title?: string;
|
|
6
7
|
description?: string;
|
|
@@ -8,7 +9,7 @@ export interface GeoImage extends OfflineModel, SubmittedAtModel, CreatedByModel
|
|
|
8
9
|
direction?: number;
|
|
9
10
|
original_date?: string;
|
|
10
11
|
}
|
|
11
|
-
export type GeoImagePayload = Omit<
|
|
12
|
+
export type GeoImagePayload = Omit<GeoImage, "offline_id" | "submitted_at" | "created_by" | "file_name" | "file_sha1" | "file"> & {
|
|
12
13
|
file: File;
|
|
13
14
|
};
|
|
14
15
|
export type BulkGeoImagePayload = Omit<GeoImagePayload, "project">;
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
4
|
-
export * from
|
|
5
|
-
export * from
|
|
6
|
-
export * from
|
|
7
|
-
export * from
|
|
8
|
-
export * from
|
|
9
|
-
export * from
|
|
10
|
-
export * from
|
|
11
|
-
export * from
|
|
12
|
-
export * from
|
|
13
|
-
export * from
|
|
14
|
-
export * from
|
|
15
|
-
export * from
|
|
16
|
-
export * from
|
|
17
|
-
export * from
|
|
18
|
-
export * from
|
|
19
|
-
export * from
|
|
20
|
-
export * from
|
|
21
|
-
export * from
|
|
1
|
+
export * from './access';
|
|
2
|
+
export * from './attachments';
|
|
3
|
+
export * from './base';
|
|
4
|
+
export * from './categories';
|
|
5
|
+
export * from './assets';
|
|
6
|
+
export * from './forms';
|
|
7
|
+
export * from './geo';
|
|
8
|
+
export * from './issues';
|
|
9
|
+
export * from './issueTypes';
|
|
10
|
+
export * from './organizations';
|
|
11
|
+
export * from './projects';
|
|
12
|
+
export * from './users';
|
|
13
|
+
export * from './workspace';
|
|
14
|
+
export * from './emailVerification';
|
|
15
|
+
export * from './store';
|
|
16
|
+
export * from './emailDomain';
|
|
17
|
+
export * from './license';
|
|
18
|
+
export * from './documents';
|
|
19
|
+
export * from './teams';
|
|
20
|
+
export * from './agents';
|
|
21
|
+
export * from './geoImages';
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
1
|
+
import { ColorModel, CreatedByModel, IconModel, OfflineModel, SubmittedAtModel } from './base';
|
|
2
|
+
import { Organization } from './organizations';
|
|
3
|
+
|
|
3
4
|
export interface IssueType extends OfflineModel, SubmittedAtModel, IconModel, ColorModel, CreatedByModel {
|
|
4
5
|
name?: string;
|
|
5
6
|
description?: string;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
1
|
+
import { CreatedByModel, Offline, OfflineModel, SubmittedAtModel, TimestampedModel } from './base';
|
|
2
|
+
import { IssuePriority, IssueStatus, IssueUpdateChange } from '../../enums';
|
|
3
|
+
import { WorkspaceIndexedModel } from './workspace';
|
|
4
|
+
import { CanvasMarkableModel, MarkableModel } from './geo';
|
|
5
|
+
import { User } from './users';
|
|
6
|
+
import { CSSColor } from '../colors';
|
|
7
|
+
|
|
7
8
|
/**
|
|
8
9
|
* Represents a model instance that has been submitted to the backend. Some properties (depending on which model, but in
|
|
9
10
|
* all cases, the `offline_id`) are guaranteed to be set.
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
1
|
+
import { OfflineModel, OwnedByOrganization } from './base';
|
|
2
|
+
import { LicenseLevel, LicenseStatus } from '../../enums';
|
|
3
|
+
|
|
3
4
|
export interface Transaction {
|
|
4
5
|
id: string;
|
|
5
6
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
1
|
+
import { Model, OfflineModel, OwnedByOrganization, SubmittedAtModel } from './base';
|
|
2
|
+
import { FileWithNameModel } from '../files';
|
|
3
|
+
import { BoundableModel, CanvasBoundableModel } from './geo';
|
|
4
|
+
|
|
4
5
|
export interface Project extends Model, BoundableModel, CanvasBoundableModel, OwnedByOrganization {
|
|
5
6
|
id: number;
|
|
6
7
|
name: string;
|
|
@@ -8,10 +9,7 @@ export interface Project extends Model, BoundableModel, CanvasBoundableModel, Ow
|
|
|
8
9
|
issues_count?: number;
|
|
9
10
|
form_submissions_count?: number;
|
|
10
11
|
}
|
|
11
|
-
export interface ProjectFile extends OfflineModel, SubmittedAtModel,
|
|
12
|
+
export interface ProjectFile extends OfflineModel, SubmittedAtModel, FileWithNameModel, BoundableModel, CanvasBoundableModel {
|
|
12
13
|
z_index: number;
|
|
13
14
|
project: number;
|
|
14
15
|
}
|
|
15
|
-
export type ProjectFilePayload = Omit<Payload<ProjectFile>, "file_name" | "file_sha1" | "file"> & {
|
|
16
|
-
file: File;
|
|
17
|
-
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
import {
|
|
3
|
-
|
|
1
|
+
import { OfflineState } from '@redux-offline/redux-offline/lib/types';
|
|
2
|
+
import { AgentsState, AssetAttachmentState, AssetStageCompletionState, AssetStageState, AssetState, AssetTypeAttachmentState, AssetTypeState, AuthState, CategoryState, DocumentAttachmentState, DocumentState, EmailDomainState, FileState, FormRevisionAttachmentState, FormRevisionState, FormState, FormSubmissionAttachmentState, FormSubmissionState, GeoImageSliceState, IssueAssociationSliceState, IssueAttachmentState, IssueCommentState, IssueState, IssueTypeState, IssueUpdateState, LicenseState, OrganizationAccessState, OrganizationState, OutboxState, ProjectAccessState, ProjectAttachmentState, ProjectFileState, ProjectState, RehydratedState, TeamState, UserState, VERSION_REDUCER_KEY, VersioningState, WorkspaceState } from '../../store';
|
|
3
|
+
|
|
4
4
|
export interface BaseState {
|
|
5
5
|
outboxReducer: OutboxState;
|
|
6
6
|
offline: OfflineState;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
1
|
+
import { ColorModel, IconModel, OfflineModel, SubmittedAtModel } from './base';
|
|
2
|
+
import { Organization } from './organizations';
|
|
3
|
+
import { User } from './users';
|
|
4
|
+
|
|
4
5
|
export interface Team extends OfflineModel, SubmittedAtModel, IconModel, ColorModel {
|
|
5
6
|
name: string;
|
|
6
7
|
parent: OfflineModel["offline_id"] | null;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { CreatedByModel, Model, OfflineModel, SubmittedAtModel, TimestampedModel } from './base';
|
|
2
|
+
|
|
2
3
|
export interface Workspace extends OfflineModel, TimestampedModel, SubmittedAtModel, CreatedByModel {
|
|
3
4
|
name: string;
|
|
4
5
|
project: number;
|
package/dist/typings/search.d.ts
CHANGED
package/dist/typings/store.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { OvermapRootState } from './models';
|
|
2
|
+
|
|
2
3
|
export type SelectorWithArgs<TState, TArgs, TRet> = (args: TArgs) => (state: TState) => TRet;
|
|
3
4
|
export type Selector<TState, TRet> = (state: TState) => TRet;
|
|
4
5
|
export type OvermapSelectorWithArgs<TArgs, TRet> = SelectorWithArgs<OvermapRootState, TArgs, TRet>;
|
|
@@ -31,5 +31,5 @@ export declare class DeferredPromise<T> implements Promise<T> {
|
|
|
31
31
|
catch<TResult>(onRejected?: (reason: unknown) => TResult | PromiseLike<TResult>): Promise<T | TResult>;
|
|
32
32
|
resolve(value?: T | PromiseLike<T>): void;
|
|
33
33
|
reject(reason?: unknown): void;
|
|
34
|
-
finally(_onFinally?: (() => void) |
|
|
34
|
+
finally(_onFinally?: (() => void) | null): Promise<T>;
|
|
35
35
|
}
|
package/dist/utils/colors.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import L from
|
|
2
|
-
import { Bounds, Coordinates, MultiPointGeometry, PointGeometry } from
|
|
1
|
+
import { default as L } from 'leaflet';
|
|
2
|
+
import { Bounds, Coordinates, MultiPointGeometry, PointGeometry } from '../typings';
|
|
3
|
+
|
|
3
4
|
export declare const coordinatesToLiteral: (coordinates: Coordinates) => L.LatLngLiteral;
|
|
4
5
|
export declare const literalToCoordinates: (literal: L.LatLngLiteral) => Coordinates;
|
|
5
6
|
/**
|
package/dist/utils/file.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { FileUploadPayload } from
|
|
1
|
+
import { FileUploadPayload } from '../typings';
|
|
2
|
+
|
|
2
3
|
export declare const getFileS3Key: (file: File, hash?: string) => Promise<string>;
|
|
3
4
|
export declare function hashFile(file: Blob): Promise<string>;
|
|
4
5
|
export declare function getFileIdentifier(file: File): string;
|
package/dist/utils/forms.d.ts
CHANGED
package/dist/utils/index.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
4
|
-
export * from
|
|
5
|
-
export * from
|
|
6
|
-
export * from
|
|
7
|
-
export * from
|
|
8
|
-
export * from
|
|
9
|
-
export * from
|
|
10
|
-
export * from
|
|
1
|
+
export * from './coordinates';
|
|
2
|
+
export * from './file';
|
|
3
|
+
export * from './logging';
|
|
4
|
+
export * from './offline';
|
|
5
|
+
export * from './string';
|
|
6
|
+
export * from './utils';
|
|
7
|
+
export * from './optimization';
|
|
8
|
+
export * from './colors';
|
|
9
|
+
export * from './date';
|
|
10
|
+
export * from './async/DeferredPromise';
|
package/dist/utils/offline.d.ts
CHANGED
package/dist/utils/utils.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import { Coordinates, IssueAttachment, OfflineModel, OvermapRootState } from
|
|
1
|
+
import { Coordinates, IssueAttachment, OfflineModel, OvermapRootState } from '../typings';
|
|
2
|
+
|
|
2
3
|
type MemoizedSelectorWithArgs<TArgs, TRet> = (state: OvermapRootState, args: TArgs) => TRet;
|
|
3
4
|
export declare const restructureCreateSelectorWithArgs: <TArgs, TRet>(selector: MemoizedSelectorWithArgs<TArgs, TRet>) => (args: TArgs) => (state: OvermapRootState) => TRet;
|
|
4
5
|
export declare function onlyUniqueOfflineIds(value: OfflineModel, index: number, self: OfflineModel[]): boolean;
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Core functionality for Overmap",
|
|
4
4
|
"author": "Wôrdn Inc.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
|
-
"version": "1.0.71-
|
|
6
|
+
"version": "1.0.71-remove-login-timeout.0",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "dist/overmap-core.umd.cjs",
|
|
9
9
|
"module": "dist/overmap-core.js",
|
|
@@ -15,13 +15,13 @@
|
|
|
15
15
|
"lint:fix": "eslint . --ext ts,tsx,js,jsx --report-unused-disable-directives --max-warnings 0 --fix",
|
|
16
16
|
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,html,sass,yaml}\"",
|
|
17
17
|
"preview": "vite preview",
|
|
18
|
-
"prepare": "husky
|
|
18
|
+
"prepare": "husky",
|
|
19
19
|
"test": "npx vitest"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@radix-ui/colors": "^3.0.0",
|
|
23
23
|
"@redux-offline/redux-offline": "^2.6.0",
|
|
24
|
-
"@reduxjs/toolkit": "^
|
|
24
|
+
"@reduxjs/toolkit": "^2.8.2",
|
|
25
25
|
"@types/file-saver": "^2.0.7",
|
|
26
26
|
"color": "^4.2.3",
|
|
27
27
|
"dependency-graph": "^1.0.0",
|
|
@@ -34,14 +34,14 @@
|
|
|
34
34
|
"react-leaflet": "^4.2.1",
|
|
35
35
|
"redux-persist-migrate": "^5.0.0",
|
|
36
36
|
"superagent": "^8.1.2",
|
|
37
|
-
"uuid": "^
|
|
37
|
+
"uuid": "^11.1.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
|
|
41
41
|
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
|
|
42
42
|
"@overmap-ai/blocks": "^1.0.35-radio-card.2",
|
|
43
43
|
"@overmap-ai/forms": "^1.0.17-radio-field.16",
|
|
44
|
-
"@rollup/plugin-commonjs": "^
|
|
44
|
+
"@rollup/plugin-commonjs": "^28.0.0",
|
|
45
45
|
"@testing-library/dom": "^9.3.4",
|
|
46
46
|
"@testing-library/react": "^14.1.2",
|
|
47
47
|
"@testing-library/user-event": "^14.5.2",
|
|
@@ -50,13 +50,12 @@
|
|
|
50
50
|
"@types/jwt-decode": "^3.1.0",
|
|
51
51
|
"@types/leaflet": "^1.9.3",
|
|
52
52
|
"@types/node": "^20.12.11",
|
|
53
|
-
"@types/react": "^19.
|
|
53
|
+
"@types/react": "^19.1.8",
|
|
54
54
|
"@types/react-dom": "^19.0.3",
|
|
55
|
-
"@types/react-redux": "^7.1.26",
|
|
56
55
|
"@types/superagent": "^4.1.18",
|
|
57
56
|
"@types/uuid": "^9.0.3",
|
|
58
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
59
|
-
"@typescript-eslint/parser": "^
|
|
57
|
+
"@typescript-eslint/eslint-plugin": "^8.35.1",
|
|
58
|
+
"@typescript-eslint/parser": "^8.35.1",
|
|
60
59
|
"@vitejs/plugin-react-swc": "^3.3.2",
|
|
61
60
|
"@vitest/coverage-v8": "^1.2.1",
|
|
62
61
|
"eslint": "^8.47.0",
|
|
@@ -68,23 +67,20 @@
|
|
|
68
67
|
"eslint-plugin-react-refresh": "^0.4.3",
|
|
69
68
|
"eslint-plugin-simple-import-sort": "^10.0.0",
|
|
70
69
|
"eslint-plugin-vitest": "^0.3.20",
|
|
71
|
-
"happy-dom": "^
|
|
72
|
-
"husky": "^
|
|
70
|
+
"happy-dom": "^15.10.2",
|
|
71
|
+
"husky": "^9.1.7",
|
|
73
72
|
"jsdom": "^23.2.0",
|
|
74
73
|
"leaflet": "^1.9.0",
|
|
75
74
|
"lint-staged": "^15.1.0",
|
|
76
75
|
"prettier": "^3.0.2",
|
|
77
|
-
"react": "^19.
|
|
76
|
+
"react": "^19.1.0",
|
|
78
77
|
"react-dom": "^19.0.0",
|
|
79
|
-
"react-hooks": "^1.0.1",
|
|
80
|
-
"react-redux": "^8.1.2",
|
|
81
|
-
"redux": "^4.2.1",
|
|
82
78
|
"rollup-plugin-polyfill-node": "^0.12.0",
|
|
83
79
|
"typescript": "^5.2.2",
|
|
84
|
-
"vite": "^
|
|
80
|
+
"vite": "^6.3.4",
|
|
85
81
|
"vite-plugin-dts": "^3.5.2",
|
|
86
82
|
"vite-plugin-externalize-deps": "^0.7.0",
|
|
87
|
-
"vitest": "
|
|
83
|
+
"vitest": "3.2.4"
|
|
88
84
|
},
|
|
89
85
|
"peerDependencies": {
|
|
90
86
|
"@overmap-ai/blocks": "^1.0.35-radio-card.2",
|
|
@@ -92,11 +88,9 @@
|
|
|
92
88
|
"@tiptap/core": "^2.4.0",
|
|
93
89
|
"leaflet": "^1.9.0",
|
|
94
90
|
"react": ">=18.2.0 <20.0.0",
|
|
95
|
-
"react-dom": ">=18.2.0 <20.0.0"
|
|
96
|
-
"react-redux": "^8.1.2"
|
|
91
|
+
"react-dom": ">=18.2.0 <20.0.0"
|
|
97
92
|
},
|
|
98
93
|
"resolutions": {
|
|
99
|
-
"//": "Workaround for eslint issue: https://github.com/eslint/eslint/discussions/17215",
|
|
100
94
|
"strip-ansi": "6.0.1",
|
|
101
95
|
"string-width": "4.2.2",
|
|
102
96
|
"wrap-ansi": "7.0.0"
|
|
@@ -123,5 +117,9 @@
|
|
|
123
117
|
},
|
|
124
118
|
"bugs": {
|
|
125
119
|
"url": "https://github.com/hemora-app/overmap-core/issues"
|
|
120
|
+
},
|
|
121
|
+
"volta": {
|
|
122
|
+
"node": "22.17.0",
|
|
123
|
+
"yarn": "4.9.2"
|
|
126
124
|
}
|
|
127
125
|
}
|