ynab 4.9.0 → 5.1.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.
Files changed (139) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +2 -2
  3. data/Rakefile +2 -2
  4. data/docs/Account.md +6 -0
  5. data/docs/AccountBase.md +25 -0
  6. data/docs/AccountsApi.md +3 -3
  7. data/docs/CategoriesApi.md +8 -8
  8. data/docs/Category.md +14 -0
  9. data/docs/CategoryBase.md +33 -0
  10. data/docs/ExistingCategory.md +2 -1
  11. data/docs/HybridTransaction.md +2 -0
  12. data/docs/MoneyMovement.md +2 -0
  13. data/docs/MoneyMovementBase.md +16 -0
  14. data/docs/MoneyMovementsApi.md +4 -4
  15. data/docs/MonthDetail.md +8 -0
  16. data/docs/MonthDetailBase.md +16 -0
  17. data/docs/MonthSummary.md +8 -0
  18. data/docs/MonthSummaryBase.md +15 -0
  19. data/docs/MonthsApi.md +2 -2
  20. data/docs/NewCategory.md +2 -1
  21. data/docs/PayeeLocationsApi.md +3 -3
  22. data/docs/PayeesApi.md +24 -3
  23. data/docs/PlanDetail.md +7 -7
  24. data/docs/PlanDetailResponseData.md +1 -1
  25. data/docs/PlanSummaryResponseData.md +2 -2
  26. data/docs/PlansApi.md +3 -3
  27. data/docs/PostPayee.md +8 -0
  28. data/docs/PostPayeeWrapper.md +8 -0
  29. data/docs/SaveAccount.md +1 -1
  30. data/docs/SaveAccountType.md +7 -0
  31. data/docs/SaveCategory.md +2 -1
  32. data/docs/SavePayee.md +1 -1
  33. data/docs/ScheduledSubTransaction.md +2 -0
  34. data/docs/ScheduledSubTransactionBase.md +17 -0
  35. data/docs/ScheduledTransactionDetail.md +2 -0
  36. data/docs/ScheduledTransactionSummary.md +2 -0
  37. data/docs/ScheduledTransactionSummaryBase.md +20 -0
  38. data/docs/ScheduledTransactionsApi.md +5 -5
  39. data/docs/SubTransaction.md +2 -0
  40. data/docs/SubTransactionBase.md +18 -0
  41. data/docs/TransactionDetail.md +2 -0
  42. data/docs/TransactionSummary.md +2 -0
  43. data/docs/TransactionSummaryBase.md +26 -0
  44. data/docs/TransactionsApi.md +11 -11
  45. data/lib/ynab/api/accounts_api.rb +3 -3
  46. data/lib/ynab/api/categories_api.rb +8 -8
  47. data/lib/ynab/api/deprecated_api.rb +3 -3
  48. data/lib/ynab/api/money_movements_api.rb +4 -4
  49. data/lib/ynab/api/months_api.rb +2 -2
  50. data/lib/ynab/api/payee_locations_api.rb +3 -3
  51. data/lib/ynab/api/payees_api.rb +77 -3
  52. data/lib/ynab/api/plans_api.rb +3 -3
  53. data/lib/ynab/api/scheduled_transactions_api.rb +5 -5
  54. data/lib/ynab/api/transactions_api.rb +11 -11
  55. data/lib/ynab/models/account.rb +72 -8
  56. data/lib/ynab/models/account_base.rb +340 -0
  57. data/lib/ynab/models/category.rb +159 -20
  58. data/lib/ynab/models/category_base.rb +436 -0
  59. data/lib/ynab/models/existing_category.rb +15 -5
  60. data/lib/ynab/models/hybrid_transaction.rb +21 -1
  61. data/lib/ynab/models/money_movement.rb +31 -11
  62. data/lib/ynab/models/money_movement_base.rb +223 -0
  63. data/lib/ynab/models/month_detail.rb +81 -1
  64. data/lib/ynab/models/month_detail_base.rb +230 -0
  65. data/lib/ynab/models/month_summary.rb +91 -6
  66. data/lib/ynab/models/month_summary_base.rb +212 -0
  67. data/lib/ynab/models/new_category.rb +15 -5
  68. data/lib/ynab/models/plan_detail.rb +7 -7
  69. data/lib/ynab/models/plan_detail_response_data.rb +8 -8
  70. data/lib/ynab/models/plan_summary_response_data.rb +15 -15
  71. data/lib/ynab/models/post_payee.rb +148 -0
  72. data/lib/ynab/models/post_payee_wrapper.rb +136 -0
  73. data/lib/ynab/models/save_account.rb +1 -1
  74. data/lib/ynab/models/save_account_type.rb +45 -0
  75. data/lib/ynab/models/save_category.rb +17 -6
  76. data/lib/ynab/models/save_payee.rb +1 -1
  77. data/lib/ynab/models/scheduled_sub_transaction.rb +31 -10
  78. data/lib/ynab/models/scheduled_sub_transaction_base.rb +229 -0
  79. data/lib/ynab/models/scheduled_transaction_detail.rb +21 -1
  80. data/lib/ynab/models/scheduled_transaction_summary.rb +31 -9
  81. data/lib/ynab/models/scheduled_transaction_summary_base.rb +292 -0
  82. data/lib/ynab/models/sub_transaction.rb +31 -11
  83. data/lib/ynab/models/sub_transaction_base.rb +240 -0
  84. data/lib/ynab/models/transaction_detail.rb +21 -1
  85. data/lib/ynab/models/transaction_summary.rb +31 -14
  86. data/lib/ynab/models/transaction_summary_base.rb +358 -0
  87. data/lib/ynab/version.rb +1 -1
  88. data/lib/ynab.rb +12 -0
  89. data/open_api_spec.yaml +330 -56
  90. data/spec/api/accounts_spec.rb +3 -3
  91. data/spec/api/categories_spec.rb +3 -3
  92. data/spec/api/months_spec.rb +2 -2
  93. data/spec/api/payee_locations_spec.rb +2 -2
  94. data/spec/api/payees_spec.rb +2 -2
  95. data/spec/api/plans_spec.rb +9 -9
  96. data/spec/api/scheduled_transactions_spec.rb +3 -3
  97. data/spec/api/transactions_spec.rb +11 -11
  98. data/spec/fixtures/vcr_cassettes/account.yml +2 -2
  99. data/spec/fixtures/vcr_cassettes/accounts.yml +2 -2
  100. data/spec/fixtures/vcr_cassettes/accounts_unauthorized.yml +2 -2
  101. data/spec/fixtures/vcr_cassettes/bulk_transactions.yml +2 -2
  102. data/spec/fixtures/vcr_cassettes/categories.yml +2 -2
  103. data/spec/fixtures/vcr_cassettes/categories_unauthorized.yml +2 -2
  104. data/spec/fixtures/vcr_cassettes/category.yml +2 -2
  105. data/spec/fixtures/vcr_cassettes/category_transactions.yml +2 -2
  106. data/spec/fixtures/vcr_cassettes/create_account.yml +2 -2
  107. data/spec/fixtures/vcr_cassettes/create_scheduled_transaction.yml +2 -2
  108. data/spec/fixtures/vcr_cassettes/create_transaction.yml +2 -2
  109. data/spec/fixtures/vcr_cassettes/create_transactions.yml +2 -2
  110. data/spec/fixtures/vcr_cassettes/import_transactions.yml +2 -2
  111. data/spec/fixtures/vcr_cassettes/month.yml +2 -2
  112. data/spec/fixtures/vcr_cassettes/month_transactions.yml +2 -2
  113. data/spec/fixtures/vcr_cassettes/months.yml +2 -2
  114. data/spec/fixtures/vcr_cassettes/months_unauthorized.yml +2 -2
  115. data/spec/fixtures/vcr_cassettes/multiple_transactions.yml +2 -2
  116. data/spec/fixtures/vcr_cassettes/patch_month_category.yml +2 -2
  117. data/spec/fixtures/vcr_cassettes/payee.yml +2 -2
  118. data/spec/fixtures/vcr_cassettes/payee_location.yml +2 -2
  119. data/spec/fixtures/vcr_cassettes/payee_locations.yml +2 -2
  120. data/spec/fixtures/vcr_cassettes/payee_locations_unauthorized.yml +2 -2
  121. data/spec/fixtures/vcr_cassettes/payee_transactions.yml +2 -2
  122. data/spec/fixtures/vcr_cassettes/payees.yml +2 -2
  123. data/spec/fixtures/vcr_cassettes/payees_unauthorized.yml +2 -2
  124. data/spec/fixtures/vcr_cassettes/{budget.yml → plan.yml} +3 -3
  125. data/spec/fixtures/vcr_cassettes/plans.yml +3 -3
  126. data/spec/fixtures/vcr_cassettes/plans_unauthorized.yml +2 -2
  127. data/spec/fixtures/vcr_cassettes/scheduled_transaction.yml +2 -2
  128. data/spec/fixtures/vcr_cassettes/scheduled_transactions.yml +2 -2
  129. data/spec/fixtures/vcr_cassettes/scheduled_transactions_unauthorized.yml +2 -2
  130. data/spec/fixtures/vcr_cassettes/transaction.yml +2 -2
  131. data/spec/fixtures/vcr_cassettes/transactions.yml +2 -2
  132. data/spec/fixtures/vcr_cassettes/transactions_invalid_flags.yml +2 -2
  133. data/spec/fixtures/vcr_cassettes/transactions_unauthorized.yml +2 -2
  134. data/spec/fixtures/vcr_cassettes/update_transaction.yml +2 -2
  135. data/spec/fixtures/vcr_cassettes/update_transactions.yml +2 -2
  136. data/ynab.gemspec +1 -1
  137. metadata +29 -9
  138. data/spec/fixtures/vcr_cassettes/budgets.yml +0 -49
  139. data/spec/fixtures/vcr_cassettes/budgets_unauthorized.yml +0 -49
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://api.localhost:3000/v1/budgets/f419ac25-6217-4175-88dc-c3136ff5f6fd/payees/200e6eb1-02fc-4af6-be26-27c5740bb949
5
+ uri: http://api.localhost:3000/v1/plans/f419ac25-6217-4175-88dc-c3136ff5f6fd/payees/200e6eb1-02fc-4af6-be26-27c5740bb949
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -42,6 +42,6 @@ http_interactions:
42
42
  Payee","transfer_account_id":null}}}'
