@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 +1 -1
- package/src/lib/trpc-types.ts +7 -0
package/package.json
CHANGED
package/src/lib/trpc-types.ts
CHANGED
|
@@ -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>;
|