firefly-iii-client 1.0.1 → 1.0.2
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/README.md +1 -1
- data/firefly-iii-client-1.0.1.gem +0 -0
- data/lib/firefly_iii_client.rb +1 -1
- data/lib/firefly_iii_client/api/budgets_api.rb +1 -1
- data/lib/firefly_iii_client/api/rule_groups_api.rb +1 -1
- data/lib/firefly_iii_client/api/rules_api.rb +1 -1
- data/lib/firefly_iii_client/models/attachment.rb +1 -1
- data/lib/firefly_iii_client/models/category.rb +1 -1
- data/lib/firefly_iii_client/models/rule_group.rb +2 -2
- data/lib/firefly_iii_client/models/tag_single.rb +2 -2
- data/lib/firefly_iii_client/models/transaction_read.rb +1 -1
- data/lib/firefly_iii_client/version.rb +1 -1
- data/spec/configuration_spec.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1c52717b2fdaa82bb773c5ecce67169b316a961cde4d83d0f7ddf86ba290680a
|
4
|
+
data.tar.gz: c2995f5d9616d1eecc7e56e313252b2d503ecb4c0558b01101bce6011155d586
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9d4c806998eba5e39e9c4a971fa567b9be2497a901fd06e9d7c69d11ebbd77bc159dbd8d879cf0f5818dc7ab545ae9bab84607216cec718446369e13a6909a06
|
7
|
+
data.tar.gz: c427d729e5830278ee071c4f05d8b9a432358b15abbf8e0daf27a3d8d1aba854f94c48f230a10b8bda86129ae10f3fcec04082434533916f3f21fa05f5abe93e
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# openapi_client
|
2
2
|
|
3
|
-
|
3
|
+
FireflyIIIClient - the Ruby gem for the Firefly III API
|
4
4
|
|
5
5
|
This is the official documentation of the Firefly III API. You can find accompanying documentation on the website of Firefly III itself (see below). Please report any bugs or issues. This version of the API is live from version v4.7.9 and onwards. You may use the \"Authorize\" button to try the API below.
|
6
6
|
|
Binary file
|
data/lib/firefly_iii_client.rb
CHANGED
@@ -156,7 +156,7 @@ require 'firefly_iii_client/api/users_api'
|
|
156
156
|
module FireflyIIIClient
|
157
157
|
class << self
|
158
158
|
# Customize default settings for the SDK using block.
|
159
|
-
#
|
159
|
+
# FireflyIIIClient.configure do |config|
|
160
160
|
# config.username = "xxx"
|
161
161
|
# config.password = "xxx"
|
162
162
|
# end
|
@@ -345,7 +345,7 @@ module FireflyIIIClient
|
|
345
345
|
end
|
346
346
|
else # model
|
347
347
|
# models (e.g. Pet) or oneOf
|
348
|
-
klass =
|
348
|
+
klass = FireflyIIIClient.const_get(type)
|
349
349
|
klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
350
350
|
end
|
351
351
|
end
|
@@ -207,7 +207,7 @@ module FireflyIIIClient
|
|
207
207
|
end
|
208
208
|
else # model
|
209
209
|
# models (e.g. Pet) or oneOf
|
210
|
-
klass =
|
210
|
+
klass = FireflyIIIClient.const_get(type)
|
211
211
|
klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
212
212
|
end
|
213
213
|
end
|
@@ -13,7 +13,7 @@ OpenAPI Generator version: 5.1.0-SNAPSHOT
|
|
13
13
|
require 'date'
|
14
14
|
require 'time'
|
15
15
|
|
16
|
-
module
|
16
|
+
module FireflyIIIClient
|
17
17
|
class RuleGroup
|
18
18
|
attr_accessor :created_at
|
19
19
|
|
@@ -212,7 +212,7 @@ module OpenapiClient
|
|
212
212
|
end
|
213
213
|
else # model
|
214
214
|
# models (e.g. Pet) or oneOf
|
215
|
-
klass =
|
215
|
+
klass = FireflyIIIClient.const_get(type)
|
216
216
|
klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
217
217
|
end
|
218
218
|
end
|
@@ -13,7 +13,7 @@ OpenAPI Generator version: 5.1.0-SNAPSHOT
|
|
13
13
|
require 'date'
|
14
14
|
require 'time'
|
15
15
|
|
16
|
-
module
|
16
|
+
module FireflyIIIClient
|
17
17
|
class TagSingle
|
18
18
|
attr_accessor :data
|
19
19
|
|
@@ -162,7 +162,7 @@ module OpenapiClient
|
|
162
162
|
end
|
163
163
|
else # model
|
164
164
|
# models (e.g. Pet) or oneOf
|
165
|
-
klass =
|
165
|
+
klass = FireflyIIIClient.const_get(type)
|
166
166
|
klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
167
167
|
end
|
168
168
|
end
|
@@ -190,7 +190,7 @@ module FireflyIIIClient
|
|
190
190
|
end
|
191
191
|
else # model
|
192
192
|
# models (e.g. Pet) or oneOf
|
193
|
-
klass =
|
193
|
+
klass = FireflyIIIClient.const_get(type)
|
194
194
|
klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
195
195
|
end
|
196
196
|
end
|
data/spec/configuration_spec.rb
CHANGED
@@ -19,7 +19,7 @@ describe FireflyIIIClient::Configuration do
|
|
19
19
|
# uncomment below to setup host and base_path
|
20
20
|
# require 'URI'
|
21
21
|
# uri = URI.parse("https://demo.firefly-iii.org")
|
22
|
-
#
|
22
|
+
# FireflyIIIClient.configure do |c|
|
23
23
|
# c.host = uri.host
|
24
24
|
# c.base_path = uri.path
|
25
25
|
# end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: firefly-iii-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kerri Salciccioli
|
@@ -193,6 +193,7 @@ files:
|
|
193
193
|
- docs/UsersApi.md
|
194
194
|
- docs/ValidationError.md
|
195
195
|
- docs/ValidationErrorErrors.md
|
196
|
+
- firefly-iii-client-1.0.1.gem
|
196
197
|
- firefly-iii-client.gemspec
|
197
198
|
- git_push.sh
|
198
199
|
- lib/firefly_iii_client.rb
|