mergepythonclient 2.1.0__py3-none-any.whl → 2.2.0__py3-none-any.whl

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 (175) hide show
  1. merge/core/client_wrapper.py +2 -2
  2. merge/core/force_multipart.py +4 -2
  3. merge/core/http_response.py +1 -1
  4. merge/core/unchecked_base_model.py +41 -3
  5. merge/resources/accounting/__init__.py +64 -0
  6. merge/resources/accounting/client.py +5 -0
  7. merge/resources/accounting/resources/__init__.py +10 -0
  8. merge/resources/accounting/resources/accounting_periods/client.py +6 -2
  9. merge/resources/accounting/resources/accounts/client.py +6 -2
  10. merge/resources/accounting/resources/attachments/client.py +6 -2
  11. merge/resources/accounting/resources/audit_trail/client.py +6 -2
  12. merge/resources/accounting/resources/balance_sheets/client.py +6 -2
  13. merge/resources/accounting/resources/bank_feed_accounts/client.py +6 -2
  14. merge/resources/accounting/resources/bank_feed_transactions/client.py +6 -2
  15. merge/resources/accounting/resources/cash_flow_statements/client.py +6 -2
  16. merge/resources/accounting/resources/company_info/client.py +6 -2
  17. merge/resources/accounting/resources/contacts/client.py +195 -4
  18. merge/resources/accounting/resources/contacts/raw_client.py +203 -0
  19. merge/resources/accounting/resources/credit_notes/client.py +6 -2
  20. merge/resources/accounting/resources/employees/client.py +67 -2
  21. merge/resources/accounting/resources/employees/raw_client.py +62 -0
  22. merge/resources/accounting/resources/expense_reports/__init__.py +15 -0
  23. merge/resources/accounting/resources/expense_reports/client.py +1015 -0
  24. merge/resources/accounting/resources/expense_reports/raw_client.py +1020 -0
  25. merge/resources/accounting/resources/expense_reports/types/__init__.py +13 -0
  26. merge/resources/accounting/resources/expense_reports/types/expense_reports_lines_list_request_expand.py +265 -0
  27. merge/resources/accounting/resources/expense_reports/types/expense_reports_list_request_expand.py +73 -0
  28. merge/resources/accounting/resources/expense_reports/types/expense_reports_retrieve_request_expand.py +73 -0
  29. merge/resources/accounting/resources/expenses/client.py +18 -6
  30. merge/resources/accounting/resources/general_ledger_transactions/client.py +6 -2
  31. merge/resources/accounting/resources/income_statements/client.py +6 -2
  32. merge/resources/accounting/resources/invoices/client.py +18 -6
  33. merge/resources/accounting/resources/issues/client.py +6 -2
  34. merge/resources/accounting/resources/items/client.py +6 -2
  35. merge/resources/accounting/resources/journal_entries/client.py +18 -6
  36. merge/resources/accounting/resources/linked_accounts/client.py +6 -2
  37. merge/resources/accounting/resources/payment_methods/client.py +6 -2
  38. merge/resources/accounting/resources/payment_terms/client.py +6 -2
  39. merge/resources/accounting/resources/payments/client.py +18 -6
  40. merge/resources/accounting/resources/projects/client.py +67 -2
  41. merge/resources/accounting/resources/projects/raw_client.py +62 -0
  42. merge/resources/accounting/resources/purchase_orders/client.py +18 -6
  43. merge/resources/accounting/resources/sync_status/client.py +6 -2
  44. merge/resources/accounting/resources/tax_rates/client.py +6 -2
  45. merge/resources/accounting/resources/tracking_categories/client.py +6 -2
  46. merge/resources/accounting/resources/transactions/client.py +6 -2
  47. merge/resources/accounting/resources/transactions/types/transactions_list_request_expand.py +141 -0
  48. merge/resources/accounting/resources/transactions/types/transactions_retrieve_request_expand.py +141 -0
  49. merge/resources/accounting/resources/vendor_credits/client.py +6 -2
  50. merge/resources/accounting/types/__init__.py +56 -0
  51. merge/resources/accounting/types/expense_report.py +423 -0
  52. merge/resources/accounting/types/expense_report_company.py +7 -0
  53. merge/resources/accounting/types/expense_report_line.py +441 -0
  54. merge/resources/accounting/types/expense_report_line_account.py +7 -0
  55. merge/resources/accounting/types/expense_report_line_company.py +7 -0
  56. merge/resources/accounting/types/expense_report_line_contact.py +7 -0
  57. merge/resources/accounting/types/expense_report_line_employee.py +7 -0
  58. merge/resources/accounting/types/expense_report_line_project.py +7 -0
  59. merge/resources/accounting/types/expense_report_line_request.py +427 -0
  60. merge/resources/accounting/types/expense_report_line_request_account.py +7 -0
  61. merge/resources/accounting/types/expense_report_line_request_company.py +7 -0
  62. merge/resources/accounting/types/expense_report_line_request_contact.py +7 -0
  63. merge/resources/accounting/types/expense_report_line_request_employee.py +7 -0
  64. merge/resources/accounting/types/expense_report_line_request_project.py +7 -0
  65. merge/resources/accounting/types/expense_report_line_request_tax_rate.py +7 -0
  66. merge/resources/accounting/types/expense_report_line_tax_rate.py +7 -0
  67. merge/resources/accounting/types/expense_report_request.py +401 -0
  68. merge/resources/accounting/types/expense_report_request_accounting_period.py +7 -0
  69. merge/resources/accounting/types/expense_report_request_company.py +7 -0
  70. merge/resources/accounting/types/expense_report_request_employee.py +7 -0
  71. merge/resources/accounting/types/expense_report_response.py +27 -0
  72. merge/resources/accounting/types/expense_report_status.py +7 -0
  73. merge/resources/accounting/types/expense_report_status_enum.py +36 -0
  74. merge/resources/accounting/types/external_target_field_api_response.py +3 -0
  75. merge/resources/accounting/types/field_mapping_api_instance_response.py +3 -0
  76. merge/resources/accounting/types/item.py +11 -0
  77. merge/resources/accounting/types/item_type.py +7 -0
  78. merge/resources/accounting/types/paginated_expense_report_line_list.py +23 -0
  79. merge/resources/accounting/types/paginated_expense_report_list.py +23 -0
  80. merge/resources/accounting/types/patched_contact_request.py +91 -0
  81. merge/resources/accounting/types/patched_contact_request_addresses_item.py +7 -0
  82. merge/resources/accounting/types/remote_field_class.py +1 -0
  83. merge/resources/ats/resources/activities/client.py +6 -2
  84. merge/resources/ats/resources/applications/client.py +6 -2
  85. merge/resources/ats/resources/attachments/client.py +6 -2
  86. merge/resources/ats/resources/audit_trail/client.py +6 -2
  87. merge/resources/ats/resources/candidates/client.py +6 -2
  88. merge/resources/ats/resources/departments/client.py +6 -2
  89. merge/resources/ats/resources/eeocs/client.py +6 -2
  90. merge/resources/ats/resources/interviews/client.py +6 -2
  91. merge/resources/ats/resources/issues/client.py +6 -2
  92. merge/resources/ats/resources/job_interview_stages/client.py +6 -2
  93. merge/resources/ats/resources/job_postings/client.py +6 -2
  94. merge/resources/ats/resources/jobs/client.py +8 -2
  95. merge/resources/ats/resources/linked_accounts/client.py +6 -2
  96. merge/resources/ats/resources/offers/client.py +6 -2
  97. merge/resources/ats/resources/offices/client.py +6 -2
  98. merge/resources/ats/resources/reject_reasons/client.py +6 -2
  99. merge/resources/ats/resources/scorecards/client.py +6 -2
  100. merge/resources/ats/resources/sync_status/client.py +6 -2
  101. merge/resources/ats/resources/tags/client.py +6 -2
  102. merge/resources/ats/resources/users/client.py +6 -2
  103. merge/resources/ats/types/event_type_enum.py +4 -0
  104. merge/resources/crm/resources/accounts/client.py +12 -4
  105. merge/resources/crm/resources/association_types/client.py +2 -0
  106. merge/resources/crm/resources/associations/client.py +2 -0
  107. merge/resources/crm/resources/audit_trail/client.py +6 -2
  108. merge/resources/crm/resources/contacts/client.py +12 -4
  109. merge/resources/crm/resources/custom_object_classes/client.py +6 -2
  110. merge/resources/crm/resources/custom_objects/client.py +8 -2
  111. merge/resources/crm/resources/engagement_types/client.py +12 -4
  112. merge/resources/crm/resources/engagements/client.py +12 -4
  113. merge/resources/crm/resources/issues/client.py +6 -2
  114. merge/resources/crm/resources/leads/client.py +12 -4
  115. merge/resources/crm/resources/linked_accounts/client.py +6 -2
  116. merge/resources/crm/resources/notes/client.py +12 -4
  117. merge/resources/crm/resources/opportunities/client.py +12 -4
  118. merge/resources/crm/resources/stages/client.py +12 -4
  119. merge/resources/crm/resources/sync_status/client.py +6 -2
  120. merge/resources/crm/resources/tasks/client.py +12 -4
  121. merge/resources/crm/resources/users/client.py +12 -4
  122. merge/resources/crm/types/remote_field_class.py +1 -0
  123. merge/resources/filestorage/resources/audit_trail/client.py +6 -2
  124. merge/resources/filestorage/resources/drives/client.py +6 -2
  125. merge/resources/filestorage/resources/files/client.py +42 -4
  126. merge/resources/filestorage/resources/files/raw_client.py +38 -0
  127. merge/resources/filestorage/resources/folders/client.py +6 -2
  128. merge/resources/filestorage/resources/groups/client.py +6 -2
  129. merge/resources/filestorage/resources/issues/client.py +6 -2
  130. merge/resources/filestorage/resources/linked_accounts/client.py +6 -2
  131. merge/resources/filestorage/resources/sync_status/client.py +6 -2
  132. merge/resources/filestorage/resources/users/client.py +6 -2
  133. merge/resources/hris/resources/audit_trail/client.py +6 -2
  134. merge/resources/hris/resources/bank_info/client.py +6 -2
  135. merge/resources/hris/resources/benefits/client.py +6 -2
  136. merge/resources/hris/resources/companies/client.py +6 -2
  137. merge/resources/hris/resources/dependents/client.py +6 -2
  138. merge/resources/hris/resources/employee_payroll_runs/client.py +6 -2
  139. merge/resources/hris/resources/employees/client.py +6 -2
  140. merge/resources/hris/resources/employer_benefits/client.py +6 -2
  141. merge/resources/hris/resources/employments/client.py +6 -2
  142. merge/resources/hris/resources/groups/client.py +6 -2
  143. merge/resources/hris/resources/issues/client.py +6 -2
  144. merge/resources/hris/resources/linked_accounts/client.py +6 -2
  145. merge/resources/hris/resources/locations/client.py +6 -2
  146. merge/resources/hris/resources/pay_groups/client.py +6 -2
  147. merge/resources/hris/resources/payroll_runs/client.py +6 -2
  148. merge/resources/hris/resources/sync_status/client.py +6 -2
  149. merge/resources/hris/resources/teams/client.py +6 -2
  150. merge/resources/hris/resources/time_off/client.py +6 -2
  151. merge/resources/hris/resources/time_off_balances/client.py +6 -2
  152. merge/resources/hris/resources/timesheet_entries/client.py +6 -2
  153. merge/resources/hris/types/benefit.py +4 -4
  154. merge/resources/ticketing/resources/accounts/client.py +6 -2
  155. merge/resources/ticketing/resources/attachments/client.py +6 -2
  156. merge/resources/ticketing/resources/audit_trail/client.py +6 -2
  157. merge/resources/ticketing/resources/collections/client.py +8 -2
  158. merge/resources/ticketing/resources/comments/client.py +6 -2
  159. merge/resources/ticketing/resources/contacts/client.py +6 -2
  160. merge/resources/ticketing/resources/issues/client.py +6 -2
  161. merge/resources/ticketing/resources/linked_accounts/client.py +6 -2
  162. merge/resources/ticketing/resources/projects/client.py +8 -2
  163. merge/resources/ticketing/resources/roles/client.py +6 -2
  164. merge/resources/ticketing/resources/sync_status/client.py +6 -2
  165. merge/resources/ticketing/resources/tags/client.py +6 -2
  166. merge/resources/ticketing/resources/teams/client.py +6 -2
  167. merge/resources/ticketing/resources/tickets/client.py +24 -4
  168. merge/resources/ticketing/resources/tickets/raw_client.py +10 -0
  169. merge/resources/ticketing/resources/users/client.py +6 -2
  170. merge/resources/ticketing/types/patched_ticket_request.py +5 -5
  171. merge/resources/ticketing/types/remote_field_class.py +1 -0
  172. {mergepythonclient-2.1.0.dist-info → mergepythonclient-2.2.0.dist-info}/METADATA +5 -2
  173. {mergepythonclient-2.1.0.dist-info → mergepythonclient-2.2.0.dist-info}/RECORD +175 -140
  174. {mergepythonclient-2.1.0.dist-info → mergepythonclient-2.2.0.dist-info}/LICENSE.md +0 -0
  175. {mergepythonclient-2.1.0.dist-info → mergepythonclient-2.2.0.dist-info}/WHEEL +0 -0
