@creator.co/creatorco-kysely-types 1.0.101 → 1.0.103
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 +2 -12
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -450,23 +450,14 @@ 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
|
-
};
|
|
464
453
|
export type EmailTemplate = {
|
|
465
454
|
id: GeneratedAlways<number>;
|
|
466
455
|
label: string | null;
|
|
467
456
|
subject: string | null;
|
|
468
457
|
template: string;
|
|
469
458
|
brandId: number | null;
|
|
459
|
+
socialProfileId: number | null;
|
|
460
|
+
isAiGenerated: Generated<boolean | null>;
|
|
470
461
|
metaData: Generated<Json>;
|
|
471
462
|
};
|
|
472
463
|
export type EmailTracking = {
|
|
@@ -1181,7 +1172,6 @@ export type DB = {
|
|
|
1181
1172
|
CreatorToCategory: CreatorToCategory;
|
|
1182
1173
|
creditRefundBatch: CreditRefundBatch;
|
|
1183
1174
|
EmailProvider: EmailProvider;
|
|
1184
|
-
emailsentlog: EmailSentLog;
|
|
1185
1175
|
EmailTemplate: EmailTemplate;
|
|
1186
1176
|
EmailTracking: EmailTracking;
|
|
1187
1177
|
externalAffiliateClick: ExternalAffiliateClick;
|