khipu-api-client 2.6.0 → 2.7.0
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
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 61c43547599e91c94c19380fad2368cb36b6fe93
|
|
4
|
+
data.tar.gz: 3c40585611e568242ae37b4a8fa6618210a87345
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c9427fd457769beaa2823e44a72612c0cf6fbbcba17e4584b0ff70f5dbf5811673d476dbf1f0bd139e39a3202ea00ad11014f404aa5617d78225215b314917aa
|
|
7
|
+
data.tar.gz: 6db5f9060f4880c1c9380e8de740dade5a00e6c4eedc750c54139d9439c38017ce860b776e2e51f8fbcde4d09d422864eb8f23c6c6bf720f2b5bd0760ddcaf10
|
|
Binary file
|
|
Binary file
|
|
@@ -74,6 +74,7 @@ module Khipu
|
|
|
74
74
|
# @option opts [String] :cancel_url La dirección URL a donde enviar al cliente si decide no hacer hacer la transacción
|
|
75
75
|
# @option opts [String] :picture_url Una dirección URL de una foto de tu producto o servicio
|
|
76
76
|
# @option opts [String] :notify_url La dirección del web-service que utilizará khipu para notificar cuando el pago esté conciliado
|
|
77
|
+
# @option opts [String] :contract_url La dirección URL del archivo PDF con el contrato a firmar mediante este pago. El cobrador debe estar habilitado para este servicio y el campo 'fixed_payer_personal_identifier' es obgligatorio
|
|
77
78
|
# @option opts [String] :notify_api_version Versión de la API de notifiaciones para recibir avisos por web-service
|
|
78
79
|
# @option opts [DateTime] :expires_date Fecha de expiración del cobro. Pasada esta fecha el cobro es inválido. Formato ISO-8601. Ej: 2017-03-01T13:00:00Z
|
|
79
80
|
# @option opts [BOOLEAN] :send_email Si es 'true', se enviará una solicitud de cobro al correo especificado en 'payer_email'
|
|
@@ -128,6 +129,7 @@ module Khipu
|
|
|
128
129
|
form_params["cancel_url"] = opts[:'cancel_url'] if opts[:'cancel_url']
|
|
129
130
|
form_params["picture_url"] = opts[:'picture_url'] if opts[:'picture_url']
|
|
130
131
|
form_params["notify_url"] = opts[:'notify_url'] if opts[:'notify_url']
|
|
132
|
+
form_params["contract_url"] = opts[:'contract_url'] if opts[:'contract_url']
|
|
131
133
|
form_params["notify_api_version"] = opts[:'notify_api_version'] if opts[:'notify_api_version']
|
|
132
134
|
form_params["expires_date"] = opts[:'expires_date'] if opts[:'expires_date']
|
|
133
135
|
form_params["send_email"] = opts[:'send_email'] if opts[:'send_email']
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: khipu-api-client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.7.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- khipu
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-06-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|
|
@@ -199,6 +199,8 @@ extra_rdoc_files: []
|
|
|
199
199
|
files:
|
|
200
200
|
- LICENSE
|
|
201
201
|
- README.md
|
|
202
|
+
- khipu-api-client-2.5.0.gem
|
|
203
|
+
- khipu-api-client-2.5.1.gem
|
|
202
204
|
- khipu-api-client.gemspec
|
|
203
205
|
- lib/khipu-api-client.rb
|
|
204
206
|
- lib/khipu-api-client/api/banks_api.rb
|
|
@@ -239,7 +241,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
239
241
|
version: '0'
|
|
240
242
|
requirements: []
|
|
241
243
|
rubyforge_project:
|
|
242
|
-
rubygems_version: 2.
|
|
244
|
+
rubygems_version: 2.5.1
|
|
243
245
|
signing_key:
|
|
244
246
|
specification_version: 4
|
|
245
247
|
summary: A ruby wrapper for the khipu APIs
|