@@ -0,0 +1,13 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ # isort: skip_file
4
+
5
+ from .expense_reports_lines_list_request_expand import ExpenseReportsLinesListRequestExpand
6
+ from .expense_reports_list_request_expand import ExpenseReportsListRequestExpand
7
+ from .expense_reports_retrieve_request_expand import ExpenseReportsRetrieveRequestExpand
8
+
9
+ __all__ = [
10
+ "ExpenseReportsLinesListRequestExpand",
11
+ "ExpenseReportsListRequestExpand",
12
+ "ExpenseReportsRetrieveRequestExpand",
13
+ ]
@@ -0,0 +1,265 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import enum
4
+ import typing
5
+
6
+ T_Result = typing.TypeVar("T_Result")
7
+
8
+
9
+ class ExpenseReportsLinesListRequestExpand(str, enum.Enum):
10
+ ACCOUNT = "account"
11
+ ACCOUNT_COMPANY = "account,company"
12
+ ACCOUNT_COMPANY_CONTACT = "account,company,contact"
13
+ ACCOUNT_COMPANY_CONTACT_TAX_RATE = "account,company,contact,tax_rate"
14
+ ACCOUNT_COMPANY_TAX_RATE = "account,company,tax_rate"
15
+ ACCOUNT_CONTACT = "account,contact"
16
+ ACCOUNT_CONTACT_TAX_RATE = "account,contact,tax_rate"
17
+ ACCOUNT_EMPLOYEE = "account,employee"
18
+ ACCOUNT_EMPLOYEE_COMPANY = "account,employee,company"
19
+ ACCOUNT_EMPLOYEE_COMPANY_CONTACT = "account,employee,company,contact"
20
+ ACCOUNT_EMPLOYEE_COMPANY_CONTACT_TAX_RATE = "account,employee,company,contact,tax_rate"
21
+ ACCOUNT_EMPLOYEE_COMPANY_TAX_RATE = "account,employee,company,tax_rate"
22
+ ACCOUNT_EMPLOYEE_CONTACT = "account,employee,contact"
23
+ ACCOUNT_EMPLOYEE_CONTACT_TAX_RATE = "account,employee,contact,tax_rate"
24
+ ACCOUNT_EMPLOYEE_PROJECT = "account,employee,project"
25
+ ACCOUNT_EMPLOYEE_PROJECT_COMPANY = "account,employee,project,company"
26
+ ACCOUNT_EMPLOYEE_PROJECT_COMPANY_CONTACT = "account,employee,project,company,contact"
27
+ ACCOUNT_EMPLOYEE_PROJECT_COMPANY_CONTACT_TAX_RATE = "account,employee,project,company,contact,tax_rate"
28
+ ACCOUNT_EMPLOYEE_PROJECT_COMPANY_TAX_RATE = "account,employee,project,company,tax_rate"
29
+ ACCOUNT_EMPLOYEE_PROJECT_CONTACT = "account,employee,project,contact"
30
+ ACCOUNT_EMPLOYEE_PROJECT_CONTACT_TAX_RATE = "account,employee,project,contact,tax_rate"
31
+ ACCOUNT_EMPLOYEE_PROJECT_TAX_RATE = "account,employee,project,tax_rate"
32
+ ACCOUNT_EMPLOYEE_TAX_RATE = "account,employee,tax_rate"
33
+ ACCOUNT_PROJECT = "account,project"
34
+ ACCOUNT_PROJECT_COMPANY = "account,project,company"
35
+ ACCOUNT_PROJECT_COMPANY_CONTACT = "account,project,company,contact"
36
+ ACCOUNT_PROJECT_COMPANY_CONTACT_TAX_RATE = "account,project,company,contact,tax_rate"
37
+ ACCOUNT_PROJECT_COMPANY_TAX_RATE = "account,project,company,tax_rate"
38
+ ACCOUNT_PROJECT_CONTACT = "account,project,contact"
39
+ ACCOUNT_PROJECT_CONTACT_TAX_RATE = "account,project,contact,tax_rate"
40
+ ACCOUNT_PROJECT_TAX_RATE = "account,project,tax_rate"
41
+ ACCOUNT_TAX_RATE = "account,tax_rate"
42
+ COMPANY = "company"
43
+ COMPANY_CONTACT = "company,contact"
44
+ COMPANY_CONTACT_TAX_RATE = "company,contact,tax_rate"
45
+ COMPANY_TAX_RATE = "company,tax_rate"
46
+ CONTACT = "contact"
47
+ CONTACT_TAX_RATE = "contact,tax_rate"
48
+ EMPLOYEE = "employee"
49
+ EMPLOYEE_COMPANY = "employee,company"
50
+ EMPLOYEE_COMPANY_CONTACT = "employee,company,contact"
51
+ EMPLOYEE_COMPANY_CONTACT_TAX_RATE = "employee,company,contact,tax_rate"
52
+ EMPLOYEE_COMPANY_TAX_RATE = "employee,company,tax_rate"
53
+ EMPLOYEE_CONTACT = "employee,contact"
54
+ EMPLOYEE_CONTACT_TAX_RATE = "employee,contact,tax_rate"
55
+ EMPLOYEE_PROJECT = "employee,project"
56
+ EMPLOYEE_PROJECT_COMPANY = "employee,project,company"
57
+ EMPLOYEE_PROJECT_COMPANY_CONTACT = "employee,project,company,contact"
58
+ EMPLOYEE_PROJECT_COMPANY_CONTACT_TAX_RATE = "employee,project,company,contact,tax_rate"
59
+ EMPLOYEE_PROJECT_COMPANY_TAX_RATE = "employee,project,company,tax_rate"
60
+ EMPLOYEE_PROJECT_CONTACT = "employee,project,contact"
61
+ EMPLOYEE_PROJECT_CONTACT_TAX_RATE = "employee,project,contact,tax_rate"
62
+ EMPLOYEE_PROJECT_TAX_RATE = "employee,project,tax_rate"
63
+ EMPLOYEE_TAX_RATE = "employee,tax_rate"
64
+ PROJECT = "project"
65
+ PROJECT_COMPANY = "project,company"
66
+ PROJECT_COMPANY_CONTACT = "project,company,contact"
67
+ PROJECT_COMPANY_CONTACT_TAX_RATE = "project,company,contact,tax_rate"
68
+ PROJECT_COMPANY_TAX_RATE = "project,company,tax_rate"
69
+ PROJECT_CONTACT = "project,contact"
70
+ PROJECT_CONTACT_TAX_RATE = "project,contact,tax_rate"
71
+ PROJECT_TAX_RATE = "project,tax_rate"
72
+ TAX_RATE = "tax_rate"
73
+
74
+ def visit(
75
+ self,
76
+ account: typing.Callable[[], T_Result],
77
+ account_company: typing.Callable[[], T_Result],
78
+ account_company_contact: typing.Callable[[], T_Result],
79
+ account_company_contact_tax_rate: typing.Callable[[], T_Result],
80
+ account_company_tax_rate: typing.Callable[[], T_Result],
81
+ account_contact: typing.Callable[[], T_Result],
82
+ account_contact_tax_rate: typing.Callable[[], T_Result],
83
+ account_employee: typing.Callable[[], T_Result],
84
+ account_employee_company: typing.Callable[[], T_Result],
85
+ account_employee_company_contact: typing.Callable[[], T_Result],
86
+ account_employee_company_contact_tax_rate: typing.Callable[[], T_Result],
87
+ account_employee_company_tax_rate: typing.Callable[[], T_Result],
88
+ account_employee_contact: typing.Callable[[], T_Result],
89
+ account_employee_contact_tax_rate: typing.Callable[[], T_Result],
90
+ account_employee_project: typing.Callable[[], T_Result],
91
+ account_employee_project_company: typing.Callable[[], T_Result],
92
+ account_employee_project_company_contact: typing.Callable[[], T_Result],
93
+ account_employee_project_company_contact_tax_rate: typing.Callable[[], T_Result],
94
+ account_employee_project_company_tax_rate: typing.Callable[[], T_Result],
95
+ account_employee_project_contact: typing.Callable[[], T_Result],
96
+ account_employee_project_contact_tax_rate: typing.Callable[[], T_Result],
97
+ account_employee_project_tax_rate: typing.Callable[[], T_Result],
98
+ account_employee_tax_rate: typing.Callable[[], T_Result],
99
+ account_project: typing.Callable[[], T_Result],
100
+ account_project_company: typing.Callable[[], T_Result],
101
+ account_project_company_contact: typing.Callable[[], T_Result],
102
+ account_project_company_contact_tax_rate: typing.Callable[[], T_Result],
103
+ account_project_company_tax_rate: typing.Callable[[], T_Result],
104
+ account_project_contact: typing.Callable[[], T_Result],
105
+ account_project_contact_tax_rate: typing.Callable[[], T_Result],
106
+ account_project_tax_rate: typing.Callable[[], T_Result],
107
+ account_tax_rate: typing.Callable[[], T_Result],
108
+ company: typing.Callable[[], T_Result],
109
+ company_contact: typing.Callable[[], T_Result],
110
+ company_contact_tax_rate: typing.Callable[[], T_Result],
111
+ company_tax_rate: typing.Callable[[], T_Result],
112
+ contact: typing.Callable[[], T_Result],
113
+ contact_tax_rate: typing.Callable[[], T_Result],
114
+ employee: typing.Callable[[], T_Result],
115
+ employee_company: typing.Callable[[], T_Result],
116
+ employee_company_contact: typing.Callable[[], T_Result],
117
+ employee_company_contact_tax_rate: typing.Callable[[], T_Result],
118
+ employee_company_tax_rate: typing.Callable[[], T_Result],
119
+ employee_contact: typing.Callable[[], T_Result],
120
+ employee_contact_tax_rate: typing.Callable[[], T_Result],
121
+ employee_project: typing.Callable[[], T_Result],
122
+ employee_project_company: typing.Callable[[], T_Result],
123
+ employee_project_company_contact: typing.Callable[[], T_Result],
124
+ employee_project_company_contact_tax_rate: typing.Callable[[], T_Result],
125
+ employee_project_company_tax_rate: typing.Callable[[], T_Result],
126
+ employee_project_contact: typing.Callable[[], T_Result],
127
+ employee_project_contact_tax_rate: typing.Callable[[], T_Result],
128
+ employee_project_tax_rate: typing.Callable[[], T_Result],
129
+ employee_tax_rate: typing.Callable[[], T_Result],
130
+ project: typing.Callable[[], T_Result],
131
+ project_company: typing.Callable[[], T_Result],
132
+ project_company_contact: typing.Callable[[], T_Result],
133
+ project_company_contact_tax_rate: typing.Callable[[], T_Result],
134
+ project_company_tax_rate: typing.Callable[[], T_Result],
135
+ project_contact: typing.Callable[[], T_Result],
136
+ project_contact_tax_rate: typing.Callable[[], T_Result],
137
+ project_tax_rate: typing.Callable[[], T_Result],
138
+ tax_rate: typing.Callable[[], T_Result],
139
+ ) -> T_Result:
140
+ if self is ExpenseReportsLinesListRequestExpand.ACCOUNT:
141
+ return account()
142
+ if self is ExpenseReportsLinesListRequestExpand.ACCOUNT_COMPANY:
143
+ return account_company()
144
+ if self is ExpenseReportsLinesListRequestExpand.ACCOUNT_COMPANY_CONTACT:
145
+ return account_company_contact()
146
+ if self is ExpenseReportsLinesListRequestExpand.ACCOUNT_COMPANY_CONTACT_TAX_RATE:
147
+ return account_company_contact_tax_rate()
148
+ if self is ExpenseReportsLinesListRequestExpand.ACCOUNT_COMPANY_TAX_RATE:
149
+ return account_company_tax_rate()
150
+ if self is ExpenseReportsLinesListRequestExpand.ACCOUNT_CONTACT:
151
+ return account_contact()
152
+ if self is ExpenseReportsLinesListRequestExpand.ACCOUNT_CONTACT_TAX_RATE:
153
+ return account_contact_tax_rate()
154
+ if self is ExpenseReportsLinesListRequestExpand.ACCOUNT_EMPLOYEE:
155
+ return account_employee()
156
+ if self is ExpenseReportsLinesListRequestExpand.ACCOUNT_EMPLOYEE_COMPANY:
157
+ return account_employee_company()
158
+ if self is ExpenseReportsLinesListRequestExpand.ACCOUNT_EMPLOYEE_COMPANY_CONTACT:
159
+ return account_employee_company_contact()
160
+ if self is ExpenseReportsLinesListRequestExpand.ACCOUNT_EMPLOYEE_COMPANY_CONTACT_TAX_RATE:
161
+ return account_employee_company_contact_tax_rate()
162
+ if self is ExpenseReportsLinesListRequestExpand.ACCOUNT_EMPLOYEE_COMPANY_TAX_RATE:
163
+ return account_employee_company_tax_rate()
164
+ if self is ExpenseReportsLinesListRequestExpand.ACCOUNT_EMPLOYEE_CONTACT:
165
+ return account_employee_contact()
166
+ if self is ExpenseReportsLinesListRequestExpand.ACCOUNT_EMPLOYEE_CONTACT_TAX_RATE:
167
+ return account_employee_contact_tax_rate()
168
+ if self is ExpenseReportsLinesListRequestExpand.ACCOUNT_EMPLOYEE_PROJECT:
169
+ return account_employee_project()
170
+ if self is ExpenseReportsLinesListRequestExpand.ACCOUNT_EMPLOYEE_PROJECT_COMPANY:
171
+ return account_employee_project_company()
172
+ if self is ExpenseReportsLinesListRequestExpand.ACCOUNT_EMPLOYEE_PROJECT_COMPANY_CONTACT:
173
+ return account_employee_project_company_contact()
174
+ if self is ExpenseReportsLinesListRequestExpand.ACCOUNT_EMPLOYEE_PROJECT_COMPANY_CONTACT_TAX_RATE:
175
+ return account_employee_project_company_contact_tax_rate()
176
+ if self is ExpenseReportsLinesListRequestExpand.ACCOUNT_EMPLOYEE_PROJECT_COMPANY_TAX_RATE:
177
+ return account_employee_project_company_tax_rate()
178
+ if self is ExpenseReportsLinesListRequestExpand.ACCOUNT_EMPLOYEE_PROJECT_CONTACT:
179
+ return account_employee_project_contact()
180
+ if self is ExpenseReportsLinesListRequestExpand.ACCOUNT_EMPLOYEE_PROJECT_CONTACT_TAX_RATE:
181
+ return account_employee_project_contact_tax_rate()
182
+ if self is ExpenseReportsLinesListRequestExpand.ACCOUNT_EMPLOYEE_PROJECT_TAX_RATE:
183
+ return account_employee_project_tax_rate()
184
+ if self is ExpenseReportsLinesListRequestExpand.ACCOUNT_EMPLOYEE_TAX_RATE:
185
+ return account_employee_tax_rate()
186
+ if self is ExpenseReportsLinesListRequestExpand.ACCOUNT_PROJECT:
187
+ return account_project()
188
+ if self is ExpenseReportsLinesListRequestExpand.ACCOUNT_PROJECT_COMPANY:
189
+ return account_project_company()
190
+ if self is ExpenseReportsLinesListRequestExpand.ACCOUNT_PROJECT_COMPANY_CONTACT:
191
+ return account_project_company_contact()
192
+ if self is ExpenseReportsLinesListRequestExpand.ACCOUNT_PROJECT_COMPANY_CONTACT_TAX_RATE:
193
+ return account_project_company_contact_tax_rate()
194
+ if self is ExpenseReportsLinesListRequestExpand.ACCOUNT_PROJECT_COMPANY_TAX_RATE:
195
+ return account_project_company_tax_rate()
196
+ if self is ExpenseReportsLinesListRequestExpand.ACCOUNT_PROJECT_CONTACT:
197
+ return account_project_contact()
198
+ if self is ExpenseReportsLinesListRequestExpand.ACCOUNT_PROJECT_CONTACT_TAX_RATE:
199
+ return account_project_contact_tax_rate()
200
+ if self is ExpenseReportsLinesListRequestExpand.ACCOUNT_PROJECT_TAX_RATE:
201
+ return account_project_tax_rate()
202
+ if self is ExpenseReportsLinesListRequestExpand.ACCOUNT_TAX_RATE:
203
+ return account_tax_rate()
204
+ if self is ExpenseReportsLinesListRequestExpand.COMPANY:
205
+ return company()
206
+ if self is ExpenseReportsLinesListRequestExpand.COMPANY_CONTACT:
207
+ return company_contact()
208
+ if self is ExpenseReportsLinesListRequestExpand.COMPANY_CONTACT_TAX_RATE:
209
+ return company_contact_tax_rate()
210
+ if self is ExpenseReportsLinesListRequestExpand.COMPANY_TAX_RATE:
211
+ return company_tax_rate()
212
+ if self is ExpenseReportsLinesListRequestExpand.CONTACT:
213
+ return contact()
214
+ if self is ExpenseReportsLinesListRequestExpand.CONTACT_TAX_RATE:
215
+ return contact_tax_rate()
216
+ if self is ExpenseReportsLinesListRequestExpand.EMPLOYEE:
217
+ return employee()
218
+ if self is ExpenseReportsLinesListRequestExpand.EMPLOYEE_COMPANY:
219
+ return employee_company()
220
+ if self is ExpenseReportsLinesListRequestExpand.EMPLOYEE_COMPANY_CONTACT:
221
+ return employee_company_contact()
222
+ if self is ExpenseReportsLinesListRequestExpand.EMPLOYEE_COMPANY_CONTACT_TAX_RATE:
223
+ return employee_company_contact_tax_rate()
224
+ if self is ExpenseReportsLinesListRequestExpand.EMPLOYEE_COMPANY_TAX_RATE:
225
+ return employee_company_tax_rate()
226
+ if self is ExpenseReportsLinesListRequestExpand.EMPLOYEE_CONTACT:
227
+ return employee_contact()
228
+ if self is ExpenseReportsLinesListRequestExpand.EMPLOYEE_CONTACT_TAX_RATE:
229
+ return employee_contact_tax_rate()
230
+ if self is ExpenseReportsLinesListRequestExpand.EMPLOYEE_PROJECT:
231
+ return employee_project()
232
+ if self is ExpenseReportsLinesListRequestExpand.EMPLOYEE_PROJECT_COMPANY:
233
+ return employee_project_company()
234
+ if self is ExpenseReportsLinesListRequestExpand.EMPLOYEE_PROJECT_COMPANY_CONTACT:
235
+ return employee_project_company_contact()
236
+ if self is ExpenseReportsLinesListRequestExpand.EMPLOYEE_PROJECT_COMPANY_CONTACT_TAX_RATE:
237
+ return employee_project_company_contact_tax_rate()
238
+ if self is ExpenseReportsLinesListRequestExpand.EMPLOYEE_PROJECT_COMPANY_TAX_RATE:
239
+ return employee_project_company_tax_rate()
240
+ if self is ExpenseReportsLinesListRequestExpand.EMPLOYEE_PROJECT_CONTACT:
241
+ return employee_project_contact()
242
+ if self is ExpenseReportsLinesListRequestExpand.EMPLOYEE_PROJECT_CONTACT_TAX_RATE:
243
+ return employee_project_contact_tax_rate()
244
+ if self is ExpenseReportsLinesListRequestExpand.EMPLOYEE_PROJECT_TAX_RATE:
245
+ return employee_project_tax_rate()
246
+ if self is ExpenseReportsLinesListRequestExpand.EMPLOYEE_TAX_RATE:
247
+ return employee_tax_rate()
248
+ if self is ExpenseReportsLinesListRequestExpand.PROJECT:
249
+ return project()
250
+ if self is ExpenseReportsLinesListRequestExpand.PROJECT_COMPANY:
251
+ return project_company()
252
+ if self is ExpenseReportsLinesListRequestExpand.PROJECT_COMPANY_CONTACT:
253
+ return project_company_contact()
254
+ if self is ExpenseReportsLinesListRequestExpand.PROJECT_COMPANY_CONTACT_TAX_RATE:
255
+ return project_company_contact_tax_rate()
256
+ if self is ExpenseReportsLinesListRequestExpand.PROJECT_COMPANY_TAX_RATE:
257
+ return project_company_tax_rate()
258
+ if self is ExpenseReportsLinesListRequestExpand.PROJECT_CONTACT:
259
+ return project_contact()
260
+ if self is ExpenseReportsLinesListRequestExpand.PROJECT_CONTACT_TAX_RATE:
261
+ return project_contact_tax_rate()
262
+ if self is ExpenseReportsLinesListRequestExpand.PROJECT_TAX_RATE:
263
+ return project_tax_rate()
264
+ if self is ExpenseReportsLinesListRequestExpand.TAX_RATE:
265
+ return tax_rate()
@@ -0,0 +1,73 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import enum
4
+ import typing
5
+
6
+ T_Result = typing.TypeVar("T_Result")
7
+
8
+
9
+ class ExpenseReportsListRequestExpand(str, enum.Enum):
10
+ ACCOUNTING_PERIOD = "accounting_period"
11
+ ACCOUNTING_PERIOD_COMPANY = "accounting_period,company"
12
+ COMPANY = "company"
13
+ EMPLOYEE = "employee"
14
+ EMPLOYEE_ACCOUNTING_PERIOD = "employee,accounting_period"
15
+ EMPLOYEE_ACCOUNTING_PERIOD_COMPANY = "employee,accounting_period,company"
16
+ EMPLOYEE_COMPANY = "employee,company"
17
+ LINES = "lines"
18
+ LINES_ACCOUNTING_PERIOD = "lines,accounting_period"
19
+ LINES_ACCOUNTING_PERIOD_COMPANY = "lines,accounting_period,company"
20
+ LINES_COMPANY = "lines,company"
21
+ LINES_EMPLOYEE = "lines,employee"
22
+ LINES_EMPLOYEE_ACCOUNTING_PERIOD = "lines,employee,accounting_period"
23
+ LINES_EMPLOYEE_ACCOUNTING_PERIOD_COMPANY = "lines,employee,accounting_period,company"
24
+ LINES_EMPLOYEE_COMPANY = "lines,employee,company"
25
+
26
+ def visit(
27
+ self,
28
+ accounting_period: typing.Callable[[], T_Result],
29
+ accounting_period_company: typing.Callable[[], T_Result],
30
+ company: typing.Callable[[], T_Result],
31
+ employee: typing.Callable[[], T_Result],
32
+ employee_accounting_period: typing.Callable[[], T_Result],
33
+ employee_accounting_period_company: typing.Callable[[], T_Result],
34
+ employee_company: typing.Callable[[], T_Result],
35
+ lines: typing.Callable[[], T_Result],
36
+ lines_accounting_period: typing.Callable[[], T_Result],
37
+ lines_accounting_period_company: typing.Callable[[], T_Result],
38
+ lines_company: typing.Callable[[], T_Result],
39
+ lines_employee: typing.Callable[[], T_Result],
40
+ lines_employee_accounting_period: typing.Callable[[], T_Result],
41
+ lines_employee_accounting_period_company: typing.Callable[[], T_Result],
42
+ lines_employee_company: typing.Callable[[], T_Result],
43
+ ) -> T_Result:
44
+ if self is ExpenseReportsListRequestExpand.ACCOUNTING_PERIOD:
45
+ return accounting_period()
46
+ if self is ExpenseReportsListRequestExpand.ACCOUNTING_PERIOD_COMPANY:
47
+ return accounting_period_company()
48
+ if self is ExpenseReportsListRequestExpand.COMPANY:
49
+ return company()
50
+ if self is ExpenseReportsListRequestExpand.EMPLOYEE:
51
+ return employee()
52
+ if self is ExpenseReportsListRequestExpand.EMPLOYEE_ACCOUNTING_PERIOD:
53
+ return employee_accounting_period()
54
+ if self is ExpenseReportsListRequestExpand.EMPLOYEE_ACCOUNTING_PERIOD_COMPANY:
55
+ return employee_accounting_period_company()
56
+ if self is ExpenseReportsListRequestExpand.EMPLOYEE_COMPANY:
57
+ return employee_company()
58
+ if self is ExpenseReportsListRequestExpand.LINES:
59
+ return lines()
60
+ if self is ExpenseReportsListRequestExpand.LINES_ACCOUNTING_PERIOD:
61
+ return lines_accounting_period()
62
+ if self is ExpenseReportsListRequestExpand.LINES_ACCOUNTING_PERIOD_COMPANY:
63
+ return lines_accounting_period_company()
64
+ if self is ExpenseReportsListRequestExpand.LINES_COMPANY:
65
+ return lines_company()
66
+ if self is ExpenseReportsListRequestExpand.LINES_EMPLOYEE:
67
+ return lines_employee()
68
+ if self is ExpenseReportsListRequestExpand.LINES_EMPLOYEE_ACCOUNTING_PERIOD:
69
+ return lines_employee_accounting_period()
70
+ if self is ExpenseReportsListRequestExpand.LINES_EMPLOYEE_ACCOUNTING_PERIOD_COMPANY:
71
+ return lines_employee_accounting_period_company()
72
+ if self is ExpenseReportsListRequestExpand.LINES_EMPLOYEE_COMPANY:
73
+ return lines_employee_company()
@@ -0,0 +1,73 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import enum
4
+ import typing
5
+
6
+ T_Result = typing.TypeVar("T_Result")
7
+
8
+
9
+ class ExpenseReportsRetrieveRequestExpand(str, enum.Enum):
10
+ ACCOUNTING_PERIOD = "accounting_period"
11
+ ACCOUNTING_PERIOD_COMPANY = "accounting_period,company"
12
+ COMPANY = "company"
13
+ EMPLOYEE = "employee"
14
+ EMPLOYEE_ACCOUNTING_PERIOD = "employee,accounting_period"
15
+ EMPLOYEE_ACCOUNTING_PERIOD_COMPANY = "employee,accounting_period,company"
16
+ EMPLOYEE_COMPANY = "employee,company"
17
+ LINES = "lines"
18
+ LINES_ACCOUNTING_PERIOD = "lines,accounting_period"
19
+ LINES_ACCOUNTING_PERIOD_COMPANY = "lines,accounting_period,company"
20
+ LINES_COMPANY = "lines,company"
21
+ LINES_EMPLOYEE = "lines,employee"
22
+ LINES_EMPLOYEE_ACCOUNTING_PERIOD = "lines,employee,accounting_period"
23
+ LINES_EMPLOYEE_ACCOUNTING_PERIOD_COMPANY = "lines,employee,accounting_period,company"
24
+ LINES_EMPLOYEE_COMPANY = "lines,employee,company"
25
+
26
+ def visit(
27
+ self,
28
+ accounting_period: typing.Callable[[], T_Result],
29
+ accounting_period_company: typing.Callable[[], T_Result],
30
+ company: typing.Callable[[], T_Result],
31
+ employee: typing.Callable[[], T_Result],
32
+ employee_accounting_period: typing.Callable[[], T_Result],
33
+ employee_accounting_period_company: typing.Callable[[], T_Result],
34
+ employee_company: typing.Callable[[], T_Result],
35
+ lines: typing.Callable[[], T_Result],
36
+ lines_accounting_period: typing.Callable[[], T_Result],
37
+ lines_accounting_period_company: typing.Callable[[], T_Result],
38
+ lines_company: typing.Callable[[], T_Result],
39
+ lines_employee: typing.Callable[[], T_Result],
40
+ lines_employee_accounting_period: typing.Callable[[], T_Result],
41
+ lines_employee_accounting_period_company: typing.Callable[[], T_Result],
42
+ lines_employee_company: typing.Callable[[], T_Result],
43
+ ) -> T_Result:
44
+ if self is ExpenseReportsRetrieveRequestExpand.ACCOUNTING_PERIOD:
45
+ return accounting_period()
46
+ if self is ExpenseReportsRetrieveRequestExpand.ACCOUNTING_PERIOD_COMPANY:
47
+ return accounting_period_company()
48
+ if self is ExpenseReportsRetrieveRequestExpand.COMPANY:
49
+ return company()
50
+ if self is ExpenseReportsRetrieveRequestExpand.EMPLOYEE:
51
+ return employee()
52
+ if self is ExpenseReportsRetrieveRequestExpand.EMPLOYEE_ACCOUNTING_PERIOD:
53
+ return employee_accounting_period()
54
+ if self is ExpenseReportsRetrieveRequestExpand.EMPLOYEE_ACCOUNTING_PERIOD_COMPANY:
55
+ return employee_accounting_period_company()
56
+ if self is ExpenseReportsRetrieveRequestExpand.EMPLOYEE_COMPANY:
57
+ return employee_company()
58
+ if self is ExpenseReportsRetrieveRequestExpand.LINES:
59
+ return lines()
60
+ if self is ExpenseReportsRetrieveRequestExpand.LINES_ACCOUNTING_PERIOD:
61
+ return lines_accounting_period()
62
+ if self is ExpenseReportsRetrieveRequestExpand.LINES_ACCOUNTING_PERIOD_COMPANY:
63
+ return lines_accounting_period_company()
64
+ if self is ExpenseReportsRetrieveRequestExpand.LINES_COMPANY:
65
+ return lines_company()
66
+ if self is ExpenseReportsRetrieveRequestExpand.LINES_EMPLOYEE:
67
+ return lines_employee()
68
+ if self is ExpenseReportsRetrieveRequestExpand.LINES_EMPLOYEE_ACCOUNTING_PERIOD:
69
+ return lines_employee_accounting_period()
70
+ if self is ExpenseReportsRetrieveRequestExpand.LINES_EMPLOYEE_ACCOUNTING_PERIOD_COMPANY:
71
+ return lines_employee_accounting_period_company()
72
+ if self is ExpenseReportsRetrieveRequestExpand.LINES_EMPLOYEE_COMPANY:
73
+ return lines_employee_company()
@@ -120,7 +120,9 @@ class ExpensesClient:
120
120
  account_token="YOUR_ACCOUNT_TOKEN",
