checkout_sdk 1.0.1 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (32) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +5 -1
  3. data/lib/checkout_sdk/accounts/accounts.rb +6 -0
  4. data/lib/checkout_sdk/accounts/accounts_client.rb +34 -1
  5. data/lib/checkout_sdk/accounts/instrument_details.rb +9 -0
  6. data/lib/checkout_sdk/accounts/instrument_details_faster_payments.rb +14 -0
  7. data/lib/checkout_sdk/accounts/instrument_details_sepa.rb +14 -0
  8. data/lib/checkout_sdk/accounts/payment_instrument_request.rb +33 -0
  9. data/lib/checkout_sdk/accounts/payment_instruments_query.rb +11 -0
  10. data/lib/checkout_sdk/accounts/update_payment_instrument_request.rb +14 -0
  11. data/lib/checkout_sdk/api_client.rb +2 -2
  12. data/lib/checkout_sdk/apm/previous/sepa/sepa_client.rb +4 -3
  13. data/lib/checkout_sdk/balances/balances_client.rb +1 -1
  14. data/lib/checkout_sdk/common/account_holder.rb +6 -0
  15. data/lib/checkout_sdk/common/payment_source_type.rb +3 -0
  16. data/lib/checkout_sdk/oauth_scopes.rb +2 -2
  17. data/lib/checkout_sdk/payments/payment_recipient.rb +4 -0
  18. data/lib/checkout_sdk/payments/payment_request.rb +4 -4
  19. data/lib/checkout_sdk/payments/payments.rb +5 -0
  20. data/lib/checkout_sdk/payments/processing_settings.rb +10 -1
  21. data/lib/checkout_sdk/payments/risk_request.rb +4 -1
  22. data/lib/checkout_sdk/payments/sender/individual_sender.rb +6 -3
  23. data/lib/checkout_sdk/payments/sender/sender_information.rb +41 -0
  24. data/lib/checkout_sdk/payments/source/apm/cv_connect_source.rb +15 -0
  25. data/lib/checkout_sdk/payments/source/apm/illicado_source.rb +15 -0
  26. data/lib/checkout_sdk/payments/source/apm/trustly_source.rb +15 -0
  27. data/lib/checkout_sdk/payments/source/currency_account_source.rb +0 -4
  28. data/lib/checkout_sdk/payments/source/entity_source.rb +11 -0
  29. data/lib/checkout_sdk/payments/source/payout_source.rb +4 -1
  30. data/lib/checkout_sdk/payments/source/payout_source_type.rb +1 -0
  31. data/lib/checkout_sdk/version.rb +1 -1
  32. metadata +21 -10
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4dbf32713b437c8a46d0d53b7aa9677e086bacba9a420c51469f7a11e4e0db03
4
- data.tar.gz: f78e849f1a5ec86fc16fb09934d5151aa03bd43dd34b7a8d1da96ca18311154f
3
+ metadata.gz: 86b3e418596eba84f9d21cc8149e4030dd1fbae085ca44db519ab6ad11ce4121
4
+ data.tar.gz: d9d48a22ac629a07434d15da2299a8574d7e1a1571baaacb250ca14b3fb1bc75
5
5
  SHA512:
6
- metadata.gz: f163f3cdd0d48d1198c6f914ccc0fc20850f357e79ca5355dc8ddc8931d5cbb255196d822c20c785a2740f53e9b5fbcd71273cf9b1f4e26c526fd937bef2b5f4
7
- data.tar.gz: 8cee0c1831036c54e8143e33db10495a443ec15b2d564ac246c7c7a81d7f0db2534d77fe151f062b5a1dc717cf185895994e595cb0323475f11462730946c39f
6
+ metadata.gz: 8cf7820ae7f37afa4630e1bebd9671b7d9d8eecd1cb3c736881e6bbd264cb4fafb043288fae10c57c66b544279b6b420510659c0414be1706d1c2c7aa283b52b
7
+ data.tar.gz: 1123a2c14c3ce44b66ef3943b11ba704de9fccf71971115899eff68643d81c89eda6efa1b2265ae8cf67110e502e7796d96ff115e80657a85ec895a739f70a55
data/.rubocop.yml CHANGED
@@ -7,6 +7,9 @@ Metrics/AbcSize:
7
7
  Lint/MissingSuper:
