@@ -526,7 +526,7 @@ type Environment struct {
526526
527527type LakeConfig struct {
528528 Enabled bool `json:"enabled" datastore:"enabled"`
529- Pipelines []PipelineInfoMini `json:"pipelines" datastore:"pipelines"`
529+ Pipelines []PipelineInfo `json:"pipelines" datastore:"pipelines"`
530530}
531531
532532// Saves some data, not sure what to have here lol
@@ -2567,7 +2567,7 @@ type SubResponse struct {
25672567}
25682568
25692569type AllTriggersWrapper struct {
2570- Pipelines []PipelineInfoMini `json:"pipelines"`
2570+ Pipelines []PipelineInfo `json:"pipelines"`
25712571 WebHooks []Hook `json:"webhooks"`
25722572 Schedules []ScheduleOld `json:"schedules"`
25732573}
@@ -4462,16 +4462,6 @@ type DetectionResponse struct {
44624462 DownloadRepo string `json:"download_repo"`
44634463}
44644464
4465- type PipelineInfoMini struct {
4466- Name string `json:"name"`
4467- ID string `json:"id"`
4468- Definition string `json:"definition"`
4469- TotalRuns int `json:"total_runs"`
4470- CreatedAt int64 `json:"created_at"`
4471-
4472- Environment string `json:"environment"`
4473- }
4474-
44754465// The raw output from pipelines in Tenzir
44764466type PipelineInfo struct {
44774467 ID string `json:"id"`
@@ -4502,6 +4492,9 @@ type PipelineInfo struct {
45024492 } `json:"autodelete"`
45034493 TTL any `json:"ttl"`
45044494 RemainingTTL any `json:"remaining_ttl"`
4495+
4496+ // Shuffle ref
4497+ Environment string `json:"environment"`
45054498}
45064499
45074500type PipelineInfoWrapper struct {
0 commit comments