feat(studio): temporal source bucket + provenance pill on store grid
Some checks failed
Security / Security check (push) Failing after 1s

Adds the missing UI surface for SPARK / Temporal federated
capabilities. Previously only mcp and n8n showed provenance
pills; temporal-sourced entries fell through to the default
"no badge" case.

  - storeSourceTemporal + storeProvenanceTemporal l10n keys
    (en + de). Pill format: "temporal · <provider>", icon
    Icons.timer_outlined, accent tone.
  - Source filter chip row gains a "Temporal" option in the
    Store filter dialog.
  - `_StoreProvenancePill` adds a `case 'temporal'` branch.

Operators federating a SPARK cluster (`services: -
kind: temporal`) now see their workflows visually labelled
as Temporal-sourced in the Store grid + filter UI.

dart analyze green. No test changes required — the
provenance pill is render-only.

Signed-off-by: flemming-it <stefan.a.flemming@googlemail.com>
This commit is contained in:
flemming-it 2026-05-28 14:15:39 +02:00
parent 2c13ef58ae
commit ceed8aab02
6 changed files with 1379 additions and 279 deletions

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -3565,6 +3565,18 @@ abstract class AppLocalizations {
/// In en, this message translates to:
/// **'Pull failed: {error}'**
String systemAiPullFailedError(String error);
/// No description provided for @storeProvenanceTemporal.
///
/// In en, this message translates to:
/// **'temporal · {provider}'**
String storeProvenanceTemporal(String provider);
/// No description provided for @storeSourceTemporal.
///
/// In en, this message translates to:
/// **'Temporal'**
String get storeSourceTemporal;
}
class _AppLocalizationsDelegate

View file

@ -2084,4 +2084,12 @@ class AppLocalizationsDe extends AppLocalizations {
String systemAiPullFailedError(String error) {
return 'Pull fehlgeschlagen: $error';
}
@override
String storeProvenanceTemporal(String provider) {
return 'temporal · $provider';
}
@override
String get storeSourceTemporal => 'Temporal';
}

View file

@ -2090,4 +2090,12 @@ class AppLocalizationsEn extends AppLocalizations {
String systemAiPullFailedError(String error) {
return 'Pull failed: $error';
}
@override
String storeProvenanceTemporal(String provider) {
return 'temporal · $provider';
}
@override
String get storeSourceTemporal => 'Temporal';
}