budgea_client 3.0.1 → 4.0.0
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 +6 -4
- data/docs/Connector.md +1 -0
- data/lib/budgea_client/models/connector.rb +15 -4
- data/lib/budgea_client/version.rb +1 -1
- data/pkg/budgea_client-3.0.1.gem +0 -0
- data/spec/api/administration_api_spec.rb +225 -23
- data/spec/api/authentication_api_spec.rb +81 -11
- data/spec/api/banks_api_spec.rb +379 -236
- data/spec/api/connections_api_spec.rb +76 -39
- data/spec/api/documents_api_spec.rb +124 -114
- data/spec/api/ocr_api_spec.rb +13 -3
- data/spec/api/oidc_api_spec.rb +14 -4
- data/spec/api/pfm_api_spec.rb +61 -51
- data/spec/api/providers_api_spec.rb +260 -238
- data/spec/api/recipients_api_spec.rb +23 -9
- data/spec/api/terms_api_spec.rb +17 -8
- data/spec/api/transfers_api_spec.rb +88 -57
- data/spec/api/users_management_api_spec.rb +25 -15
- data/spec/api/wealth_api_spec.rb +150 -24
- data/spec/api_client_spec.rb +45 -35
- data/spec/configuration_spec.rb +19 -9
- data/spec/models/access_spec.rb +16 -7
- data/spec/models/account_log_spec.rb +21 -12
- data/spec/models/account_spec.rb +59 -20
- data/spec/models/account_type_spec.rb +19 -10
- data/spec/models/alert_spec.rb +19 -10
- data/spec/models/category_spec.rb +21 -12
- data/spec/models/client_spec.rb +25 -28
- data/spec/models/connection_log_spec.rb +38 -17
- data/spec/models/connection_spec.rb +33 -12
- data/spec/models/connector_logo_spec.rb +16 -7
- data/spec/models/connector_spec.rb +18 -0
- data/spec/models/currency_spec.rb +38 -5
- data/spec/models/device_spec.rb +18 -9
- data/spec/models/document_spec.rb +37 -34
- data/spec/models/document_type_spec.rb +14 -5
- data/spec/models/field_spec.rb +32 -11
- data/spec/models/field_value_spec.rb +13 -4
- data/spec/models/file_spec.rb +15 -6
- data/spec/models/group_spec.rb +19 -10
- data/spec/models/hash_table_spec.rb +15 -6
- data/spec/models/inline_response_200_10_spec.rb +19 -4
- data/spec/models/inline_response_200_11_spec.rb +19 -4
- data/spec/models/inline_response_200_12_spec.rb +19 -4
- data/spec/models/inline_response_200_13_spec.rb +19 -4
- data/spec/models/inline_response_200_14_spec.rb +19 -4
- data/spec/models/inline_response_200_15_spec.rb +19 -4
- data/spec/models/inline_response_200_16_spec.rb +19 -4
- data/spec/models/inline_response_200_17_spec.rb +19 -4
- data/spec/models/inline_response_200_18_spec.rb +19 -4
- data/spec/models/inline_response_200_19_spec.rb +13 -4
- data/spec/models/inline_response_200_1_spec.rb +13 -4
- data/spec/models/inline_response_200_20_spec.rb +19 -4
- data/spec/models/inline_response_200_21_spec.rb +19 -4
- data/spec/models/inline_response_200_22_spec.rb +19 -4
- data/spec/models/inline_response_200_23_spec.rb +19 -4
- data/spec/models/inline_response_200_24_spec.rb +19 -4
- data/spec/models/inline_response_200_25_spec.rb +19 -4
- data/spec/models/inline_response_200_26_spec.rb +19 -4
- data/spec/models/inline_response_200_27_spec.rb +19 -4
- data/spec/models/inline_response_200_28_spec.rb +19 -4
- data/spec/models/inline_response_200_29_spec.rb +19 -4
- data/spec/models/inline_response_200_2_spec.rb +14 -5
- data/spec/models/inline_response_200_30_spec.rb +19 -4
- data/spec/models/inline_response_200_31_spec.rb +19 -4
- data/spec/models/inline_response_200_32_spec.rb +19 -4
- data/spec/models/inline_response_200_33_spec.rb +19 -4
- data/spec/models/inline_response_200_34_spec.rb +7 -1
- data/spec/models/inline_response_200_35_spec.rb +7 -1
- data/spec/models/inline_response_200_36_spec.rb +7 -1
- data/spec/models/inline_response_200_37_spec.rb +7 -1
- data/spec/models/inline_response_200_38_spec.rb +7 -1
- data/spec/models/inline_response_200_3_spec.rb +15 -12
- data/spec/models/inline_response_200_4_spec.rb +14 -17
- data/spec/models/inline_response_200_5_spec.rb +33 -6
- data/spec/models/inline_response_200_6_spec.rb +15 -12
- data/spec/models/inline_response_200_7_spec.rb +25 -4
- data/spec/models/inline_response_200_8_spec.rb +19 -4
- data/spec/models/inline_response_200_9_spec.rb +19 -4
- data/spec/models/inline_response_200_spec.rb +18 -3
- data/spec/models/investment_spec.rb +36 -27
- data/spec/models/investment_value_spec.rb +17 -8
- data/spec/models/invite_spec.rb +17 -8
- data/spec/models/locked_user_spec.rb +14 -5
- data/spec/models/oidc_whitelist_spec.rb +13 -4
- data/spec/models/pocket_spec.rb +21 -12
- data/spec/models/profile_spec.rb +23 -14
- data/spec/models/project_spec.rb +20 -11
- data/spec/models/project_type_spec.rb +14 -5
- data/spec/models/recipient_log_spec.rb +6 -0
- data/spec/models/recipient_spec.rb +44 -17
- data/spec/models/security_spec.rb +16 -7
- data/spec/models/subscription_spec.rb +28 -13
- data/spec/models/terms_of_service_spec.rb +16 -7
- data/spec/models/transaction_information_spec.rb +15 -6
- data/spec/models/transaction_spec.rb +71 -32
- data/spec/models/transactions_cluster_spec.rb +20 -11
- data/spec/models/transfer_log_spec.rb +6 -0
- data/spec/models/transfer_spec.rb +33 -18
- data/spec/models/user_alert_spec.rb +25 -16
- data/spec/models/user_spec.rb +18 -9
- data/spec/models/webhook_spec.rb +31 -10
- data/spec/spec_helper.rb +62 -2
- metadata +3 -14
- data/docs/Bank.md +0 -20
- data/docs/BankCategory.md +0 -9
- data/docs/ConnectionContact.md +0 -17
- data/lib/budgea_client/models/bank.rb +0 -335
- data/lib/budgea_client/models/bank_category.rb +0 -206
- data/lib/budgea_client/models/connection_contact.rb +0 -274
- data/spec/models/bank_category_spec.rb +0 -38
- data/spec/models/bank_spec.rb +0 -92
- data/spec/models/connection_contact_spec.rb +0 -86
data/spec/api/ocr_api_spec.rb
CHANGED
|
@@ -1,4 +1,14 @@
|
|
|
1
|
-
|
|
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
|
|
2
12
|
|
|
3
13
|
require 'spec_helper'
|
|
4
14
|
require 'json'
|
|
@@ -31,7 +41,7 @@ describe 'OCRApi' do
|
|
|
31
41
|
# @option opts [String] :name Name of the document
|
|
32
42
|
# @return [nil]
|
|
33
43
|
describe 'ocr_post test' do
|
|
34
|
-
it
|
|
44
|
+
it 'should work' do
|
|
35
45
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
36
46
|
end
|
|
37
47
|
end
|
|
@@ -46,7 +56,7 @@ describe 'OCRApi' do
|
|
|
46
56
|
# @option opts [String] :name Name of the document
|
|
47
57
|
# @return [nil]
|
|
48
58
|
describe 'users_id_user_ocr_post test' do
|
|
49
|
-
it
|
|
59
|
+
it 'should work' do
|
|
50
60
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
51
61
|
end
|
|
52
62
|
end
|
data/spec/api/oidc_api_spec.rb
CHANGED
|
@@ -1,4 +1,14 @@
|
|
|
1
|
-
|
|
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
|
|
2
12
|
|
|
3
13
|
require 'spec_helper'
|
|
4
14
|
require 'json'
|
|
@@ -30,7 +40,7 @@ describe 'OIDCApi' do
|
|
|
30
40
|
# @option opts [String] :expand
|
|
31
41
|
# @return [OidcWhitelist]
|
|
32
42
|
describe 'oidc_whitelist_id_whitelist_delete test' do
|
|
33
|
-
it
|
|
43
|
+
it 'should work' do
|
|
34
44
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
35
45
|
end
|
|
36
46
|
end
|
|
@@ -44,7 +54,7 @@ describe 'OIDCApi' do
|
|
|
44
54
|
# @option opts [String] :expand
|
|
45
55
|
# @return [OidcWhitelist]
|
|
46
56
|
describe 'oidc_whitelist_id_whitelist_post test' do
|
|
47
|
-
it
|
|
57
|
+
it 'should work' do
|
|
48
58
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
49
59
|
end
|
|
50
60
|
end
|
|
@@ -57,7 +67,7 @@ describe 'OIDCApi' do
|
|
|
57
67
|
# @option opts [String] :expand
|
|
58
68
|
# @return [OidcWhitelist]
|
|
59
69
|
describe 'oidc_whitelist_post test' do
|
|
60
|
-
it
|
|
70
|
+
it 'should work' do
|
|
61
71
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
62
72
|
end
|
|
63
73
|
end
|
data/spec/api/pfm_api_spec.rb
CHANGED
|
@@ -1,4 +1,14 @@
|
|
|
1
|
-
|
|
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
|
|
2
12
|
|
|
3
13
|
require 'spec_helper'
|
|
4
14
|
require 'json'
|
|
@@ -29,7 +39,7 @@ describe 'PFMApi' do
|
|
|
29
39
|
# @param [Hash] opts the optional parameters
|
|
30
40
|
# @return [nil]
|
|
31
41
|
describe 'auth_confirm_new_email_post test' do
|
|
32
|
-
it
|
|
42
|
+
it 'should work' do
|
|
33
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
34
44
|
end
|
|
35
45
|
end
|
|
@@ -42,7 +52,7 @@ describe 'PFMApi' do
|
|
|
42
52
|
# @param [Hash] opts the optional parameters
|
|
43
53
|
# @return [InlineResponse2001]
|
|
44
54
|
describe 'auth_confirm_post test' do
|
|
45
|
-
it
|
|
55
|
+
it 'should work' do
|
|
46
56
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
47
57
|
end
|
|
48
58
|
end
|
|
@@ -57,7 +67,7 @@ describe 'PFMApi' do
|
|
|
57
67
|
# @option opts [String] :scope scope requested for the token
|
|
58
68
|
# @return [nil]
|
|
59
69
|
describe 'auth_cookie_post test' do
|
|
60
|
-
it
|
|
70
|
+
it 'should work' do
|
|
61
71
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
62
72
|
end
|
|
63
73
|
end
|
|
@@ -71,9 +81,9 @@ describe 'PFMApi' do
|
|
|
71
81
|
# @param [Hash] opts the optional parameters
|
|
72
82
|
# @option opts [String] :sponsor sponsor code to get advantages
|
|
73
83
|
# @option opts [String] :notification_token APNS or GCM token to send notifications to device
|
|
74
|
-
# @return [
|
|
84
|
+
# @return [InlineResponse2004]
|
|
75
85
|
describe 'auth_register_post test' do
|
|
76
|
-
it
|
|
86
|
+
it 'should work' do
|
|
77
87
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
78
88
|
end
|
|
79
89
|
end
|
|
@@ -84,7 +94,7 @@ describe 'PFMApi' do
|
|
|
84
94
|
# @param [Hash] opts the optional parameters
|
|
85
95
|
# @return [nil]
|
|
86
96
|
describe 'auth_token_delete test' do
|
|
87
|
-
it
|
|
97
|
+
it 'should work' do
|
|
88
98
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
89
99
|
end
|
|
90
100
|
end
|
|
@@ -97,9 +107,9 @@ describe 'PFMApi' do
|
|
|
97
107
|
# @param application application name
|
|
98
108
|
# @param [Hash] opts the optional parameters
|
|
99
109
|
# @option opts [String] :scope scope requested for the token
|
|
100
|
-
# @return [
|
|
110
|
+
# @return [InlineResponse2005]
|
|
101
111
|
describe 'auth_token_post test' do
|
|
102
|
-
it
|
|
112
|
+
it 'should work' do
|
|
103
113
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
104
114
|
end
|
|
105
115
|
end
|
|
@@ -110,7 +120,7 @@ describe 'PFMApi' do
|
|
|
110
120
|
# @param [Hash] opts the optional parameters
|
|
111
121
|
# @return [nil]
|
|
112
122
|
describe 'hash_delete test' do
|
|
113
|
-
it
|
|
123
|
+
it 'should work' do
|
|
114
124
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
115
125
|
end
|
|
116
126
|
end
|
|
@@ -126,7 +136,7 @@ describe 'PFMApi' do
|
|
|
126
136
|
# @option opts [String] :period split output with the given period (default: month)
|
|
127
137
|
# @return [nil]
|
|
128
138
|
describe 'users_id_user_accounts_id_account_balances_get test' do
|
|
129
|
-
it
|
|
139
|
+
it 'should work' do
|
|
130
140
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
131
141
|
end
|
|
132
142
|
end
|
|
@@ -138,9 +148,9 @@ describe 'PFMApi' do
|
|
|
138
148
|
# @param id_account
|
|
139
149
|
# @param [Hash] opts the optional parameters
|
|
140
150
|
# @option opts [String] :expand
|
|
141
|
-
# @return [
|
|
151
|
+
# @return [InlineResponse20027]
|
|
142
152
|
describe 'users_id_user_accounts_id_account_operationsalert_get test' do
|
|
143
|
-
it
|
|
153
|
+
it 'should work' do
|
|
144
154
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
145
155
|
end
|
|
146
156
|
end
|
|
@@ -155,7 +165,7 @@ describe 'PFMApi' do
|
|
|
155
165
|
# @option opts [String] :expand
|
|
156
166
|
# @return [UserAlert]
|
|
157
167
|
describe 'users_id_user_accounts_id_account_operationsalert_id_operationsalert_delete test' do
|
|
158
|
-
it
|
|
168
|
+
it 'should work' do
|
|
159
169
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
160
170
|
end
|
|
161
171
|
end
|
|
@@ -175,7 +185,7 @@ describe 'PFMApi' do
|
|
|
175
185
|
# @option opts [String] :expand
|
|
176
186
|
# @return [UserAlert]
|
|
177
187
|
describe 'users_id_user_accounts_id_account_operationsalert_id_operationsalert_put test' do
|
|
178
|
-
it
|
|
188
|
+
it 'should work' do
|
|
179
189
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
180
190
|
end
|
|
181
191
|
end
|
|
@@ -194,7 +204,7 @@ describe 'PFMApi' do
|
|
|
194
204
|
# @option opts [String] :expand
|
|
195
205
|
# @return [UserAlert]
|
|
196
206
|
describe 'users_id_user_accounts_id_account_operationsalert_post test' do
|
|
197
|
-
it
|
|
207
|
+
it 'should work' do
|
|
198
208
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
199
209
|
end
|
|
200
210
|
end
|
|
@@ -206,7 +216,7 @@ describe 'PFMApi' do
|
|
|
206
216
|
# @param [Hash] opts the optional parameters
|
|
207
217
|
# @return [Object]
|
|
208
218
|
describe 'users_id_user_accountsalert_get test' do
|
|
209
|
-
it
|
|
219
|
+
it 'should work' do
|
|
210
220
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
211
221
|
end
|
|
212
222
|
end
|
|
@@ -223,7 +233,7 @@ describe 'PFMApi' do
|
|
|
223
233
|
# @option opts [BOOLEAN] :enabled if false, the alert is not taken into account
|
|
224
234
|
# @return [Object]
|
|
225
235
|
describe 'users_id_user_accountsalert_put test' do
|
|
226
|
-
it
|
|
236
|
+
it 'should work' do
|
|
227
237
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
228
238
|
end
|
|
229
239
|
end
|
|
@@ -238,7 +248,7 @@ describe 'PFMApi' do
|
|
|
238
248
|
# @option opts [String] :period split output with the given period (default: month)
|
|
239
249
|
# @return [nil]
|
|
240
250
|
describe 'users_id_user_balances_get test' do
|
|
241
|
-
it
|
|
251
|
+
it 'should work' do
|
|
242
252
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
243
253
|
end
|
|
244
254
|
end
|
|
@@ -255,7 +265,7 @@ describe 'PFMApi' do
|
|
|
255
265
|
# @option opts [String] :period split output with the given period (default: month)
|
|
256
266
|
# @return [nil]
|
|
257
267
|
describe 'users_id_user_connections_id_connection_accounts_id_account_balances_get test' do
|
|
258
|
-
it
|
|
268
|
+
it 'should work' do
|
|
259
269
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
260
270
|
end
|
|
261
271
|
end
|
|
@@ -268,15 +278,15 @@ describe 'PFMApi' do
|
|
|
268
278
|
# @param id_account
|
|
269
279
|
# @param [Hash] opts the optional parameters
|
|
270
280
|
# @option opts [String] :expand
|
|
271
|
-
# @return [
|
|
281
|
+
# @return [InlineResponse20027]
|
|
272
282
|
describe 'users_id_user_connections_id_connection_accounts_id_account_operationsalert_get test' do
|
|
273
|
-
it
|
|
283
|
+
it 'should work' do
|
|
274
284
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
275
285
|
end
|
|
276
286
|
end
|
|
277
287
|
|
|
278
288
|
# unit tests for users_id_user_connections_id_connection_accounts_id_account_operationsalert_id_operationsalert_delete
|
|
279
|
-
# Delete an alert on transactions or
|
|
289
|
+
# Delete an alert on transactions or investments
|
|
280
290
|
# <br><br>
|
|
281
291
|
# @param id_user Hint: you can use 'me' or 'all'
|
|
282
292
|
# @param id_connection
|
|
@@ -286,20 +296,20 @@ describe 'PFMApi' do
|
|
|
286
296
|
# @option opts [String] :expand
|
|
287
297
|
# @return [UserAlert]
|
|
288
298
|
describe 'users_id_user_connections_id_connection_accounts_id_account_operationsalert_id_operationsalert_delete test' do
|
|
289
|
-
it
|
|
299
|
+
it 'should work' do
|
|
290
300
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
291
301
|
end
|
|
292
302
|
end
|
|
293
303
|
|
|
294
304
|
# unit tests for users_id_user_connections_id_connection_accounts_id_account_operationsalert_id_operationsalert_put
|
|
295
|
-
# Edit an alert on transactions or
|
|
305
|
+
# Edit an alert on transactions or investments
|
|
296
306
|
#
|
|
297
307
|
# @param id_user Hint: you can use 'me' or 'all'
|
|
298
308
|
# @param id_connection
|
|
299
309
|
# @param id_account
|
|
300
310
|
# @param id_operationsalert
|
|
301
311
|
# @param [Hash] opts the optional parameters
|
|
302
|
-
# @option opts [String] :type parameter to choose the scope of the alert. accepted: transactions,
|
|
312
|
+
# @option opts [String] :type parameter to choose the scope of the alert. accepted: transactions, investments
|
|
303
313
|
# @option opts [Integer] :income_max capital gain thresholds
|
|
304
314
|
# @option opts [Integer] :expense_max capital loss thresholds
|
|
305
315
|
# @option opts [String] :value_type whether the threshold is given in absolut value or percent. accepted: percent, flat
|
|
@@ -307,13 +317,13 @@ describe 'PFMApi' do
|
|
|
307
317
|
# @option opts [String] :expand
|
|
308
318
|
# @return [UserAlert]
|
|
309
319
|
describe 'users_id_user_connections_id_connection_accounts_id_account_operationsalert_id_operationsalert_put test' do
|
|
310
|
-
it
|
|
320
|
+
it 'should work' do
|
|
311
321
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
312
322
|
end
|
|
313
323
|
end
|
|
314
324
|
|
|
315
325
|
# unit tests for users_id_user_connections_id_connection_accounts_id_account_operationsalert_post
|
|
316
|
-
# Create an alert on transactions or
|
|
326
|
+
# Create an alert on transactions or investments of a given user
|
|
317
327
|
#
|
|
318
328
|
# @param id_user Hint: you can use 'me' or 'all'
|
|
319
329
|
# @param id_connection
|
|
@@ -327,7 +337,7 @@ describe 'PFMApi' do
|
|
|
327
337
|
# @option opts [String] :expand
|
|
328
338
|
# @return [UserAlert]
|
|
329
339
|
describe 'users_id_user_connections_id_connection_accounts_id_account_operationsalert_post test' do
|
|
330
|
-
it
|
|
340
|
+
it 'should work' do
|
|
331
341
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
332
342
|
end
|
|
333
343
|
end
|
|
@@ -343,7 +353,7 @@ describe 'PFMApi' do
|
|
|
343
353
|
# @option opts [String] :period split output with the given period (default: month)
|
|
344
354
|
# @return [nil]
|
|
345
355
|
describe 'users_id_user_connections_id_connection_balances_get test' do
|
|
346
|
-
it
|
|
356
|
+
it 'should work' do
|
|
347
357
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
348
358
|
end
|
|
349
359
|
end
|
|
@@ -354,9 +364,9 @@ describe 'PFMApi' do
|
|
|
354
364
|
# @param id_user Hint: you can use 'me' or 'all'
|
|
355
365
|
# @param [Hash] opts the optional parameters
|
|
356
366
|
# @option opts [String] :expand
|
|
357
|
-
# @return [
|
|
367
|
+
# @return [InlineResponse20036]
|
|
358
368
|
describe 'users_id_user_devices_get test' do
|
|
359
|
-
it
|
|
369
|
+
it 'should work' do
|
|
360
370
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
361
371
|
end
|
|
362
372
|
end
|
|
@@ -370,7 +380,7 @@ describe 'PFMApi' do
|
|
|
370
380
|
# @option opts [String] :expand
|
|
371
381
|
# @return [Device]
|
|
372
382
|
describe 'users_id_user_devices_id_device_delete test' do
|
|
373
|
-
it
|
|
383
|
+
it 'should work' do
|
|
374
384
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
375
385
|
end
|
|
376
386
|
end
|
|
@@ -384,7 +394,7 @@ describe 'PFMApi' do
|
|
|
384
394
|
# @option opts [String] :expand
|
|
385
395
|
# @return [Device]
|
|
386
396
|
describe 'users_id_user_devices_id_device_get test' do
|
|
387
|
-
it
|
|
397
|
+
it 'should work' do
|
|
388
398
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
389
399
|
end
|
|
390
400
|
end
|
|
@@ -401,7 +411,7 @@ describe 'PFMApi' do
|
|
|
401
411
|
# @option opts [String] :expand
|
|
402
412
|
# @return [Device]
|
|
403
413
|
describe 'users_id_user_devices_id_device_put test' do
|
|
404
|
-
it
|
|
414
|
+
it 'should work' do
|
|
405
415
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
406
416
|
end
|
|
407
417
|
end
|
|
@@ -417,7 +427,7 @@ describe 'PFMApi' do
|
|
|
417
427
|
# @option opts [String] :expand
|
|
418
428
|
# @return [Device]
|
|
419
429
|
describe 'users_id_user_devices_post test' do
|
|
420
|
-
it
|
|
430
|
+
it 'should work' do
|
|
421
431
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
422
432
|
end
|
|
423
433
|
end
|
|
@@ -429,7 +439,7 @@ describe 'PFMApi' do
|
|
|
429
439
|
# @param [Hash] opts the optional parameters
|
|
430
440
|
# @return [nil]
|
|
431
441
|
describe 'users_id_user_forecast_get test' do
|
|
432
|
-
it
|
|
442
|
+
it 'should work' do
|
|
433
443
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
434
444
|
end
|
|
435
445
|
end
|
|
@@ -442,7 +452,7 @@ describe 'PFMApi' do
|
|
|
442
452
|
# @option opts [String] :expand
|
|
443
453
|
# @return [User]
|
|
444
454
|
describe 'users_id_user_get test' do
|
|
445
|
-
it
|
|
455
|
+
it 'should work' do
|
|
446
456
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
447
457
|
end
|
|
448
458
|
end
|
|
@@ -453,9 +463,9 @@ describe 'PFMApi' do
|
|
|
453
463
|
# @param id_user Hint: you can use 'me' or 'all'
|
|
454
464
|
# @param [Hash] opts the optional parameters
|
|
455
465
|
# @option opts [String] :expand
|
|
456
|
-
# @return [
|
|
466
|
+
# @return [InlineResponse20027]
|
|
457
467
|
describe 'users_id_user_operationsalert_get test' do
|
|
458
|
-
it
|
|
468
|
+
it 'should work' do
|
|
459
469
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
460
470
|
end
|
|
461
471
|
end
|
|
@@ -469,7 +479,7 @@ describe 'PFMApi' do
|
|
|
469
479
|
# @option opts [String] :expand
|
|
470
480
|
# @return [UserAlert]
|
|
471
481
|
describe 'users_id_user_operationsalert_id_operationsalert_delete test' do
|
|
472
|
-
it
|
|
482
|
+
it 'should work' do
|
|
473
483
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
474
484
|
end
|
|
475
485
|
end
|
|
@@ -488,7 +498,7 @@ describe 'PFMApi' do
|
|
|
488
498
|
# @option opts [String] :expand
|
|
489
499
|
# @return [UserAlert]
|
|
490
500
|
describe 'users_id_user_operationsalert_id_operationsalert_put test' do
|
|
491
|
-
it
|
|
501
|
+
it 'should work' do
|
|
492
502
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
493
503
|
end
|
|
494
504
|
end
|
|
@@ -506,7 +516,7 @@ describe 'PFMApi' do
|
|
|
506
516
|
# @option opts [String] :expand
|
|
507
517
|
# @return [UserAlert]
|
|
508
518
|
describe 'users_id_user_operationsalert_post test' do
|
|
509
|
-
it
|
|
519
|
+
it 'should work' do
|
|
510
520
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
511
521
|
end
|
|
512
522
|
end
|
|
@@ -517,9 +527,9 @@ describe 'PFMApi' do
|
|
|
517
527
|
# @param id_user Hint: you can use 'me' or 'all'
|
|
518
528
|
# @param [Hash] opts the optional parameters
|
|
519
529
|
# @option opts [String] :expand
|
|
520
|
-
# @return [
|
|
530
|
+
# @return [InlineResponse20037]
|
|
521
531
|
describe 'users_id_user_profiles_get test' do
|
|
522
|
-
it
|
|
532
|
+
it 'should work' do
|
|
523
533
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
524
534
|
end
|
|
525
535
|
end
|
|
@@ -533,7 +543,7 @@ describe 'PFMApi' do
|
|
|
533
543
|
# @option opts [String] :expand
|
|
534
544
|
# @return [Profile]
|
|
535
545
|
describe 'users_id_user_profiles_id_profile_get test' do
|
|
536
|
-
it
|
|
546
|
+
it 'should work' do
|
|
537
547
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
538
548
|
end
|
|
539
549
|
end
|
|
@@ -546,7 +556,7 @@ describe 'PFMApi' do
|
|
|
546
556
|
# @option opts [String] :expand
|
|
547
557
|
# @return [Profile]
|
|
548
558
|
describe 'users_id_user_profiles_main_get test' do
|
|
549
|
-
it
|
|
559
|
+
it 'should work' do
|
|
550
560
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
551
561
|
end
|
|
552
562
|
end
|
|
@@ -559,7 +569,7 @@ describe 'PFMApi' do
|
|
|
559
569
|
# @option opts [String] :expand
|
|
560
570
|
# @return [Profile]
|
|
561
571
|
describe 'users_id_user_profiles_me_get test' do
|
|
562
|
-
it
|
|
572
|
+
it 'should work' do
|
|
563
573
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
564
574
|
end
|
|
565
575
|
end
|
|
@@ -579,7 +589,7 @@ describe 'PFMApi' do
|
|
|
579
589
|
# @option opts [String] :expand
|
|
580
590
|
# @return [Profile]
|
|
581
591
|
describe 'users_id_user_profiles_me_put test' do
|
|
582
|
-
it
|
|
592
|
+
it 'should work' do
|
|
583
593
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
584
594
|
end
|
|
585
595
|
end
|
|
@@ -591,7 +601,7 @@ describe 'PFMApi' do
|
|
|
591
601
|
# @param [Hash] opts the optional parameters
|
|
592
602
|
# @return [Object]
|
|
593
603
|
describe 'users_id_user_resume_get test' do
|
|
594
|
-
it
|
|
604
|
+
it 'should work' do
|
|
595
605
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
596
606
|
end
|
|
597
607
|
end
|
|
@@ -605,7 +615,7 @@ describe 'PFMApi' do
|
|
|
605
615
|
# @option opts [Integer] :resume_frequency frequency of the synthesis given in days
|
|
606
616
|
# @return [Object]
|
|
607
617
|
describe 'users_id_user_resume_post test' do
|
|
608
|
-
it
|
|
618
|
+
it 'should work' do
|
|
609
619
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
610
620
|
end
|
|
611
621
|
end
|