@creator.co/creatorco-kysely-types 1.0.96 → 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 +24 -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;
|
|
@@ -798,6 +818,8 @@ export type SequenceStep = {
|
|
|
798
818
|
daysAfterPrevious: number;
|
|
799
819
|
order: number;
|
|
800
820
|
stepId: number;
|
|
821
|
+
isSequenceCompleted: Generated<boolean | null>;
|
|
822
|
+
sequenceCompletedOn: Timestamp | null;
|
|
801
823
|
};
|
|
802
824
|
export type ShareASaleEvent = {
|
|
803
825
|
id: GeneratedAlways<number>;
|
|
@@ -1094,6 +1116,7 @@ export type DB = {
|
|
|
1094
1116
|
AffiliateLink: AffiliateLink;
|
|
1095
1117
|
AffiliatePricingGroup: AffiliatePricingGroup;
|
|
1096
1118
|
AffiliateResolver: AffiliateResolver;
|
|
1119
|
+
approach: Approach;
|
|
1097
1120
|
archivedSocialPost: ArchivedSocialPost;
|
|
1098
1121
|
brand: Brand;
|
|
1099
1122
|
brandContract: BrandContract;
|
|
@@ -1129,6 +1152,7 @@ export type DB = {
|
|
|
1129
1152
|
EmailTracking: EmailTracking;
|
|
1130
1153
|
externalAffiliateClick: ExternalAffiliateClick;
|
|
1131
1154
|
facebookprofile: FacebookProfile;
|
|
1155
|
+
failureLog: FailureLog;
|
|
1132
1156
|
file: File;
|
|
1133
1157
|
image: Image;
|
|
1134
1158
|
ImpactRadiusEvent: ImpactRadiusEvent;
|