jitera_proto 0.0.20 → 0.0.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/payloads/v1/backend.proto +8 -4
- data/lib/payloads/v1/backend_pb.rb +8 -4
- data/lib/payloads/v1/service.proto +2 -1
- data/lib/payloads/v1/service_services_pb.rb +2 -1
- data/lib/version.rb +1 -1
- metadata +2 -2
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 10461360b8a34ecbbad3d4158f904f807a1ea25451a1d56771146803b8350f26
         | 
| 4 | 
            +
              data.tar.gz: 43395fb5daafea5967651cc2e5d7b2251cde588c347597fa56aa283779b2f6bd
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: e9c571967af013687e2e584fe8c4e7a5c9f173abb3e9d25c526d0dcf6ac4a669b77b9c704faee51d85a896900cc1d8b833aee54d57bb6c61292efc4bd0878073
         | 
| 7 | 
            +
              data.tar.gz: 973dba8538d2de838a3c140e5c0d982324842754b19adad88e50d61c6c785cdd4bb14e281249b6876615eb63f839a06a1f9273b94783d65cd031f850f7c6bac0
         | 
| @@ -421,9 +421,13 @@ message Table { | |
| 421 421 | 
             
            				FileType file_type = 6;
         | 
| 422 422 | 
             
            				EnumType enum_type = 7;
         | 
| 423 423 | 
             
            				CounterCacheType counter_cache_type = 8;
         | 
| 424 | 
            +
            				IDType id_type = 9;
         | 
| 424 425 | 
             
            			}
         | 
| 425 426 | 
             
            		}
         | 
| 426 427 |  | 
| 428 | 
            +
            		message IDType {
         | 
| 429 | 
            +
            		}
         | 
| 430 | 
            +
             | 
| 427 431 | 
             
            		message CounterCacheType {
         | 
| 428 432 | 
             
            			string table_name = 1;
         | 
| 429 433 | 
             
            		}
         | 
| @@ -561,10 +565,10 @@ message Table { | |
| 561 565 | 
             
            			bool future = 2;
         | 
| 562 566 | 
             
            		}
         | 
| 563 567 | 
             
            		message NumericalityValidation {
         | 
| 564 | 
            -
            			 | 
| 565 | 
            -
            			 | 
| 566 | 
            -
            			 | 
| 567 | 
            -
            			 | 
| 568 | 
            +
            			float greater_than = 1;
         | 
| 569 | 
            +
            			float greater_than_or_equal_to = 2;
         | 
| 570 | 
            +
            			float less_than = 3;
         | 
| 571 | 
            +
            			float less_than_or_equal_to = 4;
         | 
| 568 572 | 
             
            		}
         | 