121
121
  api_key="YOUR_API_KEY",
122
122
  )
123
- client.accounting.expenses.list()
123
+ client.accounting.expenses.list(
124
+ cursor="cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw",
125
+ )
124
126
  """
125
127
  _response = self._raw_client.list(
126
128
  company_id=company_id,
@@ -302,7 +304,9 @@ class ExpensesClient:
302
304
  account_token="YOUR_ACCOUNT_TOKEN",
303
305
  api_key="YOUR_API_KEY",
304
306
  )
305
- client.accounting.expenses.lines_remote_field_classes_list()
307
+ client.accounting.expenses.lines_remote_field_classes_list(
308
+ cursor="cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw",
309
+ )
306
310
  """
307
311
  _response = self._raw_client.lines_remote_field_classes_list(
308
312
  cursor=cursor,
@@ -397,7 +401,9 @@ class ExpensesClient:
397
401
  account_token="YOUR_ACCOUNT_TOKEN",
398
402
  api_key="YOUR_API_KEY",
399
403
  )
400
- client.accounting.expenses.remote_field_classes_list()
404
+ client.accounting.expenses.remote_field_classes_list(
405
+ cursor="cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw",
406
+ )
401
407
  """
402
408
  _response = self._raw_client.remote_field_classes_list(
403
409
  cursor=cursor,
@@ -518,7 +524,9 @@ class AsyncExpensesClient:
518
524
 
519
525
 
520
526
  async def main() -> None:
521
- await client.accounting.expenses.list()
527
+ await client.accounting.expenses.list(
528
+ cursor="cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw",
529
+ )
522
530
 
523
531
 
524
532
  asyncio.run(main())
@@ -724,7 +732,9 @@ class AsyncExpensesClient:
724
732
 
725
733
 
726
734
  async def main() -> None:
727
- await client.accounting.expenses.lines_remote_field_classes_list()
735
+ await client.accounting.expenses.lines_remote_field_classes_list(
736
+ cursor="cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw",
737
+ )
728
738
 
729
739
 
730
740
  asyncio.run(main())
@@ -835,7 +845,9 @@ class AsyncExpensesClient:
835
845
 
836
846
 
837
847
  async def main() -> None:
838
- await client.accounting.expenses.remote_field_classes_list()
848
+ await client.accounting.expenses.remote_field_classes_list(
849
+ cursor="cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw",
850
+ )
839
851
 
840
852
 
841
853
  asyncio.run(main())
@@ -109,7 +109,9 @@ class GeneralLedgerTransactionsClient:
109
109
  account_token="YOUR_ACCOUNT_TOKEN",
110
110
  api_key="YOUR_API_KEY",
111
111
  )
112
- client.accounting.general_ledger_transactions.list()
112
+ client.accounting.general_ledger_transactions.list(
113
+ cursor="cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw",
114
+ )
113
115
  """
