budgea_client 5.0.3 → 5.0.4
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/README.md +4 -4
- data/budgea_openapi.json +7 -0
- data/config.json +1 -1
- data/config.yaml +15 -0
- data/docs/BanksApi.md +2 -0
- data/docs/ConnectionsApi.md +2 -0
- data/docs/ProvidersApi.md +2 -0
- data/lib/budgea_client/api/banks_api.rb +3 -0
- data/lib/budgea_client/api/connections_api.rb +3 -0
- data/lib/budgea_client/api/providers_api.rb +3 -0
- 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
- data/pkg/budgea_client-4.0.2.gem +0 -0
- data/pkg/budgea_client-4.0.3.gem +0 -0
- metadata +10 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b6e6113e116feffbaf40a67ac60f4ac86db4da8f0061b7600b833b2eddaeed9a
|
|
4
|
+
data.tar.gz: 3fd23f678b1145553c2b4cab82a4411f9dc233b19ef42ccc3ca24f87dc2a3634
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a3d392db9d9d248d9f5dcc1ff02a7a1262661e2d0c865e9de7e11621f8bd63b262f24ee6f59b34890a3bb08cd4335ebab594485a37349022cd54e834b2a5dd0a
|
|
7
|
+
data.tar.gz: 1967406f4ee5bef08f670cecd4723049424ff6d935caf45b5a171f950cf1edea44ffaeadd40138fddda81b2730618438166d04dc1c1e349139f81bf098fea45a
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -7,7 +7,7 @@ No description provided (generated by Swagger Codegen https://github.com/swagger
|
|
|
7
7
|
This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
|
|
8
8
|
|
|
9
9
|
- API version: 2.0
|
|
10
|
-
- Package version:
|
|
10
|
+
- Package version: 5.0.4
|
|
11
11
|
- Build package: io.swagger.codegen.languages.RubyClientCodegen
|
|
12
12
|
|
|
13
13
|
## Installation
|
|
@@ -23,15 +23,15 @@ gem build budgea_client.gemspec
|
|
|
23
23
|
Then either install the gem locally:
|
|
24
24
|
|
|
25
25
|
```shell
|
|
26
|
-
gem install ./budgea_client-
|
|
26
|
+
gem install ./budgea_client-5.0.4.gem
|
|
27
27
|
```
|
|
28
|
-
(for development, run `gem install --dev ./budgea_client-
|
|
28
|
+
(for development, run `gem install --dev ./budgea_client-5.0.4.gem` to install the development dependencies)
|
|
29
29
|
|
|
30
30
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
|
31
31
|
|
|
32
32
|
Finally add this to the Gemfile:
|
|
33
33
|
|
|
34
|
-
gem 'budgea_client', '~>
|
|
34
|
+
gem 'budgea_client', '~> 5.0.4'
|
|
35
35
|
|
|
36
36
|
### Install from Git
|
|
37
37
|
|
data/budgea_openapi.json
CHANGED
|
@@ -8370,6 +8370,13 @@
|
|
|
8370
8370
|
"name": "id_provider",
|
|
8371
8371
|
"description": "ID of the provider"
|
|
8372
8372
|
},
|
|
8373
|
+
{
|
|
8374
|
+
"required": false,
|
|
8375
|
+
"in": "formData",
|
|
8376
|
+
"type": "boolean",
|
|
8377
|
+
"name": "resume",
|
|
8378
|
+
"description": "Resume a decoupled connection creation"
|
|
8379
|
+
},
|
|
8373
8380
|
{
|
|
8374
8381
|
"required": false,
|
|
8375
8382
|
"type": "string",
|
data/config.json
CHANGED
data/config.yaml
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Description: gem name (convention: underscore_case).
|
|
2
|
+
gemName: budgea_client
|
|
3
|
+
|
|
4
|
+
# Description: top module name (convention: CamelCase, usually corresponding to gem name).
|
|
5
|
+
moduleName: BudgeaClient
|
|
6
|
+
|
|
7
|
+
# Description: gem version.
|
|
8
|
+
gemVersion: 4.0.1
|
|
9
|
+
|
|
10
|
+
# Description: gem author (only one is supported).
|
|
11
|
+
gemAuthor: Cashbee
|
|
12
|
+
|
|
13
|
+
# Description: gem author email (only one is supported).
|
|
14
|
+
gemAuthorEmail: hello@cashbee.fr
|
|
15
|
+
|
data/docs/BanksApi.md
CHANGED
|
@@ -7701,6 +7701,7 @@ opts = {
|
|
|
7701
7701
|
website2: 'website_example', # String | bank additional login parameter
|
|
7702
7702
|
login: 'login_example', # String | bank additional login parameter
|
|
7703
7703
|
id_provider: 56, # Integer | ID of the provider
|
|
7704
|
+
resume: true, # BOOLEAN | Resume a decoupled connection creation
|
|
7704
7705
|
expand: 'expand_example' # String |
|
|
7705
7706
|
}
|
|
7706
7707
|
|
|
@@ -7735,6 +7736,7 @@ Name | Type | Description | Notes
|
|
|
7735
7736
|
**website2** | **String**| bank additional login parameter | [optional]
|
|
7736
7737
|
**login** | **String**| bank additional login parameter | [optional]
|
|
7737
7738
|
**id_provider** | **Integer**| ID of the provider | [optional]
|
|
7739
|
+
**resume** | **BOOLEAN**| Resume a decoupled connection creation | [optional]
|
|
7738
7740
|
**expand** | **String**| | [optional]
|
|
7739
7741
|
|
|
7740
7742
|
### Return type
|
data/docs/ConnectionsApi.md
CHANGED
|
@@ -1655,6 +1655,7 @@ opts = {
|
|
|
1655
1655
|
website2: 'website_example', # String | bank additional login parameter
|
|
1656
1656
|
login: 'login_example', # String | bank additional login parameter
|
|
1657
1657
|
id_provider: 56, # Integer | ID of the provider
|
|
1658
|
+
resume: true, # BOOLEAN | Resume a decoupled connection creation
|
|
1658
1659
|
expand: 'expand_example' # String |
|
|
1659
1660
|
}
|
|
1660
1661
|
|
|
@@ -1689,6 +1690,7 @@ Name | Type | Description | Notes
|
|
|
1689
1690
|
**website2** | **String**| bank additional login parameter | [optional]
|
|
1690
1691
|
**login** | **String**| bank additional login parameter | [optional]
|
|
1691
1692
|
**id_provider** | **Integer**| ID of the provider | [optional]
|
|
1693
|
+
**resume** | **BOOLEAN**| Resume a decoupled connection creation | [optional]
|
|
1692
1694
|
**expand** | **String**| | [optional]
|
|
1693
1695
|
|
|
1694
1696
|
### Return type
|
data/docs/ProvidersApi.md
CHANGED
|
@@ -6519,6 +6519,7 @@ opts = {
|
|
|
6519
6519
|
website2: 'website_example', # String | bank additional login parameter
|
|
6520
6520
|
login: 'login_example', # String | bank additional login parameter
|
|
6521
6521
|
id_provider: 56, # Integer | ID of the provider
|
|
6522
|
+
resume: true, # BOOLEAN | Resume a decoupled connection creation
|
|
6522
6523
|
expand: 'expand_example' # String |
|
|
6523
6524
|
}
|
|
6524
6525
|
|
|
@@ -6553,6 +6554,7 @@ Name | Type | Description | Notes
|
|
|
6553
6554
|
**website2** | **String**| bank additional login parameter | [optional]
|
|
6554
6555
|
**login** | **String**| bank additional login parameter | [optional]
|
|
6555
6556
|
**id_provider** | **Integer**| ID of the provider | [optional]
|
|
6557
|
+
**resume** | **BOOLEAN**| Resume a decoupled connection creation | [optional]
|
|
6556
6558
|
**expand** | **String**| | [optional]
|
|
6557
6559
|
|
|
6558
6560
|
### Return type
|
|
@@ -8039,6 +8039,7 @@ module BudgeaClient
|
|
|
8039
8039
|
# @option opts [String] :website2 bank additional login parameter
|
|
8040
8040
|
# @option opts [String] :login bank additional login parameter
|
|
8041
8041
|
# @option opts [Integer] :id_provider ID of the provider
|
|
8042
|
+
# @option opts [BOOLEAN] :resume Resume a decoupled connection creation
|
|
8042
8043
|
# @option opts [String] :expand
|
|
8043
8044
|
# @return [Connection]
|
|
8044
8045
|
def users_id_user_connections_post(id_user, opts = {})
|
|
@@ -8067,6 +8068,7 @@ module BudgeaClient
|
|
|
8067
8068
|
# @option opts [String] :website2 bank additional login parameter
|
|
8068
8069
|
# @option opts [String] :login bank additional login parameter
|
|
8069
8070
|
# @option opts [Integer] :id_provider ID of the provider
|
|
8071
|
+
# @option opts [BOOLEAN] :resume Resume a decoupled connection creation
|
|
8070
8072
|
# @option opts [String] :expand
|
|
8071
8073
|
# @return [Array<(Connection, Fixnum, Hash)>] Connection data, response status code and response headers
|
|
8072
8074
|
def users_id_user_connections_post_with_http_info(id_user, opts = {})
|
|
@@ -8110,6 +8112,7 @@ module BudgeaClient
|
|
|
8110
8112
|
form_params['website'] = opts[:'website2'] if !opts[:'website2'].nil?
|
|
8111
8113
|
form_params['login'] = opts[:'login'] if !opts[:'login'].nil?
|
|
8112
8114
|
form_params['id_provider'] = opts[:'id_provider'] if !opts[:'id_provider'].nil?
|
|
8115
|
+
form_params['resume'] = opts[:'resume'] if !opts[:'resume'].nil?
|
|
8113
8116
|
|
|
8114
8117
|
# http body (model)
|
|
8115
8118
|
post_body = nil
|
|
@@ -1681,6 +1681,7 @@ module BudgeaClient
|
|
|
1681
1681
|
# @option opts [String] :website2 bank additional login parameter
|
|
1682
1682
|
# @option opts [String] :login bank additional login parameter
|
|
1683
1683
|
# @option opts [Integer] :id_provider ID of the provider
|
|
1684
|
+
# @option opts [BOOLEAN] :resume Resume a decoupled connection creation
|
|
1684
1685
|
# @option opts [String] :expand
|
|
1685
1686
|
# @return [Connection]
|
|
1686
1687
|
def users_id_user_connections_post(id_user, opts = {})
|
|
@@ -1709,6 +1710,7 @@ module BudgeaClient
|
|
|
1709
1710
|
# @option opts [String] :website2 bank additional login parameter
|
|
1710
1711
|
# @option opts [String] :login bank additional login parameter
|
|
1711
1712
|
# @option opts [Integer] :id_provider ID of the provider
|
|
1713
|
+
# @option opts [BOOLEAN] :resume Resume a decoupled connection creation
|
|
1712
1714
|
# @option opts [String] :expand
|
|
1713
1715
|
# @return [Array<(Connection, Fixnum, Hash)>] Connection data, response status code and response headers
|
|
1714
1716
|
def users_id_user_connections_post_with_http_info(id_user, opts = {})
|
|
@@ -1752,6 +1754,7 @@ module BudgeaClient
|
|
|
1752
1754
|
form_params['website'] = opts[:'website2'] if !opts[:'website2'].nil?
|
|
1753
1755
|
form_params['login'] = opts[:'login'] if !opts[:'login'].nil?
|
|
1754
1756
|
form_params['id_provider'] = opts[:'id_provider'] if !opts[:'id_provider'].nil?
|
|
1757
|
+
form_params['resume'] = opts[:'resume'] if !opts[:'resume'].nil?
|
|
1755
1758
|
|
|
1756
1759
|
# http body (model)
|
|
1757
1760
|
post_body = nil
|
|
@@ -7110,6 +7110,7 @@ module BudgeaClient
|
|
|
7110
7110
|
# @option opts [String] :website2 bank additional login parameter
|
|
7111
7111
|
# @option opts [String] :login bank additional login parameter
|
|
7112
7112
|
# @option opts [Integer] :id_provider ID of the provider
|
|
7113
|
+
# @option opts [BOOLEAN] :resume Resume a decoupled connection creation
|
|
7113
7114
|
# @option opts [String] :expand
|
|
7114
7115
|
# @return [Connection]
|
|
7115
7116
|
def users_id_user_connections_post(id_user, opts = {})
|
|
@@ -7138,6 +7139,7 @@ module BudgeaClient
|
|
|
7138
7139
|
# @option opts [String] :website2 bank additional login parameter
|
|
7139
7140
|
# @option opts [String] :login bank additional login parameter
|
|
7140
7141
|
# @option opts [Integer] :id_provider ID of the provider
|
|
7142
|
+
# @option opts [BOOLEAN] :resume Resume a decoupled connection creation
|
|
7141
7143
|
# @option opts [String] :expand
|
|
7142
7144
|
# @return [Array<(Connection, Fixnum, Hash)>] Connection data, response status code and response headers
|
|
7143
7145
|
def users_id_user_connections_post_with_http_info(id_user, opts = {})
|
|
@@ -7181,6 +7183,7 @@ module BudgeaClient
|
|
|
7181
7183
|
form_params['website'] = opts[:'website2'] if !opts[:'website2'].nil?
|
|
7182
7184
|
form_params['login'] = opts[:'login'] if !opts[:'login'].nil?
|
|
7183
7185
|
form_params['id_provider'] = opts[:'id_provider'] if !opts[:'id_provider'].nil?
|
|
7186
|
+
form_params['resume'] = opts[:'resume'] if !opts[:'resume'].nil?
|
|
7184
7187
|
|
|
7185
7188
|
# http body (model)
|
|
7186
7189
|
post_body = nil
|
|
Binary file
|
|
Binary file
|
|
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: 5.0.
|
|
4
|
+
version: 5.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chaker Nakhli
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-01-
|
|
11
|
+
date: 2020-01-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|
|
@@ -204,6 +204,7 @@ files:
|
|
|
204
204
|
- budgea_client.gemspec
|
|
205
205
|
- budgea_openapi.json
|
|
206
206
|
- config.json
|
|
207
|
+
- config.yaml
|
|
207
208
|
- docs/Access.md
|
|
208
209
|
- docs/Account.md
|
|
209
210
|
- docs/AccountLog.md
|
|
@@ -435,6 +436,12 @@ files:
|
|
|
435
436
|
- lib/budgea_client/models/webhook_log.rb
|
|
436
437
|
- lib/budgea_client/version.rb
|
|
437
438
|
- original_budgea_openapi.json
|
|
439
|
+
- pkg/budgea_client-2.0.1.gem
|
|
440
|
+
- pkg/budgea_client-2.0.2.gem
|
|
441
|
+
- pkg/budgea_client-3.0.0.gem
|
|
442
|
+
- pkg/budgea_client-4.0.1.gem
|
|
443
|
+
- pkg/budgea_client-4.0.2.gem
|
|
444
|
+
- pkg/budgea_client-4.0.3.gem
|
|
438
445
|
- spec/api/administration_api_spec.rb
|
|
439
446
|
- spec/api/authentication_api_spec.rb
|
|
440
447
|
- spec/api/banks_api_spec.rb
|
|
@@ -570,7 +577,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
570
577
|
version: '0'
|
|
571
578
|
requirements: []
|
|
572
579
|
rubyforge_project:
|
|
573
|
-
rubygems_version: 2.7.
|
|
580
|
+
rubygems_version: 2.7.10
|
|
574
581
|
signing_key:
|
|
575
582
|
specification_version: 4
|
|
576
583
|
summary: Budgea API Documentation Ruby Gem
|