@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wopr-network/platform-ui-core",
3
- "version": "1.20.0",
3
+ "version": "1.22.0",
4
4
  "description": "Brand-agnostic AI agent platform UI — deploy as any brand via env vars",
5
5
  "repository": {
6
6
  "type": "git",
@@ -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>;