gitaly-proto 0.33.0 → 0.33.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a4351f2d81e02b6a6963e0582355f03257c184d5
4
- data.tar.gz: f162ea5a43293fb8672460f6e093865b4d417a41
3
+ metadata.gz: 33cb778282556601d7dfdcc08e1d288a03691d9b
4
+ data.tar.gz: 67c136bcb73680f0b40d5bc1b144144cdab6073e
5
5
  SHA512:
6
- metadata.gz: 7f8ccb8fb75c6cbe8dd96d7c8cab309a689a140a6b9d78ffaf976b0c1ed872a2a5f5e613e545e5ce645a8cca821360b19c821e1a21a92d8e2c1a04cf55463790
7
- data.tar.gz: 19f5afcaa89d8a29470b472a1b4d7e670408bb48d5688723975e57de628cd5f96bdfd455dc0a733d0dd4ac214b9eb112fd146b37b727b47719f9b970a418f693
6
+ metadata.gz: 90a1ab4c6480665e3626af6142e69311c3a06cf242f2d5967b7f6e1ecbf21f5d55c7ff36fd90c46389f73ab68122454ea468148973edddb855b0479480b38742
7
+ data.tar.gz: ab9779e5b4e4efb803c5f97a3593cbb1ad789ed66d16805b47c93edda141409b36a49cf6fb90bc14ce596eaa60de5618051f7b545d94cfb066b23f8430e9014e
@@ -15,6 +15,8 @@ require 'gitaly/namespace_services_pb'
15
15
 
16
16
  require 'gitaly/notifications_services_pb'
17
17
 
18
+ require 'gitaly/operations_services_pb'
19
+
18
20
  require 'gitaly/ref_services_pb'
19
21
 
20
22
  require 'gitaly/repository-service_services_pb'
@@ -0,0 +1,22 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # source: operations.proto
3
+
4
+ require 'google/protobuf'
5
+
6
+ require 'shared_pb'
7
+ Google::Protobuf::DescriptorPool.generated_pool.build do
8
+ add_message "gitaly.UserCreateBranchRequest" do
9
+ optional :repository, :message, 1, "gitaly.Repository"
10
+ optional :branch_name, :bytes, 2
11
+ optional :user, :message, 3, "gitaly.User"
12
+ optional :start_point, :bytes, 4
13
+ end
14
+ add_message "gitaly.UserCreateBranchResponse" do
15
+ optional :branch, :message, 1, "gitaly.Branch"
16
+ end
17
+ end
18
+
19
+ module Gitaly
20
+ UserCreateBranchRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserCreateBranchRequest").msgclass
21
+ UserCreateBranchResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.UserCreateBranchResponse").msgclass
22
+ end
@@ -0,0 +1,22 @@
1
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
2
+ # Source: operations.proto for package 'gitaly'
3
+
4
+ require 'grpc'
5
+ require 'operations_pb'
6
+
7
+ module Gitaly
8
+ module OperationService
9
+ class Service
10
+
11
+ include GRPC::GenericService
12
+
13
+ self.marshal_class_method = :encode
14
+ self.unmarshal_class_method = :decode
15
+ self.service_name = 'gitaly.OperationService'
16
+
17
+ rpc :UserCreateBranch, UserCreateBranchRequest, UserCreateBranchResponse
18
+ end
19
+
20
+ Stub = Service.rpc_stub_class
21
+ end
22
+ end
@@ -31,6 +31,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
31
31
  optional :name, :bytes, 1
32
32
  optional :target_commit, :message, 2, "gitaly.GitCommit"
33
33
  end
34
+ add_message "gitaly.User" do
35
+ optional :gl_id, :string, 1
36
+ optional :name, :bytes, 2
37
+ optional :email, :bytes, 3
38
+ end
34
39
  end
35
40
 
36
41
  module Gitaly
@@ -39,4 +44,5 @@ module Gitaly
39
44
  CommitAuthor = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.CommitAuthor").msgclass
40
45
  ExitStatus = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.ExitStatus").msgclass
41
46
  Branch = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.Branch").msgclass
47
+ User = Google::Protobuf::DescriptorPool.generated_pool.lookup("gitaly.User").msgclass
42
48
  end
@@ -23,6 +23,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
23
23
  optional :data, :bytes, 2
24
24
  optional :gl_id, :string, 3
25
25
  optional :gl_repository, :string, 4
26
+ optional :gl_username, :string, 5
26
27
  end
27
28
  add_message "gitaly.PostReceivePackResponse" do
28
29
  optional :data, :bytes, 1
@@ -20,6 +20,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
20
20
  optional :stdin, :bytes, 2
21
21
  optional :gl_id, :string, 3
22
22
  optional :gl_repository, :string, 4
23
+ optional :gl_username, :string, 5
23
24
  end
24
25
  add_message "gitaly.SSHReceivePackResponse" do
25
26
  optional :stdout, :bytes, 1
@@ -1,4 +1,4 @@
1
1
  # This file was auto-generated by _support/release
2
2
  module Gitaly
3
- VERSION = "0.33.0"
3
+ VERSION = "0.33.1"
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitaly-proto
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.33.0
4
+ version: 0.33.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jacob Vosmaer
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-09-05 00:00:00.000000000 Z
11
+ date: 2017-09-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-protobuf
@@ -61,6 +61,8 @@ files:
61
61
  - ruby/lib/gitaly/namespace_services_pb.rb
62
62
  - ruby/lib/gitaly/notifications_pb.rb
63
63
  - ruby/lib/gitaly/notifications_services_pb.rb
64
+ - ruby/lib/gitaly/operations_pb.rb
65
+ - ruby/lib/gitaly/operations_services_pb.rb
64
66
  - ruby/lib/gitaly/ref_pb.rb
65
67
  - ruby/lib/gitaly/ref_services_pb.rb
66
68
  - ruby/lib/gitaly/repository-service_pb.rb