@creator.co/creatorco-kysely-types 1.0.60 → 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 -0
- 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;
|
|
@@ -600,6 +617,7 @@ export type Sequence = {
|
|
|
600
617
|
completed: Generated<boolean>;
|
|
601
618
|
brandId: number;
|
|
602
619
|
enabled: Generated<boolean>;
|
|
620
|
+
emailCredentialsId: number;
|
|
603
621
|
};
|
|
604
622
|
export type SequenceImapCheckpoint = {
|
|
605
623
|
sequenceId: number;
|
|
@@ -914,6 +932,7 @@ export type DB = {
|
|
|
914
932
|
creatorprofile: CreatorProfile;
|
|
915
933
|
creatorsearchfilter: CreatorSearchFilter;
|
|
916
934
|
CreatorToCategory: CreatorToCategory;
|
|
935
|
+
emailCredentials: EmailCredentials;
|
|
917
936
|
EmailTemplate: EmailTemplate;
|
|
918
937
|
externalAffiliateClick: ExternalAffiliateClick;
|
|
919
938
|
facebookprofile: FacebookProfile;
|