altertable-lakehouse 0.4.1 → 0.4.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6a4112edc1eff1c9caeed879ce5e7331f6e55837d59e2b715e5e32947f51f237
4
- data.tar.gz: 72ae2b506a9ee60fe1a9244f976c2af4a407bc70805f4636e45dfc0505cf3bac
3
+ metadata.gz: 2aa80cb382f3d5785418303b107e30f5e9fbd4a25f5d9e93c96f952a7fc1eb93
4
+ data.tar.gz: b774968941cd9af5ce99a24053d6c4f991e0357e90a45c655a7b4717fe9fcf78
5
5
  SHA512:
6
- metadata.gz: 5db5a3aea35032b994a7f905463d084636c3b17add02dce0313d3dd9cd5a8f21ed32046e4a3cef598fc30d2e43ba2a0c46acc57688ca3b358ec2c3546edbe39a
7
- data.tar.gz: 8f22a1b33fdd3f446dd627cc31f4d702614530c3c0c1df90eac4c4fe6367fc0301c97e130b6f235e4fba3610446daff1d12d786cb9e88bee9d9514dc61039441
6
+ metadata.gz: 734bd3df2c06e8c8667ff1a82fef0e4a69ec6ae947f42b29a45bc82c935d3ffcbeea23cd2f491d887da65e347d378b6983ee897ff2cb2433c2efa134d54e15e3
7
+ data.tar.gz: 12e9c4abf22319aeda9201c6e96e481ce8fc736b3021c2f9204dec50d1d93d6c3c6fdfa9ef32597d3a78e0aa4fcab2a541117b8a820de8c37c1f122d5c52f30b
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "0.4.1"
2
+ ".": "0.4.2"
3
3
  }
data/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [0.4.2](https://github.com/altertable-ai/altertable-lakehouse-ruby/compare/altertable-lakehouse/v0.4.1...altertable-lakehouse/v0.4.2) (2026-05-27)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **rbi:** fix more RBI signatures ([#35](https://github.com/altertable-ai/altertable-lakehouse-ruby/issues/35)) ([8be797c](https://github.com/altertable-ai/altertable-lakehouse-ruby/commit/8be797c813a9295795c1aedd9bc1c1d186b1e4cc))
11
+
5
12
  ## [0.4.1](https://github.com/altertable-ai/altertable-lakehouse-ruby/compare/altertable-lakehouse/v0.4.0...altertable-lakehouse/v0.4.1) (2026-05-27)
6
13
 
7
14
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- altertable-lakehouse (0.4.1)
4
+ altertable-lakehouse (0.4.2)
5
5
  base64
6
6
 
7
7
  GEM
@@ -1,5 +1,5 @@
1
1
  module Altertable
2
2
  module Lakehouse
3
- VERSION = "0.4.1"
3
+ VERSION = "0.4.2"
4
4
  end
5
5
  end
@@ -498,7 +498,7 @@ module Altertable
498
498
  end
499
499
 
500
500
  class AutocompleteResponse < Request
501
- sig { returns(T::Array[AutocompleteSuggestion]) }
501
+ sig { returns(T::Array[::Altertable::Lakehouse::Models::AutocompleteSuggestion]) }
502
502
  def suggestions; end
503
503
 
504
504
  sig { returns(String) }
@@ -509,7 +509,7 @@ module Altertable
509
509
 
510
510
  sig do
511
511
  params(
512
- suggestions: T::Array[AutocompleteSuggestion],
512
+ suggestions: T::Array[::Altertable::Lakehouse::Models::AutocompleteSuggestion],
513
513
  statement: String,
514
514
  connections_errors: T::Hash[T.untyped, T.untyped]
515
515
  ).void
@@ -733,7 +733,7 @@ module Altertable
733
733
 
734
734
  private
735
735
 
736
- sig { params(resp: T.untyped).returns(Response) }
736
+ sig { params(resp: T.untyped).returns(::Altertable::Lakehouse::Adapters::Response) }
737
737
  def wrap_response(resp); end
738
738
  end
739
739
 
@@ -770,13 +770,13 @@ module Altertable
770
770
  params: T::Hash[T.any(Symbol, String), T.untyped],
771
771
  headers: T::Hash[String, String],
772
772
  block: T.nilable(T.proc.params(arg0: T.untyped, arg1: T.untyped).void)
773
- ).returns(Response)
773
+ ).returns(::Altertable::Lakehouse::Adapters::Response)
774
774
  end
775
775
  def delete(path, body: nil, params: {}, headers: {}, &block); end
776
776
 
777
777
  private
778
778
 
779
- sig { params(resp: T.untyped).returns(Response) }
779
+ sig { params(resp: T.untyped).returns(::Altertable::Lakehouse::Adapters::Response) }
780
780
  def wrap_response(resp); end
781
781
  end
782
782
 
@@ -791,7 +791,7 @@ module Altertable
791
791
  params: T::Hash[T.any(Symbol, String), T.untyped],
792
792
  headers: T::Hash[String, String],
793
793
  block: T.nilable(T.proc.params(arg0: T.untyped, arg1: T.untyped).void)
794
- ).returns(Response)
794
+ ).returns(::Altertable::Lakehouse::Adapters::Response)
795
795
  end
796
796
  def get(path, body: nil, params: {}, headers: {}, &block); end
797
797
 
@@ -802,7 +802,7 @@ module Altertable
802
802
  params: T::Hash[T.any(Symbol, String), T.untyped],
803
803
  headers: T::Hash[String, String],
804
804
  block: T.nilable(T.proc.params(arg0: T.untyped, arg1: T.untyped).void)
805
- ).returns(Response)
805
+ ).returns(::Altertable::Lakehouse::Adapters::Response)
806
806
  end
807
807
  def post(path, body: nil, params: {}, headers: {}, &block); end
808
808
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: altertable-lakehouse
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Altertable AI