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