43
43
  http_version: '1.1'
44
44
  adapter_metadata:
45
- effective_url: http://api.localhost:3000/v1/budgets/f419ac25-6217-4175-88dc-c3136ff5f6fd/payees/200e6eb1-02fc-4af6-be26-27c5740bb949
45
+ effective_url: http://api.localhost:3000/v1/plans/f419ac25-6217-4175-88dc-c3136ff5f6fd/payees/200e6eb1-02fc-4af6-be26-27c5740bb949
46
46
  recorded_at: Thu, 15 Feb 2018 19:00:00 GMT
47
47
  recorded_with: VCR 3.0.3
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://api.localhost:3000/v1/budgets/f419ac25-6217-4175-88dc-c3136ff5f6fd/payee_locations/052c7814-1797-44ce-9519-020e864e4928
5
+ uri: http://api.localhost:3000/v1/plans/f419ac25-6217-4175-88dc-c3136ff5f6fd/payee_locations/052c7814-1797-44ce-9519-020e864e4928
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -41,6 +41,6 @@ http_interactions:
41
41
  string: '{"data":{"payee_location":{"id":"052c7814-1797-44ce-9519-020e864e4928","payee_id":"200e6eb1-02fc-4af6-be26-27c5740bb949","latitude":"40.7128","longitude":"74.006"}}}'
42
42
  http_version: '1.1'
43
43
  adapter_metadata:
44
- effective_url: http://api.localhost:3000/v1/budgets/f419ac25-6217-4175-88dc-c3136ff5f6fd/payee_locations/052c7814-1797-44ce-9519-020e864e4928
44
+ effective_url: http://api.localhost:3000/v1/plans/f419ac25-6217-4175-88dc-c3136ff5f6fd/payee_locations/052c7814-1797-44ce-9519-020e864e4928
45
45
  recorded_at: Thu, 15 Feb 2018 19:00:00 GMT
46
46
  recorded_with: VCR 3.0.3
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://api.localhost:3000/v1/budgets/f419ac25-6217-4175-88dc-c3136ff5f6fd/payee_locations
5
+ uri: http://api.localhost:3000/v1/plans/f419ac25-6217-4175-88dc-c3136ff5f6fd/payee_locations
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -41,6 +41,6 @@ http_interactions:
41
41
  string: '{"data":{"payee_locations":[{"id":"052c7814-1797-44ce-9519-020e864e4928","payee_id":"200e6eb1-02fc-4af6-be26-27c5740bb949","latitude":"40.7128","longitude":"74.006"}]}}'
42
42
  http_version: '1.1'
43
43
  adapter_metadata:
