fix(secrets-cli): bundle import — verbatim ApplyReplicated writes, format gate, entry-aware errors
This commit is contained in:
@@ -14,8 +14,11 @@ namespace ZB.MOM.WW.Secrets.Cli.Interactive;
|
||||
/// </summary>
|
||||
public sealed record SecretBundle
|
||||
{
|
||||
/// <summary>The only bundle format version this build can read or write.</summary>
|
||||
public const int CurrentFormatVersion = 1;
|
||||
|
||||
/// <summary>The on-disk bundle format version (currently <c>1</c>).</summary>
|
||||
public int FormatVersion { get; init; } = 1;
|
||||
public int FormatVersion { get; init; } = CurrentFormatVersion;
|
||||
|
||||
/// <summary>When the bundle was exported (UTC).</summary>
|
||||
public DateTimeOffset ExportedUtc { get; init; }
|
||||
|
||||
Reference in New Issue
Block a user