@m5kdev/web-ui 0.8.10 → 0.8.11

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.
@@ -13,11 +13,11 @@ declare const waitlistSchema: z.ZodObject<{
13
13
  expiresAt: z.ZodNullable<z.ZodDate>;
14
14
  }, z.core.$strip>;
15
15
  declare const waitlistOutputSchema: z.ZodObject<{
16
- id: z.ZodString;
17
16
  name: z.ZodNullable<z.ZodString>;
17
+ id: z.ZodString;
18
+ email: z.ZodNullable<z.ZodString>;
18
19
  createdAt: z.ZodDate;
19
20
  updatedAt: z.ZodNullable<z.ZodDate>;
20
- email: z.ZodNullable<z.ZodString>;
21
21
  status: z.ZodString;
22
22
  }, z.core.$strip>;
23
23
  type WaitlistOutput = z.infer<typeof waitlistOutputSchema>;
@@ -35,10 +35,10 @@ declare const accountClaimSchema: z.ZodObject<{
35
35
  }, z.core.$strip>;
36
36
  declare const accountClaimOutputSchema: z.ZodObject<{
37
37
  id: z.ZodString;
38
- expiresAt: z.ZodNullable<z.ZodDate>;
39
38
  createdAt: z.ZodDate;
40
39
  updatedAt: z.ZodNullable<z.ZodDate>;
41
40
  status: z.ZodString;
41
+ expiresAt: z.ZodNullable<z.ZodDate>;
42
42
  claimUserId: z.ZodNullable<z.ZodString>;
43
43
  claimedAt: z.ZodNullable<z.ZodDate>;
44
44
  claimedEmail: z.ZodNullable<z.ZodString>;
@@ -57,10 +57,10 @@ declare const accountClaimMagicLinkSchema: z.ZodObject<{
57
57
  }, z.core.$strip>;
58
58
  declare const accountClaimMagicLinkOutputSchema: z.ZodObject<{
59
59
  id: z.ZodString;
60
- userId: z.ZodString;
61
- expiresAt: z.ZodNullable<z.ZodDate>;
62
- createdAt: z.ZodDate;
63
60
  email: z.ZodString;
61
+ createdAt: z.ZodDate;
62
+ expiresAt: z.ZodNullable<z.ZodDate>;
63
+ userId: z.ZodString;
64
64
  claimId: z.ZodString;
65
65
  url: z.ZodString;
66
66
  }, z.core.$strip>;
@@ -13,11 +13,11 @@ declare const waitlistSchema: z.ZodObject<{
13
13
  expiresAt: z.ZodNullable<z.ZodDate>;
14
14
  }, z.core.$strip>;
15
15
  declare const waitlistOutputSchema: z.ZodObject<{
16
- id: z.ZodString;
17
16
  name: z.ZodNullable<z.ZodString>;
17
+ id: z.ZodString;
18
+ email: z.ZodNullable<z.ZodString>;
18
19
  createdAt: z.ZodDate;
19
20
  updatedAt: z.ZodNullable<z.ZodDate>;
20
- email: z.ZodNullable<z.ZodString>;
21
21
  status: z.ZodString;
22
22
  }, z.core.$strip>;
23
23
  type WaitlistOutput = z.infer<typeof waitlistOutputSchema>;
@@ -35,10 +35,10 @@ declare const accountClaimSchema: z.ZodObject<{
35
35
  }, z.core.$strip>;
36
36
  declare const accountClaimOutputSchema: z.ZodObject<{
37
37
  id: z.ZodString;
38
- expiresAt: z.ZodNullable<z.ZodDate>;
39
38
  createdAt: z.ZodDate;
40
39
  updatedAt: z.ZodNullable<z.ZodDate>;
41
40
  status: z.ZodString;
41
+ expiresAt: z.ZodNullable<z.ZodDate>;
42
42
  claimUserId: z.ZodNullable<z.ZodString>;
43
43
  claimedAt: z.ZodNullable<z.ZodDate>;
44
44
  claimedEmail: z.ZodNullable<z.ZodString>;
@@ -57,10 +57,10 @@ declare const accountClaimMagicLinkSchema: z.ZodObject<{
57
57
  }, z.core.$strip>;
58
58
  declare const accountClaimMagicLinkOutputSchema: z.ZodObject<{
59
59
  id: z.ZodString;
60
- userId: z.ZodString;
61
- expiresAt: z.ZodNullable<z.ZodDate>;
62
- createdAt: z.ZodDate;
63
60
  email: z.ZodString;
61
+ createdAt: z.ZodDate;
62
+ expiresAt: z.ZodNullable<z.ZodDate>;
63
+ userId: z.ZodString;
64
64
  claimId: z.ZodString;
65
65
  url: z.ZodString;
66
66
  }, z.core.$strip>;
@@ -60,10 +60,10 @@ declare const createAuthTRPCRouter: (trpcMethods: TRPCMethods, authService: Auth
60
60
  input: void;
61
61
  output: {
62
62
  id: string;
63
- expiresAt: Date | null;
64
63
  createdAt: Date;
65
64
  updatedAt: Date | null;
66
65
  status: string;
66
+ expiresAt: Date | null;
67
67
  claimUserId: string | null;
68
68
  claimedAt: Date | null;
69
69
  claimedEmail: string | null;
@@ -77,10 +77,10 @@ declare const createAuthTRPCRouter: (trpcMethods: TRPCMethods, authService: Auth
77
77
  };
78
78
  output: {
79
79
  id: string;
80
- userId: string;
81
- expiresAt: Date | null;
82
- createdAt: Date;
83
80
  email: string;
81
+ createdAt: Date;
82
+ expiresAt: Date | null;
83
+ userId: string;
84
84
  claimId: string;
85
85
  url: string;
86
86
  };
@@ -92,10 +92,10 @@ declare const createAuthTRPCRouter: (trpcMethods: TRPCMethods, authService: Auth
92
92
  };
93
93
  output: {
94
94
  id: string;
95
- userId: string;
96
- expiresAt: Date | null;
97
- createdAt: Date;
98
95
  email: string;
96
+ createdAt: Date;
97
+ expiresAt: Date | null;
98
+ userId: string;
99
99
  claimId: string;
100
100
  url: string;
101
101
  }[];
@@ -149,11 +149,11 @@ declare const createAuthTRPCRouter: (trpcMethods: TRPCMethods, authService: Auth
149
149
  listAdminWaitlist: QueryProcedure<{
150
150
  input: void;
151
151
  output: {
152
- id: string;
153
152
  name: string | null;
153
+ id: string;
154
+ email: string | null;
154
155
  createdAt: Date;
155
156
  updatedAt: Date | null;
156
- email: string | null;
157
157
  status: string;
158
158
  }[];
159
159
  meta: any;
@@ -163,11 +163,11 @@ declare const createAuthTRPCRouter: (trpcMethods: TRPCMethods, authService: Auth
163
163
  email: string;
164
164
  };
165
165
  output: {
166
- id: string;
167
166
  name: string | null;
167
+ id: string;
168
+ email: string | null;
168
169
  createdAt: Date;
169
170
  updatedAt: Date | null;
170
- email: string | null;
171
171
  status: string;
172
172
  };
173
173
  meta: any;
@@ -194,11 +194,11 @@ declare const createAuthTRPCRouter: (trpcMethods: TRPCMethods, authService: Auth
194
194
  id: string;
195
195
  };
196
196
  output: {
197
- id: string;
198
197
  name: string | null;
198
+ id: string;
199
+ email: string | null;
199
200
  createdAt: Date;
200
201
  updatedAt: Date | null;
201
- email: string | null;
202
202
  status: string;
203
203
  };
204
204
  meta: any;
@@ -208,11 +208,11 @@ declare const createAuthTRPCRouter: (trpcMethods: TRPCMethods, authService: Auth
208
208
  id: string;
209
209
  };
210
210
  output: {
211
- id: string;
212
211
  name: string | null;
212
+ id: string;
213
+ email: string | null;
213
214
  createdAt: Date;
214
215
  updatedAt: Date | null;
215
- email: string | null;
216
216
  status: string;
217
217
  };
218
218
  meta: any;
@@ -222,11 +222,11 @@ declare const createAuthTRPCRouter: (trpcMethods: TRPCMethods, authService: Auth
222
222
  email: string;
223
223
  };
224
224
  output: {
225
- id: string;
226
225
  name: string | null;
226
+ id: string;
227
+ email: string | null;
227
228
  createdAt: Date;
228
229
  updatedAt: Date | null;
229
- email: string | null;
230
230
  status: string;
231
231
  };
232
232
  meta: any;
@@ -60,10 +60,10 @@ declare const createAuthTRPCRouter: (trpcMethods: TRPCMethods, authService: Auth
60
60
  input: void;
61
61
  output: {
62
62
  id: string;
63
- expiresAt: Date | null;
64
63
  createdAt: Date;
65
64
  updatedAt: Date | null;
66
65
  status: string;
66
+ expiresAt: Date | null;
67
67
  claimUserId: string | null;
68
68
  claimedAt: Date | null;
69
69
  claimedEmail: string | null;
@@ -77,10 +77,10 @@ declare const createAuthTRPCRouter: (trpcMethods: TRPCMethods, authService: Auth
77
77
  };
78
78
  output: {
79
79
  id: string;
80
- userId: string;
81
- expiresAt: Date | null;
82
- createdAt: Date;
83
80
  email: string;
81
+ createdAt: Date;
82
+ expiresAt: Date | null;
83
+ userId: string;
84
84
  claimId: string;
85
85
  url: string;
86
86
  };
@@ -92,10 +92,10 @@ declare const createAuthTRPCRouter: (trpcMethods: TRPCMethods, authService: Auth
92
92
  };
93
93
  output: {
94
94
  id: string;
95
- userId: string;
96
- expiresAt: Date | null;
97
- createdAt: Date;
98
95
  email: string;
96
+ createdAt: Date;
97
+ expiresAt: Date | null;
98
+ userId: string;
99
99
  claimId: string;
100
100
  url: string;
101
101
  }[];
@@ -149,11 +149,11 @@ declare const createAuthTRPCRouter: (trpcMethods: TRPCMethods, authService: Auth
149
149
  listAdminWaitlist: QueryProcedure<{
150
150
  input: void;
151
151
  output: {
152
- id: string;
153
152
  name: string | null;
153
+ id: string;
154
+ email: string | null;
154
155
  createdAt: Date;
155
156
  updatedAt: Date | null;
156
- email: string | null;
157
157
  status: string;
158
158
  }[];
159
159
  meta: any;
@@ -163,11 +163,11 @@ declare const createAuthTRPCRouter: (trpcMethods: TRPCMethods, authService: Auth
163
163
  email: string;
164
164
  };
165
165
  output: {
166
- id: string;
167
166
  name: string | null;
167
+ id: string;
168
+ email: string | null;
168
169
  createdAt: Date;
169
170
  updatedAt: Date | null;
170
- email: string | null;
171
171
  status: string;
172
172
  };
173
173
  meta: any;
@@ -194,11 +194,11 @@ declare const createAuthTRPCRouter: (trpcMethods: TRPCMethods, authService: Auth
194
194
  id: string;
195
195
  };
196
196
  output: {
197
- id: string;
198
197
  name: string | null;
198
+ id: string;
199
+ email: string | null;
199
200
  createdAt: Date;
200
201
  updatedAt: Date | null;
201
- email: string | null;
202
202
  status: string;
203
203
  };
204
204
  meta: any;
@@ -208,11 +208,11 @@ declare const createAuthTRPCRouter: (trpcMethods: TRPCMethods, authService: Auth
208
208
  id: string;
209
209
  };
210
210
  output: {
211
- id: string;
212
211
  name: string | null;
212
+ id: string;
213
+ email: string | null;
213
214
  createdAt: Date;
214
215
  updatedAt: Date | null;
215
- email: string | null;
216
216
  status: string;
217
217
  };
218
218
  meta: any;
@@ -222,11 +222,11 @@ declare const createAuthTRPCRouter: (trpcMethods: TRPCMethods, authService: Auth
222
222
  email: string;
223
223
  };
224
224
  output: {
225
- id: string;
226
225
  name: string | null;
226
+ id: string;
227
+ email: string | null;
227
228
  createdAt: Date;
228
229
  updatedAt: Date | null;
229
- email: string | null;
230
230
  status: string;
231
231
  };
232
232
  meta: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@m5kdev/web-ui",
3
- "version": "0.8.10",
3
+ "version": "0.8.11",
4
4
  "license": "GPL-3.0-only",
5
5
  "repository": {
6
6
  "type": "git",
@@ -67,8 +67,8 @@
67
67
  "zod": "4.2.1",
68
68
  "@tanstack/react-query": "5.83.0",
69
69
  "@trpc/tanstack-react-query": "11.4.3",
70
- "@m5kdev/commons": "0.8.10",
71
- "@m5kdev/frontend": "0.8.10"
70
+ "@m5kdev/frontend": "0.8.11",
71
+ "@m5kdev/commons": "0.8.11"
72
72
  },
73
73
  "devDependencies": {
74
74
  "@tsdown/css": "0.21.7",
@@ -80,8 +80,8 @@
80
80
  "globals": "16.3.0",
81
81
  "tsdown": "0.21.7",
82
82
  "vite": "7.0.4",
83
- "@m5kdev/backend": "0.8.10",
84
- "@m5kdev/config": "0.8.10"
83
+ "@m5kdev/backend": "0.8.11",
84
+ "@m5kdev/config": "0.8.11"
85
85
  },
86
86
  "exports": {
87
87
  "./components/*": {