@m5kdev/backend 0.8.8 → 0.8.10
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/dist/src/modules/auth/auth.dto.d.cts +6 -6
- package/dist/src/modules/auth/auth.dto.d.mts +6 -6
- package/dist/src/modules/auth/auth.lib.d.cts +4 -4
- package/dist/src/modules/auth/auth.lib.d.mts +4 -4
- package/dist/src/modules/auth/auth.trpc.d.cts +17 -17
- package/dist/src/modules/auth/auth.trpc.d.mts +17 -17
- package/dist/src/modules/base/base.repository.cjs +1 -1
- package/dist/src/modules/base/base.repository.mjs +1 -1
- package/dist/src/modules/billing/billing.repository.d.cts +11 -11
- package/dist/src/modules/billing/billing.service.d.cts +7 -7
- package/dist/src/modules/connect/connect.dto.d.cts +8 -8
- package/dist/src/modules/connect/connect.dto.d.mts +8 -8
- package/dist/src/modules/connect/connect.repository.d.cts +6 -6
- package/dist/src/modules/connect/connect.repository.d.mts +6 -6
- package/dist/src/modules/connect/connect.service.d.cts +12 -12
- package/dist/src/modules/connect/connect.service.d.mts +12 -12
- package/dist/src/modules/connect/connect.trpc.d.cts +4 -4
- package/dist/src/modules/connect/connect.trpc.d.mts +4 -4
- package/dist/src/modules/recurrence/recurrence.service.d.cts +4 -4
- package/dist/src/modules/recurrence/recurrence.service.d.mts +4 -4
- package/dist/src/modules/recurrence/recurrence.trpc.d.cts +2 -2
- package/dist/src/modules/recurrence/recurrence.trpc.d.mts +2 -2
- package/dist/src/modules/tag/tag.trpc.d.cts +4 -4
- package/dist/src/modules/tag/tag.trpc.d.mts +4 -4
- package/dist/src/modules/utils/getConditionsFromFilters.cjs +32 -0
- package/dist/src/modules/utils/getConditionsFromFilters.cjs.map +1 -1
- package/dist/src/modules/utils/getConditionsFromFilters.mjs +33 -1
- package/dist/src/modules/utils/getConditionsFromFilters.mjs.map +1 -1
- package/dist/src/types.d.cts +17 -17
- package/dist/src/types.d.mts +17 -17
- package/package.json +3 -3
package/dist/src/types.d.cts
CHANGED
|
@@ -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;
|
|
63
64
|
createdAt: Date;
|
|
64
65
|
updatedAt: Date | null;
|
|
65
66
|
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
|
-
email: string;
|
|
81
|
-
createdAt: Date;
|
|
82
|
-
expiresAt: Date | null;
|
|
83
80
|
userId: string;
|
|
81
|
+
expiresAt: Date | null;
|
|
82
|
+
createdAt: Date;
|
|
83
|
+
email: 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
|
-
email: string;
|
|
96
|
-
createdAt: Date;
|
|
97
|
-
expiresAt: Date | null;
|
|
98
95
|
userId: string;
|
|
96
|
+
expiresAt: Date | null;
|
|
97
|
+
createdAt: Date;
|
|
98
|
+
email: 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: _$_trpc_server0.TRPCQueryProcedure<{
|
|
150
150
|
input: void;
|
|
151
151
|
output: {
|
|
152
|
-
name: string | null;
|
|
153
152
|
id: string;
|
|
154
|
-
|
|
153
|
+
name: string | null;
|
|
155
154
|
createdAt: Date;
|
|
156
155
|
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
|
-
name: string | null;
|
|
167
166
|
id: string;
|
|
168
|
-
|
|
167
|
+
name: string | null;
|
|
169
168
|
createdAt: Date;
|
|
170
169
|
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
|
-
name: string | null;
|
|
198
197
|
id: string;
|
|
199
|
-
|
|
198
|
+
name: string | null;
|
|
200
199
|
createdAt: Date;
|
|
201
200
|
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
|
-
name: string | null;
|
|
212
211
|
id: string;
|
|
213
|
-
|
|
212
|
+
name: string | null;
|
|
214
213
|
createdAt: Date;
|
|
215
214
|
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
|
-
name: string | null;
|
|
226
225
|
id: string;
|
|
227
|
-
|
|
226
|
+
name: string | null;
|
|
228
227
|
createdAt: Date;
|
|
229
228
|
updatedAt: Date | null;
|
|
229
|
+
email: string | null;
|
|
230
230
|
status: string;
|
|
231
231
|
};
|
|
232
232
|
meta: any;
|
package/dist/src/types.d.mts
CHANGED
|
@@ -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;
|
|
63
64
|
createdAt: Date;
|
|
64
65
|
updatedAt: Date | null;
|
|
65
66
|
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
|
-
email: string;
|
|
81
|
-
createdAt: Date;
|
|
82
|
-
expiresAt: Date | null;
|
|
83
80
|
userId: string;
|
|
81
|
+
expiresAt: Date | null;
|
|
82
|
+
createdAt: Date;
|
|
83
|
+
email: 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
|
-
email: string;
|
|
96
|
-
createdAt: Date;
|
|
97
|
-
expiresAt: Date | null;
|
|
98
95
|
userId: string;
|
|
96
|
+
expiresAt: Date | null;
|
|
97
|
+
createdAt: Date;
|
|
98
|
+
email: 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: _$_trpc_server0.TRPCQueryProcedure<{
|
|
150
150
|
input: void;
|
|
151
151
|
output: {
|
|
152
|
-
name: string | null;
|
|
153
152
|
id: string;
|
|
154
|
-
|
|
153
|
+
name: string | null;
|
|
155
154
|
createdAt: Date;
|
|
156
155
|
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
|
-
name: string | null;
|
|
167
166
|
id: string;
|
|
168
|
-
|
|
167
|
+
name: string | null;
|
|
169
168
|
createdAt: Date;
|
|
170
169
|
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
|
-
name: string | null;
|
|
198
197
|
id: string;
|
|
199
|
-
|
|
198
|
+
name: string | null;
|
|
200
199
|
createdAt: Date;
|
|
201
200
|
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
|
-
name: string | null;
|
|
212
211
|
id: string;
|
|
213
|
-
|
|
212
|
+
name: string | null;
|
|
214
213
|
createdAt: Date;
|
|
215
214
|
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
|
-
name: string | null;
|
|
226
225
|
id: string;
|
|
227
|
-
|
|
226
|
+
name: string | null;
|
|
228
227
|
createdAt: Date;
|
|
229
228
|
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/backend",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.10",
|
|
4
4
|
"description": "Composable Express server stack with Drizzle ORM and tRPC.",
|
|
5
5
|
"license": "GPL-3.0-only",
|
|
6
6
|
"repository": {
|
|
@@ -58,8 +58,8 @@
|
|
|
58
58
|
"trpc-to-openapi": "2.3.0",
|
|
59
59
|
"uuid": "11.0.5",
|
|
60
60
|
"zod": "4.2.1",
|
|
61
|
-
"@m5kdev/
|
|
62
|
-
"@m5kdev/
|
|
61
|
+
"@m5kdev/commons": "0.8.10",
|
|
62
|
+
"@m5kdev/config": "0.8.10"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
65
|
"@jest/globals": "30.2.0",
|