budgea_client 1.3.2 → 1.3.3
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/budgea_client.gemspec +2 -1
- data/budgea_openapi.json +17 -8
- data/docs/AuthenticationApi.md +2 -2
- data/docs/PFMApi.md +5 -5
- data/lib/budgea_client/api/authentication_api.rb +2 -2
- data/lib/budgea_client/api/pfm_api.rb +5 -5
- data/lib/budgea_client/version.rb +1 -1
- data/pkg/budgea_client-1.3.2.gem +0 -0
- metadata +3 -7
- data/pkg/budgea_client-1.0.0.gem +0 -0
- data/pkg/budgea_client-1.1.0.gem +0 -0
- data/pkg/budgea_client-1.2.0.gem +0 -0
- data/pkg/budgea_client-1.3.0.gem +0 -0
- data/pkg/budgea_client-1.3.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: 0e5192f2e2b1046f6932f04eb5c247f5b8056e5ede6fee74f3fb36af391ce6b9
|
4
|
+
data.tar.gz: f05ca954ee756f8e4e2c9f187403f3ee86a706041a69e12dbf18d3329275a1cf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d3e19f9aaeb90560a96c838d6178c6601a8ed5a287072af5ad6d6db8532afc020f4eda43c3a1dd7425a4723c40f7b0c0139100cfb2bac94690f58a5906e96dbe
|
7
|
+
data.tar.gz: a798b5c76687622da6cbe1380069ff0615aa12d888b597c3408a8623e098911047c5c8c3d28968a007de4eb7d23742114348c7b537b09ea1f2fb358f5613e954
|
data/Gemfile.lock
CHANGED
data/budgea_client.gemspec
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
|
2
3
|
$:.push File.expand_path("../lib", __FILE__)
|
3
4
|
require "budgea_client/version"
|
@@ -25,7 +26,7 @@ Gem::Specification.new do |s|
|
|
25
26
|
s.add_development_dependency 'autotest-growl', '~> 0.2', '>= 0.2.16'
|
26
27
|
s.add_development_dependency 'autotest-fsevent', '~> 0.2', '>= 0.2.12'
|
27
28
|
|
28
|
-
s.files = `find *`.split("\n").uniq.sort.select
|
29
|
+
s.files = `find *`.split("\n").uniq.sort.select{|f| !f.empty? }
|
29
30
|
s.test_files = `find spec/*`.split("\n")
|
30
31
|
s.executables = []
|
31
32
|
s.require_paths = ["lib"]
|
data/budgea_openapi.json
CHANGED
@@ -121,7 +121,8 @@
|
|
121
121
|
"description": "application in use"
|
122
122
|
}
|
123
123
|
],
|
124
|
-
"summary": "Confirm email address"
|
124
|
+
"summary": "Confirm email address",
|
125
|
+
"consumes": ["application/x-www-form-urlencoded"]
|
125
126
|
}
|
126
127
|
},
|
127
128
|
"/auth/confirmNewEmail": {
|
@@ -144,7 +145,8 @@
|
|
144
145
|
"description": "token received by email"
|
145
146
|
}
|
146
147
|
],
|
147
|
-
"summary": "Confirm new email address"
|
148
|
+
"summary": "Confirm new email address",
|
149
|
+
"consumes": ["application/x-www-form-urlencoded"]
|
148
150
|
}
|
149
151
|
},
|
150
152
|
"/auth/cookie": {
|
@@ -188,7 +190,8 @@
|
|
188
190
|
"description": "scope requested for the token"
|
189
191
|
}
|
190
192
|
],
|
191
|
-
"summary": "Login with credentials and set as cookie"
|
193
|
+
"summary": "Login with credentials and set as cookie",
|
194
|
+
"consumes": ["application/x-www-form-urlencoded"]
|
192
195
|
}
|
193
196
|
},
|
194
197
|
"/auth/init": {
|
@@ -245,7 +248,7 @@
|
|
245
248
|
}
|
246
249
|
],
|
247
250
|
"summary": "Create a new anonymous user",
|
248
|
-
"consumes": "application/x-www-form-urlencoded"
|
251
|
+
"consumes": ["application/x-www-form-urlencoded"]
|
249
252
|
}
|
250
253
|
},
|
251
254
|
"/auth/register": {
|
@@ -323,7 +326,8 @@
|
|
323
326
|
"description": "APNS or GCM token to send notifications to device"
|
324
327
|
}
|
325
328
|
],
|
326
|
-
"summary": "Register to API"
|
329
|
+
"summary": "Register to API",
|
330
|
+
"consumes": ["application/x-www-form-urlencoded"]
|
327
331
|
}
|
328
332
|
},
|
329
333
|
"/auth/token": {
|
@@ -404,7 +408,8 @@
|
|
404
408
|
"description": "scope requested for the token"
|
405
409
|
}
|
406
410
|
],
|
407
|
-
"summary": "Login to API with credentials"
|
411
|
+
"summary": "Login to API with credentials",
|
412
|
+
"consumes": ["application/x-www-form-urlencoded"]
|
408
413
|
},
|
409
414
|
"delete": {
|
410
415
|
"responses": {
|
@@ -490,7 +495,8 @@
|
|
490
495
|
"description": "redirect uri used by user"
|
491
496
|
}
|
492
497
|
],
|
493
|
-
"summary": "Transform a temporary code to a access_token"
|
498
|
+
"summary": "Transform a temporary code to a access_token",
|
499
|
+
"consumes": ["application/x-www-form-urlencoded"]
|
494
500
|
}
|
495
501
|
},
|
496
502
|
"/auth/token/code": {
|
@@ -10018,7 +10024,10 @@
|
|
10018
10024
|
"in": "query"
|
10019
10025
|
}
|
10020
10026
|
],
|
10021
|
-
"summary": "Attach an existing document to a transaction or a transactions_cluster"
|
10027
|
+
"summary": "Attach an existing document to a transaction or a transactions_cluster",
|
10028
|
+
"consumes": [
|
10029
|
+
"multipart/form-data"
|
10030
|
+
]
|
10022
10031
|
},
|
10023
10032
|
"delete": {
|
10024
10033
|
"responses": {
|
data/docs/AuthenticationApi.md
CHANGED
@@ -59,7 +59,7 @@ No authorization required
|
|
59
59
|
|
60
60
|
### HTTP request headers
|
61
61
|
|
62
|
-
- **Content-Type**: application/
|
62
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
63
63
|
- **Accept**: application/json
|
64
64
|
|
65
65
|
|
@@ -118,7 +118,7 @@ No authorization required
|
|
118
118
|
|
119
119
|
### HTTP request headers
|
120
120
|
|
121
|
-
- **Content-Type**: application/
|
121
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
122
122
|
- **Accept**: application/json
|
123
123
|
|
124
124
|
|
data/docs/PFMApi.md
CHANGED
@@ -86,7 +86,7 @@ No authorization required
|
|
86
86
|
|
87
87
|
### HTTP request headers
|
88
88
|
|
89
|
-
- **Content-Type**: application/
|
89
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
90
90
|
- **Accept**: application/json
|
91
91
|
|
92
92
|
|
@@ -136,7 +136,7 @@ No authorization required
|
|
136
136
|
|
137
137
|
### HTTP request headers
|
138
138
|
|
139
|
-
- **Content-Type**: application/
|
139
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
140
140
|
- **Accept**: application/json
|
141
141
|
|
142
142
|
|
@@ -192,7 +192,7 @@ No authorization required
|
|
192
192
|
|
193
193
|
### HTTP request headers
|
194
194
|
|
195
|
-
- **Content-Type**: application/
|
195
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
196
196
|
- **Accept**: application/json
|
197
197
|
|
198
198
|
|
@@ -251,7 +251,7 @@ No authorization required
|
|
251
251
|
|
252
252
|
### HTTP request headers
|
253
253
|
|
254
|
-
- **Content-Type**: application/
|
254
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
255
255
|
- **Accept**: application/json
|
256
256
|
|
257
257
|
|
@@ -348,7 +348,7 @@ No authorization required
|
|
348
348
|
|
349
349
|
### HTTP request headers
|
350
350
|
|
351
|
-
- **Content-Type**: application/
|
351
|
+
- **Content-Type**: application/x-www-form-urlencoded
|
352
352
|
- **Accept**: application/json
|
353
353
|
|
354
354
|
|
@@ -42,7 +42,7 @@ module BudgeaClient
|
|
42
42
|
# HTTP header 'Accept' (if needed)
|
43
43
|
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
44
44
|
# HTTP header 'Content-Type'
|
45
|
-
header_params['Content-Type'] = @api_client.select_header_content_type(['application/
|
45
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/x-www-form-urlencoded'])
|
46
46
|
|
47
47
|
# form parameters
|
48
48
|
form_params = {}
|
@@ -115,7 +115,7 @@ module BudgeaClient
|
|
115
115
|
# HTTP header 'Accept' (if needed)
|
116
116
|
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
117
117
|
# HTTP header 'Content-Type'
|
118
|
-
header_params['Content-Type'] = @api_client.select_header_content_type(['application/
|
118
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/x-www-form-urlencoded'])
|
119
119
|
|
120
120
|
# form parameters
|
121
121
|
form_params = {}
|
@@ -44,7 +44,7 @@ module BudgeaClient
|
|
44
44
|
# HTTP header 'Accept' (if needed)
|
45
45
|
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
46
46
|
# HTTP header 'Content-Type'
|
47
|
-
header_params['Content-Type'] = @api_client.select_header_content_type(['application/
|
47
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/x-www-form-urlencoded'])
|
48
48
|
|
49
49
|
# form parameters
|
50
50
|
form_params = {}
|
@@ -105,7 +105,7 @@ module BudgeaClient
|
|
105
105
|
# HTTP header 'Accept' (if needed)
|
106
106
|
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
107
107
|
# HTTP header 'Content-Type'
|
108
|
-
header_params['Content-Type'] = @api_client.select_header_content_type(['application/
|
108
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/x-www-form-urlencoded'])
|
109
109
|
|
110
110
|
# form parameters
|
111
111
|
form_params = {}
|
@@ -176,7 +176,7 @@ module BudgeaClient
|
|
176
176
|
# HTTP header 'Accept' (if needed)
|
177
177
|
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
178
178
|
# HTTP header 'Content-Type'
|
179
|
-
header_params['Content-Type'] = @api_client.select_header_content_type(['application/
|
179
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/x-www-form-urlencoded'])
|
180
180
|
|
181
181
|
# form parameters
|
182
182
|
form_params = {}
|
@@ -250,7 +250,7 @@ module BudgeaClient
|
|
250
250
|
# HTTP header 'Accept' (if needed)
|
251
251
|
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
252
252
|
# HTTP header 'Content-Type'
|
253
|
-
header_params['Content-Type'] = @api_client.select_header_content_type(['application/
|
253
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/x-www-form-urlencoded'])
|
254
254
|
|
255
255
|
# form parameters
|
256
256
|
form_params = {}
|
@@ -372,7 +372,7 @@ module BudgeaClient
|
|
372
372
|
# HTTP header 'Accept' (if needed)
|
373
373
|
header_params['Accept'] = @api_client.select_header_accept(['application/json'])
|
374
374
|
# HTTP header 'Content-Type'
|
375
|
-
header_params['Content-Type'] = @api_client.select_header_content_type(['application/
|
375
|
+
header_params['Content-Type'] = @api_client.select_header_content_type(['application/x-www-form-urlencoded'])
|
376
376
|
|
377
377
|
# form parameters
|
378
378
|
form_params = {}
|
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: 1.3.
|
4
|
+
version: 1.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chaker Nakhli
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-10-
|
11
|
+
date: 2018-10-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -390,11 +390,7 @@ files:
|
|
390
390
|
- lib/budgea_client/models/user_alert.rb
|
391
391
|
- lib/budgea_client/models/webhook.rb
|
392
392
|
- lib/budgea_client/version.rb
|
393
|
-
- pkg/budgea_client-1.
|
394
|
-
- pkg/budgea_client-1.1.0.gem
|
395
|
-
- pkg/budgea_client-1.2.0.gem
|
396
|
-
- pkg/budgea_client-1.3.0.gem
|
397
|
-
- pkg/budgea_client-1.3.1.gem
|
393
|
+
- pkg/budgea_client-1.3.2.gem
|
398
394
|
- spec/api/administration_api_spec.rb
|
399
395
|
- spec/api/authentication_api_spec.rb
|
400
396
|
- spec/api/banks_api_spec.rb
|
data/pkg/budgea_client-1.0.0.gem
DELETED
Binary file
|
data/pkg/budgea_client-1.1.0.gem
DELETED
Binary file
|
data/pkg/budgea_client-1.2.0.gem
DELETED
Binary file
|
data/pkg/budgea_client-1.3.0.gem
DELETED
Binary file
|
data/pkg/budgea_client-1.3.1.gem
DELETED
Binary file
|