| 569 573 |  | 
| 570 574 | 
             
            		message FileValidation {
         | 
| @@ -331,8 +331,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do | |
| 331 331 | 
             
                    optional :file_type, :message, 6, "schema.v1.Table.Column.FileType"
         | 
| 332 332 | 
             
                    optional :enum_type, :message, 7, "schema.v1.Table.Column.EnumType"
         | 
| 333 333 | 
             
                    optional :counter_cache_type, :message, 8, "schema.v1.Table.Column.CounterCacheType"
         | 
| 334 | 
            +
                    optional :id_type, :message, 9, "schema.v1.Table.Column.IDType"
         | 
| 334 335 | 
             
                  end
         | 
| 335 336 | 
             
                end
         | 
| 337 | 
            +
                add_message "schema.v1.Table.Column.IDType" do
         | 
| 338 | 
            +
                end
         | 
| 336 339 | 
             
                add_message "schema.v1.Table.Column.CounterCacheType" do
         | 
| 337 340 | 
             
                  optional :table_name, :string, 1
         | 
| 338 341 | 
             
                end
         | 
| @@ -452,10 +455,10 @@ Google::Protobuf::DescriptorPool.generated_pool.build do | |
| 452 455 | 
             
                  optional :future, :bool, 2
         | 
| 453 456 | 
             
                end
         | 
| 454 457 | 
             
                add_message "schema.v1.Table.ColumnValidationOption.NumericalityValidation" do
         | 
| 455 | 
            -
                  optional :greater_than, : | 
| 456 | 
            -
                  optional :greater_than_or_equal_to, : | 
| 457 | 
            -
                  optional :less_than, : | 
| 458 | 
            -
                  optional :less_than_or_equal_to, : | 
| 458 | 
            +
                  optional :greater_than, :float, 1
         | 
| 459 | 
            +
                  optional :greater_than_or_equal_to, :float, 2
         | 
| 460 | 
            +
                  optional :less_than, :float, 3
         | 
| 461 | 
            +
                  optional :less_than_or_equal_to, :float, 4
         | 
| 459 462 | 
             
                end
         | 
| 460 463 | 
             
                add_message "schema.v1.Table.ColumnValidationOption.FileValidation" do
         | 
| 461 464 | 
             
                  optional :single, :bool, 1
         | 
| @@ -823,6 +826,7 @@ module Schema | |
| 823 826 | 
             
                Table = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table").msgclass
         | 
| 824 827 | 
             
                Table::Column = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column").msgclass
         | 
| 825 828 | 
             
                Table::Column::ColumnType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.ColumnType").msgclass
         | 
| 829 | 
            +
                Table::Column::IDType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.IDType").msgclass
         | 
| 826 830 | 
             
                Table::Column::CounterCacheType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.CounterCacheType").msgclass
         | 
| 827 831 | 
             
                Table::Column::StringType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.StringType").msgclass
         | 
| 828 832 | 
             
                Table::Column::StringType::Condition = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("schema.v1.Table.Column.StringType.Condition").msgclass
         | 
| @@ -9,7 +9,8 @@ service CoreService { | |
| 9 9 | 
             
            	rpc ListControllers (ListControllersRequest) returns (ListControllersResponse) {}
         | 
| 10 10 | 
             
            	rpc ListFeatures (ListFeaturesRequest) returns (ListFeaturesResponse) {}
         | 
| 11 11 | 
             
            	rpc ListAuthorizations (ListAuthorizationsRequest) returns (ListAuthorizationsResponse) {}
         | 
| 12 | 
            -
            	rpc  | 
| 12 | 
            +
            	rpc ListBeLocalizations (ListLocalizationsRequest) returns (ListLocalizationsResponse) {}
         | 
| 13 | 
            +
            	rpc ListFeLocalizations (ListLocalizationsRequest) returns (ListLocalizationsResponse) {}
         | 
| 13 14 | 
             
            	rpc GetWebApp (GetWebAppRequest) returns (GetWebAppResponse) {}
         | 
| 14 15 | 
             
            	rpc ListMigrations (ListMigrationsRequest) returns (ListMigrationsResponse) {}
         | 
| 15 16 | 
             
            	rpc GetBackend (GetBackendRequest) returns (GetBackendResponse) {}
         | 
| @@ -18,7 +18,8 @@ module Schema | |
| 18 18 | 
             
                    rpc :ListControllers, ::Schema::V1::ListControllersRequest, ::Schema::V1::ListControllersResponse
         | 
| 19 19 | 
             
                    rpc :ListFeatures, ::Schema::V1::ListFeaturesRequest, ::Schema::V1::ListFeaturesResponse
         | 
| 20 20 | 
             
                    rpc :ListAuthorizations, ::Schema::V1::ListAuthorizationsRequest, ::Schema::V1::ListAuthorizationsResponse
         | 
| 21 | 
            -
                    rpc : | 
| 21 | 
            +
                    rpc :ListBeLocalizations, ::Schema::V1::ListLocalizationsRequest, ::Schema::V1::ListLocalizationsResponse
         | 
| 22 | 
            +
                    rpc :ListFeLocalizations, ::Schema::V1::ListLocalizationsRequest, ::Schema::V1::ListLocalizationsResponse
         | 
| 22 23 | 
             
                    rpc :GetWebApp, ::Schema::V1::GetWebAppRequest, ::Schema::V1::GetWebAppResponse
         | 
| 23 24 | 
             
                    rpc :ListMigrations, ::Schema::V1::ListMigrationsRequest, ::Schema::V1::ListMigrationsResponse
         | 
| 24 25 | 
             
                    rpc :GetBackend, ::Schema::V1::GetBackendRequest, ::Schema::V1::GetBackendResponse
         | 
    
        data/lib/version.rb
    CHANGED
    
    
    
        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. | 
| 4 | 
            +
              version: 0.0.22
         | 
| 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- | 
| 11 | 
            +
            date: 2023-03-29 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: grpc
         |