@polinetwork/backend 0.9.0 → 0.9.1
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 +8 -6
- package/dist/index.d.ts +8 -6
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -127,14 +127,16 @@ declare const appRouter: _trpc_server_unstable_core_do_not_import.BuiltRouter<{
|
|
|
127
127
|
search: _trpc_server.TRPCQueryProcedure<{
|
|
128
128
|
input: {
|
|
129
129
|
query: string;
|
|
130
|
+
limit?: number | undefined;
|
|
130
131
|
};
|
|
131
132
|
output: {
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
133
|
+
groups: {
|
|
134
|
+
telegramId: number;
|
|
135
|
+
title: string;
|
|
136
|
+
link: string | null;
|
|
137
|
+
}[];
|
|
138
|
+
count: number;
|
|
139
|
+
};
|
|
138
140
|
}>;
|
|
139
141
|
getById: _trpc_server.TRPCQueryProcedure<{
|
|
140
142
|
input: {
|
package/dist/index.d.ts
CHANGED
|
@@ -127,14 +127,16 @@ declare const appRouter: _trpc_server_unstable_core_do_not_import.BuiltRouter<{
|
|
|
127
127
|
search: _trpc_server.TRPCQueryProcedure<{
|
|
128
128
|
input: {
|
|
129
129
|
query: string;
|
|
130
|
+
limit?: number | undefined;
|
|
130
131
|
};
|
|
131
132
|
output: {
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
133
|
+
groups: {
|
|
134
|
+
telegramId: number;
|
|
135
|
+
title: string;
|
|
136
|
+
link: string | null;
|
|
137
|
+
}[];
|
|
138
|
+
count: number;
|
|
139
|
+
};
|
|
138
140
|
}>;
|
|
139
141
|
getById: _trpc_server.TRPCQueryProcedure<{
|
|
140
142
|
input: {
|