pokepay_partner_ruby_sdk 0.1.14 → 0.1.15
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/Gemfile.lock +1 -1
- data/docs/index.md +338 -88
- data/lib/pokepay_partner_ruby_sdk/request/create_cpm_transaction.rb +17 -0
- data/lib/pokepay_partner_ruby_sdk/request/get_cpm_token.rb +15 -0
- data/lib/pokepay_partner_ruby_sdk/response/cashtray_attempt.rb +1 -1
- data/lib/pokepay_partner_ruby_sdk/response/cashtray_with_result.rb +2 -2
- data/lib/pokepay_partner_ruby_sdk/response/cpm_token.rb +26 -0
- data/lib/pokepay_partner_ruby_sdk/response/external_transaction.rb +31 -0
- data/lib/pokepay_partner_ruby_sdk/response/product.rb +21 -0
- data/lib/pokepay_partner_ruby_sdk/version.rb +1 -1
- data/lib/pokepay_partner_ruby_sdk.rb +5 -0
- data/partner.yaml +382 -6
- data/pokepay_partner_ruby_sdk.gemspec +3 -3
- metadata +11 -6
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pokepay_partner_ruby_sdk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.15
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pocket Change, Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-10-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -121,6 +121,7 @@ files:
|
|
121
121
|
- lib/pokepay_partner_ruby_sdk/request/create_bill.rb
|
122
122
|
- lib/pokepay_partner_ruby_sdk/request/create_cashtray.rb
|
123
123
|
- lib/pokepay_partner_ruby_sdk/request/create_check.rb
|
124
|
+
- lib/pokepay_partner_ruby_sdk/request/create_cpm_transaction.rb
|
124
125
|
- lib/pokepay_partner_ruby_sdk/request/create_customer_account.rb
|
125
126
|
- lib/pokepay_partner_ruby_sdk/request/create_exchange_transaction.rb
|
126
127
|
- lib/pokepay_partner_ruby_sdk/request/create_organization.rb
|
@@ -134,6 +135,7 @@ files:
|
|
134
135
|
- lib/pokepay_partner_ruby_sdk/request/get_account.rb
|
135
136
|
- lib/pokepay_partner_ruby_sdk/request/get_bulk_transaction.rb
|
136
137
|
- lib/pokepay_partner_ruby_sdk/request/get_cashtray.rb
|
138
|
+
- lib/pokepay_partner_ruby_sdk/request/get_cpm_token.rb
|
137
139
|
- lib/pokepay_partner_ruby_sdk/request/get_customer_accounts.rb
|
138
140
|
- lib/pokepay_partner_ruby_sdk/request/get_ping.rb
|
139
141
|
- lib/pokepay_partner_ruby_sdk/request/get_private_money_organization_summaries.rb
|
@@ -170,7 +172,9 @@ files:
|
|
170
172
|
- lib/pokepay_partner_ruby_sdk/response/cashtray_attempt.rb
|
171
173
|
- lib/pokepay_partner_ruby_sdk/response/cashtray_with_result.rb
|
172
174
|
- lib/pokepay_partner_ruby_sdk/response/check.rb
|
175
|
+
- lib/pokepay_partner_ruby_sdk/response/cpm_token.rb
|
173
176
|
- lib/pokepay_partner_ruby_sdk/response/echo.rb
|
177
|
+
- lib/pokepay_partner_ruby_sdk/response/external_transaction.rb
|
174
178
|
- lib/pokepay_partner_ruby_sdk/response/invalid_parameters.rb
|
175
179
|
- lib/pokepay_partner_ruby_sdk/response/organization.rb
|
176
180
|
- lib/pokepay_partner_ruby_sdk/response/organization_summary.rb
|
@@ -192,6 +196,7 @@ files:
|
|
192
196
|
- lib/pokepay_partner_ruby_sdk/response/pong.rb
|
193
197
|
- lib/pokepay_partner_ruby_sdk/response/private_money.rb
|
194
198
|
- lib/pokepay_partner_ruby_sdk/response/private_money_organization_summary.rb
|
199
|
+
- lib/pokepay_partner_ruby_sdk/response/product.rb
|
195
200
|
- lib/pokepay_partner_ruby_sdk/response/response.rb
|
196
201
|
- lib/pokepay_partner_ruby_sdk/response/shop_account.rb
|
197
202
|
- lib/pokepay_partner_ruby_sdk/response/shop_with_accounts.rb
|
@@ -203,12 +208,12 @@ files:
|
|
203
208
|
- lib/pokepay_partner_ruby_sdk/version.rb
|
204
209
|
- partner.yaml
|
205
210
|
- pokepay_partner_ruby_sdk.gemspec
|
206
|
-
homepage: https://github.com/pokepay/
|
211
|
+
homepage: https://github.com/pokepay/pokepay_partner_ruby_sdk
|
207
212
|
licenses: []
|
208
213
|
metadata:
|
209
|
-
homepage_uri: https://github.com/pokepay/
|
210
|
-
source_code_uri: https://github.com/pokepay/
|
211
|
-
changelog_uri: https://github.com/pokepay/
|
214
|
+
homepage_uri: https://github.com/pokepay/pokepay_partner_ruby_sdk
|
215
|
+
source_code_uri: https://github.com/pokepay/pokepay_partner_ruby_sdk
|
216
|
+
changelog_uri: https://github.com/pokepay/pokepay_partner_ruby_sdk
|
212
217
|
post_install_message:
|
213
218
|
rdoc_options: []
|
214
219
|
require_paths:
|