Skip to content

Commit ac699a3

Browse files
committed
chore(plumber): refresh protos
1 parent e9d37e5 commit ac699a3

12 files changed

+666
-950
lines changed

plumber/proto/lib/internal_api/artifacthub.pb.ex

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -388,12 +388,14 @@ defmodule InternalApi.Artifacthub.ListItem do
388388

389389
@type t :: %__MODULE__{
390390
name: String.t(),
391-
is_directory: boolean
391+
is_directory: boolean,
392+
size: integer
392393
}
393-
defstruct [:name, :is_directory]
394+
defstruct [:name, :is_directory, :size]
394395

395396
field(:name, 1, type: :string)
396397
field(:is_directory, 2, type: :bool)
398+
field(:size, 3, type: :int64)
397399
end
398400

399401
defmodule InternalApi.Artifacthub.Artifact do

plumber/proto/lib/internal_api/gofer.dt.pb.ex

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -421,10 +421,7 @@ defmodule InternalApi.Gofer.DeploymentTargets.Deployment do
421421
field(:switch_id, 9, type: :string)
422422
field(:target_name, 10, type: :string)
423423

424-
field(:env_vars, 11,
425-
repeated: true,
426-
type: InternalApi.Gofer.DeploymentTargets.Deployment.EnvVar
427-
)
424+
field(:env_vars, 11, repeated: true, type: InternalApi.Gofer.DeploymentTargets.Deployment.EnvVar)
428425

429426
field(:can_requester_rerun, 12, type: :bool)
430427
end

plumber/proto/lib/internal_api/organization.pb.ex

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -530,18 +530,6 @@ defmodule InternalApi.Organization.RestoreRequest do
530530
field(:org_id, 1, type: :string)
531531
end
532532

533-
defmodule InternalApi.Organization.RestoreRequest do
534-
@moduledoc false
535-
use Protobuf, syntax: :proto3
536-
537-
@type t :: %__MODULE__{
538-
org_id: String.t()
539-
}
540-
defstruct [:org_id]
541-
542-
field :org_id, 1, type: :string
543-
end
544-
545533
defmodule InternalApi.Organization.Organization do
546534
@moduledoc false
547535
use Protobuf, syntax: :proto3
@@ -1006,20 +994,6 @@ defmodule InternalApi.Organization.OrganizationRestored do
1006994
field(:timestamp, 2, type: Google.Protobuf.Timestamp)
1007995
end
1008996

1009-
defmodule InternalApi.Organization.OrganizationRestored do
1010-
@moduledoc false
1011-
use Protobuf, syntax: :proto3
1012-
1013-
@type t :: %__MODULE__{
1014-
org_id: String.t(),
1015-
timestamp: Google.Protobuf.Timestamp.t()
1016-
}
1017-
defstruct [:org_id, :timestamp]
1018-
1019-
field :org_id, 1, type: :string
1020-
field :timestamp, 2, type: Google.Protobuf.Timestamp
1021-
end
1022-
1023997
defmodule InternalApi.Organization.OrganizationService.Service do
1024998
@moduledoc false
1025999
use GRPC.Service, name: "InternalApi.Organization.OrganizationService"

0 commit comments

Comments
 (0)