increase 1.303.0 → 1.304.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 (60) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +13 -0
  3. data/README.md +1 -1
  4. data/lib/increase/client.rb +0 -12
  5. data/lib/increase/models.rb +0 -26
  6. data/lib/increase/version.rb +1 -1
  7. data/lib/increase.rb +0 -16
  8. data/rbi/increase/client.rbi +0 -9
  9. data/rbi/increase/models.rbi +0 -33
  10. data/sig/increase/client.rbs +0 -6
  11. data/sig/increase/models.rbs +0 -26
  12. metadata +2 -50
  13. data/lib/increase/models/bookkeeping_account.rb +0 -104
  14. data/lib/increase/models/bookkeeping_account_balance_params.rb +0 -30
  15. data/lib/increase/models/bookkeeping_account_create_params.rb +0 -60
  16. data/lib/increase/models/bookkeeping_account_list_params.rb +0 -45
  17. data/lib/increase/models/bookkeeping_account_update_params.rb +0 -30
  18. data/lib/increase/models/bookkeeping_balance_lookup.rb +0 -54
  19. data/lib/increase/models/bookkeeping_entry.rb +0 -79
  20. data/lib/increase/models/bookkeeping_entry_list_params.rb +0 -42
  21. data/lib/increase/models/bookkeeping_entry_retrieve_params.rb +0 -22
  22. data/lib/increase/models/bookkeeping_entry_set.rb +0 -116
  23. data/lib/increase/models/bookkeeping_entry_set_create_params.rb +0 -67
  24. data/lib/increase/models/bookkeeping_entry_set_list_params.rb +0 -53
  25. data/lib/increase/models/bookkeeping_entry_set_retrieve_params.rb +0 -22
  26. data/lib/increase/resources/bookkeeping_accounts.rb +0 -122
  27. data/lib/increase/resources/bookkeeping_entries.rb +0 -65
  28. data/lib/increase/resources/bookkeeping_entry_sets.rb +0 -96
  29. data/rbi/increase/models/bookkeeping_account.rbi +0 -165
  30. data/rbi/increase/models/bookkeeping_account_balance_params.rbi +0 -57
  31. data/rbi/increase/models/bookkeeping_account_create_params.rbi +0 -130
  32. data/rbi/increase/models/bookkeeping_account_list_params.rbi +0 -79
  33. data/rbi/increase/models/bookkeeping_account_update_params.rbi +0 -54
  34. data/rbi/increase/models/bookkeeping_balance_lookup.rbi +0 -85
  35. data/rbi/increase/models/bookkeeping_entry.rbi +0 -108
  36. data/rbi/increase/models/bookkeeping_entry_list_params.rbi +0 -73
  37. data/rbi/increase/models/bookkeeping_entry_retrieve_params.rbi +0 -46
  38. data/rbi/increase/models/bookkeeping_entry_set.rbi +0 -162
  39. data/rbi/increase/models/bookkeeping_entry_set_create_params.rbi +0 -110
  40. data/rbi/increase/models/bookkeeping_entry_set_list_params.rbi +0 -90
  41. data/rbi/increase/models/bookkeeping_entry_set_retrieve_params.rbi +0 -46
  42. data/rbi/increase/resources/bookkeeping_accounts.rbi +0 -94
  43. data/rbi/increase/resources/bookkeeping_entries.rbi +0 -47
  44. data/rbi/increase/resources/bookkeeping_entry_sets.rbi +0 -75
  45. data/sig/increase/models/bookkeeping_account.rbs +0 -74
  46. data/sig/increase/models/bookkeeping_account_balance_params.rbs +0 -30
  47. data/sig/increase/models/bookkeeping_account_create_params.rbs +0 -63
  48. data/sig/increase/models/bookkeeping_account_list_params.rbs +0 -38
  49. data/sig/increase/models/bookkeeping_account_update_params.rbs +0 -28
  50. data/sig/increase/models/bookkeeping_balance_lookup.rbs +0 -40
  51. data/sig/increase/models/bookkeeping_entry.rbs +0 -55
  52. data/sig/increase/models/bookkeeping_entry_list_params.rbs +0 -38
  53. data/sig/increase/models/bookkeeping_entry_retrieve_params.rbs +0 -24
  54. data/sig/increase/models/bookkeeping_entry_set.rbs +0 -78
  55. data/sig/increase/models/bookkeeping_entry_set_create_params.rbs +0 -52
  56. data/sig/increase/models/bookkeeping_entry_set_list_params.rbs +0 -49
  57. data/sig/increase/models/bookkeeping_entry_set_retrieve_params.rbs +0 -24
  58. data/sig/increase/resources/bookkeeping_accounts.rbs +0 -34
  59. data/sig/increase/resources/bookkeeping_entries.rbs +0 -19
  60. data/sig/increase/resources/bookkeeping_entry_sets.rbs +0 -27
