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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -0
- data/README.md +1 -1
- data/lib/increase/client.rb +0 -12
- data/lib/increase/models.rb +0 -26
- data/lib/increase/version.rb +1 -1
- data/lib/increase.rb +0 -16
- data/rbi/increase/client.rbi +0 -9
- data/rbi/increase/models.rbi +0 -33
- data/sig/increase/client.rbs +0 -6
- data/sig/increase/models.rbs +0 -26
- metadata +2 -50
- data/lib/increase/models/bookkeeping_account.rb +0 -104
- data/lib/increase/models/bookkeeping_account_balance_params.rb +0 -30
- data/lib/increase/models/bookkeeping_account_create_params.rb +0 -60
- data/lib/increase/models/bookkeeping_account_list_params.rb +0 -45
- data/lib/increase/models/bookkeeping_account_update_params.rb +0 -30
- data/lib/increase/models/bookkeeping_balance_lookup.rb +0 -54
- data/lib/increase/models/bookkeeping_entry.rb +0 -79
- data/lib/increase/models/bookkeeping_entry_list_params.rb +0 -42
- data/lib/increase/models/bookkeeping_entry_retrieve_params.rb +0 -22
- data/lib/increase/models/bookkeeping_entry_set.rb +0 -116
- data/lib/increase/models/bookkeeping_entry_set_create_params.rb +0 -67
- data/lib/increase/models/bookkeeping_entry_set_list_params.rb +0 -53
- data/lib/increase/models/bookkeeping_entry_set_retrieve_params.rb +0 -22
- data/lib/increase/resources/bookkeeping_accounts.rb +0 -122
- data/lib/increase/resources/bookkeeping_entries.rb +0 -65
- data/lib/increase/resources/bookkeeping_entry_sets.rb +0 -96
- data/rbi/increase/models/bookkeeping_account.rbi +0 -165
- data/rbi/increase/models/bookkeeping_account_balance_params.rbi +0 -57
- data/rbi/increase/models/bookkeeping_account_create_params.rbi +0 -130
- data/rbi/increase/models/bookkeeping_account_list_params.rbi +0 -79
- data/rbi/increase/models/bookkeeping_account_update_params.rbi +0 -54
- data/rbi/increase/models/bookkeeping_balance_lookup.rbi +0 -85
- data/rbi/increase/models/bookkeeping_entry.rbi +0 -108
- data/rbi/increase/models/bookkeeping_entry_list_params.rbi +0 -73
- data/rbi/increase/models/bookkeeping_entry_retrieve_params.rbi +0 -46
- data/rbi/increase/models/bookkeeping_entry_set.rbi +0 -162
- data/rbi/increase/models/bookkeeping_entry_set_create_params.rbi +0 -110
- data/rbi/increase/models/bookkeeping_entry_set_list_params.rbi +0 -90
- data/rbi/increase/models/bookkeeping_entry_set_retrieve_params.rbi +0 -46
- data/rbi/increase/resources/bookkeeping_accounts.rbi +0 -94
- data/rbi/increase/resources/bookkeeping_entries.rbi +0 -47
- data/rbi/increase/resources/bookkeeping_entry_sets.rbi +0 -75
- data/sig/increase/models/bookkeeping_account.rbs +0 -74
- data/sig/increase/models/bookkeeping_account_balance_params.rbs +0 -30
- data/sig/increase/models/bookkeeping_account_create_params.rbs +0 -63
- data/sig/increase/models/bookkeeping_account_list_params.rbs +0 -38
- data/sig/increase/models/bookkeeping_account_update_params.rbs +0 -28
- data/sig/increase/models/bookkeeping_balance_lookup.rbs +0 -40
- data/sig/increase/models/bookkeeping_entry.rbs +0 -55
- data/sig/increase/models/bookkeeping_entry_list_params.rbs +0 -38
- data/sig/increase/models/bookkeeping_entry_retrieve_params.rbs +0 -24
- data/sig/increase/models/bookkeeping_entry_set.rbs +0 -78
- data/sig/increase/models/bookkeeping_entry_set_create_params.rbs +0 -52
- data/sig/increase/models/bookkeeping_entry_set_list_params.rbs +0 -49
- data/sig/increase/models/bookkeeping_entry_set_retrieve_params.rbs +0 -24
- data/sig/increase/resources/bookkeeping_accounts.rbs +0 -34
- data/sig/increase/resources/bookkeeping_entries.rbs +0 -19
- 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
|