@creator.co/creatorco-kysely-types 1.0.59 → 1.0.61-alpha-8d6ef3c
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 +37 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -106,6 +106,19 @@ export type BrandAffiliateLink = {
|
|
|
106
106
|
metaData: Generated<Json>;
|
|
107
107
|
brandId: number;
|
|
108
108
|
};
|
|
109
|
+
export type BrandContract = {
|
|
110
|
+
id: GeneratedAlways<number>;
|
|
111
|
+
brandId: number;
|
|
112
|
+
createdAt: Generated<Timestamp>;
|
|
113
|
+
updatedAt: Timestamp;
|
|
114
|
+
file: string | null;
|
|
115
|
+
contractType: string;
|
|
116
|
+
startDate: Timestamp;
|
|
117
|
+
endDate: Timestamp | null;
|
|
118
|
+
archivedAt: Timestamp | null;
|
|
119
|
+
createdByUserId: number;
|
|
120
|
+
editedByUserId: number | null;
|
|
121
|
+
};
|
|
109
122
|
export type BrandImage = {
|
|
110
123
|
id: GeneratedAlways<number>;
|
|
111
124
|
url: string;
|
|
@@ -375,6 +388,16 @@ export type Image = {
|
|
|
375
388
|
size: string;
|
|
376
389
|
campaignImageId: number;
|
|
377
390
|
};
|
|
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
|
+
};
|
|
378
401
|
export type ImpactRadiusEvent = {
|
|
379
402
|
id: GeneratedAlways<number>;
|
|
380
403
|
type: string;
|
|
@@ -668,6 +691,17 @@ export type ShopifyStore = {
|
|
|
668
691
|
metaData: Generated<Json>;
|
|
669
692
|
brandId: number;
|
|
670
693
|
};
|
|
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
|
+
};
|
|
671
705
|
export type SocialListeningList = {
|
|
672
706
|
id: GeneratedAlways<number>;
|
|
673
707
|
brandId: number;
|
|
@@ -874,6 +908,7 @@ export type DB = {
|
|
|
874
908
|
AffiliateLink: AffiliateLink;
|
|
875
909
|
archivedSocialPost: ArchivedSocialPost;
|
|
876
910
|
brand: Brand;
|
|
911
|
+
brandContract: BrandContract;
|
|
877
912
|
BrandAffiliateLink: BrandAffiliateLink;
|
|
878
913
|
brandimage: BrandImage;
|
|
879
914
|
brandtocategory: BrandToCategory;
|
|
@@ -904,6 +939,7 @@ export type DB = {
|
|
|
904
939
|
externalAffiliateClick: ExternalAffiliateClick;
|
|
905
940
|
facebookprofile: FacebookProfile;
|
|
906
941
|
image: Image;
|
|
942
|
+
IMAPCredentials: IMAPCredentials;
|
|
907
943
|
ImpactRadiusEvent: ImpactRadiusEvent;
|
|
908
944
|
instagramprofile: InstagramProfile;
|
|
909
945
|
listtosocialpost: ListToSocialPost;
|
|
@@ -934,6 +970,7 @@ export type DB = {
|
|
|
934
970
|
shopifyProductVariation: ShopifyProductVariation;
|
|
935
971
|
shopifySale: ShopifySale;
|
|
936
972
|
shopifyStore: ShopifyStore;
|
|
973
|
+
SMTPCredentials: SMTPCredentials;
|
|
937
974
|
sociallisteninglist: SocialListeningList;
|
|
938
975
|
socialpost: SocialPost;
|
|
939
976
|
socialprofile: SocialProfile;
|