44
- effective_url: http://api.localhost:3000/v1/budgets/f419ac25-6217-4175-88dc-c3136ff5f6fd/payee_locations
44
+ effective_url: http://api.localhost:3000/v1/plans/f419ac25-6217-4175-88dc-c3136ff5f6fd/payee_locations
45
45
  recorded_at: Thu, 15 Feb 2018 18:59:59 GMT
46
46
  recorded_with: VCR 3.0.3
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://api.localhost:3000/v1/budgets/f419ac25-6217-4175-88dc-c3136ff5f6fd/payee_locations
5
+ uri: http://api.localhost:3000/v1/plans/f419ac25-6217-4175-88dc-c3136ff5f6fd/payee_locations
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -44,6 +44,6 @@ http_interactions:
44
44
  string: '{"error":{"id":"401","name":"unauthorized","detail":"Unauthorized"}}'
45
45
  http_version: '1.1'
46
46
  adapter_metadata:
47
- effective_url: http://api.localhost:3000/v1/budgets/f419ac25-6217-4175-88dc-c3136ff5f6fd/payee_locations
47
+ effective_url: http://api.localhost:3000/v1/plans/f419ac25-6217-4175-88dc-c3136ff5f6fd/payee_locations
48
48
  recorded_at: Thu, 15 Feb 2018 19:00:00 GMT
49
49
  recorded_with: VCR 3.0.3
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://api.localhost:3000/v1/budgets/f419ac25-6217-4175-88dc-c3136ff5f6fd/payees/2676f959-c5de-4db2-8d3f-2503777b25fb/transactions
5
+ uri: http://api.localhost:3000/v1/plans/f419ac25-6217-4175-88dc-c3136ff5f6fd/payees/2676f959-c5de-4db2-8d3f-2503777b25fb/transactions
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -41,6 +41,6 @@ http_interactions:
41
41
  string: '{"data":{"transactions":[{"type":"subtransaction","id":"008908a3-07c2-4684-b4c1-6f1024814f8d","parent_transaction_id":"910a79e1-29f5-4789-a2a0-2a69c2f94a2b","date":"2018-03-26","amount":-15000,"memo":"","cleared":"uncleared","approved":true,"flag_color":null,"account_id":"16addaa3-cfaf-4e57-933c-7e1645f000f0","payee_id":"2676f959-c5de-4db2-8d3f-2503777b25fb","category_id":"b457e34a-234e-40b2-992e-40055171e644","transfer_account_id":null,"import_id":null},{"type":"transaction","id":"d477e91a-1f2b-4df5-8069-6b61dee51259","parent_transaction_id":null,"date":"2018-03-27","amount":-13000,"memo":"","cleared":"uncleared","approved":true,"flag_color":null,"account_id":"16addaa3-cfaf-4e57-933c-7e1645f000f0","payee_id":"2676f959-c5de-4db2-8d3f-2503777b25fb","category_id":"84ffe61c-081c-44db-ad23-6ee809206c40","transfer_account_id":null,"import_id":null}]}}'
42
42
  http_version: '1.1'
43
43
  adapter_metadata:
44
- effective_url: http://api.localhost:3000/v1/budgets/6e6aa585-8537-4afc-950f-93d55fac17fa/payees/2676f959-c5de-4db2-8d3f-2503777b25fb/transactions
44
+ effective_url: http://api.localhost:3000/v1/plans/6e6aa585-8537-4afc-950f-93d55fac17fa/payees/2676f959-c5de-4db2-8d3f-2503777b25fb/transactions
45
45
  recorded_at: Tue, 27 Mar 2018 17:03:22 GMT
46
46
  recorded_with: VCR 3.0.3
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://api.localhost:3000/v1/budgets/f419ac25-6217-4175-88dc-c3136ff5f6fd/payees
5
+ uri: http://api.localhost:3000/v1/plans/f419ac25-6217-4175-88dc-c3136ff5f6fd/payees
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -46,6 +46,6 @@ http_interactions:
46
46
  Payee","transfer_account_id":null}]}}'
47
47
  http_version: '1.1'
48
48
  adapter_metadata:
49
- effective_url: http://api.localhost:3000/v1/budgets/f419ac25-6217-4175-88dc-c3136ff5f6fd/payees
49
+ effective_url: http://api.localhost:3000/v1/plans/f419ac25-6217-4175-88dc-c3136ff5f6fd/payees
50
50
  recorded_at: Thu, 15 Feb 2018 19:00:00 GMT
51
51
  recorded_with: VCR 3.0.3
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://api.localhost:3000/v1/budgets/f419ac25-6217-4175-88dc-c3136ff5f6fd/payees
5
+ uri: http://api.localhost:3000/v1/plans/f419ac25-6217-4175-88dc-c3136ff5f6fd/payees
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -44,6 +44,6 @@ http_interactions:
44
44
  string: '{"error":{"id":"401","name":"unauthorized","detail":"Unauthorized"}}'
45
45
  http_version: '1.1'
46
46
  adapter_metadata:
47
- effective_url: http://api.localhost:3000/v1/budgets/f419ac25-6217-4175-88dc-c3136ff5f6fd/payees
47
+ effective_url: http://api.localhost:3000/v1/plans/f419ac25-6217-4175-88dc-c3136ff5f6fd/payees
48
48
  recorded_at: Thu, 15 Feb 2018 19:00:00 GMT
49
49
  recorded_with: VCR 3.0.3
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://api.localhost:3000/v1/budgets/f419ac25-6217-4175-88dc-c3136ff5f6fd
5
+ uri: http://api.localhost:3000/v1/plans/f419ac25-6217-4175-88dc-c3136ff5f6fd
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -38,7 +38,7 @@ http_interactions:
38
38
  - chunked
39
39
  body:
40
40
  encoding: UTF-8