8
8
  Enabled: false
9
9
 
10
+ Lint/EmptyClass:
11
+ Enabled: false
12
+
10
13
  Layout/LineLength:
11
14
  Max: 120
12
15
 
@@ -37,4 +40,5 @@ Style/OpenStructUse:
37
40
  Naming/MethodName:
38
41
  Exclude:
39
42
  - "**/google_pay_token_data*"
40
- - "**/sofort_source*"
43
+ - "**/sofort_source*"
44
+ - "**/processing_settings*"
@@ -28,3 +28,9 @@ require 'checkout_sdk/accounts/schedule_request'
28
28
  require 'checkout_sdk/accounts/schedule_frequency_weekly'
29
29
  require 'checkout_sdk/accounts/schedule_frequency_daily'
30
30
  require 'checkout_sdk/accounts/schedule_frequency_monthly'
31
+ require 'checkout_sdk/accounts/instrument_details'
32
+ require 'checkout_sdk/accounts/instrument_details_faster_payments'
33
+ require 'checkout_sdk/accounts/instrument_details_sepa'
34
+ require 'checkout_sdk/accounts/payment_instrument_request'
35
+ require 'checkout_sdk/accounts/payment_instruments_query'
36
+ require 'checkout_sdk/accounts/update_payment_instrument_request'
@@ -10,7 +10,8 @@ module CheckoutSdk
10
10
  INSTRUMENT = 'instruments'
11
11
  PAYOUT_SCHEDULE = 'payout-schedules'
12
12
  FILES = 'files'
13
- private_constant :ACCOUNTS, :ENTITIES, :INSTRUMENT, :PAYOUT_SCHEDULE, :FILES
13
+ PAYMENT_INSTRUMENTS = 'payment-instruments'
14
+ private_constant :ACCOUNTS, :ENTITIES, :INSTRUMENT, :PAYOUT_SCHEDULE, :FILES, :PAYMENT_INSTRUMENTS
14
15
 
15
16
  # @param [ApiClient] api_client
16
17
  # @param [ApiClient] files_client
@@ -36,6 +37,7 @@ module CheckoutSdk
36
37
  api_client.invoke_put(build_path(ACCOUNTS, ENTITIES, entity_id), sdk_authorization, entity_request)
37
38
  end
38
39
 
40
+ # @deprecated Please use {#add_payment_instrument} instead
39
41
  # @param [String] entity_id
40
42
  # @param [PaymentInstrument] payment_instrument
41
43
  def create_payment_instrument(entity_id, payment_instrument)
@@ -43,6 +45,37 @@ module CheckoutSdk
43
45
  payment_instrument)
44
46
  end
45
47
 
48
+ # @param [String] entity_id
49
+ # @param [PaymentInstrumentRequest] payment_instrument
50
+ def add_payment_instrument(entity_id, payment_instrument)
51
+ api_client.invoke_post(build_path(ACCOUNTS, ENTITIES, entity_id, PAYMENT_INSTRUMENTS), sdk_authorization,
52
+ payment_instrument)
53
+ end
54
+
55
+ # @param [String] entity_id
56
+ # @param [PaymentInstrumentsQuery,nil] payment_instruments_query
57
+ def query_payment_instruments(entity_id, payment_instruments_query = nil)
58
+ api_client.invoke_get(build_path(ACCOUNTS, ENTITIES, entity_id, PAYMENT_INSTRUMENTS),
59
+ sdk_authorization,
60
+ payment_instruments_query)
61
+ end
62
+
63
+ # @param [String] entity_id
64
+ # @param [String] payment_instrument_id
65
+ def retrieve_payment_instrument_details(entity_id, payment_instrument_id)
66
+ api_client.invoke_get(build_path(ACCOUNTS, ENTITIES, entity_id, PAYMENT_INSTRUMENTS, payment_instrument_id),
67
+ sdk_authorization)
68
+ end
69
+
70
+ # @param [String] entity_id
71
+ # @param [String] instrument_id
72
+ # @param [UpdatePaymentInstrumentRequest] update_payment_instrument
73
+ def update_payment_instrument(entity_id, instrument_id, update_payment_instrument)
74
+ api_client.invoke_patch(build_path(ACCOUNTS, ENTITIES, entity_id, PAYMENT_INSTRUMENTS, instrument_id),
75
+ sdk_authorization,
76
+ update_payment_instrument)
77
+ end
78
+
46
79
  # @param [String] entity_id