114
116
  _response = self._raw_client.list(
115
117
  company_id=company_id,
@@ -287,7 +289,9 @@ class AsyncGeneralLedgerTransactionsClient:
287
289
 
288
290
 
289
291
  async def main() -> None:
290
- await client.accounting.general_ledger_transactions.list()
292
+ await client.accounting.general_ledger_transactions.list(
293
+ cursor="cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw",
294
+ )
291
295
 
292
296
 
293
297
  asyncio.run(main())
@@ -99,7 +99,9 @@ class IncomeStatementsClient:
99
99
  account_token="YOUR_ACCOUNT_TOKEN",
100
100
  api_key="YOUR_API_KEY",
101
101
  )
102
- client.accounting.income_statements.list()
102
+ client.accounting.income_statements.list(
103
+ cursor="cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw",
104
+ )
103
105
  """
104
106
  _response = self._raw_client.list(
105
107
  company_id=company_id,
@@ -267,7 +269,9 @@ class AsyncIncomeStatementsClient:
267
269
 
268
270
 
269
271
  async def main() -> None:
270
- await client.accounting.income_statements.list()
272
+ await client.accounting.income_statements.list(
273
+ cursor="cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw",
274
+ )
271
275
 
272
276
 
273
277
  asyncio.run(main())
@@ -156,7 +156,9 @@ class InvoicesClient:
156
156
  account_token="YOUR_ACCOUNT_TOKEN",
157
157
  api_key="YOUR_API_KEY",
158
158
  )
159
- client.accounting.invoices.list()
159
+ client.accounting.invoices.list(
160
+ cursor="cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw",
161
+ )
160
162
  """