41
- string: "{\"data\" : {\"budget\" : {\"id\":\"f419ac25-6217-4175-88dc-c3136ff5f6fd\",\"name\":\"ABC\",\"last_modified_on\":\"2018-02-15T06:53:19+00:00\",\"date_format\":{\"format\":\"MM/DD/YYYY\"},\"currency_format\":{\"iso_code\":\"USD\",\"example_format\":\"123,456.78\",\"decimal_digits\":2,\"decimal_separator\":\".\",\"symbol_first\":true,\"group_separator\":\",\",\"currency_symbol\":\"$\",\"display_symbol\":true},\"first_month\":\"2018-02-01\",\"last_month\":\"2018-02-01\",\"accounts\":[{\"id\":\"5982e895-98e5-41ca-9681-0b6de1036a1c\",\"name\":\"Checking\",\"type\":\"checking\",\"on_budget\":true,\"closed\":false,\"note\":null,\"balance\":998000,\"cleared_balance\":1000000,\"uncleared_balance\":-2000}],\"payees\":[{\"id\":\"2141b5d8-5b9b-4a17-be45-3f4a9ac397ec\",\"name\":\"Starting
41
+ string: "{\"data\" : {\"plan\" : {\"id\":\"f419ac25-6217-4175-88dc-c3136ff5f6fd\",\"name\":\"ABC\",\"last_modified_on\":\"2018-02-15T06:53:19+00:00\",\"date_format\":{\"format\":\"MM/DD/YYYY\"},\"currency_format\":{\"iso_code\":\"USD\",\"example_format\":\"123,456.78\",\"decimal_digits\":2,\"decimal_separator\":\".\",\"symbol_first\":true,\"group_separator\":\",\",\"currency_symbol\":\"$\",\"display_symbol\":true},\"first_month\":\"2018-02-01\",\"last_month\":\"2018-02-01\",\"accounts\":[{\"id\":\"5982e895-98e5-41ca-9681-0b6de1036a1c\",\"name\":\"Checking\",\"type\":\"checking\",\"on_budget\":true,\"closed\":false,\"note\":null,\"balance\":998000,\"cleared_balance\":1000000,\"uncleared_balance\":-2000}],\"payees\":[{\"id\":\"2141b5d8-5b9b-4a17-be45-3f4a9ac397ec\",\"name\":\"Starting
42
42
  Balance\",\"transfer_account_id\":null}, \n {\"id\":\"7f786732-10c1-4618-aa0b-56199b2cea26\",\"name\":\"Manual
43
43
  Balance Adjustment\",\"transfer_account_id\":null}, \n {\"id\":\"f0c12109-c27a-4739-adc5-e598e33dd1dd\",\"name\":\"Reconciliation
44
44
  Balance Adjustment\",\"transfer_account_id\":null}, \n {\"id\":\"8a9a08ae-416d-436c-870a-a25e2d8f24cd\",\"name\":\"Transfer
@@ -1408,6 +1408,6 @@ http_interactions:
1408
1408
  \"server_knowledge\" : 57}}"
1409
1409
  http_version: '1.1'
1410
1410
  adapter_metadata:
1411
- effective_url: http://api.localhost:3000/v1/budgets/f419ac25-6217-4175-88dc-c3136ff5f6fd
1411
+ effective_url: http://api.localhost:3000/v1/plans/f419ac25-6217-4175-88dc-c3136ff5f6fd
1412
1412
  recorded_at: Thu, 15 Feb 2018 18:59:58 GMT
1413
1413
  recorded_with: VCR 3.0.3
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://api.localhost:3000/v1/budgets
5
+ uri: http://api.localhost:3000/v1/plans
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -38,12 +38,12 @@ http_interactions:
38
38
  - chunked
39
39
  body:
40
40
  encoding: UTF-8
41
- string: '{"data":{"budgets":[{"id":"36e85244-5254-47be-a7d1-28be746a7f72","name":"Hammel
41
+ string: '{"data":{"plans":[{"id":"36e85244-5254-47be-a7d1-28be746a7f72","name":"Hammel
42
42
  Budget","last_modified_on":"2018-02-14T20:28:50+00:00","date_format":{"locale":"en_US"},"currency_format":{"locale":"en_US"},"first_month":"2010-10-01","last_month":"2018-02-01"},{"id":"5b202339-ba6a-4498-bc93-f6909ec38153","name":"Household
43
43
  Budget","last_modified_on":"2018-02-14T20:28:53+00:00","date_format":{"locale":"en_US"},"currency_format":{"locale":"en_US"},"first_month":"2013-09-01","last_month":"2018-02-01"},{"id":"9db9a05d-c61c-4ce8-95ea-06174910f332","name":"My
44
44
  Budget","last_modified_on":"2018-02-15T18:24:02+00:00","date_format":{"format":"MM/DD/YYYY"},"currency_format":{"iso_code":"USD","example_format":"123,456.78","decimal_digits":2,"decimal_separator":".","symbol_first":true,"group_separator":",","currency_symbol":"$","display_symbol":true},"first_month":"2018-02-01","last_month":"2018-02-01"},{"id":"f419ac25-6217-4175-88dc-c3136ff5f6fd","name":"ABC","last_modified_on":"2018-02-15T18:53:19+00:00","date_format":{"format":"MM/DD/YYYY"},"currency_format":{"iso_code":"USD","example_format":"123,456.78","decimal_digits":2,"decimal_separator":".","symbol_first":true,"group_separator":",","currency_symbol":"$","display_symbol":true},"first_month":"2018-02-01","last_month":"2018-02-01"}]}}'
45
45
  http_version: '1.1'
46
46
  adapter_metadata:
47
- effective_url: http://api.localhost:3000/v1/budgets
47
+ effective_url: http://api.localhost:3000/v1/plans
48
48
  recorded_at: Thu, 15 Feb 2018 18:59:58 GMT
49
49
  recorded_with: VCR 3.0.3
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://api.localhost:3000/v1/budgets
5
+ uri: http://api.localhost:3000/v1/plans
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -44,6 +44,6 @@ http_interactions:
44
44
  string: '{"error":{"id":"401","name":"unauthorized","detail":"Unauthorized"}}'
45
45
  http_version: '1.1'
46
46
  adapter_metadata:
47
- effective_url: http://api.localhost:3000/v1/budgets
47
+ effective_url: http://api.localhost:3000/v1/plans
48
48
  recorded_at: Thu, 15 Feb 2018 18:59:58 GMT
49
49
  recorded_with: VCR 3.0.3
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://api.localhost:3000/v1/budgets/f419ac25-6217-4175-88dc-c3136ff5f6fd/scheduled_transactions/1a8e4929-3ad1-4859-8443-2aeeab0684ab
5
+ uri: http://api.localhost:3000/v1/plans/f419ac25-6217-4175-88dc-c3136ff5f6fd/scheduled_transactions/1a8e4929-3ad1-4859-8443-2aeeab0684ab
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -41,6 +41,6 @@ http_interactions:
41
41
  string: '{"data":{"scheduled_transaction":{"id":"1a8e4929-3ad1-4859-8443-2aeeab0684ab","date_first":"2018-02-16","date_next":"2018-02-16","frequency":"never","amount":-10000,"memo":null,"flag_color":null,"account_id":"5982e895-98e5-41ca-9681-0b6de1036a1c","payee_id":null,"category_id":null,"transfer_account_id":null,"subtransactions":[]}}}'
42
42
  http_version: '1.1'
