@wopr-network/platform-ui-core 1.19.8 → 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wopr-network/platform-ui-core",
3
- "version": "1.19.8",
3
+ "version": "1.21.0",
4
4
  "description": "Brand-agnostic AI agent platform UI — deploy as any brand via env vars",
5
5
  "repository": {
6
6
  "type": "git",
@@ -76,6 +76,9 @@ type AppRouterRecord = {
76
76
  retentionPoliciesUpdate: AnyTRPCMutationProcedure;
77
77
  getGatewayModel: AnyTRPCQueryProcedure;
78
78
  setGatewayModel: AnyTRPCMutationProcedure;
79
+ listAllInstances: AnyTRPCQueryProcedure;
80
+ listAllOrgs: AnyTRPCQueryProcedure;
81
+ billingOverview: AnyTRPCQueryProcedure;
79
82
  };
80
83
  promotions: {
81
84
  list: AnyTRPCQueryProcedure;
@@ -199,6 +202,10 @@ type AppRouterRecord = {
199
202
  updatePlugin: AnyTRPCMutationProcedure;
200
203
  addPlugin: AnyTRPCMutationProcedure;
201
204
  };
205
+ /** Hot pool instance claim. */
206
+ pool: {
207
+ claim: AnyTRPCMutationProcedure;
208
+ };
202
209
  };
203
210
 
204
211
  export type AppRouter = TRPCBuiltRouter<AnyTRPCRootTypes, AppRouterRecord>;