Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add snippet field to memo message #3689

Merged
merged 1 commit into from
Jul 15, 2024
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
6 changes: 6 additions & 0 deletions docs/apidocs.swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -969,6 +969,9 @@ paths:
type: string
title: "The name of the parent memo.\r\nFormat: memos/{id}"
readOnly: true
snippet:
type: string
description: The snippet of the memo content. Plain text only.
tags:
- MemoService
/api/v1/{name_1}:
Expand Down Expand Up @@ -2644,6 +2647,9 @@ definitions:
type: string
title: "The name of the parent memo.\r\nFormat: memos/{id}"
readOnly: true
snippet:
type: string
description: The snippet of the memo content. Plain text only.
v1MemoProperty:
type: object
properties:
Expand Down
3 changes: 3 additions & 0 deletions proto/api/v1/memo_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,9 @@ message Memo {
// The name of the parent memo.
// Format: memos/{id}
optional string parent = 18 [(google.api.field_behavior) = OUTPUT_ONLY];

// The snippet of the memo content. Plain text only.
string snippet = 19;
}

message MemoProperty {
Expand Down
Loading