@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.ts').VersioningState;
99
- fileReducer: import("index.ts").FileState;
100
- authReducer: import("index.ts").AuthState;
98
+ versioning: import('../slices/versioningSlice').VersioningState;
99
+ fileReducer: import('..').FileState;
100
+ authReducer: import('..').AuthState;
101
101
  categoryReducer: import("./categorySlice").CategoryState;
102
- componentReducer: import("index.ts").ComponentState;
103
- componentStageCompletionReducer: import("index.ts").ComponentStageCompletionState;
104
- componentStageReducer: import("index.ts").ComponentStageState;
105
- componentTypeReducer: import("index.ts").ComponentTypeState;
102
+ componentReducer: import('..').ComponentState;
103
+ componentStageCompletionReducer: import('..').ComponentStageCompletionState;
104
+ componentStageReducer: import('..').ComponentStageState;
105
+ componentTypeReducer: import('..').ComponentTypeState;
106
106
  issueReducer: IssueState;
107
- mapReducer: import("index.ts").MapState;
108
- organizationReducer: import("index.ts").OrganizationState;
109
- outboxReducer: import("index.ts").OutboxState;
110
- projectReducer: import("index.ts").ProjectState;
111
- projectAccessReducer: import("index.ts").ProjectAccessState;
112
- organizationAccessReducer: import("index.ts").OrganizationAccessState;
113
- projectFileReducer: import("index.ts").ProjectFileState;
114
- rehydratedReducer: import("index.ts").RehydratedState;
115
- settingReducer: import("index.ts").SettingState;
116
- userFormReducer: import("index.ts").UserFormState;
117
- userReducer: import("index.ts").UserState;
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("index.ts").EmailDomainState;
120
- licenseReducer: import("index.ts").LicenseState;
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
- issue_id: string;
9
+ issue: string;
10
10
  }
11
11
  export interface ComponentAttachment extends Attachment, UploadedFileModel {
12
- component_id: string;
12
+ component: string;
13
13
  }
14
14
  export interface ComponentTypeAttachment extends Attachment, UploadedFileModel {
15
- component_type_id: string;
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
@@ -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.43-tiptap.0",
6
+ "version": "1.0.43-tiptap.1",
7
7
  "type": "module",
8
8
  "main": "dist/overmap-core.umd.cjs",
9
9
  "module": "dist/overmap-core.js",