checkout-intents 0.2.1 → 0.2.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: 7d8d5a1ddee326274b3bf70f1984a643b09a03d67b92f5a2ae000ca6a82e538d
4
- data.tar.gz: 85113215243021df5e95cf03ec0a7b77c471c653ff88e5b2bb4d300b980554de
3
+ metadata.gz: 1981b92e8af474b2da3cac0359327bbff76f910374d079b4a84e23c3104d6874
4
+ data.tar.gz: 6fe1a230fcdd16e00285122ecece2a20c8b6eafd72ddd307a90db1ebd058b848
5
5
  SHA512:
6
- metadata.gz: 7dc143a24721befccedb01f1c4449d02c23966b325bfbac050dda2fe238a1cf655472ba98216024d8e6bac18c78493f68e4145aef435675a46fbe7ee665c8914
7
- data.tar.gz: a9f2fdfc3c4e44176ad6fa2fe41050c3919693ca31a0d75d90f3adccc8e49e3e5e8554ecde12295b3c91907d664427a5806f693dd14a5427ebd915b1daeb6f52
6
+ metadata.gz: 8f4e7cb546a44bb8c431dc23844bc72c9a4afd6673f0bf6f80240b726a3388c8e31033f6c162725ecdd1f561813c3e89b2c090a9b9250e965ef39c9e66d29ba5
7
+ data.tar.gz: 85139d75fda099b9504f005b38e7388e66c5b66482684359ec911acb0c64a72e33dfc37ba3960718e498733b50eec0fd421ab366d3165788f6a59ea6bbc5bf65
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2.2 (2026-01-15)
4
+
5
+ Full Changelog: [v0.2.1...v0.2.2](https://github.com/rye-com/checkout-intents-ruby/compare/v0.2.1...v0.2.2)
6
+
7
+ ### Bug Fixes
8
+
9
+ * **api:** correctly type quantity as integer ([a85ecbf](https://github.com/rye-com/checkout-intents-ruby/commit/a85ecbf160c0cc4b24dc62357aa5bf47e7f7932a))
10
+
3
11
  ## 0.2.1 (2026-01-13)
4
12
 
5
13
  Full Changelog: [v0.2.0...v0.2.1](https://github.com/rye-com/checkout-intents-ruby/compare/v0.2.0...v0.2.1)
data/README.md CHANGED
@@ -17,7 +17,7 @@ To use this gem, install via Bundler by adding the following to your application
17
17
  <!-- x-release-please-start-version -->
18
18
 
19
19
  ```ruby
20
- gem "checkout-intents", "~> 0.2.1"
20
+ gem "checkout-intents", "~> 0.2.2"
21
21
  ```
22
22
 
23
23
  <!-- x-release-please-end -->
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CheckoutIntents
4
- VERSION = "0.2.1"
4
+ VERSION = "0.2.2"
5
5
  end
@@ -26,7 +26,7 @@ module CheckoutIntents
26
26
  sig { returns(String) }
27
27
  attr_accessor :product_url
28
28
 
29
- sig { returns(Float) }
29
+ sig { returns(Integer) }
30
30
  attr_accessor :quantity
31
31
 
32
32
  sig do
@@ -18,7 +18,7 @@ module CheckoutIntents
18
18
  sig { returns(String) }
19
19
  attr_accessor :product_url
20
20
 
21
- sig { returns(Float) }
21
+ sig { returns(Integer) }
22
22
  attr_accessor :quantity
23
23
 
24
24
  # Optional buyer information, used to pre-fill the checkout form with the buyer's
@@ -23,7 +23,7 @@ module CheckoutIntents
23
23
  sig { returns(String) }
24
24
  attr_accessor :product_url
25
25
 
26
- sig { returns(Float) }
26
+ sig { returns(Integer) }
27
27
  attr_accessor :quantity
28
28
 
29
29
  sig do
@@ -34,7 +34,7 @@ module CheckoutIntents
34
34
  sig { returns(String) }
35
35
  attr_accessor :product_url
36
36
 
37
- sig { returns(Float) }
37
+ sig { returns(Integer) }
38
38
  attr_accessor :quantity
39
39
 
40
40
  sig do
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: checkout-intents
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Checkout Intents
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-01-13 00:00:00.000000000 Z
11
+ date: 2026-01-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cgi