@polinetwork/backend 0.15.7 → 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 +14 -0
- package/dist/index.d.ts +14 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -182,6 +182,20 @@ declare const appRouter: _trpc_server.TRPCBuiltRouter<{
|
|
|
182
182
|
} | null;
|
|
183
183
|
meta: object;
|
|
184
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;
|
|
197
|
+
meta: object;
|
|
198
|
+
}>;
|
|
185
199
|
create: _trpc_server.TRPCMutationProcedure<{
|
|
186
200
|
input: {
|
|
187
201
|
title: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -182,6 +182,20 @@ declare const appRouter: _trpc_server.TRPCBuiltRouter<{
|
|
|
182
182
|
} | null;
|
|
183
183
|
meta: object;
|
|
184
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;
|
|
197
|
+
meta: object;
|
|
198
|
+
}>;
|
|
185
199
|
create: _trpc_server.TRPCMutationProcedure<{
|
|
186
200
|
input: {
|
|
187
201
|
title: string;
|