Skip to content

Commit 9ebaa2d

Browse files
feat(frontier): rename value_title to value_description in Preference
Rename title to description in InputHintOption and value_title to value_description in Preference message for better semantic clarity. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent a277680 commit 9ebaa2d

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

raystack/frontier/v1beta1/models.proto

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -522,8 +522,8 @@ message AuditLog {
522522
message InputHintOption {
523523
// Machine-readable identifier (e.g., "sq_km", "megagram")
524524
string name = 1;
525-
// User-friendly display title (e.g., "Square Kilometers", "Megagram (Mg)")
526-
string title = 2;
525+
// User-friendly display description (e.g., "Square Kilometers", "Megagram (Mg)")
526+
string description = 2;
527527
}
528528

529529
// PreferenceTrait is a trait that can be used to add preferences to a resource
@@ -572,9 +572,9 @@ message Preference {
572572
// scope_id is the identifier of the scope context (e.g., organization ID)
573573
// Only applicable when scope_type is set
574574
string scope_id = 7;
575-
// value_title is the human-readable display title for the value
576-
// Populated from InputHintOption.title when the trait has input_options configured
577-
string value_title = 8;
575+
// value_description is the human-readable display description for the value
576+
// Populated from InputHintOption.description when the trait has input_options configured
577+
string value_description = 8;
578578

579579
google.protobuf.Timestamp created_at = 10 [(grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field) = {
580580
description: "The time when the preference was created.",

0 commit comments

Comments
 (0)