@overmap-ai/core 1.0.48-activity-history.5 → 1.0.48-activity-history.7
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.
|
@@ -6,6 +6,7 @@ export interface Attachment extends OfflineModel, UploadedFileModel {
|
|
|
6
6
|
file_name: string;
|
|
7
7
|
file_type: string;
|
|
8
8
|
submitted_at: string;
|
|
9
|
+
created_by: number;
|
|
9
10
|
}
|
|
10
11
|
export interface IssueAttachment extends Attachment, UploadedFileModel {
|
|
11
12
|
issue: string;
|
|
@@ -21,7 +22,7 @@ export interface ProjectAttachment extends Attachment, UploadedFileModel {
|
|
|
21
22
|
}
|
|
22
23
|
/** to get an AttachmentPayload for a specific type, pass in the given AttachmentType
|
|
23
24
|
* ex. AttachmentPayload<IssueAttachment> */
|
|
24
|
-
export type AttachmentPayload<TAttachment> = Omit<TAttachment, "file" | "submitted_at"> & {
|
|
25
|
+
export type AttachmentPayload<TAttachment> = Omit<TAttachment, "file" | "submitted_at" | "created_by"> & {
|
|
25
26
|
file: MaybeObjectURL<File>;
|
|
26
27
|
};
|
|
27
28
|
export interface ProfilePic extends UploadedFileModel {
|
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.48-activity-history.
|
|
6
|
+
"version": "1.0.48-activity-history.7",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "dist/overmap-core.umd.cjs",
|
|
9
9
|
"module": "dist/overmap-core.js",
|