47
80
  # @param [String] currency {CheckoutSdk::Common::Currency}
48
81
  # @param [UpdateSchedule] update_schedule
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module CheckoutSdk
4
+ module Accounts
5
+ # @abstract
6
+ class InstrumentDetails
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ module CheckoutSdk
4
+ module Accounts
5
+ # @!attribute account_number
6
+ # @return [String]
7
+ # @!attribute bank_code
8
+ # @return [String]
9
+ class InstrumentDetailsFasterPayments < InstrumentDetails
10
+ attr_accessor :account_number,
11
+ :bank_code
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ module CheckoutSdk
4
+ module Accounts
5
+ # @!attribute iban
6
+ # @return [String]
7
+ # @!attribute swift_bic
8
+ # @return [String]
9
+ class InstrumentDetailsSepa < InstrumentDetails
10
+ attr_accessor :iban,
11
+ :swift_bic
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,33 @@
1
+ # frozen_string_literal: true
2
+
3
+ module CheckoutSdk
4
+ module Accounts
5
+ # @!attribute label
6
+ # @return [String]
7
+ # @!attribute type
8
+ # @return [String] {CheckoutSdk::Common::InstrumentType}
9
+ # @!attribute currency
10
+ # @return [String] {CheckoutSdk::Common::Currency}
11
+ # @!attribute country
12
+ # @return [String] {CheckoutSdk::Common::Country}
13
+ # @!attribute default
14
+ # @return [TrueClass, FalseClass]
15
+ # @!attribute document
16
+ # @return [InstrumentDocument]
17
+ # @!attribute instrument_details
18
+ # @return [InstrumentDetails]
19
+ class PaymentInstrumentRequest
20
+ attr_accessor :label,
21
+ :type,
22
+ :currency,
23
+ :country,
24
+ :default,
25
+ :document,
26
+ :instrument_details
27
+
28
+ def initialize
29
+ @type = CheckoutSdk::Common::InstrumentType::BANK_ACCOUNT
30
+ end
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ module CheckoutSdk
4
+ module Accounts
5
+ # @!attribute status
6
+ # @return [String]
7
+ class PaymentInstrumentsQuery
8
+ attr_accessor :status
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ module CheckoutSdk
4
+ module Accounts
5
+ # @!attribute label
6
+ # @return [String]
7
+ # @!attribute default
8
+ # @return [TrueClass, FalseClass]
9
+ class UpdatePaymentInstrumentRequest
10
+ attr_accessor :label,
11
+ :default
12
+ end
13
+ end
14
+ end
@@ -50,7 +50,7 @@ module CheckoutSdk
50
50
  def submit_file(path,
51
51
  authorization,
52
52
  request)
53
- upload_file(path, authorization, request)
53
+ upload(path, authorization, request)
54
54
  end
55
55
 
56
56
  private
@@ -107,7 +107,7 @@ module CheckoutSdk
107
107
  }
108
108
  end
109
109
 
110
- def upload_file(path, authorization, file_request)
110
+ def upload(path, authorization, file_request)
111
111
  headers = get_default_headers authorization
112
112
 
113
113
  file = File.open(file_request.file)