161
163
  _response = self._raw_client.list(
162
164
  company_id=company_id,
@@ -407,7 +409,9 @@ class InvoicesClient:
407
409
  account_token="YOUR_ACCOUNT_TOKEN",
408
410
  api_key="YOUR_API_KEY",
409
411
  )
410
- client.accounting.invoices.line_items_remote_field_classes_list()
412
+ client.accounting.invoices.line_items_remote_field_classes_list(
413
+ cursor="cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw",
414
+ )
411
415
  """
412
416
  _response = self._raw_client.line_items_remote_field_classes_list(
413
417
  cursor=cursor,
@@ -533,7 +537,9 @@ class InvoicesClient:
533
537
  account_token="YOUR_ACCOUNT_TOKEN",
534
538
  api_key="YOUR_API_KEY",
535
539
  )
536
- client.accounting.invoices.remote_field_classes_list()
540
+ client.accounting.invoices.remote_field_classes_list(
541
+ cursor="cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw",
542
+ )
537
543
  """
538
544
  _response = self._raw_client.remote_field_classes_list(
539
545
  cursor=cursor,
@@ -688,7 +694,9 @@ class AsyncInvoicesClient:
688
694
 
689
695
 
690
696
  async def main() -> None:
691
- await client.accounting.invoices.list()
697
+ await client.accounting.invoices.list(
698
+ cursor="cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw",
699
+ )
692
700
 
693
701
 
694
702
  asyncio.run(main())
@@ -971,7 +979,9 @@ class AsyncInvoicesClient:
971
979
 
972
980
 
973
981
  async def main() -> None:
974
- await client.accounting.invoices.line_items_remote_field_classes_list()
982
+ await client.accounting.invoices.line_items_remote_field_classes_list(
983
+ cursor="cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw",
984
+ )
975
985
 
976
986
 
977
987
  asyncio.run(main())
@@ -1123,7 +1133,9 @@ class AsyncInvoicesClient:
1123
1133
 
1124
1134
 
1125
1135
  async def main() -> None:
1126
- await client.accounting.invoices.remote_field_classes_list()
1136
+ await client.accounting.invoices.remote_field_classes_list(
1137
+ cursor="cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw",
1138
+ )
1127
1139
 
1128
1140
 
1129
1141
  asyncio.run(main())
@@ -108,7 +108,9 @@ class IssuesClient:
108
108
  account_token="YOUR_ACCOUNT_TOKEN",
109
109
  api_key="YOUR_API_KEY",
110
110
  )
