mergepythonclient 2.2.0__py3-none-any.whl → 2.3.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 (171) hide show
  1. merge/__init__.py +40 -4
  2. merge/client.py +118 -18
  3. merge/core/__init__.py +75 -21
  4. merge/core/client_wrapper.py +2 -2
  5. merge/resources/__init__.py +33 -1
  6. merge/resources/accounting/__init__.py +1240 -609
  7. merge/resources/accounting/client.py +835 -165
  8. merge/resources/accounting/resources/__init__.py +208 -92
  9. merge/resources/accounting/resources/accounts/__init__.py +36 -6
  10. merge/resources/accounting/resources/accounts/types/__init__.py +34 -4
  11. merge/resources/accounting/resources/async_passthrough/__init__.py +26 -1
  12. merge/resources/accounting/resources/async_passthrough/types/__init__.py +26 -1
  13. merge/resources/accounting/resources/company_info/__init__.py +29 -1
  14. merge/resources/accounting/resources/company_info/types/__init__.py +30 -2
  15. merge/resources/accounting/resources/contacts/__init__.py +29 -1
  16. merge/resources/accounting/resources/contacts/types/__init__.py +30 -2
  17. merge/resources/accounting/resources/credit_notes/__init__.py +40 -8
  18. merge/resources/accounting/resources/credit_notes/types/__init__.py +38 -6
  19. merge/resources/accounting/resources/expense_reports/__init__.py +34 -5
  20. merge/resources/accounting/resources/expense_reports/types/__init__.py +32 -3
  21. merge/resources/accounting/resources/expenses/__init__.py +29 -1
  22. merge/resources/accounting/resources/expenses/types/__init__.py +30 -2
  23. merge/resources/accounting/resources/general_ledger_transactions/__init__.py +29 -1
  24. merge/resources/accounting/resources/general_ledger_transactions/types/__init__.py +30 -2
  25. merge/resources/accounting/resources/invoices/__init__.py +36 -6
  26. merge/resources/accounting/resources/invoices/types/__init__.py +34 -4
  27. merge/resources/accounting/resources/issues/__init__.py +26 -1
  28. merge/resources/accounting/resources/issues/types/__init__.py +26 -1
  29. merge/resources/accounting/resources/items/__init__.py +26 -1
  30. merge/resources/accounting/resources/items/types/__init__.py +30 -2
  31. merge/resources/accounting/resources/journal_entries/__init__.py +29 -1
  32. merge/resources/accounting/resources/journal_entries/types/__init__.py +30 -2
  33. merge/resources/accounting/resources/link_token/__init__.py +26 -1
  34. merge/resources/accounting/resources/link_token/types/__init__.py +26 -1
  35. merge/resources/accounting/resources/linked_accounts/__init__.py +26 -1
  36. merge/resources/accounting/resources/linked_accounts/types/__init__.py +28 -1
  37. merge/resources/accounting/resources/payments/__init__.py +29 -1
  38. merge/resources/accounting/resources/payments/types/__init__.py +30 -2
  39. merge/resources/accounting/resources/projects/__init__.py +29 -1
  40. merge/resources/accounting/resources/projects/types/__init__.py +30 -2
  41. merge/resources/accounting/resources/purchase_orders/__init__.py +29 -1
  42. merge/resources/accounting/resources/purchase_orders/types/__init__.py +30 -2
  43. merge/resources/accounting/resources/transactions/__init__.py +29 -1
  44. merge/resources/accounting/resources/transactions/types/__init__.py +30 -2
  45. merge/resources/accounting/resources/vendor_credits/__init__.py +29 -1
  46. merge/resources/accounting/resources/vendor_credits/types/__init__.py +30 -2
  47. merge/resources/accounting/types/__init__.py +1068 -521
  48. merge/resources/ats/__init__.py +586 -282
  49. merge/resources/ats/client.py +590 -120
  50. merge/resources/ats/resources/__init__.py +150 -63
  51. merge/resources/ats/resources/activities/__init__.py +36 -6
  52. merge/resources/ats/resources/activities/types/__init__.py +34 -4
  53. merge/resources/ats/resources/applications/__init__.py +29 -1
  54. merge/resources/ats/resources/applications/types/__init__.py +30 -2
  55. merge/resources/ats/resources/async_passthrough/__init__.py +26 -1
  56. merge/resources/ats/resources/async_passthrough/types/__init__.py +26 -1
  57. merge/resources/ats/resources/candidates/__init__.py +30 -1
  58. merge/resources/ats/resources/candidates/types/__init__.py +32 -3
  59. merge/resources/ats/resources/eeocs/__init__.py +36 -6
  60. merge/resources/ats/resources/eeocs/types/__init__.py +34 -4
  61. merge/resources/ats/resources/interviews/__init__.py +29 -1
  62. merge/resources/ats/resources/interviews/types/__init__.py +30 -2
  63. merge/resources/ats/resources/issues/__init__.py +26 -1
  64. merge/resources/ats/resources/issues/types/__init__.py +26 -1
  65. merge/resources/ats/resources/job_postings/__init__.py +26 -1
  66. merge/resources/ats/resources/job_postings/types/__init__.py +26 -1
  67. merge/resources/ats/resources/jobs/__init__.py +36 -6
  68. merge/resources/ats/resources/jobs/types/__init__.py +34 -4
  69. merge/resources/ats/resources/link_token/__init__.py +26 -1
  70. merge/resources/ats/resources/link_token/types/__init__.py +26 -1
  71. merge/resources/ats/resources/linked_accounts/__init__.py +26 -1
  72. merge/resources/ats/resources/linked_accounts/types/__init__.py +28 -1
  73. merge/resources/ats/resources/offers/__init__.py +26 -1
  74. merge/resources/ats/resources/offers/types/__init__.py +30 -2
  75. merge/resources/ats/resources/scorecards/__init__.py +29 -1
  76. merge/resources/ats/resources/scorecards/types/__init__.py +30 -2
  77. merge/resources/ats/types/__init__.py +462 -219
  78. merge/resources/crm/__init__.py +566 -272
  79. merge/resources/crm/client.py +556 -114
  80. merge/resources/crm/resources/__init__.py +121 -47
  81. merge/resources/crm/resources/async_passthrough/__init__.py +26 -1
  82. merge/resources/crm/resources/async_passthrough/types/__init__.py +26 -1
  83. merge/resources/crm/resources/contacts/__init__.py +29 -1
  84. merge/resources/crm/resources/contacts/types/__init__.py +30 -2
  85. merge/resources/crm/resources/engagements/__init__.py +29 -1
  86. merge/resources/crm/resources/engagements/types/__init__.py +30 -2
  87. merge/resources/crm/resources/issues/__init__.py +26 -1
  88. merge/resources/crm/resources/issues/types/__init__.py +26 -1
  89. merge/resources/crm/resources/leads/__init__.py +26 -1
  90. merge/resources/crm/resources/leads/types/__init__.py +30 -2
  91. merge/resources/crm/resources/link_token/__init__.py +26 -1
  92. merge/resources/crm/resources/link_token/types/__init__.py +26 -1
  93. merge/resources/crm/resources/linked_accounts/__init__.py +26 -1
  94. merge/resources/crm/resources/linked_accounts/types/__init__.py +28 -1
  95. merge/resources/crm/resources/notes/__init__.py +26 -1
  96. merge/resources/crm/resources/notes/types/__init__.py +30 -2
  97. merge/resources/crm/resources/opportunities/__init__.py +34 -1
  98. merge/resources/crm/resources/opportunities/types/__init__.py +32 -3
  99. merge/resources/crm/resources/tasks/__init__.py +26 -1
  100. merge/resources/crm/resources/tasks/types/__init__.py +30 -2
  101. merge/resources/crm/types/__init__.py +470 -224
  102. merge/resources/filestorage/__init__.py +322 -150
  103. merge/resources/filestorage/client.py +405 -87
  104. merge/resources/filestorage/resources/__init__.py +91 -34
  105. merge/resources/filestorage/resources/async_passthrough/__init__.py +26 -1
  106. merge/resources/filestorage/resources/async_passthrough/types/__init__.py +26 -1
  107. merge/resources/filestorage/resources/files/__init__.py +36 -6
  108. merge/resources/filestorage/resources/files/types/__init__.py +34 -4
  109. merge/resources/filestorage/resources/folders/__init__.py +29 -1
  110. merge/resources/filestorage/resources/folders/types/__init__.py +30 -2
  111. merge/resources/filestorage/resources/issues/__init__.py +26 -1
  112. merge/resources/filestorage/resources/issues/types/__init__.py +26 -1
  113. merge/resources/filestorage/resources/linked_accounts/__init__.py +26 -1
  114. merge/resources/filestorage/resources/linked_accounts/types/__init__.py +28 -1
  115. merge/resources/filestorage/types/__init__.py +258 -117
  116. merge/resources/hris/__init__.py +576 -277
  117. merge/resources/hris/client.py +590 -120
  118. merge/resources/hris/resources/__init__.py +188 -86
  119. merge/resources/hris/resources/async_passthrough/__init__.py +26 -1
  120. merge/resources/hris/resources/async_passthrough/types/__init__.py +26 -1
  121. merge/resources/hris/resources/bank_info/__init__.py +29 -1
  122. merge/resources/hris/resources/bank_info/types/__init__.py +30 -2
  123. merge/resources/hris/resources/employee_payroll_runs/__init__.py +29 -1
  124. merge/resources/hris/resources/employee_payroll_runs/types/__init__.py +30 -2
  125. merge/resources/hris/resources/employees/__init__.py +44 -10
  126. merge/resources/hris/resources/employees/types/__init__.py +42 -8
  127. merge/resources/hris/resources/employments/__init__.py +42 -9
  128. merge/resources/hris/resources/employments/types/__init__.py +40 -7
  129. merge/resources/hris/resources/issues/__init__.py +26 -1
  130. merge/resources/hris/resources/issues/types/__init__.py +26 -1
  131. merge/resources/hris/resources/link_token/__init__.py +26 -1
  132. merge/resources/hris/resources/link_token/types/__init__.py +26 -1
  133. merge/resources/hris/resources/linked_accounts/__init__.py +26 -1
  134. merge/resources/hris/resources/linked_accounts/types/__init__.py +28 -1
  135. merge/resources/hris/resources/locations/__init__.py +38 -7
  136. merge/resources/hris/resources/locations/types/__init__.py +36 -5
  137. merge/resources/hris/resources/payroll_runs/__init__.py +38 -7
  138. merge/resources/hris/resources/payroll_runs/types/__init__.py +36 -5
  139. merge/resources/hris/resources/time_off/__init__.py +44 -10
  140. merge/resources/hris/resources/time_off/types/__init__.py +42 -8
  141. merge/resources/hris/resources/time_off_balances/__init__.py +26 -1
  142. merge/resources/hris/resources/time_off_balances/types/__init__.py +28 -1
  143. merge/resources/hris/resources/timesheet_entries/__init__.py +26 -1
  144. merge/resources/hris/resources/timesheet_entries/types/__init__.py +28 -1
  145. merge/resources/hris/types/__init__.py +422 -199
  146. merge/resources/ticketing/__init__.py +464 -221
  147. merge/resources/ticketing/client.py +507 -105
  148. merge/resources/ticketing/resources/__init__.py +120 -48
  149. merge/resources/ticketing/resources/async_passthrough/__init__.py +26 -1
  150. merge/resources/ticketing/resources/async_passthrough/types/__init__.py +26 -1
  151. merge/resources/ticketing/resources/collections/__init__.py +26 -1
  152. merge/resources/ticketing/resources/collections/types/__init__.py +28 -1
  153. merge/resources/ticketing/resources/comments/__init__.py +29 -1
  154. merge/resources/ticketing/resources/comments/types/__init__.py +30 -2
  155. merge/resources/ticketing/resources/issues/__init__.py +26 -1
  156. merge/resources/ticketing/resources/issues/types/__init__.py +26 -1
  157. merge/resources/ticketing/resources/link_token/__init__.py +26 -1
  158. merge/resources/ticketing/resources/link_token/types/__init__.py +26 -1
  159. merge/resources/ticketing/resources/linked_accounts/__init__.py +26 -1
  160. merge/resources/ticketing/resources/linked_accounts/types/__init__.py +28 -1
  161. merge/resources/ticketing/resources/projects/__init__.py +26 -1
  162. merge/resources/ticketing/resources/projects/types/__init__.py +26 -1
  163. merge/resources/ticketing/resources/tickets/__init__.py +44 -10
  164. merge/resources/ticketing/resources/tickets/types/__init__.py +42 -8
  165. merge/resources/ticketing/resources/users/__init__.py +26 -1
  166. merge/resources/ticketing/resources/users/types/__init__.py +30 -2
  167. merge/resources/ticketing/types/__init__.py +370 -173
  168. {mergepythonclient-2.2.0.dist-info → mergepythonclient-2.3.0.dist-info}/METADATA +2 -1
  169. {mergepythonclient-2.2.0.dist-info → mergepythonclient-2.3.0.dist-info}/RECORD +171 -171
  170. {mergepythonclient-2.2.0.dist-info → mergepythonclient-2.3.0.dist-info}/LICENSE.md +0 -0
  171. {mergepythonclient-2.2.0.dist-info → mergepythonclient-2.3.0.dist-info}/WHEEL +0 -0
