@creator.co/creatorco-kysely-types 1.0.92 → 1.0.93
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 +8 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1037,6 +1037,13 @@ export type User = {
|
|
|
1037
1037
|
fullName: Generated<string | null>;
|
|
1038
1038
|
phoneNormalised: Generated<string | null>;
|
|
1039
1039
|
};
|
|
1040
|
+
export type userInvite = {
|
|
1041
|
+
inviteCode: string;
|
|
1042
|
+
email: string;
|
|
1043
|
+
expiration: Generated<Timestamp>;
|
|
1044
|
+
userId: number;
|
|
1045
|
+
brandId: number;
|
|
1046
|
+
};
|
|
1040
1047
|
export type Variable = {
|
|
1041
1048
|
id: GeneratedAlways<number>;
|
|
1042
1049
|
title: string;
|
|
@@ -1167,6 +1174,7 @@ export type DB = {
|
|
|
1167
1174
|
twitchprofile: TwitchProfile;
|
|
1168
1175
|
twitterprofile: TwitterProfile;
|
|
1169
1176
|
user: User;
|
|
1177
|
+
userInvite: userInvite;
|
|
1170
1178
|
Variable: Variable;
|
|
1171
1179
|
VariableOption: VariableOption;
|
|
1172
1180
|
youtubeprofile: YoutubeProfile;
|