@wopr-network/platform-ui-core 1.20.0 → 1.21.0
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/package.json +1 -1
- package/src/lib/trpc-types.ts +4 -0
package/package.json
CHANGED
package/src/lib/trpc-types.ts
CHANGED
|
@@ -202,6 +202,10 @@ type AppRouterRecord = {
|
|
|
202
202
|
updatePlugin: AnyTRPCMutationProcedure;
|
|
203
203
|
addPlugin: AnyTRPCMutationProcedure;
|
|
204
204
|
};
|
|
205
|
+
/** Hot pool instance claim. */
|
|
206
|
+
pool: {
|
|
207
|
+
claim: AnyTRPCMutationProcedure;
|
|
208
|
+
};
|
|
205
209
|
};
|
|
206
210
|
|
|
207
211
|
export type AppRouter = TRPCBuiltRouter<AnyTRPCRootTypes, AppRouterRecord>;
|