mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-02-23 14:27:15 +08:00
Add :version
field to AppDeployment
(#2630)
This commit is contained in:
parent
a57b470306
commit
d69cb9f36a
2 changed files with 2 additions and 0 deletions
|
@ -11,4 +11,5 @@ defmodule LivebookProto.AppDeployment do
|
|||
field :deployed_at, 8, type: :int64, json_name: "deployedAt"
|
||||
field :multi_session, 9, type: :bool, json_name: "multiSession"
|
||||
field :access_type, 10, type: :string, json_name: "accessType"
|
||||
field :version, 11, type: :string
|
||||
end
|
||||
|
|
|
@ -129,6 +129,7 @@ message AppDeployment {
|
|||
int64 deployed_at = 8;
|
||||
bool multi_session = 9;
|
||||
string access_type = 10;
|
||||
string version = 11;
|
||||
}
|
||||
|
||||
message AppDeploymentStarted {
|
||||
|
|
Loading…
Reference in a new issue