@creator.co/creatorco-kysely-types 1.0.61-alpha-8d6ef3c → 1.0.61
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 +17 -24
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -111,7 +111,7 @@ export type BrandContract = {
|
|
|
111
111
|
brandId: number;
|
|
112
112
|
createdAt: Generated<Timestamp>;
|
|
113
113
|
updatedAt: Timestamp;
|
|
114
|
-
|
|
114
|
+
fileId: string | null;
|
|
115
115
|
contractType: string;
|
|
116
116
|
startDate: Timestamp;
|
|
117
117
|
endDate: Timestamp | null;
|
|
@@ -382,22 +382,27 @@ export type FacebookProfile = {
|
|
|
382
382
|
visibility: Generated<string | null>;
|
|
383
383
|
userId: number | null;
|
|
384
384
|
};
|
|
385
|
+
export type File = {
|
|
386
|
+
id: string;
|
|
387
|
+
brandId: number;
|
|
388
|
+
name: string;
|
|
389
|
+
description: string | null;
|
|
390
|
+
status: number;
|
|
391
|
+
md5: string;
|
|
392
|
+
type: string;
|
|
393
|
+
size: number;
|
|
394
|
+
createdByUserId: number;
|
|
395
|
+
editedByUserId: number | null;
|
|
396
|
+
createdAt: Generated<Timestamp>;
|
|
397
|
+
updatedAt: Timestamp;
|
|
398
|
+
archivedAt: Timestamp | null;
|
|
399
|
+
};
|
|
385
400
|
export type Image = {
|
|
386
401
|
id: GeneratedAlways<number>;
|
|
387
402
|
url: string;
|
|
388
403
|
size: string;
|
|
389
404
|
campaignImageId: number;
|
|
390
405
|
};
|
|
391
|
-
export type IMAPCredentials = {
|
|
392
|
-
id: GeneratedAlways<number>;
|
|
393
|
-
host: string;
|
|
394
|
-
user: string;
|
|
395
|
-
portNumber: number;
|
|
396
|
-
password: string;
|
|
397
|
-
isSecure: boolean;
|
|
398
|
-
metaData: Generated<Json>;
|
|
399
|
-
brandId: number;
|
|
400
|
-
};
|
|
401
406
|
export type ImpactRadiusEvent = {
|
|
402
407
|
id: GeneratedAlways<number>;
|
|
403
408
|
type: string;
|
|
@@ -691,17 +696,6 @@ export type ShopifyStore = {
|
|
|
691
696
|
metaData: Generated<Json>;
|
|
692
697
|
brandId: number;
|
|
693
698
|
};
|
|
694
|
-
export type SMTPCredentials = {
|
|
695
|
-
id: GeneratedAlways<number>;
|
|
696
|
-
host: string;
|
|
697
|
-
user: string;
|
|
698
|
-
password: string;
|
|
699
|
-
senderName: string;
|
|
700
|
-
emailAddress: string;
|
|
701
|
-
portNumber: number;
|
|
702
|
-
metaData: Generated<Json>;
|
|
703
|
-
brandId: number;
|
|
704
|
-
};
|
|
705
699
|
export type SocialListeningList = {
|
|
706
700
|
id: GeneratedAlways<number>;
|
|
707
701
|
brandId: number;
|
|
@@ -938,8 +932,8 @@ export type DB = {
|
|
|
938
932
|
EmailTemplate: EmailTemplate;
|
|
939
933
|
externalAffiliateClick: ExternalAffiliateClick;
|
|
940
934
|
facebookprofile: FacebookProfile;
|
|
935
|
+
File: File;
|
|
941
936
|
image: Image;
|
|
942
|
-
IMAPCredentials: IMAPCredentials;
|
|
943
937
|
ImpactRadiusEvent: ImpactRadiusEvent;
|
|
944
938
|
instagramprofile: InstagramProfile;
|
|
945
939
|
listtosocialpost: ListToSocialPost;
|
|
@@ -970,7 +964,6 @@ export type DB = {
|
|
|
970
964
|
shopifyProductVariation: ShopifyProductVariation;
|
|
971
965
|
shopifySale: ShopifySale;
|
|
972
966
|
shopifyStore: ShopifyStore;
|
|
973
|
-
SMTPCredentials: SMTPCredentials;
|
|
974
967
|
sociallisteninglist: SocialListeningList;
|
|
975
968
|
socialpost: SocialPost;
|
|
976
969
|
socialprofile: SocialProfile;
|