@creator.co/creatorco-kysely-types 1.0.59 → 1.0.60
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 +14 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -106,6 +106,19 @@ export type BrandAffiliateLink = {
|
|
|
106
106
|
metaData: Generated<Json>;
|
|
107
107
|
brandId: number;
|
|
108
108
|
};
|
|
109
|
+
export type BrandContract = {
|
|
110
|
+
id: GeneratedAlways<number>;
|
|
111
|
+
brandId: number;
|
|
112
|
+
createdAt: Generated<Timestamp>;
|
|
113
|
+
updatedAt: Timestamp;
|
|
114
|
+
file: string | null;
|
|
115
|
+
contractType: string;
|
|
116
|
+
startDate: Timestamp;
|
|
117
|
+
endDate: Timestamp | null;
|
|
118
|
+
archivedAt: Timestamp | null;
|
|
119
|
+
createdByUserId: number;
|
|
120
|
+
editedByUserId: number | null;
|
|
121
|
+
};
|
|
109
122
|
export type BrandImage = {
|
|
110
123
|
id: GeneratedAlways<number>;
|
|
111
124
|
url: string;
|
|
@@ -874,6 +887,7 @@ export type DB = {
|
|
|
874
887
|
AffiliateLink: AffiliateLink;
|
|
875
888
|
archivedSocialPost: ArchivedSocialPost;
|
|
876
889
|
brand: Brand;
|
|
890
|
+
brandContract: BrandContract;
|
|
877
891
|
BrandAffiliateLink: BrandAffiliateLink;
|
|
878
892
|
brandimage: BrandImage;
|
|
879
893
|
brandtocategory: BrandToCategory;
|