jitera_proto 0.0.13 → 0.0.14
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/payloads/v1/web_app.proto +2 -2
- data/lib/payloads/v1/web_app_pb.rb +2 -2
- data/lib/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7f6b083755f318b579007e050bc0cc9d6c7656b70a96d94701b1ab45f14d19ff
|
4
|
+
data.tar.gz: d5ad0e0009e7bebff3bfd6b87b650194082d4b37cccfd107de003afa8ca97b1c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c48795f455819c6f3813c7a847096d429b476f09646200b2184b38fc8b936e97deccd8dd0e330710808b83cc312504bd01390b6da5325beb89da51c18e57f670
|
7
|
+
data.tar.gz: 7b9c5cbcd7ae7965f33359384d8f0665644d0491bfa87ea8bb52ab42b21688873a04a2068a525f4e64dc7126209c24e2bd40057b424391ac6471ed397f2edbad
|
@@ -205,8 +205,8 @@ message WebNodeProps {
|
|
205
205
|
bool sortable = 2;
|
206
206
|
bool filterable = 3;
|
207
207
|
int32 column_index = 4;
|
208
|
-
repeated
|
209
|
-
repeated
|
208
|
+
repeated google.protobuf.Struct column_name = 5;
|
209
|
+
repeated google.protobuf.Struct column_path = 6;
|
210
210
|
}
|
211
211
|
}
|
212
212
|
|
@@ -189,8 +189,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
189
189
|
optional :sortable, :bool, 2
|
190
190
|
optional :filterable, :bool, 3
|
191
191
|
optional :column_index, :int32, 4
|
192
|
-
repeated :column_name, :
|
193
|
-
repeated :column_path, :
|
192
|
+
repeated :column_name, :message, 5, "google.protobuf.Struct"
|
193
|
+
repeated :column_path, :message, 6, "google.protobuf.Struct"
|
194
194
|
end
|
195
195
|
add_message "schema.v1.MobileNodeProps" do
|
196
196
|
optional :element_key, :string, 1
|
data/lib/version.rb
CHANGED