111
- client.accounting.issues.list()
111
+ client.accounting.issues.list(
112
+ cursor="cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw",
113
+ )
112
114
  """
113
115
  _response = self._raw_client.list(
114
116
  account_token=account_token,
@@ -263,7 +265,9 @@ class AsyncIssuesClient:
263
265
 
264
266
 
265
267
  async def main() -> None:
266
- await client.accounting.issues.list()
268
+ await client.accounting.issues.list(
269
+ cursor="cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw",
270
+ )
267
271
 
268
272
 
269
273
  asyncio.run(main())
@@ -116,7 +116,9 @@ class ItemsClient:
116
116
  account_token="YOUR_ACCOUNT_TOKEN",
117
117
  api_key="YOUR_API_KEY",
118
118
  )
119
- client.accounting.items.list()
119
+ client.accounting.items.list(
120
+ cursor="cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw",
121
+ )
120
122
  """
121
123
  _response = self._raw_client.list(
122
124
  company_id=company_id,
@@ -460,7 +462,9 @@ class AsyncItemsClient:
460
462
 
461
463
 
462
464
  async def main() -> None:
463
- await client.accounting.items.list()
465
+ await client.accounting.items.list(
466
+ cursor="cD0yMDIxLTAxLTA2KzAzJTNBMjQlM0E1My40MzQzMjYlMkIwMCUzQTAw",
467
+ )
464
468
 
465
469
 
466
470
  asyncio.run(main())