43
43
  adapter_metadata:
44
- effective_url: http://api.localhost:3000/v1/budgets/f419ac25-6217-4175-88dc-c3136ff5f6fd/scheduled_transactions/1a8e4929-3ad1-4859-8443-2aeeab0684ab
44
+ effective_url: http://api.localhost:3000/v1/plans/f419ac25-6217-4175-88dc-c3136ff5f6fd/scheduled_transactions/1a8e4929-3ad1-4859-8443-2aeeab0684ab
45
45
  recorded_at: Thu, 15 Feb 2018 19:00:01 GMT
46
46
  recorded_with: VCR 3.0.3
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://api.localhost:3000/v1/budgets/f419ac25-6217-4175-88dc-c3136ff5f6fd/scheduled_transactions
5
+ uri: http://api.localhost:3000/v1/plans/f419ac25-6217-4175-88dc-c3136ff5f6fd/scheduled_transactions
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -41,6 +41,6 @@ http_interactions:
41
41
  string: '{"data":{"scheduled_transactions":[{"id":"1a8e4929-3ad1-4859-8443-2aeeab0684ab","date_first":"2018-02-16","date_next":"2018-02-16","frequency":"never","amount":-10000,"memo":null,"flag_color":null,"account_id":"5982e895-98e5-41ca-9681-0b6de1036a1c","payee_id":null,"category_id":null,"transfer_account_id":null,"subtransactions":[]}]}}'
42
42
  http_version: '1.1'
43
43
  adapter_metadata:
44
- effective_url: http://api.localhost:3000/v1/budgets/f419ac25-6217-4175-88dc-c3136ff5f6fd/scheduled_transactions
44
+ effective_url: http://api.localhost:3000/v1/plans/f419ac25-6217-4175-88dc-c3136ff5f6fd/scheduled_transactions
45
45
  recorded_at: Thu, 15 Feb 2018 19:00:01 GMT
46
46
  recorded_with: VCR 3.0.3
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://api.localhost:3000/v1/budgets/f419ac25-6217-4175-88dc-c3136ff5f6fd/scheduled_transactions
5
+ uri: http://api.localhost:3000/v1/plans/f419ac25-6217-4175-88dc-c3136ff5f6fd/scheduled_transactions
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -44,6 +44,6 @@ http_interactions:
44
44
  string: '{"error":{"id":"401","name":"unauthorized","detail":"Unauthorized"}}'
45
45
  http_version: '1.1'
46
46
  adapter_metadata:
47
- effective_url: http://api.localhost:3000/v1/budgets/f419ac25-6217-4175-88dc-c3136ff5f6fd/scheduled_transactions
47
+ effective_url: http://api.localhost:3000/v1/plans/f419ac25-6217-4175-88dc-c3136ff5f6fd/scheduled_transactions
48
48
  recorded_at: Thu, 15 Feb 2018 19:00:01 GMT
49
49
  recorded_with: VCR 3.0.3
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://api.localhost:3000/v1/budgets/f419ac25-6217-4175-88dc-c3136ff5f6fd/transactions/81c374ff-74ab-4d6d-8d5a-ba3ad3fa68e4
5
+ uri: http://api.localhost:3000/v1/plans/f419ac25-6217-4175-88dc-c3136ff5f6fd/transactions/81c374ff-74ab-4d6d-8d5a-ba3ad3fa68e4
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -41,6 +41,6 @@ http_interactions:
41
41
  string: '{"data":{"transaction":{"id":"81c374ff-74ab-4d6d-8d5a-ba3ad3fa68e4","date":"2018-02-15","amount":-2000,"memo":"","cleared":"uncleared","approved":true,"flag_color":null,"account_id":"5982e895-98e5-41ca-9681-0b6de1036a1c","payee_id":"200e6eb1-02fc-4af6-be26-27c5740bb949","category_id":null,"transfer_account_id":null,"import_id":null,"subtransactions":[]}}}'
42
42
  http_version: '1.1'
43
43
  adapter_metadata:
44
- effective_url: http://api.localhost:3000/v1/budgets/f419ac25-6217-4175-88dc-c3136ff5f6fd/transactions/81c374ff-74ab-4d6d-8d5a-ba3ad3fa68e4
44
+ effective_url: http://api.localhost:3000/v1/plans/f419ac25-6217-4175-88dc-c3136ff5f6fd/transactions/81c374ff-74ab-4d6d-8d5a-ba3ad3fa68e4
45
45
  recorded_at: Thu, 15 Feb 2018 19:00:01 GMT
46
46
  recorded_with: VCR 3.0.3
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://api.localhost:3000/v1/budgets/f419ac25-6217-4175-88dc-c3136ff5f6fd/transactions
5
+ uri: http://api.localhost:3000/v1/plans/f419ac25-6217-4175-88dc-c3136ff5f6fd/transactions
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -41,6 +41,6 @@ http_interactions:
41
41
  string: '{"data":{"transactions":[{"id":"1f9d45f6-8ba5-476b-8cff-209b3791bd83","date":"2018-02-15","amount":1000000,"memo":null,"cleared":"cleared","approved":true,"flag_color":null,"account_id":"5982e895-98e5-41ca-9681-0b6de1036a1c","payee_id":"2141b5d8-5b9b-4a17-be45-3f4a9ac397ec","category_id":"26513650-523e-4e7a-ac0d-f6e78d0a8a03","transfer_account_id":null,"import_id":null,"subtransactions":[]},{"id":"81c374ff-74ab-4d6d-8d5a-ba3ad3fa68e4","date":"2018-02-15","amount":-2000,"memo":"","cleared":"uncleared","approved":true,"flag_color":null,"account_id":"5982e895-98e5-41ca-9681-0b6de1036a1c","payee_id":"200e6eb1-02fc-4af6-be26-27c5740bb949","category_id":null,"transfer_account_id":null,"import_id":null,"subtransactions":[]}]}}'
42
42
  http_version: '1.1'
43
43
  adapter_metadata:
44
- effective_url: http://api.localhost:3000/v1/budgets/f419ac25-6217-4175-88dc-c3136ff5f6fd/transactions
44
+ effective_url: http://api.localhost:3000/v1/plans/f419ac25-6217-4175-88dc-c3136ff5f6fd/transactions
45
45
  recorded_at: Thu, 15 Feb 2018 19:00:01 GMT
