@creator.co/creatorco-kysely-types 1.0.100 → 1.0.101
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 +12 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -450,6 +450,17 @@ export type EmailProvider = {
|
|
|
450
450
|
createdAt: Generated<Timestamp>;
|
|
451
451
|
updatedAt: Timestamp;
|
|
452
452
|
};
|
|
453
|
+
export type EmailSentLog = {
|
|
454
|
+
id: GeneratedAlways<number>;
|
|
455
|
+
email: string;
|
|
456
|
+
subject: string;
|
|
457
|
+
body: string;
|
|
458
|
+
campaignId: number;
|
|
459
|
+
sequenceId: number;
|
|
460
|
+
stepId: number;
|
|
461
|
+
createdAt: Generated<Timestamp>;
|
|
462
|
+
completed: Generated<boolean>;
|
|
463
|
+
};
|
|
453
464
|
export type EmailTemplate = {
|
|
454
465
|
id: GeneratedAlways<number>;
|
|
455
466
|
label: string | null;
|
|
@@ -1170,6 +1181,7 @@ export type DB = {
|
|
|
1170
1181
|
CreatorToCategory: CreatorToCategory;
|
|
1171
1182
|
creditRefundBatch: CreditRefundBatch;
|
|
1172
1183
|
EmailProvider: EmailProvider;
|
|
1184
|
+
emailsentlog: EmailSentLog;
|
|
1173
1185
|
EmailTemplate: EmailTemplate;
|
|
1174
1186
|
EmailTracking: EmailTracking;
|
|
1175
1187
|
externalAffiliateClick: ExternalAffiliateClick;
|