@creator.co/creatorco-kysely-types 1.0.91 → 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.
Files changed (2) hide show
  1. package/index.d.ts +8 -0
  2. 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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@creator.co/creatorco-kysely-types",
3
- "version": "1.0.91",
3
+ "version": "1.0.93",
4
4
  "types": "./index.d.ts",
5
5
  "type": "commonjs",
6
6
  "devDependencies": {