merge_accounting_client 1.0.5 → 1.0.6
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 +4 -4
- data/docs/AccountsApi.md +4 -0
- data/docs/BalanceSheetsApi.md +4 -0
- data/docs/CashFlowStatementsApi.md +4 -0
- data/docs/CompanyInfoApi.md +4 -0
- data/docs/ContactsApi.md +4 -0
- data/docs/CreditNotesApi.md +4 -0
- data/docs/ExpensesApi.md +4 -0
- data/docs/ForceResyncApi.md +1 -1
- data/docs/IncomeStatementsApi.md +4 -0
- data/docs/InvoicesApi.md +4 -0
- data/docs/ItemsApi.md +4 -0
- data/docs/JournalEntriesApi.md +4 -0
- data/docs/PaymentsApi.md +4 -0
- data/docs/PurchaseOrdersApi.md +4 -0
- data/docs/TaxRatesApi.md +4 -0
- data/docs/TrackingCategoriesApi.md +4 -0
- data/docs/TransactionsApi.md +4 -0
- data/docs/VendorCreditsApi.md +4 -0
- data/lib/merge_accounting_client/api/accounts_api.rb +14 -0
- data/lib/merge_accounting_client/api/balance_sheets_api.rb +14 -0
- data/lib/merge_accounting_client/api/cash_flow_statements_api.rb +14 -0
- data/lib/merge_accounting_client/api/company_info_api.rb +14 -0
- data/lib/merge_accounting_client/api/contacts_api.rb +14 -0
- data/lib/merge_accounting_client/api/credit_notes_api.rb +14 -0
- data/lib/merge_accounting_client/api/expenses_api.rb +14 -0
- data/lib/merge_accounting_client/api/force_resync_api.rb +2 -2
- data/lib/merge_accounting_client/api/income_statements_api.rb +14 -0
- data/lib/merge_accounting_client/api/invoices_api.rb +14 -0
- data/lib/merge_accounting_client/api/items_api.rb +14 -0
- data/lib/merge_accounting_client/api/journal_entries_api.rb +14 -0
- data/lib/merge_accounting_client/api/payments_api.rb +14 -0
- data/lib/merge_accounting_client/api/purchase_orders_api.rb +14 -0
- data/lib/merge_accounting_client/api/tax_rates_api.rb +14 -0
- data/lib/merge_accounting_client/api/tracking_categories_api.rb +14 -0
- data/lib/merge_accounting_client/api/transactions_api.rb +14 -0
- data/lib/merge_accounting_client/api/vendor_credits_api.rb +14 -0
- data/lib/merge_accounting_client/version.rb +1 -1
- data/spec/api/accounts_api_spec.rb +2 -0
- data/spec/api/balance_sheets_api_spec.rb +2 -0
- data/spec/api/cash_flow_statements_api_spec.rb +2 -0
- data/spec/api/company_info_api_spec.rb +2 -0
- data/spec/api/contacts_api_spec.rb +2 -0
- data/spec/api/credit_notes_api_spec.rb +2 -0
- data/spec/api/expenses_api_spec.rb +2 -0
- data/spec/api/force_resync_api_spec.rb +1 -1
- data/spec/api/income_statements_api_spec.rb +2 -0
- data/spec/api/invoices_api_spec.rb +2 -0
- data/spec/api/items_api_spec.rb +2 -0
- data/spec/api/journal_entries_api_spec.rb +2 -0
- data/spec/api/payments_api_spec.rb +2 -0
- data/spec/api/purchase_orders_api_spec.rb +2 -0
- data/spec/api/tax_rates_api_spec.rb +2 -0
- data/spec/api/tracking_categories_api_spec.rb +2 -0
- data/spec/api/transactions_api_spec.rb +2 -0
- data/spec/api/vendor_credits_api_spec.rb +2 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 150f77c3eaf38542fd9b843e09f2cc6f0cce8f8d4fd9464f241da7d07f105a25
|
4
|
+
data.tar.gz: 2111fcb47a136556bd7decb8ea5870ee6977f5deb88edcec7cf066bd7f879f10
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fcdf6dbacb5317301ef627e3bf162a1f37635b5920bdb3ea4fe9d180a87400f68d6e17aa1e4ae3e8402d85c328e355dc4ade3871feabaf895291b56cfa1d1176
|
7
|
+
data.tar.gz: 0aaab7ca0c7decacc80cb7219104bee22272f25dd2f68321664d2f7d8b5277c4cdd4e0ec921a3f825ad89cba1e9fb4ac8bb525c22a211ac774c4434ee1fb6c2f
|
data/README.md
CHANGED
@@ -7,7 +7,7 @@ The unified API for building rich integrations with multiple Accounting & Financ
|
|
7
7
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
8
8
|
|
9
9
|
- API version: 1.0
|
10
|
-
- Package version: 1.0.
|
10
|
+
- Package version: 1.0.6
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
12
12
|
For more information, please visit [https://www.merge.dev/](https://www.merge.dev/)
|
13
13
|
|
@@ -24,16 +24,16 @@ gem build merge_accounting_client.gemspec
|
|
24
24
|
Then either install the gem locally:
|
25
25
|
|
26
26
|
```shell
|
27
|
-
gem install ./merge_accounting_client-1.0.
|
27
|
+
gem install ./merge_accounting_client-1.0.6.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./merge_accounting_client-1.0.
|
30
|
+
(for development, run `gem install --dev ./merge_accounting_client-1.0.6.gem` to install the development dependencies)
|
31
31
|
|
32
32
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
33
33
|
|
34
34
|
Finally add this to the Gemfile:
|
35
35
|
|
36
|
-
gem 'merge_accounting_client', '~> 1.0.
|
36
|
+
gem 'merge_accounting_client', '~> 1.0.6'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
data/docs/AccountsApi.md
CHANGED
@@ -117,6 +117,7 @@ opts = {
|
|
117
117
|
created_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created after this datetime.
|
118
118
|
created_before: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created before this datetime.
|
119
119
|
cursor: 'cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw', # String | The pagination cursor value.
|
120
|
+
expand: 'company', # String | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
120
121
|
include_deleted_data: true, # Boolean | Whether to include data that was marked as deleted by third party webhooks.
|
121
122
|
include_remote_data: true, # Boolean | Whether to include the original data Merge fetched from the third-party to produce these models.
|
122
123
|
modified_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects modified after this datetime.
|
@@ -163,6 +164,7 @@ end
|
|
163
164
|
| **created_after** | **Time** | If provided, will only return objects created after this datetime. | [optional] |
|
164
165
|
| **created_before** | **Time** | If provided, will only return objects created before this datetime. | [optional] |
|
165
166
|
| **cursor** | **String** | The pagination cursor value. | [optional] |
|
167
|
+
| **expand** | **String** | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. | [optional] |
|
166
168
|
| **include_deleted_data** | **Boolean** | Whether to include data that was marked as deleted by third party webhooks. | [optional] |
|
167
169
|
| **include_remote_data** | **Boolean** | Whether to include the original data Merge fetched from the third-party to produce these models. | [optional] |
|
168
170
|
| **modified_after** | **Time** | If provided, will only return objects modified after this datetime. | [optional] |
|
@@ -282,6 +284,7 @@ api_instance = MergeAccountingClient::AccountsApi.new
|
|
282
284
|
x_account_token = 'x_account_token_example' # String | Token identifying the end user.
|
283
285
|
id = TODO # String |
|
284
286
|
opts = {
|
287
|
+
expand: 'company', # String | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
285
288
|
include_remote_data: true, # Boolean | Whether to include the original data Merge fetched from the third-party to produce these models.
|
286
289
|
remote_fields: 'classification', # String | Deprecated. Use show_enum_origins.
|
287
290
|
show_enum_origins: 'classification' # String | Which fields should be returned in non-normalized form.
|
@@ -320,6 +323,7 @@ end
|
|
320
323
|
| ---- | ---- | ----------- | ----- |
|
321
324
|
| **x_account_token** | **String** | Token identifying the end user. | |
|
322
325
|
| **id** | [**String**](.md) | | |
|
326
|
+
| **expand** | **String** | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. | [optional] |
|
323
327
|
| **include_remote_data** | **Boolean** | Whether to include the original data Merge fetched from the third-party to produce these models. | [optional] |
|
324
328
|
| **remote_fields** | **String** | Deprecated. Use show_enum_origins. | [optional] |
|
325
329
|
| **show_enum_origins** | **String** | Which fields should be returned in non-normalized form. | [optional] |
|
data/docs/BalanceSheetsApi.md
CHANGED
@@ -36,6 +36,7 @@ opts = {
|
|
36
36
|
created_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created after this datetime.
|
37
37
|
created_before: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created before this datetime.
|
38
38
|
cursor: 'cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw', # String | The pagination cursor value.
|
39
|
+
expand: 'company', # String | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
39
40
|
include_deleted_data: true, # Boolean | Whether to include data that was marked as deleted by third party webhooks.
|
40
41
|
include_remote_data: true, # Boolean | Whether to include the original data Merge fetched from the third-party to produce these models.
|
41
42
|
modified_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects modified after this datetime.
|
@@ -80,6 +81,7 @@ end
|
|
80
81
|
| **created_after** | **Time** | If provided, will only return objects created after this datetime. | [optional] |
|
81
82
|
| **created_before** | **Time** | If provided, will only return objects created before this datetime. | [optional] |
|
82
83
|
| **cursor** | **String** | The pagination cursor value. | [optional] |
|
84
|
+
| **expand** | **String** | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. | [optional] |
|
83
85
|
| **include_deleted_data** | **Boolean** | Whether to include data that was marked as deleted by third party webhooks. | [optional] |
|
84
86
|
| **include_remote_data** | **Boolean** | Whether to include the original data Merge fetched from the third-party to produce these models. | [optional] |
|
85
87
|
| **modified_after** | **Time** | If provided, will only return objects modified after this datetime. | [optional] |
|
@@ -126,6 +128,7 @@ api_instance = MergeAccountingClient::BalanceSheetsApi.new
|
|
126
128
|
x_account_token = 'x_account_token_example' # String | Token identifying the end user.
|
127
129
|
id = TODO # String |
|
128
130
|
opts = {
|
131
|
+
expand: 'company', # String | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
129
132
|
include_remote_data: true # Boolean | Whether to include the original data Merge fetched from the third-party to produce these models.
|
130
133
|
}
|
131
134
|
|
@@ -162,6 +165,7 @@ end
|
|
162
165
|
| ---- | ---- | ----------- | ----- |
|
163
166
|
| **x_account_token** | **String** | Token identifying the end user. | |
|
164
167
|
| **id** | [**String**](.md) | | |
|
168
|
+
| **expand** | **String** | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. | [optional] |
|
165
169
|
| **include_remote_data** | **Boolean** | Whether to include the original data Merge fetched from the third-party to produce these models. | [optional] |
|
166
170
|
|
167
171
|
### Return type
|
@@ -36,6 +36,7 @@ opts = {
|
|
36
36
|
created_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created after this datetime.
|
37
37
|
created_before: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created before this datetime.
|
38
38
|
cursor: 'cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw', # String | The pagination cursor value.
|
39
|
+
expand: 'company', # String | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
39
40
|
include_deleted_data: true, # Boolean | Whether to include data that was marked as deleted by third party webhooks.
|
40
41
|
include_remote_data: true, # Boolean | Whether to include the original data Merge fetched from the third-party to produce these models.
|
41
42
|
modified_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects modified after this datetime.
|
@@ -80,6 +81,7 @@ end
|
|
80
81
|
| **created_after** | **Time** | If provided, will only return objects created after this datetime. | [optional] |
|
81
82
|
| **created_before** | **Time** | If provided, will only return objects created before this datetime. | [optional] |
|
82
83
|
| **cursor** | **String** | The pagination cursor value. | [optional] |
|
84
|
+
| **expand** | **String** | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. | [optional] |
|
83
85
|
| **include_deleted_data** | **Boolean** | Whether to include data that was marked as deleted by third party webhooks. | [optional] |
|
84
86
|
| **include_remote_data** | **Boolean** | Whether to include the original data Merge fetched from the third-party to produce these models. | [optional] |
|
85
87
|
| **modified_after** | **Time** | If provided, will only return objects modified after this datetime. | [optional] |
|
@@ -126,6 +128,7 @@ api_instance = MergeAccountingClient::CashFlowStatementsApi.new
|
|
126
128
|
x_account_token = 'x_account_token_example' # String | Token identifying the end user.
|
127
129
|
id = TODO # String |
|
128
130
|
opts = {
|
131
|
+
expand: 'company', # String | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
129
132
|
include_remote_data: true # Boolean | Whether to include the original data Merge fetched from the third-party to produce these models.
|
130
133
|
}
|
131
134
|
|
@@ -162,6 +165,7 @@ end
|
|
162
165
|
| ---- | ---- | ----------- | ----- |
|
163
166
|
| **x_account_token** | **String** | Token identifying the end user. | |
|
164
167
|
| **id** | [**String**](.md) | | |
|
168
|
+
| **expand** | **String** | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. | [optional] |
|
165
169
|
| **include_remote_data** | **Boolean** | Whether to include the original data Merge fetched from the third-party to produce these models. | [optional] |
|
166
170
|
|
167
171
|
### Return type
|
data/docs/CompanyInfoApi.md
CHANGED
@@ -35,6 +35,7 @@ opts = {
|
|
35
35
|
created_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created after this datetime.
|
36
36
|
created_before: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created before this datetime.
|
37
37
|
cursor: 'cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw', # String | The pagination cursor value.
|
38
|
+
expand: 'addresses', # String | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
38
39
|
include_deleted_data: true, # Boolean | Whether to include data that was marked as deleted by third party webhooks.
|
39
40
|
include_remote_data: true, # Boolean | Whether to include the original data Merge fetched from the third-party to produce these models.
|
40
41
|
modified_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects modified after this datetime.
|
@@ -78,6 +79,7 @@ end
|
|
78
79
|
| **created_after** | **Time** | If provided, will only return objects created after this datetime. | [optional] |
|
79
80
|
| **created_before** | **Time** | If provided, will only return objects created before this datetime. | [optional] |
|
80
81
|
| **cursor** | **String** | The pagination cursor value. | [optional] |
|
82
|
+
| **expand** | **String** | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. | [optional] |
|
81
83
|
| **include_deleted_data** | **Boolean** | Whether to include data that was marked as deleted by third party webhooks. | [optional] |
|
82
84
|
| **include_remote_data** | **Boolean** | Whether to include the original data Merge fetched from the third-party to produce these models. | [optional] |
|
83
85
|
| **modified_after** | **Time** | If provided, will only return objects modified after this datetime. | [optional] |
|
@@ -124,6 +126,7 @@ api_instance = MergeAccountingClient::CompanyInfoApi.new
|
|
124
126
|
x_account_token = 'x_account_token_example' # String | Token identifying the end user.
|
125
127
|
id = TODO # String |
|
126
128
|
opts = {
|
129
|
+
expand: 'addresses', # String | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
127
130
|
include_remote_data: true # Boolean | Whether to include the original data Merge fetched from the third-party to produce these models.
|
128
131
|
}
|
129
132
|
|
@@ -160,6 +163,7 @@ end
|
|
160
163
|
| ---- | ---- | ----------- | ----- |
|
161
164
|
| **x_account_token** | **String** | Token identifying the end user. | |
|
162
165
|
| **id** | [**String**](.md) | | |
|
166
|
+
| **expand** | **String** | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. | [optional] |
|
163
167
|
| **include_remote_data** | **Boolean** | Whether to include the original data Merge fetched from the third-party to produce these models. | [optional] |
|
164
168
|
|
165
169
|
### Return type
|
data/docs/ContactsApi.md
CHANGED
@@ -117,6 +117,7 @@ opts = {
|
|
117
117
|
created_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created after this datetime.
|
118
118
|
created_before: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created before this datetime.
|
119
119
|
cursor: 'cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw', # String | The pagination cursor value.
|
120
|
+
expand: 'addresses', # String | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
120
121
|
include_deleted_data: true, # Boolean | Whether to include data that was marked as deleted by third party webhooks.
|
121
122
|
include_remote_data: true, # Boolean | Whether to include the original data Merge fetched from the third-party to produce these models.
|
122
123
|
modified_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects modified after this datetime.
|
@@ -163,6 +164,7 @@ end
|
|
163
164
|
| **created_after** | **Time** | If provided, will only return objects created after this datetime. | [optional] |
|
164
165
|
| **created_before** | **Time** | If provided, will only return objects created before this datetime. | [optional] |
|
165
166
|
| **cursor** | **String** | The pagination cursor value. | [optional] |
|
167
|
+
| **expand** | **String** | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. | [optional] |
|
166
168
|
| **include_deleted_data** | **Boolean** | Whether to include data that was marked as deleted by third party webhooks. | [optional] |
|
167
169
|
| **include_remote_data** | **Boolean** | Whether to include the original data Merge fetched from the third-party to produce these models. | [optional] |
|
168
170
|
| **modified_after** | **Time** | If provided, will only return objects modified after this datetime. | [optional] |
|
@@ -282,6 +284,7 @@ api_instance = MergeAccountingClient::ContactsApi.new
|
|
282
284
|
x_account_token = 'x_account_token_example' # String | Token identifying the end user.
|
283
285
|
id = TODO # String |
|
284
286
|
opts = {
|
287
|
+
expand: 'addresses', # String | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
285
288
|
include_remote_data: true, # Boolean | Whether to include the original data Merge fetched from the third-party to produce these models.
|
286
289
|
remote_fields: 'status', # String | Deprecated. Use show_enum_origins.
|
287
290
|
show_enum_origins: 'status' # String | Which fields should be returned in non-normalized form.
|
@@ -320,6 +323,7 @@ end
|
|
320
323
|
| ---- | ---- | ----------- | ----- |
|
321
324
|
| **x_account_token** | **String** | Token identifying the end user. | |
|
322
325
|
| **id** | [**String**](.md) | | |
|
326
|
+
| **expand** | **String** | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. | [optional] |
|
323
327
|
| **include_remote_data** | **Boolean** | Whether to include the original data Merge fetched from the third-party to produce these models. | [optional] |
|
324
328
|
| **remote_fields** | **String** | Deprecated. Use show_enum_origins. | [optional] |
|
325
329
|
| **show_enum_origins** | **String** | Which fields should be returned in non-normalized form. | [optional] |
|
data/docs/CreditNotesApi.md
CHANGED
@@ -36,6 +36,7 @@ opts = {
|
|
36
36
|
created_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created after this datetime.
|
37
37
|
created_before: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created before this datetime.
|
38
38
|
cursor: 'cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw', # String | The pagination cursor value.
|
39
|
+
expand: 'line_items', # String | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
39
40
|
include_deleted_data: true, # Boolean | Whether to include data that was marked as deleted by third party webhooks.
|
40
41
|
include_remote_data: true, # Boolean | Whether to include the original data Merge fetched from the third-party to produce these models.
|
41
42
|
modified_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects modified after this datetime.
|
@@ -84,6 +85,7 @@ end
|
|
84
85
|
| **created_after** | **Time** | If provided, will only return objects created after this datetime. | [optional] |
|
85
86
|
| **created_before** | **Time** | If provided, will only return objects created before this datetime. | [optional] |
|
86
87
|
| **cursor** | **String** | The pagination cursor value. | [optional] |
|
88
|
+
| **expand** | **String** | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. | [optional] |
|
87
89
|
| **include_deleted_data** | **Boolean** | Whether to include data that was marked as deleted by third party webhooks. | [optional] |
|
88
90
|
| **include_remote_data** | **Boolean** | Whether to include the original data Merge fetched from the third-party to produce these models. | [optional] |
|
89
91
|
| **modified_after** | **Time** | If provided, will only return objects modified after this datetime. | [optional] |
|
@@ -134,6 +136,7 @@ api_instance = MergeAccountingClient::CreditNotesApi.new
|
|
134
136
|
x_account_token = 'x_account_token_example' # String | Token identifying the end user.
|
135
137
|
id = TODO # String |
|
136
138
|
opts = {
|
139
|
+
expand: 'line_items', # String | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
137
140
|
include_remote_data: true, # Boolean | Whether to include the original data Merge fetched from the third-party to produce these models.
|
138
141
|
remote_fields: 'status', # String | Deprecated. Use show_enum_origins.
|
139
142
|
show_enum_origins: 'status' # String | Which fields should be returned in non-normalized form.
|
@@ -172,6 +175,7 @@ end
|
|
172
175
|
| ---- | ---- | ----------- | ----- |
|
173
176
|
| **x_account_token** | **String** | Token identifying the end user. | |
|
174
177
|
| **id** | [**String**](.md) | | |
|
178
|
+
| **expand** | **String** | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. | [optional] |
|
175
179
|
| **include_remote_data** | **Boolean** | Whether to include the original data Merge fetched from the third-party to produce these models. | [optional] |
|
176
180
|
| **remote_fields** | **String** | Deprecated. Use show_enum_origins. | [optional] |
|
177
181
|
| **show_enum_origins** | **String** | Which fields should be returned in non-normalized form. | [optional] |
|
data/docs/ExpensesApi.md
CHANGED
@@ -117,6 +117,7 @@ opts = {
|
|
117
117
|
created_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created after this datetime.
|
118
118
|
created_before: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created before this datetime.
|
119
119
|
cursor: 'cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw', # String | The pagination cursor value.
|
120
|
+
expand: 'account', # String | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
120
121
|
include_deleted_data: true, # Boolean | Whether to include data that was marked as deleted by third party webhooks.
|
121
122
|
include_remote_data: true, # Boolean | Whether to include the original data Merge fetched from the third-party to produce these models.
|
122
123
|
modified_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects modified after this datetime.
|
@@ -163,6 +164,7 @@ end
|
|
163
164
|
| **created_after** | **Time** | If provided, will only return objects created after this datetime. | [optional] |
|
164
165
|
| **created_before** | **Time** | If provided, will only return objects created before this datetime. | [optional] |
|
165
166
|
| **cursor** | **String** | The pagination cursor value. | [optional] |
|
167
|
+
| **expand** | **String** | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. | [optional] |
|
166
168
|
| **include_deleted_data** | **Boolean** | Whether to include data that was marked as deleted by third party webhooks. | [optional] |
|
167
169
|
| **include_remote_data** | **Boolean** | Whether to include the original data Merge fetched from the third-party to produce these models. | [optional] |
|
168
170
|
| **modified_after** | **Time** | If provided, will only return objects modified after this datetime. | [optional] |
|
@@ -282,6 +284,7 @@ api_instance = MergeAccountingClient::ExpensesApi.new
|
|
282
284
|
x_account_token = 'x_account_token_example' # String | Token identifying the end user.
|
283
285
|
id = TODO # String |
|
284
286
|
opts = {
|
287
|
+
expand: 'account', # String | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
285
288
|
include_remote_data: true # Boolean | Whether to include the original data Merge fetched from the third-party to produce these models.
|
286
289
|
}
|
287
290
|
|
@@ -318,6 +321,7 @@ end
|
|
318
321
|
| ---- | ---- | ----------- | ----- |
|
319
322
|
| **x_account_token** | **String** | Token identifying the end user. | |
|
320
323
|
| **id** | [**String**](.md) | | |
|
324
|
+
| **expand** | **String** | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. | [optional] |
|
321
325
|
| **include_remote_data** | **Boolean** | Whether to include the original data Merge fetched from the third-party to produce these models. | [optional] |
|
322
326
|
|
323
327
|
### Return type
|
data/docs/ForceResyncApi.md
CHANGED
@@ -13,7 +13,7 @@ All URIs are relative to *https://api.merge.dev/api/accounting/v1*
|
|
13
13
|
|
14
14
|
|
15
15
|
|
16
|
-
Force re-sync of all models. This is
|
16
|
+
Force re-sync of all models. This is available for all organizations via the dashboard. Force re-sync is also available for monthly and quarterly sync frequency customers on the Core, Professional, or Enterprise plans.
|
17
17
|
|
18
18
|
### Examples
|
19
19
|
|
data/docs/IncomeStatementsApi.md
CHANGED
@@ -36,6 +36,7 @@ opts = {
|
|
36
36
|
created_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created after this datetime.
|
37
37
|
created_before: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created before this datetime.
|
38
38
|
cursor: 'cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw', # String | The pagination cursor value.
|
39
|
+
expand: 'company', # String | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
39
40
|
include_deleted_data: true, # Boolean | Whether to include data that was marked as deleted by third party webhooks.
|
40
41
|
include_remote_data: true, # Boolean | Whether to include the original data Merge fetched from the third-party to produce these models.
|
41
42
|
modified_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects modified after this datetime.
|
@@ -80,6 +81,7 @@ end
|
|
80
81
|
| **created_after** | **Time** | If provided, will only return objects created after this datetime. | [optional] |
|
81
82
|
| **created_before** | **Time** | If provided, will only return objects created before this datetime. | [optional] |
|
82
83
|
| **cursor** | **String** | The pagination cursor value. | [optional] |
|
84
|
+
| **expand** | **String** | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. | [optional] |
|
83
85
|
| **include_deleted_data** | **Boolean** | Whether to include data that was marked as deleted by third party webhooks. | [optional] |
|
84
86
|
| **include_remote_data** | **Boolean** | Whether to include the original data Merge fetched from the third-party to produce these models. | [optional] |
|
85
87
|
| **modified_after** | **Time** | If provided, will only return objects modified after this datetime. | [optional] |
|
@@ -126,6 +128,7 @@ api_instance = MergeAccountingClient::IncomeStatementsApi.new
|
|
126
128
|
x_account_token = 'x_account_token_example' # String | Token identifying the end user.
|
127
129
|
id = TODO # String |
|
128
130
|
opts = {
|
131
|
+
expand: 'company', # String | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
129
132
|
include_remote_data: true # Boolean | Whether to include the original data Merge fetched from the third-party to produce these models.
|
130
133
|
}
|
131
134
|
|
@@ -162,6 +165,7 @@ end
|
|
162
165
|
| ---- | ---- | ----------- | ----- |
|
163
166
|
| **x_account_token** | **String** | Token identifying the end user. | |
|
164
167
|
| **id** | [**String**](.md) | | |
|
168
|
+
| **expand** | **String** | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. | [optional] |
|
165
169
|
| **include_remote_data** | **Boolean** | Whether to include the original data Merge fetched from the third-party to produce these models. | [optional] |
|
166
170
|
|
167
171
|
### Return type
|
data/docs/InvoicesApi.md
CHANGED
@@ -118,6 +118,7 @@ opts = {
|
|
118
118
|
created_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created after this datetime.
|
119
119
|
created_before: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created before this datetime.
|
120
120
|
cursor: 'cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw', # String | The pagination cursor value.
|
121
|
+
expand: 'company', # String | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
121
122
|
include_deleted_data: true, # Boolean | Whether to include data that was marked as deleted by third party webhooks.
|
122
123
|
include_remote_data: true, # Boolean | Whether to include the original data Merge fetched from the third-party to produce these models.
|
123
124
|
issue_date_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created after this datetime.
|
@@ -168,6 +169,7 @@ end
|
|
168
169
|
| **created_after** | **Time** | If provided, will only return objects created after this datetime. | [optional] |
|
169
170
|
| **created_before** | **Time** | If provided, will only return objects created before this datetime. | [optional] |
|
170
171
|
| **cursor** | **String** | The pagination cursor value. | [optional] |
|
172
|
+
| **expand** | **String** | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. | [optional] |
|
171
173
|
| **include_deleted_data** | **Boolean** | Whether to include data that was marked as deleted by third party webhooks. | [optional] |
|
172
174
|
| **include_remote_data** | **Boolean** | Whether to include the original data Merge fetched from the third-party to produce these models. | [optional] |
|
173
175
|
| **issue_date_after** | **Time** | If provided, will only return objects created after this datetime. | [optional] |
|
@@ -290,6 +292,7 @@ api_instance = MergeAccountingClient::InvoicesApi.new
|
|
290
292
|
x_account_token = 'x_account_token_example' # String | Token identifying the end user.
|
291
293
|
id = TODO # String |
|
292
294
|
opts = {
|
295
|
+
expand: 'company', # String | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
293
296
|
include_remote_data: true, # Boolean | Whether to include the original data Merge fetched from the third-party to produce these models.
|
294
297
|
remote_fields: 'type', # String | Deprecated. Use show_enum_origins.
|
295
298
|
show_enum_origins: 'type' # String | Which fields should be returned in non-normalized form.
|
@@ -328,6 +331,7 @@ end
|
|
328
331
|
| ---- | ---- | ----------- | ----- |
|
329
332
|
| **x_account_token** | **String** | Token identifying the end user. | |
|
330
333
|
| **id** | [**String**](.md) | | |
|
334
|
+
| **expand** | **String** | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. | [optional] |
|
331
335
|
| **include_remote_data** | **Boolean** | Whether to include the original data Merge fetched from the third-party to produce these models. | [optional] |
|
332
336
|
| **remote_fields** | **String** | Deprecated. Use show_enum_origins. | [optional] |
|
333
337
|
| **show_enum_origins** | **String** | Which fields should be returned in non-normalized form. | [optional] |
|
data/docs/ItemsApi.md
CHANGED
@@ -36,6 +36,7 @@ opts = {
|
|
36
36
|
created_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created after this datetime.
|
37
37
|
created_before: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created before this datetime.
|
38
38
|
cursor: 'cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw', # String | The pagination cursor value.
|
39
|
+
expand: 'company', # String | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
39
40
|
include_deleted_data: true, # Boolean | Whether to include data that was marked as deleted by third party webhooks.
|
40
41
|
include_remote_data: true, # Boolean | Whether to include the original data Merge fetched from the third-party to produce these models.
|
41
42
|
modified_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects modified after this datetime.
|
@@ -82,6 +83,7 @@ end
|
|
82
83
|
| **created_after** | **Time** | If provided, will only return objects created after this datetime. | [optional] |
|
83
84
|
| **created_before** | **Time** | If provided, will only return objects created before this datetime. | [optional] |
|
84
85
|
| **cursor** | **String** | The pagination cursor value. | [optional] |
|
86
|
+
| **expand** | **String** | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. | [optional] |
|
85
87
|
| **include_deleted_data** | **Boolean** | Whether to include data that was marked as deleted by third party webhooks. | [optional] |
|
86
88
|
| **include_remote_data** | **Boolean** | Whether to include the original data Merge fetched from the third-party to produce these models. | [optional] |
|
87
89
|
| **modified_after** | **Time** | If provided, will only return objects modified after this datetime. | [optional] |
|
@@ -130,6 +132,7 @@ api_instance = MergeAccountingClient::ItemsApi.new
|
|
130
132
|
x_account_token = 'x_account_token_example' # String | Token identifying the end user.
|
131
133
|
id = TODO # String |
|
132
134
|
opts = {
|
135
|
+
expand: 'company', # String | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
133
136
|
include_remote_data: true, # Boolean | Whether to include the original data Merge fetched from the third-party to produce these models.
|
134
137
|
remote_fields: 'status', # String | Deprecated. Use show_enum_origins.
|
135
138
|
show_enum_origins: 'status' # String | Which fields should be returned in non-normalized form.
|
@@ -168,6 +171,7 @@ end
|
|
168
171
|
| ---- | ---- | ----------- | ----- |
|
169
172
|
| **x_account_token** | **String** | Token identifying the end user. | |
|
170
173
|
| **id** | [**String**](.md) | | |
|
174
|
+
| **expand** | **String** | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. | [optional] |
|
171
175
|
| **include_remote_data** | **Boolean** | Whether to include the original data Merge fetched from the third-party to produce these models. | [optional] |
|
172
176
|
| **remote_fields** | **String** | Deprecated. Use show_enum_origins. | [optional] |
|
173
177
|
| **show_enum_origins** | **String** | Which fields should be returned in non-normalized form. | [optional] |
|
data/docs/JournalEntriesApi.md
CHANGED
@@ -117,6 +117,7 @@ opts = {
|
|
117
117
|
created_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created after this datetime.
|
118
118
|
created_before: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created before this datetime.
|
119
119
|
cursor: 'cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw', # String | The pagination cursor value.
|
120
|
+
expand: 'company', # String | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
120
121
|
include_deleted_data: true, # Boolean | Whether to include data that was marked as deleted by third party webhooks.
|
121
122
|
include_remote_data: true, # Boolean | Whether to include the original data Merge fetched from the third-party to produce these models.
|
122
123
|
modified_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects modified after this datetime.
|
@@ -163,6 +164,7 @@ end
|
|
163
164
|
| **created_after** | **Time** | If provided, will only return objects created after this datetime. | [optional] |
|
164
165
|
| **created_before** | **Time** | If provided, will only return objects created before this datetime. | [optional] |
|
165
166
|
| **cursor** | **String** | The pagination cursor value. | [optional] |
|
167
|
+
| **expand** | **String** | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. | [optional] |
|
166
168
|
| **include_deleted_data** | **Boolean** | Whether to include data that was marked as deleted by third party webhooks. | [optional] |
|
167
169
|
| **include_remote_data** | **Boolean** | Whether to include the original data Merge fetched from the third-party to produce these models. | [optional] |
|
168
170
|
| **modified_after** | **Time** | If provided, will only return objects modified after this datetime. | [optional] |
|
@@ -282,6 +284,7 @@ api_instance = MergeAccountingClient::JournalEntriesApi.new
|
|
282
284
|
x_account_token = 'x_account_token_example' # String | Token identifying the end user.
|
283
285
|
id = TODO # String |
|
284
286
|
opts = {
|
287
|
+
expand: 'company', # String | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
285
288
|
include_remote_data: true # Boolean | Whether to include the original data Merge fetched from the third-party to produce these models.
|
286
289
|
}
|
287
290
|
|
@@ -318,6 +321,7 @@ end
|
|
318
321
|
| ---- | ---- | ----------- | ----- |
|
319
322
|
| **x_account_token** | **String** | Token identifying the end user. | |
|
320
323
|
| **id** | [**String**](.md) | | |
|
324
|
+
| **expand** | **String** | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. | [optional] |
|
321
325
|
| **include_remote_data** | **Boolean** | Whether to include the original data Merge fetched from the third-party to produce these models. | [optional] |
|
322
326
|
|
323
327
|
### Return type
|
data/docs/PaymentsApi.md
CHANGED
@@ -119,6 +119,7 @@ opts = {
|
|
119
119
|
created_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created after this datetime.
|
120
120
|
created_before: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created before this datetime.
|
121
121
|
cursor: 'cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw', # String | The pagination cursor value.
|
122
|
+
expand: 'account', # String | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
122
123
|
include_deleted_data: true, # Boolean | Whether to include data that was marked as deleted by third party webhooks.
|
123
124
|
include_remote_data: true, # Boolean | Whether to include the original data Merge fetched from the third-party to produce these models.
|
124
125
|
modified_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects modified after this datetime.
|
@@ -167,6 +168,7 @@ end
|
|
167
168
|
| **created_after** | **Time** | If provided, will only return objects created after this datetime. | [optional] |
|
168
169
|
| **created_before** | **Time** | If provided, will only return objects created before this datetime. | [optional] |
|
169
170
|
| **cursor** | **String** | The pagination cursor value. | [optional] |
|
171
|
+
| **expand** | **String** | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. | [optional] |
|
170
172
|
| **include_deleted_data** | **Boolean** | Whether to include data that was marked as deleted by third party webhooks. | [optional] |
|
171
173
|
| **include_remote_data** | **Boolean** | Whether to include the original data Merge fetched from the third-party to produce these models. | [optional] |
|
172
174
|
| **modified_after** | **Time** | If provided, will only return objects modified after this datetime. | [optional] |
|
@@ -286,6 +288,7 @@ api_instance = MergeAccountingClient::PaymentsApi.new
|
|
286
288
|
x_account_token = 'x_account_token_example' # String | Token identifying the end user.
|
287
289
|
id = TODO # String |
|
288
290
|
opts = {
|
291
|
+
expand: 'account', # String | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
289
292
|
include_remote_data: true # Boolean | Whether to include the original data Merge fetched from the third-party to produce these models.
|
290
293
|
}
|
291
294
|
|
@@ -322,6 +325,7 @@ end
|
|
322
325
|
| ---- | ---- | ----------- | ----- |
|
323
326
|
| **x_account_token** | **String** | Token identifying the end user. | |
|
324
327
|
| **id** | [**String**](.md) | | |
|
328
|
+
| **expand** | **String** | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. | [optional] |
|
325
329
|
| **include_remote_data** | **Boolean** | Whether to include the original data Merge fetched from the third-party to produce these models. | [optional] |
|
326
330
|
|
327
331
|
### Return type
|
data/docs/PurchaseOrdersApi.md
CHANGED
@@ -117,6 +117,7 @@ opts = {
|
|
117
117
|
created_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created after this datetime.
|
118
118
|
created_before: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created before this datetime.
|
119
119
|
cursor: 'cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw', # String | The pagination cursor value.
|
120
|
+
expand: 'company', # String | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
120
121
|
include_deleted_data: true, # Boolean | Whether to include data that was marked as deleted by third party webhooks.
|
121
122
|
include_remote_data: true, # Boolean | Whether to include the original data Merge fetched from the third-party to produce these models.
|
122
123
|
issue_date_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created after this datetime.
|
@@ -165,6 +166,7 @@ end
|
|
165
166
|
| **created_after** | **Time** | If provided, will only return objects created after this datetime. | [optional] |
|
166
167
|
| **created_before** | **Time** | If provided, will only return objects created before this datetime. | [optional] |
|
167
168
|
| **cursor** | **String** | The pagination cursor value. | [optional] |
|
169
|
+
| **expand** | **String** | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. | [optional] |
|
168
170
|
| **include_deleted_data** | **Boolean** | Whether to include data that was marked as deleted by third party webhooks. | [optional] |
|
169
171
|
| **include_remote_data** | **Boolean** | Whether to include the original data Merge fetched from the third-party to produce these models. | [optional] |
|
170
172
|
| **issue_date_after** | **Time** | If provided, will only return objects created after this datetime. | [optional] |
|
@@ -286,6 +288,7 @@ api_instance = MergeAccountingClient::PurchaseOrdersApi.new
|
|
286
288
|
x_account_token = 'x_account_token_example' # String | Token identifying the end user.
|
287
289
|
id = TODO # String |
|
288
290
|
opts = {
|
291
|
+
expand: 'company', # String | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
289
292
|
include_remote_data: true, # Boolean | Whether to include the original data Merge fetched from the third-party to produce these models.
|
290
293
|
remote_fields: 'status', # String | Deprecated. Use show_enum_origins.
|
291
294
|
show_enum_origins: 'status' # String | Which fields should be returned in non-normalized form.
|
@@ -324,6 +327,7 @@ end
|
|
324
327
|
| ---- | ---- | ----------- | ----- |
|
325
328
|
| **x_account_token** | **String** | Token identifying the end user. | |
|
326
329
|
| **id** | [**String**](.md) | | |
|
330
|
+
| **expand** | **String** | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. | [optional] |
|
327
331
|
| **include_remote_data** | **Boolean** | Whether to include the original data Merge fetched from the third-party to produce these models. | [optional] |
|
328
332
|
| **remote_fields** | **String** | Deprecated. Use show_enum_origins. | [optional] |
|
329
333
|
| **show_enum_origins** | **String** | Which fields should be returned in non-normalized form. | [optional] |
|
data/docs/TaxRatesApi.md
CHANGED
@@ -36,6 +36,7 @@ opts = {
|
|
36
36
|
created_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created after this datetime.
|
37
37
|
created_before: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created before this datetime.
|
38
38
|
cursor: 'cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw', # String | The pagination cursor value.
|
39
|
+
expand: 'company', # String | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
39
40
|
include_deleted_data: true, # Boolean | Whether to include data that was marked as deleted by third party webhooks.
|
40
41
|
include_remote_data: true, # Boolean | Whether to include the original data Merge fetched from the third-party to produce these models.
|
41
42
|
modified_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects modified after this datetime.
|
@@ -80,6 +81,7 @@ end
|
|
80
81
|
| **created_after** | **Time** | If provided, will only return objects created after this datetime. | [optional] |
|
81
82
|
| **created_before** | **Time** | If provided, will only return objects created before this datetime. | [optional] |
|
82
83
|
| **cursor** | **String** | The pagination cursor value. | [optional] |
|
84
|
+
| **expand** | **String** | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. | [optional] |
|
83
85
|
| **include_deleted_data** | **Boolean** | Whether to include data that was marked as deleted by third party webhooks. | [optional] |
|
84
86
|
| **include_remote_data** | **Boolean** | Whether to include the original data Merge fetched from the third-party to produce these models. | [optional] |
|
85
87
|
| **modified_after** | **Time** | If provided, will only return objects modified after this datetime. | [optional] |
|
@@ -126,6 +128,7 @@ api_instance = MergeAccountingClient::TaxRatesApi.new
|
|
126
128
|
x_account_token = 'x_account_token_example' # String | Token identifying the end user.
|
127
129
|
id = TODO # String |
|
128
130
|
opts = {
|
131
|
+
expand: 'company', # String | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
129
132
|
include_remote_data: true # Boolean | Whether to include the original data Merge fetched from the third-party to produce these models.
|
130
133
|
}
|
131
134
|
|
@@ -162,6 +165,7 @@ end
|
|
162
165
|
| ---- | ---- | ----------- | ----- |
|
163
166
|
| **x_account_token** | **String** | Token identifying the end user. | |
|
164
167
|
| **id** | [**String**](.md) | | |
|
168
|
+
| **expand** | **String** | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. | [optional] |
|
165
169
|
| **include_remote_data** | **Boolean** | Whether to include the original data Merge fetched from the third-party to produce these models. | [optional] |
|
166
170
|
|
167
171
|
### Return type
|
@@ -36,6 +36,7 @@ opts = {
|
|
36
36
|
created_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created after this datetime.
|
37
37
|
created_before: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created before this datetime.
|
38
38
|
cursor: 'cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw', # String | The pagination cursor value.
|
39
|
+
expand: 'company', # String | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
39
40
|
include_deleted_data: true, # Boolean | Whether to include data that was marked as deleted by third party webhooks.
|
40
41
|
include_remote_data: true, # Boolean | Whether to include the original data Merge fetched from the third-party to produce these models.
|
41
42
|
modified_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects modified after this datetime.
|
@@ -82,6 +83,7 @@ end
|
|
82
83
|
| **created_after** | **Time** | If provided, will only return objects created after this datetime. | [optional] |
|
83
84
|
| **created_before** | **Time** | If provided, will only return objects created before this datetime. | [optional] |
|
84
85
|
| **cursor** | **String** | The pagination cursor value. | [optional] |
|
86
|
+
| **expand** | **String** | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. | [optional] |
|
85
87
|
| **include_deleted_data** | **Boolean** | Whether to include data that was marked as deleted by third party webhooks. | [optional] |
|
86
88
|
| **include_remote_data** | **Boolean** | Whether to include the original data Merge fetched from the third-party to produce these models. | [optional] |
|
87
89
|
| **modified_after** | **Time** | If provided, will only return objects modified after this datetime. | [optional] |
|
@@ -130,6 +132,7 @@ api_instance = MergeAccountingClient::TrackingCategoriesApi.new
|
|
130
132
|
x_account_token = 'x_account_token_example' # String | Token identifying the end user.
|
131
133
|
id = TODO # String |
|
132
134
|
opts = {
|
135
|
+
expand: 'company', # String | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
133
136
|
include_remote_data: true, # Boolean | Whether to include the original data Merge fetched from the third-party to produce these models.
|
134
137
|
remote_fields: 'status', # String | Deprecated. Use show_enum_origins.
|
135
138
|
show_enum_origins: 'status' # String | Which fields should be returned in non-normalized form.
|
@@ -168,6 +171,7 @@ end
|
|
168
171
|
| ---- | ---- | ----------- | ----- |
|
169
172
|
| **x_account_token** | **String** | Token identifying the end user. | |
|
170
173
|
| **id** | [**String**](.md) | | |
|
174
|
+
| **expand** | **String** | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. | [optional] |
|
171
175
|
| **include_remote_data** | **Boolean** | Whether to include the original data Merge fetched from the third-party to produce these models. | [optional] |
|
172
176
|
| **remote_fields** | **String** | Deprecated. Use show_enum_origins. | [optional] |
|
173
177
|
| **show_enum_origins** | **String** | Which fields should be returned in non-normalized form. | [optional] |
|
data/docs/TransactionsApi.md
CHANGED
@@ -36,6 +36,7 @@ opts = {
|
|
36
36
|
created_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created after this datetime.
|
37
37
|
created_before: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created before this datetime.
|
38
38
|
cursor: 'cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw', # String | The pagination cursor value.
|
39
|
+
expand: 'account', # String | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
39
40
|
include_deleted_data: true, # Boolean | Whether to include data that was marked as deleted by third party webhooks.
|
40
41
|
include_remote_data: true, # Boolean | Whether to include the original data Merge fetched from the third-party to produce these models.
|
41
42
|
modified_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects modified after this datetime.
|
@@ -82,6 +83,7 @@ end
|
|
82
83
|
| **created_after** | **Time** | If provided, will only return objects created after this datetime. | [optional] |
|
83
84
|
| **created_before** | **Time** | If provided, will only return objects created before this datetime. | [optional] |
|
84
85
|
| **cursor** | **String** | The pagination cursor value. | [optional] |
|
86
|
+
| **expand** | **String** | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. | [optional] |
|
85
87
|
| **include_deleted_data** | **Boolean** | Whether to include data that was marked as deleted by third party webhooks. | [optional] |
|
86
88
|
| **include_remote_data** | **Boolean** | Whether to include the original data Merge fetched from the third-party to produce these models. | [optional] |
|
87
89
|
| **modified_after** | **Time** | If provided, will only return objects modified after this datetime. | [optional] |
|
@@ -130,6 +132,7 @@ api_instance = MergeAccountingClient::TransactionsApi.new
|
|
130
132
|
x_account_token = 'x_account_token_example' # String | Token identifying the end user.
|
131
133
|
id = TODO # String |
|
132
134
|
opts = {
|
135
|
+
expand: 'account', # String | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
133
136
|
include_remote_data: true # Boolean | Whether to include the original data Merge fetched from the third-party to produce these models.
|
134
137
|
}
|
135
138
|
|
@@ -166,6 +169,7 @@ end
|
|
166
169
|
| ---- | ---- | ----------- | ----- |
|
167
170
|
| **x_account_token** | **String** | Token identifying the end user. | |
|
168
171
|
| **id** | [**String**](.md) | | |
|
172
|
+
| **expand** | **String** | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. | [optional] |
|
169
173
|
| **include_remote_data** | **Boolean** | Whether to include the original data Merge fetched from the third-party to produce these models. | [optional] |
|
170
174
|
|
171
175
|
### Return type
|
data/docs/VendorCreditsApi.md
CHANGED
@@ -36,6 +36,7 @@ opts = {
|
|
36
36
|
created_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created after this datetime.
|
37
37
|
created_before: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects created before this datetime.
|
38
38
|
cursor: 'cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw', # String | The pagination cursor value.
|
39
|
+
expand: 'company', # String | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
39
40
|
include_deleted_data: true, # Boolean | Whether to include data that was marked as deleted by third party webhooks.
|
40
41
|
include_remote_data: true, # Boolean | Whether to include the original data Merge fetched from the third-party to produce these models.
|
41
42
|
modified_after: Time.parse('2013-10-20T19:20:30+01:00'), # Time | If provided, will only return objects modified after this datetime.
|
@@ -82,6 +83,7 @@ end
|
|
82
83
|
| **created_after** | **Time** | If provided, will only return objects created after this datetime. | [optional] |
|
83
84
|
| **created_before** | **Time** | If provided, will only return objects created before this datetime. | [optional] |
|
84
85
|
| **cursor** | **String** | The pagination cursor value. | [optional] |
|
86
|
+
| **expand** | **String** | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. | [optional] |
|
85
87
|
| **include_deleted_data** | **Boolean** | Whether to include data that was marked as deleted by third party webhooks. | [optional] |
|
86
88
|
| **include_remote_data** | **Boolean** | Whether to include the original data Merge fetched from the third-party to produce these models. | [optional] |
|
87
89
|
| **modified_after** | **Time** | If provided, will only return objects modified after this datetime. | [optional] |
|
@@ -130,6 +132,7 @@ api_instance = MergeAccountingClient::VendorCreditsApi.new
|
|
130
132
|
x_account_token = 'x_account_token_example' # String | Token identifying the end user.
|
131
133
|
id = TODO # String |
|
132
134
|
opts = {
|
135
|
+
expand: 'company', # String | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces.
|
133
136
|
include_remote_data: true # Boolean | Whether to include the original data Merge fetched from the third-party to produce these models.
|
134
137
|
}
|
135
138
|
|
@@ -166,6 +169,7 @@ end
|
|
166
169
|
| ---- | ---- | ----------- | ----- |
|
167
170
|
| **x_account_token** | **String** | Token identifying the end user. | |
|
168
171
|
| **id** | [**String**](.md) | | |
|
172
|
+
| **expand** | **String** | Which relations should be returned in expanded form. Multiple relation names should be comma separated without spaces. | [optional] |
|
169
173
|
| **include_remote_data** | **Boolean** | Whether to include the original data Merge fetched from the third-party to produce these models. | [optional] |
|
170
174
|
|
171
175
|
### Return type
|