@creator.co/creatorco-kysely-types 1.0.61-alpha-8d6ef3c → 1.0.61-alpha-b23a5b2
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 +19 -23
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -349,6 +349,23 @@ export type CreatorToCategory = {
|
|
|
349
349
|
creatorProfileId: number;
|
|
350
350
|
categoryId: number;
|
|
351
351
|
};
|
|
352
|
+
export type EmailCredentials = {
|
|
353
|
+
id: GeneratedAlways<number>;
|
|
354
|
+
smtpHost: string;
|
|
355
|
+
smtpUser: string;
|
|
356
|
+
smtpPassword: string;
|
|
357
|
+
smtpSenderName: string;
|
|
358
|
+
smtpSenderEmail: string;
|
|
359
|
+
smtpReplyToEmail: string;
|
|
360
|
+
smtpPort: number;
|
|
361
|
+
imapHost: string;
|
|
362
|
+
imapUser: string;
|
|
363
|
+
imapPassword: string;
|
|
364
|
+
imapPort: number;
|
|
365
|
+
imapIsSecure: boolean;
|
|
366
|
+
metaData: Generated<Json>;
|
|
367
|
+
brandId: number;
|
|
368
|
+
};
|
|
352
369
|
export type EmailTemplate = {
|
|
353
370
|
id: GeneratedAlways<number>;
|
|
354
371
|
label: string | null;
|
|
@@ -388,16 +405,6 @@ export type Image = {
|
|
|
388
405
|
size: string;
|
|
389
406
|
campaignImageId: number;
|
|
390
407
|
};
|
|
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
408
|
export type ImpactRadiusEvent = {
|
|
402
409
|
id: GeneratedAlways<number>;
|
|
403
410
|
type: string;
|
|
@@ -610,6 +617,7 @@ export type Sequence = {
|
|
|
610
617
|
completed: Generated<boolean>;
|
|
611
618
|
brandId: number;
|
|
612
619
|
enabled: Generated<boolean>;
|
|
620
|
+
emailCredentialsId: number;
|
|
613
621
|
};
|
|
614
622
|
export type SequenceImapCheckpoint = {
|
|
615
623
|
sequenceId: number;
|
|
@@ -691,17 +699,6 @@ export type ShopifyStore = {
|
|
|
691
699
|
metaData: Generated<Json>;
|
|
692
700
|
brandId: number;
|
|
693
701
|
};
|
|
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
702
|
export type SocialListeningList = {
|
|
706
703
|
id: GeneratedAlways<number>;
|
|
707
704
|
brandId: number;
|
|
@@ -935,11 +932,11 @@ export type DB = {
|
|
|
935
932
|
creatorprofile: CreatorProfile;
|
|
936
933
|
creatorsearchfilter: CreatorSearchFilter;
|
|
937
934
|
CreatorToCategory: CreatorToCategory;
|
|
935
|
+
emailCredentials: EmailCredentials;
|
|
938
936
|
EmailTemplate: EmailTemplate;
|
|
939
937
|
externalAffiliateClick: ExternalAffiliateClick;
|
|
940
938
|
facebookprofile: FacebookProfile;
|
|
941
939
|
image: Image;
|
|
942
|
-
IMAPCredentials: IMAPCredentials;
|
|
943
940
|
ImpactRadiusEvent: ImpactRadiusEvent;
|
|
944
941
|
instagramprofile: InstagramProfile;
|
|
945
942
|
listtosocialpost: ListToSocialPost;
|
|
@@ -970,7 +967,6 @@ export type DB = {
|
|
|
970
967
|
shopifyProductVariation: ShopifyProductVariation;
|
|
971
968
|
shopifySale: ShopifySale;
|
|
972
969
|
shopifyStore: ShopifyStore;
|
|
973
|
-
SMTPCredentials: SMTPCredentials;
|
|
974
970
|
sociallisteninglist: SocialListeningList;
|
|
975
971
|
socialpost: SocialPost;
|
|
976
972
|
socialprofile: SocialProfile;
|