@wopr-network/platform-ui-core 1.9.0 → 1.10.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
|
@@ -183,6 +183,13 @@ type AppRouterRecord = {
|
|
|
183
183
|
previewTemplate: AnyTRPCMutationProcedure;
|
|
184
184
|
seedDefaults: AnyTRPCMutationProcedure;
|
|
185
185
|
};
|
|
186
|
+
/** Admin-only: fleet rollout management. */
|
|
187
|
+
adminFleetUpdate: {
|
|
188
|
+
rolloutStatus: AnyTRPCQueryProcedure;
|
|
189
|
+
forceRollout: AnyTRPCMutationProcedure;
|
|
190
|
+
listTenantConfigs: AnyTRPCQueryProcedure;
|
|
191
|
+
setTenantConfig: AnyTRPCMutationProcedure;
|
|
192
|
+
};
|
|
186
193
|
adminMarketplace: {
|
|
187
194
|
listPlugins: AnyTRPCQueryProcedure;
|
|
188
195
|
updatePlugin: AnyTRPCMutationProcedure;
|