@creator.co/creatorco-kysely-types 1.0.60 → 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 +23 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -388,6 +388,16 @@ export type Image = {
|
|
|
388
388
|
size: string;
|
|
389
389
|
campaignImageId: number;
|
|
390
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
|
+
};
|
|
391
401
|
export type ImpactRadiusEvent = {
|
|
392
402
|
id: GeneratedAlways<number>;
|
|
393
403
|
type: string;
|
|
@@ -681,6 +691,17 @@ export type ShopifyStore = {
|
|
|
681
691
|
metaData: Generated<Json>;
|
|
682
692
|
brandId: number;
|
|
683
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
|
+
};
|
|
684
705
|
export type SocialListeningList = {
|
|
685
706
|
id: GeneratedAlways<number>;
|
|
686
707
|
brandId: number;
|
|
@@ -918,6 +939,7 @@ export type DB = {
|
|
|
918
939
|
externalAffiliateClick: ExternalAffiliateClick;
|
|
919
940
|
facebookprofile: FacebookProfile;
|
|
920
941
|
image: Image;
|
|
942
|
+
IMAPCredentials: IMAPCredentials;
|
|
921
943
|
ImpactRadiusEvent: ImpactRadiusEvent;
|
|
922
944
|
instagramprofile: InstagramProfile;
|
|
923
945
|
listtosocialpost: ListToSocialPost;
|
|
@@ -948,6 +970,7 @@ export type DB = {
|
|
|
948
970
|
shopifyProductVariation: ShopifyProductVariation;
|
|
949
971
|
shopifySale: ShopifySale;
|
|
950
972
|
shopifyStore: ShopifyStore;
|
|
973
|
+
SMTPCredentials: SMTPCredentials;
|
|
951
974
|
sociallisteninglist: SocialListeningList;
|
|
952
975
|
socialpost: SocialPost;
|
|
953
976
|
socialprofile: SocialProfile;
|