Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# SaaS RS :: CLI Changelog

## [Unreleased]
### Changed
- [#90](https://github.com/saas-rs/cli/issues/90) Add default LinkedAccount fields to CLI display: providerUid, ownerAccountId

## [0.4.1] - 2025-11-14
### Changed
- [#88](https://github.com/saas-rs/cli/issues/88) Retire management of SSH Keys
Expand Down
2 changes: 1 addition & 1 deletion src/cmd/list/linked_accounts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use clap::Parser;
use polars::prelude::*;
use std::io::Cursor;

pub const PS_COLUMNS: &[&str] = &["id", "type", "provider"];
pub const PS_COLUMNS: &[&str] = &["id", "type", "provider", "providerUid", "ownerAccountId"];

#[derive(Debug, Parser)]
pub struct Opts {
Expand Down