ynap 1.1.0 → 1.1.1
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/CHANGELOG.md +6 -0
- data/README.md +1 -1
- data/lib/ynap/extensions/integer.rb +4 -0
- data/lib/ynap/models/account.rb +1 -1
- data/lib/ynap/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0765046cb49d7117703debee94759aaffbb9e148ee1571f7e415e9f13dfad4ee
|
4
|
+
data.tar.gz: 0f5bc910bcffcacb6d36834619a29bf55c5cc2b442de6ae83e00a40911c08920
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ecab12eb36bb7669f5ca593f4ec3f882fe5eca263d5a409f58c7bbb3590c6b82e8c8c9a5fc976df899f2106baff94aec472b773f1df1c6c335e905af3ed1c9a9
|
7
|
+
data.tar.gz: d02958ec66441c3315136bad52340d3009506dfc9272c6c02cbbc8af9b08c4db992a2e8d1f358ff9a6b1364b798367f1abd0520652b571eae63254b92a1f0a42
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -145,7 +145,7 @@ ynap plaid -c path/to/ynap.yml
|
|
145
145
|
"request_id": "moreRandomString"
|
146
146
|
}
|
147
147
|
```
|
148
|
-
* Paste the `access_token` in front of `:plaid_access_token:` in your `config.yml` file, and `item_id` as the `plaid_id` for your account (Most API requests interact with an Item, which is a Plaid term for a login at a financial institution)
|
148
|
+
* Paste the `access_token` in front of `:plaid_access_token:` in your `config.yml` file, and `item_id` as the `plaid_id` for your account (Most API requests interact with an Item, which is a Plaid term for a login at a financial institution). If that `item_id` does not work, get it with `be bin/ynap plaid_ids boursorama`.
|
149
149
|
|
150
150
|
**What if you have more than one account at this bank?**
|
151
151
|
|
data/lib/ynap/models/account.rb
CHANGED
@@ -6,7 +6,7 @@ class Account < BridgeRecord
|
|
6
6
|
|
7
7
|
attr_reader :plaid_id, :start_date, :ynab_id
|
8
8
|
|
9
|
-
def initialize(plaid_id:, plaid_access_token:, ynab_id
|
9
|
+
def initialize(plaid_id:, plaid_access_token:, ynab_id: nil, start_date: nil)
|
10
10
|
super(plaid_access_token)
|
11
11
|
@plaid_id = plaid_id
|
12
12
|
@ynab_id = ynab_id
|
data/lib/ynap/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ynap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Arnaud Joubay
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-11-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: plaid
|
@@ -138,7 +138,7 @@ dependencies:
|
|
138
138
|
version: '1.0'
|
139
139
|
description: YNAP allows you to automatically import into YNAB the transactions of
|
140
140
|
any bank supported by Plaid.
|
141
|
-
email:
|
141
|
+
email:
|
142
142
|
executables:
|
143
143
|
- ynap
|
144
144
|
extensions: []
|
@@ -175,7 +175,7 @@ metadata:
|
|
175
175
|
homepage_uri: https://github.com/sowenjub/ynap
|
176
176
|
source_code_uri: https://github.com/sowenjub/ynap
|
177
177
|
changelog_uri: https://github.com/sowenjub/ynap/CHANGELOG.md
|
178
|
-
post_install_message:
|
178
|
+
post_install_message:
|
179
179
|
rdoc_options: []
|
180
180
|
require_paths:
|
181
181
|
- lib
|
@@ -190,8 +190,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
190
190
|
- !ruby/object:Gem::Version
|
191
191
|
version: '0'
|
192
192
|
requirements: []
|
193
|
-
rubygems_version: 3.
|
194
|
-
signing_key:
|
193
|
+
rubygems_version: 3.1.4
|
194
|
+
signing_key:
|
195
195
|
specification_version: 4
|
196
196
|
summary: You Need A Plaid
|
197
197
|
test_files: []
|