Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class EnvDataBulkCreateCliCommand : ProfiledCliCommand
[CliOption(Name = "--file", Description = "Path to a JSON file containing an array of records.", Required = false)]
public string? File { get; set; }

[CliOption(Name = "--data", Description = "Inline JSON array of records.", Required = false)]
[CliOption(Name = "--data", Description = "Inline JSON array of records. Special column types: OptionSet as an integer (e.g. 375970000), Lookup as a GUID string or {Id,LogicalName} object, Money as a decimal (e.g. 1500.50), Boolean as true/false, DateTime as an ISO-8601 UTC string (e.g. 2026-05-01T00:00:00Z).", Required = false)]
public string? Data { get; set; }

protected override async Task<int> ExecuteAsync()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class EnvDataBulkUpdateCliCommand : ProfiledCliCommand
[CliOption(Name = "--file", Description = "Path to a JSON file containing an array of records.", Required = false)]
public string? File { get; set; }

[CliOption(Name = "--data", Description = "Inline JSON array of records.", Required = false)]
[CliOption(Name = "--data", Description = "Inline JSON array of records. Special column types: OptionSet as an integer (e.g. 375970000), Lookup as a GUID string or {Id,LogicalName} object, Money as a decimal (e.g. 1500.50), Boolean as true/false, DateTime as an ISO-8601 UTC string (e.g. 2026-05-01T00:00:00Z).", Required = false)]
public string? Data { get; set; }

protected override async Task<int> ExecuteAsync()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class EnvDataBulkUpsertCliCommand : ProfiledCliCommand
[CliOption(Name = "--file", Description = "Path to a JSON file containing an array of records.", Required = false)]
public string? File { get; set; }

[CliOption(Name = "--data", Description = "Inline JSON array of records.", Required = false)]
[CliOption(Name = "--data", Description = "Inline JSON array of records. Special column types: OptionSet as an integer (e.g. 375970000), Lookup as a GUID string or {Id,LogicalName} object, Money as a decimal (e.g. 1500.50), Boolean as true/false, DateTime as an ISO-8601 UTC string (e.g. 2026-05-01T00:00:00Z).", Required = false)]
public string? Data { get; set; }

protected override async Task<int> ExecuteAsync()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class EnvDataRecordCreateCliCommand : StagedCliCommand
[CliOption(Name = "--entity", Description = "Entity logical name (e.g. account).", Required = true)]
public string Entity { get; set; } = null!;

[CliOption(Name = "--data", Description = "Inline JSON object with record attributes.", Required = false)]
[CliOption(Name = "--data", Description = "Inline JSON object with record attributes. Special column types: OptionSet as an integer (e.g. 375970000), Lookup as a GUID string or {Id,LogicalName} object, Money as a decimal (e.g. 1500.50), Boolean as true/false, DateTime as an ISO-8601 UTC string (e.g. 2026-05-01T00:00:00Z).", Required = false)]
public string? Data { get; set; }

[CliOption(Name = "--file", Description = "Path to a JSON file containing record attributes.", Required = false)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class EnvDataRecordUpdateCliCommand : StagedCliCommand
ValidationMessage = CliValidation.GuidValidationMessage)]
public required Guid RecordId { get; set; }

[CliOption(Name = "--data", Description = "Inline JSON object with attributes to update.", Required = false)]
[CliOption(Name = "--data", Description = "Inline JSON object with attributes to update. Special column types: OptionSet as an integer (e.g. 375970000), Lookup as a GUID string or {Id,LogicalName} object, Money as a decimal (e.g. 1500.50), Boolean as true/false, DateTime as an ISO-8601 UTC string (e.g. 2026-05-01T00:00:00Z).", Required = false)]
public string? Data { get; set; }

[CliOption(Name = "--file", Description = "Path to a JSON file containing attributes to update.", Required = false)]
Expand Down