@overmap-ai/core 1.0.53-fix-not-send-org-in-payload.0 → 1.0.53-fix-outbox.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/README.md +4 -4
- package/dist/overmap-core.js +2071 -1862
- package/dist/overmap-core.js.map +1 -1
- package/dist/overmap-core.umd.cjs +2076 -1867
- package/dist/overmap-core.umd.cjs.map +1 -1
- package/dist/sdk/sdk.d.ts +19 -3
- package/dist/sdk/services/AgentService.d.ts +6 -32
- package/dist/sdk/services/BaseApiService.d.ts +0 -12
- package/dist/sdk/services/BaseAttachmentService.d.ts +31 -0
- package/dist/sdk/services/ComponentAttachmentService.d.ts +10 -0
- package/dist/sdk/services/ComponentService.d.ts +1 -1
- package/dist/sdk/services/ComponentTypeAttachmentService.d.ts +10 -0
- package/dist/sdk/services/DocumentAttachmentService.d.ts +10 -0
- package/dist/sdk/services/IssueAttachmentService.d.ts +10 -0
- package/dist/sdk/services/IssueService.d.ts +1 -1
- package/dist/sdk/services/MainService.d.ts +4 -11
- package/dist/sdk/services/ProjectAttachmentService.d.ts +10 -0
- package/dist/sdk/services/index.d.ts +5 -1
- package/dist/store/slices/agentsSlice.d.ts +16 -0
- package/dist/store/slices/categorySlice.d.ts +1 -0
- package/dist/store/slices/componentSlice.d.ts +16 -8
- package/dist/store/slices/componentTypeSlice.d.ts +16 -8
- package/dist/store/slices/documentSlice.d.ts +11 -2
- package/dist/store/slices/formRevisionSlice.d.ts +31 -30
- package/dist/store/slices/index.d.ts +1 -0
- package/dist/store/slices/issueSlice.d.ts +34 -21
- package/dist/store/slices/projectFileSlice.d.ts +1 -0
- package/dist/store/slices/projectSlice.d.ts +12 -3
- package/dist/store/slices/utils.d.ts +3 -2
- package/dist/store/slices/workspaceSlice.d.ts +1 -0
- package/dist/store/store.d.ts +4 -1
- package/dist/typings/models/agents.d.ts +40 -0
- package/dist/typings/models/attachments.d.ts +7 -0
- package/dist/typings/models/index.d.ts +1 -0
- package/dist/typings/models/projects.d.ts +4 -5
- package/package.json +153 -153
- package/dist/sdk/services/AttachmentService.d.ts +0 -46
package/dist/sdk/sdk.d.ts
CHANGED
|
@@ -1,13 +1,24 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ToolkitStore } from "@reduxjs/toolkit/dist/configureStore
|
|
1
|
+
import { AgentService, AuthService, CategoryService, ComponentAttachmentService, ComponentService, ComponentStageCompletionService, ComponentStageService, ComponentTypeAttachmentService, ComponentTypeService, DocumentAttachmentService, DocumentService, EmailDomainsService, EmailVerificationService, FileService, IssueAttachmentService, IssueCommentService, IssueService, IssueTypeService, IssueUpdateService, LicenseService, MainService, OrganizationAccessService, OrganizationService, ProjectAccessService, ProjectAttachmentService, ProjectFileService, ProjectService, TeamService, UserFormService, UserFormSubmissionService, WorkspaceService } from "./services";
|
|
2
|
+
import { ToolkitStore } from "@reduxjs/toolkit/dist/configureStore";
|
|
3
3
|
import { RootState } from "../typings";
|
|
4
|
+
import { SDKRequest } from "./typings";
|
|
4
5
|
export declare class OvermapSDK {
|
|
5
6
|
readonly API_URL: string;
|
|
6
7
|
readonly store: ToolkitStore<RootState>;
|
|
7
8
|
constructor(apiUrl: string, store: ToolkitStore<RootState>);
|
|
9
|
+
/**
|
|
10
|
+
* Enqueues an API request to the offline outbox.
|
|
11
|
+
* @param requestDetails An SDKRequest object containing the details of the request.
|
|
12
|
+
* @protected
|
|
13
|
+
*/
|
|
14
|
+
enqueueRequest<TResult>(requestDetails: SDKRequest): Promise<TResult>;
|
|
15
|
+
/**
|
|
16
|
+
* Enqueues an API request to the Redux Offline outbox
|
|
17
|
+
* @protected
|
|
18
|
+
*/
|
|
19
|
+
private _enqueueRequest;
|
|
8
20
|
agent: AgentService;
|
|
9
21
|
files: FileService;
|
|
10
|
-
attachments: AttachmentService;
|
|
11
22
|
auth: AuthService;
|
|
12
23
|
categories: CategoryService;
|
|
13
24
|
projectAccesses: ProjectAccessService;
|
|
@@ -17,20 +28,25 @@ export declare class OvermapSDK {
|
|
|
17
28
|
issueTypes: IssueTypeService;
|
|
18
29
|
issueComments: IssueCommentService;
|
|
19
30
|
issueUpdates: IssueUpdateService;
|
|
31
|
+
issueAttachments: IssueAttachmentService;
|
|
20
32
|
workspaces: WorkspaceService;
|
|
21
33
|
main: MainService;
|
|
22
34
|
components: ComponentService;
|
|
35
|
+
componentAttachments: ComponentAttachmentService;
|
|
23
36
|
componentTypes: ComponentTypeService;
|
|
37
|
+
componentTypeAttachments: ComponentTypeAttachmentService;
|
|
24
38
|
componentStages: ComponentStageService;
|
|
25
39
|
componentStageCompletions: ComponentStageCompletionService;
|
|
26
40
|
userForms: UserFormService;
|
|
27
41
|
userFormSubmissions: UserFormSubmissionService;
|
|
28
42
|
projects: ProjectService;
|
|
29
43
|
projectFiles: ProjectFileService;
|
|
44
|
+
projectAttachments: ProjectAttachmentService;
|
|
30
45
|
emailVerification: EmailVerificationService;
|
|
31
46
|
emailDomains: EmailDomainsService;
|
|
32
47
|
licenses: LicenseService;
|
|
33
48
|
documents: DocumentService;
|
|
34
49
|
teams: TeamService;
|
|
50
|
+
documentAttachments: DocumentAttachmentService;
|
|
35
51
|
}
|
|
36
52
|
export declare const makeClient: (apiUrl: string, store: ToolkitStore<RootState>) => OvermapSDK;
|
|
@@ -1,40 +1,14 @@
|
|
|
1
1
|
import { BaseApiService } from "./BaseApiService";
|
|
2
|
-
import {
|
|
3
|
-
import { JSONContent } from "@tiptap/core";
|
|
4
|
-
export interface AgentProfile extends OptionalFileModel {
|
|
5
|
-
/**
|
|
6
|
-
* The name of the agent.
|
|
7
|
-
*/
|
|
8
|
-
name: string;
|
|
9
|
-
/**
|
|
10
|
-
* The description of the agent.
|
|
11
|
-
*/
|
|
12
|
-
description: string;
|
|
13
|
-
}
|
|
14
|
-
export interface PromptAgentResponse {
|
|
15
|
-
/**
|
|
16
|
-
* The response from the agent.
|
|
17
|
-
*/
|
|
18
|
-
response: JSONContent[];
|
|
19
|
-
/**
|
|
20
|
-
* The UUID of the conversation.
|
|
21
|
-
*/
|
|
22
|
-
conversation_id: string;
|
|
23
|
-
/**
|
|
24
|
-
* The UUID of the response (used when submitting ratings)
|
|
25
|
-
*/
|
|
26
|
-
response_id: string;
|
|
27
|
-
/**
|
|
28
|
-
* The profile of the agent. Only included in the first response in a conversation.
|
|
29
|
-
*/
|
|
30
|
-
profile?: AgentProfile;
|
|
31
|
-
}
|
|
2
|
+
import { AgentUserConversation, Payload } from "../../typings";
|
|
32
3
|
export declare class AgentService extends BaseApiService {
|
|
4
|
+
startConversation(prompt: string): Promise<AgentUserConversation>;
|
|
33
5
|
/**
|
|
34
6
|
* Prompt the agent with a message.
|
|
35
|
-
* @param
|
|
7
|
+
* @param prompt The message to prompt the agent with.
|
|
36
8
|
* @param conversationId If continuing an existing message, the UUID of that conversation.
|
|
37
9
|
*/
|
|
38
|
-
prompt
|
|
10
|
+
continueConversation(prompt: Payload<string>, conversationId: AgentUserConversation["offline_id"]): Promise<void>;
|
|
11
|
+
fetchDetails(conversationId: AgentUserConversation["offline_id"]): Promise<void>;
|
|
39
12
|
rate(responseId: string, rating: 1 | 5): Promise<undefined>;
|
|
13
|
+
refreshStore(): Promise<void>;
|
|
40
14
|
}
|
|
@@ -1,20 +1,8 @@
|
|
|
1
1
|
import type { OvermapSDK } from "../sdk";
|
|
2
|
-
import { SDKRequest } from "../typings";
|
|
3
2
|
/**
|
|
4
3
|
* Abstract base class for building a service that can enqueue API requests
|
|
5
4
|
*/
|
|
6
5
|
export declare abstract class BaseApiService {
|
|
7
6
|
protected readonly client: OvermapSDK;
|
|
8
7
|
constructor(sdk: OvermapSDK);
|
|
9
|
-
/**
|
|
10
|
-
* Enqueues an API request to the offline outbox.
|
|
11
|
-
* @param requestDetails An SDKRequest object containing the details of the request.
|
|
12
|
-
* @protected
|
|
13
|
-
*/
|
|
14
|
-
protected enqueueRequest<TResult>(requestDetails: SDKRequest): Promise<TResult>;
|
|
15
|
-
/**
|
|
16
|
-
* Enqueues an API request to the Redux Offline outbox
|
|
17
|
-
* @protected
|
|
18
|
-
*/
|
|
19
|
-
private _enqueueRequest;
|
|
20
8
|
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { ActionCreatorWithPayload } from "@reduxjs/toolkit";
|
|
2
|
+
import { BaseApiService } from "./BaseApiService";
|
|
3
|
+
import { OptimisticMultipleModelResult } from "../typings";
|
|
4
|
+
import { Attachment, AttachmentModel, SelectorWithArgs, Stored, Submitted } from "../../typings";
|
|
5
|
+
export interface BuildOfflineAttachmentData<TModelId> {
|
|
6
|
+
file: File;
|
|
7
|
+
sha1: string;
|
|
8
|
+
submittedAt: string;
|
|
9
|
+
createdBy: number;
|
|
10
|
+
description?: string;
|
|
11
|
+
modelId: TModelId;
|
|
12
|
+
}
|
|
13
|
+
export declare abstract class BaseAttachmentService extends BaseApiService {
|
|
14
|
+
abstract readonly attachmentModel: AttachmentModel;
|
|
15
|
+
private getNumberOfAttachmentsWithSha1;
|
|
16
|
+
private processPresignedUrls;
|
|
17
|
+
protected getAttachments<TAttachment extends Attachment>(actions: {
|
|
18
|
+
setAttachments: ActionCreatorWithPayload<Submitted<TAttachment>[]>;
|
|
19
|
+
}): Promise<void>;
|
|
20
|
+
protected attachFiles<TAttachment extends Attachment, TModelId = string | number>(files: File[], modelId: TModelId, buildOfflineAttachment: (data: BuildOfflineAttachmentData<TModelId>) => Stored<TAttachment>, actions: {
|
|
21
|
+
addAttachments: ActionCreatorWithPayload<Submitted<TAttachment>[]>;
|
|
22
|
+
updateAttachments: ActionCreatorWithPayload<Submitted<TAttachment>[]>;
|
|
23
|
+
removeAttachments: ActionCreatorWithPayload<string[]>;
|
|
24
|
+
}): Promise<OptimisticMultipleModelResult<TAttachment>>;
|
|
25
|
+
protected deleteAttachment<TAttachment extends Attachment>(attachmendId: string, actions: {
|
|
26
|
+
setAttachment: ActionCreatorWithPayload<Stored<TAttachment>>;
|
|
27
|
+
removeAttachment: ActionCreatorWithPayload<string>;
|
|
28
|
+
}, selectors: {
|
|
29
|
+
selectAttachment: SelectorWithArgs<string, Stored<TAttachment>>;
|
|
30
|
+
}): Promise<void>;
|
|
31
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BaseAttachmentService } from "./BaseAttachmentService";
|
|
2
|
+
import { AttachmentModel, ComponentAttachment } from "../../typings";
|
|
3
|
+
import { OptimisticMultipleModelResult } from "../typings";
|
|
4
|
+
export declare class ComponentAttachmentService extends BaseAttachmentService {
|
|
5
|
+
attachmentModel: AttachmentModel;
|
|
6
|
+
private buildOfflineAttachment;
|
|
7
|
+
attachFilesToComponent(files: File[], componentId: string): Promise<OptimisticMultipleModelResult<ComponentAttachment>>;
|
|
8
|
+
deleteComponentAttachment(attachmentId: string): Promise<void>;
|
|
9
|
+
refreshStore(): Promise<void>;
|
|
10
|
+
}
|
|
@@ -7,5 +7,5 @@ export declare class ComponentService extends BaseApiService {
|
|
|
7
7
|
remove(id: string): Promise<undefined>;
|
|
8
8
|
deleteAllByComponentType(componentTypeId: string): Promise<undefined>;
|
|
9
9
|
addBatch(componentsToCreate: Payload<Component>[], workspaceId: string, componentTypeId: string): Promise<Record<string, Component>>;
|
|
10
|
-
refreshStore(
|
|
10
|
+
refreshStore(): Promise<void>;
|
|
11
11
|
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BaseAttachmentService } from "./BaseAttachmentService";
|
|
2
|
+
import { AttachmentModel, ComponentTypeAttachment } from "../../typings";
|
|
3
|
+
import { OptimisticMultipleModelResult } from "../typings";
|
|
4
|
+
export declare class ComponentTypeAttachmentService extends BaseAttachmentService {
|
|
5
|
+
attachmentModel: AttachmentModel;
|
|
6
|
+
private buildOfflineAttachment;
|
|
7
|
+
attachFilesToComponentType(files: File[], componentTypeId: string): Promise<OptimisticMultipleModelResult<ComponentTypeAttachment>>;
|
|
8
|
+
deleteComponentTypeAttachment(attachmentId: string): Promise<void>;
|
|
9
|
+
refreshStore(): Promise<void>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BaseAttachmentService } from "./BaseAttachmentService";
|
|
2
|
+
import { AttachmentModel, DocumentAttachment } from "../../typings";
|
|
3
|
+
import { OptimisticMultipleModelResult } from "../typings";
|
|
4
|
+
export declare class DocumentAttachmentService extends BaseAttachmentService {
|
|
5
|
+
attachmentModel: AttachmentModel;
|
|
6
|
+
private buildOfflineAttachment;
|
|
7
|
+
attachFilesToDocument(files: File[], documentId: string): Promise<OptimisticMultipleModelResult<DocumentAttachment>>;
|
|
8
|
+
deleteDocumentAttachment(attachmentId: string): Promise<void>;
|
|
9
|
+
refreshStore(): Promise<void>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BaseAttachmentService } from "./BaseAttachmentService";
|
|
2
|
+
import { OptimisticMultipleModelResult } from "../typings";
|
|
3
|
+
import { AttachmentModel, IssueAttachment } from "../../typings";
|
|
4
|
+
export declare class IssueAttachmentService extends BaseAttachmentService {
|
|
5
|
+
attachmentModel: AttachmentModel;
|
|
6
|
+
private buildOfflineAttachment;
|
|
7
|
+
attachFilesToIssue(files: File[], issueId: string): Promise<OptimisticMultipleModelResult<IssueAttachment>>;
|
|
8
|
+
deleteIssueAttachment(attachmentId: string): Promise<void>;
|
|
9
|
+
refreshStore(): Promise<void>;
|
|
10
|
+
}
|
|
@@ -5,7 +5,7 @@ import { Issue, IssueType, Submitted } from "../../typings";
|
|
|
5
5
|
* Handles CRUD operations on issues
|
|
6
6
|
*/
|
|
7
7
|
export declare class IssueService extends BaseApiService {
|
|
8
|
-
add(issue: Issue,
|
|
8
|
+
add(issue: Issue, issueType?: IssueType["offline_id"] | null): OptimisticModelResult<Issue>;
|
|
9
9
|
fetchAll(projectId: number): OptimisticMultipleModelResult<Issue>;
|
|
10
10
|
update(issue: Submitted<Partial<Issue>>): OptimisticModelResult<Issue>;
|
|
11
11
|
remove(id: string): Promise<undefined>;
|
|
@@ -1,23 +1,16 @@
|
|
|
1
1
|
import { BaseApiService } from "./BaseApiService";
|
|
2
|
-
import {
|
|
2
|
+
import { License, Organization, Project, User, Workspace } from "../../typings";
|
|
3
3
|
export interface InitialAPIData {
|
|
4
4
|
projects: (Project & {
|
|
5
|
-
workspaces:
|
|
6
|
-
categories?: Category[];
|
|
7
|
-
offline_id: string;
|
|
8
|
-
name: string;
|
|
9
|
-
abbreviation: string;
|
|
10
|
-
permitted: boolean;
|
|
11
|
-
}[];
|
|
5
|
+
workspaces: Workspace[];
|
|
12
6
|
})[];
|
|
13
7
|
organizations: Organization[];
|
|
14
8
|
user: User;
|
|
15
|
-
project_owners: User[];
|
|
16
9
|
licenses: License[];
|
|
17
10
|
}
|
|
18
11
|
export declare class MainService extends BaseApiService {
|
|
19
|
-
fetchInitialData(replaceExisting: boolean, uuid?: string): Promise<
|
|
20
|
-
fetchProjectUsers(
|
|
12
|
+
fetchInitialData(replaceExisting: boolean, uuid?: string): Promise<undefined>;
|
|
13
|
+
fetchProjectUsers(): Promise<User[]>;
|
|
21
14
|
fetchOrganizationUsers(orgId: number): Promise<User[]>;
|
|
22
15
|
_processInitialData(data: InitialAPIData, overwrite: boolean): Promise<void>;
|
|
23
16
|
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { BaseAttachmentService } from "./BaseAttachmentService";
|
|
2
|
+
import { AttachmentModel, ProjectAttachment } from "../../typings";
|
|
3
|
+
import { OptimisticMultipleModelResult } from "../typings";
|
|
4
|
+
export declare class ProjectAttachmentService extends BaseAttachmentService {
|
|
5
|
+
attachmentModel: AttachmentModel;
|
|
6
|
+
private buildOfflineAttachment;
|
|
7
|
+
attachFilesToProject(files: File[], projectId: number): Promise<OptimisticMultipleModelResult<ProjectAttachment>>;
|
|
8
|
+
deleteProjectAttachment(attachmentId: string): Promise<void>;
|
|
9
|
+
refreshStore(): Promise<void>;
|
|
10
|
+
}
|
|
@@ -1,18 +1,21 @@
|
|
|
1
|
-
export * from "./AttachmentService";
|
|
2
1
|
export * from "./AuthService";
|
|
3
2
|
export * from "./BaseApiService";
|
|
4
3
|
export * from "./CategoryService";
|
|
5
4
|
export * from "./ComponentService";
|
|
6
5
|
export * from "./ComponentStageCompletionService";
|
|
7
6
|
export * from "./ComponentStageService";
|
|
7
|
+
export * from "./ComponentAttachmentService";
|
|
8
8
|
export * from "./ComponentTypeService";
|
|
9
|
+
export * from "./ComponentTypeAttachmentService";
|
|
9
10
|
export * from "./IssueCommentService";
|
|
10
11
|
export * from "./IssueUpdateService";
|
|
12
|
+
export * from "./IssueAttachmentService";
|
|
11
13
|
export * from "./IssueService";
|
|
12
14
|
export * from "./IssueTypeService";
|
|
13
15
|
export * from "./MainService";
|
|
14
16
|
export * from "./ProjectAccessService";
|
|
15
17
|
export * from "./ProjectFileService";
|
|
18
|
+
export * from "./ProjectAttachmentService";
|
|
16
19
|
export * from "./ProjectService";
|
|
17
20
|
export * from "./UserFormService";
|
|
18
21
|
export * from "./UserFormSubmissionService";
|
|
@@ -24,5 +27,6 @@ export * from "./EmailDomainsService";
|
|
|
24
27
|
export * from "./OrganizationService";
|
|
25
28
|
export * from "./LicenseService";
|
|
26
29
|
export * from "./DocumentService";
|
|
30
|
+
export * from "./DocumentAttachmentService";
|
|
27
31
|
export * from "./AgentService";
|
|
28
32
|
export * from "./TeamService";
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { PayloadAction, Reducer } from "@reduxjs/toolkit";
|
|
2
|
+
import { AgentUserConversation, Offline, OfflineIdMapping, RootState, Selector } from "../../typings";
|
|
3
|
+
export interface AgentsState {
|
|
4
|
+
conversations: OfflineIdMapping<AgentUserConversation>;
|
|
5
|
+
}
|
|
6
|
+
export declare const agentsSlice: import("@reduxjs/toolkit").Slice<AgentsState, {
|
|
7
|
+
setConversations: (state: import("immer/dist/internal.js").WritableDraft<AgentsState>, action: PayloadAction<AgentUserConversation[]>) => void;
|
|
8
|
+
addConversation: (state: import("immer/dist/internal.js").WritableDraft<AgentsState>, action: PayloadAction<AgentUserConversation>) => void;
|
|
9
|
+
setConversation: (state: import("immer/dist/internal.js").WritableDraft<AgentsState>, action: PayloadAction<AgentUserConversation>) => void;
|
|
10
|
+
updateConversation: (state: import("immer/dist/internal.js").WritableDraft<AgentsState>, action: PayloadAction<Offline<Partial<AgentUserConversation>>>) => void;
|
|
11
|
+
}, "agents">;
|
|
12
|
+
export declare const setConversations: import("@reduxjs/toolkit").ActionCreatorWithPayload<AgentUserConversation[], "agents/setConversations">, addConversation: import("@reduxjs/toolkit").ActionCreatorWithPayload<AgentUserConversation, "agents/addConversation">, setConversation: import("@reduxjs/toolkit").ActionCreatorWithPayload<AgentUserConversation, "agents/setConversation">, updateConversation: import("@reduxjs/toolkit").ActionCreatorWithPayload<Offline<Partial<AgentUserConversation>>, "agents/updateConversation">;
|
|
13
|
+
export declare const selectConversationMapping: (state: RootState) => OfflineIdMapping<AgentUserConversation>;
|
|
14
|
+
export declare const selectConversations: Selector<AgentUserConversation[]>;
|
|
15
|
+
export declare const selectConversation: (args: string) => (state: RootState) => AgentUserConversation | undefined;
|
|
16
|
+
export declare const agentsReducer: Reducer<AgentsState>;
|
|
@@ -70,6 +70,7 @@ export declare const selectCategories: ((state: import("redux").EmptyObject & {
|
|
|
70
70
|
licenseReducer: import('..').LicenseState;
|
|
71
71
|
documentsReducer: import('..').DocumentState;
|
|
72
72
|
teamReducer: import('..').TeamState;
|
|
73
|
+
agentsReducer: import('..').AgentsState;
|
|
73
74
|
} & {
|
|
74
75
|
offline: import("@redux-offline/redux-offline/lib/types").OfflineState;
|
|
75
76
|
}) => Category[]) & import("reselect").OutputSelectorFields<(args_0: Record<string, Category>, args_1: string | null) => Category[], {
|
|
@@ -14,8 +14,17 @@ export declare const componentSlice: import("@reduxjs/toolkit").Slice<ComponentS
|
|
|
14
14
|
setComponents: (state: import("immer/dist/internal.js").WritableDraft<ComponentState>, action: {
|
|
15
15
|
payload: Component[];
|
|
16
16
|
}) => void;
|
|
17
|
+
updateComponent: (state: import("immer/dist/internal.js").WritableDraft<ComponentState>, action: {
|
|
18
|
+
payload: Component;
|
|
19
|
+
}) => void;
|
|
20
|
+
removeComponent: (state: import("immer/dist/internal.js").WritableDraft<ComponentState>, action: PayloadAction<string>) => void;
|
|
21
|
+
removeAllComponentsOfType: (state: import("immer/dist/internal.js").WritableDraft<ComponentState>, action: PayloadAction<string>) => void;
|
|
22
|
+
setComponentAttachment: (state: ComponentState, action: {
|
|
23
|
+
payload: Stored<ComponentAttachment>;
|
|
24
|
+
type: string;
|
|
25
|
+
}) => void;
|
|
17
26
|
setComponentAttachments: (state: ComponentState, action: {
|
|
18
|
-
payload:
|
|
27
|
+
payload: Stored<ComponentAttachment>[];
|
|
19
28
|
type: string;
|
|
20
29
|
}) => void;
|
|
21
30
|
addComponentAttachment: (state: ComponentState, action: {
|
|
@@ -30,6 +39,10 @@ export declare const componentSlice: import("@reduxjs/toolkit").Slice<ComponentS
|
|
|
30
39
|
payload: Submitted<ComponentAttachment>;
|
|
31
40
|
type: string;
|
|
32
41
|
}) => void;
|
|
42
|
+
updateComponentAttachments: (state: ComponentState, action: {
|
|
43
|
+
payload: Submitted<ComponentAttachment>[];
|
|
44
|
+
type: string;
|
|
45
|
+
}) => void;
|
|
33
46
|
removeComponentAttachment: (state: ComponentState, action: {
|
|
34
47
|
payload: string;
|
|
35
48
|
type: string;
|
|
@@ -38,15 +51,11 @@ export declare const componentSlice: import("@reduxjs/toolkit").Slice<ComponentS
|
|
|
38
51
|
payload: string[];
|
|
39
52
|
type: string;
|
|
40
53
|
}) => void;
|
|
41
|
-
updateComponent: (state: import("immer/dist/internal.js").WritableDraft<ComponentState>, action: {
|
|
42
|
-
payload: Component;
|
|
43
|
-
}) => void;
|
|
44
|
-
removeComponent: (state: import("immer/dist/internal.js").WritableDraft<ComponentState>, action: PayloadAction<string>) => void;
|
|
45
|
-
removeAllComponentsOfType: (state: import("immer/dist/internal.js").WritableDraft<ComponentState>, action: PayloadAction<string>) => void;
|
|
46
54
|
}, "components">;
|
|
55
|
+
export declare const addComponent: import("@reduxjs/toolkit").ActionCreatorWithPayload<Component, "components/addComponent">, updateComponent: import("@reduxjs/toolkit").ActionCreatorWithPayload<Component, "components/updateComponent">, removeComponent: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, "components/removeComponent">, addComponentsInBatches: import("@reduxjs/toolkit").ActionCreatorWithPayload<(Component | Submitted<Component>)[], "components/addComponentsInBatches">, setComponents: import("@reduxjs/toolkit").ActionCreatorWithPayload<Component[], "components/setComponents">, removeAllComponentsOfType: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, "components/removeAllComponentsOfType">, setComponentAttachment: import("@reduxjs/toolkit").ActionCreatorWithPayload<Stored<ComponentAttachment>, "components/setComponentAttachment">, setComponentAttachments: import("@reduxjs/toolkit").ActionCreatorWithPayload<Stored<ComponentAttachment>[], "components/setComponentAttachments">, addComponentAttachment: import("@reduxjs/toolkit").ActionCreatorWithPayload<Submitted<ComponentAttachment>, "components/addComponentAttachment">, addComponentAttachments: import("@reduxjs/toolkit").ActionCreatorWithPayload<Submitted<ComponentAttachment>[], "components/addComponentAttachments">, updateComponentAttachment: import("@reduxjs/toolkit").ActionCreatorWithPayload<Submitted<ComponentAttachment>, "components/updateComponentAttachment">, updateComponentAttachments: import("@reduxjs/toolkit").ActionCreatorWithPayload<Submitted<ComponentAttachment>[], "components/updateComponentAttachments">, removeComponentAttachment: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, "components/removeComponentAttachment">, removeComponentAttachments: import("@reduxjs/toolkit").ActionCreatorWithPayload<string[], "components/removeComponentAttachments">;
|
|
47
56
|
export declare const selectComponents: (state: RootState) => Component[];
|
|
48
57
|
export declare const selectComponentsMapping: (state: RootState) => Record<string, Component | Submitted<Component>>;
|
|
49
|
-
export declare const selectComponentsFromComponentType: SelectorWithArgs<string
|
|
58
|
+
export declare const selectComponentsFromComponentType: SelectorWithArgs<string, Component[]>;
|
|
50
59
|
export declare const selectComponent: SelectorWithArgs<string, Component>;
|
|
51
60
|
export declare const selectComponentTypeFromComponent: SelectorWithArgs<string, ComponentType>;
|
|
52
61
|
export declare const selectComponentTypeFromComponents: Selector<Record<string, ComponentType>>;
|
|
@@ -61,5 +70,4 @@ export declare const selectAttachmentsOfComponentByType: (args: string) => (stat
|
|
|
61
70
|
fileAttachments: Stored<ComponentAttachment>[];
|
|
62
71
|
imageAttachments: Stored<ComponentAttachment>[];
|
|
63
72
|
};
|
|
64
|
-
export declare const addComponent: import("@reduxjs/toolkit").ActionCreatorWithPayload<Component, "components/addComponent">, updateComponent: import("@reduxjs/toolkit").ActionCreatorWithPayload<Component, "components/updateComponent">, removeComponent: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, "components/removeComponent">, addComponentsInBatches: import("@reduxjs/toolkit").ActionCreatorWithPayload<(Component | Submitted<Component>)[], "components/addComponentsInBatches">, setComponents: import("@reduxjs/toolkit").ActionCreatorWithPayload<Component[], "components/setComponents">, setComponentAttachments: import("@reduxjs/toolkit").ActionCreatorWithPayload<import('../../typings/models/issues').Created<ComponentAttachment>[], "components/setComponentAttachments">, addComponentAttachment: import("@reduxjs/toolkit").ActionCreatorWithPayload<Submitted<ComponentAttachment>, "components/addComponentAttachment">, addComponentAttachments: import("@reduxjs/toolkit").ActionCreatorWithPayload<Submitted<ComponentAttachment>[], "components/addComponentAttachments">, updateComponentAttachment: import("@reduxjs/toolkit").ActionCreatorWithPayload<Submitted<ComponentAttachment>, "components/updateComponentAttachment">, removeComponentAttachment: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, "components/removeComponentAttachment">, removeComponentAttachments: import("@reduxjs/toolkit").ActionCreatorWithPayload<string[], "components/removeComponentAttachments">, removeAllComponentsOfType: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, "components/removeAllComponentsOfType">;
|
|
65
73
|
export declare const componentReducer: Reducer<ComponentState>;
|
|
@@ -12,8 +12,18 @@ export declare const componentTypeSlice: import("@reduxjs/toolkit").Slice<Compon
|
|
|
12
12
|
setComponentTypes: (state: import("immer/dist/internal.js").WritableDraft<ComponentTypeState>, action: {
|
|
13
13
|
payload: ComponentType[];
|
|
14
14
|
}) => void;
|
|
15
|
+
toggleComponentTypeVisibility: (state: import("immer/dist/internal.js").WritableDraft<ComponentTypeState>, action: {
|
|
16
|
+
payload: string;
|
|
17
|
+
}) => void;
|
|
18
|
+
deleteComponentType: (state: import("immer/dist/internal.js").WritableDraft<ComponentTypeState>, action: {
|
|
19
|
+
payload: string;
|
|
20
|
+
}) => void;
|
|
21
|
+
setComponentTypeAttachment: (state: ComponentTypeState, action: {
|
|
22
|
+
payload: Stored<ComponentTypeAttachment>;
|
|
23
|
+
type: string;
|
|
24
|
+
}) => void;
|
|
15
25
|
setComponentTypeAttachments: (state: ComponentTypeState, action: {
|
|
16
|
-
payload:
|
|
26
|
+
payload: Stored<ComponentTypeAttachment>[];
|
|
17
27
|
type: string;
|
|
18
28
|
}) => void;
|
|
19
29
|
addComponentTypeAttachment: (state: ComponentTypeState, action: {
|
|
@@ -28,6 +38,10 @@ export declare const componentTypeSlice: import("@reduxjs/toolkit").Slice<Compon
|
|
|
28
38
|
payload: import('../../typings/models/issues').Submitted<ComponentTypeAttachment>;
|
|
29
39
|
type: string;
|
|
30
40
|
}) => void;
|
|
41
|
+
updateComponentTypeAttachments: (state: ComponentTypeState, action: {
|
|
42
|
+
payload: import('../../typings/models/issues').Submitted<ComponentTypeAttachment>[];
|
|
43
|
+
type: string;
|
|
44
|
+
}) => void;
|
|
31
45
|
removeComponentTypeAttachment: (state: ComponentTypeState, action: {
|
|
32
46
|
payload: string;
|
|
33
47
|
type: string;
|
|
@@ -36,13 +50,8 @@ export declare const componentTypeSlice: import("@reduxjs/toolkit").Slice<Compon
|
|
|
36
50
|
payload: string[];
|
|
37
51
|
type: string;
|
|
38
52
|
}) => void;
|
|
39
|
-
toggleComponentTypeVisibility: (state: import("immer/dist/internal.js").WritableDraft<ComponentTypeState>, action: {
|
|
40
|
-
payload: string;
|
|
41
|
-
}) => void;
|
|
42
|
-
deleteComponentType: (state: import("immer/dist/internal.js").WritableDraft<ComponentTypeState>, action: {
|
|
43
|
-
payload: string;
|
|
44
|
-
}) => void;
|
|
45
53
|
}, "componentTypes">;
|
|
54
|
+
export declare const addComponentType: import("@reduxjs/toolkit").ActionCreatorWithPayload<ComponentType, "componentTypes/addComponentType">, setComponentTypes: import("@reduxjs/toolkit").ActionCreatorWithPayload<ComponentType[], "componentTypes/setComponentTypes">, toggleComponentTypeVisibility: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, "componentTypes/toggleComponentTypeVisibility">, deleteComponentType: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, "componentTypes/deleteComponentType">, setComponentTypeAttachment: import("@reduxjs/toolkit").ActionCreatorWithPayload<Stored<ComponentTypeAttachment>, "componentTypes/setComponentTypeAttachment">, setComponentTypeAttachments: import("@reduxjs/toolkit").ActionCreatorWithPayload<Stored<ComponentTypeAttachment>[], "componentTypes/setComponentTypeAttachments">, addComponentTypeAttachment: import("@reduxjs/toolkit").ActionCreatorWithPayload<import('../../typings/models/issues').Submitted<ComponentTypeAttachment>, "componentTypes/addComponentTypeAttachment">, addComponentTypeAttachments: import("@reduxjs/toolkit").ActionCreatorWithPayload<import('../../typings/models/issues').Submitted<ComponentTypeAttachment>[], "componentTypes/addComponentTypeAttachments">, updateComponentTypeAttachment: import("@reduxjs/toolkit").ActionCreatorWithPayload<import('../../typings/models/issues').Submitted<ComponentTypeAttachment>, "componentTypes/updateComponentTypeAttachment">, updateComponentTypeAttachments: import("@reduxjs/toolkit").ActionCreatorWithPayload<import('../../typings/models/issues').Submitted<ComponentTypeAttachment>[], "componentTypes/updateComponentTypeAttachments">, removeComponentTypeAttachment: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, "componentTypes/removeComponentTypeAttachment">, removeComponentTypeAttachments: import("@reduxjs/toolkit").ActionCreatorWithPayload<string[], "componentTypes/removeComponentTypeAttachments">;
|
|
46
55
|
export type AppSelector<TResult> = (state: RootState) => TResult;
|
|
47
56
|
export declare const selectComponentTypesMapping: AppSelector<Record<string, ComponentType>>;
|
|
48
57
|
export declare const selectComponentTypes: AppSelector<ComponentType[]>;
|
|
@@ -62,6 +71,5 @@ export declare const selectAttachmentsOfComponentTypeByType: (args: string) => (
|
|
|
62
71
|
fileAttachments: Stored<ComponentTypeAttachment>[];
|
|
63
72
|
imageAttachments: Stored<ComponentTypeAttachment>[];
|
|
64
73
|
};
|
|
65
|
-
export declare const addComponentType: import("@reduxjs/toolkit").ActionCreatorWithPayload<ComponentType, "componentTypes/addComponentType">, setComponentTypes: import("@reduxjs/toolkit").ActionCreatorWithPayload<ComponentType[], "componentTypes/setComponentTypes">, setComponentTypeAttachments: import("@reduxjs/toolkit").ActionCreatorWithPayload<import('../../typings/models/issues').Created<ComponentTypeAttachment>[], "componentTypes/setComponentTypeAttachments">, addComponentTypeAttachment: import("@reduxjs/toolkit").ActionCreatorWithPayload<import('../../typings/models/issues').Submitted<ComponentTypeAttachment>, "componentTypes/addComponentTypeAttachment">, addComponentTypeAttachments: import("@reduxjs/toolkit").ActionCreatorWithPayload<import('../../typings/models/issues').Submitted<ComponentTypeAttachment>[], "componentTypes/addComponentTypeAttachments">, updateComponentTypeAttachment: import("@reduxjs/toolkit").ActionCreatorWithPayload<import('../../typings/models/issues').Submitted<ComponentTypeAttachment>, "componentTypes/updateComponentTypeAttachment">, removeComponentTypeAttachment: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, "componentTypes/removeComponentTypeAttachment">, removeComponentTypeAttachments: import("@reduxjs/toolkit").ActionCreatorWithPayload<string[], "componentTypes/removeComponentTypeAttachments">, toggleComponentTypeVisibility: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, "componentTypes/toggleComponentTypeVisibility">, deleteComponentType: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, "componentTypes/deleteComponentType">;
|
|
66
74
|
export declare const componentTypeReducer: Reducer<ComponentTypeState>;
|
|
67
75
|
export {};
|
|
@@ -27,8 +27,12 @@ export declare const documentSlice: import("@reduxjs/toolkit").Slice<DocumentSta
|
|
|
27
27
|
removeDocuments: (state: import("immer/dist/internal.js").WritableDraft<DocumentState>, action: {
|
|
28
28
|
payload: string[];
|
|
29
29
|
}) => void;
|
|
30
|
+
setDocumentAttachment: (state: DocumentState, action: {
|
|
31
|
+
payload: Stored<DocumentAttachment>;
|
|
32
|
+
type: string;
|
|
33
|
+
}) => void;
|
|
30
34
|
setDocumentAttachments: (state: DocumentState, action: {
|
|
31
|
-
payload:
|
|
35
|
+
payload: Stored<DocumentAttachment>[];
|
|
32
36
|
type: string;
|
|
33
37
|
}) => void;
|
|
34
38
|
addDocumentAttachment: (state: DocumentState, action: {
|
|
@@ -43,6 +47,10 @@ export declare const documentSlice: import("@reduxjs/toolkit").Slice<DocumentSta
|
|
|
43
47
|
payload: Submitted<DocumentAttachment>;
|
|
44
48
|
type: string;
|
|
45
49
|
}) => void;
|
|
50
|
+
updateDocumentAttachments: (state: DocumentState, action: {
|
|
51
|
+
payload: Submitted<DocumentAttachment>[];
|
|
52
|
+
type: string;
|
|
53
|
+
}) => void;
|
|
46
54
|
removeDocumentAttachment: (state: DocumentState, action: {
|
|
47
55
|
payload: string;
|
|
48
56
|
type: string;
|
|
@@ -184,7 +192,7 @@ export declare const setDocuments: import("@reduxjs/toolkit").ActionCreatorWithP
|
|
|
184
192
|
project: null;
|
|
185
193
|
} & {
|
|
186
194
|
children_documents: string[];
|
|
187
|
-
}, "id" | "created_at" | "created_by">)>>[], "documents/updateDocuments">, moveDocument: import("@reduxjs/toolkit").ActionCreatorWithPayload<MoveDocumentPayload, "documents/moveDocument">, removeDocuments: import("@reduxjs/toolkit").ActionCreatorWithPayload<string[], "documents/removeDocuments">,
|
|
195
|
+
}, "id" | "created_at" | "created_by">)>>[], "documents/updateDocuments">, moveDocument: import("@reduxjs/toolkit").ActionCreatorWithPayload<MoveDocumentPayload, "documents/moveDocument">, removeDocuments: import("@reduxjs/toolkit").ActionCreatorWithPayload<string[], "documents/removeDocuments">, setDocumentAttachment: import("@reduxjs/toolkit").ActionCreatorWithPayload<Stored<DocumentAttachment>, "documents/setDocumentAttachment">, setDocumentAttachments: import("@reduxjs/toolkit").ActionCreatorWithPayload<Stored<DocumentAttachment>[], "documents/setDocumentAttachments">, addDocumentAttachment: import("@reduxjs/toolkit").ActionCreatorWithPayload<Submitted<DocumentAttachment>, "documents/addDocumentAttachment">, addDocumentAttachments: import("@reduxjs/toolkit").ActionCreatorWithPayload<Submitted<DocumentAttachment>[], "documents/addDocumentAttachments">, updateDocumentAttachment: import("@reduxjs/toolkit").ActionCreatorWithPayload<Submitted<DocumentAttachment>, "documents/updateDocumentAttachment">, updateDocumentAttachments: import("@reduxjs/toolkit").ActionCreatorWithPayload<Submitted<DocumentAttachment>[], "documents/updateDocumentAttachments">, removeDocumentAttachment: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, "documents/removeDocumentAttachment">, removeDocumentAttachments: import("@reduxjs/toolkit").ActionCreatorWithPayload<string[], "documents/removeDocumentAttachments">;
|
|
188
196
|
export declare const selectDocumentsMapping: AppSelector<Record<string, Stored<Document>>>;
|
|
189
197
|
export declare const selectDocuments: AppSelector<Stored<Document>[]>;
|
|
190
198
|
export declare const selectDocument: (args: string) => (state: RootState) => (import('../../typings/models/base').OfflineModel & import('../../typings/models/base').CreatedByModel & {
|
|
@@ -262,6 +270,7 @@ export declare const selectRootDocuments: ((state: import("redux").EmptyObject &
|
|
|
262
270
|
licenseReducer: import('..').LicenseState;
|
|
263
271
|
documentsReducer: DocumentState;
|
|
264
272
|
teamReducer: import('..').TeamState;
|
|
273
|
+
agentsReducer: import('..').AgentsState;
|
|
265
274
|
} & {
|
|
266
275
|
offline: import("@redux-offline/redux-offline/lib/types").OfflineState;
|
|
267
276
|
}) => ((import('../../typings/models/base').OfflineModel & import('../../typings/models/base').CreatedByModel & {
|
|
@@ -18,40 +18,41 @@ export declare const formRevisionsSlice: import("@reduxjs/toolkit").Slice<FormRe
|
|
|
18
18
|
deleteFormRevisionAttachment: (state: import("immer/dist/internal.js").WritableDraft<FormRevisionState>, action: PayloadAction<UserFormRevisionAttachment["offline_id"]>) => void;
|
|
19
19
|
deleteFormRevisionAttachments: (state: import("immer/dist/internal.js").WritableDraft<FormRevisionState>, action: PayloadAction<UserFormRevisionAttachment["offline_id"][]>) => void;
|
|
20
20
|
}, "formRevisions">;
|
|
21
|
-
export declare const setFormRevision: import("@reduxjs/toolkit").ActionCreatorWithPayload<Stored<UserFormRevision<import(
|
|
22
|
-
export declare const selectFormRevisionMapping: (state: RootState) => Record<string, Stored<UserFormRevision<import(
|
|
21
|
+
export declare const setFormRevision: import("@reduxjs/toolkit").ActionCreatorWithPayload<Stored<UserFormRevision<import('../../forms').ISerializedField>>, "formRevisions/setFormRevision">, setFormRevisions: import("@reduxjs/toolkit").ActionCreatorWithPayload<Stored<UserFormRevision<import('../../forms').ISerializedField>>[], "formRevisions/setFormRevisions">, addFormRevision: import("@reduxjs/toolkit").ActionCreatorWithPayload<Stored<UserFormRevision<import('../../forms').ISerializedField>>, "formRevisions/addFormRevision">, addFormRevisions: import("@reduxjs/toolkit").ActionCreatorWithPayload<Stored<UserFormRevision<import('../../forms').ISerializedField>>[], "formRevisions/addFormRevisions">, deleteFormRevision: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, "formRevisions/deleteFormRevision">, deleteFormRevisions: import("@reduxjs/toolkit").ActionCreatorWithPayload<string[], "formRevisions/deleteFormRevisions">, setFormRevisionAttachments: import("@reduxjs/toolkit").ActionCreatorWithPayload<Stored<UserFormRevisionAttachment>[], "formRevisions/setFormRevisionAttachments">, addFormRevisionAttachment: import("@reduxjs/toolkit").ActionCreatorWithPayload<Stored<UserFormRevisionAttachment>, "formRevisions/addFormRevisionAttachment">, addFormRevisionAttachments: import("@reduxjs/toolkit").ActionCreatorWithPayload<Stored<UserFormRevisionAttachment>[], "formRevisions/addFormRevisionAttachments">, deleteFormRevisionAttachment: import("@reduxjs/toolkit").ActionCreatorWithPayload<string, "formRevisions/deleteFormRevisionAttachment">, deleteFormRevisionAttachments: import("@reduxjs/toolkit").ActionCreatorWithPayload<string[], "formRevisions/deleteFormRevisionAttachments">;
|
|
22
|
+
export declare const selectFormRevisionMapping: (state: RootState) => Record<string, Stored<UserFormRevision<import('../../forms').ISerializedField>>>;
|
|
23
23
|
export declare const selectFormRevisions: ((state: import("redux").EmptyObject & {
|
|
24
|
-
versioning: import('../slices/versioningSlice
|
|
25
|
-
fileReducer: import(
|
|
26
|
-
authReducer: import(
|
|
27
|
-
categoryReducer: import(
|
|
28
|
-
componentReducer: import(
|
|
29
|
-
componentStageCompletionReducer: import(
|
|
30
|
-
componentStageReducer: import(
|
|
31
|
-
componentTypeReducer: import(
|
|
32
|
-
issueReducer: import(
|
|
33
|
-
issueTypeReducer: import(
|
|
34
|
-
mapReducer: import(
|
|
35
|
-
organizationReducer: import(
|
|
36
|
-
outboxReducer: import(
|
|
37
|
-
projectReducer: import(
|
|
38
|
-
projectAccessReducer: import(
|
|
39
|
-
organizationAccessReducer: import(
|
|
40
|
-
projectFileReducer: import(
|
|
41
|
-
rehydratedReducer: import(
|
|
42
|
-
settingReducer: import(
|
|
43
|
-
formReducer: import(
|
|
44
|
-
userReducer: import(
|
|
24
|
+
versioning: import('../slices/versioningSlice').VersioningState;
|
|
25
|
+
fileReducer: import('..').FileState;
|
|
26
|
+
authReducer: import('..').AuthState;
|
|
27
|
+
categoryReducer: import('..').CategoryState;
|
|
28
|
+
componentReducer: import('..').ComponentState;
|
|
29
|
+
componentStageCompletionReducer: import('..').ComponentStageCompletionState;
|
|
30
|
+
componentStageReducer: import('..').ComponentStageState;
|
|
31
|
+
componentTypeReducer: import('..').ComponentTypeState;
|
|
32
|
+
issueReducer: import('..').IssueState;
|
|
33
|
+
issueTypeReducer: import('..').IssueTypeState;
|
|
34
|
+
mapReducer: import('..').MapState;
|
|
35
|
+
organizationReducer: import('..').OrganizationState;
|
|
36
|
+
outboxReducer: import('..').OutboxState;
|
|
37
|
+
projectReducer: import('..').ProjectState;
|
|
38
|
+
projectAccessReducer: import('..').ProjectAccessState;
|
|
39
|
+
organizationAccessReducer: import('..').OrganizationAccessState;
|
|
40
|
+
projectFileReducer: import('..').ProjectFileState;
|
|
41
|
+
rehydratedReducer: import('..').RehydratedState;
|
|
42
|
+
settingReducer: import('..').SettingState;
|
|
43
|
+
formReducer: import('..').FormState;
|
|
44
|
+
userReducer: import('..').UserState;
|
|
45
45
|
formRevisionReducer: FormRevisionState;
|
|
46
|
-
formSubmissionReducer: import(
|
|
47
|
-
workspaceReducer: import(
|
|
48
|
-
emailDomainsReducer: import(
|
|
49
|
-
licenseReducer: import(
|
|
50
|
-
documentsReducer: import(
|
|
51
|
-
teamReducer: import(
|
|
46
|
+
formSubmissionReducer: import('..').FormSubmissionState;
|
|
47
|
+
workspaceReducer: import('..').WorkspaceState;
|
|
48
|
+
emailDomainsReducer: import('..').EmailDomainState;
|
|
49
|
+
licenseReducer: import('..').LicenseState;
|
|
50
|
+
documentsReducer: import('..').DocumentState;
|
|
51
|
+
teamReducer: import('..').TeamState;
|
|
52
|
+
agentsReducer: import('..').AgentsState;
|
|
52
53
|
} & {
|
|
53
54
|
offline: import("@redux-offline/redux-offline/lib/types").OfflineState;
|
|
54
|
-
}) => Stored<UserFormRevision<import(
|
|
55
|
+
}) => Stored<UserFormRevision<import('../../forms').ISerializedField>>[]) & import("reselect").OutputSelectorFields<(args_0: Record<string, Stored<UserFormRevision<import('../../forms').ISerializedField>>>) => Stored<UserFormRevision<import('../../forms').ISerializedField>>[], {
|
|
55
56
|
clearCache: () => void;
|
|
56
57
|
}> & {
|
|
57
58
|
clearCache: () => void;
|