@wopr-network/platform-ui-core 1.20.0 → 1.22.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 +5 -0
package/package.json
CHANGED
package/src/lib/trpc-types.ts
CHANGED
|
@@ -79,6 +79,7 @@ type AppRouterRecord = {
|
|
|
79
79
|
listAllInstances: AnyTRPCQueryProcedure;
|
|
80
80
|
listAllOrgs: AnyTRPCQueryProcedure;
|
|
81
81
|
billingOverview: AnyTRPCQueryProcedure;
|
|
82
|
+
listAvailableModels: AnyTRPCQueryProcedure;
|
|
82
83
|
};
|
|
83
84
|
promotions: {
|
|
84
85
|
list: AnyTRPCQueryProcedure;
|
|
@@ -202,6 +203,10 @@ type AppRouterRecord = {
|
|
|
202
203
|
updatePlugin: AnyTRPCMutationProcedure;
|
|
203
204
|
addPlugin: AnyTRPCMutationProcedure;
|
|
204
205
|
};
|
|
206
|
+
/** Hot pool instance claim. */
|
|
207
|
+
pool: {
|
|
208
|
+
claim: AnyTRPCMutationProcedure;
|
|
209
|
+
};
|
|
205
210
|
};
|
|
206
211
|
|
|
207
212
|
export type AppRouter = TRPCBuiltRouter<AnyTRPCRootTypes, AppRouterRecord>;
|