@creator.co/creatorco-kysely-types 1.0.49 → 1.0.50-alpha-73636ce
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 +13 -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;
|
|
@@ -753,6 +764,7 @@ export type TwitterProfile = {
|
|
|
753
764
|
};
|
|
754
765
|
export type User = {
|
|
755
766
|
id: GeneratedAlways<number>;
|
|
767
|
+
idmId: string | null;
|
|
756
768
|
role: string;
|
|
757
769
|
email: string | null;
|
|
758
770
|
password: string | null;
|
|
@@ -836,6 +848,7 @@ export type DB = {
|
|
|
836
848
|
category: Category;
|
|
837
849
|
chat: Chat;
|
|
838
850
|
country: Country;
|
|
851
|
+
CreatorFlag: CreatorFlag;
|
|
839
852
|
creatorlist: CreatorList;
|
|
840
853
|
creatorlistitem: CreatorListItem;
|
|
841
854
|
creatorprofile: CreatorProfile;
|