checkout_sdk 1.4.0 → 1.4.1
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/checkout_sdk/payments/processing_settings.rb +7 -1
- data/lib/checkout_sdk/payments/product.rb +7 -1
- data/lib/checkout_sdk/payments/product_sub_type.rb +13 -0
- data/lib/checkout_sdk/payments/sessions/store_payment_details_type.rb +1 -0
- data/lib/checkout_sdk/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e1972baffa08559a77eba645b790a981552144c4b5af7450936161b677e080c8
|
|
4
|
+
data.tar.gz: dfa0d1690acc596cb7108304c7704bb606fa1bd082bb99ab6ec4f8c381615de8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2d93aa8c8e91d1e51935ce338ccfecc87bb663ee9f806edc28a77d239340653b20c68389d2c9f8752f37d02f540bcac5f418bbef11538559a22d12d7d7b78227
|
|
7
|
+
data.tar.gz: 68295d7212f13138cb404df36bd8aca3b78ed0db7950d12d87a7590da8f04b8426e12c49deae821296a8826918a2da906d4962328ccf78169480c3d8973b2f68
|
|
@@ -68,6 +68,10 @@ module CheckoutSdk
|
|
|
68
68
|
# @return [SenderInformation]
|
|
69
69
|
# @!attribute purpose
|
|
70
70
|
# @return [String]
|
|
71
|
+
# @!attribute affiliate_id
|
|
72
|
+
# @return [string]
|
|
73
|
+
# @!attribute affiliate_url
|
|
74
|
+
# @return [string]
|
|
71
75
|
class ProcessingSettings
|
|
72
76
|
attr_accessor :order_id,
|
|
73
77
|
:tax_amount,
|
|
@@ -101,7 +105,9 @@ module CheckoutSdk
|
|
|
101
105
|
:shipping_info,
|
|
102
106
|
:dlocal,
|
|
103
107
|
:senderInformation,
|
|
104
|
-
:purpose
|
|
108
|
+
:purpose,
|
|
109
|
+
:affiliate_id,
|
|
110
|
+
:affiliate_url
|
|
105
111
|
end
|
|
106
112
|
end
|
|
107
113
|
end
|
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
module CheckoutSdk
|
|
4
4
|
module Payments
|
|
5
|
+
# @!attribute type
|
|
6
|
+
# @return [String]
|
|
7
|
+
# @!attribute sub_type
|
|
8
|
+
# @return [String] {ProductSubType}
|
|
5
9
|
# @!attribute name
|
|
6
10
|
# @return [String]
|
|
7
11
|
# @!attribute quantity
|
|
@@ -31,7 +35,9 @@ module CheckoutSdk
|
|
|
31
35
|
# @!attribute sku
|
|
32
36
|
# @return [String]
|
|
33
37
|
class Product
|
|
34
|
-
attr_accessor :
|
|
38
|
+
attr_accessor :type,
|
|
39
|
+
:sub_type,
|
|
40
|
+
:name,
|
|
35
41
|
:quantity,
|
|
36
42
|
:unit_price,
|
|
37
43
|
:reference,
|
data/lib/checkout_sdk/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: checkout_sdk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.4.
|
|
4
|
+
version: 1.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Checkout
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-
|
|
11
|
+
date: 2025-12-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -386,6 +386,7 @@ files:
|
|
|
386
386
|
- lib/checkout_sdk/payments/previous/source/token_source.rb
|
|
387
387
|
- lib/checkout_sdk/payments/processing_settings.rb
|
|
388
388
|
- lib/checkout_sdk/payments/product.rb
|
|
389
|
+
- lib/checkout_sdk/payments/product_sub_type.rb
|
|
389
390
|
- lib/checkout_sdk/payments/product_type.rb
|
|
390
391
|
- lib/checkout_sdk/payments/refund_order.rb
|
|
391
392
|
- lib/checkout_sdk/payments/refund_request.rb
|