@@ -4,10 +4,11 @@ module CheckoutSdk
4
4
  module Previous
5
5
  module Apm
6
6
  class SepaClient < Client
7
+ APMS = 'apms'
7
8
  SEPA_MANDATES = 'sepa/mandates'
8
9
  PPRO = 'ppro'
9
10
  CANCEL = 'cancel'
10
- private_constant :SEPA_MANDATES, :PPRO, :CANCEL
11
+ private_constant :APMS, :SEPA_MANDATES, :PPRO, :CANCEL
11
12
 
12
13
  # @param [ApiClient] api_client
13
14
  # @param [CheckoutConfiguration] configuration
@@ -27,12 +28,12 @@ module CheckoutSdk
27
28
 
28
29
  # @param mandate_id [String]
29
30
  def get_mandate_via_ppro(mandate_id)
30
- api_client.invoke_get(build_path(PPRO, SEPA_MANDATES, mandate_id), sdk_authorization)
31
+ api_client.invoke_get(build_path(APMS, PPRO, SEPA_MANDATES, mandate_id), sdk_authorization)
31
32
  end
32
33
 
33
34
  # @param mandate_id [String]
34
35
  def cancel_mandate_via_ppro(mandate_id)
35
- api_client.invoke_post(build_path(PPRO, SEPA_MANDATES, mandate_id, CANCEL), sdk_authorization)
36
+ api_client.invoke_post(build_path(APMS, PPRO, SEPA_MANDATES, mandate_id, CANCEL), sdk_authorization)
36
37
  end
37
38
  end
38
39
  end
@@ -9,7 +9,7 @@ module CheckoutSdk
9
9
  # @param [ApiClient] api_client
10
10
  # @param [CheckoutConfiguration] configuration
11
11
  def initialize(api_client, configuration)
12
- super(api_client, configuration, CheckoutSdk::AuthorizationType::OAUTH)
12
+ super(api_client, configuration, CheckoutSdk::AuthorizationType::SECRET_KEY_OR_OAUTH)
13
13
  end
14
14
 
15
15
  # @param [String] entity_id
@@ -4,8 +4,12 @@ module CheckoutSdk
4
4
  module Common
5
5
  # @!attribute type
6
6
  # @return [String] {AccountHolderType}
7
+ # @!attribute title
8
+ # @return [String]
7
9
  # @!attribute first_name
8
10
  # @return [String]
11
+ # @!attribute middle_name
12
+ # @return [String]
9
13
  # @!attribute last_name
10
14
  # @return [String]
11
15
  # @!attribute company_name
@@ -30,7 +34,9 @@ module CheckoutSdk
30
34
  # @return [String]
31
35
  class AccountHolder
32
36
  attr_accessor :type,
37
+ :title,
33
38
  :first_name,
39
+ :middle_name,
34
40
  :last_name,
35
41
  :company_name,
36
42
  :tax_id,
@@ -48,6 +48,9 @@ module CheckoutSdk
48
48
  POSTFINANCE = 'postfinance'
49
49
  STCPAY = 'stcpay'
50
50
  ALMA = 'alma'
51
+ CV_CONNECT = 'cvconnect'
52
+ TRUSTLY = 'trustly'
53
+ ILLICADO = 'illicado'
51
54
  end
52
55
  end
53
56
  end
@@ -38,8 +38,8 @@ module CheckoutSdk
38
38
  MIDDLEWARE = 'middleware'
39
39
  MIDDLEWARE_MERCHANTS_SECRET = 'middleware:merchants-secret'
40
40
  MIDDLEWARE_MERCHANTS_PUBLIC = 'middleware:merchants-public'
41
- REPORTING = 'reporting'
42
- REPORTING_VIEW = 'reporting:view'
41
+ REPORTS = 'reports'
42
+ REPORTS_VIEW = 'reports:view'
43
43
  CARD_METADATA = 'vault:card-metadata'
44
44
  end
45
45
  end
