budgea_client 2.0.1 → 2.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/Rakefile +5 -1
- data/docs/AuthProvider.md +10 -0
- data/docs/ConfigLog.md +13 -0
- data/docs/HUBApi.md +62 -0
- data/docs/InlineResponse20037.md +8 -0
- data/docs/InlineResponse20038.md +8 -0
- data/docs/Keyword.md +12 -0
- data/docs/WebhookData.md +16 -0
- data/lib/budgea_client/api/hub_api.rb +76 -0
- data/lib/budgea_client/models/auth_provider.rb +218 -0
- data/lib/budgea_client/models/config_log.rb +250 -0
- data/lib/budgea_client/models/inline_response_200_37.rb +190 -0
- data/lib/budgea_client/models/inline_response_200_38.rb +190 -0
- data/lib/budgea_client/models/keyword.rb +244 -0
- data/lib/budgea_client/models/webhook_data.rb +284 -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/spec/api/hub_api_spec.rb +47 -0
- data/spec/models/auth_provider_spec.rb +53 -0
- data/spec/models/config_log_spec.rb +71 -0
- data/spec/models/inline_response_200_37_spec.rb +41 -0
- data/spec/models/inline_response_200_38_spec.rb +41 -0
- data/spec/models/keyword_spec.rb +65 -0
- data/spec/models/webhook_data_spec.rb +89 -0
- metadata +31 -2
data/pkg/budgea_client-2.0.1.gem
CHANGED
Binary file
|
Binary file
|
@@ -0,0 +1,47 @@
|
|
1
|
+
=begin
|
2
|
+
#Budgea API Documentation
|
3
|
+
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
5
|
+
|
6
|
+
OpenAPI spec version: 2.0
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.4.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
|
16
|
+
# Unit tests for BudgeaClient::HUBApi
|
17
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
18
|
+
# Please update as you see appropriate
|
19
|
+
describe 'HUBApi' do
|
20
|
+
before do
|
21
|
+
# run before each test
|
22
|
+
@instance = BudgeaClient::HUBApi.new
|
23
|
+
end
|
24
|
+
|
25
|
+
after do
|
26
|
+
# run after each test
|
27
|
+
end
|
28
|
+
|
29
|
+
describe 'test an instance of HUBApi' do
|
30
|
+
it 'should create an instance of HUBApi' do
|
31
|
+
expect(@instance).to be_instance_of(BudgeaClient::HUBApi)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
# unit tests for webhooks_id_webhook_add_to_data_post
|
36
|
+
# Setup a field to store in user config when calling the endpoint
|
37
|
+
# For each parameter, a value will be added in the webhook data. Use the key to set the name of the field. The values that can be added are to be found in the user configuration.<br><br>
|
38
|
+
# @param id_webhook
|
39
|
+
# @param [Hash] opts the optional parameters
|
40
|
+
# @return [nil]
|
41
|
+
describe 'webhooks_id_webhook_add_to_data_post test' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
=begin
|
2
|
+
#Budgea API Documentation
|
3
|
+
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
5
|
+
|
6
|
+
OpenAPI spec version: 2.0
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.4.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for BudgeaClient::AuthProvider
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'AuthProvider' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = BudgeaClient::AuthProvider.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of AuthProvider' do
|
31
|
+
it 'should create an instance of AuthProvider' do
|
32
|
+
expect(@instance).to be_instance_of(BudgeaClient::AuthProvider)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "id"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "name"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "type"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
end
|
@@ -0,0 +1,71 @@
|
|
1
|
+
=begin
|
2
|
+
#Budgea API Documentation
|
3
|
+
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
5
|
+
|
6
|
+
OpenAPI spec version: 2.0
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.4.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for BudgeaClient::ConfigLog
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'ConfigLog' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = BudgeaClient::ConfigLog.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of ConfigLog' do
|
31
|
+
it 'should create an instance of ConfigLog' do
|
32
|
+
expect(@instance).to be_instance_of(BudgeaClient::ConfigLog)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "id"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "key"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "previous_value"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe 'test attribute "new_value"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
describe 'test attribute "type"' do
|
60
|
+
it 'should work' do
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
describe 'test attribute "timestamp"' do
|
66
|
+
it 'should work' do
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
=begin
|
2
|
+
#Budgea API Documentation
|
3
|
+
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
5
|
+
|
6
|
+
OpenAPI spec version: 2.0
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.4.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for BudgeaClient::InlineResponse20037
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'InlineResponse20037' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = BudgeaClient::InlineResponse20037.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of InlineResponse20037' do
|
31
|
+
it 'should create an instance of InlineResponse20037' do
|
32
|
+
expect(@instance).to be_instance_of(BudgeaClient::InlineResponse20037)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "authproviders"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
=begin
|
2
|
+
#Budgea API Documentation
|
3
|
+
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
5
|
+
|
6
|
+
OpenAPI spec version: 2.0
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.4.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for BudgeaClient::InlineResponse20038
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'InlineResponse20038' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = BudgeaClient::InlineResponse20038.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of InlineResponse20038' do
|
31
|
+
it 'should create an instance of InlineResponse20038' do
|
32
|
+
expect(@instance).to be_instance_of(BudgeaClient::InlineResponse20038)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "webhooklogs"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
end
|
@@ -0,0 +1,65 @@
|
|
1
|
+
=begin
|
2
|
+
#Budgea API Documentation
|
3
|
+
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
5
|
+
|
6
|
+
OpenAPI spec version: 2.0
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.4.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for BudgeaClient::Keyword
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'Keyword' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = BudgeaClient::Keyword.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of Keyword' do
|
31
|
+
it 'should create an instance of Keyword' do
|
32
|
+
expect(@instance).to be_instance_of(BudgeaClient::Keyword)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "id"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "keyword"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "id_category"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe 'test attribute "priority"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
describe 'test attribute "income"' do
|
60
|
+
it 'should work' do
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
end
|
@@ -0,0 +1,89 @@
|
|
1
|
+
=begin
|
2
|
+
#Budgea API Documentation
|
3
|
+
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
5
|
+
|
6
|
+
OpenAPI spec version: 2.0
|
7
|
+
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.4.1
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for BudgeaClient::WebhookData
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'WebhookData' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = BudgeaClient::WebhookData.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of WebhookData' do
|
31
|
+
it 'should create an instance of WebhookData' do
|
32
|
+
expect(@instance).to be_instance_of(BudgeaClient::WebhookData)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "id"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "id_webhook"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "id_service"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe 'test attribute "id_user"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
describe 'test attribute "id_resource"' do
|
60
|
+
it 'should work' do
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
describe 'test attribute "data"' do
|
66
|
+
it 'should work' do
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
describe 'test attribute "mimetype"' do
|
72
|
+
it 'should work' do
|
73
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
describe 'test attribute "created"' do
|
78
|
+
it 'should work' do
|
79
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
describe 'test attribute "success"' do
|
84
|
+
it 'should work' do
|
85
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
end
|
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: 2.0.
|
4
|
+
version: 2.0.2
|
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-07-
|
11
|
+
date: 2019-07-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -210,6 +210,7 @@ files:
|
|
210
210
|
- docs/AccountType.md
|
211
211
|
- docs/AdministrationApi.md
|
212
212
|
- docs/Alert.md
|
213
|
+
- docs/AuthProvider.md
|
213
214
|
- docs/AuthenticationApi.md
|
214
215
|
- docs/Bank.md
|
215
216
|
- docs/BankCategory.md
|
@@ -217,6 +218,7 @@ files:
|
|
217
218
|
- docs/Category.md
|
218
219
|
- docs/Certificate.md
|
219
220
|
- docs/Client.md
|
221
|
+
- docs/ConfigLog.md
|
220
222
|
- docs/Connection.md
|
221
223
|
- docs/ConnectionContact.md
|
222
224
|
- docs/ConnectionLog.md
|
@@ -233,6 +235,7 @@ files:
|
|
233
235
|
- docs/FieldValue.md
|
234
236
|
- docs/File.md
|
235
237
|
- docs/Group.md
|
238
|
+
- docs/HUBApi.md
|
236
239
|
- docs/HashTable.md
|
237
240
|
- docs/InlineResponse200.md
|
238
241
|
- docs/InlineResponse2001.md
|
@@ -265,6 +268,8 @@ files:
|
|
265
268
|
- docs/InlineResponse20034.md
|
266
269
|
- docs/InlineResponse20035.md
|
267
270
|
- docs/InlineResponse20036.md
|
271
|
+
- docs/InlineResponse20037.md
|
272
|
+
- docs/InlineResponse20038.md
|
268
273
|
- docs/InlineResponse2004.md
|
269
274
|
- docs/InlineResponse2005.md
|
270
275
|
- docs/InlineResponse2006.md
|
@@ -274,6 +279,7 @@ files:
|
|
274
279
|
- docs/Investment.md
|
275
280
|
- docs/InvestmentValue.md
|
276
281
|
- docs/Invite.md
|
282
|
+
- docs/Keyword.md
|
277
283
|
- docs/LockedUser.md
|
278
284
|
- docs/OCRApi.md
|
279
285
|
- docs/OIDCApi.md
|
@@ -302,6 +308,7 @@ files:
|
|
302
308
|
- docs/UsersManagementApi.md
|
303
309
|
- docs/WealthApi.md
|
304
310
|
- docs/Webhook.md
|
311
|
+
- docs/WebhookData.md
|
305
312
|
- docs/WebhookLog.md
|
306
313
|
- git_push.sh
|
307
314
|
- lib/budgea_client.rb
|
@@ -310,6 +317,7 @@ files:
|
|
310
317
|
- lib/budgea_client/api/banks_api.rb
|
311
318
|
- lib/budgea_client/api/connections_api.rb
|
312
319
|
- lib/budgea_client/api/documents_api.rb
|
320
|
+
- lib/budgea_client/api/hub_api.rb
|
313
321
|
- lib/budgea_client/api/ocr_api.rb
|
314
322
|
- lib/budgea_client/api/oidc_api.rb
|
315
323
|
- lib/budgea_client/api/pfm_api.rb
|
@@ -327,11 +335,13 @@ files:
|
|
327
335
|
- lib/budgea_client/models/account_log.rb
|
328
336
|
- lib/budgea_client/models/account_type.rb
|
329
337
|
- lib/budgea_client/models/alert.rb
|
338
|
+
- lib/budgea_client/models/auth_provider.rb
|
330
339
|
- lib/budgea_client/models/bank.rb
|
331
340
|
- lib/budgea_client/models/bank_category.rb
|
332
341
|
- lib/budgea_client/models/category.rb
|
333
342
|
- lib/budgea_client/models/certificate.rb
|
334
343
|
- lib/budgea_client/models/client.rb
|
344
|
+
- lib/budgea_client/models/config_log.rb
|
335
345
|
- lib/budgea_client/models/connection.rb
|
336
346
|
- lib/budgea_client/models/connection_contact.rb
|
337
347
|
- lib/budgea_client/models/connection_log.rb
|
@@ -378,6 +388,8 @@ files:
|
|
378
388
|
- lib/budgea_client/models/inline_response_200_34.rb
|
379
389
|
- lib/budgea_client/models/inline_response_200_35.rb
|
380
390
|
- lib/budgea_client/models/inline_response_200_36.rb
|
391
|
+
- lib/budgea_client/models/inline_response_200_37.rb
|
392
|
+
- lib/budgea_client/models/inline_response_200_38.rb
|
381
393
|
- lib/budgea_client/models/inline_response_200_4.rb
|
382
394
|
- lib/budgea_client/models/inline_response_200_5.rb
|
383
395
|
- lib/budgea_client/models/inline_response_200_6.rb
|
@@ -387,6 +399,7 @@ files:
|
|
387
399
|
- lib/budgea_client/models/investment.rb
|
388
400
|
- lib/budgea_client/models/investment_value.rb
|
389
401
|
- lib/budgea_client/models/invite.rb
|
402
|
+
- lib/budgea_client/models/keyword.rb
|
390
403
|
- lib/budgea_client/models/locked_user.rb
|
391
404
|
- lib/budgea_client/models/oidc_whitelist.rb
|
392
405
|
- lib/budgea_client/models/pocket.rb
|
@@ -406,15 +419,18 @@ files:
|
|
406
419
|
- lib/budgea_client/models/user.rb
|
407
420
|
- lib/budgea_client/models/user_alert.rb
|
408
421
|
- lib/budgea_client/models/webhook.rb
|
422
|
+
- lib/budgea_client/models/webhook_data.rb
|
409
423
|
- lib/budgea_client/models/webhook_log.rb
|
410
424
|
- lib/budgea_client/version.rb
|
411
425
|
- original_budgea_openapi.json
|
412
426
|
- pkg/budgea_client-2.0.1.gem
|
427
|
+
- pkg/budgea_client-2.0.2.gem
|
413
428
|
- spec/api/administration_api_spec.rb
|
414
429
|
- spec/api/authentication_api_spec.rb
|
415
430
|
- spec/api/banks_api_spec.rb
|
416
431
|
- spec/api/connections_api_spec.rb
|
417
432
|
- spec/api/documents_api_spec.rb
|
433
|
+
- spec/api/hub_api_spec.rb
|
418
434
|
- spec/api/ocr_api_spec.rb
|
419
435
|
- spec/api/oidc_api_spec.rb
|
420
436
|
- spec/api/pfm_api_spec.rb
|
@@ -431,11 +447,13 @@ files:
|
|
431
447
|
- spec/models/account_spec.rb
|
432
448
|
- spec/models/account_type_spec.rb
|
433
449
|
- spec/models/alert_spec.rb
|
450
|
+
- spec/models/auth_provider_spec.rb
|
434
451
|
- spec/models/bank_category_spec.rb
|
435
452
|
- spec/models/bank_spec.rb
|
436
453
|
- spec/models/category_spec.rb
|
437
454
|
- spec/models/certificate_spec.rb
|
438
455
|
- spec/models/client_spec.rb
|
456
|
+
- spec/models/config_log_spec.rb
|
439
457
|
- spec/models/connection_contact_spec.rb
|
440
458
|
- spec/models/connection_log_spec.rb
|
441
459
|
- spec/models/connection_spec.rb
|
@@ -480,6 +498,8 @@ files:
|
|
480
498
|
- spec/models/inline_response_200_34_spec.rb
|
481
499
|
- spec/models/inline_response_200_35_spec.rb
|
482
500
|
- spec/models/inline_response_200_36_spec.rb
|
501
|
+
- spec/models/inline_response_200_37_spec.rb
|
502
|
+
- spec/models/inline_response_200_38_spec.rb
|
483
503
|
- spec/models/inline_response_200_3_spec.rb
|
484
504
|
- spec/models/inline_response_200_4_spec.rb
|
485
505
|
- spec/models/inline_response_200_5_spec.rb
|
@@ -491,6 +511,7 @@ files:
|
|
491
511
|
- spec/models/investment_spec.rb
|
492
512
|
- spec/models/investment_value_spec.rb
|
493
513
|
- spec/models/invite_spec.rb
|
514
|
+
- spec/models/keyword_spec.rb
|
494
515
|
- spec/models/locked_user_spec.rb
|
495
516
|
- spec/models/oidc_whitelist_spec.rb
|
496
517
|
- spec/models/pocket_spec.rb
|
@@ -509,6 +530,7 @@ files:
|
|
509
530
|
- spec/models/transfer_spec.rb
|
510
531
|
- spec/models/user_alert_spec.rb
|
511
532
|
- spec/models/user_spec.rb
|
533
|
+
- spec/models/webhook_data_spec.rb
|
512
534
|
- spec/models/webhook_log_spec.rb
|
513
535
|
- spec/models/webhook_spec.rb
|
514
536
|
- spec/spec_helper.rb
|
@@ -549,10 +571,12 @@ test_files:
|
|
549
571
|
- spec/api/connections_api_spec.rb
|
550
572
|
- spec/api/documents_api_spec.rb
|
551
573
|
- spec/api/administration_api_spec.rb
|
574
|
+
- spec/api/hub_api_spec.rb
|
552
575
|
- spec/api/terms_api_spec.rb
|
553
576
|
- spec/api/pfm_api_spec.rb
|
554
577
|
- spec/api_client_spec.rb
|
555
578
|
- spec/configuration_spec.rb
|
579
|
+
- spec/models/inline_response_200_37_spec.rb
|
556
580
|
- spec/models/inline_response_200_27_spec.rb
|
557
581
|
- spec/models/webhook_spec.rb
|
558
582
|
- spec/models/connection_log_spec.rb
|
@@ -579,6 +603,7 @@ test_files:
|
|
579
603
|
- spec/models/inline_response_200_19_spec.rb
|
580
604
|
- spec/models/user_alert_spec.rb
|
581
605
|
- spec/models/project_type_spec.rb
|
606
|
+
- spec/models/keyword_spec.rb
|
582
607
|
- spec/models/device_spec.rb
|
583
608
|
- spec/models/inline_response_200_12_spec.rb
|
584
609
|
- spec/models/inline_response_200_8_spec.rb
|
@@ -590,6 +615,7 @@ test_files:
|
|
590
615
|
- spec/models/inline_response_200_25_spec.rb
|
591
616
|
- spec/models/connector_logo_spec.rb
|
592
617
|
- spec/models/inline_response_200_35_spec.rb
|
618
|
+
- spec/models/webhook_data_spec.rb
|
593
619
|
- spec/models/connector_spec.rb
|
594
620
|
- spec/models/terms_of_service_spec.rb
|
595
621
|
- spec/models/invite_spec.rb
|
@@ -617,11 +643,14 @@ test_files:
|
|
617
643
|
- spec/models/subscription_spec.rb
|
618
644
|
- spec/models/group_spec.rb
|
619
645
|
- spec/models/transactions_cluster_spec.rb
|
646
|
+
- spec/models/inline_response_200_38_spec.rb
|
620
647
|
- spec/models/inline_response_200_28_spec.rb
|
648
|
+
- spec/models/config_log_spec.rb
|
621
649
|
- spec/models/recipient_spec.rb
|
622
650
|
- spec/models/profile_spec.rb
|
623
651
|
- spec/models/inline_response_200_6_spec.rb
|
624
652
|
- spec/models/connector_category_spec.rb
|
653
|
+
- spec/models/auth_provider_spec.rb
|
625
654
|
- spec/models/inline_response_200_33_spec.rb
|
626
655
|
- spec/models/inline_response_200_23_spec.rb
|
627
656
|
- spec/models/inline_response_200_15_spec.rb
|