46
46
  recorded_with: VCR 3.0.3
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://api.localhost:3000/v1/budgets/f419ac25-6217-4175-88dc-c3136ff5f6fd/transactions
5
+ uri: http://api.localhost:3000/v1/plans/f419ac25-6217-4175-88dc-c3136ff5f6fd/transactions
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -41,6 +41,6 @@ http_interactions:
41
41
  string: '{"data":{"transactions":[{"id":"1f9d45f6-8ba5-476b-8cff-209b3791bd83","date":"2018-02-15","amount":1000000,"memo":null,"cleared":"cleared","approved":true,"flag_color":"","account_id":"5982e895-98e5-41ca-9681-0b6de1036a1c","payee_id":"2141b5d8-5b9b-4a17-be45-3f4a9ac397ec","category_id":"26513650-523e-4e7a-ac0d-f6e78d0a8a03","transfer_account_id":null,"import_id":null,"subtransactions":[]},{"id":"81c374ff-74ab-4d6d-8d5a-ba3ad3fa68e4","date":"2018-02-15","amount":-2000,"memo":"","cleared":"uncleared","approved":true,"flag_color":"invalid","account_id":"5982e895-98e5-41ca-9681-0b6de1036a1c","payee_id":"200e6eb1-02fc-4af6-be26-27c5740bb949","category_id":null,"transfer_account_id":null,"import_id":null,"subtransactions":[]}]}}'
42
42
  http_version: '1.1'
43
43
  adapter_metadata:
44
- effective_url: http://api.localhost:3000/v1/budgets/f419ac25-6217-4175-88dc-c3136ff5f6fd/transactions
44
+ effective_url: http://api.localhost:3000/v1/plans/f419ac25-6217-4175-88dc-c3136ff5f6fd/transactions
45
45
  recorded_at: Thu, 15 Feb 2018 19:00:01 GMT
46
46
  recorded_with: VCR 3.0.3
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://api.localhost:3000/v1/budgets/f419ac25-6217-4175-88dc-c3136ff5f6fd/transactions
5
+ uri: http://api.localhost:3000/v1/plans/f419ac25-6217-4175-88dc-c3136ff5f6fd/transactions
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -44,6 +44,6 @@ http_interactions:
44
44
  string: '{"error":{"id":"401","name":"unauthorized","detail":"Unauthorized"}}'
45
45
  http_version: '1.1'
46
46
  adapter_metadata:
47
- effective_url: http://api.localhost:3000/v1/budgets/f419ac25-6217-4175-88dc-c3136ff5f6fd/transactions
47
+ effective_url: http://api.localhost:3000/v1/plans/f419ac25-6217-4175-88dc-c3136ff5f6fd/transactions
48
48
  recorded_at: Thu, 15 Feb 2018 19:00:01 GMT
49
49
  recorded_with: VCR 3.0.3
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: put
5
- uri: http://api.localhost:3000/v1/budgets/f419ac25-6217-4175-88dc-c3136ff5f6fd/transactions/4cd63d34-3814-4f50-abd0-59ce05b40d91
5
+ uri: http://api.localhost:3000/v1/plans/f419ac25-6217-4175-88dc-c3136ff5f6fd/transactions/4cd63d34-3814-4f50-abd0-59ce05b40d91
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: '{"transaction":{"date":"2018-01-02","account_id":"5982e895-98e5-41ca-9681-0b6de1036a1c","amount":30000}}'
@@ -41,6 +41,6 @@ http_interactions:
41
41
  string: '{"data":{"transaction":{"id":"4cd63d34-3814-4f50-abd0-59ce05b40d91","date":"2018-01-02","amount":30000,"memo":null,"cleared":"uncleared","approved":false,"flag_color":null,"account_id":"5982e895-98e5-41ca-9681-0b6de1036a1c","payee_id":null,"category_id":null,"transfer_account_id":null,"import_id":null,"subtransactions":[]}}}'
42
42
  http_version: '1.1'
43
43
  adapter_metadata:
44
- effective_url: http://api.localhost:3000/v1/budgets/f419ac25-6217-4175-88dc-c3136ff5f6fd/transactions/4cd63d34-3814-4f50-abd0-59ce05b40d91
44
+ effective_url: http://api.localhost:3000/v1/plans/f419ac25-6217-4175-88dc-c3136ff5f6fd/transactions/4cd63d34-3814-4f50-abd0-59ce05b40d91
45
45
  recorded_at: Thu, 15 Feb 2018 19:11:01 GMT
46
46
  recorded_with: VCR 3.0.3
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: patch
5
- uri: http://api.localhost:3000/v1/budgets/f419ac25-6217-4175-88dc-c3136ff5f6fd/transactions
5
+ uri: http://api.localhost:3000/v1/plans/f419ac25-6217-4175-88dc-c3136ff5f6fd/transactions
6
6
  body:
7
7
  encoding: UTF-8
8
8
  string: '{"transactions":[{"date":"2018-01-02","account_id":"5982e895-98e5-41ca-9681-0b6de1036a1c","amount":30000},{"date":"2018-01-03","account_id":"5982e895-98e5-41ca-9681-0b6de1036a1c","amount":40000}]}'
@@ -41,6 +41,6 @@ http_interactions:
41
41
  string: '{"data":{"transactions":[{"id":"4cd63d34-3814-4f50-abd0-59ce05b40d91","date":"2018-01-02","amount":30000,"memo":null,"cleared":"uncleared","approved":false,"flag_color":null,"account_id":"5982e895-98e5-41ca-9681-0b6de1036a1c","payee_id":null,"category_id":null,"transfer_account_id":null,"import_id":null,"subtransactions":[]},{"id":"4cd63d34-3814-4f50-abd0-59ce05b40d91","date":"2018-01-03","amount":40000,"memo":null,"cleared":"uncleared","approved":false,"flag_color":null,"account_id":"5982e895-98e5-41ca-9681-0b6de1036a1c","payee_id":null,"category_id":null,"transfer_account_id":null,"import_id":null,"subtransactions":[]}]}}'
42
42
  http_version: '1.1'
43
43
  adapter_metadata:
44
- effective_url: http://api.localhost:3000/v1/budgets/f419ac25-6217-4175-88dc-c3136ff5f6fd/transactions/4cd63d34-3814-4f50-abd0-59ce05b40d91
44
+ effective_url: http://api.localhost:3000/v1/plans/f419ac25-6217-4175-88dc-c3136ff5f6fd/transactions/4cd63d34-3814-4f50-abd0-59ce05b40d91
45
45
  recorded_at: Thu, 15 Feb 2018 19:11:01 GMT
46
46
  recorded_with: VCR 3.0.3
data/ynab.gemspec CHANGED
@@ -19,7 +19,7 @@ Gem::Specification.new do |s|
19
19
  s.email = ["api@ynab.com"]
