@overmap-ai/core 1.0.63-org-doc-improvements.1 → 1.0.63-org-doc-improvements.2
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 +19 -1
- package/dist/overmap-core.js.map +1 -1
- package/dist/overmap-core.umd.cjs +19 -1
- package/dist/overmap-core.umd.cjs.map +1 -1
- package/dist/sdk/services/BaseAttachmentService.d.ts +1 -1
- package/dist/sdk/services/DocumentAttachmentService.d.ts +1 -0
- package/package.json +1 -1
|
@@ -28,5 +28,5 @@ export declare abstract class BaseAttachmentService<TState extends OvermapRootSt
|
|
|
28
28
|
abstract readonly selectAttachment: OvermapSelectorWithArgs<string, Stored<TAttachment>>;
|
|
29
29
|
protected attachFiles(files: File[], modelId: TModelId, buildOfflineAttachment: (data: BuildOfflineAttachmentData<TModelId>) => Stored<TAttachment>): Promise<OptimisticMultipleModelResult<TAttachment>>;
|
|
30
30
|
protected deleteAttachment(attachmendId: string): Promise<void>;
|
|
31
|
-
refreshStore(projectId: number): Promise<void>;
|
|
31
|
+
refreshStore(projectId: number, _organizationId?: number): Promise<void>;
|
|
32
32
|
}
|
|
@@ -14,4 +14,5 @@ export declare abstract class DocumentAttachmentService<TState extends OvermapRo
|
|
|
14
14
|
private buildOfflineAttachment;
|
|
15
15
|
attachFilesToDocument(files: File[], documentId: string): Promise<OptimisticMultipleModelResult<DocumentAttachment>>;
|
|
16
16
|
deleteDocumentAttachment(attachmentId: string): Promise<void>;
|
|
17
|
+
refreshStore(projectId: number, organizationId: number): Promise<void>;
|
|
17
18
|
}
|
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-doc-improvements.
|
|
6
|
+
"version": "1.0.63-org-doc-improvements.2",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "dist/overmap-core.umd.cjs",
|
|
9
9
|
"module": "dist/overmap-core.js",
|