@wopr-network/platform-ui-core 1.9.0 → 1.11.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
|
@@ -76,6 +76,16 @@ const PREF_GROUPS: PrefGroup[] = [
|
|
|
76
76
|
},
|
|
77
77
|
],
|
|
78
78
|
},
|
|
79
|
+
{
|
|
80
|
+
title: "Fleet Updates",
|
|
81
|
+
items: [
|
|
82
|
+
{
|
|
83
|
+
key: "fleet_updates",
|
|
84
|
+
label: "Fleet Updates",
|
|
85
|
+
description: "Get notified when updates are available or applied to your fleet.",
|
|
86
|
+
},
|
|
87
|
+
],
|
|
88
|
+
},
|
|
79
89
|
];
|
|
80
90
|
|
|
81
91
|
// ---------------------------------------------------------------------------
|
package/src/lib/api.ts
CHANGED
|
@@ -1692,6 +1692,7 @@ export interface NotificationPreferences {
|
|
|
1692
1692
|
agent_status_changes: boolean;
|
|
1693
1693
|
account_role_changes: boolean;
|
|
1694
1694
|
account_team_invites: boolean;
|
|
1695
|
+
fleet_updates: boolean;
|
|
1695
1696
|
}
|
|
1696
1697
|
|
|
1697
1698
|
// --- Public platform health (no auth required) ---
|
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;
|