@reekon-tools/boldr-utils 1.5.0 → 1.5.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/types/firestore.d.ts +0 -15
- package/dist/types/firestore.js +0 -6
- package/package.json +1 -1
|
@@ -139,7 +139,6 @@ export interface ConversionFileData {
|
|
|
139
139
|
interface FileUploadBase {
|
|
140
140
|
id: string;
|
|
141
141
|
name: string;
|
|
142
|
-
folderPath: string;
|
|
143
142
|
thumbnailUrl: string | null;
|
|
144
143
|
createdBy?: {
|
|
145
144
|
userId: string;
|
|
@@ -147,8 +146,6 @@ interface FileUploadBase {
|
|
|
147
146
|
lastName?: string;
|
|
148
147
|
};
|
|
149
148
|
createdAt?: Date;
|
|
150
|
-
layoutGroupId?: string | null;
|
|
151
|
-
layoutId?: string | null;
|
|
152
149
|
}
|
|
153
150
|
export type FileUpload = FileUploadBase & ({
|
|
154
151
|
type: FileUploadType.Annotation;
|
|
@@ -169,22 +166,10 @@ export type FileUpload = FileUploadBase & ({
|
|
|
169
166
|
type: FileUploadType.Template;
|
|
170
167
|
fileData?: undefined;
|
|
171
168
|
});
|
|
172
|
-
export declare enum FolderType {
|
|
173
|
-
Project = "project",
|
|
174
|
-
Job = "job",
|
|
175
|
-
Template = "template"
|
|
176
|
-
}
|
|
177
|
-
export interface ProjectFolder extends FirestoreDoc, Timestamps {
|
|
178
|
-
name: string;
|
|
179
|
-
parentFolderId: string | null;
|
|
180
|
-
projectId: string;
|
|
181
|
-
}
|
|
182
169
|
export interface Folder extends FirestoreDoc, Timestamps {
|
|
183
170
|
name: string;
|
|
184
171
|
index: number;
|
|
185
172
|
parentFolderId?: string | null;
|
|
186
|
-
projectId: string | null;
|
|
187
|
-
type: FolderType;
|
|
188
173
|
isPublic?: boolean;
|
|
189
174
|
starred?: boolean;
|
|
190
175
|
}
|
package/dist/types/firestore.js
CHANGED
|
@@ -24,12 +24,6 @@ export var FileUploadType;
|
|
|
24
24
|
FileUploadType["Calculator"] = "calculator";
|
|
25
25
|
FileUploadType["Conversion"] = "conversion";
|
|
26
26
|
})(FileUploadType || (FileUploadType = {}));
|
|
27
|
-
export var FolderType;
|
|
28
|
-
(function (FolderType) {
|
|
29
|
-
FolderType["Project"] = "project";
|
|
30
|
-
FolderType["Job"] = "job";
|
|
31
|
-
FolderType["Template"] = "template";
|
|
32
|
-
})(FolderType || (FolderType = {}));
|
|
33
27
|
export var GroupType;
|
|
34
28
|
(function (GroupType) {
|
|
35
29
|
GroupType["LIST"] = "list";
|