@overmap-ai/core 1.0.28-integrate-forms.7 → 1.0.28-integrate-forms.9
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.map +1 -1
- package/dist/overmap-core.umd.cjs.map +1 -1
- package/dist/store/slices/categorySlice.d.ts +22 -22
- package/dist/store/slices/issueSlice.d.ts +22 -22
- package/dist/store/slices/projectFileSlice.d.ts +22 -22
- package/dist/store/slices/workspaceSlice.d.ts +22 -22
- package/dist/store/store.d.ts +68 -66
- package/package.json +1 -1
|
@@ -42,28 +42,28 @@ export declare const categorySlice: import("@reduxjs/toolkit").Slice<CategorySta
|
|
|
42
42
|
export declare const setCategories: import("@reduxjs/toolkit").ActionCreatorWithPayload<Category[], "categories/setCategories">, addCategory: import("@reduxjs/toolkit").ActionCreatorWithPayload<Category, "categories/addCategory">, replaceCategory: import("@reduxjs/toolkit").ActionCreatorWithPayload<Category, "categories/replaceCategory">, patchCategory: import("@reduxjs/toolkit").ActionCreatorWithPayload<Offline<Partial<Category>>, "categories/patchCategory">, removeCategory: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, "categories/removeCategory">, hideCategory: import("@reduxjs/toolkit").ActionCreatorWithPayload<string | null, "categories/hideCategory">, hideAllCategories: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"categories/hideAllCategories">, unhideCategory: import("@reduxjs/toolkit").ActionCreatorWithPayload<string | null, "categories/unhideCategory">, unhideAllCategories: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"categories/unhideAllCategories">, removeColor: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, "categories/removeColor">, addOrReplaceCategories: import("@reduxjs/toolkit").ActionCreatorWithPayload<Category[], "categories/addOrReplaceCategories">;
|
|
43
43
|
export declare const selectCategoryMapping: (state: RootState) => Record<string, Category>;
|
|
44
44
|
export declare const selectCategories: ((state: import("redux").EmptyObject & {
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
45
|
+
versioning: import('../slices/versioningSlice').VersioningState;
|
|
46
|
+
fileReducer: import('..').FileState;
|
|
47
|
+
authReducer: import('..').AuthState;
|
|
48
|
+
categoryReducer: CategoryState;
|
|
49
|
+
componentReducer: import('..').ComponentState;
|
|
50
|
+
componentStageCompletionReducer: import('..').ComponentStageCompletionState;
|
|
51
|
+
componentStageReducer: import('..').ComponentStageState;
|
|
52
|
+
componentTypeReducer: import('..').ComponentTypeState;
|
|
53
|
+
issueReducer: import('..').IssueState;
|
|
54
|
+
mapReducer: import('..').MapState;
|
|
55
|
+
organizationReducer: import('..').OrganizationState;
|
|
56
|
+
outboxReducer: import('..').OutboxState;
|
|
57
|
+
projectReducer: import('..').ProjectState;
|
|
58
|
+
projectAccessReducer: import('..').ProjectAccessState;
|
|
59
|
+
organizationAccessReducer: import('..').OrganizationAccessState;
|
|
60
|
+
projectFileReducer: import('..').ProjectFileState;
|
|
61
|
+
rehydratedReducer: import('..').RehydratedState;
|
|
62
|
+
settingReducer: import('..').SettingState;
|
|
63
|
+
userFormReducer: import('..').UserFormState;
|
|
64
|
+
userReducer: import('..').UserState;
|
|
65
|
+
workspaceReducer: import('..').WorkspaceState;
|
|
66
|
+
emailDomainsReducer: import('..').EmailDomainState;
|
|
67
67
|
} & {
|
|
68
68
|
offline: import("@redux-offline/redux-offline/lib/types").OfflineState;
|
|
69
69
|
}) => Category[]) & import("reselect").OutputSelectorFields<(args_0: Record<string, Category>, args_1: string | null) => Category[], {
|
|
@@ -78,28 +78,28 @@ export declare const selectFileAttachmentsOfIssue: (args: string) => (state: Roo
|
|
|
78
78
|
export declare const selectIssue: SelectorWithArgs<string, Stored<Issue> | undefined>;
|
|
79
79
|
export declare const selectIsFetchingInitialData: (state: RootState) => boolean;
|
|
80
80
|
export declare const selectAllAttachments: ((state: import("redux").EmptyObject & {
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
81
|
+
versioning: import('../slices/versioningSlice.ts').VersioningState;
|
|
82
|
+
fileReducer: import("index.ts").FileState;
|
|
83
|
+
authReducer: import("index.ts").AuthState;
|
|
84
|
+
categoryReducer: import("./categorySlice.ts").CategoryState;
|
|
85
|
+
componentReducer: import("index.ts").ComponentState;
|
|
86
|
+
componentStageCompletionReducer: import("index.ts").ComponentStageCompletionState;
|
|
87
|
+
componentStageReducer: import("index.ts").ComponentStageState;
|
|
88
|
+
componentTypeReducer: import("index.ts").ComponentTypeState;
|
|
89
|
+
issueReducer: IssueState;
|
|
90
|
+
mapReducer: import("index.ts").MapState;
|
|
91
|
+
organizationReducer: import("index.ts").OrganizationState;
|
|
92
|
+
outboxReducer: import("index.ts").OutboxState;
|
|
93
|
+
projectReducer: import("index.ts").ProjectState;
|
|
94
|
+
projectAccessReducer: import("index.ts").ProjectAccessState;
|
|
95
|
+
organizationAccessReducer: import("index.ts").OrganizationAccessState;
|
|
96
|
+
projectFileReducer: import("index.ts").ProjectFileState;
|
|
97
|
+
rehydratedReducer: import("index.ts").RehydratedState;
|
|
98
|
+
settingReducer: import("index.ts").SettingState;
|
|
99
|
+
userFormReducer: import("index.ts").UserFormState;
|
|
100
|
+
userReducer: import("index.ts").UserState;
|
|
101
|
+
workspaceReducer: import("./workspaceSlice.ts").WorkspaceState;
|
|
102
|
+
emailDomainsReducer: import("index.ts").EmailDomainState;
|
|
103
103
|
} & {
|
|
104
104
|
offline: import("@redux-offline/redux-offline/lib/types").OfflineState;
|
|
105
105
|
}) => Stored<IssueAttachment>[]) & import("reselect").OutputSelectorFields<(args_0: Record<string, Stored<IssueAttachment>>) => Stored<IssueAttachment>[], {
|
|
@@ -50,28 +50,28 @@ export declare const selectEnabledProjectFiles: (state: RootState) => Record<str
|
|
|
50
50
|
export declare const selectProjectFileVisibility: Selector<Record<string, boolean>>;
|
|
51
51
|
export declare const selectEnabledProjectFileMapping: (state: RootState) => Record<string, ProjectFile>;
|
|
52
52
|
export declare const selectProjectFiles: ((state: import("redux").EmptyObject & {
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
53
|
+
versioning: import('../slices/versioningSlice.ts').VersioningState;
|
|
54
|
+
fileReducer: import("index.ts").FileState;
|
|
55
|
+
authReducer: import("index.ts").AuthState;
|
|
56
|
+
categoryReducer: import("index.ts").CategoryState;
|
|
57
|
+
componentReducer: import("index.ts").ComponentState;
|
|
58
|
+
componentStageCompletionReducer: import("index.ts").ComponentStageCompletionState;
|
|
59
|
+
componentStageReducer: import("index.ts").ComponentStageState;
|
|
60
|
+
componentTypeReducer: import("index.ts").ComponentTypeState;
|
|
61
|
+
issueReducer: import("index.ts").IssueState;
|
|
62
|
+
mapReducer: import("index.ts").MapState;
|
|
63
|
+
organizationReducer: import("index.ts").OrganizationState;
|
|
64
|
+
outboxReducer: import("index.ts").OutboxState;
|
|
65
|
+
projectReducer: import("./projectSlice.ts").ProjectState;
|
|
66
|
+
projectAccessReducer: import("index.ts").ProjectAccessState;
|
|
67
|
+
organizationAccessReducer: import("index.ts").OrganizationAccessState;
|
|
68
|
+
projectFileReducer: ProjectFileState;
|
|
69
|
+
rehydratedReducer: import("index.ts").RehydratedState;
|
|
70
|
+
settingReducer: import("index.ts").SettingState;
|
|
71
|
+
userFormReducer: import("index.ts").UserFormState;
|
|
72
|
+
userReducer: import("index.ts").UserState;
|
|
73
|
+
workspaceReducer: import("index.ts").WorkspaceState;
|
|
74
|
+
emailDomainsReducer: import("index.ts").EmailDomainState;
|
|
75
75
|
} & {
|
|
76
76
|
offline: import("@redux-offline/redux-offline/lib/types").OfflineState;
|
|
77
77
|
}) => ProjectFile[]) & import("reselect").OutputSelectorFields<(args_0: Record<string, ProjectFile>, args_1: number | null) => ProjectFile[], {
|
|
@@ -28,28 +28,28 @@ export declare const workspaceSlice: import("@reduxjs/toolkit").Slice<WorkspaceS
|
|
|
28
28
|
export declare const setWorkspaces: import("@reduxjs/toolkit").ActionCreatorWithPayload<Record<string, Workspace>, "workspace/setWorkspaces">, addOrReplaceWorkspaces: import("@reduxjs/toolkit").ActionCreatorWithPayload<Record<string, Workspace>, "workspace/addOrReplaceWorkspaces">, addWorkspace: import("@reduxjs/toolkit").ActionCreatorWithPayload<Workspace, "workspace/addWorkspace">, setActiveWorkspaceId: import("@reduxjs/toolkit").ActionCreatorWithPayload<string | null, "workspace/setActiveWorkspaceId">, removeWorkspace: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, "workspace/removeWorkspace">;
|
|
29
29
|
export declare const selectWorkspaceMapping: Selector<Record<string, Workspace>>;
|
|
30
30
|
export declare const selectWorkspaces: ((state: import("redux").EmptyObject & {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
31
|
+
versioning: import('../slices/versioningSlice').VersioningState;
|
|
32
|
+
fileReducer: import('..').FileState;
|
|
33
|
+
authReducer: import('..').AuthState;
|
|
34
|
+
categoryReducer: import('..').CategoryState;
|
|
35
|
+
componentReducer: import('..').ComponentState;
|
|
36
|
+
componentStageCompletionReducer: import('..').ComponentStageCompletionState;
|
|
37
|
+
componentStageReducer: import('..').ComponentStageState;
|
|
38
|
+
componentTypeReducer: import('..').ComponentTypeState;
|
|
39
|
+
issueReducer: import('..').IssueState;
|
|
40
|
+
mapReducer: import('..').MapState;
|
|
41
|
+
organizationReducer: import('..').OrganizationState;
|
|
42
|
+
outboxReducer: import('..').OutboxState;
|
|
43
|
+
projectReducer: import('..').ProjectState;
|
|
44
|
+
projectAccessReducer: import('..').ProjectAccessState;
|
|
45
|
+
organizationAccessReducer: import('..').OrganizationAccessState;
|
|
46
|
+
projectFileReducer: import('..').ProjectFileState;
|
|
47
|
+
rehydratedReducer: import('..').RehydratedState;
|
|
48
|
+
settingReducer: import('..').SettingState;
|
|
49
|
+
userFormReducer: import('..').UserFormState;
|
|
50
|
+
userReducer: import('..').UserState;
|
|
51
|
+
workspaceReducer: WorkspaceState;
|
|
52
|
+
emailDomainsReducer: import('..').EmailDomainState;
|
|
53
53
|
} & {
|
|
54
54
|
offline: import("@redux-offline/redux-offline/lib/types").OfflineState;
|
|
55
55
|
}) => Workspace[]) & import("reselect").OutputSelectorFields<(args_0: Record<string, Workspace>) => Workspace[], {
|
package/dist/store/store.d.ts
CHANGED
|
@@ -3,54 +3,56 @@ import { AnyAction, Reducer } from "redux";
|
|
|
3
3
|
import { Config, OfflineAction, OfflineMetadata, OfflineState } from "@redux-offline/redux-offline/lib/types";
|
|
4
4
|
import request from "superagent";
|
|
5
5
|
import { type OfflineMetaEffect, type OvermapSDK, RequestDetails } from "../sdk";
|
|
6
|
+
import { AuthState, CategoryState, ComponentStageCompletionState, ComponentStageState, ComponentState, ComponentTypeState, EmailDomainState, FileState, IssueState, MapState, OrganizationAccessState, OrganizationState, OutboxState, ProjectAccessState, ProjectFileState, ProjectState, RehydratedState, SettingState, UserFormState, UserState, WorkspaceState } from "./slices";
|
|
7
|
+
import { VersioningState } from "./slices/versioningSlice";
|
|
6
8
|
import { RootState } from "../typings";
|
|
7
9
|
export declare const overmapReducers: {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
10
|
+
versioning: Reducer<VersioningState>;
|
|
11
|
+
fileReducer: Reducer<FileState>;
|
|
12
|
+
authReducer: Reducer<AuthState>;
|
|
13
|
+
categoryReducer: Reducer<CategoryState>;
|
|
14
|
+
componentReducer: Reducer<ComponentState>;
|
|
15
|
+
componentStageCompletionReducer: Reducer<ComponentStageCompletionState>;
|
|
16
|
+
componentStageReducer: Reducer<ComponentStageState>;
|
|
17
|
+
componentTypeReducer: Reducer<ComponentTypeState>;
|
|
18
|
+
issueReducer: Reducer<IssueState>;
|
|
19
|
+
mapReducer: Reducer<MapState>;
|
|
20
|
+
organizationReducer: Reducer<OrganizationState>;
|
|
21
|
+
outboxReducer: Reducer<OutboxState>;
|
|
22
|
+
projectReducer: Reducer<ProjectState>;
|
|
23
|
+
projectAccessReducer: Reducer<ProjectAccessState>;
|
|
24
|
+
organizationAccessReducer: Reducer<OrganizationAccessState>;
|
|
25
|
+
projectFileReducer: Reducer<ProjectFileState>;
|
|
26
|
+
rehydratedReducer: Reducer<RehydratedState>;
|
|
27
|
+
settingReducer: Reducer<SettingState>;
|
|
28
|
+
userFormReducer: Reducer<UserFormState>;
|
|
29
|
+
userReducer: Reducer<UserState>;
|
|
30
|
+
workspaceReducer: Reducer<WorkspaceState>;
|
|
31
|
+
emailDomainsReducer: Reducer<EmailDomainState>;
|
|
30
32
|
};
|
|
31
33
|
export declare const overmapReducer: Reducer<import("redux").CombinedState<{
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
34
|
+
versioning: VersioningState;
|
|
35
|
+
fileReducer: FileState;
|
|
36
|
+
authReducer: AuthState;
|
|
37
|
+
categoryReducer: CategoryState;
|
|
38
|
+
componentReducer: ComponentState;
|
|
39
|
+
componentStageCompletionReducer: ComponentStageCompletionState;
|
|
40
|
+
componentStageReducer: ComponentStageState;
|
|
41
|
+
componentTypeReducer: ComponentTypeState;
|
|
42
|
+
issueReducer: IssueState;
|
|
43
|
+
mapReducer: MapState;
|
|
44
|
+
organizationReducer: OrganizationState;
|
|
45
|
+
outboxReducer: OutboxState;
|
|
46
|
+
projectReducer: ProjectState;
|
|
47
|
+
projectAccessReducer: ProjectAccessState;
|
|
48
|
+
organizationAccessReducer: OrganizationAccessState;
|
|
49
|
+
projectFileReducer: ProjectFileState;
|
|
50
|
+
rehydratedReducer: RehydratedState;
|
|
51
|
+
settingReducer: SettingState;
|
|
52
|
+
userFormReducer: UserFormState;
|
|
53
|
+
userReducer: UserState;
|
|
54
|
+
workspaceReducer: WorkspaceState;
|
|
55
|
+
emailDomainsReducer: EmailDomainState;
|
|
54
56
|
}>, AnyAction>;
|
|
55
57
|
export declare const resetStore = "RESET";
|
|
56
58
|
export declare const rootReducer: Reducer<RootState>;
|
|
@@ -71,28 +73,28 @@ export declare const dequeue: Config["queue"]["dequeue"];
|
|
|
71
73
|
*/
|
|
72
74
|
export declare const overmapEnhancer: (...args: any[]) => unknown;
|
|
73
75
|
export declare const defaultStore: import("@reduxjs/toolkit/dist/configureStore").ToolkitStore<import("redux").EmptyObject & {
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
76
|
+
versioning: VersioningState;
|
|
77
|
+
fileReducer: FileState;
|
|
78
|
+
authReducer: AuthState;
|
|
79
|
+
categoryReducer: CategoryState;
|
|
80
|
+
componentReducer: ComponentState;
|
|
81
|
+
componentStageCompletionReducer: ComponentStageCompletionState;
|
|
82
|
+
componentStageReducer: ComponentStageState;
|
|
83
|
+
componentTypeReducer: ComponentTypeState;
|
|
84
|
+
issueReducer: IssueState;
|
|
85
|
+
mapReducer: MapState;
|
|
86
|
+
organizationReducer: OrganizationState;
|
|
87
|
+
outboxReducer: OutboxState;
|
|
88
|
+
projectReducer: ProjectState;
|
|
89
|
+
projectAccessReducer: ProjectAccessState;
|
|
90
|
+
organizationAccessReducer: OrganizationAccessState;
|
|
91
|
+
projectFileReducer: ProjectFileState;
|
|
92
|
+
rehydratedReducer: RehydratedState;
|
|
93
|
+
settingReducer: SettingState;
|
|
94
|
+
userFormReducer: UserFormState;
|
|
95
|
+
userReducer: UserState;
|
|
96
|
+
workspaceReducer: WorkspaceState;
|
|
97
|
+
emailDomainsReducer: EmailDomainState;
|
|
96
98
|
} & {
|
|
97
99
|
offline: OfflineState;
|
|
98
100
|
}, AnyAction, import("@reduxjs/toolkit").MiddlewareArray<[import("@reduxjs/toolkit").ThunkMiddleware<RootState, AnyAction>]>>;
|
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.28-integrate-forms.
|
|
6
|
+
"version": "1.0.28-integrate-forms.9",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "dist/overmap-core.umd.cjs",
|
|
9
9
|
"module": "dist/overmap-core.js",
|