@@ -6,7 +6,10 @@ module CheckoutSdk
6
6
  # @return [String]
7
7
  # @!attribute account_number
8
8
  # @return [String]
9
+ # @!attribute address
10
+ # @return [CheckoutSdk::Common::Address]
9
11
  # @!attribute zip
12
+ # @deprecated Please use {#CheckoutSdk::Common::Address.zip} instead
10
13
  # @return [String]
11
14
  # @!attribute first_name
12
15
  # @return [String]
@@ -17,6 +20,7 @@ module CheckoutSdk
17
20
  class PaymentRecipient
18
21
  attr_accessor :dob,
19
22
  :account_number,
23
+ :address,
20
24
  :zip,
21
25
  :first_name,
22
26
  :last_name,
@@ -53,10 +53,10 @@ module CheckoutSdk
53
53
  # @return [Array(CheckoutSdk::Common::AmountAllocations)]
54
54
  # @!attribute processing
55
55
  # @return [ProcessingSettings]
56
- # @!attribute metadata
57
- # @return [Hash{String => Object}]
58
56
  # @!attribute items
59
57
  # @return [Array(Product)]
58
+ # @!attribute metadata
59
+ # @return [Hash{String => Object}]
60
60
  class PaymentRequest
61
61
  attr_accessor :source,
62
62
  :amount,
@@ -83,8 +83,8 @@ module CheckoutSdk
83
83
  :marketplace,
84
84
  :amount_allocations,
85
85
  :processing,
86
- :metadata,
87
- :items
86
+ :items,
87
+ :metadata
88
88
  end
89
89
  end
90
90
  end
@@ -50,6 +50,7 @@ require 'checkout_sdk/payments/source/token_source'
50
50
  require 'checkout_sdk/payments/source/provider_token_source'
51
51
  require 'checkout_sdk/payments/source/bank_account_source'
52
52
  require 'checkout_sdk/payments/source/customer_source'
53
+ require 'checkout_sdk/payments/source/entity_source'
53
54
  require 'checkout_sdk/payments/source/payout_source_type'
54
55
  require 'checkout_sdk/payments/source/currency_account_source'
55
56
  require 'checkout_sdk/payments/source/id_source'
@@ -76,6 +77,9 @@ require 'checkout_sdk/payments/source/apm/alma_source'
76
77
  require 'checkout_sdk/payments/source/apm/fawry_product'
77
78
  require 'checkout_sdk/payments/source/apm/fawry_source'
78
79
  require 'checkout_sdk/payments/source/apm/klarna_source'
80
+ require 'checkout_sdk/payments/source/apm/cv_connect_source'
81
+ require 'checkout_sdk/payments/source/apm/trustly_source'
82
+ require 'checkout_sdk/payments/source/apm/illicado_source'
79
83
 
80
84
  # Sender
81
85
  require 'checkout_sdk/payments/sender/sender'
@@ -86,6 +90,7 @@ require 'checkout_sdk/payments/sender/individual_sender'
86
90
  require 'checkout_sdk/payments/sender/corporate_sender'
87
91
  require 'checkout_sdk/payments/sender/instrument_sender'
88
92
  require 'checkout_sdk/payments/sender/ticket'
93
+ require 'checkout_sdk/payments/sender/sender_information'
89
94
 
90
95
  # Destination
91
96
  require 'checkout_sdk/payments/destination/destination'
@@ -54,12 +54,18 @@ module CheckoutSdk
54
54
  # @return [String] {CheckoutSdk::Common::Country}
55
55
  # @!attribute custom_payment_method_ids
56
56
  # @return [Array(String)]
57
+ # @!attribute merchant_callback_url
58
+ # @return [String]
57
59
  # @!attribute shipping_delay
58
60
  # @return [Integer]
59
61
  # @!attribute shipping_info
60
62
  # @return [Array(CheckoutSdk::Common::ShippingInfo)]
61
63
  # @!attribute dlocal
62
64
  # @return [DLocalProcessingSettings]
