@polinetwork/backend 0.15.6 → 0.15.8
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/index.d.cts +16 -1
- package/dist/index.d.ts +16 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -179,7 +179,21 @@ declare const appRouter: _trpc_server.TRPCBuiltRouter<{
|
|
|
179
179
|
title: string;
|
|
180
180
|
tag: string | null;
|
|
181
181
|
link: string | null;
|
|
182
|
-
}
|
|
182
|
+
} | null;
|
|
183
|
+
meta: object;
|
|
184
|
+
}>;
|
|
185
|
+
getByInviteLink: _trpc_server.TRPCQueryProcedure<{
|
|
186
|
+
input: {
|
|
187
|
+
inviteLink: string;
|
|
188
|
+
};
|
|
189
|
+
output: {
|
|
190
|
+
updatedAt: Date | null;
|
|
191
|
+
createdAt: Date;
|
|
192
|
+
telegramId: number;
|
|
193
|
+
title: string;
|
|
194
|
+
tag: string | null;
|
|
195
|
+
link: string | null;
|
|
196
|
+
} | null;
|
|
183
197
|
meta: object;
|
|
184
198
|
}>;
|
|
185
199
|
create: _trpc_server.TRPCMutationProcedure<{
|
|
@@ -441,6 +455,7 @@ declare const appRouter: _trpc_server.TRPCBuiltRouter<{
|
|
|
441
455
|
getLastByUser: _trpc_server.TRPCQueryProcedure<{
|
|
442
456
|
input: {
|
|
443
457
|
userId: number;
|
|
458
|
+
limit?: number | undefined;
|
|
444
459
|
};
|
|
445
460
|
output: {
|
|
446
461
|
messages: {
|
package/dist/index.d.ts
CHANGED
|
@@ -179,7 +179,21 @@ declare const appRouter: _trpc_server.TRPCBuiltRouter<{
|
|
|
179
179
|
title: string;
|
|
180
180
|
tag: string | null;
|
|
181
181
|
link: string | null;
|
|
182
|
-
}
|
|
182
|
+
} | null;
|
|
183
|
+
meta: object;
|
|
184
|
+
}>;
|
|
185
|
+
getByInviteLink: _trpc_server.TRPCQueryProcedure<{
|
|
186
|
+
input: {
|
|
187
|
+
inviteLink: string;
|
|
188
|
+
};
|
|
189
|
+
output: {
|
|
190
|
+
updatedAt: Date | null;
|
|
191
|
+
createdAt: Date;
|
|
192
|
+
telegramId: number;
|
|
193
|
+
title: string;
|
|
194
|
+
tag: string | null;
|
|
195
|
+
link: string | null;
|
|
196
|
+
} | null;
|
|
183
197
|
meta: object;
|
|
184
198
|
}>;
|
|
185
199
|
create: _trpc_server.TRPCMutationProcedure<{
|
|
@@ -441,6 +455,7 @@ declare const appRouter: _trpc_server.TRPCBuiltRouter<{
|
|
|
441
455
|
getLastByUser: _trpc_server.TRPCQueryProcedure<{
|
|
442
456
|
input: {
|
|
443
457
|
userId: number;
|
|
458
|
+
limit?: number | undefined;
|
|
444
459
|
};
|
|
445
460
|
output: {
|
|
446
461
|
messages: {
|