@overmap-ai/core 1.0.43-tiptap.0 → 1.0.43-tiptap.1
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.
|
@@ -95,29 +95,29 @@ export declare const selectAttachmentsOfIssueByType: (args: string) => (state: R
|
|
|
95
95
|
export declare const selectFileAttachmentsOfIssue: (args: string) => (state: RootState) => Stored<IssueAttachment>[] | undefined;
|
|
96
96
|
export declare const selectIssue: SelectorWithArgs<string, Stored<Issue> | undefined>;
|
|
97
97
|
export declare const selectAllAttachments: ((state: import("redux").EmptyObject & {
|
|
98
|
-
versioning: import('../slices/versioningSlice
|
|
99
|
-
fileReducer: import(
|
|
100
|
-
authReducer: import(
|
|
98
|
+
versioning: import('../slices/versioningSlice').VersioningState;
|
|
99
|
+
fileReducer: import('..').FileState;
|
|
100
|
+
authReducer: import('..').AuthState;
|
|
101
101
|
categoryReducer: import("./categorySlice").CategoryState;
|
|
102
|
-
componentReducer: import(
|
|
103
|
-
componentStageCompletionReducer: import(
|
|
104
|
-
componentStageReducer: import(
|
|
105
|
-
componentTypeReducer: import(
|
|
102
|
+
componentReducer: import('..').ComponentState;
|
|
103
|
+
componentStageCompletionReducer: import('..').ComponentStageCompletionState;
|
|
104
|
+
componentStageReducer: import('..').ComponentStageState;
|
|
105
|
+
componentTypeReducer: import('..').ComponentTypeState;
|
|
106
106
|
issueReducer: IssueState;
|
|
107
|
-
mapReducer: import(
|
|
108
|
-
organizationReducer: import(
|
|
109
|
-
outboxReducer: import(
|
|
110
|
-
projectReducer: import(
|
|
111
|
-
projectAccessReducer: import(
|
|
112
|
-
organizationAccessReducer: import(
|
|
113
|
-
projectFileReducer: import(
|
|
114
|
-
rehydratedReducer: import(
|
|
115
|
-
settingReducer: import(
|
|
116
|
-
userFormReducer: import(
|
|
117
|
-
userReducer: import(
|
|
107
|
+
mapReducer: import('..').MapState;
|
|
108
|
+
organizationReducer: import('..').OrganizationState;
|
|
109
|
+
outboxReducer: import('..').OutboxState;
|
|
110
|
+
projectReducer: import('..').ProjectState;
|
|
111
|
+
projectAccessReducer: import('..').ProjectAccessState;
|
|
112
|
+
organizationAccessReducer: import('..').OrganizationAccessState;
|
|
113
|
+
projectFileReducer: import('..').ProjectFileState;
|
|
114
|
+
rehydratedReducer: import('..').RehydratedState;
|
|
115
|
+
settingReducer: import('..').SettingState;
|
|
116
|
+
userFormReducer: import('..').UserFormState;
|
|
117
|
+
userReducer: import('..').UserState;
|
|
118
118
|
workspaceReducer: import("./workspaceSlice").WorkspaceState;
|
|
119
|
-
emailDomainsReducer: import(
|
|
120
|
-
licenseReducer: import(
|
|
119
|
+
emailDomainsReducer: import('..').EmailDomainState;
|
|
120
|
+
licenseReducer: import('..').LicenseState;
|
|
121
121
|
} & {
|
|
122
122
|
offline: import("@redux-offline/redux-offline/lib/types").OfflineState;
|
|
123
123
|
}) => Stored<IssueAttachment>[]) & import("reselect").OutputSelectorFields<(args_0: Record<string, Stored<IssueAttachment>>) => Stored<IssueAttachment>[], {
|
|
@@ -6,13 +6,13 @@ export interface Attachment extends OfflineModel, UploadedFileModel {
|
|
|
6
6
|
file_type: string;
|
|
7
7
|
}
|
|
8
8
|
export interface IssueAttachment extends Attachment, UploadedFileModel {
|
|
9
|
-
|
|
9
|
+
issue: string;
|
|
10
10
|
}
|
|
11
11
|
export interface ComponentAttachment extends Attachment, UploadedFileModel {
|
|
12
|
-
|
|
12
|
+
component: string;
|
|
13
13
|
}
|
|
14
14
|
export interface ComponentTypeAttachment extends Attachment, UploadedFileModel {
|
|
15
|
-
|
|
15
|
+
component_type: string;
|
|
16
16
|
}
|
|
17
17
|
/** to get an AttachmentPayload for a specific type, pass in the given AttachmentType
|
|
18
18
|
* ex. AttachmentPayload<IssueAttachment> */
|
package/package.json
CHANGED