65
+ # @!attribute senderInformation
66
+ # @return [SenderInformation]
67
+ # @!attribute purpose
68
+ # @return [String]
63
69
  class ProcessingSettings
64
70
  attr_accessor :order_id,
65
71
  :tax_amount,
@@ -87,9 +93,12 @@ module CheckoutSdk
87
93
  :otp_value,
88
94
  :purchase_country,
89
95
  :custom_payment_method_ids,
96
+ :merchant_callback_url,
90
97
  :shipping_delay,
91
98
  :shipping_info,
92
- :dlocal
99
+ :dlocal,
100
+ :senderInformation,
101
+ :purpose
93
102
  end
94
103
  end
95
104
  end
@@ -4,8 +4,11 @@ module CheckoutSdk
4
4
  module Payments
5
5
  # @!attribute enabled
6
6
  # @return [TrueClass, FalseClass]
7
+ # @!attribute device_session_id
8
+ # @return [String]
7
9
  class RiskRequest
8
- attr_accessor :enabled
10
+ attr_accessor :enabled,
11
+ :device_session_id
9
12
  end
10
13
  end
11
14
  end
@@ -4,14 +4,16 @@ module CheckoutSdk
4
4
  module Payments
5
5
  # @!attribute first_name
6
6
  # @return [String]
7
+ # @!attribute middle_name
8
+ # @return [String]
7
9
  # @!attribute last_name
8
10
  # @return [String]
11
+ # @!attribute dob
12
+ # @return [String]
9
13
  # @!attribute address
10
14
  # @return [CheckoutSdk::Common::Address]
11
15
  # @!attribute identification
12
16
  # @return [CheckoutSdk::Common::AccountHolderIdentification]
13
- # @!attribute middle_name
14
- # @return [String]
15
17
  # @!attribute reference_type
16
18
  # @return [String]
17
19
  # @!attribute date_of_birth
@@ -24,10 +26,11 @@ module CheckoutSdk
24
26
  # @return [String] {CheckoutSdk::Common::Country}
25
27
  class IndividualSender < Sender
26
28
  attr_accessor :first_name,
29
+ :middle_name,
27
30
  :last_name,
31
+ :dob,
28
32
  :address,
29
33
  :identification,
30
- :middle_name,
31
34
  :reference_type,
32
35
  :date_of_birth,
33
36
  :source_of_funds,
@@ -0,0 +1,41 @@
1
+ # frozen_string_literal: true
2
+
3
+ module CheckoutSdk
4
+ module Payments
5
+ # @!attribute reference
6
+ # @return [String]
7
+ # @!attribute first_name
8
+ # @return [String]
9
+ # @!attribute last_name
10
+ # @return [String]
11
+ # @!attribute dob
12
+ # @return [String]
13
+ # @!attribute address
14
+ # @return [String]
15
+ # @!attribute city
16
+ # @return [String]
17
+ # @!attribute state
18
+ # @return [String]
19
+ # @!attribute country
20
+ # @return [String]
21
+ # @!attribute postal_code
22
+ # @return [String]
23
+ # @!attribute source_of_funds
24
+ # @return [String]
25
+ # @!attribute purpose
26
+ # # @return [String]
27
+ class SenderInformation
28
+ attr_accessor :reference,
29
+ :first_name,
30
+ :last_name,
31
+ :dob,
32
+ :address,
33
+ :city,
34
+ :state,
35
+ :country,
36
+ :postal_code,
37
+ :source_of_funds,
38
+ :purpose
39
+ end
40
+ end
41
+ end
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ module CheckoutSdk
4
+ module Payments
5
+ # @!attribute billing_address
6
+ # @return [CheckoutSdk::Common::Address]
7
+ class CvConnectSource < PaymentSource
8
+ attr_accessor :billing_address
9
+
10
+ def initialize
11
+ super CheckoutSdk::Common::PaymentSourceType::CV_CONNECT
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ module CheckoutSdk
4
+ module Payments
5
+ # @!attribute billing_address
6
+ # @return [CheckoutSdk::Common::Address]
7
+ class IllicadoSource < PaymentSource
8
+ attr_accessor :billing_address
9
+
10
+ def initialize
11
+ super CheckoutSdk::Common::PaymentSourceType::ILLICADO
12
+ end
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ module CheckoutSdk
4
+ module Payments
5
+ # @!attribute billing_address
6
+ # @return [CheckoutSdk::Common::Address]
7
+ class TrustlySource < PaymentSource
8
+ attr_accessor :billing_address
9
+
10
+ def initialize
11
+ super CheckoutSdk::Common::PaymentSourceType::TRUSTLY
12
+ end
13
+ end
14
+ end
15
+ end
@@ -2,11 +2,7 @@
2
2
 
