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 +4 -4
- data/.release-please-manifest.json +1 -1
- data/CHANGELOG.md +7 -0
- data/Gemfile.lock +1 -1
- data/lib/altertable/lakehouse/version.rb +1 -1
- data/rbi/altertable/lakehouse.rbi +7 -7
- 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: 2aa80cb382f3d5785418303b107e30f5e9fbd4a25f5d9e93c96f952a7fc1eb93
|
|
4
|
+
data.tar.gz: b774968941cd9af5ce99a24053d6c4f991e0357e90a45c655a7b4717fe9fcf78
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 734bd3df2c06e8c8667ff1a82fef0e4a69ec6ae947f42b29a45bc82c935d3ffcbeea23cd2f491d887da65e347d378b6983ee897ff2cb2433c2efa134d54e15e3
|
|
7
|
+
data.tar.gz: 12e9c4abf22319aeda9201c6e96e481ce8fc736b3021c2f9204dec50d1d93d6c3c6fdfa9ef32597d3a78e0aa4fcab2a541117b8a820de8c37c1f122d5c52f30b
|
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
|
@@ -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
|
|