@overmap-ai/core 1.0.63-org-projs-only.1 → 1.0.63-org-doc-improvements.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/overmap-core.js +450 -247
- package/dist/overmap-core.js.map +1 -1
- package/dist/overmap-core.umd.cjs +450 -247
- package/dist/overmap-core.umd.cjs.map +1 -1
- package/dist/sdk/services/DocumentService.d.ts +1 -1
- package/dist/sdk/services/FormService.d.ts +15 -11
- package/dist/sdk/services/FormSubmissionService.d.ts +8 -5
- package/dist/sdk/services/IssueAssociationService.d.ts +9 -0
- package/dist/sdk/services/index.d.ts +1 -0
- package/dist/store/slices/documentSlice.d.ts +3 -311
- package/dist/store/slices/index.d.ts +1 -0
- package/dist/store/slices/issueAssociationSlice.d.ts +49 -0
- package/dist/store/store.d.ts +3 -2
- package/dist/typings/models/attachments.d.ts +5 -8
- package/dist/typings/models/base.d.ts +5 -4
- package/dist/typings/models/documents.d.ts +6 -16
- package/dist/typings/models/forms.d.ts +3 -3
- package/dist/typings/models/issues.d.ts +13 -9
- package/dist/typings/models/license.d.ts +2 -2
- package/dist/typings/models/projects.d.ts +4 -2
- package/dist/typings/models/store.d.ts +2 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { OfflineModel,
|
|
1
|
+
import { OfflineModel, OwnedByUserOrOrganization } from "./base";
|
|
2
2
|
export declare enum PaddleCheckoutEvent {
|
|
3
3
|
COMPLETED = "checkout.completed",
|
|
4
4
|
CLOSED = "checkout.closed"
|
|
@@ -16,7 +16,7 @@ export declare enum LicenseStatus {
|
|
|
16
16
|
export interface Transaction {
|
|
17
17
|
id: string;
|
|
18
18
|
}
|
|
19
|
-
export interface License extends OfflineModel,
|
|
19
|
+
export interface License extends OfflineModel, OwnedByUserOrOrganization {
|
|
20
20
|
project: number | null;
|
|
21
21
|
level: LicenseLevel;
|
|
22
22
|
status: LicenseStatus;
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
import { Model, OfflineModel
|
|
1
|
+
import { Model, OfflineModel } from "./base";
|
|
2
2
|
import { FileWithNameModel } from "../files";
|
|
3
3
|
import { BoundableModel, CanvasBoundableModel } from "./geo";
|
|
4
|
-
export interface Project extends Model, BoundableModel, CanvasBoundableModel
|
|
4
|
+
export interface Project extends Model, BoundableModel, CanvasBoundableModel {
|
|
5
5
|
id: number;
|
|
6
6
|
name: string;
|
|
7
|
+
organization_owner: number | null;
|
|
8
|
+
user_owner: number | null;
|
|
7
9
|
invited?: boolean;
|
|
8
10
|
issues_count?: number;
|
|
9
11
|
form_submissions_count?: number;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="@redux-offline/redux-offline" />
|
|
2
2
|
import { OfflineState } from "@redux-offline/redux-offline/lib/types";
|
|
3
|
-
import { AgentsState, AssetAttachmentState, AssetStageCompletionState, AssetStageState, AssetState, AssetTypeAttachmentState, AssetTypeState, AuthState, CategoryState, DocumentAttachmentState, DocumentState, EmailDomainState, FileState, FormRevisionAttachmentState, FormRevisionState, FormState, FormSubmissionAttachmentState, FormSubmissionState, GeoImageSliceState, IssueAttachmentState, IssueCommentState, IssueState, IssueTypeState, IssueUpdateState, LicenseState, OrganizationAccessState, OrganizationState, OutboxState, ProjectAccessState, ProjectAttachmentState, ProjectFileState, ProjectState, RehydratedState, SettingState, TeamState, UserState, VERSION_REDUCER_KEY, VersioningState, WorkspaceState } from "../../store";
|
|
3
|
+
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, SettingState, TeamState, UserState, VERSION_REDUCER_KEY, VersioningState, WorkspaceState } from "../../store";
|
|
4
4
|
export interface BaseState {
|
|
5
5
|
outboxReducer: OutboxState;
|
|
6
6
|
offline: OfflineState;
|
|
@@ -43,4 +43,5 @@ export interface OvermapRootState extends BaseState {
|
|
|
43
43
|
teamReducer: TeamState;
|
|
44
44
|
agentsReducer: AgentsState;
|
|
45
45
|
geoImageReducer: GeoImageSliceState;
|
|
46
|
+
issueAssociationReducer: IssueAssociationSliceState;
|
|
46
47
|
}
|
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.63-org-
|
|
6
|
+
"version": "1.0.63-org-doc-improvements.0",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "dist/overmap-core.umd.cjs",
|
|
9
9
|
"module": "dist/overmap-core.js",
|