20
20
  s.homepage = "https://github.com/ynab/ynab-sdk-ruby"
21
21
  s.summary = "Official Ruby client for the YNAB API"
22
- s.description = "Official Ruby client for the YNAB API. API documentation available at https://api.ynab.com. Generated from server specification version 1.78.0."
22
+ s.description = "Official Ruby client for the YNAB API. API documentation available at https://api.ynab.com. Generated from server specification version 1.83.0."
23
23
  s.license = "Apache-2.0"
24
24
  s.required_ruby_version = ">= 3.3"
25
25
  s.metadata = {}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ynab
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.9.0
4
+ version: 5.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - YNAB
@@ -50,7 +50,7 @@ dependencies:
50
50
  - !ruby/object:Gem::Version
51
51
  version: 3.6.0
52
52
  description: Official Ruby client for the YNAB API. API documentation available at
53
- https://api.ynab.com. Generated from server specification version 1.78.0.
53
+ https://api.ynab.com. Generated from server specification version 1.83.0.
54
54
  email:
55
55
  - api@ynab.com
56
56
  executables: []
@@ -64,6 +64,7 @@ files:
64
64
  - README.md
65
65
  - Rakefile
66
66
  - docs/Account.md
67
+ - docs/AccountBase.md
67
68
  - docs/AccountResponse.md
68
69
  - docs/AccountResponseData.md
69
70
  - docs/AccountType.md
@@ -78,6 +79,7 @@ files:
78
79
  - docs/CategoriesResponse.md
79
80
  - docs/CategoriesResponseData.md
80
81
  - docs/Category.md
82
+ - docs/CategoryBase.md
81
83
  - docs/CategoryGroup.md
82
84
  - docs/CategoryGroupWithCategories.md
83
85
  - docs/CategoryResponse.md
@@ -92,6 +94,7 @@ files:
92
94
  - docs/HybridTransactionsResponse.md
93
95
  - docs/HybridTransactionsResponseData.md
94
96
  - docs/MoneyMovement.md
97
+ - docs/MoneyMovementBase.md
95
98
  - docs/MoneyMovementGroup.md
96
99
  - docs/MoneyMovementGroupsResponse.md
97
100
  - docs/MoneyMovementGroupsResponseData.md
@@ -99,11 +102,13 @@ files:
99
102
  - docs/MoneyMovementsResponse.md
100
103
  - docs/MoneyMovementsResponseData.md
101
104
  - docs/MonthDetail.md
105
+ - docs/MonthDetailBase.md
102
106
  - docs/MonthDetailResponse.md
103
107
  - docs/MonthDetailResponseData.md
104
108
  - docs/MonthSummariesResponse.md
105
109
  - docs/MonthSummariesResponseData.md
106
110
  - docs/MonthSummary.md
111
+ - docs/MonthSummaryBase.md
107
112
  - docs/MonthsApi.md
108
113
  - docs/NewCategory.md
109
114
  - docs/NewTransaction.md
@@ -137,11 +142,14 @@ files:
137
142
  - docs/PostAccountWrapper.md
138
143
  - docs/PostCategoryGroupWrapper.md
139
144
  - docs/PostCategoryWrapper.md
145
+ - docs/PostPayee.md
146
+ - docs/PostPayeeWrapper.md
140
147
  - docs/PostScheduledTransactionWrapper.md
141
148
  - docs/PostTransactionsWrapper.md
142
149
  - docs/PutScheduledTransactionWrapper.md
143
150
  - docs/PutTransactionWrapper.md
144
151
  - docs/SaveAccount.md
152
+ - docs/SaveAccountType.md
145
153
  - docs/SaveCategory.md
146
154
  - docs/SaveCategoryGroup.md
147
155
  - docs/SaveCategoryGroupResponse.md
@@ -159,21 +167,25 @@ files:
159
167
  - docs/SaveTransactionsResponse.md
160
168
  - docs/SaveTransactionsResponseData.md
161
169
  - docs/ScheduledSubTransaction.md
170
+ - docs/ScheduledSubTransactionBase.md
162
171
  - docs/ScheduledTransactionDetail.md
163
172
  - docs/ScheduledTransactionFrequency.md
164
173
  - docs/ScheduledTransactionResponse.md
165
174
  - docs/ScheduledTransactionResponseData.md
166
175
  - docs/ScheduledTransactionSummary.md
176
+ - docs/ScheduledTransactionSummaryBase.md
167
177
  - docs/ScheduledTransactionsApi.md
168
178
  - docs/ScheduledTransactionsResponse.md
169
179
  - docs/ScheduledTransactionsResponseData.md
170
180
  - docs/SubTransaction.md
181
+ - docs/SubTransactionBase.md
171
182
  - docs/TransactionClearedStatus.md
172
183
  - docs/TransactionDetail.md
173
184
  - docs/TransactionFlagColor.md
174
185
  - docs/TransactionResponse.md
175
186
  - docs/TransactionResponseData.md
176
187
  - docs/TransactionSummary.md
188
+ - docs/TransactionSummaryBase.md
177
189
  - docs/TransactionsApi.md
178
190
  - docs/TransactionsImportResponse.md
179
191
  - docs/TransactionsImportResponseData.md
@@ -207,6 +219,7 @@ files:
207
219
  - lib/ynab/api_model_base.rb
208
220
  - lib/ynab/configuration.rb
209
221
  - lib/ynab/models/account.rb
222
+ - lib/ynab/models/account_base.rb
210
223
  - lib/ynab/models/account_response.rb
211
224
  - lib/ynab/models/account_response_data.rb
212
225
  - lib/ynab/models/account_type.rb
@@ -219,6 +232,7 @@ files:
219
232
  - lib/ynab/models/categories_response.rb
220
233
  - lib/ynab/models/categories_response_data.rb
221
234
  - lib/ynab/models/category.rb
235
+ - lib/ynab/models/category_base.rb
222
236
  - lib/ynab/models/category_group.rb
223
237
  - lib/ynab/models/category_group_with_categories.rb
224
238
  - lib/ynab/models/category_response.rb
@@ -233,17 +247,20 @@ files:
233
247
  - lib/ynab/models/hybrid_transactions_response.rb
234
248
  - lib/ynab/models/hybrid_transactions_response_data.rb
235
249
  - lib/ynab/models/money_movement.rb
250
+ - lib/ynab/models/money_movement_base.rb
236
251
  - lib/ynab/models/money_movement_group.rb
237
252
  - lib/ynab/models/money_movement_groups_response.rb
238
253
  - lib/ynab/models/money_movement_groups_response_data.rb