@@ -2,615 +2,1246 @@
2
2
 
3
3
  # isort: skip_file
4
4
 
5
- from .types import (
6
- Account,
7
- AccountAccountType,
8
- AccountAccountTypeEnum,
9
- AccountClassification,
10
- AccountCurrency,
11
- AccountDetails,
12
- AccountDetailsAndActions,
13
- AccountDetailsAndActionsCategory,
14
- AccountDetailsAndActionsIntegration,
15
- AccountDetailsAndActionsStatus,
16
- AccountDetailsAndActionsStatusEnum,
17
- AccountDetailsCategory,
18
- AccountIntegration,
19
- AccountRequest,
20
- AccountRequestAccountType,
21
- AccountRequestClassification,
22
- AccountRequestCurrency,
23
- AccountRequestStatus,
24
- AccountResponse,
25
- AccountStatus,
26
- AccountStatusEnum,
27
- AccountToken,
28
- AccountingAttachment,
29
- AccountingAttachmentRequest,
30
- AccountingAttachmentResponse,
31
- AccountingPeriod,
32
- AccountingPeriodStatus,
33
- AccountingPhoneNumber,
34
- AccountingPhoneNumberRequest,
35
- Address,
36
- AddressCountry,
37
- AddressRequest,
38
- AddressRequestCountry,
39
- AddressRequestType,
40
- AddressType,
41
- AddressTypeEnum,
42
- AdvancedMetadata,
43
- AsyncPassthroughReciept,
44
- AsyncPostTask,
45
- AsyncPostTaskResult,
46
- AsyncPostTaskStatus,
47
- AsyncPostTaskStatusEnum,
48
- AuditLogEvent,
49
- AuditLogEventEventType,
50
- AuditLogEventRole,
51
- AvailableActions,
52
- BalanceSheet,
53
- BalanceSheetCompany,
54
- BalanceSheetCurrency,
55
- BankFeedAccount,
56
- BankFeedAccountAccountType,
57
- BankFeedAccountAccountTypeEnum,
58
- BankFeedAccountCurrency,
59
- BankFeedAccountFeedStatus,
60
- BankFeedAccountRequest,
61
- BankFeedAccountRequestAccountType,
62
- BankFeedAccountRequestCurrency,
63
- BankFeedAccountRequestFeedStatus,
64
- BankFeedAccountResponse,
65
- BankFeedTransaction,
66
- BankFeedTransactionBankFeedAccount,
67
- BankFeedTransactionCreditOrDebit,
68
- BankFeedTransactionRequestRequest,
69
- BankFeedTransactionRequestRequestBankFeedAccount,
70
- BankFeedTransactionRequestRequestCreditOrDebit,
71
- BankFeedTransactionResponse,
72
- CashFlowStatement,
73
- CashFlowStatementCompany,
74
- CashFlowStatementCurrency,
75
- CategoriesEnum,
76
- CategoryEnum,
77
- CategoryTypeEnum,
78
- ClassificationEnum,
79
- CommonModelScopeApi,
80
- CommonModelScopesBodyRequest,
81
- CompanyInfo,
82
- CompanyInfoCurrency,
83
- ComponentTypeEnum,
84
- Contact,
85
- ContactAddressesItem,
86
- ContactRequest,
87
- ContactRequestAddressesItem,
88
- ContactRequestStatus,
89
- ContactResponse,
90
- ContactStatus,
91
- CountryEnum,
92
- CreditNote,
93
- CreditNoteAccountingPeriod,
94
- CreditNoteAppliedPaymentsItem,
95
- CreditNoteApplyLineForCreditNote,
96
- CreditNoteApplyLineForCreditNoteInvoice,
97
- CreditNoteApplyLineForCreditNoteRequest,
98
- CreditNoteApplyLineForCreditNoteRequestInvoice,
99
- CreditNoteApplyLineForInvoice,
100
- CreditNoteApplyLineForInvoiceCreditNote,
101
- CreditNoteCompany,
102
- CreditNoteContact,
103
- CreditNoteCurrency,
104
- CreditNoteLineItem,
105
- CreditNoteLineItemCompany,
106
- CreditNoteLineItemContact,
107
- CreditNoteLineItemItem,
108
- CreditNoteLineItemProject,
109
- CreditNoteLineItemRequest,
110
- CreditNoteLineItemRequestCompany,
111
- CreditNoteLineItemRequestContact,
112
- CreditNoteLineItemRequestItem,
113
- CreditNoteLineItemRequestProject,
114
- CreditNotePaymentsItem,
115
- CreditNoteRequest,
116
- CreditNoteRequestAccountingPeriod,
117
- CreditNoteRequestAppliedPaymentsItem,
118
- CreditNoteRequestCompany,
119
- CreditNoteRequestContact,
120
- CreditNoteRequestCurrency,
121
- CreditNoteRequestLineItemsItem,
122
- CreditNoteRequestPaymentsItem,
123
- CreditNoteRequestStatus,
124
- CreditNoteRequestTrackingCategoriesItem,
125
- CreditNoteResponse,
126
- CreditNoteStatus,
127
- CreditNoteStatusEnum,
128
- CreditNoteTrackingCategoriesItem,
129
- CreditOrDebitEnum,
130
- DataPassthroughRequest,
131
- DataPassthroughRequestMethod,
132
- DebugModeLog,
133
- DebugModelLogSummary,
134
- Employee,
135
- EmployeeCompany,
136
- EmployeeStatus,
137
- EnabledActionsEnum,
138
- EncodingEnum,
139
- ErrorValidationProblem,
140
- EventTypeEnum,
141
- Expense,
142
- ExpenseAccount,
143
- ExpenseAccountingPeriod,
144
- ExpenseCompany,
145
- ExpenseContact,
146
- ExpenseCurrency,
147
- ExpenseEmployee,
148
- ExpenseLine,
149
- ExpenseLineAccount,
150
- ExpenseLineContact,
151
- ExpenseLineCurrency,
152
- ExpenseLineEmployee,
153
- ExpenseLineItem,
154
- ExpenseLineProject,
155
- ExpenseLineRequest,
156
- ExpenseLineRequestAccount,
157
- ExpenseLineRequestContact,
158
- ExpenseLineRequestCurrency,
159
- ExpenseLineRequestEmployee,
160
- ExpenseLineRequestItem,
161
- ExpenseLineRequestProject,
162
- ExpenseLineRequestTrackingCategoriesItem,
163
- ExpenseLineRequestTrackingCategory,
164
- ExpenseLineTrackingCategoriesItem,
165
- ExpenseLineTrackingCategory,
166
- ExpenseReport,
167
- ExpenseReportCompany,
168
- ExpenseReportLine,
169
- ExpenseReportLineAccount,
170
- ExpenseReportLineCompany,
171
- ExpenseReportLineContact,
172
- ExpenseReportLineEmployee,
173
- ExpenseReportLineProject,
174
- ExpenseReportLineRequest,
175
- ExpenseReportLineRequestAccount,
176
- ExpenseReportLineRequestCompany,
177
- ExpenseReportLineRequestContact,
178
- ExpenseReportLineRequestEmployee,
179
- ExpenseReportLineRequestProject,
180
- ExpenseReportLineRequestTaxRate,
181
- ExpenseReportLineTaxRate,
182
- ExpenseReportRequest,
183
- ExpenseReportRequestAccountingPeriod,
184
- ExpenseReportRequestCompany,
185
- ExpenseReportRequestEmployee,
186
- ExpenseReportResponse,
187
- ExpenseReportStatus,
188
- ExpenseReportStatusEnum,
189
- ExpenseRequest,
190
- ExpenseRequestAccount,
191
- ExpenseRequestAccountingPeriod,
192
- ExpenseRequestCompany,
193
- ExpenseRequestContact,
194
- ExpenseRequestCurrency,
195
- ExpenseRequestEmployee,
196
- ExpenseRequestTrackingCategoriesItem,
197
- ExpenseResponse,
198
- ExpenseTrackingCategoriesItem,
199
- ExternalTargetFieldApi,
200
- ExternalTargetFieldApiResponse,
201
- FeedStatusEnum,
202
- FieldFormatEnum,
203
- FieldMappingApiInstance,
204
- FieldMappingApiInstanceRemoteField,
205
- FieldMappingApiInstanceRemoteFieldRemoteEndpointInfo,
206
- FieldMappingApiInstanceResponse,
207
- FieldMappingApiInstanceTargetField,
208
- FieldMappingInstanceResponse,
209
- FieldPermissionDeserializer,
210
- FieldPermissionDeserializerRequest,
211
- FieldTypeEnum,
212
- GeneralLedgerTransaction,
213
- GeneralLedgerTransactionAccountingPeriod,
214
- GeneralLedgerTransactionCompany,
215
- GeneralLedgerTransactionGeneralLedgerTransactionLinesItem,
216
- GeneralLedgerTransactionLine,
217
- GeneralLedgerTransactionLineAccount,
218
- GeneralLedgerTransactionLineBaseCurrency,
219
- GeneralLedgerTransactionLineCompany,
220
- GeneralLedgerTransactionLineContact,
221
- GeneralLedgerTransactionLineEmployee,
222
- GeneralLedgerTransactionLineItem,
223
- GeneralLedgerTransactionLineProject,
224
- GeneralLedgerTransactionLineTrackingCategoriesItem,
225
- GeneralLedgerTransactionLineTransactionCurrency,
226
- GeneralLedgerTransactionTrackingCategoriesItem,
227
- GeneralLedgerTransactionUnderlyingTransactionType,
228
- IncomeStatement,
229
- IncomeStatementCompany,
230
- IncomeStatementCurrency,
231
- IndividualCommonModelScopeDeserializer,
232
- IndividualCommonModelScopeDeserializerRequest,
233
- Invoice,
234
- InvoiceAccountingPeriod,
235
- InvoiceAppliedCreditNotesItem,
236
- InvoiceAppliedPaymentsItem,
237
- InvoiceAppliedVendorCreditsItem,
238
- InvoiceCompany,
239
- InvoiceContact,
240
- InvoiceCurrency,
241
- InvoiceEmployee,
242
- InvoiceLineItem,
243
- InvoiceLineItemAccount,
244
- InvoiceLineItemContact,
245
- InvoiceLineItemCurrency,
246
- InvoiceLineItemEmployee,
247
- InvoiceLineItemItem,
248
- InvoiceLineItemProject,
249
- InvoiceLineItemRequest,
250
- InvoiceLineItemRequestAccount,
251
- InvoiceLineItemRequestContact,
252
- InvoiceLineItemRequestCurrency,
253
- InvoiceLineItemRequestEmployee,
254
- InvoiceLineItemRequestItem,
255
- InvoiceLineItemRequestProject,
256
- InvoiceLineItemRequestTrackingCategoriesItem,
257
- InvoiceLineItemRequestTrackingCategory,
258
- InvoiceLineItemTrackingCategoriesItem,
259
- InvoiceLineItemTrackingCategory,
260
- InvoicePaymentTerm,
261
- InvoicePaymentsItem,
262
- InvoicePurchaseOrdersItem,
263
- InvoiceRequest,
264
- InvoiceRequestCompany,
265
- InvoiceRequestContact,
266
- InvoiceRequestCurrency,
267
- InvoiceRequestEmployee,
268
- InvoiceRequestPaymentTerm,
269
- InvoiceRequestPaymentsItem,
270
- InvoiceRequestPurchaseOrdersItem,
271
- InvoiceRequestStatus,
272
- InvoiceRequestTrackingCategoriesItem,
273
- InvoiceRequestType,
274
- InvoiceResponse,
275
- InvoiceStatus,
276
- InvoiceStatusEnum,
277
- InvoiceTrackingCategoriesItem,
278
- InvoiceType,
279
- InvoiceTypeEnum,
280
- Issue,
281
- IssueStatus,
282
- IssueStatusEnum,
283
- Item,
284
- ItemCompany,
285
- ItemFormatEnum,
286
- ItemPurchaseAccount,
287
- ItemPurchaseTaxRate,
288
- ItemRequestRequest,
289
- ItemRequestRequestCompany,
290
- ItemRequestRequestPurchaseAccount,
291
- ItemRequestRequestPurchaseTaxRate,
292
- ItemRequestRequestSalesAccount,
293
- ItemRequestRequestSalesTaxRate,
294
- ItemRequestRequestStatus,
295
- ItemRequestRequestType,
296
- ItemResponse,
297
- ItemSalesAccount,
298
- ItemSalesTaxRate,
299
- ItemSchema,
300
- ItemStatus,
301
- ItemType,
302
- ItemTypeEnum,
303
- JournalEntry,
304
- JournalEntryAccountingPeriod,
305
- JournalEntryAppliedPaymentsItem,
306
- JournalEntryCompany,
307
- JournalEntryCurrency,
308
- JournalEntryPaymentsItem,
309
- JournalEntryPostingStatus,
310
- JournalEntryRequest,
311
- JournalEntryRequestCompany,
312
- JournalEntryRequestCurrency,
313
- JournalEntryRequestPaymentsItem,
314
- JournalEntryRequestPostingStatus,
315
- JournalEntryRequestTrackingCategoriesItem,
316
- JournalEntryResponse,
317
- JournalEntryTrackingCategoriesItem,
318
- JournalLine,
319
- JournalLineAccount,
320
- JournalLineCurrency,
321
- JournalLineProject,
322
- JournalLineRequest,
323
- JournalLineRequestAccount,
324
- JournalLineRequestCurrency,
325
- JournalLineRequestProject,
326
- JournalLineRequestTrackingCategoriesItem,
327
- JournalLineRequestTrackingCategory,
328
- JournalLineTrackingCategoriesItem,
329
- JournalLineTrackingCategory,
330
- LanguageEnum,
331
- LastSyncResultEnum,
332
- LinkToken,
333
- LinkedAccountStatus,
334
- MetaResponse,
335
- MethodEnum,
336
- MethodTypeEnum,
337
- ModelOperation,
338
- ModelPermissionDeserializer,
339
- ModelPermissionDeserializerRequest,
340
- MultipartFormFieldRequest,
341
- MultipartFormFieldRequestEncoding,
342
- PaginatedAccountDetailsAndActionsList,
343
- PaginatedAccountList,
344
- PaginatedAccountingAttachmentList,
345
- PaginatedAccountingPeriodList,
346
- PaginatedAuditLogEventList,
347
- PaginatedBalanceSheetList,
348
- PaginatedBankFeedAccountList,
349
- PaginatedBankFeedTransactionList,
350
- PaginatedCashFlowStatementList,
351
- PaginatedCompanyInfoList,
352
- PaginatedContactList,
353
- PaginatedCreditNoteList,
354
- PaginatedEmployeeList,
355
- PaginatedExpenseList,
356
- PaginatedExpenseReportLineList,
357
- PaginatedExpenseReportList,
358
- PaginatedGeneralLedgerTransactionList,
359
- PaginatedIncomeStatementList,
360
- PaginatedInvoiceList,
361
- PaginatedIssueList,
362
- PaginatedItemList,
363
- PaginatedJournalEntryList,
364
- PaginatedPaymentList,
365
- PaginatedPaymentMethodList,
366
- PaginatedPaymentTermList,
367
- PaginatedProjectList,
368
- PaginatedPurchaseOrderList,
369
- PaginatedRemoteFieldClassList,
370
- PaginatedSyncStatusList,
371
- PaginatedTaxRateList,
372
- PaginatedTrackingCategoryList,
373
- PaginatedTransactionList,
374
- PaginatedVendorCreditList,
375
- PatchedContactRequest,
376
- PatchedContactRequestAddressesItem,
377
- PatchedItemRequestRequest,
378
- PatchedItemRequestRequestStatus,
379
- PatchedItemRequestRequestType,
380
- PatchedPaymentRequest,
381
- PatchedPaymentRequestAccount,
382
- PatchedPaymentRequestAccountingPeriod,
383
- PatchedPaymentRequestAppliedToLinesItem,
384
- PatchedPaymentRequestCompany,
385
- PatchedPaymentRequestContact,
386
- PatchedPaymentRequestCurrency,
387
- PatchedPaymentRequestPaymentMethod,
388
- PatchedPaymentRequestTrackingCategoriesItem,
389
- PatchedPaymentRequestType,
390
- Payment,
391
- PaymentAccount,
392
- PaymentAccountingPeriod,
393
- PaymentAppliedToLinesItem,
394
- PaymentCompany,
395
- PaymentContact,
396
- PaymentCurrency,
397
- PaymentLineItem,
398
- PaymentLineItemRequest,
399
- PaymentMethod,
400
- PaymentMethodMethodType,
401
- PaymentPaymentMethod,
402
- PaymentRequest,
403
- PaymentRequestAccount,
404
- PaymentRequestAccountingPeriod,
405
- PaymentRequestAppliedToLinesItem,
406
- PaymentRequestCompany,
407
- PaymentRequestContact,
408
- PaymentRequestCurrency,
409
- PaymentRequestPaymentMethod,
410
- PaymentRequestTrackingCategoriesItem,
411
- PaymentRequestType,
412
- PaymentResponse,
413
- PaymentTerm,
414
- PaymentTermCompany,
415
- PaymentTrackingCategoriesItem,
416
- PaymentType,
417
- PaymentTypeEnum,
418
- PostingStatusEnum,
419
- Project,
420
- ProjectCompany,
421
- ProjectContact,
422
- PurchaseOrder,
423
- PurchaseOrderAccountingPeriod,
424
- PurchaseOrderCompany,
425
- PurchaseOrderCurrency,
426
- PurchaseOrderDeliveryAddress,
427
- PurchaseOrderLineItem,
428
- PurchaseOrderLineItemCurrency,
429
- PurchaseOrderLineItemItem,
430
- PurchaseOrderLineItemRequest,
431
- PurchaseOrderLineItemRequestCurrency,
432
- PurchaseOrderLineItemRequestItem,
433
- PurchaseOrderPaymentTerm,
434
- PurchaseOrderRequest,
435
- PurchaseOrderRequestCompany,
436
- PurchaseOrderRequestCurrency,
437
- PurchaseOrderRequestDeliveryAddress,
438
- PurchaseOrderRequestPaymentTerm,
439
- PurchaseOrderRequestStatus,
440
- PurchaseOrderRequestTrackingCategoriesItem,
441
- PurchaseOrderRequestVendor,
442
- PurchaseOrderResponse,
443
- PurchaseOrderStatus,
444
- PurchaseOrderStatusEnum,
445
- PurchaseOrderTrackingCategoriesItem,
446
- PurchaseOrderVendor,
447
- RemoteData,
448
- RemoteEndpointInfo,
449
- RemoteField,
450
- RemoteFieldApi,
451
- RemoteFieldApiCoverage,
452
- RemoteFieldApiResponse,
453
- RemoteFieldClass,
454
- RemoteFieldRemoteFieldClass,
455
- RemoteFieldRequest,
456
- RemoteFieldRequestRemoteFieldClass,
457
- RemoteKey,
458
- RemoteResponse,
459
- ReportItem,
460
- RequestFormatEnum,
461
- ResponseTypeEnum,
462
- RoleEnum,
463
- SelectiveSyncConfigurationsUsageEnum,
464
- Status7D1Enum,
465
- Status895Enum,
466
- StatusFd5Enum,
467
- SyncStatus,
468
- SyncStatusStatus,
469
- TaxComponent,
470
- TaxComponentComponentType,
471
- TaxRate,
472
- TaxRateCompany,
473
- TaxRateStatus,
474
- TaxRateTaxComponentsItem,
475
- TrackingCategory,
476
- TrackingCategoryCategoryType,
477
- TrackingCategoryCompany,
478
- TrackingCategoryStatus,
479
- Transaction,
480
- TransactionAccount,
481
- TransactionAccountingPeriod,
482
- TransactionContact,
483
- TransactionCurrency,
484
- TransactionCurrencyEnum,
485
- TransactionLineItem,
486
- TransactionLineItemCurrency,
487
- TransactionLineItemItem,
488
- TransactionTrackingCategoriesItem,
489
- Type2BbEnum,
490
- UnderlyingTransactionTypeEnum,
491
- ValidationProblemSource,
492
- VendorCredit,
493
- VendorCreditAccountingPeriod,
494
- VendorCreditApplyLineForInvoice,
495
- VendorCreditApplyLineForInvoiceVendorCredit,
496
- VendorCreditApplyLineForVendorCredit,
497
- VendorCreditApplyLineForVendorCreditInvoice,
498
- VendorCreditApplyLineForVendorCreditRequest,
499
- VendorCreditApplyLineForVendorCreditRequestInvoice,
500
- VendorCreditCompany,
501
- VendorCreditCurrency,
502
- VendorCreditLine,
503
- VendorCreditLineAccount,
504
- VendorCreditLineContact,
505
- VendorCreditLineProject,
506
- VendorCreditLineRequest,
507
- VendorCreditLineRequestAccount,
508
- VendorCreditLineRequestContact,
509
- VendorCreditLineRequestProject,
510
- VendorCreditRequest,
511
- VendorCreditRequestAccountingPeriod,
512
- VendorCreditRequestCompany,
513
- VendorCreditRequestCurrency,
514
- VendorCreditRequestTrackingCategoriesItem,
515
- VendorCreditRequestVendor,
516
- VendorCreditResponse,
517
- VendorCreditTrackingCategoriesItem,
518
- VendorCreditVendor,
519
- WarningValidationProblem,
520
- WebhookReceiver,
521
- )
522
- from .resources import (
523
- AccountsListRequestRemoteFields,
524
- AccountsListRequestShowEnumOrigins,
525
- AccountsRetrieveRequestRemoteFields,
526
- AccountsRetrieveRequestShowEnumOrigins,
527
- AsyncPassthroughRetrieveResponse,
528
- CompanyInfoListRequestExpand,
529
- CompanyInfoRetrieveRequestExpand,
530
- ContactsListRequestExpand,
531
- ContactsRetrieveRequestExpand,
532
- CreditNotesListRequestExpand,
533
- CreditNotesListRequestRemoteFields,
534
- CreditNotesListRequestShowEnumOrigins,
535
- CreditNotesRetrieveRequestExpand,
536
- CreditNotesRetrieveRequestRemoteFields,
537
- CreditNotesRetrieveRequestShowEnumOrigins,
538
- EndUserDetailsRequestLanguage,
539
- ExpenseReportsLinesListRequestExpand,
540
- ExpenseReportsListRequestExpand,
541
- ExpenseReportsRetrieveRequestExpand,
542
- ExpensesListRequestExpand,
543
- ExpensesRetrieveRequestExpand,
544
- GeneralLedgerTransactionsListRequestExpand,
545
- GeneralLedgerTransactionsRetrieveRequestExpand,
546
- InvoicesListRequestExpand,
547
- InvoicesListRequestStatus,
548
- InvoicesListRequestType,
549
- InvoicesRetrieveRequestExpand,
550
- IssuesListRequestStatus,
551
- ItemsListRequestExpand,
552
- ItemsRetrieveRequestExpand,
553
- JournalEntriesListRequestExpand,
554
- JournalEntriesRetrieveRequestExpand,
555
- LinkedAccountsListRequestCategory,
556
- PaymentsListRequestExpand,
557
- PaymentsRetrieveRequestExpand,
558
- ProjectsListRequestExpand,
559
- ProjectsRetrieveRequestExpand,
560
- PurchaseOrdersListRequestExpand,
561
- PurchaseOrdersRetrieveRequestExpand,
562
- TransactionsListRequestExpand,
563
- TransactionsRetrieveRequestExpand,
564
- VendorCreditsListRequestExpand,
565
- VendorCreditsRetrieveRequestExpand,
566
- account_details,
567
- account_token,
568
- accounting_periods,
569
- accounts,
570
- addresses,
571
- async_passthrough,
572
- async_tasks,
573
- attachments,
574
- audit_trail,
575
- available_actions,
576
- balance_sheets,
577
- bank_feed_accounts,
578
- bank_feed_transactions,
579
- cash_flow_statements,
580
- company_info,
581
- contacts,
582
- credit_notes,
583
- delete_account,
584
- employees,
585
- expense_reports,
586
- expenses,
587
- field_mapping,
588
- force_resync,
589
- general_ledger_transactions,
590
- generate_key,
591
- income_statements,
592
- invoices,
593
- issues,
594
- items,
595
- journal_entries,
596
- link_token,
597
- linked_accounts,
598
- passthrough,
599
- payment_methods,
600
- payment_terms,
601
- payments,
602
- phone_numbers,
603
- projects,
604
- purchase_orders,
605
- regenerate_key,
606
- scopes,
607
- sync_status,
608
- tax_rates,
609
- tracking_categories,
610
- transactions,
611
- vendor_credits,
612
- webhook_receivers,
613
- )
5
+ import typing
6
+ from importlib import import_module
7
+
8
+ if typing.TYPE_CHECKING:
9
+ from .types import (
10
+ Account,
11
+ AccountAccountType,
12
+ AccountAccountTypeEnum,
13
+ AccountClassification,
14
+ AccountCurrency,
15
+ AccountDetails,
16
+ AccountDetailsAndActions,
17
+ AccountDetailsAndActionsCategory,
18
+ AccountDetailsAndActionsIntegration,
19
+ AccountDetailsAndActionsStatus,
20
+ AccountDetailsAndActionsStatusEnum,
21
+ AccountDetailsCategory,
22
+ AccountIntegration,
23
+ AccountRequest,
24
+ AccountRequestAccountType,
25
+ AccountRequestClassification,
26
+ AccountRequestCurrency,
27
+ AccountRequestStatus,
28
+ AccountResponse,
29
+ AccountStatus,
30
+ AccountStatusEnum,
31
+ AccountToken,
32
+ AccountingAttachment,
33
+ AccountingAttachmentRequest,
34
+ AccountingAttachmentResponse,
35
+ AccountingPeriod,
36
+ AccountingPeriodStatus,
37
+ AccountingPhoneNumber,
38
+ AccountingPhoneNumberRequest,
39
+ Address,
40
+ AddressCountry,
41
+ AddressRequest,
42
+ AddressRequestCountry,
43
+ AddressRequestType,
44
+ AddressType,
45
+ AddressTypeEnum,
46
+ AdvancedMetadata,
47
+ AsyncPassthroughReciept,
48
+ AsyncPostTask,
49
+ AsyncPostTaskResult,
50
+ AsyncPostTaskStatus,
51
+ AsyncPostTaskStatusEnum,
52
+ AuditLogEvent,
53
+ AuditLogEventEventType,
54
+ AuditLogEventRole,
55
+ AvailableActions,
56
+ BalanceSheet,
57
+ BalanceSheetCompany,
58
+ BalanceSheetCurrency,
59
+ BankFeedAccount,
60
+ BankFeedAccountAccountType,
61
+ BankFeedAccountAccountTypeEnum,
62
+ BankFeedAccountCurrency,
63
+ BankFeedAccountFeedStatus,
64
+ BankFeedAccountRequest,
65
+ BankFeedAccountRequestAccountType,
66
+ BankFeedAccountRequestCurrency,
67
+ BankFeedAccountRequestFeedStatus,
68
+ BankFeedAccountResponse,
69
+ BankFeedTransaction,
70
+ BankFeedTransactionBankFeedAccount,
71
+ BankFeedTransactionCreditOrDebit,
72
+ BankFeedTransactionRequestRequest,
73
+ BankFeedTransactionRequestRequestBankFeedAccount,
74
+ BankFeedTransactionRequestRequestCreditOrDebit,
75
+ BankFeedTransactionResponse,
76
+ CashFlowStatement,
77
+ CashFlowStatementCompany,
78
+ CashFlowStatementCurrency,
79
+ CategoriesEnum,
80
+ CategoryEnum,
81
+ CategoryTypeEnum,
82
+ ClassificationEnum,
83
+ CommonModelScopeApi,
84
+ CommonModelScopesBodyRequest,
85
+ CompanyInfo,
86
+ CompanyInfoCurrency,
87
+ ComponentTypeEnum,
88
+ Contact,
89
+ ContactAddressesItem,
90
+ ContactRequest,
91
+ ContactRequestAddressesItem,
92
+ ContactRequestStatus,
93
+ ContactResponse,
94
+ ContactStatus,
95
+ CountryEnum,
96
+ CreditNote,
97
+ CreditNoteAccountingPeriod,
98
+ CreditNoteAppliedPaymentsItem,
99
+ CreditNoteApplyLineForCreditNote,
100
+ CreditNoteApplyLineForCreditNoteInvoice,
101
+ CreditNoteApplyLineForCreditNoteRequest,
102
+ CreditNoteApplyLineForCreditNoteRequestInvoice,
103
+ CreditNoteApplyLineForInvoice,
104
+ CreditNoteApplyLineForInvoiceCreditNote,
105
+ CreditNoteCompany,
106
+ CreditNoteContact,
107
+ CreditNoteCurrency,
108
+ CreditNoteLineItem,
109
+ CreditNoteLineItemCompany,
110
+ CreditNoteLineItemContact,
111
+ CreditNoteLineItemItem,
112
+ CreditNoteLineItemProject,
113
+ CreditNoteLineItemRequest,
114
+ CreditNoteLineItemRequestCompany,
115
+ CreditNoteLineItemRequestContact,
116
+ CreditNoteLineItemRequestItem,
117
+ CreditNoteLineItemRequestProject,
118
+ CreditNotePaymentsItem,
119
+ CreditNoteRequest,
120
+ CreditNoteRequestAccountingPeriod,
121
+ CreditNoteRequestAppliedPaymentsItem,
122
+ CreditNoteRequestCompany,
123
+ CreditNoteRequestContact,
124
+ CreditNoteRequestCurrency,
125
+ CreditNoteRequestLineItemsItem,
126
+ CreditNoteRequestPaymentsItem,
127
+ CreditNoteRequestStatus,
128
+ CreditNoteRequestTrackingCategoriesItem,
129
+ CreditNoteResponse,
130
+ CreditNoteStatus,
131
+ CreditNoteStatusEnum,
132
+ CreditNoteTrackingCategoriesItem,
133
+ CreditOrDebitEnum,
134
+ DataPassthroughRequest,
135
+ DataPassthroughRequestMethod,
136
+ DebugModeLog,
137
+ DebugModelLogSummary,
138
+ Employee,
139
+ EmployeeCompany,
140
+ EmployeeStatus,
141
+ EnabledActionsEnum,
142
+ EncodingEnum,
143
+ ErrorValidationProblem,
144
+ EventTypeEnum,
145
+ Expense,
146
+ ExpenseAccount,
147
+ ExpenseAccountingPeriod,
148
+ ExpenseCompany,
149
+ ExpenseContact,
150
+ ExpenseCurrency,
151
+ ExpenseEmployee,
152
+ ExpenseLine,
153
+ ExpenseLineAccount,
154
+ ExpenseLineContact,
155
+ ExpenseLineCurrency,
156
+ ExpenseLineEmployee,
157
+ ExpenseLineItem,
158
+ ExpenseLineProject,
159
+ ExpenseLineRequest,
160
+ ExpenseLineRequestAccount,
161
+ ExpenseLineRequestContact,
162
+ ExpenseLineRequestCurrency,
163
+ ExpenseLineRequestEmployee,
164
+ ExpenseLineRequestItem,
165
+ ExpenseLineRequestProject,
166
+ ExpenseLineRequestTrackingCategoriesItem,
167
+ ExpenseLineRequestTrackingCategory,
168
+ ExpenseLineTrackingCategoriesItem,
169
+ ExpenseLineTrackingCategory,
170
+ ExpenseReport,
171
+ ExpenseReportCompany,
172
+ ExpenseReportLine,
173
+ ExpenseReportLineAccount,
174
+ ExpenseReportLineCompany,
175
+ ExpenseReportLineContact,
176
+ ExpenseReportLineEmployee,
177
+ ExpenseReportLineProject,
178
+ ExpenseReportLineRequest,
179
+ ExpenseReportLineRequestAccount,
180
+ ExpenseReportLineRequestCompany,
181
+ ExpenseReportLineRequestContact,
182
+ ExpenseReportLineRequestEmployee,
183
+ ExpenseReportLineRequestProject,
184
+ ExpenseReportLineRequestTaxRate,
185
+ ExpenseReportLineTaxRate,
186
+ ExpenseReportRequest,
187
+ ExpenseReportRequestAccountingPeriod,
188
+ ExpenseReportRequestCompany,
189
+ ExpenseReportRequestEmployee,
190
+ ExpenseReportResponse,
191
+ ExpenseReportStatus,
192
+ ExpenseReportStatusEnum,
193
+ ExpenseRequest,
194
+ ExpenseRequestAccount,
195
+ ExpenseRequestAccountingPeriod,
196
+ ExpenseRequestCompany,
197
+ ExpenseRequestContact,
198
+ ExpenseRequestCurrency,
199
+ ExpenseRequestEmployee,
200
+ ExpenseRequestTrackingCategoriesItem,
201
+ ExpenseResponse,
202
+ ExpenseTrackingCategoriesItem,
203
+ ExternalTargetFieldApi,
204
+ ExternalTargetFieldApiResponse,
205
+ FeedStatusEnum,
206
+ FieldFormatEnum,
207
+ FieldMappingApiInstance,
208
+ FieldMappingApiInstanceRemoteField,
209
+ FieldMappingApiInstanceRemoteFieldRemoteEndpointInfo,
210
+ FieldMappingApiInstanceResponse,
211
+ FieldMappingApiInstanceTargetField,
212
+ FieldMappingInstanceResponse,
213
+ FieldPermissionDeserializer,
214
+ FieldPermissionDeserializerRequest,
215
+ FieldTypeEnum,
216
+ GeneralLedgerTransaction,
217
+ GeneralLedgerTransactionAccountingPeriod,
218
+ GeneralLedgerTransactionCompany,
219
+ GeneralLedgerTransactionGeneralLedgerTransactionLinesItem,
220
+ GeneralLedgerTransactionLine,
221
+ GeneralLedgerTransactionLineAccount,
222
+ GeneralLedgerTransactionLineBaseCurrency,
223
+ GeneralLedgerTransactionLineCompany,
224
+ GeneralLedgerTransactionLineContact,
225
+ GeneralLedgerTransactionLineEmployee,
226
+ GeneralLedgerTransactionLineItem,
227
+ GeneralLedgerTransactionLineProject,
228
+ GeneralLedgerTransactionLineTrackingCategoriesItem,
229
+ GeneralLedgerTransactionLineTransactionCurrency,
230
+ GeneralLedgerTransactionTrackingCategoriesItem,
231
+ GeneralLedgerTransactionUnderlyingTransactionType,
232
+ IncomeStatement,
233
+ IncomeStatementCompany,
234
+ IncomeStatementCurrency,
235
+ IndividualCommonModelScopeDeserializer,
236
+ IndividualCommonModelScopeDeserializerRequest,
237
+ Invoice,
238
+ InvoiceAccountingPeriod,
239
+ InvoiceAppliedCreditNotesItem,
240
+ InvoiceAppliedPaymentsItem,
241
+ InvoiceAppliedVendorCreditsItem,
242
+ InvoiceCompany,
243
+ InvoiceContact,
244
+ InvoiceCurrency,
245
+ InvoiceEmployee,
246
+ InvoiceLineItem,
247
+ InvoiceLineItemAccount,
248
+ InvoiceLineItemContact,
249
+ InvoiceLineItemCurrency,
250
+ InvoiceLineItemEmployee,
251
+ InvoiceLineItemItem,
252
+ InvoiceLineItemProject,
253
+ InvoiceLineItemRequest,
254
+ InvoiceLineItemRequestAccount,
255
+ InvoiceLineItemRequestContact,
256
+ InvoiceLineItemRequestCurrency,
257
+ InvoiceLineItemRequestEmployee,
258
+ InvoiceLineItemRequestItem,
259
+ InvoiceLineItemRequestProject,
260
+ InvoiceLineItemRequestTrackingCategoriesItem,
261
+ InvoiceLineItemRequestTrackingCategory,
262
+ InvoiceLineItemTrackingCategoriesItem,
263
+ InvoiceLineItemTrackingCategory,
264
+ InvoicePaymentTerm,
265
+ InvoicePaymentsItem,
266
+ InvoicePurchaseOrdersItem,
267
+ InvoiceRequest,
268
+ InvoiceRequestCompany,
269
+ InvoiceRequestContact,
270
+ InvoiceRequestCurrency,
271
+ InvoiceRequestEmployee,
272
+ InvoiceRequestPaymentTerm,
273
+ InvoiceRequestPaymentsItem,
274
+ InvoiceRequestPurchaseOrdersItem,
275
+ InvoiceRequestStatus,
276
+ InvoiceRequestTrackingCategoriesItem,
277
+ InvoiceRequestType,
278
+ InvoiceResponse,
279
+ InvoiceStatus,
280
+ InvoiceStatusEnum,
281
+ InvoiceTrackingCategoriesItem,
282
+ InvoiceType,
283
+ InvoiceTypeEnum,
284
+ Issue,
285
+ IssueStatus,
286
+ IssueStatusEnum,
287
+ Item,
288
+ ItemCompany,
289
+ ItemFormatEnum,
290
+ ItemPurchaseAccount,
291
+ ItemPurchaseTaxRate,
292
+ ItemRequestRequest,
293
+ ItemRequestRequestCompany,
294
+ ItemRequestRequestPurchaseAccount,
295
+ ItemRequestRequestPurchaseTaxRate,
296
+ ItemRequestRequestSalesAccount,
297
+ ItemRequestRequestSalesTaxRate,
298
+ ItemRequestRequestStatus,
299
+ ItemRequestRequestType,
300
+ ItemResponse,
301
+ ItemSalesAccount,
302
+ ItemSalesTaxRate,
303
+ ItemSchema,
304
+ ItemStatus,
305
+ ItemType,
306
+ ItemTypeEnum,
307
+ JournalEntry,
308
+ JournalEntryAccountingPeriod,
309
+ JournalEntryAppliedPaymentsItem,
310
+ JournalEntryCompany,
311
+ JournalEntryCurrency,
312
+ JournalEntryPaymentsItem,
313
+ JournalEntryPostingStatus,
314
+ JournalEntryRequest,
315
+ JournalEntryRequestCompany,
316
+ JournalEntryRequestCurrency,
317
+ JournalEntryRequestPaymentsItem,
318
+ JournalEntryRequestPostingStatus,
319
+ JournalEntryRequestTrackingCategoriesItem,
320
+ JournalEntryResponse,
321
+ JournalEntryTrackingCategoriesItem,
322
+ JournalLine,
323
+ JournalLineAccount,
324
+ JournalLineCurrency,
325
+ JournalLineProject,
326
+ JournalLineRequest,
327
+ JournalLineRequestAccount,
328
+ JournalLineRequestCurrency,
329
+ JournalLineRequestProject,
330
+ JournalLineRequestTrackingCategoriesItem,
331
+ JournalLineRequestTrackingCategory,
332
+ JournalLineTrackingCategoriesItem,
333
+ JournalLineTrackingCategory,
334
+ LanguageEnum,
335
+ LastSyncResultEnum,
336
+ LinkToken,
337
+ LinkedAccountStatus,
338
+ MetaResponse,
339
+ MethodEnum,
340
+ MethodTypeEnum,
341
+ ModelOperation,
342
+ ModelPermissionDeserializer,
343
+ ModelPermissionDeserializerRequest,
344
+ MultipartFormFieldRequest,
345
+ MultipartFormFieldRequestEncoding,
346
+ PaginatedAccountDetailsAndActionsList,
347
+ PaginatedAccountList,
348
+ PaginatedAccountingAttachmentList,
349
+ PaginatedAccountingPeriodList,
350
+ PaginatedAuditLogEventList,
351
+ PaginatedBalanceSheetList,
352
+ PaginatedBankFeedAccountList,
353
+ PaginatedBankFeedTransactionList,
354
+ PaginatedCashFlowStatementList,
355
+ PaginatedCompanyInfoList,
356
+ PaginatedContactList,
357
+ PaginatedCreditNoteList,
358
+ PaginatedEmployeeList,
359
+ PaginatedExpenseList,
360
+ PaginatedExpenseReportLineList,
361
+ PaginatedExpenseReportList,
362
+ PaginatedGeneralLedgerTransactionList,
363
+ PaginatedIncomeStatementList,
364
+ PaginatedInvoiceList,
365
+ PaginatedIssueList,
366
+ PaginatedItemList,
367
+ PaginatedJournalEntryList,
368
+ PaginatedPaymentList,
369
+ PaginatedPaymentMethodList,
370
+ PaginatedPaymentTermList,
371
+ PaginatedProjectList,
372
+ PaginatedPurchaseOrderList,
373
+ PaginatedRemoteFieldClassList,
374
+ PaginatedSyncStatusList,
375
+ PaginatedTaxRateList,
376
+ PaginatedTrackingCategoryList,
377
+ PaginatedTransactionList,
378
+ PaginatedVendorCreditList,
379
+ PatchedContactRequest,
380
+ PatchedContactRequestAddressesItem,
381
+ PatchedItemRequestRequest,
382
+ PatchedItemRequestRequestStatus,
383
+ PatchedItemRequestRequestType,
384
+ PatchedPaymentRequest,
385
+ PatchedPaymentRequestAccount,
386
+ PatchedPaymentRequestAccountingPeriod,
387
+ PatchedPaymentRequestAppliedToLinesItem,
388
+ PatchedPaymentRequestCompany,
389
+ PatchedPaymentRequestContact,
390
+ PatchedPaymentRequestCurrency,
391
+ PatchedPaymentRequestPaymentMethod,
392
+ PatchedPaymentRequestTrackingCategoriesItem,
393
+ PatchedPaymentRequestType,
394
+ Payment,
395
+ PaymentAccount,
396
+ PaymentAccountingPeriod,
397
+ PaymentAppliedToLinesItem,
398
+ PaymentCompany,
399
+ PaymentContact,
400
+ PaymentCurrency,
401
+ PaymentLineItem,
402
+ PaymentLineItemRequest,
403
+ PaymentMethod,
404
+ PaymentMethodMethodType,
405
+ PaymentPaymentMethod,
406
+ PaymentRequest,
407
+ PaymentRequestAccount,
408
+ PaymentRequestAccountingPeriod,
409
+ PaymentRequestAppliedToLinesItem,
410
+ PaymentRequestCompany,
411
+ PaymentRequestContact,
412
+ PaymentRequestCurrency,
413
+ PaymentRequestPaymentMethod,
414
+ PaymentRequestTrackingCategoriesItem,
415
+ PaymentRequestType,
416
+ PaymentResponse,
417
+ PaymentTerm,
418
+ PaymentTermCompany,
419
+ PaymentTrackingCategoriesItem,
420
+ PaymentType,
421
+ PaymentTypeEnum,
422
+ PostingStatusEnum,
423
+ Project,
424
+ ProjectCompany,
425
+ ProjectContact,
426
+ PurchaseOrder,
427
+ PurchaseOrderAccountingPeriod,
428
+ PurchaseOrderCompany,
429
+ PurchaseOrderCurrency,
430
+ PurchaseOrderDeliveryAddress,
431
+ PurchaseOrderLineItem,
432
+ PurchaseOrderLineItemCurrency,
433
+ PurchaseOrderLineItemItem,
434
+ PurchaseOrderLineItemRequest,
435
+ PurchaseOrderLineItemRequestCurrency,
436
+ PurchaseOrderLineItemRequestItem,
437
+ PurchaseOrderPaymentTerm,
438
+ PurchaseOrderRequest,
439
+ PurchaseOrderRequestCompany,
440
+ PurchaseOrderRequestCurrency,
441
+ PurchaseOrderRequestDeliveryAddress,
442
+ PurchaseOrderRequestPaymentTerm,
443
+ PurchaseOrderRequestStatus,
444
+ PurchaseOrderRequestTrackingCategoriesItem,
445
+ PurchaseOrderRequestVendor,
446
+ PurchaseOrderResponse,
447
+ PurchaseOrderStatus,
448
+ PurchaseOrderStatusEnum,
449
+ PurchaseOrderTrackingCategoriesItem,
450
+ PurchaseOrderVendor,
451
+ RemoteData,
452
+ RemoteEndpointInfo,
453
+ RemoteField,
454
+ RemoteFieldApi,
455
+ RemoteFieldApiCoverage,
456
+ RemoteFieldApiResponse,
457
+ RemoteFieldClass,
458
+ RemoteFieldRemoteFieldClass,
459
+ RemoteFieldRequest,
460
+ RemoteFieldRequestRemoteFieldClass,
461
+ RemoteKey,
462
+ RemoteResponse,
463
+ ReportItem,
464
+ RequestFormatEnum,
465
+ ResponseTypeEnum,
466
+ RoleEnum,
467
+ SelectiveSyncConfigurationsUsageEnum,
468
+ Status7D1Enum,
469
+ Status895Enum,
470
+ StatusFd5Enum,
471
+ SyncStatus,
472
+ SyncStatusStatus,
473
+ TaxComponent,
474
+ TaxComponentComponentType,
475
+ TaxRate,
476
+ TaxRateCompany,
477
+ TaxRateStatus,
478
+ TaxRateTaxComponentsItem,
479
+ TrackingCategory,
480
+ TrackingCategoryCategoryType,
481
+ TrackingCategoryCompany,
482
+ TrackingCategoryStatus,
483
+ Transaction,
484
+ TransactionAccount,
485
+ TransactionAccountingPeriod,
486
+ TransactionContact,
487
+ TransactionCurrency,
488
+ TransactionCurrencyEnum,
489
+ TransactionLineItem,
490
+ TransactionLineItemCurrency,
491
+ TransactionLineItemItem,
492
+ TransactionTrackingCategoriesItem,
493
+ Type2BbEnum,
494
+ UnderlyingTransactionTypeEnum,
495
+ ValidationProblemSource,
496
+ VendorCredit,
497
+ VendorCreditAccountingPeriod,
498
+ VendorCreditApplyLineForInvoice,
499
+ VendorCreditApplyLineForInvoiceVendorCredit,
500
+ VendorCreditApplyLineForVendorCredit,
501
+ VendorCreditApplyLineForVendorCreditInvoice,
502
+ VendorCreditApplyLineForVendorCreditRequest,
503
+ VendorCreditApplyLineForVendorCreditRequestInvoice,
504
+ VendorCreditCompany,
505
+ VendorCreditCurrency,
506
+ VendorCreditLine,
507
+ VendorCreditLineAccount,
508
+ VendorCreditLineContact,
509
+ VendorCreditLineProject,
510
+ VendorCreditLineRequest,
511
+ VendorCreditLineRequestAccount,
512
+ VendorCreditLineRequestContact,
513
+ VendorCreditLineRequestProject,
514
+ VendorCreditRequest,
515
+ VendorCreditRequestAccountingPeriod,
516
+ VendorCreditRequestCompany,
517
+ VendorCreditRequestCurrency,
518
+ VendorCreditRequestTrackingCategoriesItem,
519
+ VendorCreditRequestVendor,
520
+ VendorCreditResponse,
521
+ VendorCreditTrackingCategoriesItem,
522
+ VendorCreditVendor,
523
+ WarningValidationProblem,
524
+ WebhookReceiver,
525
+ )
526
+ from .resources import (
527
+ AccountsListRequestRemoteFields,
528
+ AccountsListRequestShowEnumOrigins,
529
+ AccountsRetrieveRequestRemoteFields,
530
+ AccountsRetrieveRequestShowEnumOrigins,
531
+ AsyncPassthroughRetrieveResponse,
532
+ CompanyInfoListRequestExpand,
533
+ CompanyInfoRetrieveRequestExpand,
534
+ ContactsListRequestExpand,
535
+ ContactsRetrieveRequestExpand,
536
+ CreditNotesListRequestExpand,
537
+ CreditNotesListRequestRemoteFields,
538
+ CreditNotesListRequestShowEnumOrigins,
539
+ CreditNotesRetrieveRequestExpand,
540
+ CreditNotesRetrieveRequestRemoteFields,
541
+ CreditNotesRetrieveRequestShowEnumOrigins,
542
+ EndUserDetailsRequestLanguage,
543
+ ExpenseReportsLinesListRequestExpand,
544
+ ExpenseReportsListRequestExpand,
545
+ ExpenseReportsRetrieveRequestExpand,
546
+ ExpensesListRequestExpand,
547
+ ExpensesRetrieveRequestExpand,
548
+ GeneralLedgerTransactionsListRequestExpand,
549
+ GeneralLedgerTransactionsRetrieveRequestExpand,
550
+ InvoicesListRequestExpand,
551
+ InvoicesListRequestStatus,
552
+ InvoicesListRequestType,
553
+ InvoicesRetrieveRequestExpand,
554
+ IssuesListRequestStatus,
555
+ ItemsListRequestExpand,
556
+ ItemsRetrieveRequestExpand,
557
+ JournalEntriesListRequestExpand,
558
+ JournalEntriesRetrieveRequestExpand,
559
+ LinkedAccountsListRequestCategory,
560
+ PaymentsListRequestExpand,
561
+ PaymentsRetrieveRequestExpand,
562
+ ProjectsListRequestExpand,
563
+ ProjectsRetrieveRequestExpand,
564
+ PurchaseOrdersListRequestExpand,
565
+ PurchaseOrdersRetrieveRequestExpand,
566
+ TransactionsListRequestExpand,
567
+ TransactionsRetrieveRequestExpand,
568
+ VendorCreditsListRequestExpand,
569
+ VendorCreditsRetrieveRequestExpand,
570
+ account_details,
571
+ account_token,
572
+ accounting_periods,
573
+ accounts,
574
+ addresses,
575
+ async_passthrough,
576
+ async_tasks,
577
+ attachments,
578
+ audit_trail,
579
+ available_actions,
580
+ balance_sheets,
581
+ bank_feed_accounts,
582
+ bank_feed_transactions,
583
+ cash_flow_statements,
584
+ company_info,
585
+ contacts,
586
+ credit_notes,
587
+ delete_account,
588
+ employees,
589
+ expense_reports,
590
+ expenses,
591
+ field_mapping,
592
+ force_resync,
593
+ general_ledger_transactions,
594
+ generate_key,
595
+ income_statements,
596
+ invoices,
597
+ issues,
598
+ items,
599
+ journal_entries,
600
+ link_token,
601
+ linked_accounts,
602
+ passthrough,
603
+ payment_methods,
604
+ payment_terms,
605
+ payments,
606
+ phone_numbers,
607
+ projects,
608
+ purchase_orders,
609
+ regenerate_key,
610
+ scopes,
611
+ sync_status,
612
+ tax_rates,
613
+ tracking_categories,
614
+ transactions,
615
+ vendor_credits,
616
+ webhook_receivers,
617
+ )
618
+ _dynamic_imports: typing.Dict[str, str] = {
619
+ "Account": ".types",
620
+ "AccountAccountType": ".types",
621
+ "AccountAccountTypeEnum": ".types",
622
+ "AccountClassification": ".types",
623
+ "AccountCurrency": ".types",
624
+ "AccountDetails": ".types",
625
+ "AccountDetailsAndActions": ".types",
626
+ "AccountDetailsAndActionsCategory": ".types",
627
+ "AccountDetailsAndActionsIntegration": ".types",
628
+ "AccountDetailsAndActionsStatus": ".types",
629
+ "AccountDetailsAndActionsStatusEnum": ".types",
630
+ "AccountDetailsCategory": ".types",
631
+ "AccountIntegration": ".types",
632
+ "AccountRequest": ".types",
633
+ "AccountRequestAccountType": ".types",
634
+ "AccountRequestClassification": ".types",
635
+ "AccountRequestCurrency": ".types",
636
+ "AccountRequestStatus": ".types",
637
+ "AccountResponse": ".types",
638
+ "AccountStatus": ".types",
639
+ "AccountStatusEnum": ".types",
640
+ "AccountToken": ".types",
641
+ "AccountingAttachment": ".types",
642
+ "AccountingAttachmentRequest": ".types",
643
+ "AccountingAttachmentResponse": ".types",
644
+ "AccountingPeriod": ".types",
645
+ "AccountingPeriodStatus": ".types",
646
+ "AccountingPhoneNumber": ".types",
647
+ "AccountingPhoneNumberRequest": ".types",
648
+ "AccountsListRequestRemoteFields": ".resources",
649
+ "AccountsListRequestShowEnumOrigins": ".resources",
650
+ "AccountsRetrieveRequestRemoteFields": ".resources",
651
+ "AccountsRetrieveRequestShowEnumOrigins": ".resources",
652
+ "Address": ".types",
653
+ "AddressCountry": ".types",
654
+ "AddressRequest": ".types",
655
+ "AddressRequestCountry": ".types",
656
+ "AddressRequestType": ".types",
657
+ "AddressType": ".types",
658
+ "AddressTypeEnum": ".types",
659
+ "AdvancedMetadata": ".types",
660
+ "AsyncPassthroughReciept": ".types",
661
+ "AsyncPassthroughRetrieveResponse": ".resources",
662
+ "AsyncPostTask": ".types",
663
+ "AsyncPostTaskResult": ".types",
664
+ "AsyncPostTaskStatus": ".types",
665
+ "AsyncPostTaskStatusEnum": ".types",
666
+ "AuditLogEvent": ".types",
667
+ "AuditLogEventEventType": ".types",
668
+ "AuditLogEventRole": ".types",
669
+ "AvailableActions": ".types",
670
+ "BalanceSheet": ".types",
671
+ "BalanceSheetCompany": ".types",
672
+ "BalanceSheetCurrency": ".types",
673
+ "BankFeedAccount": ".types",
674
+ "BankFeedAccountAccountType": ".types",
675
+ "BankFeedAccountAccountTypeEnum": ".types",
676
+ "BankFeedAccountCurrency": ".types",
677
+ "BankFeedAccountFeedStatus": ".types",
678
+ "BankFeedAccountRequest": ".types",
679
+ "BankFeedAccountRequestAccountType": ".types",
680
+ "BankFeedAccountRequestCurrency": ".types",
681
+ "BankFeedAccountRequestFeedStatus": ".types",
682
+ "BankFeedAccountResponse": ".types",
683
+ "BankFeedTransaction": ".types",
684
+ "BankFeedTransactionBankFeedAccount": ".types",
685
+ "BankFeedTransactionCreditOrDebit": ".types",
686
+ "BankFeedTransactionRequestRequest": ".types",
687
+ "BankFeedTransactionRequestRequestBankFeedAccount": ".types",
688
+ "BankFeedTransactionRequestRequestCreditOrDebit": ".types",
689
+ "BankFeedTransactionResponse": ".types",
690
+ "CashFlowStatement": ".types",
691
+ "CashFlowStatementCompany": ".types",
692
+ "CashFlowStatementCurrency": ".types",
693
+ "CategoriesEnum": ".types",
694
+ "CategoryEnum": ".types",
695
+ "CategoryTypeEnum": ".types",
696
+ "ClassificationEnum": ".types",
697
+ "CommonModelScopeApi": ".types",
698
+ "CommonModelScopesBodyRequest": ".types",
699
+ "CompanyInfo": ".types",
700
+ "CompanyInfoCurrency": ".types",
701
+ "CompanyInfoListRequestExpand": ".resources",
702
+ "CompanyInfoRetrieveRequestExpand": ".resources",
703
+ "ComponentTypeEnum": ".types",
704
+ "Contact": ".types",
705
+ "ContactAddressesItem": ".types",
706
+ "ContactRequest": ".types",
707
+ "ContactRequestAddressesItem": ".types",
708
+ "ContactRequestStatus": ".types",
709
+ "ContactResponse": ".types",
710
+ "ContactStatus": ".types",
711
+ "ContactsListRequestExpand": ".resources",
712
+ "ContactsRetrieveRequestExpand": ".resources",
713
+ "CountryEnum": ".types",
714
+ "CreditNote": ".types",
715
+ "CreditNoteAccountingPeriod": ".types",
716
+ "CreditNoteAppliedPaymentsItem": ".types",
717
+ "CreditNoteApplyLineForCreditNote": ".types",
718
+ "CreditNoteApplyLineForCreditNoteInvoice": ".types",
719
+ "CreditNoteApplyLineForCreditNoteRequest": ".types",
720
+ "CreditNoteApplyLineForCreditNoteRequestInvoice": ".types",
721
+ "CreditNoteApplyLineForInvoice": ".types",
722
+ "CreditNoteApplyLineForInvoiceCreditNote": ".types",
723
+ "CreditNoteCompany": ".types",
724
+ "CreditNoteContact": ".types",
725
+ "CreditNoteCurrency": ".types",
726
+ "CreditNoteLineItem": ".types",
727
+ "CreditNoteLineItemCompany": ".types",
728
+ "CreditNoteLineItemContact": ".types",
729
+ "CreditNoteLineItemItem": ".types",
730
+ "CreditNoteLineItemProject": ".types",
731
+ "CreditNoteLineItemRequest": ".types",
732
+ "CreditNoteLineItemRequestCompany": ".types",
733
+ "CreditNoteLineItemRequestContact": ".types",
734
+ "CreditNoteLineItemRequestItem": ".types",
735
+ "CreditNoteLineItemRequestProject": ".types",
736
+ "CreditNotePaymentsItem": ".types",
737
+ "CreditNoteRequest": ".types",
738
+ "CreditNoteRequestAccountingPeriod": ".types",
739
+ "CreditNoteRequestAppliedPaymentsItem": ".types",
740
+ "CreditNoteRequestCompany": ".types",
741
+ "CreditNoteRequestContact": ".types",
742
+ "CreditNoteRequestCurrency": ".types",
743
+ "CreditNoteRequestLineItemsItem": ".types",
744
+ "CreditNoteRequestPaymentsItem": ".types",
745
+ "CreditNoteRequestStatus": ".types",
746
+ "CreditNoteRequestTrackingCategoriesItem": ".types",
747
+ "CreditNoteResponse": ".types",
748
+ "CreditNoteStatus": ".types",
749
+ "CreditNoteStatusEnum": ".types",
750
+ "CreditNoteTrackingCategoriesItem": ".types",
751
+ "CreditNotesListRequestExpand": ".resources",
752
+ "CreditNotesListRequestRemoteFields": ".resources",
753
+ "CreditNotesListRequestShowEnumOrigins": ".resources",
754
+ "CreditNotesRetrieveRequestExpand": ".resources",
755
+ "CreditNotesRetrieveRequestRemoteFields": ".resources",
756
+ "CreditNotesRetrieveRequestShowEnumOrigins": ".resources",
757
+ "CreditOrDebitEnum": ".types",
758
+ "DataPassthroughRequest": ".types",
759
+ "DataPassthroughRequestMethod": ".types",
760
+ "DebugModeLog": ".types",
761
+ "DebugModelLogSummary": ".types",
762
+ "Employee": ".types",
763
+ "EmployeeCompany": ".types",
764
+ "EmployeeStatus": ".types",
765
+ "EnabledActionsEnum": ".types",
766
+ "EncodingEnum": ".types",
767
+ "EndUserDetailsRequestLanguage": ".resources",
768
+ "ErrorValidationProblem": ".types",
769
+ "EventTypeEnum": ".types",
770
+ "Expense": ".types",
771
+ "ExpenseAccount": ".types",
772
+ "ExpenseAccountingPeriod": ".types",
773
+ "ExpenseCompany": ".types",
774
+ "ExpenseContact": ".types",
775
+ "ExpenseCurrency": ".types",
776
+ "ExpenseEmployee": ".types",
777
+ "ExpenseLine": ".types",
778
+ "ExpenseLineAccount": ".types",
779
+ "ExpenseLineContact": ".types",
780
+ "ExpenseLineCurrency": ".types",
781
+ "ExpenseLineEmployee": ".types",
782
+ "ExpenseLineItem": ".types",
783
+ "ExpenseLineProject": ".types",
784
+ "ExpenseLineRequest": ".types",
785
+ "ExpenseLineRequestAccount": ".types",
786
+ "ExpenseLineRequestContact": ".types",
787
+ "ExpenseLineRequestCurrency": ".types",
788
+ "ExpenseLineRequestEmployee": ".types",
789
+ "ExpenseLineRequestItem": ".types",
790
+ "ExpenseLineRequestProject": ".types",
791
+ "ExpenseLineRequestTrackingCategoriesItem": ".types",
792
+ "ExpenseLineRequestTrackingCategory": ".types",
793
+ "ExpenseLineTrackingCategoriesItem": ".types",
794
+ "ExpenseLineTrackingCategory": ".types",
795
+ "ExpenseReport": ".types",
796
+ "ExpenseReportCompany": ".types",
797
+ "ExpenseReportLine": ".types",
798
+ "ExpenseReportLineAccount": ".types",
799
+ "ExpenseReportLineCompany": ".types",
800
+ "ExpenseReportLineContact": ".types",
801
+ "ExpenseReportLineEmployee": ".types",
802
+ "ExpenseReportLineProject": ".types",
803
+ "ExpenseReportLineRequest": ".types",
804
+ "ExpenseReportLineRequestAccount": ".types",
805
+ "ExpenseReportLineRequestCompany": ".types",
806
+ "ExpenseReportLineRequestContact": ".types",
807
+ "ExpenseReportLineRequestEmployee": ".types",
808
+ "ExpenseReportLineRequestProject": ".types",
809
+ "ExpenseReportLineRequestTaxRate": ".types",
810
+ "ExpenseReportLineTaxRate": ".types",
811
+ "ExpenseReportRequest": ".types",
812
+ "ExpenseReportRequestAccountingPeriod": ".types",
813
+ "ExpenseReportRequestCompany": ".types",
814
+ "ExpenseReportRequestEmployee": ".types",
815
+ "ExpenseReportResponse": ".types",
816
+ "ExpenseReportStatus": ".types",
817
+ "ExpenseReportStatusEnum": ".types",
818
+ "ExpenseReportsLinesListRequestExpand": ".resources",
819
+ "ExpenseReportsListRequestExpand": ".resources",
820
+ "ExpenseReportsRetrieveRequestExpand": ".resources",
821
+ "ExpenseRequest": ".types",
822
+ "ExpenseRequestAccount": ".types",
823
+ "ExpenseRequestAccountingPeriod": ".types",
824
+ "ExpenseRequestCompany": ".types",
825
+ "ExpenseRequestContact": ".types",
826
+ "ExpenseRequestCurrency": ".types",
827
+ "ExpenseRequestEmployee": ".types",
828
+ "ExpenseRequestTrackingCategoriesItem": ".types",
829
+ "ExpenseResponse": ".types",
830
+ "ExpenseTrackingCategoriesItem": ".types",
831
+ "ExpensesListRequestExpand": ".resources",
832
+ "ExpensesRetrieveRequestExpand": ".resources",
833
+ "ExternalTargetFieldApi": ".types",
834
+ "ExternalTargetFieldApiResponse": ".types",
835
+ "FeedStatusEnum": ".types",
836
+ "FieldFormatEnum": ".types",
837
+ "FieldMappingApiInstance": ".types",
838
+ "FieldMappingApiInstanceRemoteField": ".types",
839
+ "FieldMappingApiInstanceRemoteFieldRemoteEndpointInfo": ".types",
840
+ "FieldMappingApiInstanceResponse": ".types",
841
+ "FieldMappingApiInstanceTargetField": ".types",
842
+ "FieldMappingInstanceResponse": ".types",
843
+ "FieldPermissionDeserializer": ".types",
844
+ "FieldPermissionDeserializerRequest": ".types",
845
+ "FieldTypeEnum": ".types",
846
+ "GeneralLedgerTransaction": ".types",
847
+ "GeneralLedgerTransactionAccountingPeriod": ".types",
848
+ "GeneralLedgerTransactionCompany": ".types",
849
+ "GeneralLedgerTransactionGeneralLedgerTransactionLinesItem": ".types",
850
+ "GeneralLedgerTransactionLine": ".types",
851
+ "GeneralLedgerTransactionLineAccount": ".types",
852
+ "GeneralLedgerTransactionLineBaseCurrency": ".types",
853
+ "GeneralLedgerTransactionLineCompany": ".types",
854
+ "GeneralLedgerTransactionLineContact": ".types",
855
+ "GeneralLedgerTransactionLineEmployee": ".types",
856
+ "GeneralLedgerTransactionLineItem": ".types",
857
+ "GeneralLedgerTransactionLineProject": ".types",
858
+ "GeneralLedgerTransactionLineTrackingCategoriesItem": ".types",
859
+ "GeneralLedgerTransactionLineTransactionCurrency": ".types",
860
+ "GeneralLedgerTransactionTrackingCategoriesItem": ".types",
861
+ "GeneralLedgerTransactionUnderlyingTransactionType": ".types",
862
+ "GeneralLedgerTransactionsListRequestExpand": ".resources",
863
+ "GeneralLedgerTransactionsRetrieveRequestExpand": ".resources",
864
+ "IncomeStatement": ".types",
865
+ "IncomeStatementCompany": ".types",
866
+ "IncomeStatementCurrency": ".types",
867
+ "IndividualCommonModelScopeDeserializer": ".types",
868
+ "IndividualCommonModelScopeDeserializerRequest": ".types",
869
+ "Invoice": ".types",
870
+ "InvoiceAccountingPeriod": ".types",
871
+ "InvoiceAppliedCreditNotesItem": ".types",
872
+ "InvoiceAppliedPaymentsItem": ".types",
873
+ "InvoiceAppliedVendorCreditsItem": ".types",
874
+ "InvoiceCompany": ".types",
875
+ "InvoiceContact": ".types",
876
+ "InvoiceCurrency": ".types",
877
+ "InvoiceEmployee": ".types",
878
+ "InvoiceLineItem": ".types",
879
+ "InvoiceLineItemAccount": ".types",
880
+ "InvoiceLineItemContact": ".types",
881
+ "InvoiceLineItemCurrency": ".types",
882
+ "InvoiceLineItemEmployee": ".types",
883
+ "InvoiceLineItemItem": ".types",
884
+ "InvoiceLineItemProject": ".types",
885
+ "InvoiceLineItemRequest": ".types",
886
+ "InvoiceLineItemRequestAccount": ".types",
887
+ "InvoiceLineItemRequestContact": ".types",
888
+ "InvoiceLineItemRequestCurrency": ".types",
889
+ "InvoiceLineItemRequestEmployee": ".types",
890
+ "InvoiceLineItemRequestItem": ".types",
891
+ "InvoiceLineItemRequestProject": ".types",
892
+ "InvoiceLineItemRequestTrackingCategoriesItem": ".types",
893
+ "InvoiceLineItemRequestTrackingCategory": ".types",
894
+ "InvoiceLineItemTrackingCategoriesItem": ".types",
895
+ "InvoiceLineItemTrackingCategory": ".types",
896
+ "InvoicePaymentTerm": ".types",
897
+ "InvoicePaymentsItem": ".types",
898
+ "InvoicePurchaseOrdersItem": ".types",
899
+ "InvoiceRequest": ".types",
900
+ "InvoiceRequestCompany": ".types",
901
+ "InvoiceRequestContact": ".types",
902
+ "InvoiceRequestCurrency": ".types",
903
+ "InvoiceRequestEmployee": ".types",
904
+ "InvoiceRequestPaymentTerm": ".types",
905
+ "InvoiceRequestPaymentsItem": ".types",
906
+ "InvoiceRequestPurchaseOrdersItem": ".types",
907
+ "InvoiceRequestStatus": ".types",
908
+ "InvoiceRequestTrackingCategoriesItem": ".types",
909
+ "InvoiceRequestType": ".types",
910
+ "InvoiceResponse": ".types",
911
+ "InvoiceStatus": ".types",
912
+ "InvoiceStatusEnum": ".types",
913
+ "InvoiceTrackingCategoriesItem": ".types",
914
+ "InvoiceType": ".types",
915
+ "InvoiceTypeEnum": ".types",
916
+ "InvoicesListRequestExpand": ".resources",
917
+ "InvoicesListRequestStatus": ".resources",
918
+ "InvoicesListRequestType": ".resources",
919
+ "InvoicesRetrieveRequestExpand": ".resources",
920
+ "Issue": ".types",
921
+ "IssueStatus": ".types",
922
+ "IssueStatusEnum": ".types",
923
+ "IssuesListRequestStatus": ".resources",
924
+ "Item": ".types",
925
+ "ItemCompany": ".types",
926
+ "ItemFormatEnum": ".types",
927
+ "ItemPurchaseAccount": ".types",
928
+ "ItemPurchaseTaxRate": ".types",
929
+ "ItemRequestRequest": ".types",
930
+ "ItemRequestRequestCompany": ".types",
931
+ "ItemRequestRequestPurchaseAccount": ".types",
932
+ "ItemRequestRequestPurchaseTaxRate": ".types",
933
+ "ItemRequestRequestSalesAccount": ".types",
934
+ "ItemRequestRequestSalesTaxRate": ".types",
935
+ "ItemRequestRequestStatus": ".types",
936
+ "ItemRequestRequestType": ".types",
937
+ "ItemResponse": ".types",
938
+ "ItemSalesAccount": ".types",
939
+ "ItemSalesTaxRate": ".types",
940
+ "ItemSchema": ".types",
941
+ "ItemStatus": ".types",
942
+ "ItemType": ".types",
943
+ "ItemTypeEnum": ".types",
944
+ "ItemsListRequestExpand": ".resources",
945
+ "ItemsRetrieveRequestExpand": ".resources",
946
+ "JournalEntriesListRequestExpand": ".resources",
947
+ "JournalEntriesRetrieveRequestExpand": ".resources",
948
+ "JournalEntry": ".types",
949
+ "JournalEntryAccountingPeriod": ".types",
950
+ "JournalEntryAppliedPaymentsItem": ".types",
951
+ "JournalEntryCompany": ".types",
952
+ "JournalEntryCurrency": ".types",
953
+ "JournalEntryPaymentsItem": ".types",
954
+ "JournalEntryPostingStatus": ".types",
955
+ "JournalEntryRequest": ".types",
956
+ "JournalEntryRequestCompany": ".types",
957
+ "JournalEntryRequestCurrency": ".types",
958
+ "JournalEntryRequestPaymentsItem": ".types",
959
+ "JournalEntryRequestPostingStatus": ".types",
960
+ "JournalEntryRequestTrackingCategoriesItem": ".types",
961
+ "JournalEntryResponse": ".types",
962
+ "JournalEntryTrackingCategoriesItem": ".types",
963
+ "JournalLine": ".types",
964
+ "JournalLineAccount": ".types",
965
+ "JournalLineCurrency": ".types",
966
+ "JournalLineProject": ".types",
967
+ "JournalLineRequest": ".types",
968
+ "JournalLineRequestAccount": ".types",
969
+ "JournalLineRequestCurrency": ".types",
970
+ "JournalLineRequestProject": ".types",
971
+ "JournalLineRequestTrackingCategoriesItem": ".types",
972
+ "JournalLineRequestTrackingCategory": ".types",
973
+ "JournalLineTrackingCategoriesItem": ".types",
974
+ "JournalLineTrackingCategory": ".types",
975
+ "LanguageEnum": ".types",
976
+ "LastSyncResultEnum": ".types",
977
+ "LinkToken": ".types",
978
+ "LinkedAccountStatus": ".types",
979
+ "LinkedAccountsListRequestCategory": ".resources",
980
+ "MetaResponse": ".types",
981
+ "MethodEnum": ".types",
982
+ "MethodTypeEnum": ".types",
983
+ "ModelOperation": ".types",
984
+ "ModelPermissionDeserializer": ".types",
985
+ "ModelPermissionDeserializerRequest": ".types",
986
+ "MultipartFormFieldRequest": ".types",
987
+ "MultipartFormFieldRequestEncoding": ".types",
988
+ "PaginatedAccountDetailsAndActionsList": ".types",
989
+ "PaginatedAccountList": ".types",
990
+ "PaginatedAccountingAttachmentList": ".types",
991
+ "PaginatedAccountingPeriodList": ".types",
992
+ "PaginatedAuditLogEventList": ".types",
993
+ "PaginatedBalanceSheetList": ".types",
994
+ "PaginatedBankFeedAccountList": ".types",
995
+ "PaginatedBankFeedTransactionList": ".types",
996
+ "PaginatedCashFlowStatementList": ".types",
997
+ "PaginatedCompanyInfoList": ".types",
998
+ "PaginatedContactList": ".types",
999
+ "PaginatedCreditNoteList": ".types",
1000
+ "PaginatedEmployeeList": ".types",
1001
+ "PaginatedExpenseList": ".types",
1002
+ "PaginatedExpenseReportLineList": ".types",
1003
+ "PaginatedExpenseReportList": ".types",
1004
+ "PaginatedGeneralLedgerTransactionList": ".types",
1005
+ "PaginatedIncomeStatementList": ".types",
1006
+ "PaginatedInvoiceList": ".types",
1007
+ "PaginatedIssueList": ".types",
1008
+ "PaginatedItemList": ".types",
1009
+ "PaginatedJournalEntryList": ".types",
1010
+ "PaginatedPaymentList": ".types",
1011
+ "PaginatedPaymentMethodList": ".types",
1012
+ "PaginatedPaymentTermList": ".types",
1013
+ "PaginatedProjectList": ".types",
1014
+ "PaginatedPurchaseOrderList": ".types",
1015
+ "PaginatedRemoteFieldClassList": ".types",
1016
+ "PaginatedSyncStatusList": ".types",
1017
+ "PaginatedTaxRateList": ".types",
1018
+ "PaginatedTrackingCategoryList": ".types",
1019
+ "PaginatedTransactionList": ".types",
1020
+ "PaginatedVendorCreditList": ".types",
1021
+ "PatchedContactRequest": ".types",
1022
+ "PatchedContactRequestAddressesItem": ".types",
1023
+ "PatchedItemRequestRequest": ".types",
1024
+ "PatchedItemRequestRequestStatus": ".types",
1025
+ "PatchedItemRequestRequestType": ".types",
1026
+ "PatchedPaymentRequest": ".types",
1027
+ "PatchedPaymentRequestAccount": ".types",
1028
+ "PatchedPaymentRequestAccountingPeriod": ".types",
1029
+ "PatchedPaymentRequestAppliedToLinesItem": ".types",
1030
+ "PatchedPaymentRequestCompany": ".types",
1031
+ "PatchedPaymentRequestContact": ".types",
1032
+ "PatchedPaymentRequestCurrency": ".types",
1033
+ "PatchedPaymentRequestPaymentMethod": ".types",
1034
+ "PatchedPaymentRequestTrackingCategoriesItem": ".types",
1035
+ "PatchedPaymentRequestType": ".types",
1036
+ "Payment": ".types",
1037
+ "PaymentAccount": ".types",
1038
+ "PaymentAccountingPeriod": ".types",
1039
+ "PaymentAppliedToLinesItem": ".types",
1040
+ "PaymentCompany": ".types",
1041
+ "PaymentContact": ".types",
1042
+ "PaymentCurrency": ".types",
1043
+ "PaymentLineItem": ".types",
1044
+ "PaymentLineItemRequest": ".types",
1045
+ "PaymentMethod": ".types",
1046
+ "PaymentMethodMethodType": ".types",
1047
+ "PaymentPaymentMethod": ".types",
1048
+ "PaymentRequest": ".types",
1049
+ "PaymentRequestAccount": ".types",
1050
+ "PaymentRequestAccountingPeriod": ".types",
1051
+ "PaymentRequestAppliedToLinesItem": ".types",
1052
+ "PaymentRequestCompany": ".types",
1053
+ "PaymentRequestContact": ".types",
1054
+ "PaymentRequestCurrency": ".types",
1055
+ "PaymentRequestPaymentMethod": ".types",
1056
+ "PaymentRequestTrackingCategoriesItem": ".types",
1057
+ "PaymentRequestType": ".types",
1058
+ "PaymentResponse": ".types",
1059
+ "PaymentTerm": ".types",
1060
+ "PaymentTermCompany": ".types",
1061
+ "PaymentTrackingCategoriesItem": ".types",
1062
+ "PaymentType": ".types",
1063
+ "PaymentTypeEnum": ".types",
1064
+ "PaymentsListRequestExpand": ".resources",
1065
+ "PaymentsRetrieveRequestExpand": ".resources",
1066
+ "PostingStatusEnum": ".types",
1067
+ "Project": ".types",
1068
+ "ProjectCompany": ".types",
1069
+ "ProjectContact": ".types",
1070
+ "ProjectsListRequestExpand": ".resources",
1071
+ "ProjectsRetrieveRequestExpand": ".resources",
1072
+ "PurchaseOrder": ".types",
1073
+ "PurchaseOrderAccountingPeriod": ".types",
1074
+ "PurchaseOrderCompany": ".types",
1075
+ "PurchaseOrderCurrency": ".types",
1076
+ "PurchaseOrderDeliveryAddress": ".types",
1077
+ "PurchaseOrderLineItem": ".types",
1078
+ "PurchaseOrderLineItemCurrency": ".types",
1079
+ "PurchaseOrderLineItemItem": ".types",
1080
+ "PurchaseOrderLineItemRequest": ".types",
1081
+ "PurchaseOrderLineItemRequestCurrency": ".types",
1082
+ "PurchaseOrderLineItemRequestItem": ".types",
1083
+ "PurchaseOrderPaymentTerm": ".types",
1084
+ "PurchaseOrderRequest": ".types",
1085
+ "PurchaseOrderRequestCompany": ".types",
1086
+ "PurchaseOrderRequestCurrency": ".types",
1087
+ "PurchaseOrderRequestDeliveryAddress": ".types",
1088
+ "PurchaseOrderRequestPaymentTerm": ".types",
1089
+ "PurchaseOrderRequestStatus": ".types",
1090
+ "PurchaseOrderRequestTrackingCategoriesItem": ".types",
1091
+ "PurchaseOrderRequestVendor": ".types",
1092
+ "PurchaseOrderResponse": ".types",
1093
+ "PurchaseOrderStatus": ".types",
1094
+ "PurchaseOrderStatusEnum": ".types",
1095
+ "PurchaseOrderTrackingCategoriesItem": ".types",
1096
+ "PurchaseOrderVendor": ".types",
1097
+ "PurchaseOrdersListRequestExpand": ".resources",
1098
+ "PurchaseOrdersRetrieveRequestExpand": ".resources",
1099
+ "RemoteData": ".types",
1100
+ "RemoteEndpointInfo": ".types",
1101
+ "RemoteField": ".types",
1102
+ "RemoteFieldApi": ".types",
1103
+ "RemoteFieldApiCoverage": ".types",
1104
+ "RemoteFieldApiResponse": ".types",
1105
+ "RemoteFieldClass": ".types",
1106
+ "RemoteFieldRemoteFieldClass": ".types",
1107
+ "RemoteFieldRequest": ".types",
1108
+ "RemoteFieldRequestRemoteFieldClass": ".types",
1109
+ "RemoteKey": ".types",
1110
+ "RemoteResponse": ".types",
1111
+ "ReportItem": ".types",
1112
+ "RequestFormatEnum": ".types",
1113
+ "ResponseTypeEnum": ".types",
1114
+ "RoleEnum": ".types",
1115
+ "SelectiveSyncConfigurationsUsageEnum": ".types",
1116
+ "Status7D1Enum": ".types",
1117
+ "Status895Enum": ".types",
1118
+ "StatusFd5Enum": ".types",
1119
+ "SyncStatus": ".types",
1120
+ "SyncStatusStatus": ".types",
1121
+ "TaxComponent": ".types",
1122
+ "TaxComponentComponentType": ".types",
1123
+ "TaxRate": ".types",
1124
+ "TaxRateCompany": ".types",
1125
+ "TaxRateStatus": ".types",
1126
+ "TaxRateTaxComponentsItem": ".types",
1127
+ "TrackingCategory": ".types",
1128
+ "TrackingCategoryCategoryType": ".types",
1129
+ "TrackingCategoryCompany": ".types",
1130
+ "TrackingCategoryStatus": ".types",
1131
+ "Transaction": ".types",
1132
+ "TransactionAccount": ".types",
1133
+ "TransactionAccountingPeriod": ".types",
1134
+ "TransactionContact": ".types",
1135
+ "TransactionCurrency": ".types",
1136
+ "TransactionCurrencyEnum": ".types",
1137
+ "TransactionLineItem": ".types",
1138
+ "TransactionLineItemCurrency": ".types",
1139
+ "TransactionLineItemItem": ".types",
1140
+ "TransactionTrackingCategoriesItem": ".types",
1141
+ "TransactionsListRequestExpand": ".resources",
1142
+ "TransactionsRetrieveRequestExpand": ".resources",
1143
+ "Type2BbEnum": ".types",
1144
+ "UnderlyingTransactionTypeEnum": ".types",
1145
+ "ValidationProblemSource": ".types",
1146
+ "VendorCredit": ".types",
1147
+ "VendorCreditAccountingPeriod": ".types",
1148
+ "VendorCreditApplyLineForInvoice": ".types",
1149
+ "VendorCreditApplyLineForInvoiceVendorCredit": ".types",
1150
+ "VendorCreditApplyLineForVendorCredit": ".types",
1151
+ "VendorCreditApplyLineForVendorCreditInvoice": ".types",
1152
+ "VendorCreditApplyLineForVendorCreditRequest": ".types",
1153
+ "VendorCreditApplyLineForVendorCreditRequestInvoice": ".types",
1154
+ "VendorCreditCompany": ".types",
1155
+ "VendorCreditCurrency": ".types",
1156
+ "VendorCreditLine": ".types",
1157
+ "VendorCreditLineAccount": ".types",
1158
+ "VendorCreditLineContact": ".types",
1159
+ "VendorCreditLineProject": ".types",
1160
+ "VendorCreditLineRequest": ".types",
1161
+ "VendorCreditLineRequestAccount": ".types",
1162
+ "VendorCreditLineRequestContact": ".types",
1163
+ "VendorCreditLineRequestProject": ".types",
1164
+ "VendorCreditRequest": ".types",
1165
+ "VendorCreditRequestAccountingPeriod": ".types",
1166
+ "VendorCreditRequestCompany": ".types",
1167
+ "VendorCreditRequestCurrency": ".types",
1168
+ "VendorCreditRequestTrackingCategoriesItem": ".types",
1169
+ "VendorCreditRequestVendor": ".types",
1170
+ "VendorCreditResponse": ".types",
1171
+ "VendorCreditTrackingCategoriesItem": ".types",
1172
+ "VendorCreditVendor": ".types",
1173
+ "VendorCreditsListRequestExpand": ".resources",
1174
+ "VendorCreditsRetrieveRequestExpand": ".resources",
1175
+ "WarningValidationProblem": ".types",
1176
+ "WebhookReceiver": ".types",
1177
+ "account_details": ".resources",
1178
+ "account_token": ".resources",
1179
+ "accounting_periods": ".resources",
1180
+ "accounts": ".resources",
1181
+ "addresses": ".resources",
1182
+ "async_passthrough": ".resources",
1183
+ "async_tasks": ".resources",
1184
+ "attachments": ".resources",
1185
+ "audit_trail": ".resources",
1186
+ "available_actions": ".resources",
1187
+ "balance_sheets": ".resources",
1188
+ "bank_feed_accounts": ".resources",
1189
+ "bank_feed_transactions": ".resources",
1190
+ "cash_flow_statements": ".resources",
1191
+ "company_info": ".resources",
1192
+ "contacts": ".resources",
1193
+ "credit_notes": ".resources",
1194
+ "delete_account": ".resources",
1195
+ "employees": ".resources",
1196
+ "expense_reports": ".resources",
1197
+ "expenses": ".resources",
1198
+ "field_mapping": ".resources",
1199
+ "force_resync": ".resources",
1200
+ "general_ledger_transactions": ".resources",
1201
+ "generate_key": ".resources",
1202
+ "income_statements": ".resources",
1203
+ "invoices": ".resources",
1204
+ "issues": ".resources",
1205
+ "items": ".resources",
1206
+ "journal_entries": ".resources",
1207
+ "link_token": ".resources",
1208
+ "linked_accounts": ".resources",
1209
+ "passthrough": ".resources",
1210
+ "payment_methods": ".resources",
1211
+ "payment_terms": ".resources",
1212
+ "payments": ".resources",
1213
+ "phone_numbers": ".resources",
1214
+ "projects": ".resources",
1215
+ "purchase_orders": ".resources",
1216
+ "regenerate_key": ".resources",
1217
+ "scopes": ".resources",
1218
+ "sync_status": ".resources",
1219
+ "tax_rates": ".resources",
1220
+ "tracking_categories": ".resources",
1221
+ "transactions": ".resources",
1222
+ "vendor_credits": ".resources",
1223
+ "webhook_receivers": ".resources",
1224
+ }
1225
+
1226
+
1227
+ def __getattr__(attr_name: str) -> typing.Any:
1228
+ module_name = _dynamic_imports.get(attr_name)
1229
+ if module_name is None:
1230
+ raise AttributeError(f"No {attr_name} found in _dynamic_imports for module name -> {__name__}")
1231
+ try:
1232
+ module = import_module(module_name, __package__)
1233
+ result = getattr(module, attr_name)
1234
+ return result
1235
+ except ImportError as e:
1236
+ raise ImportError(f"Failed to import {attr_name} from {module_name}: {e}") from e
1237
+ except AttributeError as e:
1238
+ raise AttributeError(f"Failed to get {attr_name} from {module_name}: {e}") from e
1239
+
1240
+
1241
+ def __dir__():
1242
+ lazy_attrs = list(_dynamic_imports.keys())
1243
+ return sorted(lazy_attrs)
1244
+
614
1245
 
615
1246
  __all__ = [
616
1247
  "Account",