@creator.co/creatorco-kysely-types 1.0.92 → 1.0.94
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 +9 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -936,6 +936,7 @@ export type SocialProfileContact = {
|
|
|
936
936
|
value: string;
|
|
937
937
|
source: Generated<SocialProfileContactSource>;
|
|
938
938
|
unsubscribe: Generated<string[]>;
|
|
939
|
+
isValid: boolean | null;
|
|
939
940
|
metaData: Generated<Json | null>;
|
|
940
941
|
createdAt: Generated<Timestamp | null>;
|
|
941
942
|
updatedAt: Timestamp | null;
|
|
@@ -1037,6 +1038,13 @@ export type User = {
|
|
|
1037
1038
|
fullName: Generated<string | null>;
|
|
1038
1039
|
phoneNormalised: Generated<string | null>;
|
|
1039
1040
|
};
|
|
1041
|
+
export type userInvite = {
|
|
1042
|
+
inviteCode: string;
|
|
1043
|
+
email: string;
|
|
1044
|
+
expiration: Generated<Timestamp>;
|
|
1045
|
+
userId: number;
|
|
1046
|
+
brandId: number;
|
|
1047
|
+
};
|
|
1040
1048
|
export type Variable = {
|
|
1041
1049
|
id: GeneratedAlways<number>;
|
|
1042
1050
|
title: string;
|
|
@@ -1167,6 +1175,7 @@ export type DB = {
|
|
|
1167
1175
|
twitchprofile: TwitchProfile;
|
|
1168
1176
|
twitterprofile: TwitterProfile;
|
|
1169
1177
|
user: User;
|
|
1178
|
+
userInvite: userInvite;
|
|
1170
1179
|
Variable: Variable;
|
|
1171
1180
|
VariableOption: VariableOption;
|
|
1172
1181
|
youtubeprofile: YoutubeProfile;
|