budgea_client 4.0.0 → 4.0.1
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/budgea_openapi.json +7 -1
- data/docs/Account.md +1 -0
- data/lib/budgea_client/models/account.rb +12 -1
- data/lib/budgea_client/version.rb +1 -1
- data/pkg/budgea_client-2.0.1.gem +0 -0
- data/pkg/budgea_client-2.0.2.gem +0 -0
- data/pkg/budgea_client-3.0.0.gem +0 -0
- data/pkg/budgea_client-4.0.1.gem +0 -0
- metadata +7 -5
- data/pkg/budgea_client-2.0.0.gem +0 -0
- data/pkg/budgea_client-3.0.1.gem +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c6b9dcb768637d2b12762ba653055b3e04a052999c5e2cd33d892da22bf7c640
|
4
|
+
data.tar.gz: 05f4ce08b6518476016321d0a554a60766e3492e2cc4b8f11e28e1c0e85bbcd1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f8c2ef322898f0c3d37be9d418827719c4f76c9ffe77859588663898755b6ee6520bedcfad170df172716ef13d032377cce0f73d9ff7db562c0206a67a93f952
|
7
|
+
data.tar.gz: 1d0c0e5e3fa1180a52da0249978159070c676737bfe76ea348f592583fd4016bfa602cd79b4c8e40c318b9eb506b3d4f5e64580efddd402ff975f2cb8de4c14c
|
data/Gemfile.lock
CHANGED
data/budgea_openapi.json
CHANGED
@@ -24061,6 +24061,12 @@
|
|
24061
24061
|
"type": "string",
|
24062
24062
|
"description": "Name of the account"
|
24063
24063
|
},
|
24064
|
+
"recipients": {
|
24065
|
+
"type": "array",
|
24066
|
+
"items": {
|
24067
|
+
"$ref": "#/definitions/Recipient"
|
24068
|
+
}
|
24069
|
+
},
|
24064
24070
|
"transactions": {
|
24065
24071
|
"type": "array",
|
24066
24072
|
"items": {
|
@@ -24893,4 +24899,4 @@
|
|
24893
24899
|
"api_key": []
|
24894
24900
|
}
|
24895
24901
|
]
|
24896
|
-
}
|
24902
|
+
}
|
data/docs/Account.md
CHANGED
@@ -22,6 +22,7 @@ Name | Type | Description | Notes
|
|
22
22
|
**id_type** | **Integer** | ID of the account type | [optional]
|
23
23
|
**bookmarked** | **Integer** | This account has been bookmarked by user |
|
24
24
|
**name** | **String** | Name of the account | [optional]
|
25
|
+
**recipients** | [**Array<Recipient>**](Recipient.md) | | [optional]
|
25
26
|
**transactions** | [**Array<Transaction>**](Transaction.md) | | [optional]
|
26
27
|
**error** | **String** | If the last update has failed, the error code | [optional]
|
27
28
|
**usage** | **String** | Account usage | [optional]
|
@@ -71,6 +71,8 @@ module BudgeaClient
|
|
71
71
|
# Name of the account
|
72
72
|
attr_accessor :name
|
73
73
|
|
74
|
+
attr_accessor :recipients
|
75
|
+
|
74
76
|
attr_accessor :transactions
|
75
77
|
|
76
78
|
# If the last update has failed, the error code
|
@@ -104,6 +106,7 @@ module BudgeaClient
|
|
104
106
|
:'id_type' => :'id_type',
|
105
107
|
:'bookmarked' => :'bookmarked',
|
106
108
|
:'name' => :'name',
|
109
|
+
:'recipients' => :'recipients',
|
107
110
|
:'transactions' => :'transactions',
|
108
111
|
:'error' => :'error',
|
109
112
|
:'usage' => :'usage',
|
@@ -133,6 +136,7 @@ module BudgeaClient
|
|
133
136
|
:'id_type' => :'Integer',
|
134
137
|
:'bookmarked' => :'Integer',
|
135
138
|
:'name' => :'String',
|
139
|
+
:'recipients' => :'Array<Recipient>',
|
136
140
|
:'transactions' => :'Array<Transaction>',
|
137
141
|
:'error' => :'String',
|
138
142
|
:'usage' => :'String',
|
@@ -228,6 +232,12 @@ module BudgeaClient
|
|
228
232
|
self.name = attributes[:'name']
|
229
233
|
end
|
230
234
|
|
235
|
+
if attributes.has_key?(:'recipients')
|
236
|
+
if (value = attributes[:'recipients']).is_a?(Array)
|
237
|
+
self.recipients = value
|
238
|
+
end
|
239
|
+
end
|
240
|
+
|
231
241
|
if attributes.has_key?(:'transactions')
|
232
242
|
if (value = attributes[:'transactions']).is_a?(Array)
|
233
243
|
self.transactions = value
|
@@ -309,6 +319,7 @@ module BudgeaClient
|
|
309
319
|
id_type == o.id_type &&
|
310
320
|
bookmarked == o.bookmarked &&
|
311
321
|
name == o.name &&
|
322
|
+
recipients == o.recipients &&
|
312
323
|
transactions == o.transactions &&
|
313
324
|
error == o.error &&
|
314
325
|
usage == o.usage &&
|
@@ -324,7 +335,7 @@ module BudgeaClient
|
|
324
335
|
# Calculates hash code according to all attributes.
|
325
336
|
# @return [Fixnum] Hash code
|
326
337
|
def hash
|
327
|
-
[id, id_connection, id_user, id_parent, number, webid, original_name, balance, coming, display, last_update, deleted, disabled, iban, bic, currency, id_type, bookmarked, name, transactions, error, usage, ownership].hash
|
338
|
+
[id, id_connection, id_user, id_parent, number, webid, original_name, balance, coming, display, last_update, deleted, disabled, iban, bic, currency, id_type, bookmarked, name, recipients, transactions, error, usage, ownership].hash
|
328
339
|
end
|
329
340
|
|
330
341
|
# Builds the object from hash
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: budgea_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.0.
|
4
|
+
version: 4.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chaker Nakhli
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-09-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -421,8 +421,10 @@ files:
|
|
421
421
|
- lib/budgea_client/models/webhook_log.rb
|
422
422
|
- lib/budgea_client/version.rb
|
423
423
|
- original_budgea_openapi.json
|
424
|
-
- pkg/budgea_client-2.0.
|
425
|
-
- pkg/budgea_client-
|
424
|
+
- pkg/budgea_client-2.0.1.gem
|
425
|
+
- pkg/budgea_client-2.0.2.gem
|
426
|
+
- pkg/budgea_client-3.0.0.gem
|
427
|
+
- pkg/budgea_client-4.0.1.gem
|
426
428
|
- spec/api/administration_api_spec.rb
|
427
429
|
- spec/api/authentication_api_spec.rb
|
428
430
|
- spec/api/banks_api_spec.rb
|
@@ -551,7 +553,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
551
553
|
version: '0'
|
552
554
|
requirements: []
|
553
555
|
rubyforge_project:
|
554
|
-
rubygems_version: 2.7.
|
556
|
+
rubygems_version: 2.7.10
|
555
557
|
signing_key:
|
556
558
|
specification_version: 4
|
557
559
|
summary: Budgea API Documentation Ruby Gem
|
data/pkg/budgea_client-2.0.0.gem
DELETED
Binary file
|
data/pkg/budgea_client-3.0.1.gem
DELETED
Binary file
|