jitera_proto 0.0.10 → 0.0.11

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
  SHA256:
3
- metadata.gz: 9362a701c2a4b4e350532d1c1f8e3b4cf9de6131d79012ac8fd57dc0db6f998e
4
- data.tar.gz: eb46b7324a4830a97f07468e2d5191a6d7edef2f8c14e9ceaf466444593e56f9
3
+ metadata.gz: 8db10fb7a0a6bf6177d2e4633e2bbd4b3b9e5f64159bcdaeb38e402c0590d410
4
+ data.tar.gz: e5be799b0f4d673d1493441c6e4bc83e74330ab4e64dc639c164649a669672fd
5
5
  SHA512:
6
- metadata.gz: bebb15f7a69eb66baf2d56715848c4bfaa9c81ad16ed6dc6c86a51444353c5d420a0ea0e8d51db426063b2a0ec4c8b9f333088ae6b04848ed7c8bcb6c183b4e0
7
- data.tar.gz: 4e89d9ce198baf404dc27f42c95343a30c6bd3d1f2b1046a777de5616cb9f1c0f7bdf336cbb21b6394659aa669d3c680bf44466e4d0bf6d9ea0ca50fd1ae53e3
6
+ metadata.gz: 2a41527423aefe7e104f4dd4fe1086af60a7d9b557c181d46a3336979ff6ddb044f62b2e5d39f7307e03ccf039d0414c70175fcba2755489b758a46df62d05c5
7
+ data.tar.gz: e9a63bde5d36ef5f2af4b0e58f56dbf47ad17c0e3b609408247f5c219e0e05d9ef9a452e426b34a4a9c9eca12fc6269a400ad8ee1f48724b841fdc15ec76d21c
@@ -2,7 +2,7 @@ syntax = "proto3";
2
2
  package schema.v1;
3
3
 
4
4
  import "v1/backend.proto";
5
- import "v1/frontend.proto";
5
+ import "v1/web_app.proto";
6
6
 
7
7
  service CoreService {
8
8
  rpc ListTables (ListTablesRequest) returns (ListTablesResponse) {}
@@ -202,11 +202,11 @@ message WebNodeProps {
202
202
 
203
203
  message TableColumn {
204
204
  RenderMolecule molecule = 1;
205
- repeated bool sortable = 2;
206
- repeated bool filterable = 3;
207
- repeated int32 column_index = 4;
208
- repeated string column_name = 5;
209
- repeated string column_path = 6;
205
+ bool sortable = 2;
206
+ bool filterable = 3;
207
+ int32 column_index = 4;
208
+ string column_name = 5;
209
+ string column_path = 6;
210
210
  }
211
211
  }
212
212
 
@@ -1,12 +1,12 @@
1
1
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
- # source: v1/frontend.proto
2
+ # source: v1/web_app.proto
3
3
 
4
4
  require 'google/protobuf'
5
5
 
6
6
  require 'google/protobuf/struct_pb'
7
7
 
8
8
  Google::Protobuf::DescriptorPool.generated_pool.build do
9
- add_file("v1/frontend.proto", :syntax => :proto3) do
9
+ add_file("v1/web_app.proto", :syntax => :proto3) do
10
10
  add_message "schema.v1.WebApp" do
11
11
  repeated :app_pages, :message, 1, "schema.v1.AppPage"
12
12
  repeated :assets, :message, 2, "schema.v1.Asset"
@@ -186,11 +186,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
186
186
  end
187
187
  add_message "schema.v1.WebNodeProps.TableColumn" do
188
188
  optional :molecule, :message, 1, "schema.v1.RenderMolecule"
189
- repeated :sortable, :bool, 2
190
- repeated :filterable, :bool, 3
191
- repeated :column_index, :int32, 4
192
- repeated :column_name, :string, 5
193
- repeated :column_path, :string, 6
189
+ optional :sortable, :bool, 2
190
+ optional :filterable, :bool, 3
191
+ optional :column_index, :int32, 4
192
+ optional :column_name, :string, 5
193
+ optional :column_path, :string, 6
194
194
  end
195
195
  add_message "schema.v1.MobileNodeProps" do
196
196
  optional :element_key, :string, 1
data/lib/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module JiteraProto
4
- VERSION = '0.0.10'
4
+ VERSION = '0.0.11'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jitera_proto
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.10
4
+ version: 0.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - MQuy
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-03-03 00:00:00.000000000 Z
11
+ date: 2023-03-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: grpc
@@ -54,11 +54,11 @@ files:
54
54
  - lib/payloads/report_pb.rb
55
55
  - lib/payloads/v1/backend.proto
56
56
  - lib/payloads/v1/backend_pb.rb
57
- - lib/payloads/v1/frontend.proto
58
- - lib/payloads/v1/frontend_pb.rb
59
57
  - lib/payloads/v1/service.proto
60
58
  - lib/payloads/v1/service_pb.rb
61
59
  - lib/payloads/v1/service_services_pb.rb
60
+ - lib/payloads/v1/web_app.proto
61
+ - lib/payloads/v1/web_app_pb.rb
62
62
  - lib/version.rb
63
63
  - sig/proto.rbs
64
64
  homepage: