@creator.co/creatorco-kysely-types 1.0.98 → 1.0.99
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/index.d.ts +21 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -523,6 +523,26 @@ export type File = {
|
|
|
523
523
|
updatedAt: Timestamp;
|
|
524
524
|
archivedAt: Timestamp | null;
|
|
525
525
|
};
|
|
526
|
+
export type FileUpload = {
|
|
527
|
+
id: GeneratedAlways<string>;
|
|
528
|
+
filename: string;
|
|
529
|
+
originalName: string | null;
|
|
530
|
+
s3Key: string;
|
|
531
|
+
s3Bucket: string;
|
|
532
|
+
fileSize: number | null;
|
|
533
|
+
mimeType: string | null;
|
|
534
|
+
status: Generated<string>;
|
|
535
|
+
scanResult: Json | null;
|
|
536
|
+
scannedAt: Timestamp | null;
|
|
537
|
+
uploadedBy: number | null;
|
|
538
|
+
uploadContext: string | null;
|
|
539
|
+
contextId: string | null;
|
|
540
|
+
productionKey: string | null;
|
|
541
|
+
productionUrl: string | null;
|
|
542
|
+
metadata: Generated<Json>;
|
|
543
|
+
createdAt: Generated<Timestamp>;
|
|
544
|
+
updatedAt: Timestamp;
|
|
545
|
+
};
|
|
526
546
|
export type Image = {
|
|
527
547
|
id: GeneratedAlways<number>;
|
|
528
548
|
url: string;
|
|
@@ -1155,6 +1175,7 @@ export type DB = {
|
|
|
1155
1175
|
facebookprofile: FacebookProfile;
|
|
1156
1176
|
failureLog: FailureLog;
|
|
1157
1177
|
file: File;
|
|
1178
|
+
fileUpload: FileUpload;
|
|
1158
1179
|
image: Image;
|
|
1159
1180
|
ImpactRadiusEvent: ImpactRadiusEvent;
|
|
1160
1181
|
instagramprofile: InstagramProfile;
|