3
3
  module CheckoutSdk
4
4
  module Payments
5
- # @!attribute id
6
- # @return [String]
7
5
  class CurrencyAccountSource < PayoutSource
8
- attr_accessor :id
9
-
10
6
  def initialize
11
7
  super PayoutSourceType::CURRENCY_ACCOUNT
12
8
  end
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ module CheckoutSdk
4
+ module Payments
5
+ class EntitySource < PayoutSource
6
+ def initialize
7
+ super PayoutSourceType::ENTITY
8
+ end
9
+ end
10
+ end
11
+ end
@@ -4,11 +4,14 @@ module CheckoutSdk
4
4
  module Payments
5
5
  # @!attribute type
6
6
  # @return [String] {PayoutSourceType}
7
+ # @!attribute id
8
+ # @return [String]
7
9
  # @!attribute amount
8
10
  # @return [String]
9
11
  class PayoutSource
10
12
  attr_reader :type
11
- attr_accessor :amount
13
+ attr_accessor :id,
14
+ :amount
12
15
 
13
16
  protected
14
17
 
@@ -4,6 +4,7 @@ module CheckoutSdk
4
4
  module Payments
5
5
  module PayoutSourceType
6
6
  CURRENCY_ACCOUNT = 'currency_account'
7
+ ENTITY = 'entity'
7
8
  end
8
9
  end
9
10
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CheckoutSdk
4
- VERSION = '1.0.1'
4
+ VERSION = '1.0.3'
5
5
  end
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.0.1
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Checkout
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-12-28 00:00:00.000000000 Z
11
+ date: 2023-02-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -58,42 +58,42 @@ dependencies:
58
58
  requirements:
59
59
  - - ">="
60
60
  - !ruby/object:Gem::Version
61
- version: 2.0.0
61
+ version: 1.10.0
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - ">="
67
67
  - !ruby/object:Gem::Version
68
- version: 2.0.0
68
+ version: 1.10.0
69
69
  - !ruby/object:Gem::Dependency
70
- name: faraday-multipart
70
+ name: faraday-follow_redirects
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: 1.0.4
75
+ version: 0.3.0
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: 1.0.4
82
+ version: 0.3.0
83
83
  - !ruby/object:Gem::Dependency
84
- name: faraday-follow_redirects
84
+ name: faraday-multipart
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
87
  - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: 0.3.0
89
+ version: 1.0.4
90
90
  type: :runtime
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: 0.3.0
96
+ version: 1.0.4
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: mime-types
99
99
  requirement: !ruby/object:Gem::Requirement
@@ -142,9 +142,14 @@ files:
142
142
  - lib/checkout_sdk/accounts/file_request.rb
143
143
  - lib/checkout_sdk/accounts/identification.rb
144
144
  - lib/checkout_sdk/accounts/individual.rb
145
+ - lib/checkout_sdk/accounts/instrument_details.rb
146
+ - lib/checkout_sdk/accounts/instrument_details_faster_payments.rb
147
+ - lib/checkout_sdk/accounts/instrument_details_sepa.rb
145
148
  - lib/checkout_sdk/accounts/instrument_document.rb
