omisego 0.9.5 → 0.9.6

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: 28c2d5da18bcf28befae329ecb6a09d4e7ab730f
4
- data.tar.gz: '09f39557405e6713d7e3d256e7c47c95ada3ecc5'
3
+ metadata.gz: 58a79d3edf64ff7f78028295c19be90ae21f4440
4
+ data.tar.gz: 628059f5a58ed7b65c03faaf1714ab3bf2012b1d
5
5
  SHA512:
6
- metadata.gz: af37df254cea2e65f8fc70391e1666150e20eaa20b0ee33718fb4ee002c6d053b39a90bcb84e200c982f10ab008fdf1f1cfe3f05fbd475c3eff5386a219514d1
7
- data.tar.gz: cb89d77c41b1d2ee6fdce3f9c6c988310004a205ea441290ea6e04f6daa0128954cbbab14f1fd5fbf800c4170aef99c9cb429e53739d8f0a331c39b9bfefbed4
6
+ metadata.gz: cbaffccc7a396a541dd97da164a0fb4dda3d4ef5bf0dd8f179e583870383b4ad64541634f5ec28bb53558c9b4f4d37e1f34b156a01ee8a13c7c437184e643c65
7
+ data.tar.gz: '00784428f43744812ae6a6e3b90d63599288c5822a898dd2102da82de4b78632dd9116e1b67a287e8293a0039f6c1adcb7bcdda1ab962dccd700853dc680bf86'
data/README.md CHANGED
@@ -326,8 +326,10 @@ transaction = OmiseGO::Transaction.all(params: {
326
326
  Get the list of transactions for a specific provider user ID from the eWallet API.
327
327
 
328
328
  ```
329
- transaction = OmiseGO::Transaction.all_for_user(
330
- provider_user_id: "some_uuid"
329
+ transaction = OmiseGO::Transaction.all(
330
+ params: {
331
+ provider_user_id: "some_uuid"
332
+ }
331
333
  )
332
334
  ```
333
335
 
@@ -339,6 +341,7 @@ Parameters can be specified in the following way:
339
341
 
340
342
  ```
341
343
  transaction = OmiseGO::Transaction.all(params: {
344
+ provider_user_id: "some_uuid",
342
345
  page: 1,
343
346
  per_page: 10,
344
347
  sort_by: 'created_at',
@@ -1,5 +1,5 @@
1
1
  module OmiseGO
2
2
  class MintedToken < Base
3
- attributes :id, :symbol, :subunit_to_unit, :name
3
+ attributes :id, :symbol, :subunit_to_unit, :name, :metadata, :encrypted_metadata
4
4
  end
5
5
  end
@@ -1,11 +1,20 @@
1
1
  module OmiseGO
2
2
  class Transaction < Base
3
- attributes :id, :idempotency_token, :amount, :from, :to, :exchange,
4
- :metadata, :status, :created_at, :updated_at
3
+ attributes :id, :idempotency_token, :from, :to, :exchange,
4
+ :metadata, :encrypted_metadata, :status, :created_at
5
5
 
6
6
  class << self
7
7
  def all(params: {}, client: nil)
8
- request(client).send('transaction.all', {}, params: params).data
8
+ if params[:provider_user_id]
9
+ all_for_user(
10
+ provider_user_id: params[:provider_user_id],
11
+ address: params[:address],
12
+ params: params,
13
+ client: client
14
+ )
15
+ else
16
+ request(client).send('transaction.all', {}, params: params).data
17
+ end
9
18
  end
10
19
 
11
20
  def all_for_user(provider_user_id:, address: nil, params: {}, client: nil)
@@ -1,3 +1,3 @@
1
1
  module OmiseGO
2
- VERSION = '0.9.5'.freeze
2
+ VERSION = '0.9.6'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omisego
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.5
4
+ version: 0.9.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thibault
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-03-05 00:00:00.000000000 Z
11
+ date: 2018-03-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday