mergepythonclient 2.2.0__py3-none-any.whl → 2.3.1__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.1.dist-info}/METADATA +2 -1
  169. {mergepythonclient-2.2.0.dist-info → mergepythonclient-2.3.1.dist-info}/RECORD +171 -171
  170. {mergepythonclient-2.2.0.dist-info → mergepythonclient-2.3.1.dist-info}/LICENSE.md +0 -0
  171. {mergepythonclient-2.2.0.dist-info → mergepythonclient-2.3.1.dist-info}/WHEEL +0 -0
@@ -2,278 +2,572 @@
2
2
 
3
3
  # isort: skip_file
4
4
 
5
- from .types import (
6
- Account,
7
- AccountDetails,
8
- AccountDetailsAndActions,
9
- AccountDetailsAndActionsCategory,
10
- AccountDetailsAndActionsIntegration,
11
- AccountDetailsAndActionsStatus,
12
- AccountDetailsAndActionsStatusEnum,
13
- AccountDetailsCategory,
14
- AccountIntegration,
15
- AccountOwner,
16
- AccountRequest,
17
- AccountRequestOwner,
18
- AccountToken,
19
- ActivityTypeEnum,
20
- Address,
21
- AddressAddressType,
22
- AddressCountry,
23
- AddressRequest,
24
- AddressRequestAddressType,
25
- AddressRequestCountry,
26
- AddressTypeEnum,
27
- AdvancedMetadata,
28
- Association,
29
- AssociationAssociationType,
30
- AssociationSubType,
31
- AssociationType,
32
- AssociationTypeCardinality,
33
- AssociationTypeRequestRequest,
34
- AsyncPassthroughReciept,
35
- AuditLogEvent,
36
- AuditLogEventEventType,
37
- AuditLogEventRole,
38
- AvailableActions,
39
- CardinalityEnum,
40
- CategoriesEnum,
41
- CategoryEnum,
42
- CommonModelScopeApi,
43
- CommonModelScopesBodyRequest,
44
- Contact,
45
- ContactAccount,
46
- ContactOwner,
47
- ContactRequest,
48
- ContactRequestAccount,
49
- ContactRequestOwner,
50
- CountryEnum,
51
- CrmAccountResponse,
52
- CrmAssociationTypeResponse,
53
- CrmContactResponse,
54
- CrmCustomObjectResponse,
55
- CustomObject,
56
- CustomObjectClass,
57
- CustomObjectRequest,
58
- DataPassthroughRequest,
59
- DebugModeLog,
60
- DebugModelLogSummary,
61
- DirectionEnum,
62
- EmailAddress,
63
- EmailAddressRequest,
64
- EnabledActionsEnum,
65
- EncodingEnum,
66
- Engagement,
67
- EngagementAccount,
68
- EngagementContactsItem,
69
- EngagementDirection,
70
- EngagementEngagementType,
71
- EngagementOwner,
72
- EngagementRequest,
73
- EngagementRequestAccount,
74
- EngagementRequestContactsItem,
75
- EngagementRequestDirection,
76
- EngagementRequestEngagementType,
77
- EngagementRequestOwner,
78
- EngagementResponse,
79
- EngagementType,
80
- EngagementTypeActivityType,
81
- ErrorValidationProblem,
82
- EventTypeEnum,
83
- ExternalTargetFieldApi,
84
- ExternalTargetFieldApiResponse,
85
- FieldFormatEnum,
86
- FieldMappingApiInstance,
87
- FieldMappingApiInstanceRemoteField,
88
- FieldMappingApiInstanceRemoteFieldRemoteEndpointInfo,
89
- FieldMappingApiInstanceResponse,
90
- FieldMappingApiInstanceTargetField,
91
- FieldMappingInstanceResponse,
92
- FieldPermissionDeserializer,
93
- FieldPermissionDeserializerRequest,
94
- FieldTypeEnum,
95
- IgnoreCommonModelRequest,
96
- IgnoreCommonModelRequestReason,
97
- IndividualCommonModelScopeDeserializer,
98
- IndividualCommonModelScopeDeserializerRequest,
99
- Issue,
100
- IssueStatus,
101
- IssueStatusEnum,
102
- ItemFormatEnum,
103
- ItemSchema,
104
- ItemTypeEnum,
105
- LanguageEnum,
106
- LastSyncResultEnum,
107
- Lead,
108
- LeadConvertedAccount,
109
- LeadConvertedContact,
110
- LeadOwner,
111
- LeadRequest,
112
- LeadRequestConvertedAccount,
113
- LeadRequestConvertedContact,
114
- LeadRequestOwner,
115
- LeadResponse,
116
- LinkToken,
117
- LinkedAccountStatus,
118
- MetaResponse,
119
- MethodEnum,
120
- ModelOperation,
121
- ModelPermissionDeserializer,
122
- ModelPermissionDeserializerRequest,
123
- MultipartFormFieldRequest,
124
- MultipartFormFieldRequestEncoding,
125
- Note,
126
- NoteAccount,
127
- NoteContact,
128
- NoteOpportunity,
129
- NoteOwner,
130
- NoteRequest,
131
- NoteRequestAccount,
132
- NoteRequestContact,
133
- NoteRequestOpportunity,
134
- NoteRequestOwner,
135
- NoteResponse,
136
- ObjectClassDescriptionRequest,
137
- Opportunity,
138
- OpportunityAccount,
139
- OpportunityOwner,
140
- OpportunityRequest,
141
- OpportunityRequestAccount,
142
- OpportunityRequestOwner,
143
- OpportunityRequestStage,
144
- OpportunityRequestStatus,
145
- OpportunityResponse,
146
- OpportunityStage,
147
- OpportunityStatus,
148
- OpportunityStatusEnum,
149
- OriginTypeEnum,
150
- PaginatedAccountDetailsAndActionsList,
151
- PaginatedAccountList,
152
- PaginatedAssociationList,
153
- PaginatedAssociationTypeList,
154
- PaginatedAuditLogEventList,
155
- PaginatedContactList,
156
- PaginatedCustomObjectClassList,
157
- PaginatedCustomObjectList,
158
- PaginatedEngagementList,
159
- PaginatedEngagementTypeList,
160
- PaginatedIssueList,
161
- PaginatedLeadList,
162
- PaginatedNoteList,
163
- PaginatedOpportunityList,
164
- PaginatedRemoteFieldClassList,
165
- PaginatedStageList,
166
- PaginatedSyncStatusList,
167
- PaginatedTaskList,
168
- PaginatedUserList,
169
- PatchedAccountRequest,
170
- PatchedContactRequest,
171
- PatchedContactRequestOwner,
172
- PatchedEngagementRequest,
173
- PatchedEngagementRequestDirection,
174
- PatchedOpportunityRequest,
175
- PatchedOpportunityRequestStatus,
176
- PatchedTaskRequest,
177
- PatchedTaskRequestStatus,
178
- PhoneNumber,
179
- PhoneNumberRequest,
180
- ReasonEnum,
181
- RemoteData,
182
- RemoteEndpointInfo,
183
- RemoteField,
184
- RemoteFieldApi,
185
- RemoteFieldApiCoverage,
186
- RemoteFieldApiResponse,
187
- RemoteFieldClass,
188
- RemoteFieldClassFieldChoicesItem,
189
- RemoteFieldClassFieldFormat,
190
- RemoteFieldClassFieldType,
191
- RemoteFieldClassForCustomObjectClass,
192
- RemoteFieldClassForCustomObjectClassFieldChoicesItem,
193
- RemoteFieldClassForCustomObjectClassFieldFormat,
194
- RemoteFieldClassForCustomObjectClassFieldType,
195
- RemoteFieldClassForCustomObjectClassItemSchema,
196
- RemoteFieldRemoteFieldClass,
197
- RemoteFieldRequest,
198
- RemoteFieldRequestRemoteFieldClass,
199
- RemoteKey,
200
- RemoteResponse,
201
- RequestFormatEnum,
202
- ResponseTypeEnum,
203
- RoleEnum,
204
- SelectiveSyncConfigurationsUsageEnum,
205
- Stage,
206
- StatusFd5Enum,
207
- SyncStatus,
208
- SyncStatusLastSyncResult,
209
- SyncStatusStatus,
210
- Task,
211
- TaskAccount,
212
- TaskOpportunity,
213
- TaskOwner,
214
- TaskRequest,
215
- TaskRequestAccount,
216
- TaskRequestOpportunity,
217
- TaskRequestOwner,
218
- TaskRequestStatus,
219
- TaskResponse,
220
- TaskStatus,
221
- TaskStatusEnum,
222
- User,
223
- ValidationProblemSource,
224
- WarningValidationProblem,
225
- WebhookReceiver,
226
- )
227
- from .resources import (
228
- AsyncPassthroughRetrieveResponse,
229
- ContactsListRequestExpand,
230
- ContactsRetrieveRequestExpand,
231
- EndUserDetailsRequestLanguage,
232
- EngagementsListRequestExpand,
233
- EngagementsRetrieveRequestExpand,
234
- IssuesListRequestStatus,
235
- LeadsListRequestExpand,
236
- LeadsRetrieveRequestExpand,
237
- LinkedAccountsListRequestCategory,
238
- NotesListRequestExpand,
239
- NotesRetrieveRequestExpand,
240
- OpportunitiesListRequestExpand,
241
- OpportunitiesListRequestStatus,
242
- OpportunitiesRetrieveRequestExpand,
243
- TasksListRequestExpand,
244
- TasksRetrieveRequestExpand,
245
- account_details,
246
- account_token,
247
- accounts,
248
- association_types,
249
- associations,
250
- async_passthrough,
251
- audit_trail,
252
- available_actions,
253
- contacts,
254
- custom_object_classes,
255
- custom_objects,
256
- delete_account,
257
- engagement_types,
258
- engagements,
259
- field_mapping,
260
- force_resync,
261
- generate_key,
262
- issues,
263
- leads,
264
- link_token,
265
- linked_accounts,
266
- notes,
267
- opportunities,
268
- passthrough,
269
- regenerate_key,
270
- scopes,
271
- stages,
272
- sync_status,
273
- tasks,
274
- users,
275
- webhook_receivers,
276
- )
5
+ import typing
6
+ from importlib import import_module
7
+
8
+ if typing.TYPE_CHECKING:
9
+ from .types import (
10
+ Account,
11
+ AccountDetails,
12
+ AccountDetailsAndActions,
13
+ AccountDetailsAndActionsCategory,
14
+ AccountDetailsAndActionsIntegration,
15
+ AccountDetailsAndActionsStatus,
16
+ AccountDetailsAndActionsStatusEnum,
17
+ AccountDetailsCategory,
18
+ AccountIntegration,
19
+ AccountOwner,
20
+ AccountRequest,
21
+ AccountRequestOwner,
22
+ AccountToken,
23
+ ActivityTypeEnum,
24
+ Address,
25
+ AddressAddressType,
26
+ AddressCountry,
27
+ AddressRequest,
28
+ AddressRequestAddressType,
29
+ AddressRequestCountry,
30
+ AddressTypeEnum,
31
+ AdvancedMetadata,
32
+ Association,
33
+ AssociationAssociationType,
34
+ AssociationSubType,
35
+ AssociationType,
36
+ AssociationTypeCardinality,
37
+ AssociationTypeRequestRequest,
38
+ AsyncPassthroughReciept,
39
+ AuditLogEvent,
40
+ AuditLogEventEventType,
41
+ AuditLogEventRole,
42
+ AvailableActions,
43
+ CardinalityEnum,
44
+ CategoriesEnum,
45
+ CategoryEnum,
46
+ CommonModelScopeApi,
47
+ CommonModelScopesBodyRequest,
48
+ Contact,
49
+ ContactAccount,
50
+ ContactOwner,
51
+ ContactRequest,
52
+ ContactRequestAccount,
53
+ ContactRequestOwner,
54
+ CountryEnum,
55
+ CrmAccountResponse,
56
+ CrmAssociationTypeResponse,
57
+ CrmContactResponse,
58
+ CrmCustomObjectResponse,
59
+ CustomObject,
60
+ CustomObjectClass,
61
+ CustomObjectRequest,
62
+ DataPassthroughRequest,
63
+ DebugModeLog,
64
+ DebugModelLogSummary,
65
+ DirectionEnum,
66
+ EmailAddress,
67
+ EmailAddressRequest,
68
+ EnabledActionsEnum,
69
+ EncodingEnum,
70
+ Engagement,
71
+ EngagementAccount,
72
+ EngagementContactsItem,
73
+ EngagementDirection,
74
+ EngagementEngagementType,
75
+ EngagementOwner,
76
+ EngagementRequest,
77
+ EngagementRequestAccount,
78
+ EngagementRequestContactsItem,
79
+ EngagementRequestDirection,
80
+ EngagementRequestEngagementType,
81
+ EngagementRequestOwner,
82
+ EngagementResponse,
83
+ EngagementType,
84
+ EngagementTypeActivityType,
85
+ ErrorValidationProblem,
86
+ EventTypeEnum,
87
+ ExternalTargetFieldApi,
88
+ ExternalTargetFieldApiResponse,
89
+ FieldFormatEnum,
90
+ FieldMappingApiInstance,
91
+ FieldMappingApiInstanceRemoteField,
92
+ FieldMappingApiInstanceRemoteFieldRemoteEndpointInfo,
93
+ FieldMappingApiInstanceResponse,
94
+ FieldMappingApiInstanceTargetField,
95
+ FieldMappingInstanceResponse,
96
+ FieldPermissionDeserializer,
97
+ FieldPermissionDeserializerRequest,
98
+ FieldTypeEnum,
99
+ IgnoreCommonModelRequest,
100
+ IgnoreCommonModelRequestReason,
101
+ IndividualCommonModelScopeDeserializer,
102
+ IndividualCommonModelScopeDeserializerRequest,
103
+ Issue,
104
+ IssueStatus,
105
+ IssueStatusEnum,
106
+ ItemFormatEnum,
107
+ ItemSchema,
108
+ ItemTypeEnum,
109
+ LanguageEnum,
110
+ LastSyncResultEnum,
111
+ Lead,
112
+ LeadConvertedAccount,
113
+ LeadConvertedContact,
114
+ LeadOwner,
115
+ LeadRequest,
116
+ LeadRequestConvertedAccount,
117
+ LeadRequestConvertedContact,
118
+ LeadRequestOwner,
119
+ LeadResponse,
120
+ LinkToken,
121
+ LinkedAccountStatus,
122
+ MetaResponse,
123
+ MethodEnum,
124
+ ModelOperation,
125
+ ModelPermissionDeserializer,
126
+ ModelPermissionDeserializerRequest,
127
+ MultipartFormFieldRequest,
128
+ MultipartFormFieldRequestEncoding,
129
+ Note,
130
+ NoteAccount,
131
+ NoteContact,
132
+ NoteOpportunity,
133
+ NoteOwner,
134
+ NoteRequest,
135
+ NoteRequestAccount,
136
+ NoteRequestContact,
137
+ NoteRequestOpportunity,
138
+ NoteRequestOwner,
139
+ NoteResponse,
140
+ ObjectClassDescriptionRequest,
141
+ Opportunity,
142
+ OpportunityAccount,
143
+ OpportunityOwner,
144
+ OpportunityRequest,
145
+ OpportunityRequestAccount,
146
+ OpportunityRequestOwner,
147
+ OpportunityRequestStage,
148
+ OpportunityRequestStatus,
149
+ OpportunityResponse,
150
+ OpportunityStage,
151
+ OpportunityStatus,
152
+ OpportunityStatusEnum,
153
+ OriginTypeEnum,
154
+ PaginatedAccountDetailsAndActionsList,
155
+ PaginatedAccountList,
156
+ PaginatedAssociationList,
157
+ PaginatedAssociationTypeList,
158
+ PaginatedAuditLogEventList,
159
+ PaginatedContactList,
160
+ PaginatedCustomObjectClassList,
161
+ PaginatedCustomObjectList,
162
+ PaginatedEngagementList,
163
+ PaginatedEngagementTypeList,
164
+ PaginatedIssueList,
165
+ PaginatedLeadList,
166
+ PaginatedNoteList,
167
+ PaginatedOpportunityList,
168
+ PaginatedRemoteFieldClassList,
169
+ PaginatedStageList,
170
+ PaginatedSyncStatusList,
171
+ PaginatedTaskList,
172
+ PaginatedUserList,
173
+ PatchedAccountRequest,
174
+ PatchedContactRequest,
175
+ PatchedContactRequestOwner,
176
+ PatchedEngagementRequest,
177
+ PatchedEngagementRequestDirection,
178
+ PatchedOpportunityRequest,
179
+ PatchedOpportunityRequestStatus,
180
+ PatchedTaskRequest,
181
+ PatchedTaskRequestStatus,
182
+ PhoneNumber,
183
+ PhoneNumberRequest,
184
+ ReasonEnum,
185
+ RemoteData,
186
+ RemoteEndpointInfo,
187
+ RemoteField,
188
+ RemoteFieldApi,
189
+ RemoteFieldApiCoverage,
190
+ RemoteFieldApiResponse,
191
+ RemoteFieldClass,
192
+ RemoteFieldClassFieldChoicesItem,
193
+ RemoteFieldClassFieldFormat,
194
+ RemoteFieldClassFieldType,
195
+ RemoteFieldClassForCustomObjectClass,
196
+ RemoteFieldClassForCustomObjectClassFieldChoicesItem,
197
+ RemoteFieldClassForCustomObjectClassFieldFormat,
198
+ RemoteFieldClassForCustomObjectClassFieldType,
199
+ RemoteFieldClassForCustomObjectClassItemSchema,
200
+ RemoteFieldRemoteFieldClass,
201
+ RemoteFieldRequest,
202
+ RemoteFieldRequestRemoteFieldClass,
203
+ RemoteKey,
204
+ RemoteResponse,
205
+ RequestFormatEnum,
206
+ ResponseTypeEnum,
207
+ RoleEnum,
208
+ SelectiveSyncConfigurationsUsageEnum,
209
+ Stage,
210
+ StatusFd5Enum,
211
+ SyncStatus,
212
+ SyncStatusLastSyncResult,
213
+ SyncStatusStatus,
214
+ Task,
215
+ TaskAccount,
216
+ TaskOpportunity,
217
+ TaskOwner,
218
+ TaskRequest,
219
+ TaskRequestAccount,
220
+ TaskRequestOpportunity,
221
+ TaskRequestOwner,
222
+ TaskRequestStatus,
223
+ TaskResponse,
224
+ TaskStatus,
225
+ TaskStatusEnum,
226
+ User,
227
+ ValidationProblemSource,
228
+ WarningValidationProblem,
229
+ WebhookReceiver,
230
+ )
231
+ from .resources import (
232
+ AsyncPassthroughRetrieveResponse,
233
+ ContactsListRequestExpand,
234
+ ContactsRetrieveRequestExpand,
235
+ EndUserDetailsRequestLanguage,
236
+ EngagementsListRequestExpand,
237
+ EngagementsRetrieveRequestExpand,
238
+ IssuesListRequestStatus,
239
+ LeadsListRequestExpand,
240
+ LeadsRetrieveRequestExpand,
241
+ LinkedAccountsListRequestCategory,
242
+ NotesListRequestExpand,
243
+ NotesRetrieveRequestExpand,
244
+ OpportunitiesListRequestExpand,
245
+ OpportunitiesListRequestStatus,
246
+ OpportunitiesRetrieveRequestExpand,
247
+ TasksListRequestExpand,
248
+ TasksRetrieveRequestExpand,
249
+ account_details,
250
+ account_token,
251
+ accounts,
252
+ association_types,
253
+ associations,
254
+ async_passthrough,
255
+ audit_trail,
256
+ available_actions,
257
+ contacts,
258
+ custom_object_classes,
259
+ custom_objects,
260
+ delete_account,
261
+ engagement_types,
262
+ engagements,
263
+ field_mapping,
264
+ force_resync,
265
+ generate_key,
266
+ issues,
267
+ leads,
268
+ link_token,
269
+ linked_accounts,
270
+ notes,
271
+ opportunities,
272
+ passthrough,
273
+ regenerate_key,
274
+ scopes,
275
+ stages,
276
+ sync_status,
277
+ tasks,
278
+ users,
279
+ webhook_receivers,
280
+ )
281
+ _dynamic_imports: typing.Dict[str, str] = {
282
+ "Account": ".types",
283
+ "AccountDetails": ".types",
284
+ "AccountDetailsAndActions": ".types",
285
+ "AccountDetailsAndActionsCategory": ".types",
286
+ "AccountDetailsAndActionsIntegration": ".types",
287
+ "AccountDetailsAndActionsStatus": ".types",
288
+ "AccountDetailsAndActionsStatusEnum": ".types",
289
+ "AccountDetailsCategory": ".types",
290
+ "AccountIntegration": ".types",
291
+ "AccountOwner": ".types",
292
+ "AccountRequest": ".types",
293
+ "AccountRequestOwner": ".types",
294
+ "AccountToken": ".types",
295
+ "ActivityTypeEnum": ".types",
296
+ "Address": ".types",
297
+ "AddressAddressType": ".types",
298
+ "AddressCountry": ".types",
299
+ "AddressRequest": ".types",
300
+ "AddressRequestAddressType": ".types",
301
+ "AddressRequestCountry": ".types",
302
+ "AddressTypeEnum": ".types",
303
+ "AdvancedMetadata": ".types",
304
+ "Association": ".types",
305
+ "AssociationAssociationType": ".types",
306
+ "AssociationSubType": ".types",
307
+ "AssociationType": ".types",
308
+ "AssociationTypeCardinality": ".types",
309
+ "AssociationTypeRequestRequest": ".types",
310
+ "AsyncPassthroughReciept": ".types",
311
+ "AsyncPassthroughRetrieveResponse": ".resources",
312
+ "AuditLogEvent": ".types",
313
+ "AuditLogEventEventType": ".types",
314
+ "AuditLogEventRole": ".types",
315
+ "AvailableActions": ".types",
316
+ "CardinalityEnum": ".types",
317
+ "CategoriesEnum": ".types",
318
+ "CategoryEnum": ".types",
319
+ "CommonModelScopeApi": ".types",
320
+ "CommonModelScopesBodyRequest": ".types",
321
+ "Contact": ".types",
322
+ "ContactAccount": ".types",
323
+ "ContactOwner": ".types",
324
+ "ContactRequest": ".types",
325
+ "ContactRequestAccount": ".types",
326
+ "ContactRequestOwner": ".types",
327
+ "ContactsListRequestExpand": ".resources",
328
+ "ContactsRetrieveRequestExpand": ".resources",
329
+ "CountryEnum": ".types",
330
+ "CrmAccountResponse": ".types",
331
+ "CrmAssociationTypeResponse": ".types",
332
+ "CrmContactResponse": ".types",
333
+ "CrmCustomObjectResponse": ".types",
334
+ "CustomObject": ".types",
335
+ "CustomObjectClass": ".types",
336
+ "CustomObjectRequest": ".types",
337
+ "DataPassthroughRequest": ".types",
338
+ "DebugModeLog": ".types",
339
+ "DebugModelLogSummary": ".types",
340
+ "DirectionEnum": ".types",
341
+ "EmailAddress": ".types",
342
+ "EmailAddressRequest": ".types",
343
+ "EnabledActionsEnum": ".types",
344
+ "EncodingEnum": ".types",
345
+ "EndUserDetailsRequestLanguage": ".resources",
346
+ "Engagement": ".types",
347
+ "EngagementAccount": ".types",
348
+ "EngagementContactsItem": ".types",
349
+ "EngagementDirection": ".types",
350
+ "EngagementEngagementType": ".types",
351
+ "EngagementOwner": ".types",
352
+ "EngagementRequest": ".types",
353
+ "EngagementRequestAccount": ".types",
354
+ "EngagementRequestContactsItem": ".types",
355
+ "EngagementRequestDirection": ".types",
356
+ "EngagementRequestEngagementType": ".types",
357
+ "EngagementRequestOwner": ".types",
358
+ "EngagementResponse": ".types",
359
+ "EngagementType": ".types",
360
+ "EngagementTypeActivityType": ".types",
361
+ "EngagementsListRequestExpand": ".resources",
362
+ "EngagementsRetrieveRequestExpand": ".resources",
363
+ "ErrorValidationProblem": ".types",
364
+ "EventTypeEnum": ".types",
365
+ "ExternalTargetFieldApi": ".types",
366
+ "ExternalTargetFieldApiResponse": ".types",
367
+ "FieldFormatEnum": ".types",
368
+ "FieldMappingApiInstance": ".types",
369
+ "FieldMappingApiInstanceRemoteField": ".types",
370
+ "FieldMappingApiInstanceRemoteFieldRemoteEndpointInfo": ".types",
371
+ "FieldMappingApiInstanceResponse": ".types",
372
+ "FieldMappingApiInstanceTargetField": ".types",
373
+ "FieldMappingInstanceResponse": ".types",
374
+ "FieldPermissionDeserializer": ".types",
375
+ "FieldPermissionDeserializerRequest": ".types",
376
+ "FieldTypeEnum": ".types",
377
+ "IgnoreCommonModelRequest": ".types",
378
+ "IgnoreCommonModelRequestReason": ".types",
379
+ "IndividualCommonModelScopeDeserializer": ".types",
380
+ "IndividualCommonModelScopeDeserializerRequest": ".types",
381
+ "Issue": ".types",
382
+ "IssueStatus": ".types",
383
+ "IssueStatusEnum": ".types",
384
+ "IssuesListRequestStatus": ".resources",
385
+ "ItemFormatEnum": ".types",
386
+ "ItemSchema": ".types",
387
+ "ItemTypeEnum": ".types",
388
+ "LanguageEnum": ".types",
389
+ "LastSyncResultEnum": ".types",
390
+ "Lead": ".types",
391
+ "LeadConvertedAccount": ".types",
392
+ "LeadConvertedContact": ".types",
393
+ "LeadOwner": ".types",
394
+ "LeadRequest": ".types",
395
+ "LeadRequestConvertedAccount": ".types",
396
+ "LeadRequestConvertedContact": ".types",
397
+ "LeadRequestOwner": ".types",
398
+ "LeadResponse": ".types",
399
+ "LeadsListRequestExpand": ".resources",
400
+ "LeadsRetrieveRequestExpand": ".resources",
401
+ "LinkToken": ".types",
402
+ "LinkedAccountStatus": ".types",
403
+ "LinkedAccountsListRequestCategory": ".resources",
404
+ "MetaResponse": ".types",
405
+ "MethodEnum": ".types",
406
+ "ModelOperation": ".types",
407
+ "ModelPermissionDeserializer": ".types",
408
+ "ModelPermissionDeserializerRequest": ".types",
409
+ "MultipartFormFieldRequest": ".types",
410
+ "MultipartFormFieldRequestEncoding": ".types",
411
+ "Note": ".types",
412
+ "NoteAccount": ".types",
413
+ "NoteContact": ".types",
414
+ "NoteOpportunity": ".types",
415
+ "NoteOwner": ".types",
416
+ "NoteRequest": ".types",
417
+ "NoteRequestAccount": ".types",
418
+ "NoteRequestContact": ".types",
419
+ "NoteRequestOpportunity": ".types",
420
+ "NoteRequestOwner": ".types",
421
+ "NoteResponse": ".types",
422
+ "NotesListRequestExpand": ".resources",
423
+ "NotesRetrieveRequestExpand": ".resources",
424
+ "ObjectClassDescriptionRequest": ".types",
425
+ "OpportunitiesListRequestExpand": ".resources",
426
+ "OpportunitiesListRequestStatus": ".resources",
427
+ "OpportunitiesRetrieveRequestExpand": ".resources",
428
+ "Opportunity": ".types",
429
+ "OpportunityAccount": ".types",
430
+ "OpportunityOwner": ".types",
431
+ "OpportunityRequest": ".types",
432
+ "OpportunityRequestAccount": ".types",
433
+ "OpportunityRequestOwner": ".types",
434
+ "OpportunityRequestStage": ".types",
435
+ "OpportunityRequestStatus": ".types",
436
+ "OpportunityResponse": ".types",
437
+ "OpportunityStage": ".types",
438
+ "OpportunityStatus": ".types",
439
+ "OpportunityStatusEnum": ".types",
440
+ "OriginTypeEnum": ".types",
441
+ "PaginatedAccountDetailsAndActionsList": ".types",
442
+ "PaginatedAccountList": ".types",
443
+ "PaginatedAssociationList": ".types",
444
+ "PaginatedAssociationTypeList": ".types",
445
+ "PaginatedAuditLogEventList": ".types",
446
+ "PaginatedContactList": ".types",
447
+ "PaginatedCustomObjectClassList": ".types",
448
+ "PaginatedCustomObjectList": ".types",
449
+ "PaginatedEngagementList": ".types",
450
+ "PaginatedEngagementTypeList": ".types",
451
+ "PaginatedIssueList": ".types",
452
+ "PaginatedLeadList": ".types",
453
+ "PaginatedNoteList": ".types",
454
+ "PaginatedOpportunityList": ".types",
455
+ "PaginatedRemoteFieldClassList": ".types",
456
+ "PaginatedStageList": ".types",
457
+ "PaginatedSyncStatusList": ".types",
458
+ "PaginatedTaskList": ".types",
459
+ "PaginatedUserList": ".types",
460
+ "PatchedAccountRequest": ".types",
461
+ "PatchedContactRequest": ".types",
462
+ "PatchedContactRequestOwner": ".types",
463
+ "PatchedEngagementRequest": ".types",
464
+ "PatchedEngagementRequestDirection": ".types",
465
+ "PatchedOpportunityRequest": ".types",
466
+ "PatchedOpportunityRequestStatus": ".types",
467
+ "PatchedTaskRequest": ".types",
468
+ "PatchedTaskRequestStatus": ".types",
469
+ "PhoneNumber": ".types",
470
+ "PhoneNumberRequest": ".types",
471
+ "ReasonEnum": ".types",
472
+ "RemoteData": ".types",
473
+ "RemoteEndpointInfo": ".types",
474
+ "RemoteField": ".types",
475
+ "RemoteFieldApi": ".types",
476
+ "RemoteFieldApiCoverage": ".types",
477
+ "RemoteFieldApiResponse": ".types",
478
+ "RemoteFieldClass": ".types",
479
+ "RemoteFieldClassFieldChoicesItem": ".types",
480
+ "RemoteFieldClassFieldFormat": ".types",
481
+ "RemoteFieldClassFieldType": ".types",
482
+ "RemoteFieldClassForCustomObjectClass": ".types",
483
+ "RemoteFieldClassForCustomObjectClassFieldChoicesItem": ".types",
484
+ "RemoteFieldClassForCustomObjectClassFieldFormat": ".types",
485
+ "RemoteFieldClassForCustomObjectClassFieldType": ".types",
486
+ "RemoteFieldClassForCustomObjectClassItemSchema": ".types",
487
+ "RemoteFieldRemoteFieldClass": ".types",
488
+ "RemoteFieldRequest": ".types",
489
+ "RemoteFieldRequestRemoteFieldClass": ".types",
490
+ "RemoteKey": ".types",
491
+ "RemoteResponse": ".types",
492
+ "RequestFormatEnum": ".types",
493
+ "ResponseTypeEnum": ".types",
494
+ "RoleEnum": ".types",
495
+ "SelectiveSyncConfigurationsUsageEnum": ".types",
496
+ "Stage": ".types",
497
+ "StatusFd5Enum": ".types",
498
+ "SyncStatus": ".types",
499
+ "SyncStatusLastSyncResult": ".types",
500
+ "SyncStatusStatus": ".types",
501
+ "Task": ".types",
502
+ "TaskAccount": ".types",
503
+ "TaskOpportunity": ".types",
504
+ "TaskOwner": ".types",
505
+ "TaskRequest": ".types",
506
+ "TaskRequestAccount": ".types",
507
+ "TaskRequestOpportunity": ".types",
508
+ "TaskRequestOwner": ".types",
509
+ "TaskRequestStatus": ".types",
510
+ "TaskResponse": ".types",
511
+ "TaskStatus": ".types",
512
+ "TaskStatusEnum": ".types",
513
+ "TasksListRequestExpand": ".resources",
514
+ "TasksRetrieveRequestExpand": ".resources",
515
+ "User": ".types",
516
+ "ValidationProblemSource": ".types",
517
+ "WarningValidationProblem": ".types",
518
+ "WebhookReceiver": ".types",
519
+ "account_details": ".resources",
520
+ "account_token": ".resources",
521
+ "accounts": ".resources",
522
+ "association_types": ".resources",
523
+ "associations": ".resources",
524
+ "async_passthrough": ".resources",
525
+ "audit_trail": ".resources",
526
+ "available_actions": ".resources",
527
+ "contacts": ".resources",
528
+ "custom_object_classes": ".resources",
529
+ "custom_objects": ".resources",
530
+ "delete_account": ".resources",
531
+ "engagement_types": ".resources",
532
+ "engagements": ".resources",
533
+ "field_mapping": ".resources",
534
+ "force_resync": ".resources",
535
+ "generate_key": ".resources",
536
+ "issues": ".resources",
537
+ "leads": ".resources",
538
+ "link_token": ".resources",
539
+ "linked_accounts": ".resources",
540
+ "notes": ".resources",
541
+ "opportunities": ".resources",
542
+ "passthrough": ".resources",
543
+ "regenerate_key": ".resources",
544
+ "scopes": ".resources",
545
+ "stages": ".resources",
546
+ "sync_status": ".resources",
547
+ "tasks": ".resources",
548
+ "users": ".resources",
549
+ "webhook_receivers": ".resources",
550
+ }
551
+
552
+
553
+ def __getattr__(attr_name: str) -> typing.Any:
554
+ module_name = _dynamic_imports.get(attr_name)
555
+ if module_name is None:
556
+ raise AttributeError(f"No {attr_name} found in _dynamic_imports for module name -> {__name__}")
557
+ try:
558
+ module = import_module(module_name, __package__)
559
+ result = getattr(module, attr_name)
560
+ return result
561
+ except ImportError as e:
562
+ raise ImportError(f"Failed to import {attr_name} from {module_name}: {e}") from e
563
+ except AttributeError as e:
564
+ raise AttributeError(f"Failed to get {attr_name} from {module_name}: {e}") from e
565
+
566
+
567
+ def __dir__():
568
+ lazy_attrs = list(_dynamic_imports.keys())
569
+ return sorted(lazy_attrs)
570
+
277
571
 
278
572
  __all__ = [
279
573
  "Account",