genesis_ruby 0.3.1 → 0.3.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/.kiro/specs/f2025112509-add_managed_recurring_api/.config.kiro +1 -0
- data/.kiro/specs/f2025112509-add_managed_recurring_api/design.md +332 -0
- data/.kiro/specs/f2025112509-add_managed_recurring_api/requirements.md +91 -0
- data/.kiro/specs/f2025112509-add_managed_recurring_api/tasks.md +139 -0
- data/.kiro/specs/f2025112603-add_reverify_endpoint_to_payee_account/.config.kiro +1 -0
- data/.kiro/specs/f2025112603-add_reverify_endpoint_to_payee_account/design.md +148 -0
- data/.kiro/specs/f2025112603-add_reverify_endpoint_to_payee_account/requirements.md +81 -0
- data/.kiro/specs/f2025112603-add_reverify_endpoint_to_payee_account/tasks.md +48 -0
- data/.kiro/specs/f2025112606-add_list_payees_trx_request/.config.kiro +1 -0
- data/.kiro/specs/f2025112606-add_list_payees_trx_request/design.md +112 -0
- data/.kiro/specs/f2025112606-add_list_payees_trx_request/requirements.md +74 -0
- data/.kiro/specs/f2025112606-add_list_payees_trx_request/tasks.md +38 -0
- data/.kiro/specs/f2025112609_update_payee_request_params/design.md +86 -0
- data/.kiro/specs/f2025112609_update_payee_request_params/requirements.md +86 -0
- data/.kiro/specs/f2025112609_update_payee_request_params/tasks.md +40 -0
- data/.kiro/specs/f2025112612-add_payee_owner_documents_and_verification_requests/.config.kiro +1 -0
- data/.kiro/specs/f2025112612-add_payee_owner_documents_and_verification_requests/design.md +246 -0
- data/.kiro/specs/f2025112612-add_payee_owner_documents_and_verification_requests/requirements.md +287 -0
- data/.kiro/specs/f2025112612-add_payee_owner_documents_and_verification_requests/tasks.md +76 -0
- data/.kiro/specs/f2025112614-add_money_transfer_payout_attributes_to_payout_rq/design.md +84 -0
- data/.kiro/specs/f2025112614-add_money_transfer_payout_attributes_to_payout_rq/requirements.md +88 -0
- data/.kiro/specs/f2025112614-add_money_transfer_payout_attributes_to_payout_rq/tasks.md +38 -0
- data/.kiro/steering/product.md +15 -0
- data/.kiro/steering/spec-folder-naming.md +16 -0
- data/.kiro/steering/structure.md +96 -0
- data/.kiro/steering/tech.md +66 -0
- data/CHANGELOG.md +23 -0
- data/Gemfile.lock +4 -4
- data/README.md +33 -0
- data/VERSION +1 -1
- data/lib/genesis_ruby/api/constants/non_financial/kyc/address_document_supported_types.rb +81 -0
- data/lib/genesis_ruby/api/constants/non_financial/payee/document_types.rb +57 -0
- data/lib/genesis_ruby/api/constants/non_financial/payee/owner_types.rb +30 -0
- data/lib/genesis_ruby/api/constants/transactions/parameters/money_transfer/purpose_of_payments.rb +50 -0
- data/lib/genesis_ruby/api/constants/transactions/parameters/money_transfer/sender_account_number_types.rb +50 -0
- data/lib/genesis_ruby/api/constants/transactions/parameters/money_transfer/source_of_funds.rb +44 -0
- data/lib/genesis_ruby/api/constants/transactions/parameters/money_transfer/types.rb +26 -0
- data/lib/genesis_ruby/api/constants/transactions/parameters/non_financial/billing_api/statement_response_fields.rb +37 -0
- data/lib/genesis_ruby/api/mixins/requests/financial/cards/mpi_attributes.rb +0 -10
- data/lib/genesis_ruby/api/mixins/requests/financial/money_transfer_payout_attributes.rb +131 -0
- data/lib/genesis_ruby/api/mixins/requests/non_financial/date_attributes.rb +87 -5
- data/lib/genesis_ruby/api/mixins/requests/non_financial/kyc/business_attributes.rb +42 -0
- data/lib/genesis_ruby/api/mixins/requests/non_financial/kyc/document_attributes.rb +8 -7
- data/lib/genesis_ruby/api/request.rb +15 -9
- data/lib/genesis_ruby/api/requests/base/non_financial/billing_api/base.rb +108 -0
- data/lib/genesis_ruby/api/requests/base/non_financial/payee/base.rb +54 -0
- data/lib/genesis_ruby/api/requests/financial/cards/authorize3d.rb +1 -3
- data/lib/genesis_ruby/api/requests/financial/cards/payout.rb +3 -1
- data/lib/genesis_ruby/api/requests/financial/cards/sale3d.rb +1 -3
- data/lib/genesis_ruby/api/requests/non_financial/billing_api/statement.rb +170 -0
- data/lib/genesis_ruby/api/requests/non_financial/billing_api/transactions.rb +20 -60
- data/lib/genesis_ruby/api/requests/non_financial/kyc/business/create.rb +45 -0
- data/lib/genesis_ruby/api/requests/non_financial/kyc/business/document.rb +60 -0
- data/lib/genesis_ruby/api/requests/non_financial/kyc/business/document_list.rb +59 -0
- data/lib/genesis_ruby/api/requests/non_financial/kyc/business/verification.rb +52 -0
- data/lib/genesis_ruby/api/requests/non_financial/kyc/verifications/address_by_document_proof.rb +92 -0
- data/lib/genesis_ruby/api/requests/non_financial/kyc/verifications/create.rb +4 -1
- data/lib/genesis_ruby/api/requests/non_financial/managed_recurring/cancel.rb +63 -0
- data/lib/genesis_ruby/api/requests/non_financial/managed_recurring/fetch.rb +63 -0
- data/lib/genesis_ruby/api/requests/non_financial/managed_recurring/fetch_all.rb +37 -0
- data/lib/genesis_ruby/api/requests/non_financial/payee/account/reverify.rb +61 -0
- data/lib/genesis_ruby/api/requests/non_financial/payee/associate_payee_with_owners.rb +105 -0
- data/lib/genesis_ruby/api/requests/non_financial/payee/create.rb +37 -7
- data/lib/genesis_ruby/api/requests/non_financial/payee/create_payee_document.rb +61 -0
- data/lib/genesis_ruby/api/requests/non_financial/payee/dissociate_payee_with_owners.rb +94 -0
- data/lib/genesis_ruby/api/requests/non_financial/payee/list.rb +38 -0
- data/lib/genesis_ruby/api/requests/non_financial/payee/list_payee_documents.rb +57 -0
- data/lib/genesis_ruby/api/requests/non_financial/payee/list_payee_owners.rb +70 -0
- data/lib/genesis_ruby/api/requests/non_financial/payee/owners/associate_owner_with_owners.rb +109 -0
- data/lib/genesis_ruby/api/requests/non_financial/payee/owners/create.rb +71 -0
- data/lib/genesis_ruby/api/requests/non_financial/payee/owners/create_owner_document.rb +63 -0
- data/lib/genesis_ruby/api/requests/non_financial/payee/owners/delete.rb +54 -0
- data/lib/genesis_ruby/api/requests/non_financial/payee/owners/dissociate_owners.rb +96 -0
- data/lib/genesis_ruby/api/requests/non_financial/payee/owners/list_owner_documents.rb +59 -0
- data/lib/genesis_ruby/api/requests/non_financial/payee/owners/list_owners.rb +46 -0
- data/lib/genesis_ruby/api/requests/non_financial/payee/owners/retrieve.rb +59 -0
- data/lib/genesis_ruby/api/requests/non_financial/payee/owners/retrieve_owner_document.rb +62 -0
- data/lib/genesis_ruby/api/requests/non_financial/payee/owners/update.rb +66 -0
- data/lib/genesis_ruby/api/requests/non_financial/payee/retrieve_payee_document.rb +60 -0
- data/lib/genesis_ruby/api/requests/non_financial/payee/update.rb +34 -4
- data/lib/genesis_ruby/api/requests/non_financial/payee/verifications/create_payee_verification.rb +58 -0
- data/lib/genesis_ruby/api/requests/non_financial/payee/verifications/list_payee_verifications.rb +59 -0
- data/lib/genesis_ruby/api/requests/non_financial/payee/verifications/retrieve_payee_verification.rb +62 -0
- data/lib/genesis_ruby/api/requests/non_financial/tokenization/retokenize.rb +45 -0
- data/lib/genesis_ruby/api/requests/wpf/create.rb +19 -0
- data/lib/genesis_ruby/api/response.rb +15 -0
- data/lib/genesis_ruby/dependencies.rb +2 -0
- data/lib/genesis_ruby/network/adapter/net_http_adapter.rb +31 -5
- data/lib/genesis_ruby/network/base_network.rb +5 -0
- data/lib/genesis_ruby/network/net_http.rb +16 -4
- data/lib/genesis_ruby/utils/options/api_config.rb +43 -32
- data/lib/genesis_ruby/utils/options/network_adapter_config.rb +1 -1
- data/lib/genesis_ruby/version.rb +1 -1
- metadata +72 -3
|
@@ -10,65 +10,76 @@ module GenesisRuby
|
|
|
10
10
|
|
|
11
11
|
# Load pre-defined XML configuration
|
|
12
12
|
def load_xml_config
|
|
13
|
-
self.protocol
|
|
14
|
-
self.port
|
|
15
|
-
self.type
|
|
16
|
-
self.format
|
|
13
|
+
self.protocol = GenesisRuby::Api::Request::PROTOCOL_HTTPS
|
|
14
|
+
self.port = GenesisRuby::Api::Request::PORT_HTTPS
|
|
15
|
+
self.type = GenesisRuby::Api::Request::METHOD_POST
|
|
16
|
+
self.format = Builder::XML
|
|
17
17
|
self.parser_skip_root_node = true
|
|
18
|
-
self.authorization
|
|
19
|
-
self.bearer_token
|
|
18
|
+
self.authorization = GenesisRuby::Api::Request::AUTH_TYPE_BASIC
|
|
19
|
+
self.bearer_token = nil
|
|
20
20
|
end
|
|
21
21
|
|
|
22
22
|
# Load pre-defined JSON configuration
|
|
23
23
|
def load_json_config
|
|
24
|
-
self.protocol
|
|
25
|
-
self.port
|
|
26
|
-
self.type
|
|
27
|
-
self.format
|
|
24
|
+
self.protocol = GenesisRuby::Api::Request::PROTOCOL_HTTPS
|
|
25
|
+
self.port = GenesisRuby::Api::Request::PORT_HTTPS
|
|
26
|
+
self.type = GenesisRuby::Api::Request::METHOD_POST
|
|
27
|
+
self.format = Builder::JSON
|
|
28
28
|
self.parser_skip_root_node = false
|
|
29
|
-
self.authorization
|
|
30
|
-
self.bearer_token
|
|
29
|
+
self.authorization = GenesisRuby::Api::Request::AUTH_TYPE_BASIC
|
|
30
|
+
self.bearer_token = nil
|
|
31
31
|
end
|
|
32
32
|
|
|
33
33
|
# Load pre-defined FORM configuration
|
|
34
34
|
def load_form_config
|
|
35
|
-
self.protocol
|
|
36
|
-
self.port
|
|
37
|
-
self.type
|
|
38
|
-
self.format
|
|
35
|
+
self.protocol = GenesisRuby::Api::Request::PROTOCOL_HTTPS
|
|
36
|
+
self.port = GenesisRuby::Api::Request::PORT_HTTPS
|
|
37
|
+
self.type = GenesisRuby::Api::Request::METHOD_POST
|
|
38
|
+
self.format = Builder::FORM
|
|
39
39
|
self.parser_skip_root_node = true
|
|
40
|
-
self.authorization
|
|
41
|
-
self.bearer_token
|
|
40
|
+
self.authorization = GenesisRuby::Api::Request::AUTH_TYPE_BASIC
|
|
41
|
+
self.bearer_token = nil
|
|
42
42
|
end
|
|
43
43
|
|
|
44
44
|
# Load pre-defined GET configuration
|
|
45
45
|
def load_get_config
|
|
46
|
-
self.protocol
|
|
47
|
-
self.port
|
|
48
|
-
self.type
|
|
49
|
-
self.format
|
|
46
|
+
self.protocol = GenesisRuby::Api::Request::PROTOCOL_HTTPS
|
|
47
|
+
self.port = GenesisRuby::Api::Request::PORT_HTTPS
|
|
48
|
+
self.type = GenesisRuby::Api::Request::METHOD_GET
|
|
49
|
+
self.format = Builder::XML
|
|
50
50
|
self.parser_skip_root_node = false
|
|
51
|
-
self.authorization
|
|
52
|
-
self.bearer_token
|
|
51
|
+
self.authorization = GenesisRuby::Api::Request::AUTH_TYPE_BASIC
|
|
52
|
+
self.bearer_token = nil
|
|
53
53
|
end
|
|
54
54
|
|
|
55
55
|
# Load pre-defined GraphQL configuration
|
|
56
56
|
def load_graphql_config
|
|
57
|
-
self.protocol
|
|
58
|
-
self.port
|
|
59
|
-
self.type
|
|
60
|
-
self.format
|
|
57
|
+
self.protocol = GenesisRuby::Api::Request::PROTOCOL_HTTPS
|
|
58
|
+
self.port = GenesisRuby::Api::Request::PORT_HTTPS
|
|
59
|
+
self.type = GenesisRuby::Api::Request::METHOD_POST
|
|
60
|
+
self.format = Builder::GRAPHQL
|
|
61
61
|
self.parser_skip_root_node = false
|
|
62
|
-
self.authorization
|
|
63
|
-
self.bearer_token
|
|
62
|
+
self.authorization = GenesisRuby::Api::Request::AUTH_TYPE_TOKEN
|
|
63
|
+
self.bearer_token = nil
|
|
64
64
|
end
|
|
65
65
|
|
|
66
66
|
# Load pre-defined PATCH configuration
|
|
67
67
|
def load_patch_config
|
|
68
|
+
self.protocol = GenesisRuby::Api::Request::PROTOCOL_HTTPS
|
|
69
|
+
self.port = GenesisRuby::Api::Request::PORT_HTTPS
|
|
70
|
+
self.type = GenesisRuby::Api::Request::METHOD_PATCH
|
|
71
|
+
self.format = Builder::PATCH
|
|
72
|
+
self.parser_skip_root_node = false
|
|
73
|
+
self.authorization = GenesisRuby::Api::Request::AUTH_TYPE_BASIC
|
|
74
|
+
self.bearer_token = nil
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
# Load pre-defined DELETE configuration
|
|
78
|
+
def load_delete_config
|
|
68
79
|
self.protocol = GenesisRuby::Api::Request::PROTOCOL_HTTPS
|
|
69
80
|
self.port = GenesisRuby::Api::Request::PORT_HTTPS
|
|
70
|
-
self.type = GenesisRuby::Api::Request::
|
|
71
|
-
self.format = Builder::
|
|
81
|
+
self.type = GenesisRuby::Api::Request::METHOD_DELETE
|
|
82
|
+
self.format = Builder::JSON
|
|
72
83
|
self.parser_skip_root_node = false
|
|
73
84
|
self.authorization = GenesisRuby::Api::Request::AUTH_TYPE_BASIC
|
|
74
85
|
self.bearer_token = nil
|
|
@@ -20,7 +20,7 @@ module GenesisRuby
|
|
|
20
20
|
self.format = fetch_content_type request.api_config.format
|
|
21
21
|
self.authorization = request.api_config.authorization
|
|
22
22
|
self.user_login = build_user_login request, configuration
|
|
23
|
-
self.
|
|
23
|
+
self.timeout = configuration.timeout
|
|
24
24
|
self.headers = build_additional_headers request
|
|
25
25
|
|
|
26
26
|
self
|
data/lib/genesis_ruby/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: genesis_ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- emerchantpay Ltd.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-07-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: net-http
|
|
@@ -227,6 +227,32 @@ executables: []
|
|
|
227
227
|
extensions: []
|
|
228
228
|
extra_rdoc_files: []
|
|
229
229
|
files:
|
|
230
|
+
- ".kiro/specs/f2025112509-add_managed_recurring_api/.config.kiro"
|
|
231
|
+
- ".kiro/specs/f2025112509-add_managed_recurring_api/design.md"
|
|
232
|
+
- ".kiro/specs/f2025112509-add_managed_recurring_api/requirements.md"
|
|
233
|
+
- ".kiro/specs/f2025112509-add_managed_recurring_api/tasks.md"
|
|
234
|
+
- ".kiro/specs/f2025112603-add_reverify_endpoint_to_payee_account/.config.kiro"
|
|
235
|
+
- ".kiro/specs/f2025112603-add_reverify_endpoint_to_payee_account/design.md"
|
|
236
|
+
- ".kiro/specs/f2025112603-add_reverify_endpoint_to_payee_account/requirements.md"
|
|
237
|
+
- ".kiro/specs/f2025112603-add_reverify_endpoint_to_payee_account/tasks.md"
|
|
238
|
+
- ".kiro/specs/f2025112606-add_list_payees_trx_request/.config.kiro"
|
|
239
|
+
- ".kiro/specs/f2025112606-add_list_payees_trx_request/design.md"
|
|
240
|
+
- ".kiro/specs/f2025112606-add_list_payees_trx_request/requirements.md"
|
|
241
|
+
- ".kiro/specs/f2025112606-add_list_payees_trx_request/tasks.md"
|
|
242
|
+
- ".kiro/specs/f2025112609_update_payee_request_params/design.md"
|
|
243
|
+
- ".kiro/specs/f2025112609_update_payee_request_params/requirements.md"
|
|
244
|
+
- ".kiro/specs/f2025112609_update_payee_request_params/tasks.md"
|
|
245
|
+
- ".kiro/specs/f2025112612-add_payee_owner_documents_and_verification_requests/.config.kiro"
|
|
246
|
+
- ".kiro/specs/f2025112612-add_payee_owner_documents_and_verification_requests/design.md"
|
|
247
|
+
- ".kiro/specs/f2025112612-add_payee_owner_documents_and_verification_requests/requirements.md"
|
|
248
|
+
- ".kiro/specs/f2025112612-add_payee_owner_documents_and_verification_requests/tasks.md"
|
|
249
|
+
- ".kiro/specs/f2025112614-add_money_transfer_payout_attributes_to_payout_rq/design.md"
|
|
250
|
+
- ".kiro/specs/f2025112614-add_money_transfer_payout_attributes_to_payout_rq/requirements.md"
|
|
251
|
+
- ".kiro/specs/f2025112614-add_money_transfer_payout_attributes_to_payout_rq/tasks.md"
|
|
252
|
+
- ".kiro/steering/product.md"
|
|
253
|
+
- ".kiro/steering/spec-folder-naming.md"
|
|
254
|
+
- ".kiro/steering/structure.md"
|
|
255
|
+
- ".kiro/steering/tech.md"
|
|
230
256
|
- CHANGELOG.md
|
|
231
257
|
- Gemfile
|
|
232
258
|
- Gemfile.lock
|
|
@@ -241,6 +267,7 @@ files:
|
|
|
241
267
|
- lib/genesis_ruby/api/constants/endpoints.rb
|
|
242
268
|
- lib/genesis_ruby/api/constants/environments.rb
|
|
243
269
|
- lib/genesis_ruby/api/constants/i18n.rb
|
|
270
|
+
- lib/genesis_ruby/api/constants/non_financial/kyc/address_document_supported_types.rb
|
|
244
271
|
- lib/genesis_ruby/api/constants/non_financial/kyc/address_supported_types.rb
|
|
245
272
|
- lib/genesis_ruby/api/constants/non_financial/kyc/aml_filters.rb
|
|
246
273
|
- lib/genesis_ruby/api/constants/non_financial/kyc/create_transaction_payment_methods.rb
|
|
@@ -256,6 +283,8 @@ files:
|
|
|
256
283
|
- lib/genesis_ruby/api/constants/non_financial/kyc/transaction_statuses.rb
|
|
257
284
|
- lib/genesis_ruby/api/constants/non_financial/kyc/verification_modes.rb
|
|
258
285
|
- lib/genesis_ruby/api/constants/non_financial/kyc/verification_statuses.rb
|
|
286
|
+
- lib/genesis_ruby/api/constants/non_financial/payee/document_types.rb
|
|
287
|
+
- lib/genesis_ruby/api/constants/non_financial/payee/owner_types.rb
|
|
259
288
|
- lib/genesis_ruby/api/constants/states.rb
|
|
260
289
|
- lib/genesis_ruby/api/constants/states/state.rb
|
|
261
290
|
- lib/genesis_ruby/api/constants/transactions.rb
|
|
@@ -280,10 +309,15 @@ files:
|
|
|
280
309
|
- lib/genesis_ruby/api/constants/transactions/parameters/managed_recurring/payment_types.rb
|
|
281
310
|
- lib/genesis_ruby/api/constants/transactions/parameters/mobile/apple_pay/payment_subtypes.rb
|
|
282
311
|
- lib/genesis_ruby/api/constants/transactions/parameters/mobile/google_pay/payment_subtypes.rb
|
|
312
|
+
- lib/genesis_ruby/api/constants/transactions/parameters/money_transfer/purpose_of_payments.rb
|
|
313
|
+
- lib/genesis_ruby/api/constants/transactions/parameters/money_transfer/sender_account_number_types.rb
|
|
314
|
+
- lib/genesis_ruby/api/constants/transactions/parameters/money_transfer/source_of_funds.rb
|
|
315
|
+
- lib/genesis_ruby/api/constants/transactions/parameters/money_transfer/types.rb
|
|
283
316
|
- lib/genesis_ruby/api/constants/transactions/parameters/mpi_protocol_sub_versions.rb
|
|
284
317
|
- lib/genesis_ruby/api/constants/transactions/parameters/mpi_protocol_versions.rb
|
|
285
318
|
- lib/genesis_ruby/api/constants/transactions/parameters/non_financial/billing_api/order_by_fields.rb
|
|
286
319
|
- lib/genesis_ruby/api/constants/transactions/parameters/non_financial/billing_api/response_fields.rb
|
|
320
|
+
- lib/genesis_ruby/api/constants/transactions/parameters/non_financial/billing_api/statement_response_fields.rb
|
|
287
321
|
- lib/genesis_ruby/api/constants/transactions/parameters/non_financial/billing_api/transaction_types.rb
|
|
288
322
|
- lib/genesis_ruby/api/constants/transactions/parameters/non_financial/externally_processed.rb
|
|
289
323
|
- lib/genesis_ruby/api/constants/transactions/parameters/non_financial/processing_type.rb
|
|
@@ -367,6 +401,7 @@ files:
|
|
|
367
401
|
- lib/genesis_ruby/api/mixins/requests/financial/gift_cards_attributes.rb
|
|
368
402
|
- lib/genesis_ruby/api/mixins/requests/financial/mobile/apple_pay_token_attributes.rb
|
|
369
403
|
- lib/genesis_ruby/api/mixins/requests/financial/mobile/google_pay_token_attributes.rb
|
|
404
|
+
- lib/genesis_ruby/api/mixins/requests/financial/money_transfer_payout_attributes.rb
|
|
370
405
|
- lib/genesis_ruby/api/mixins/requests/financial/moto_attributes.rb
|
|
371
406
|
- lib/genesis_ruby/api/mixins/requests/financial/notification_attributes.rb
|
|
372
407
|
- lib/genesis_ruby/api/mixins/requests/financial/online_banking_payments/payer_attributes.rb
|
|
@@ -400,6 +435,7 @@ files:
|
|
|
400
435
|
- lib/genesis_ruby/api/mixins/requests/non_financial/fx/id_attributes.rb
|
|
401
436
|
- lib/genesis_ruby/api/mixins/requests/non_financial/fx/tier_id_attributes.rb
|
|
402
437
|
- lib/genesis_ruby/api/mixins/requests/non_financial/kyc/background_checks_attributes.rb
|
|
438
|
+
- lib/genesis_ruby/api/mixins/requests/non_financial/kyc/business_attributes.rb
|
|
403
439
|
- lib/genesis_ruby/api/mixins/requests/non_financial/kyc/customer_information_attributes.rb
|
|
404
440
|
- lib/genesis_ruby/api/mixins/requests/non_financial/kyc/deposit_limits_attributes.rb
|
|
405
441
|
- lib/genesis_ruby/api/mixins/requests/non_financial/kyc/document_attributes.rb
|
|
@@ -425,7 +461,9 @@ files:
|
|
|
425
461
|
- lib/genesis_ruby/api/requests/base/financials/credit_card.rb
|
|
426
462
|
- lib/genesis_ruby/api/requests/base/financials/south_american_payments.rb
|
|
427
463
|
- lib/genesis_ruby/api/requests/base/graphql.rb
|
|
464
|
+
- lib/genesis_ruby/api/requests/base/non_financial/billing_api/base.rb
|
|
428
465
|
- lib/genesis_ruby/api/requests/base/non_financial/kyc/base.rb
|
|
466
|
+
- lib/genesis_ruby/api/requests/base/non_financial/payee/base.rb
|
|
429
467
|
- lib/genesis_ruby/api/requests/base/reference.rb
|
|
430
468
|
- lib/genesis_ruby/api/requests/base/versioned.rb
|
|
431
469
|
- lib/genesis_ruby/api/requests/financial/capture.rb
|
|
@@ -501,6 +539,7 @@ files:
|
|
|
501
539
|
- lib/genesis_ruby/api/requests/financial/vouchers/neosurf.rb
|
|
502
540
|
- lib/genesis_ruby/api/requests/financial/wallets/alipay.rb
|
|
503
541
|
- lib/genesis_ruby/api/requests/financial/wallets/pay_pal.rb
|
|
542
|
+
- lib/genesis_ruby/api/requests/non_financial/billing_api/statement.rb
|
|
504
543
|
- lib/genesis_ruby/api/requests/non_financial/billing_api/transactions.rb
|
|
505
544
|
- lib/genesis_ruby/api/requests/non_financial/consumers/create.rb
|
|
506
545
|
- lib/genesis_ruby/api/requests/non_financial/consumers/disable.rb
|
|
@@ -521,6 +560,10 @@ files:
|
|
|
521
560
|
- lib/genesis_ruby/api/requests/non_financial/fx/search_rate.rb
|
|
522
561
|
- lib/genesis_ruby/api/requests/non_financial/installments/fetch.rb
|
|
523
562
|
- lib/genesis_ruby/api/requests/non_financial/installments/show.rb
|
|
563
|
+
- lib/genesis_ruby/api/requests/non_financial/kyc/business/create.rb
|
|
564
|
+
- lib/genesis_ruby/api/requests/non_financial/kyc/business/document.rb
|
|
565
|
+
- lib/genesis_ruby/api/requests/non_financial/kyc/business/document_list.rb
|
|
566
|
+
- lib/genesis_ruby/api/requests/non_financial/kyc/business/verification.rb
|
|
524
567
|
- lib/genesis_ruby/api/requests/non_financial/kyc/call/create.rb
|
|
525
568
|
- lib/genesis_ruby/api/requests/non_financial/kyc/call/update.rb
|
|
526
569
|
- lib/genesis_ruby/api/requests/non_financial/kyc/cnpj/check.rb
|
|
@@ -531,17 +574,42 @@ files:
|
|
|
531
574
|
- lib/genesis_ruby/api/requests/non_financial/kyc/identity_document/upload.rb
|
|
532
575
|
- lib/genesis_ruby/api/requests/non_financial/kyc/transaction/create.rb
|
|
533
576
|
- lib/genesis_ruby/api/requests/non_financial/kyc/transaction/update.rb
|
|
577
|
+
- lib/genesis_ruby/api/requests/non_financial/kyc/verifications/address_by_document_proof.rb
|
|
534
578
|
- lib/genesis_ruby/api/requests/non_financial/kyc/verifications/create.rb
|
|
535
579
|
- lib/genesis_ruby/api/requests/non_financial/kyc/verifications/register.rb
|
|
536
580
|
- lib/genesis_ruby/api/requests/non_financial/kyc/verifications/remote_identity.rb
|
|
537
581
|
- lib/genesis_ruby/api/requests/non_financial/kyc/verifications/status.rb
|
|
582
|
+
- lib/genesis_ruby/api/requests/non_financial/managed_recurring/cancel.rb
|
|
583
|
+
- lib/genesis_ruby/api/requests/non_financial/managed_recurring/fetch.rb
|
|
584
|
+
- lib/genesis_ruby/api/requests/non_financial/managed_recurring/fetch_all.rb
|
|
538
585
|
- lib/genesis_ruby/api/requests/non_financial/payee/account/create.rb
|
|
539
586
|
- lib/genesis_ruby/api/requests/non_financial/payee/account/list.rb
|
|
540
587
|
- lib/genesis_ruby/api/requests/non_financial/payee/account/retrieve.rb
|
|
588
|
+
- lib/genesis_ruby/api/requests/non_financial/payee/account/reverify.rb
|
|
541
589
|
- lib/genesis_ruby/api/requests/non_financial/payee/account/update.rb
|
|
590
|
+
- lib/genesis_ruby/api/requests/non_financial/payee/associate_payee_with_owners.rb
|
|
542
591
|
- lib/genesis_ruby/api/requests/non_financial/payee/create.rb
|
|
592
|
+
- lib/genesis_ruby/api/requests/non_financial/payee/create_payee_document.rb
|
|
593
|
+
- lib/genesis_ruby/api/requests/non_financial/payee/dissociate_payee_with_owners.rb
|
|
594
|
+
- lib/genesis_ruby/api/requests/non_financial/payee/list.rb
|
|
595
|
+
- lib/genesis_ruby/api/requests/non_financial/payee/list_payee_documents.rb
|
|
596
|
+
- lib/genesis_ruby/api/requests/non_financial/payee/list_payee_owners.rb
|
|
597
|
+
- lib/genesis_ruby/api/requests/non_financial/payee/owners/associate_owner_with_owners.rb
|
|
598
|
+
- lib/genesis_ruby/api/requests/non_financial/payee/owners/create.rb
|
|
599
|
+
- lib/genesis_ruby/api/requests/non_financial/payee/owners/create_owner_document.rb
|
|
600
|
+
- lib/genesis_ruby/api/requests/non_financial/payee/owners/delete.rb
|
|
601
|
+
- lib/genesis_ruby/api/requests/non_financial/payee/owners/dissociate_owners.rb
|
|
602
|
+
- lib/genesis_ruby/api/requests/non_financial/payee/owners/list_owner_documents.rb
|
|
603
|
+
- lib/genesis_ruby/api/requests/non_financial/payee/owners/list_owners.rb
|
|
604
|
+
- lib/genesis_ruby/api/requests/non_financial/payee/owners/retrieve.rb
|
|
605
|
+
- lib/genesis_ruby/api/requests/non_financial/payee/owners/retrieve_owner_document.rb
|
|
606
|
+
- lib/genesis_ruby/api/requests/non_financial/payee/owners/update.rb
|
|
543
607
|
- lib/genesis_ruby/api/requests/non_financial/payee/retrieve.rb
|
|
608
|
+
- lib/genesis_ruby/api/requests/non_financial/payee/retrieve_payee_document.rb
|
|
544
609
|
- lib/genesis_ruby/api/requests/non_financial/payee/update.rb
|
|
610
|
+
- lib/genesis_ruby/api/requests/non_financial/payee/verifications/create_payee_verification.rb
|
|
611
|
+
- lib/genesis_ruby/api/requests/non_financial/payee/verifications/list_payee_verifications.rb
|
|
612
|
+
- lib/genesis_ruby/api/requests/non_financial/payee/verifications/retrieve_payee_verification.rb
|
|
545
613
|
- lib/genesis_ruby/api/requests/non_financial/processed_transactions/date_range.rb
|
|
546
614
|
- lib/genesis_ruby/api/requests/non_financial/processed_transactions/post_date_range.rb
|
|
547
615
|
- lib/genesis_ruby/api/requests/non_financial/processed_transactions/transaction.rb
|
|
@@ -552,6 +620,7 @@ files:
|
|
|
552
620
|
- lib/genesis_ruby/api/requests/non_financial/tokenization/delete_token.rb
|
|
553
621
|
- lib/genesis_ruby/api/requests/non_financial/tokenization/detokenize.rb
|
|
554
622
|
- lib/genesis_ruby/api/requests/non_financial/tokenization/get_card.rb
|
|
623
|
+
- lib/genesis_ruby/api/requests/non_financial/tokenization/retokenize.rb
|
|
555
624
|
- lib/genesis_ruby/api/requests/non_financial/tokenization/tokenize.rb
|
|
556
625
|
- lib/genesis_ruby/api/requests/non_financial/tokenization/update_token.rb
|
|
557
626
|
- lib/genesis_ruby/api/requests/non_financial/tokenization/validate_token.rb
|
|
@@ -636,7 +705,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
636
705
|
- !ruby/object:Gem::Version
|
|
637
706
|
version: '0'
|
|
638
707
|
requirements: []
|
|
639
|
-
rubygems_version: 3.4.
|
|
708
|
+
rubygems_version: 3.4.10
|
|
640
709
|
signing_key:
|
|
641
710
|
specification_version: 4
|
|
642
711
|
summary: Ruby Client for Genesis Payment Processing Gateway
|