@creator.co/creatorco-kysely-types 1.0.49 → 1.0.50
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
|
@@ -244,6 +244,17 @@ export type Country = {
|
|
|
244
244
|
countryName: string;
|
|
245
245
|
teleCode: string;
|
|
246
246
|
};
|
|
247
|
+
export type CreatorFlag = {
|
|
248
|
+
id: GeneratedAlways<number>;
|
|
249
|
+
label: string;
|
|
250
|
+
comment: string | null;
|
|
251
|
+
color: string;
|
|
252
|
+
createdAt: Generated<Timestamp>;
|
|
253
|
+
updatedAt: Timestamp;
|
|
254
|
+
userId: number;
|
|
255
|
+
flaggedByUserId: number;
|
|
256
|
+
editedByUserId: number | null;
|
|
257
|
+
};
|
|
247
258
|
export type CreatorList = {
|
|
248
259
|
id: GeneratedAlways<number>;
|
|
249
260
|
brandId: number;
|
|
@@ -836,6 +847,7 @@ export type DB = {
|
|
|
836
847
|
category: Category;
|
|
837
848
|
chat: Chat;
|
|
838
849
|
country: Country;
|
|
850
|
+
CreatorFlag: CreatorFlag;
|
|
839
851
|
creatorlist: CreatorList;
|
|
840
852
|
creatorlistitem: CreatorListItem;
|
|
841
853
|
creatorprofile: CreatorProfile;
|