146
149
  - lib/checkout_sdk/accounts/onboard_entity.rb
147
150
  - lib/checkout_sdk/accounts/payment_instrument.rb
151
+ - lib/checkout_sdk/accounts/payment_instrument_request.rb
152
+ - lib/checkout_sdk/accounts/payment_instruments_query.rb
148
153
  - lib/checkout_sdk/accounts/phone.rb
149
154
  - lib/checkout_sdk/accounts/place_of_birth.rb
150
155
  - lib/checkout_sdk/accounts/profile.rb
@@ -154,6 +159,7 @@ files:
154
159
  - lib/checkout_sdk/accounts/schedule_frequency_type.rb
155
160
  - lib/checkout_sdk/accounts/schedule_frequency_weekly.rb
156
161
  - lib/checkout_sdk/accounts/schedule_request.rb
162
+ - lib/checkout_sdk/accounts/update_payment_instrument_request.rb
157
163
  - lib/checkout_sdk/accounts/update_schedule.rb
158
164
  - lib/checkout_sdk/api_client.rb
159
165
  - lib/checkout_sdk/apm/apm.rb
@@ -333,6 +339,7 @@ files:
333
339
  - lib/checkout_sdk/payments/sender/individual_sender.rb
334
340
  - lib/checkout_sdk/payments/sender/instrument_sender.rb
335
341
  - lib/checkout_sdk/payments/sender/sender.rb
342
+ - lib/checkout_sdk/payments/sender/sender_information.rb
336
343
  - lib/checkout_sdk/payments/sender/sender_type.rb
337
344
  - lib/checkout_sdk/payments/sender/source_of_funds.rb
338
345
  - lib/checkout_sdk/payments/sender/ticket.rb
@@ -343,11 +350,13 @@ files:
343
350
  - lib/checkout_sdk/payments/source/apm/alma_source.rb
344
351
  - lib/checkout_sdk/payments/source/apm/bancontact_source.rb
345
352
  - lib/checkout_sdk/payments/source/apm/benefit_source.rb
353
+ - lib/checkout_sdk/payments/source/apm/cv_connect_source.rb
346
354
  - lib/checkout_sdk/payments/source/apm/eps_source.rb
347
355
  - lib/checkout_sdk/payments/source/apm/fawry_product.rb
348
356
  - lib/checkout_sdk/payments/source/apm/fawry_source.rb
349
357
  - lib/checkout_sdk/payments/source/apm/giropay_source.rb
350
358
  - lib/checkout_sdk/payments/source/apm/ideal_source.rb
359
+ - lib/checkout_sdk/payments/source/apm/illicado_source.rb
351
360
  - lib/checkout_sdk/payments/source/apm/klarna_source.rb
352
361
  - lib/checkout_sdk/payments/source/apm/knet_source.rb
353
362
  - lib/checkout_sdk/payments/source/apm/mbway_source.rb
@@ -359,11 +368,13 @@ files:
359
368
  - lib/checkout_sdk/payments/source/apm/sofort_source.rb
360
369
  - lib/checkout_sdk/payments/source/apm/stcpay_source.rb
361
370
  - lib/checkout_sdk/payments/source/apm/tamara_source.rb
371
+ - lib/checkout_sdk/payments/source/apm/trustly_source.rb
362
372
  - lib/checkout_sdk/payments/source/apm/we_chat_pay_source.rb
363
373
  - lib/checkout_sdk/payments/source/bank_account_source.rb
364
374
  - lib/checkout_sdk/payments/source/card_source.rb
365
375
  - lib/checkout_sdk/payments/source/currency_account_source.rb
366
376
  - lib/checkout_sdk/payments/source/customer_source.rb
377
+ - lib/checkout_sdk/payments/source/entity_source.rb
367
378
  - lib/checkout_sdk/payments/source/id_source.rb
368
379
  - lib/checkout_sdk/payments/source/network_token_source.rb
369
380
  - lib/checkout_sdk/payments/source/payment_source.rb