@@ -1,52 +0,0 @@
1
- module Increase
2
- module Models
3
- type bookkeeping_entry_set_create_params =
4
- {
5
- entries: ::Array[Increase::BookkeepingEntrySetCreateParams::Entry],
6
- date: Time,
7
- transaction_id: String
8
- }
9
- & Increase::Internal::Type::request_parameters
10
-
11
- class BookkeepingEntrySetCreateParams < Increase::Internal::Type::BaseModel
12
- extend Increase::Internal::Type::RequestParameters::Converter
13
- include Increase::Internal::Type::RequestParameters
14
-
15
- attr_accessor entries: ::Array[Increase::BookkeepingEntrySetCreateParams::Entry]
16
-
17
- attr_reader date: Time?
18
-
19
- def date=: (Time) -> Time
20
-
21
- attr_reader transaction_id: String?
22
-
23
- def transaction_id=: (String) -> String
24
-
25
- def initialize: (
26
- entries: ::Array[Increase::BookkeepingEntrySetCreateParams::Entry],
27
- ?date: Time,
28
- ?transaction_id: String,
29
- ?request_options: Increase::request_opts
30
- ) -> void
31
-
32
- def to_hash: -> {
33
- entries: ::Array[Increase::BookkeepingEntrySetCreateParams::Entry],
34
- date: Time,
35
- transaction_id: String,
36
- request_options: Increase::RequestOptions
37
- }
38
-
39
- type entry = { account_id: String, amount: Integer }
40
-
41
- class Entry < Increase::Internal::Type::BaseModel
42
- attr_accessor account_id: String
43
-
44
- attr_accessor amount: Integer
45
-
46
- def initialize: (account_id: String, amount: Integer) -> void
47
-
48
- def to_hash: -> { account_id: String, amount: Integer }
49
- end
50
- end
51
- end
52
- end
@@ -1,49 +0,0 @@
1
- module Increase
2
- module Models
3
- type bookkeeping_entry_set_list_params =
4
- {
5
- cursor: String,
6
- idempotency_key: String,
7
- limit: Integer,
8
- transaction_id: String
9
- }
10
- & Increase::Internal::Type::request_parameters
11
-
12
- class BookkeepingEntrySetListParams < Increase::Internal::Type::BaseModel
13
- extend Increase::Internal::Type::RequestParameters::Converter
14
- include Increase::Internal::Type::RequestParameters
15
-
16
- attr_reader cursor: String?
17
-
18
- def cursor=: (String) -> String
19
-
20
- attr_reader idempotency_key: String?
21
-
22
- def idempotency_key=: (String) -> String
23
-
24
- attr_reader limit: Integer?
25
-
26
- def limit=: (Integer) -> Integer
27
-
28
- attr_reader transaction_id: String?
29
-
30
- def transaction_id=: (String) -> String
31
-
32
- def initialize: (
33
- ?cursor: String,
34
- ?idempotency_key: String,
35
- ?limit: Integer,
36
- ?transaction_id: String,
37
- ?request_options: Increase::request_opts
38
- ) -> void
39
-
40
- def to_hash: -> {
41
- cursor: String,
42
- idempotency_key: String,
43
- limit: Integer,
44
- transaction_id: String,
45
- request_options: Increase::RequestOptions
46
- }
47
- end
48
- end
49
- end
@@ -1,24 +0,0 @@
1
- module Increase
2
- module Models
3
- type bookkeeping_entry_set_retrieve_params =
4
- { bookkeeping_entry_set_id: String }
5
- & Increase::Internal::Type::request_parameters
6
-
7
- class BookkeepingEntrySetRetrieveParams < Increase::Internal::Type::BaseModel
8
- extend Increase::Internal::Type::RequestParameters::Converter
9
- include Increase::Internal::Type::RequestParameters
10
-
11
- attr_accessor bookkeeping_entry_set_id: String
12
-
13
- def initialize: (
14
- bookkeeping_entry_set_id: String,
15
- ?request_options: Increase::request_opts
16
- ) -> void
17
-
18
- def to_hash: -> {
19
- bookkeeping_entry_set_id: String,
20
- request_options: Increase::RequestOptions
21
- }
22
- end
23
- end
24
- end
@@ -1,34 +0,0 @@
1
- module Increase
2
- module Resources
3
- class BookkeepingAccounts
4
- def create: (
5
- name: String,
6
- ?account_id: String,
7
- ?compliance_category: Increase::Models::BookkeepingAccountCreateParams::compliance_category,
8
- ?entity_id: String,
9
- ?request_options: Increase::request_opts
10
- ) -> Increase::BookkeepingAccount
11
-
12
- def update: (
13
- String bookkeeping_account_id,
14
- name: String,
15
- ?request_options: Increase::request_opts
16
- ) -> Increase::BookkeepingAccount
17
-
18
- def list: (
19
- ?cursor: String,
20
- ?idempotency_key: String,
21
- ?limit: Integer,
22
- ?request_options: Increase::request_opts
23
- ) -> Increase::Internal::Page[Increase::BookkeepingAccount]
24
-
25
- def balance: (
26
- String bookkeeping_account_id,
27
- ?at_time: Time,
28
- ?request_options: Increase::request_opts
29
- ) -> Increase::BookkeepingBalanceLookup
30
-
31
- def initialize: (client: Increase::Client) -> void
32
- end
33
- end
34
- end
@@ -1,19 +0,0 @@
1
- module Increase
2
- module Resources
3
- class BookkeepingEntries
4
- def retrieve: (
5
- String bookkeeping_entry_id,
6
- ?request_options: Increase::request_opts
7
- ) -> Increase::BookkeepingEntry
8
-
9
- def list: (
10
- ?account_id: String,
11
- ?cursor: String,
12
- ?limit: Integer,
13
- ?request_options: Increase::request_opts
14
- ) -> Increase::Internal::Page[Increase::BookkeepingEntry]
15
-
16
- def initialize: (client: Increase::Client) -> void
17
- end
18
- end
19
- end
@@ -1,27 +0,0 @@
1
- module Increase
2
- module Resources
3
- class BookkeepingEntrySets
4
- def create: (
5
- entries: ::Array[Increase::BookkeepingEntrySetCreateParams::Entry],
6
- ?date: Time,
7
- ?transaction_id: String,
8
- ?request_options: Increase::request_opts
9
- ) -> Increase::BookkeepingEntrySet
10
-
11
- def retrieve: (
12
- String bookkeeping_entry_set_id,
13
- ?request_options: Increase::request_opts
14
- ) -> Increase::BookkeepingEntrySet
15
-
16
- def list: (
17
- ?cursor: String,
18
- ?idempotency_key: String,
19
- ?limit: Integer,
20
- ?transaction_id: String,
21
- ?request_options: Increase::request_opts
22
- ) -> Increase::Internal::Page[Increase::BookkeepingEntrySet]
23
-
24
- def initialize: (client: Increase::Client) -> void
25
- end
26
- end
27
- end