@creator.co/creatorco-kysely-types 1.0.95 → 1.0.97
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 +25 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -78,6 +78,15 @@ export type AffiliateResolver = {
|
|
|
78
78
|
campaignId: number;
|
|
79
79
|
optInId: number | null;
|
|
80
80
|
};
|
|
81
|
+
export type Approach = {
|
|
82
|
+
id: GeneratedAlways<number>;
|
|
83
|
+
approachName: string;
|
|
84
|
+
uri: string;
|
|
85
|
+
isDefault: Generated<boolean>;
|
|
86
|
+
metaInformation: Generated<Json>;
|
|
87
|
+
createdById: number | null;
|
|
88
|
+
updatedById: number | null;
|
|
89
|
+
};
|
|
81
90
|
export type ArchivedSocialPost = {
|
|
82
91
|
id: GeneratedAlways<number>;
|
|
83
92
|
phylloId: string | null;
|
|
@@ -487,6 +496,17 @@ export type FacebookProfile = {
|
|
|
487
496
|
visibility: Generated<string | null>;
|
|
488
497
|
userId: number | null;
|
|
489
498
|
};
|
|
499
|
+
export type FailureLog = {
|
|
500
|
+
id: GeneratedAlways<number>;
|
|
501
|
+
failureDate: Timestamp;
|
|
502
|
+
step: string;
|
|
503
|
+
requestPayload: Generated<Json>;
|
|
504
|
+
summary: string;
|
|
505
|
+
attempt: number;
|
|
506
|
+
failureData: Generated<Json>;
|
|
507
|
+
approachId: number;
|
|
508
|
+
createdAt: Generated<Timestamp>;
|
|
509
|
+
};
|
|
490
510
|
export type File = {
|
|
491
511
|
id: GeneratedAlways<string>;
|
|
492
512
|
brandId: number;
|
|
@@ -757,6 +777,7 @@ export type Sequence = {
|
|
|
757
777
|
completed: Generated<boolean>;
|
|
758
778
|
brandId: number;
|
|
759
779
|
enabled: Generated<boolean>;
|
|
780
|
+
isAIEnabled: Generated<boolean>;
|
|
760
781
|
};
|
|
761
782
|
export type SequenceImapCheckpoint = {
|
|
762
783
|
sequenceId: number;
|
|
@@ -797,6 +818,8 @@ export type SequenceStep = {
|
|
|
797
818
|
daysAfterPrevious: number;
|
|
798
819
|
order: number;
|
|
799
820
|
stepId: number;
|
|
821
|
+
isSequenceCompleted: Generated<boolean | null>;
|
|
822
|
+
sequenceCompletedOn: Timestamp | null;
|
|
800
823
|
};
|
|
801
824
|
export type ShareASaleEvent = {
|
|
802
825
|
id: GeneratedAlways<number>;
|
|
@@ -1093,6 +1116,7 @@ export type DB = {
|
|
|
1093
1116
|
AffiliateLink: AffiliateLink;
|
|
1094
1117
|
AffiliatePricingGroup: AffiliatePricingGroup;
|
|
1095
1118
|
AffiliateResolver: AffiliateResolver;
|
|
1119
|
+
approach: Approach;
|
|
1096
1120
|
archivedSocialPost: ArchivedSocialPost;
|
|
1097
1121
|
brand: Brand;
|
|
1098
1122
|
brandContract: BrandContract;
|
|
@@ -1128,6 +1152,7 @@ export type DB = {
|
|
|
1128
1152
|
EmailTracking: EmailTracking;
|
|
1129
1153
|
externalAffiliateClick: ExternalAffiliateClick;
|
|
1130
1154
|
facebookprofile: FacebookProfile;
|
|
1155
|
+
failureLog: FailureLog;
|
|
1131
1156
|
file: File;
|
|
1132
1157
|
image: Image;
|
|
1133
1158
|
ImpactRadiusEvent: ImpactRadiusEvent;
|