239
254
  - lib/ynab/models/money_movements_response.rb
240
255
  - lib/ynab/models/money_movements_response_data.rb
241
256
  - lib/ynab/models/month_detail.rb
257
+ - lib/ynab/models/month_detail_base.rb
242
258
  - lib/ynab/models/month_detail_response.rb
243
259
  - lib/ynab/models/month_detail_response_data.rb
244
260
  - lib/ynab/models/month_summaries_response.rb
245
261
  - lib/ynab/models/month_summaries_response_data.rb
246
262
  - lib/ynab/models/month_summary.rb
263
+ - lib/ynab/models/month_summary_base.rb
247
264
  - lib/ynab/models/new_category.rb
248
265
  - lib/ynab/models/new_transaction.rb
249
266
  - lib/ynab/models/patch_category_group_wrapper.rb
@@ -273,11 +290,14 @@ files:
273
290
  - lib/ynab/models/post_account_wrapper.rb
274
291
  - lib/ynab/models/post_category_group_wrapper.rb
275
292
  - lib/ynab/models/post_category_wrapper.rb
293
+ - lib/ynab/models/post_payee.rb
294
+ - lib/ynab/models/post_payee_wrapper.rb
276
295
  - lib/ynab/models/post_scheduled_transaction_wrapper.rb
277
296
  - lib/ynab/models/post_transactions_wrapper.rb
278
297
  - lib/ynab/models/put_scheduled_transaction_wrapper.rb
279
298
  - lib/ynab/models/put_transaction_wrapper.rb
280
299
  - lib/ynab/models/save_account.rb
300
+ - lib/ynab/models/save_account_type.rb
281
301
  - lib/ynab/models/save_category.rb
282
302
  - lib/ynab/models/save_category_group.rb
283
303
  - lib/ynab/models/save_category_group_response.rb
@@ -295,20 +315,24 @@ files:
295
315
  - lib/ynab/models/save_transactions_response.rb
296
316
  - lib/ynab/models/save_transactions_response_data.rb
297
317
  - lib/ynab/models/scheduled_sub_transaction.rb
318
+ - lib/ynab/models/scheduled_sub_transaction_base.rb
298
319
  - lib/ynab/models/scheduled_transaction_detail.rb
299
320
  - lib/ynab/models/scheduled_transaction_frequency.rb
300
321
  - lib/ynab/models/scheduled_transaction_response.rb
301
322
  - lib/ynab/models/scheduled_transaction_response_data.rb
302
323
  - lib/ynab/models/scheduled_transaction_summary.rb
324
+ - lib/ynab/models/scheduled_transaction_summary_base.rb
303
325
  - lib/ynab/models/scheduled_transactions_response.rb
304
326
  - lib/ynab/models/scheduled_transactions_response_data.rb
305
327
  - lib/ynab/models/sub_transaction.rb
328
+ - lib/ynab/models/sub_transaction_base.rb
306
329
  - lib/ynab/models/transaction_cleared_status.rb
307
330
  - lib/ynab/models/transaction_detail.rb
308
331
  - lib/ynab/models/transaction_flag_color.rb
309
332
  - lib/ynab/models/transaction_response.rb
310
333
  - lib/ynab/models/transaction_response_data.rb
311
334
  - lib/ynab/models/transaction_summary.rb
335
+ - lib/ynab/models/transaction_summary_base.rb
312
336
  - lib/ynab/models/transactions_import_response.rb
313
337
  - lib/ynab/models/transactions_import_response_data.rb
314
338
  - lib/ynab/models/transactions_response.rb
@@ -332,9 +356,6 @@ files:
332
356
  - spec/fixtures/vcr_cassettes/account.yml
333
357
  - spec/fixtures/vcr_cassettes/accounts.yml
334
358
  - spec/fixtures/vcr_cassettes/accounts_unauthorized.yml
335
- - spec/fixtures/vcr_cassettes/budget.yml
336
- - spec/fixtures/vcr_cassettes/budgets.yml
337
- - spec/fixtures/vcr_cassettes/budgets_unauthorized.yml
338
359
  - spec/fixtures/vcr_cassettes/bulk_transactions.yml
339
360
  - spec/fixtures/vcr_cassettes/categories.yml
340
361
  - spec/fixtures/vcr_cassettes/categories_unauthorized.yml
@@ -358,6 +379,7 @@ files:
358
379
  - spec/fixtures/vcr_cassettes/payee_transactions.yml
359
380
  - spec/fixtures/vcr_cassettes/payees.yml
360
381
  - spec/fixtures/vcr_cassettes/payees_unauthorized.yml
382
+ - spec/fixtures/vcr_cassettes/plan.yml
361
383
  - spec/fixtures/vcr_cassettes/plans.yml
362
384
  - spec/fixtures/vcr_cassettes/plans_unauthorized.yml
363
385
  - spec/fixtures/vcr_cassettes/scheduled_transaction.yml
@@ -400,7 +422,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
400
422
  - !ruby/object:Gem::Version
401
423
  version: '0'
402
424
  requirements: []
403
- rubygems_version: 4.0.7
425
+ rubygems_version: 4.0.10
404
426
  specification_version: 4
405
427
  summary: Official Ruby client for the YNAB API
406
428
  test_files:
@@ -416,9 +438,6 @@ test_files:
416
438
  - spec/fixtures/vcr_cassettes/account.yml
417
439
  - spec/fixtures/vcr_cassettes/accounts.yml
418
440
  - spec/fixtures/vcr_cassettes/accounts_unauthorized.yml
419
- - spec/fixtures/vcr_cassettes/budget.yml
420
- - spec/fixtures/vcr_cassettes/budgets.yml
421
- - spec/fixtures/vcr_cassettes/budgets_unauthorized.yml
422
441
  - spec/fixtures/vcr_cassettes/bulk_transactions.yml
423
442
  - spec/fixtures/vcr_cassettes/categories.yml
424
443
  - spec/fixtures/vcr_cassettes/categories_unauthorized.yml
@@ -442,6 +461,7 @@ test_files:
442
461
  - spec/fixtures/vcr_cassettes/payee_transactions.yml
443
462
  - spec/fixtures/vcr_cassettes/payees.yml
444
463
  - spec/fixtures/vcr_cassettes/payees_unauthorized.yml
464
+ - spec/fixtures/vcr_cassettes/plan.yml
445
465
  - spec/fixtures/vcr_cassettes/plans.yml
446
466
  - spec/fixtures/vcr_cassettes/plans_unauthorized.yml
447
467
  - spec/fixtures/vcr_cassettes/scheduled_transaction.yml