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,288 +2,592 @@
2
2
 
3
3
  # isort: skip_file
4
4
 
5
- from .types import (
6
- AccessRoleEnum,
7
- AccountDetails,
8
- AccountDetailsAndActions,
9
- AccountDetailsAndActionsCategory,
10
- AccountDetailsAndActionsIntegration,
11
- AccountDetailsAndActionsStatus,
12
- AccountDetailsAndActionsStatusEnum,
13
- AccountDetailsCategory,
14
- AccountIntegration,
15
- AccountToken,
16
- Activity,
17
- ActivityActivityType,
18
- ActivityRequest,
19
- ActivityRequestActivityType,
20
- ActivityRequestUser,
21
- ActivityRequestVisibility,
22
- ActivityResponse,
23
- ActivityTypeEnum,
24
- ActivityUser,
25
- ActivityVisibility,
26
- AdvancedMetadata,
27
- Application,
28
- ApplicationCandidate,
29
- ApplicationCreditedTo,
30
- ApplicationCurrentStage,
31
- ApplicationJob,
32
- ApplicationOffersItem,
33
- ApplicationRejectReason,
34
- ApplicationRequest,
35
- ApplicationRequestCandidate,
36
- ApplicationRequestCreditedTo,
37
- ApplicationRequestCurrentStage,
38
- ApplicationRequestJob,
39
- ApplicationRequestOffersItem,
40
- ApplicationRequestRejectReason,
41
- ApplicationRequestScreeningQuestionAnswersItem,
42
- ApplicationResponse,
43
- ApplicationScreeningQuestionAnswersItem,
44
- AsyncPassthroughReciept,
45
- Attachment,
46
- AttachmentAttachmentType,
47
- AttachmentRequest,
48
- AttachmentRequestAttachmentType,
49
- AttachmentResponse,
50
- AttachmentTypeEnum,
51
- AuditLogEvent,
52
- AuditLogEventEventType,
53
- AuditLogEventRole,
54
- AvailableActions,
55
- Candidate,
56
- CandidateApplicationsItem,
57
- CandidateAttachmentsItem,
58
- CandidateRequest,
59
- CandidateRequestApplicationsItem,
60
- CandidateRequestAttachmentsItem,
61
- CandidateResponse,
62
- CategoriesEnum,
63
- CategoryEnum,
64
- CommonModelScopeApi,
65
- CommonModelScopesBodyRequest,
66
- DataPassthroughRequest,
67
- DebugModeLog,
68
- DebugModelLogSummary,
69
- Department,
70
- DisabilityStatusEnum,
71
- Eeoc,
72
- EeocCandidate,
73
- EeocDisabilityStatus,
74
- EeocGender,
75
- EeocRace,
76
- EeocVeteranStatus,
77
- EmailAddress,
78
- EmailAddressEmailAddressType,
79
- EmailAddressRequest,
80
- EmailAddressRequestEmailAddressType,
81
- EmailAddressTypeEnum,
82
- EnabledActionsEnum,
83
- EncodingEnum,
84
- ErrorValidationProblem,
85
- EventTypeEnum,
86
- ExternalTargetFieldApi,
87
- ExternalTargetFieldApiResponse,
88
- FieldMappingApiInstance,
89
- FieldMappingApiInstanceRemoteField,
90
- FieldMappingApiInstanceRemoteFieldRemoteEndpointInfo,
91
- FieldMappingApiInstanceResponse,
92
- FieldMappingApiInstanceTargetField,
93
- FieldMappingInstanceResponse,
94
- FieldPermissionDeserializer,
95
- FieldPermissionDeserializerRequest,
96
- GenderEnum,
97
- IndividualCommonModelScopeDeserializer,
98
- IndividualCommonModelScopeDeserializerRequest,
99
- Issue,
100
- IssueStatus,
101
- IssueStatusEnum,
102
- Job,
103
- JobDepartmentsItem,
104
- JobHiringManagersItem,
105
- JobInterviewStage,
106
- JobInterviewStageJob,
107
- JobOfficesItem,
108
- JobPosting,
109
- JobPostingJob,
110
- JobPostingJobPostingUrlsItem,
111
- JobPostingStatus,
112
- JobPostingStatusEnum,
113
- JobRecruitersItem,
114
- JobStatus,
115
- JobStatusEnum,
116
- JobType,
117
- JobTypeEnum,
118
- LanguageEnum,
119
- LastSyncResultEnum,
120
- LinkToken,
121
- LinkedAccountStatus,
122
- MetaResponse,
123
- MethodEnum,
124
- ModelOperation,
125
- ModelPermissionDeserializer,
126
- ModelPermissionDeserializerRequest,
127
- MultipartFormFieldRequest,
128
- MultipartFormFieldRequestEncoding,
129
- Offer,
130
- OfferApplication,
131
- OfferCreator,
132
- OfferStatus,
133
- OfferStatusEnum,
134
- Office,
135
- OverallRecommendationEnum,
136
- PaginatedAccountDetailsAndActionsList,
137
- PaginatedActivityList,
138
- PaginatedApplicationList,
139
- PaginatedAttachmentList,
140
- PaginatedAuditLogEventList,
141
- PaginatedCandidateList,
142
- PaginatedDepartmentList,
143
- PaginatedEeocList,
144
- PaginatedIssueList,
145
- PaginatedJobInterviewStageList,
146
- PaginatedJobList,
147
- PaginatedJobPostingList,
148
- PaginatedOfferList,
149
- PaginatedOfficeList,
150
- PaginatedRejectReasonList,
151
- PaginatedRemoteUserList,
152
- PaginatedScheduledInterviewList,
153
- PaginatedScorecardList,
154
- PaginatedScreeningQuestionList,
155
- PaginatedSyncStatusList,
156
- PaginatedTagList,
157
- PatchedCandidateRequest,
158
- PhoneNumber,
159
- PhoneNumberPhoneNumberType,
160
- PhoneNumberRequest,
161
- PhoneNumberRequestPhoneNumberType,
162
- PhoneNumberTypeEnum,
163
- RaceEnum,
164
- ReasonEnum,
165
- RejectReason,
166
- RemoteData,
167
- RemoteEndpointInfo,
168
- RemoteFieldApi,
169
- RemoteFieldApiCoverage,
170
- RemoteFieldApiResponse,
171
- RemoteKey,
172
- RemoteResponse,
173
- RemoteResponseResponseType,
174
- RemoteUser,
175
- RemoteUserAccessRole,
176
- RequestFormatEnum,
177
- ResponseTypeEnum,
178
- RoleEnum,
179
- ScheduledInterview,
180
- ScheduledInterviewApplication,
181
- ScheduledInterviewInterviewersItem,
182
- ScheduledInterviewJobInterviewStage,
183
- ScheduledInterviewOrganizer,
184
- ScheduledInterviewRequest,
185
- ScheduledInterviewRequestApplication,
186
- ScheduledInterviewRequestInterviewersItem,
187
- ScheduledInterviewRequestJobInterviewStage,
188
- ScheduledInterviewRequestOrganizer,
189
- ScheduledInterviewRequestStatus,
190
- ScheduledInterviewResponse,
191
- ScheduledInterviewStatus,
192
- ScheduledInterviewStatusEnum,
193
- Scorecard,
194
- ScorecardApplication,
195
- ScorecardInterview,
196
- ScorecardInterviewer,
197
- ScorecardOverallRecommendation,
198
- ScreeningQuestion,
199
- ScreeningQuestionAnswer,
200
- ScreeningQuestionAnswerQuestion,
201
- ScreeningQuestionAnswerRequest,
202
- ScreeningQuestionAnswerRequestQuestion,
203
- ScreeningQuestionJob,
204
- ScreeningQuestionOption,
205
- ScreeningQuestionType,
206
- ScreeningQuestionTypeEnum,
207
- SelectiveSyncConfigurationsUsageEnum,
208
- StatusFd5Enum,
209
- SyncStatus,
210
- SyncStatusLastSyncResult,
211
- SyncStatusStatus,
212
- Tag,
213
- Url,
214
- UrlRequest,
215
- UrlRequestUrlType,
216
- UrlTypeEnum,
217
- UrlUrlType,
218
- ValidationProblemSource,
219
- VeteranStatusEnum,
220
- VisibilityEnum,
221
- WarningValidationProblem,
222
- WebhookReceiver,
223
- )
224
- from .resources import (
225
- ActivitiesListRequestRemoteFields,
226
- ActivitiesListRequestShowEnumOrigins,
227
- ActivitiesRetrieveRequestRemoteFields,
228
- ActivitiesRetrieveRequestShowEnumOrigins,
229
- ApplicationsListRequestExpand,
230
- ApplicationsRetrieveRequestExpand,
231
- AsyncPassthroughRetrieveResponse,
232
- CandidatesListRequestExpand,
233
- CandidatesRetrieveRequestExpand,
234
- EeocsListRequestRemoteFields,
235
- EeocsListRequestShowEnumOrigins,
236
- EeocsRetrieveRequestRemoteFields,
237
- EeocsRetrieveRequestShowEnumOrigins,
238
- EndUserDetailsRequestLanguage,
239
- IgnoreCommonModelRequestReason,
240
- InterviewsListRequestExpand,
241
- InterviewsRetrieveRequestExpand,
242
- IssuesListRequestStatus,
243
- JobPostingsListRequestStatus,
244
- JobsListRequestExpand,
245
- JobsListRequestStatus,
246
- JobsRetrieveRequestExpand,
247
- JobsScreeningQuestionsListRequestExpand,
248
- LinkedAccountsListRequestCategory,
249
- OffersListRequestExpand,
250
- OffersRetrieveRequestExpand,
251
- ScorecardsListRequestExpand,
252
- ScorecardsRetrieveRequestExpand,
253
- account_details,
254
- account_token,
255
- activities,
256
- applications,
257
- async_passthrough,
258
- attachments,
259
- audit_trail,
260
- available_actions,
261
- candidates,
262
- delete_account,
263
- departments,
264
- eeocs,
265
- field_mapping,
266
- force_resync,
267
- generate_key,
268
- interviews,
269
- issues,
270
- job_interview_stages,
271
- job_postings,
272
- jobs,
273
- link_token,
274
- linked_accounts,
275
- offers,
276
- offices,
277
- passthrough,
278
- regenerate_key,
279
- reject_reasons,
280
- scopes,
281
- scorecards,
282
- sync_status,
283
- tags,
284
- users,
285
- webhook_receivers,
286
- )
5
+ import typing
6
+ from importlib import import_module
7
+
8
+ if typing.TYPE_CHECKING:
9
+ from .types import (
10
+ AccessRoleEnum,
11
+ AccountDetails,
12
+ AccountDetailsAndActions,
13
+ AccountDetailsAndActionsCategory,
14
+ AccountDetailsAndActionsIntegration,
15
+ AccountDetailsAndActionsStatus,
16
+ AccountDetailsAndActionsStatusEnum,
17
+ AccountDetailsCategory,
18
+ AccountIntegration,
19
+ AccountToken,
20
+ Activity,
21
+ ActivityActivityType,
22
+ ActivityRequest,
23
+ ActivityRequestActivityType,
24
+ ActivityRequestUser,
25
+ ActivityRequestVisibility,
26
+ ActivityResponse,
27
+ ActivityTypeEnum,
28
+ ActivityUser,
29
+ ActivityVisibility,
30
+ AdvancedMetadata,
31
+ Application,
32
+ ApplicationCandidate,
33
+ ApplicationCreditedTo,
34
+ ApplicationCurrentStage,
35
+ ApplicationJob,
36
+ ApplicationOffersItem,
37
+ ApplicationRejectReason,
38
+ ApplicationRequest,
39
+ ApplicationRequestCandidate,
40
+ ApplicationRequestCreditedTo,
41
+ ApplicationRequestCurrentStage,
42
+ ApplicationRequestJob,
43
+ ApplicationRequestOffersItem,
44
+ ApplicationRequestRejectReason,
45
+ ApplicationRequestScreeningQuestionAnswersItem,
46
+ ApplicationResponse,
47
+ ApplicationScreeningQuestionAnswersItem,
48
+ AsyncPassthroughReciept,
49
+ Attachment,
50
+ AttachmentAttachmentType,
51
+ AttachmentRequest,
52
+ AttachmentRequestAttachmentType,
53
+ AttachmentResponse,
54
+ AttachmentTypeEnum,
55
+ AuditLogEvent,
56
+ AuditLogEventEventType,
57
+ AuditLogEventRole,
58
+ AvailableActions,
59
+ Candidate,
60
+ CandidateApplicationsItem,
61
+ CandidateAttachmentsItem,
62
+ CandidateRequest,
63
+ CandidateRequestApplicationsItem,
64
+ CandidateRequestAttachmentsItem,
65
+ CandidateResponse,
66
+ CategoriesEnum,
67
+ CategoryEnum,
68
+ CommonModelScopeApi,
69
+ CommonModelScopesBodyRequest,
70
+ DataPassthroughRequest,
71
+ DebugModeLog,
72
+ DebugModelLogSummary,
73
+ Department,
74
+ DisabilityStatusEnum,
75
+ Eeoc,
76
+ EeocCandidate,
77
+ EeocDisabilityStatus,
78
+ EeocGender,
79
+ EeocRace,
80
+ EeocVeteranStatus,
81
+ EmailAddress,
82
+ EmailAddressEmailAddressType,
83
+ EmailAddressRequest,
84
+ EmailAddressRequestEmailAddressType,
85
+ EmailAddressTypeEnum,
86
+ EnabledActionsEnum,
87
+ EncodingEnum,
88
+ ErrorValidationProblem,
89
+ EventTypeEnum,
90
+ ExternalTargetFieldApi,
91
+ ExternalTargetFieldApiResponse,
92
+ FieldMappingApiInstance,
93
+ FieldMappingApiInstanceRemoteField,
94
+ FieldMappingApiInstanceRemoteFieldRemoteEndpointInfo,
95
+ FieldMappingApiInstanceResponse,
96
+ FieldMappingApiInstanceTargetField,
97
+ FieldMappingInstanceResponse,
98
+ FieldPermissionDeserializer,
99
+ FieldPermissionDeserializerRequest,
100
+ GenderEnum,
101
+ IndividualCommonModelScopeDeserializer,
102
+ IndividualCommonModelScopeDeserializerRequest,
103
+ Issue,
104
+ IssueStatus,
105
+ IssueStatusEnum,
106
+ Job,
107
+ JobDepartmentsItem,
108
+ JobHiringManagersItem,
109
+ JobInterviewStage,
110
+ JobInterviewStageJob,
111
+ JobOfficesItem,
112
+ JobPosting,
113
+ JobPostingJob,
114
+ JobPostingJobPostingUrlsItem,
115
+ JobPostingStatus,
116
+ JobPostingStatusEnum,
117
+ JobRecruitersItem,
118
+ JobStatus,
119
+ JobStatusEnum,
120
+ JobType,
121
+ JobTypeEnum,
122
+ LanguageEnum,
123
+ LastSyncResultEnum,
124
+ LinkToken,
125
+ LinkedAccountStatus,
126
+ MetaResponse,
127
+ MethodEnum,
128
+ ModelOperation,
129
+ ModelPermissionDeserializer,
130
+ ModelPermissionDeserializerRequest,
131
+ MultipartFormFieldRequest,
132
+ MultipartFormFieldRequestEncoding,
133
+ Offer,
134
+ OfferApplication,
135
+ OfferCreator,
136
+ OfferStatus,
137
+ OfferStatusEnum,
138
+ Office,
139
+ OverallRecommendationEnum,
140
+ PaginatedAccountDetailsAndActionsList,
141
+ PaginatedActivityList,
142
+ PaginatedApplicationList,
143
+ PaginatedAttachmentList,
144
+ PaginatedAuditLogEventList,
145
+ PaginatedCandidateList,
146
+ PaginatedDepartmentList,
147
+ PaginatedEeocList,
148
+ PaginatedIssueList,
149
+ PaginatedJobInterviewStageList,
150
+ PaginatedJobList,
151
+ PaginatedJobPostingList,
152
+ PaginatedOfferList,
153
+ PaginatedOfficeList,
154
+ PaginatedRejectReasonList,
155
+ PaginatedRemoteUserList,
156
+ PaginatedScheduledInterviewList,
157
+ PaginatedScorecardList,
158
+ PaginatedScreeningQuestionList,
159
+ PaginatedSyncStatusList,
160
+ PaginatedTagList,
161
+ PatchedCandidateRequest,
162
+ PhoneNumber,
163
+ PhoneNumberPhoneNumberType,
164
+ PhoneNumberRequest,
165
+ PhoneNumberRequestPhoneNumberType,
166
+ PhoneNumberTypeEnum,
167
+ RaceEnum,
168
+ ReasonEnum,
169
+ RejectReason,
170
+ RemoteData,
171
+ RemoteEndpointInfo,
172
+ RemoteFieldApi,
173
+ RemoteFieldApiCoverage,
174
+ RemoteFieldApiResponse,
175
+ RemoteKey,
176
+ RemoteResponse,
177
+ RemoteResponseResponseType,
178
+ RemoteUser,
179
+ RemoteUserAccessRole,
180
+ RequestFormatEnum,
181
+ ResponseTypeEnum,
182
+ RoleEnum,
183
+ ScheduledInterview,
184
+ ScheduledInterviewApplication,
185
+ ScheduledInterviewInterviewersItem,
186
+ ScheduledInterviewJobInterviewStage,
187
+ ScheduledInterviewOrganizer,
188
+ ScheduledInterviewRequest,
189
+ ScheduledInterviewRequestApplication,
190
+ ScheduledInterviewRequestInterviewersItem,
191
+ ScheduledInterviewRequestJobInterviewStage,
192
+ ScheduledInterviewRequestOrganizer,
193
+ ScheduledInterviewRequestStatus,
194
+ ScheduledInterviewResponse,
195
+ ScheduledInterviewStatus,
196
+ ScheduledInterviewStatusEnum,
197
+ Scorecard,
198
+ ScorecardApplication,
199
+ ScorecardInterview,
200
+ ScorecardInterviewer,
201
+ ScorecardOverallRecommendation,
202
+ ScreeningQuestion,
203
+ ScreeningQuestionAnswer,
204
+ ScreeningQuestionAnswerQuestion,
205
+ ScreeningQuestionAnswerRequest,
206
+ ScreeningQuestionAnswerRequestQuestion,
207
+ ScreeningQuestionJob,
208
+ ScreeningQuestionOption,
209
+ ScreeningQuestionType,
210
+ ScreeningQuestionTypeEnum,
211
+ SelectiveSyncConfigurationsUsageEnum,
212
+ StatusFd5Enum,
213
+ SyncStatus,
214
+ SyncStatusLastSyncResult,
215
+ SyncStatusStatus,
216
+ Tag,
217
+ Url,
218
+ UrlRequest,
219
+ UrlRequestUrlType,
220
+ UrlTypeEnum,
221
+ UrlUrlType,
222
+ ValidationProblemSource,
223
+ VeteranStatusEnum,
224
+ VisibilityEnum,
225
+ WarningValidationProblem,
226
+ WebhookReceiver,
227
+ )
228
+ from .resources import (
229
+ ActivitiesListRequestRemoteFields,
230
+ ActivitiesListRequestShowEnumOrigins,
231
+ ActivitiesRetrieveRequestRemoteFields,
232
+ ActivitiesRetrieveRequestShowEnumOrigins,
233
+ ApplicationsListRequestExpand,
234
+ ApplicationsRetrieveRequestExpand,
235
+ AsyncPassthroughRetrieveResponse,
236
+ CandidatesListRequestExpand,
237
+ CandidatesRetrieveRequestExpand,
238
+ EeocsListRequestRemoteFields,
239
+ EeocsListRequestShowEnumOrigins,
240
+ EeocsRetrieveRequestRemoteFields,
241
+ EeocsRetrieveRequestShowEnumOrigins,
242
+ EndUserDetailsRequestLanguage,
243
+ IgnoreCommonModelRequestReason,
244
+ InterviewsListRequestExpand,
245
+ InterviewsRetrieveRequestExpand,
246
+ IssuesListRequestStatus,
247
+ JobPostingsListRequestStatus,
248
+ JobsListRequestExpand,
249
+ JobsListRequestStatus,
250
+ JobsRetrieveRequestExpand,
251
+ JobsScreeningQuestionsListRequestExpand,
252
+ LinkedAccountsListRequestCategory,
253
+ OffersListRequestExpand,
254
+ OffersRetrieveRequestExpand,
255
+ ScorecardsListRequestExpand,
256
+ ScorecardsRetrieveRequestExpand,
257
+ account_details,
258
+ account_token,
259
+ activities,
260
+ applications,
261
+ async_passthrough,
262
+ attachments,
263
+ audit_trail,
264
+ available_actions,
265
+ candidates,
266
+ delete_account,
267
+ departments,
268
+ eeocs,
269
+ field_mapping,
270
+ force_resync,
271
+ generate_key,
272
+ interviews,
273
+ issues,
274
+ job_interview_stages,
275
+ job_postings,
276
+ jobs,
277
+ link_token,
278
+ linked_accounts,
279
+ offers,
280
+ offices,
281
+ passthrough,
282
+ regenerate_key,
283
+ reject_reasons,
284
+ scopes,
285
+ scorecards,
286
+ sync_status,
287
+ tags,
288
+ users,
289
+ webhook_receivers,
290
+ )
291
+ _dynamic_imports: typing.Dict[str, str] = {
292
+ "AccessRoleEnum": ".types",
293
+ "AccountDetails": ".types",
294
+ "AccountDetailsAndActions": ".types",
295
+ "AccountDetailsAndActionsCategory": ".types",
296
+ "AccountDetailsAndActionsIntegration": ".types",
297
+ "AccountDetailsAndActionsStatus": ".types",
298
+ "AccountDetailsAndActionsStatusEnum": ".types",
299
+ "AccountDetailsCategory": ".types",
300
+ "AccountIntegration": ".types",
301
+ "AccountToken": ".types",
302
+ "ActivitiesListRequestRemoteFields": ".resources",
303
+ "ActivitiesListRequestShowEnumOrigins": ".resources",
304
+ "ActivitiesRetrieveRequestRemoteFields": ".resources",
305
+ "ActivitiesRetrieveRequestShowEnumOrigins": ".resources",
306
+ "Activity": ".types",
307
+ "ActivityActivityType": ".types",
308
+ "ActivityRequest": ".types",
309
+ "ActivityRequestActivityType": ".types",
310
+ "ActivityRequestUser": ".types",
311
+ "ActivityRequestVisibility": ".types",
312
+ "ActivityResponse": ".types",
313
+ "ActivityTypeEnum": ".types",
314
+ "ActivityUser": ".types",
315
+ "ActivityVisibility": ".types",
316
+ "AdvancedMetadata": ".types",
317
+ "Application": ".types",
318
+ "ApplicationCandidate": ".types",
319
+ "ApplicationCreditedTo": ".types",
320
+ "ApplicationCurrentStage": ".types",
321
+ "ApplicationJob": ".types",
322
+ "ApplicationOffersItem": ".types",
323
+ "ApplicationRejectReason": ".types",
324
+ "ApplicationRequest": ".types",
325
+ "ApplicationRequestCandidate": ".types",
326
+ "ApplicationRequestCreditedTo": ".types",
327
+ "ApplicationRequestCurrentStage": ".types",
328
+ "ApplicationRequestJob": ".types",
329
+ "ApplicationRequestOffersItem": ".types",
330
+ "ApplicationRequestRejectReason": ".types",
331
+ "ApplicationRequestScreeningQuestionAnswersItem": ".types",
332
+ "ApplicationResponse": ".types",
333
+ "ApplicationScreeningQuestionAnswersItem": ".types",
334
+ "ApplicationsListRequestExpand": ".resources",
335
+ "ApplicationsRetrieveRequestExpand": ".resources",
336
+ "AsyncPassthroughReciept": ".types",
337
+ "AsyncPassthroughRetrieveResponse": ".resources",
338
+ "Attachment": ".types",
339
+ "AttachmentAttachmentType": ".types",
340
+ "AttachmentRequest": ".types",
341
+ "AttachmentRequestAttachmentType": ".types",
342
+ "AttachmentResponse": ".types",
343
+ "AttachmentTypeEnum": ".types",
344
+ "AuditLogEvent": ".types",
345
+ "AuditLogEventEventType": ".types",
346
+ "AuditLogEventRole": ".types",
347
+ "AvailableActions": ".types",
348
+ "Candidate": ".types",
349
+ "CandidateApplicationsItem": ".types",
350
+ "CandidateAttachmentsItem": ".types",
351
+ "CandidateRequest": ".types",
352
+ "CandidateRequestApplicationsItem": ".types",
353
+ "CandidateRequestAttachmentsItem": ".types",
354
+ "CandidateResponse": ".types",
355
+ "CandidatesListRequestExpand": ".resources",
356
+ "CandidatesRetrieveRequestExpand": ".resources",
357
+ "CategoriesEnum": ".types",
358
+ "CategoryEnum": ".types",
359
+ "CommonModelScopeApi": ".types",
360
+ "CommonModelScopesBodyRequest": ".types",
361
+ "DataPassthroughRequest": ".types",
362
+ "DebugModeLog": ".types",
363
+ "DebugModelLogSummary": ".types",
364
+ "Department": ".types",
365
+ "DisabilityStatusEnum": ".types",
366
+ "Eeoc": ".types",
367
+ "EeocCandidate": ".types",
368
+ "EeocDisabilityStatus": ".types",
369
+ "EeocGender": ".types",
370
+ "EeocRace": ".types",
371
+ "EeocVeteranStatus": ".types",
372
+ "EeocsListRequestRemoteFields": ".resources",
373
+ "EeocsListRequestShowEnumOrigins": ".resources",
374
+ "EeocsRetrieveRequestRemoteFields": ".resources",
375
+ "EeocsRetrieveRequestShowEnumOrigins": ".resources",
376
+ "EmailAddress": ".types",
377
+ "EmailAddressEmailAddressType": ".types",
378
+ "EmailAddressRequest": ".types",
379
+ "EmailAddressRequestEmailAddressType": ".types",
380
+ "EmailAddressTypeEnum": ".types",
381
+ "EnabledActionsEnum": ".types",
382
+ "EncodingEnum": ".types",
383
+ "EndUserDetailsRequestLanguage": ".resources",
384
+ "ErrorValidationProblem": ".types",
385
+ "EventTypeEnum": ".types",
386
+ "ExternalTargetFieldApi": ".types",
387
+ "ExternalTargetFieldApiResponse": ".types",
388
+ "FieldMappingApiInstance": ".types",
389
+ "FieldMappingApiInstanceRemoteField": ".types",
390
+ "FieldMappingApiInstanceRemoteFieldRemoteEndpointInfo": ".types",
391
+ "FieldMappingApiInstanceResponse": ".types",
392
+ "FieldMappingApiInstanceTargetField": ".types",
393
+ "FieldMappingInstanceResponse": ".types",
394
+ "FieldPermissionDeserializer": ".types",
395
+ "FieldPermissionDeserializerRequest": ".types",
396
+ "GenderEnum": ".types",
397
+ "IgnoreCommonModelRequestReason": ".resources",
398
+ "IndividualCommonModelScopeDeserializer": ".types",
399
+ "IndividualCommonModelScopeDeserializerRequest": ".types",
400
+ "InterviewsListRequestExpand": ".resources",
401
+ "InterviewsRetrieveRequestExpand": ".resources",
402
+ "Issue": ".types",
403
+ "IssueStatus": ".types",
404
+ "IssueStatusEnum": ".types",
405
+ "IssuesListRequestStatus": ".resources",
406
+ "Job": ".types",
407
+ "JobDepartmentsItem": ".types",
408
+ "JobHiringManagersItem": ".types",
409
+ "JobInterviewStage": ".types",
410
+ "JobInterviewStageJob": ".types",
411
+ "JobOfficesItem": ".types",
412
+ "JobPosting": ".types",
413
+ "JobPostingJob": ".types",
414
+ "JobPostingJobPostingUrlsItem": ".types",
415
+ "JobPostingStatus": ".types",
416
+ "JobPostingStatusEnum": ".types",
417
+ "JobPostingsListRequestStatus": ".resources",
418
+ "JobRecruitersItem": ".types",
419
+ "JobStatus": ".types",
420
+ "JobStatusEnum": ".types",
421
+ "JobType": ".types",
422
+ "JobTypeEnum": ".types",
423
+ "JobsListRequestExpand": ".resources",
424
+ "JobsListRequestStatus": ".resources",
425
+ "JobsRetrieveRequestExpand": ".resources",
426
+ "JobsScreeningQuestionsListRequestExpand": ".resources",
427
+ "LanguageEnum": ".types",
428
+ "LastSyncResultEnum": ".types",
429
+ "LinkToken": ".types",
430
+ "LinkedAccountStatus": ".types",
431
+ "LinkedAccountsListRequestCategory": ".resources",
432
+ "MetaResponse": ".types",
433
+ "MethodEnum": ".types",
434
+ "ModelOperation": ".types",
435
+ "ModelPermissionDeserializer": ".types",
436
+ "ModelPermissionDeserializerRequest": ".types",
437
+ "MultipartFormFieldRequest": ".types",
438
+ "MultipartFormFieldRequestEncoding": ".types",
439
+ "Offer": ".types",
440
+ "OfferApplication": ".types",
441
+ "OfferCreator": ".types",
442
+ "OfferStatus": ".types",
443
+ "OfferStatusEnum": ".types",
444
+ "OffersListRequestExpand": ".resources",
445
+ "OffersRetrieveRequestExpand": ".resources",
446
+ "Office": ".types",
447
+ "OverallRecommendationEnum": ".types",
448
+ "PaginatedAccountDetailsAndActionsList": ".types",
449
+ "PaginatedActivityList": ".types",
450
+ "PaginatedApplicationList": ".types",
451
+ "PaginatedAttachmentList": ".types",
452
+ "PaginatedAuditLogEventList": ".types",
453
+ "PaginatedCandidateList": ".types",
454
+ "PaginatedDepartmentList": ".types",
455
+ "PaginatedEeocList": ".types",
456
+ "PaginatedIssueList": ".types",
457
+ "PaginatedJobInterviewStageList": ".types",
458
+ "PaginatedJobList": ".types",
459
+ "PaginatedJobPostingList": ".types",
460
+ "PaginatedOfferList": ".types",
461
+ "PaginatedOfficeList": ".types",
462
+ "PaginatedRejectReasonList": ".types",
463
+ "PaginatedRemoteUserList": ".types",
464
+ "PaginatedScheduledInterviewList": ".types",
465
+ "PaginatedScorecardList": ".types",
466
+ "PaginatedScreeningQuestionList": ".types",
467
+ "PaginatedSyncStatusList": ".types",
468
+ "PaginatedTagList": ".types",
469
+ "PatchedCandidateRequest": ".types",
470
+ "PhoneNumber": ".types",
471
+ "PhoneNumberPhoneNumberType": ".types",
472
+ "PhoneNumberRequest": ".types",
473
+ "PhoneNumberRequestPhoneNumberType": ".types",
474
+ "PhoneNumberTypeEnum": ".types",
475
+ "RaceEnum": ".types",
476
+ "ReasonEnum": ".types",
477
+ "RejectReason": ".types",
478
+ "RemoteData": ".types",
479
+ "RemoteEndpointInfo": ".types",
480
+ "RemoteFieldApi": ".types",
481
+ "RemoteFieldApiCoverage": ".types",
482
+ "RemoteFieldApiResponse": ".types",
483
+ "RemoteKey": ".types",
484
+ "RemoteResponse": ".types",
485
+ "RemoteResponseResponseType": ".types",
486
+ "RemoteUser": ".types",
487
+ "RemoteUserAccessRole": ".types",
488
+ "RequestFormatEnum": ".types",
489
+ "ResponseTypeEnum": ".types",
490
+ "RoleEnum": ".types",
491
+ "ScheduledInterview": ".types",
492
+ "ScheduledInterviewApplication": ".types",
493
+ "ScheduledInterviewInterviewersItem": ".types",
494
+ "ScheduledInterviewJobInterviewStage": ".types",
495
+ "ScheduledInterviewOrganizer": ".types",
496
+ "ScheduledInterviewRequest": ".types",
497
+ "ScheduledInterviewRequestApplication": ".types",
498
+ "ScheduledInterviewRequestInterviewersItem": ".types",
499
+ "ScheduledInterviewRequestJobInterviewStage": ".types",
500
+ "ScheduledInterviewRequestOrganizer": ".types",
501
+ "ScheduledInterviewRequestStatus": ".types",
502
+ "ScheduledInterviewResponse": ".types",
503
+ "ScheduledInterviewStatus": ".types",
504
+ "ScheduledInterviewStatusEnum": ".types",
505
+ "Scorecard": ".types",
506
+ "ScorecardApplication": ".types",
507
+ "ScorecardInterview": ".types",
508
+ "ScorecardInterviewer": ".types",
509
+ "ScorecardOverallRecommendation": ".types",
510
+ "ScorecardsListRequestExpand": ".resources",
511
+ "ScorecardsRetrieveRequestExpand": ".resources",
512
+ "ScreeningQuestion": ".types",
513
+ "ScreeningQuestionAnswer": ".types",
514
+ "ScreeningQuestionAnswerQuestion": ".types",
515
+ "ScreeningQuestionAnswerRequest": ".types",
516
+ "ScreeningQuestionAnswerRequestQuestion": ".types",
517
+ "ScreeningQuestionJob": ".types",
518
+ "ScreeningQuestionOption": ".types",
519
+ "ScreeningQuestionType": ".types",
520
+ "ScreeningQuestionTypeEnum": ".types",
521
+ "SelectiveSyncConfigurationsUsageEnum": ".types",
522
+ "StatusFd5Enum": ".types",
523
+ "SyncStatus": ".types",
524
+ "SyncStatusLastSyncResult": ".types",
525
+ "SyncStatusStatus": ".types",
526
+ "Tag": ".types",
527
+ "Url": ".types",
528
+ "UrlRequest": ".types",
529
+ "UrlRequestUrlType": ".types",
530
+ "UrlTypeEnum": ".types",
531
+ "UrlUrlType": ".types",
532
+ "ValidationProblemSource": ".types",
533
+ "VeteranStatusEnum": ".types",
534
+ "VisibilityEnum": ".types",
535
+ "WarningValidationProblem": ".types",
536
+ "WebhookReceiver": ".types",
537
+ "account_details": ".resources",
538
+ "account_token": ".resources",
539
+ "activities": ".resources",
540
+ "applications": ".resources",
541
+ "async_passthrough": ".resources",
542
+ "attachments": ".resources",
543
+ "audit_trail": ".resources",
544
+ "available_actions": ".resources",
545
+ "candidates": ".resources",
546
+ "delete_account": ".resources",
547
+ "departments": ".resources",
548
+ "eeocs": ".resources",
549
+ "field_mapping": ".resources",
550
+ "force_resync": ".resources",
551
+ "generate_key": ".resources",
552
+ "interviews": ".resources",
553
+ "issues": ".resources",
554
+ "job_interview_stages": ".resources",
555
+ "job_postings": ".resources",
556
+ "jobs": ".resources",
557
+ "link_token": ".resources",
558
+ "linked_accounts": ".resources",
559
+ "offers": ".resources",
560
+ "offices": ".resources",
561
+ "passthrough": ".resources",
562
+ "regenerate_key": ".resources",
563
+ "reject_reasons": ".resources",
564
+ "scopes": ".resources",
565
+ "scorecards": ".resources",
566
+ "sync_status": ".resources",
567
+ "tags": ".resources",
568
+ "users": ".resources",
569
+ "webhook_receivers": ".resources",
570
+ }
571
+
572
+
573
+ def __getattr__(attr_name: str) -> typing.Any:
574
+ module_name = _dynamic_imports.get(attr_name)
575
+ if module_name is None:
576
+ raise AttributeError(f"No {attr_name} found in _dynamic_imports for module name -> {__name__}")
577
+ try:
578
+ module = import_module(module_name, __package__)
579
+ result = getattr(module, attr_name)
580
+ return result
581
+ except ImportError as e:
582
+ raise ImportError(f"Failed to import {attr_name} from {module_name}: {e}") from e
583
+ except AttributeError as e:
584
+ raise AttributeError(f"Failed to get {attr_name} from {module_name}: {e}") from e
585
+
586
+
587
+ def __dir__():
588
+ lazy_attrs = list(_dynamic_imports.keys())
589
+ return sorted(lazy_attrs)
590
+
287
591
 
288
592
  __all__ = [
289
593
  "AccessRoleEnum",