mergepythonclient 2.4.0__py3-none-any.whl → 2.5.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 (410) hide show
  1. merge/__init__.py +3 -1
  2. merge/client.py +43 -24
  3. merge/core/client_wrapper.py +2 -2
  4. merge/resources/__init__.py +3 -2
  5. merge/resources/accounting/__init__.py +15 -0
  6. merge/resources/accounting/resources/__init__.py +14 -1
  7. merge/resources/accounting/resources/accounting_periods/client.py +12 -0
  8. merge/resources/accounting/resources/accounts/__init__.py +6 -0
  9. merge/resources/accounting/resources/accounts/client.py +93 -8
  10. merge/resources/accounting/resources/accounts/raw_client.py +10 -8
  11. merge/resources/accounting/resources/accounts/types/__init__.py +6 -0
  12. merge/resources/accounting/resources/accounts/types/accounts_list_request_classification.py +37 -0
  13. merge/resources/accounting/resources/accounts/types/accounts_list_request_status.py +29 -0
  14. merge/resources/accounting/resources/addresses/client.py +4 -0
  15. merge/resources/accounting/resources/attachments/client.py +47 -0
  16. merge/resources/accounting/resources/audit_trail/client.py +10 -0
  17. merge/resources/accounting/resources/balance_sheets/client.py +43 -0
  18. merge/resources/accounting/resources/bank_feed_accounts/client.py +16 -0
  19. merge/resources/accounting/resources/bank_feed_transactions/client.py +47 -0
  20. merge/resources/accounting/resources/cash_flow_statements/client.py +43 -0
  21. merge/resources/accounting/resources/company_info/client.py +57 -0
  22. merge/resources/accounting/resources/contacts/__init__.py +3 -2
  23. merge/resources/accounting/resources/contacts/client.py +100 -4
  24. merge/resources/accounting/resources/contacts/raw_client.py +5 -4
  25. merge/resources/accounting/resources/contacts/types/__init__.py +3 -1
  26. merge/resources/accounting/resources/contacts/types/contacts_list_request_status.py +25 -0
  27. merge/resources/accounting/resources/credit_notes/client.py +91 -0
  28. merge/resources/accounting/resources/employees/client.py +43 -0
  29. merge/resources/accounting/resources/expense_reports/client.py +109 -0
  30. merge/resources/accounting/resources/expenses/client.py +103 -0
  31. merge/resources/accounting/resources/field_mapping/client.py +16 -4
  32. merge/resources/accounting/resources/general_ledger_transactions/client.py +71 -0
  33. merge/resources/accounting/resources/income_statements/client.py +43 -0
  34. merge/resources/accounting/resources/invoices/client.py +119 -0
  35. merge/resources/accounting/resources/issues/client.py +47 -0
  36. merge/resources/accounting/resources/items/client.py +63 -0
  37. merge/resources/accounting/resources/journal_entries/client.py +103 -0
  38. merge/resources/accounting/resources/linked_accounts/client.py +30 -0
  39. merge/resources/accounting/resources/payment_methods/client.py +12 -0
  40. merge/resources/accounting/resources/payment_terms/client.py +12 -0
  41. merge/resources/accounting/resources/payments/client.py +111 -0
  42. merge/resources/accounting/resources/phone_numbers/client.py +4 -0
  43. merge/resources/accounting/resources/projects/client.py +59 -0
  44. merge/resources/accounting/resources/purchase_orders/client.py +103 -0
  45. merge/resources/accounting/resources/sync_status/client.py +2 -0
  46. merge/resources/accounting/resources/tax_rates/client.py +45 -0
  47. merge/resources/accounting/resources/tracking_categories/__init__.py +31 -0
  48. merge/resources/accounting/resources/tracking_categories/client.py +67 -8
  49. merge/resources/accounting/resources/tracking_categories/raw_client.py +10 -8
  50. merge/resources/accounting/resources/tracking_categories/types/__init__.py +36 -0
  51. merge/resources/accounting/resources/tracking_categories/types/tracking_categories_list_request_category_type.py +25 -0
  52. merge/resources/accounting/resources/tracking_categories/types/tracking_categories_list_request_status.py +25 -0
  53. merge/resources/accounting/resources/transactions/client.py +71 -0
  54. merge/resources/accounting/resources/vendor_credits/client.py +75 -0
  55. merge/resources/ats/resources/activities/client.py +71 -0
  56. merge/resources/ats/resources/applications/client.py +83 -2
  57. merge/resources/ats/resources/attachments/client.py +47 -0
  58. merge/resources/ats/resources/audit_trail/client.py +10 -0
  59. merge/resources/ats/resources/candidates/client.py +69 -0
  60. merge/resources/ats/resources/departments/client.py +41 -0
  61. merge/resources/ats/resources/eeocs/client.py +67 -0
  62. merge/resources/ats/resources/field_mapping/client.py +16 -4
  63. merge/resources/ats/resources/interviews/client.py +65 -0
  64. merge/resources/ats/resources/issues/client.py +47 -0
  65. merge/resources/ats/resources/job_interview_stages/client.py +43 -0
  66. merge/resources/ats/resources/job_postings/client.py +49 -0
  67. merge/resources/ats/resources/jobs/client.py +77 -0
  68. merge/resources/ats/resources/linked_accounts/client.py +30 -0
  69. merge/resources/ats/resources/offers/client.py +53 -0
  70. merge/resources/ats/resources/offices/client.py +41 -0
  71. merge/resources/ats/resources/reject_reasons/client.py +41 -0
  72. merge/resources/ats/resources/scorecards/client.py +59 -0
  73. merge/resources/ats/resources/sync_status/client.py +2 -0
  74. merge/resources/ats/resources/tags/client.py +37 -0
  75. merge/resources/ats/resources/users/client.py +43 -0
  76. merge/resources/chat/__init__.py +385 -0
  77. merge/resources/chat/client.py +459 -0
  78. merge/resources/chat/raw_client.py +13 -0
  79. merge/resources/chat/resources/__init__.py +115 -0
  80. merge/resources/chat/resources/account_details/__init__.py +4 -0
  81. merge/resources/chat/resources/account_details/client.py +102 -0
  82. merge/resources/chat/resources/account_details/raw_client.py +91 -0
  83. merge/resources/chat/resources/account_token/__init__.py +4 -0
  84. merge/resources/chat/resources/account_token/client.py +112 -0
  85. merge/resources/chat/resources/account_token/raw_client.py +98 -0
  86. merge/resources/chat/resources/async_passthrough/__init__.py +32 -0
  87. merge/resources/chat/resources/async_passthrough/client.py +201 -0
  88. merge/resources/chat/resources/async_passthrough/raw_client.py +189 -0
  89. merge/resources/chat/resources/async_passthrough/types/__init__.py +32 -0
  90. merge/resources/chat/resources/async_passthrough/types/async_passthrough_retrieve_response.py +7 -0
  91. merge/resources/chat/resources/audit_trail/__init__.py +4 -0
  92. merge/resources/chat/resources/audit_trail/client.py +188 -0
  93. merge/resources/chat/resources/audit_trail/raw_client.py +161 -0
  94. merge/resources/chat/resources/available_actions/__init__.py +4 -0
  95. merge/resources/chat/resources/available_actions/client.py +102 -0
  96. merge/resources/chat/resources/available_actions/raw_client.py +91 -0
  97. merge/resources/chat/resources/conversations/__init__.py +32 -0
  98. merge/resources/chat/resources/conversations/client.py +553 -0
  99. merge/resources/chat/resources/conversations/raw_client.py +479 -0
  100. merge/resources/chat/resources/conversations/types/__init__.py +34 -0
  101. merge/resources/chat/resources/conversations/types/conversations_members_list_request_expand.py +25 -0
  102. merge/resources/chat/resources/delete_account/__init__.py +4 -0
  103. merge/resources/chat/resources/delete_account/client.py +99 -0
  104. merge/resources/chat/resources/delete_account/raw_client.py +71 -0
  105. merge/resources/chat/resources/field_mapping/__init__.py +4 -0
  106. merge/resources/chat/resources/field_mapping/client.py +664 -0
  107. merge/resources/chat/resources/field_mapping/raw_client.py +672 -0
  108. merge/resources/chat/resources/force_resync/__init__.py +4 -0
  109. merge/resources/chat/resources/force_resync/client.py +106 -0
  110. merge/resources/chat/resources/force_resync/raw_client.py +93 -0
  111. merge/resources/chat/resources/generate_key/__init__.py +4 -0
  112. merge/resources/chat/resources/generate_key/client.py +115 -0
  113. merge/resources/chat/resources/generate_key/raw_client.py +114 -0
  114. merge/resources/chat/resources/groups/__init__.py +4 -0
  115. merge/resources/chat/resources/groups/client.py +367 -0
  116. merge/resources/chat/resources/groups/raw_client.py +311 -0
  117. merge/resources/chat/resources/issues/__init__.py +32 -0
  118. merge/resources/chat/resources/issues/client.py +378 -0
  119. merge/resources/chat/resources/issues/raw_client.py +336 -0
  120. merge/resources/chat/resources/issues/types/__init__.py +32 -0
  121. merge/resources/chat/resources/issues/types/issues_list_request_status.py +17 -0
  122. merge/resources/chat/resources/link_token/__init__.py +35 -0
  123. merge/resources/chat/resources/link_token/client.py +290 -0
  124. merge/resources/chat/resources/link_token/raw_client.py +273 -0
  125. merge/resources/chat/resources/link_token/types/__init__.py +38 -0
  126. merge/resources/chat/resources/link_token/types/end_user_details_request_completed_account_initial_screen.py +7 -0
  127. merge/resources/chat/resources/link_token/types/end_user_details_request_language.py +7 -0
  128. merge/resources/chat/resources/linked_accounts/__init__.py +32 -0
  129. merge/resources/chat/resources/linked_accounts/client.py +297 -0
  130. merge/resources/chat/resources/linked_accounts/raw_client.py +250 -0
  131. merge/resources/chat/resources/linked_accounts/types/__init__.py +34 -0
  132. merge/resources/chat/resources/linked_accounts/types/linked_accounts_list_request_category.py +49 -0
  133. merge/resources/chat/resources/messages/__init__.py +4 -0
  134. merge/resources/chat/resources/messages/client.py +513 -0
  135. merge/resources/chat/resources/messages/raw_client.py +447 -0
  136. merge/resources/chat/resources/passthrough/__init__.py +4 -0
  137. merge/resources/chat/resources/passthrough/client.py +126 -0
  138. merge/resources/chat/resources/passthrough/raw_client.py +111 -0
  139. merge/resources/chat/resources/regenerate_key/__init__.py +4 -0
  140. merge/resources/chat/resources/regenerate_key/client.py +115 -0
  141. merge/resources/chat/resources/regenerate_key/raw_client.py +114 -0
  142. merge/resources/chat/resources/scopes/__init__.py +4 -0
  143. merge/resources/chat/resources/scopes/client.py +320 -0
  144. merge/resources/chat/resources/scopes/raw_client.py +267 -0
  145. merge/resources/chat/resources/sync_status/__init__.py +4 -0
  146. merge/resources/chat/resources/sync_status/client.py +132 -0
  147. merge/resources/chat/resources/sync_status/raw_client.py +121 -0
  148. merge/resources/chat/resources/users/__init__.py +4 -0
  149. merge/resources/chat/resources/users/client.py +387 -0
  150. merge/resources/chat/resources/users/raw_client.py +331 -0
  151. merge/resources/chat/resources/webhook_receivers/__init__.py +4 -0
  152. merge/resources/chat/resources/webhook_receivers/client.py +201 -0
  153. merge/resources/chat/resources/webhook_receivers/raw_client.py +208 -0
  154. merge/resources/chat/types/__init__.py +302 -0
  155. merge/resources/chat/types/account_details.py +40 -0
  156. merge/resources/chat/types/account_details_and_actions.py +54 -0
  157. merge/resources/chat/types/account_details_and_actions_category.py +7 -0
  158. merge/resources/chat/types/account_details_and_actions_integration.py +29 -0
  159. merge/resources/chat/types/account_details_and_actions_status.py +7 -0
  160. merge/resources/chat/types/account_details_and_actions_status_enum.py +36 -0
  161. merge/resources/chat/types/account_details_category.py +7 -0
  162. merge/resources/chat/types/account_integration.py +67 -0
  163. merge/resources/chat/types/account_token.py +23 -0
  164. merge/resources/chat/types/advanced_metadata.py +25 -0
  165. merge/resources/chat/types/async_passthrough_reciept.py +20 -0
  166. merge/resources/chat/types/audit_log_event.py +97 -0
  167. merge/resources/chat/types/audit_log_event_event_type.py +7 -0
  168. merge/resources/chat/types/audit_log_event_role.py +7 -0
  169. merge/resources/chat/types/available_actions.py +33 -0
  170. merge/resources/chat/types/categories_enum.py +56 -0
  171. merge/resources/chat/types/category_enum.py +56 -0
  172. merge/resources/chat/types/common_model_scope_api.py +24 -0
  173. merge/resources/chat/types/common_model_scopes_body_request.py +23 -0
  174. merge/resources/chat/types/completed_account_initial_screen_enum.py +5 -0
  175. merge/resources/chat/types/conversation.py +80 -0
  176. merge/resources/chat/types/conversation_type.py +7 -0
  177. merge/resources/chat/types/data_passthrough_request.py +62 -0
  178. merge/resources/chat/types/data_passthrough_request_method.py +7 -0
  179. merge/resources/chat/types/data_passthrough_request_request_format.py +7 -0
  180. merge/resources/chat/types/debug_mode_log.py +23 -0
  181. merge/resources/chat/types/debug_model_log_summary.py +22 -0
  182. merge/resources/chat/types/enabled_actions_enum.py +22 -0
  183. merge/resources/chat/types/encoding_enum.py +31 -0
  184. merge/resources/chat/types/error_validation_problem.py +25 -0
  185. merge/resources/chat/types/event_type_enum.py +231 -0
  186. merge/resources/chat/types/external_target_field_api.py +22 -0
  187. merge/resources/chat/types/external_target_field_api_response.py +26 -0
  188. merge/resources/chat/types/field_mapping_api_instance.py +26 -0
  189. merge/resources/chat/types/field_mapping_api_instance_remote_field.py +27 -0
  190. merge/resources/chat/types/field_mapping_api_instance_remote_field_remote_endpoint_info.py +22 -0
  191. merge/resources/chat/types/field_mapping_api_instance_response.py +26 -0
  192. merge/resources/chat/types/field_mapping_api_instance_target_field.py +22 -0
  193. merge/resources/chat/types/field_mapping_instance_response.py +27 -0
  194. merge/resources/chat/types/field_permission_deserializer.py +21 -0
  195. merge/resources/chat/types/field_permission_deserializer_request.py +21 -0
  196. merge/resources/chat/types/group.py +57 -0
  197. merge/resources/chat/types/individual_common_model_scope_deserializer.py +24 -0
  198. merge/resources/chat/types/individual_common_model_scope_deserializer_request.py +24 -0
  199. merge/resources/chat/types/issue.py +36 -0
  200. merge/resources/chat/types/issue_status.py +7 -0
  201. merge/resources/chat/types/issue_status_enum.py +22 -0
  202. merge/resources/chat/types/language_enum.py +22 -0
  203. merge/resources/chat/types/last_sync_result_enum.py +46 -0
  204. merge/resources/chat/types/link_token.py +22 -0
  205. merge/resources/chat/types/member.py +63 -0
  206. merge/resources/chat/types/message.py +78 -0
  207. merge/resources/chat/types/method_enum.py +51 -0
  208. merge/resources/chat/types/model_operation.py +32 -0
  209. merge/resources/chat/types/model_permission_deserializer.py +20 -0
  210. merge/resources/chat/types/model_permission_deserializer_request.py +20 -0
  211. merge/resources/chat/types/multipart_form_field_request.py +57 -0
  212. merge/resources/chat/types/multipart_form_field_request_encoding.py +7 -0
  213. merge/resources/chat/types/paginated_account_details_and_actions_list.py +23 -0
  214. merge/resources/chat/types/paginated_audit_log_event_list.py +23 -0
  215. merge/resources/chat/types/paginated_conversation_list.py +23 -0
  216. merge/resources/chat/types/paginated_group_list.py +23 -0
  217. merge/resources/chat/types/paginated_issue_list.py +23 -0
  218. merge/resources/chat/types/paginated_member_list.py +23 -0
  219. merge/resources/chat/types/paginated_message_list.py +23 -0
  220. merge/resources/chat/types/paginated_sync_status_list.py +23 -0
  221. merge/resources/chat/types/paginated_user_list.py +23 -0
  222. merge/resources/chat/types/remote_data.py +34 -0
  223. merge/resources/chat/types/remote_endpoint_info.py +22 -0
  224. merge/resources/chat/types/remote_field_api.py +28 -0
  225. merge/resources/chat/types/remote_field_api_advanced_metadata.py +7 -0
  226. merge/resources/chat/types/remote_field_api_coverage.py +5 -0
  227. merge/resources/chat/types/remote_field_api_response.py +24 -0
  228. merge/resources/chat/types/remote_key.py +30 -0
  229. merge/resources/chat/types/remote_response.py +36 -0
  230. merge/resources/chat/types/remote_response_response_type.py +7 -0
  231. merge/resources/chat/types/request_format_enum.py +31 -0
  232. merge/resources/chat/types/response_type_enum.py +22 -0
  233. merge/resources/chat/types/role_enum.py +46 -0
  234. merge/resources/chat/types/selective_sync_configurations_usage_enum.py +24 -0
  235. merge/resources/chat/types/status_fd_5_enum.py +46 -0
  236. merge/resources/chat/types/sync_status.py +41 -0
  237. merge/resources/chat/types/sync_status_last_sync_result.py +7 -0
  238. merge/resources/chat/types/sync_status_status.py +7 -0
  239. merge/resources/chat/types/type_enum.py +36 -0
  240. merge/resources/chat/types/user.py +84 -0
  241. merge/resources/chat/types/validation_problem_source.py +20 -0
  242. merge/resources/chat/types/warning_validation_problem.py +25 -0
  243. merge/resources/chat/types/webhook_receiver.py +22 -0
  244. merge/resources/crm/resources/accounts/client.py +71 -0
  245. merge/resources/crm/resources/association_types/client.py +45 -0
  246. merge/resources/crm/resources/associations/client.py +53 -10
  247. merge/resources/crm/resources/associations/raw_client.py +6 -6
  248. merge/resources/crm/resources/audit_trail/client.py +10 -0
  249. merge/resources/crm/resources/contacts/client.py +81 -0
  250. merge/resources/crm/resources/custom_object_classes/client.py +41 -0
  251. merge/resources/crm/resources/custom_objects/client.py +63 -0
  252. merge/resources/crm/resources/engagement_types/client.py +59 -0
  253. merge/resources/crm/resources/engagements/client.py +95 -0
  254. merge/resources/crm/resources/field_mapping/client.py +16 -4
  255. merge/resources/crm/resources/issues/client.py +47 -0
  256. merge/resources/crm/resources/leads/client.py +81 -0
  257. merge/resources/crm/resources/linked_accounts/client.py +30 -0
  258. merge/resources/crm/resources/notes/client.py +79 -0
  259. merge/resources/crm/resources/opportunities/client.py +99 -0
  260. merge/resources/crm/resources/stages/client.py +59 -0
  261. merge/resources/crm/resources/sync_status/client.py +2 -0
  262. merge/resources/crm/resources/tasks/client.py +75 -0
  263. merge/resources/crm/resources/users/client.py +61 -0
  264. merge/resources/filestorage/resources/audit_trail/client.py +10 -0
  265. merge/resources/filestorage/resources/drives/client.py +43 -0
  266. merge/resources/filestorage/resources/field_mapping/client.py +16 -4
  267. merge/resources/filestorage/resources/files/client.py +109 -0
  268. merge/resources/filestorage/resources/folders/client.py +67 -0
  269. merge/resources/filestorage/resources/groups/client.py +41 -0
  270. merge/resources/filestorage/resources/issues/client.py +47 -0
  271. merge/resources/filestorage/resources/linked_accounts/client.py +30 -0
  272. merge/resources/filestorage/resources/sync_status/client.py +2 -0
  273. merge/resources/filestorage/resources/users/client.py +43 -0
  274. merge/resources/hris/__init__.py +9 -0
  275. merge/resources/hris/resources/__init__.py +3 -1
  276. merge/resources/hris/resources/audit_trail/client.py +10 -0
  277. merge/resources/hris/resources/bank_info/client.py +59 -2
  278. merge/resources/hris/resources/bank_info/raw_client.py +2 -2
  279. merge/resources/hris/resources/benefits/client.py +45 -2
  280. merge/resources/hris/resources/benefits/raw_client.py +2 -2
  281. merge/resources/hris/resources/companies/client.py +43 -2
  282. merge/resources/hris/resources/companies/raw_client.py +2 -2
  283. merge/resources/hris/resources/dependents/client.py +49 -2
  284. merge/resources/hris/resources/dependents/raw_client.py +2 -2
  285. merge/resources/hris/resources/employee_payroll_runs/client.py +87 -2
  286. merge/resources/hris/resources/employee_payroll_runs/raw_client.py +2 -2
  287. merge/resources/hris/resources/employees/client.py +143 -4
  288. merge/resources/hris/resources/employees/raw_client.py +4 -4
  289. merge/resources/hris/resources/employer_benefits/client.py +43 -2
  290. merge/resources/hris/resources/employer_benefits/raw_client.py +2 -2
  291. merge/resources/hris/resources/employments/client.py +81 -2
  292. merge/resources/hris/resources/employments/raw_client.py +2 -2
  293. merge/resources/hris/resources/field_mapping/client.py +36 -4
  294. merge/resources/hris/resources/field_mapping/raw_client.py +20 -0
  295. merge/resources/hris/resources/groups/client.py +49 -2
  296. merge/resources/hris/resources/groups/raw_client.py +2 -2
  297. merge/resources/hris/resources/issues/client.py +49 -2
  298. merge/resources/hris/resources/issues/raw_client.py +2 -2
  299. merge/resources/hris/resources/link_token/__init__.py +6 -3
  300. merge/resources/hris/resources/link_token/client.py +17 -0
  301. merge/resources/hris/resources/link_token/raw_client.py +17 -0
  302. merge/resources/hris/resources/link_token/types/__init__.py +8 -2
  303. merge/resources/hris/resources/link_token/types/end_user_details_request_completed_account_initial_screen.py +7 -0
  304. merge/resources/hris/resources/linked_accounts/client.py +32 -2
  305. merge/resources/hris/resources/linked_accounts/raw_client.py +2 -2
  306. merge/resources/hris/resources/locations/client.py +73 -4
  307. merge/resources/hris/resources/locations/raw_client.py +4 -4
  308. merge/resources/hris/resources/pay_groups/client.py +43 -2
  309. merge/resources/hris/resources/pay_groups/raw_client.py +2 -2
  310. merge/resources/hris/resources/payroll_runs/client.py +95 -2
  311. merge/resources/hris/resources/payroll_runs/raw_client.py +2 -2
  312. merge/resources/hris/resources/sync_status/client.py +4 -2
  313. merge/resources/hris/resources/sync_status/raw_client.py +2 -2
  314. merge/resources/hris/resources/teams/client.py +45 -2
  315. merge/resources/hris/resources/teams/raw_client.py +2 -2
  316. merge/resources/hris/resources/time_off/client.py +115 -2
  317. merge/resources/hris/resources/time_off/raw_client.py +2 -2
  318. merge/resources/hris/resources/time_off_balances/client.py +53 -2
  319. merge/resources/hris/resources/time_off_balances/raw_client.py +2 -2
  320. merge/resources/hris/resources/timesheet_entries/client.py +81 -2
  321. merge/resources/hris/resources/timesheet_entries/raw_client.py +2 -2
  322. merge/resources/hris/types/__init__.py +6 -0
  323. merge/resources/hris/types/account_details_and_actions.py +2 -2
  324. merge/resources/hris/types/account_details_and_actions_status.py +7 -0
  325. merge/resources/hris/types/completed_account_initial_screen_enum.py +5 -0
  326. merge/resources/hris/types/field_mapping_api_instance.py +1 -0
  327. merge/resources/knowledgebase/__init__.py +9 -0
  328. merge/resources/knowledgebase/resources/__init__.py +9 -3
  329. merge/resources/knowledgebase/resources/articles/__init__.py +3 -2
  330. merge/resources/knowledgebase/resources/articles/client.py +96 -6
  331. merge/resources/knowledgebase/resources/articles/raw_client.py +27 -6
  332. merge/resources/knowledgebase/resources/articles/types/__init__.py +3 -1
  333. merge/resources/knowledgebase/resources/articles/types/articles_list_request_type.py +29 -0
  334. merge/resources/knowledgebase/resources/attachments/client.py +43 -2
  335. merge/resources/knowledgebase/resources/attachments/raw_client.py +2 -2
  336. merge/resources/knowledgebase/resources/audit_trail/client.py +10 -0
  337. merge/resources/knowledgebase/resources/containers/__init__.py +3 -2
  338. merge/resources/knowledgebase/resources/containers/client.py +72 -6
  339. merge/resources/knowledgebase/resources/containers/raw_client.py +7 -6
  340. merge/resources/knowledgebase/resources/containers/types/__init__.py +3 -1
  341. merge/resources/knowledgebase/resources/containers/types/containers_list_request_type.py +41 -0
  342. merge/resources/knowledgebase/resources/field_mapping/client.py +16 -4
  343. merge/resources/knowledgebase/resources/groups/client.py +59 -2
  344. merge/resources/knowledgebase/resources/groups/raw_client.py +2 -2
  345. merge/resources/knowledgebase/resources/issues/client.py +53 -2
  346. merge/resources/knowledgebase/resources/issues/raw_client.py +2 -2
  347. merge/resources/knowledgebase/resources/link_token/__init__.py +6 -3
  348. merge/resources/knowledgebase/resources/link_token/client.py +17 -0
  349. merge/resources/knowledgebase/resources/link_token/raw_client.py +17 -0
  350. merge/resources/knowledgebase/resources/link_token/types/__init__.py +8 -2
  351. merge/resources/knowledgebase/resources/link_token/types/end_user_details_request_completed_account_initial_screen.py +7 -0
  352. merge/resources/knowledgebase/resources/linked_accounts/client.py +32 -2
  353. merge/resources/knowledgebase/resources/linked_accounts/raw_client.py +2 -2
  354. merge/resources/knowledgebase/resources/sync_status/client.py +4 -2
  355. merge/resources/knowledgebase/resources/sync_status/raw_client.py +2 -2
  356. merge/resources/knowledgebase/resources/users/client.py +43 -2
  357. merge/resources/knowledgebase/resources/users/raw_client.py +2 -2
  358. merge/resources/ticketing/__init__.py +12 -0
  359. merge/resources/ticketing/resources/__init__.py +9 -2
  360. merge/resources/ticketing/resources/accounts/client.py +41 -0
  361. merge/resources/ticketing/resources/attachments/client.py +55 -2
  362. merge/resources/ticketing/resources/attachments/raw_client.py +2 -2
  363. merge/resources/ticketing/resources/audit_trail/client.py +12 -2
  364. merge/resources/ticketing/resources/audit_trail/raw_client.py +2 -2
  365. merge/resources/ticketing/resources/collections/__init__.py +6 -3
  366. merge/resources/ticketing/resources/collections/client.py +76 -6
  367. merge/resources/ticketing/resources/collections/raw_client.py +7 -6
  368. merge/resources/ticketing/resources/collections/types/__init__.py +4 -2
  369. merge/resources/ticketing/resources/collections/types/collections_list_request_collection_type.py +25 -0
  370. merge/resources/ticketing/resources/comments/client.py +71 -2
  371. merge/resources/ticketing/resources/comments/raw_client.py +2 -2
  372. merge/resources/ticketing/resources/contacts/client.py +49 -2
  373. merge/resources/ticketing/resources/contacts/raw_client.py +2 -2
  374. merge/resources/ticketing/resources/field_mapping/client.py +36 -4
  375. merge/resources/ticketing/resources/field_mapping/raw_client.py +20 -0
  376. merge/resources/ticketing/resources/issues/client.py +49 -2
  377. merge/resources/ticketing/resources/issues/raw_client.py +2 -2
  378. merge/resources/ticketing/resources/link_token/__init__.py +6 -3
  379. merge/resources/ticketing/resources/link_token/client.py +17 -0
  380. merge/resources/ticketing/resources/link_token/raw_client.py +17 -0
  381. merge/resources/ticketing/resources/link_token/types/__init__.py +8 -2
  382. merge/resources/ticketing/resources/link_token/types/end_user_details_request_completed_account_initial_screen.py +7 -0
  383. merge/resources/ticketing/resources/linked_accounts/client.py +32 -2
  384. merge/resources/ticketing/resources/linked_accounts/raw_client.py +2 -2
  385. merge/resources/ticketing/resources/projects/client.py +61 -4
  386. merge/resources/ticketing/resources/projects/raw_client.py +4 -4
  387. merge/resources/ticketing/resources/roles/client.py +43 -2
  388. merge/resources/ticketing/resources/roles/raw_client.py +2 -2
  389. merge/resources/ticketing/resources/sync_status/client.py +4 -2
  390. merge/resources/ticketing/resources/sync_status/raw_client.py +2 -2
  391. merge/resources/ticketing/resources/tags/client.py +43 -2
  392. merge/resources/ticketing/resources/tags/raw_client.py +2 -2
  393. merge/resources/ticketing/resources/teams/client.py +43 -2
  394. merge/resources/ticketing/resources/teams/raw_client.py +2 -2
  395. merge/resources/ticketing/resources/tickets/__init__.py +3 -0
  396. merge/resources/ticketing/resources/tickets/client.py +222 -12
  397. merge/resources/ticketing/resources/tickets/raw_client.py +21 -10
  398. merge/resources/ticketing/resources/tickets/types/__init__.py +3 -0
  399. merge/resources/ticketing/resources/tickets/types/tickets_list_request_status.py +33 -0
  400. merge/resources/ticketing/resources/users/client.py +55 -2
  401. merge/resources/ticketing/resources/users/raw_client.py +2 -2
  402. merge/resources/ticketing/types/__init__.py +3 -0
  403. merge/resources/ticketing/types/categories_enum.py +5 -0
  404. merge/resources/ticketing/types/category_enum.py +5 -0
  405. merge/resources/ticketing/types/completed_account_initial_screen_enum.py +5 -0
  406. merge/resources/ticketing/types/field_mapping_api_instance.py +1 -0
  407. {mergepythonclient-2.4.0.dist-info → mergepythonclient-2.5.0.dist-info}/METADATA +6 -1
  408. {mergepythonclient-2.4.0.dist-info → mergepythonclient-2.5.0.dist-info}/RECORD +410 -226
  409. {mergepythonclient-2.4.0.dist-info → mergepythonclient-2.5.0.dist-info}/LICENSE.md +0 -0
  410. {mergepythonclient-2.4.0.dist-info → mergepythonclient-2.5.0.dist-info}/WHEEL +0 -0
@@ -1,8 +1,8 @@
1
- merge/__init__.py,sha256=cDpZ4vHVk76b1JYrY1jq9NiAV3EDAtSZByfBsOB-OJk,1653
2
- merge/client.py,sha256=wRx8er15oPdaEIKhNNi0qI4kJioO0HAz5--tnaKZAFE,11269
1
+ merge/__init__.py,sha256=K3KxH-H0yK6Mp-fSHYH_I6TxE3EquIdXUOeclJm6yYg,1697
2
+ merge/client.py,sha256=_bxMTHVjU04PvdYXojUCiTwazrodJRBX9dtthm6pdYY,11937
3
3
  merge/core/__init__.py,sha256=HNk-wnH_j2yAf7IroaZM9JJFe4mnkNHq06t2QmaBweg,3862
4
4
  merge/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
5
- merge/core/client_wrapper.py,sha256=Mh9c6Rxbt9gEElv7SSvm6j9c-UPtb5bf9yLmSoy4f-E,3096
5
+ merge/core/client_wrapper.py,sha256=zUK07yJYwdMSE7H6lfYhP99TFOeOmlFDunsVGVCNtHw,3096
6
6
  merge/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
7
7
  merge/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
8
8
  merge/core/force_multipart.py,sha256=cH981xLy0kZVKiZZkFoeUjgJ2Zuq7KXB2aRAnmHzRDc,477
@@ -17,11 +17,11 @@ merge/core/serialization.py,sha256=ECL3bvv_0i7U4uvPidZCNel--MUbA0iq0aGcNKi3kws,9
17
17
  merge/core/unchecked_base_model.py,sha256=nq6as7p3yGVI5h7HhuqCtKZo7K83zB8nk6Qq31zqU9M,12540
18
18
  merge/environment.py,sha256=_NIx-kWS6kpztpqgz6_abDGnsZkLAO1WayrcM8gKetw,260
19
19
  merge/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
- merge/resources/__init__.py,sha256=_YlEkFnYoYiXfjmO9UNRIHj9ABd3OoIrQXD5TEnOZLI,1227
21
- merge/resources/accounting/__init__.py,sha256=3ND0F_r5Hd8xXRyBDuiWEh3toqccZ41TXRrq38aSE74,65016
20
+ merge/resources/__init__.py,sha256=uNwbPCvHeaiMsKrQIT5h-TVHJ23QBQcPv6vQWo5L1Kw,1258
21
+ merge/resources/accounting/__init__.py,sha256=n_DOAT-9BYPGEMUrhjtMgX9MIRGH2-5fWm4VjVhnGTU,65693
22
22
  merge/resources/accounting/client.py,sha256=0BdFAcBmbPlUMziYy6UXvqP6jMp7jH6qX4JTFRlAxpE,42054
23
23
  merge/resources/accounting/raw_client.py,sha256=Z2qfSB2hS9YozVdwPsSvbLeH5yeWbIaDNihubIguhNI,418
24
- merge/resources/accounting/resources/__init__.py,sha256=k0xHMKk-c1B4XhBQKR9kEatvtyxi5fycc9VmvTpjrKY,10467
24
+ merge/resources/accounting/resources/__init__.py,sha256=UfaUk-EXAteAzPPrsLygZVdaLeg36ZAIqIk6fLTSVl4,11173
25
25
  merge/resources/accounting/resources/account_details/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
26
26
  merge/resources/accounting/resources/account_details/client.py,sha256=pTW8cFYhyKT-uW4VKN08N83D9HZaF6jrF5SG5P61tGo,2815
27
27
  merge/resources/accounting/resources/account_details/raw_client.py,sha256=BUsYlgqjf5EIY5TXBbpBKsf43b1YFdn_Si9dbm-Cnzs,3365
@@ -29,18 +29,20 @@ merge/resources/accounting/resources/account_token/__init__.py,sha256=_VhToAyIt_
29
29
  merge/resources/accounting/resources/account_token/client.py,sha256=uFd8chHUMlVJvxW_DgyXNfxm3QtjdE7_1fWVChTWO9c,3105
30
30
  merge/resources/accounting/resources/account_token/raw_client.py,sha256=TuZlOj5wiVUfBjvI1Lvhd72kFfd_J8eZzOjEd1cb2uY,3651
31
31
  merge/resources/accounting/resources/accounting_periods/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
32
- merge/resources/accounting/resources/accounting_periods/client.py,sha256=6HyDF-t-9A3HbhUG7EYjMeGLGWsBzxvx5i9Zi428DGM,9067
32
+ merge/resources/accounting/resources/accounting_periods/client.py,sha256=G286EEDkgjWKRV-Lk8o5jc_we03jLoFuz2Y7AWvm-vI,9519
33
33
  merge/resources/accounting/resources/accounting_periods/raw_client.py,sha256=mz0VocQYItJMbt1Im_ZbI50Ecaf0BSWycbRLRyoqPV0,10676
34
- merge/resources/accounting/resources/accounts/__init__.py,sha256=JCWLBmK_cDqxnirEGwnOqeeIJbsD7fQzRYOImkdIgIY,1510
35
- merge/resources/accounting/resources/accounts/client.py,sha256=Lym5Jxt11clXDb04XqHrAyz7_zpgzdeKE_KRUPDqSHw,22166
36
- merge/resources/accounting/resources/accounts/raw_client.py,sha256=E05mU0Mk9B0ljsv3W7QMeROmUlBh-wKnZ3WvioIrACo,26847
37
- merge/resources/accounting/resources/accounts/types/__init__.py,sha256=9jJE0LovNrZfX496E4Llnf0-6gq8gBJWqeAjmbg4mLI,1807
34
+ merge/resources/accounting/resources/accounts/__init__.py,sha256=u4SkARLbWuVKusOCoeuYWSlRPnt9OEC97JK7PSsddFg,1756
35
+ merge/resources/accounting/resources/accounts/client.py,sha256=0GwOj618ngQZkR5QrArakQWxbTzjdQ53mG2yUYO9w0U,26239
36
+ merge/resources/accounting/resources/accounts/raw_client.py,sha256=Mgc0NaTVYPBNx1k59HPzyi9KPfyhx-gYLVmzXk0eg48,27219
37
+ merge/resources/accounting/resources/accounts/types/__init__.py,sha256=L5OJ1xMJfI7lHo4JUikGrnGPxtSyHD9U36SoQ0V5dpE,2189
38
+ merge/resources/accounting/resources/accounts/types/accounts_list_request_classification.py,sha256=gvVerf2vVEh5imH8PNsuCWho5dcYzycYQN84B2F2zvU,1196
38
39
  merge/resources/accounting/resources/accounts/types/accounts_list_request_remote_fields.py,sha256=Az9-yjthTEGOb7FdZi1s0ofW8feZI_Jo1Te64G7YsKE,819
39
40
  merge/resources/accounting/resources/accounts/types/accounts_list_request_show_enum_origins.py,sha256=p4H3hs0DYQhimbiFtKzPBJs7OUyJkGuBVlYXeMfAJ00,831
41
+ merge/resources/accounting/resources/accounts/types/accounts_list_request_status.py,sha256=ONvpr84tzm67mzn5Y3zMaQNelMcZ8oTvOOZ5Hx13i30,835
40
42
  merge/resources/accounting/resources/accounts/types/accounts_retrieve_request_remote_fields.py,sha256=y5Npkd8r2hM_TcJfluSMRV4Jmkai4gRihwius9ox7GA,835
41
43
  merge/resources/accounting/resources/accounts/types/accounts_retrieve_request_show_enum_origins.py,sha256=19cI7NBoClZ-FmQAo_WzQgxjWJOIMWnp9CXq6VTPPt0,847
42
44
  merge/resources/accounting/resources/addresses/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
43
- merge/resources/accounting/resources/addresses/client.py,sha256=3GqkSdL0kwAtHMvoQEozs1leGcQtklbUCqLI7j9n-ss,5498
45
+ merge/resources/accounting/resources/addresses/client.py,sha256=_XOUlpK5xZGNsUmhQNV-wNUPF6QjYR0cCxe08l6arHA,5656
44
46
  merge/resources/accounting/resources/addresses/raw_client.py,sha256=pf8F-difbVs5xTqzWdmJKxs_xYb94U0GdFjtk8jZ9Nw,6132
45
47
  merge/resources/accounting/resources/async_passthrough/__init__.py,sha256=fKVWk4jeqEvhNZuk0EtXPEFl5uB136ROeo8C6xczZI8,1053
46
48
  merge/resources/accounting/resources/async_passthrough/client.py,sha256=2LLJUnL3Ve6On3_pwZaZHHrso4rO1M6KusYytJdKSZg,5994
@@ -51,40 +53,41 @@ merge/resources/accounting/resources/async_tasks/__init__.py,sha256=_VhToAyIt_5a
51
53
  merge/resources/accounting/resources/async_tasks/client.py,sha256=pC32ZXOBAcGLHTmWh1qFNEOVKNWycCBzAjRv_F-UFns,2934
52
54
  merge/resources/accounting/resources/async_tasks/raw_client.py,sha256=uPVabKYIhi6jyh7i864cW-aHHHo_ifYwz2HyYJlr32E,3554
53
55
  merge/resources/accounting/resources/attachments/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
54
- merge/resources/accounting/resources/attachments/client.py,sha256=OZn-dkAflujAbixzZH_2z1OLGpKfiax2LIFMorpGIbM,16784
56
+ merge/resources/accounting/resources/attachments/client.py,sha256=pMQtyD5xO2Lbiue_mYivgpv3mWasDjokEwrm_X4ZzCs,18573
55
57
  merge/resources/accounting/resources/attachments/raw_client.py,sha256=ZsNtjO_7C1tisneUo-BsQ5m0IqJ7zBwezaUbyj0gQD4,21405
56
58
  merge/resources/accounting/resources/audit_trail/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
57
- merge/resources/accounting/resources/audit_trail/client.py,sha256=doAWb5tegHnuSJ2kIlf0wah8-A-wail_LzDR2wJdjkk,8544
59
+ merge/resources/accounting/resources/audit_trail/client.py,sha256=qDbIqHAYQEICI1q6cTcl18XjOQFXQ6KoxbYkA1yeMv0,8902
58
60
  merge/resources/accounting/resources/audit_trail/raw_client.py,sha256=8vjokzhBE9acfeoWRRXw93AqEpczQofJGVMVLpEPDsE,9102
59
61
  merge/resources/accounting/resources/available_actions/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
60
62
  merge/resources/accounting/resources/available_actions/client.py,sha256=1dHD1pkKAfeZKGJixE8h01HzV5CFTIgR-KsP7zS54yg,2909
61
63
  merge/resources/accounting/resources/available_actions/raw_client.py,sha256=9XJWLE8gtRUrVL2pNWvPq-SA7Nzg_Q1z3prv_IM3CMk,3451
62
64
  merge/resources/accounting/resources/balance_sheets/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
63
- merge/resources/accounting/resources/balance_sheets/client.py,sha256=Ftyi31j_qAz_RWnEbWqTwHMxm1uHSjnUYLrFkEfnfmk,12837
65
+ merge/resources/accounting/resources/balance_sheets/client.py,sha256=GPBXd7YNoKC_5R0Dq0lNBo_sDRe2y2j6iJwgXGO-0kw,14498
64
66
  merge/resources/accounting/resources/balance_sheets/raw_client.py,sha256=mnhmeHDON1lOsNFXrLgf_LEhqpqfR7cbatfXHsry3UY,15094
65
67
  merge/resources/accounting/resources/bank_feed_accounts/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
66
- merge/resources/accounting/resources/bank_feed_accounts/client.py,sha256=qZ_GYkG4Ol75sy1c-AFC8PckSgJfBUpYvbGi7cGYqcc,13946
68
+ merge/resources/accounting/resources/bank_feed_accounts/client.py,sha256=vuavlPPmMeHSn19sXYDGudVx57jK91Novw77SXSU0qI,14526
67
69
  merge/resources/accounting/resources/bank_feed_accounts/raw_client.py,sha256=yLOM64mSBqn2nQC6_ezDkVm6lIhnhCdBUWRYVoBSRZQ,17867
68
70
  merge/resources/accounting/resources/bank_feed_transactions/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
69
- merge/resources/accounting/resources/bank_feed_transactions/client.py,sha256=sox-eVU0ralI8TODGv7jYo1qyULSQP_VhyjL4KEP3cw,18263
71
+ merge/resources/accounting/resources/bank_feed_transactions/client.py,sha256=qpm8hG1tzyxAP_EDDES3JLZTpyCkGsoQMbi9n3z0Je8,20040
70
72
  merge/resources/accounting/resources/bank_feed_transactions/raw_client.py,sha256=k3oGtFrKAb8nOTJdp2Zb3rvSFU0hoJOMlhHfQNQv9EI,22804
71
73
  merge/resources/accounting/resources/cash_flow_statements/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
72
- merge/resources/accounting/resources/cash_flow_statements/client.py,sha256=NL8MekFovINzKj5narTrzc2KajU_NzpmE04posubXgs,13005
74
+ merge/resources/accounting/resources/cash_flow_statements/client.py,sha256=r0_U6LvUDIrYFbH9yfnBC_7P0u0OpN4JGhwujIluOm4,14666
73
75
  merge/resources/accounting/resources/cash_flow_statements/raw_client.py,sha256=qZKUG2nZ3WBCD-QzjVpPNn1aY9sEsEUzrQrR4w9PRMs,15262
74
76
  merge/resources/accounting/resources/company_info/__init__.py,sha256=0jv2RRGq4QTwU-kQoumfE7aKgqO9qIKjTG3bemrRPjw,1168
75
- merge/resources/accounting/resources/company_info/client.py,sha256=vWTffqG5uRuZSPpFon_lFzFufFPsUBJP-JLu9o3iKAs,12599
77
+ merge/resources/accounting/resources/company_info/client.py,sha256=youNPj3ZczOWIjH7slQZx2B8GdjSXIADuCL2pzcvc8o,14938
76
78
  merge/resources/accounting/resources/company_info/raw_client.py,sha256=ZUS66HDfBg5tYnPp4x_1_kwd3Co4eG6UpAlGvB_N1eE,14850
77
79
  merge/resources/accounting/resources/company_info/types/__init__.py,sha256=jRpjxUb8rTY5phW4CKbxDehacG3Yooucv6Bu9dv2fIY,1306
78
80
  merge/resources/accounting/resources/company_info/types/company_info_list_request_expand.py,sha256=vixn0_jiOrl0k-tt_kdzUHLVL4dVcV0Thk6QYia_EFI,827
79
81
  merge/resources/accounting/resources/company_info/types/company_info_retrieve_request_expand.py,sha256=cr55rgtrfdLQxRzjzp4onvrRRONcC9jl_NzE2kg-smw,843
80
- merge/resources/accounting/resources/contacts/__init__.py,sha256=i5E2SNGTIeb7M1kJr9eMRLGoTrr5Wdyb19g3kTbeB-k,1150
81
- merge/resources/accounting/resources/contacts/client.py,sha256=OJiJmpGDIoCsD3nNmf8taPBAkqouEomhgk5LwK9gXRI,34150
82
- merge/resources/accounting/resources/contacts/raw_client.py,sha256=hpcm5Bf9RhSeS5u_9Cq-rwyExFsfeEDZdCikIz5NB48,42094
83
- merge/resources/accounting/resources/contacts/types/__init__.py,sha256=0sbHxB2FUNFr5gxal-k4e8qFPwgX8Cpru7I9MLe1WUQ,1272
82
+ merge/resources/accounting/resources/contacts/__init__.py,sha256=IQBG11-b73v6C75cc24yOLhINRFdsd9vq2zHgVs3qGg,1249
83
+ merge/resources/accounting/resources/contacts/client.py,sha256=YPPggq1QfePYnNHjgC6lEulSc0O4GYU9hG322BqGrCk,38045
84
+ merge/resources/accounting/resources/contacts/raw_client.py,sha256=nTeGYRBMx7TnCrQaW_RGMpsJ7XVgQzvsVtbthEC3lB8,42256
85
+ merge/resources/accounting/resources/contacts/types/__init__.py,sha256=tl0S3sb5QzOKpccVJh3ih6gTM0QEyjEr1hhGn6TXtGk,1439
84
86
  merge/resources/accounting/resources/contacts/types/contacts_list_request_expand.py,sha256=JuJqvv0yVgLDYuJ0TyoTjZMlO4PTKhiHocrO6GH6vjA,1675
87
+ merge/resources/accounting/resources/contacts/types/contacts_list_request_status.py,sha256=VcuFOsvJdGy_n4jIvYhqrp9gQdBTE7-wlpqybLDMKCg,680
85
88
  merge/resources/accounting/resources/contacts/types/contacts_retrieve_request_expand.py,sha256=TIItJMimUJ2J3CNTNEV9wtmnG8n9zmke2tgNz3AKM2E,1707
86
89
  merge/resources/accounting/resources/credit_notes/__init__.py,sha256=iIC1_n6ZsaYrfIfnMZRdTSt-WjHbRoSPT_T2Fr3Woe8,1798
87
- merge/resources/accounting/resources/credit_notes/client.py,sha256=pBCtPUTA-zso79kwbHOWeeN14I6CZyq-x-nM1s81NjE,22158
90
+ merge/resources/accounting/resources/credit_notes/client.py,sha256=vqUxwI7Se8_4xxGVvp1CSz8hkWK7lqVUX6iIJC8sp7c,26297
88
91
  merge/resources/accounting/resources/credit_notes/raw_client.py,sha256=-QY3KAdZ5KcCGojq5LfKRHPgqrO7wrQ_UscqEDE1c0M,27213
89
92
  merge/resources/accounting/resources/credit_notes/types/__init__.py,sha256=O1goNWQHhNdyyQYt_OsU-asotrvlm-01iRCFAyAxBLY,2271
90
93
  merge/resources/accounting/resources/credit_notes/types/credit_notes_list_request_expand.py,sha256=cLYDWczwQVJoE4Dtx6l2C1DyqaD6TYdocFba8Qb_L8Q,45331
@@ -97,29 +100,29 @@ merge/resources/accounting/resources/delete_account/__init__.py,sha256=_VhToAyIt
97
100
  merge/resources/accounting/resources/delete_account/client.py,sha256=1TA_PjdRVqCFs29-mvng8_mXWVubWqQyijyJlOfQjzs,2679
98
101
  merge/resources/accounting/resources/delete_account/raw_client.py,sha256=iv6EmyXTm4FCtjeqqvJSSWEW_tyAW4I2B4Zcftlsq_c,2649
99
102
  merge/resources/accounting/resources/employees/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
100
- merge/resources/accounting/resources/employees/client.py,sha256=cBzlafdSbyn5VP-qR4IzRYNzHmGe5tqBAR-cHV0tyA4,12703
103
+ merge/resources/accounting/resources/employees/client.py,sha256=8dQcAt_K5Ft1RlUJMp03B6RhGArYMhdpIuAVAkcXRZY,14364
101
104
  merge/resources/accounting/resources/employees/raw_client.py,sha256=36bSJtJJtrCW4svjyJdnyApjAddapkgbqtdG7CLPGkY,14960
102
105
  merge/resources/accounting/resources/expense_reports/__init__.py,sha256=4-xCpFjpFCJ7Zl8w2du_4KtRD1bP9pnu71j_j6HJ6lY,1366
103
- merge/resources/accounting/resources/expense_reports/client.py,sha256=W9CMwgliIq1LM7nRlKt3_EAp9JjQf-ofUDIjPz_O3tM,37672
106
+ merge/resources/accounting/resources/expense_reports/client.py,sha256=wAdGUXNJW6K53Vy322rO_sxUTzEIkAlhE1ZPUptLHZo,42111
104
107
  merge/resources/accounting/resources/expense_reports/raw_client.py,sha256=nPZZvIB0XShL1bc67zntSP-7YxSDwGGtCb4ncT5K0hM,44852
105
108
  merge/resources/accounting/resources/expense_reports/types/__init__.py,sha256=Rp-Nq2cBWraoMV8H9sT-hnC_xrJU5nHJzF3IzgT6qb4,1577
106
109
  merge/resources/accounting/resources/expense_reports/types/expense_reports_lines_list_request_expand.py,sha256=V7UlSiB_j1YAENJ7Hgjlo56-uVnWqKGyrjrlPLNhAHw,16179
107
110
  merge/resources/accounting/resources/expense_reports/types/expense_reports_list_request_expand.py,sha256=F2qY-xF9Bn9puaZqeX6_owcoHNjZ8dA3fZpMTebKDw8,3691
108
111
  merge/resources/accounting/resources/expense_reports/types/expense_reports_retrieve_request_expand.py,sha256=G4od-4S-KDh54MthiZEBXPUzCNSA4kNus0E6QKC4tj8,3755
109
112
  merge/resources/accounting/resources/expenses/__init__.py,sha256=lvSKdXe8HfQc-KES0Je-EuDWvm44Q7S-4nCr8LM_fvg,1150
110
- merge/resources/accounting/resources/expenses/client.py,sha256=F7W_QSmc0s1dn5brnjjzB50l1uHnfVU09gqPrXM2yIg,31425
113
+ merge/resources/accounting/resources/expenses/client.py,sha256=8SZhghTe28XqoYpzW2vSNzNHONk7udA8jNLzZFd5oXI,35504
111
114
  merge/resources/accounting/resources/expenses/raw_client.py,sha256=TqCP9Yx15qJbEGRES8sMTf3WAzWljH47-DlE0QIjc4E,38474
112
115
  merge/resources/accounting/resources/expenses/types/__init__.py,sha256=Y_YDTOTDtuPaRN8Z07DZdsSHw8xsnfd-bw-NPG9KYMs,1272
113
116
  merge/resources/accounting/resources/expenses/types/expenses_list_request_expand.py,sha256=20alb3EB0ARvXmADljzBxtBkKrqtPiic2AvT2DbcYLk,18915
114
117
  merge/resources/accounting/resources/expenses/types/expenses_retrieve_request_expand.py,sha256=v9CbvBPbe2tgi89sdjwYhgt8sZtNkKYnA5xsoZ89yaY,19171
115
118
  merge/resources/accounting/resources/field_mapping/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
116
- merge/resources/accounting/resources/field_mapping/client.py,sha256=VNNx3FO1YHoAO1ej9vhsIt_PXX1bKcO8pm_2k3iMe1k,23550
119
+ merge/resources/accounting/resources/field_mapping/client.py,sha256=pTumdyWot_5H-qiMaImbds0fZqT1v-FqnmmJE-tQo38,24010
117
120
  merge/resources/accounting/resources/field_mapping/raw_client.py,sha256=IX8_D9TF6zu3F8lzhXx16aq-Sd1edL9Ju3MIzs9caLQ,29299
118
121
  merge/resources/accounting/resources/force_resync/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
119
122
  merge/resources/accounting/resources/force_resync/client.py,sha256=O1-0Ctq-sz-LipDPy-YZUzHebTMawFhbENL2H0rjzkI,3533
120
123
  merge/resources/accounting/resources/force_resync/raw_client.py,sha256=dQw_Q1SEtw4fNszVkkq4QD-gLiqSfLHWeZGKUlI_cUk,4075
121
124
  merge/resources/accounting/resources/general_ledger_transactions/__init__.py,sha256=PWIUBpXHT2it_aaBO4o7k37QfbbC_8v4MYAHrZMMkIk,1252
122
- merge/resources/accounting/resources/general_ledger_transactions/client.py,sha256=Y19QoweVuTLwln1nKsz2J442qQq1p928nShWloOSDLo,14615
125
+ merge/resources/accounting/resources/general_ledger_transactions/client.py,sha256=V6oOfebOe9sS9IRHGTYh1QlGnjeWSgz24NiRw-obKEA,17754
123
126
  merge/resources/accounting/resources/general_ledger_transactions/raw_client.py,sha256=D63SdOvqpHEJmFO0A0mc7Bc3Q70hgJTOXzWsiYBDYqU,17218
124
127
  merge/resources/accounting/resources/general_ledger_transactions/types/__init__.py,sha256=wO-P92yWGLFUz7at5qapLULhT_ADRu9vLdMtbrdXSjQ,1450
125
128
  merge/resources/accounting/resources/general_ledger_transactions/types/general_ledger_transactions_list_request_expand.py,sha256=ZLK6o66R37TBmNnZ1xZ_DUjHWVFePy_KRIL9-4SQlW4,5595
@@ -128,10 +131,10 @@ merge/resources/accounting/resources/generate_key/__init__.py,sha256=_VhToAyIt_5
128
131
  merge/resources/accounting/resources/generate_key/client.py,sha256=kcSmal1KN57Te5DbIKoCeuNyJuKspbSaKACaSgQah4w,3084
129
132
  merge/resources/accounting/resources/generate_key/raw_client.py,sha256=7d4DW4Ohj8h02z53KH1tMjAf_S0jdrbxHy09gSD76ZA,3864
130
133
  merge/resources/accounting/resources/income_statements/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
131
- merge/resources/accounting/resources/income_statements/client.py,sha256=vpJbSJtvcMxQxXpvHALwN57_sizhIqBjEqwfUc00xlE,12935
134
+ merge/resources/accounting/resources/income_statements/client.py,sha256=aMNKXxSSiTBn4b3tX1a2LmMYOEAJWacIQ3d0Br_pqp8,14596
132
135
  merge/resources/accounting/resources/income_statements/raw_client.py,sha256=0o6wHjOC9-vYqcNUnAw6AJBBxC__PPkH_BVBgPFYGdI,15192
133
136
  merge/resources/accounting/resources/invoices/__init__.py,sha256=APDTb0yWpoSu4uqzc-xPgoYtEEeneR_U47b47rYGgbI,1402
134
- merge/resources/accounting/resources/invoices/client.py,sha256=lkduncu2xpUaeP_nTy7ZmkpmNS0dPSJv8ffNCY5ZC5A,41503
137
+ merge/resources/accounting/resources/invoices/client.py,sha256=JkdS2PECxiy63n9F2W1yb-8JqpK3FKuVJ2lgMiNuaJY,46248
135
138
  merge/resources/accounting/resources/invoices/raw_client.py,sha256=O99iYBhiSMfzAI-74CgkBsvivzZILS5nrM67G-gDJQc,50734
136
139
  merge/resources/accounting/resources/invoices/types/__init__.py,sha256=tepZity0pQTwqTkpg3wnbSUgfbvZV9fTvkfxSqaPiX0,1615
137
140
  merge/resources/accounting/resources/invoices/types/invoices_list_request_expand.py,sha256=iJhSsuXqrbj4ZgRLGzPO2nomzSiZp2oFhV_VeVEC0sI,2441009
@@ -139,18 +142,18 @@ merge/resources/accounting/resources/invoices/types/invoices_list_request_status
139
142
  merge/resources/accounting/resources/invoices/types/invoices_list_request_type.py,sha256=XsKM2hgAx8-bddMxBHBCedkW_PbnS3D6foKNeR3zmXs,622
140
143
  merge/resources/accounting/resources/invoices/types/invoices_retrieve_request_expand.py,sha256=zh5Bt3RidKanmMnUziqm-JkFl1RS02jICyW0kfXcL2o,2464989
141
144
  merge/resources/accounting/resources/issues/__init__.py,sha256=fKOCxeYsbS41Y58p81luMrp7eaz6BLop2enXQ3HTvtc,1026
142
- merge/resources/accounting/resources/issues/client.py,sha256=1QkIdt0b95t2TYptl1O1qGGZsioru2r8MZhLUBXXbH0,11115
145
+ merge/resources/accounting/resources/issues/client.py,sha256=5B8E9xZY-cMc8nUyHag8ejUGM8UJlLElpOAEmwlbkgo,13276
143
146
  merge/resources/accounting/resources/issues/raw_client.py,sha256=i9N_XeX5GK2qzqX2brLfDIFRncwvoX6ADEpFbM9_MKU,13714
144
147
  merge/resources/accounting/resources/issues/types/__init__.py,sha256=c7N5BxoJGun2-0qD15I96eDPA36xKVGjt08VJoifSNo,1068
145
148
  merge/resources/accounting/resources/issues/types/issues_list_request_status.py,sha256=cBbfu1Q5A0ZPOzB7nM_VHRKEJHnxk8lqN-cGmRX6_x4,508
146
149
  merge/resources/accounting/resources/items/__init__.py,sha256=lP70QeEKjPpjMnAWSdWJGgx0KVSXAMo0FO7Vx17EWns,1121
147
- merge/resources/accounting/resources/items/client.py,sha256=VxBSmEt8B3MlrxSoqxZOrEPqzDbzSr44JcQatnPrGwM,24997
150
+ merge/resources/accounting/resources/items/client.py,sha256=E22Gd6QEIAV0onuVlU_YLMBuG7YK-wnyIYrmHmPnafU,27536
148
151
  merge/resources/accounting/resources/items/raw_client.py,sha256=KsOGCTOGQxLPSaWebijjfjj96ahw4fWnlnlcglGsAIM,31770
149
152
  merge/resources/accounting/resources/items/types/__init__.py,sha256=IyYbAJwQtijmyTHzvC4dalNL9dF9vsG8k9qxahpcD4Q,1242
150
153
  merge/resources/accounting/resources/items/types/items_list_request_expand.py,sha256=FDmwznf3cYIcS6VICN-P8zLoCFaQ2y_NaoFIhbBMu_o,9523
151
154
  merge/resources/accounting/resources/items/types/items_retrieve_request_expand.py,sha256=pwtGsTtgvHiunK4XL2wXUIYsWY9NyD5iTjRAEl_TUYQ,9651
152
155
  merge/resources/accounting/resources/journal_entries/__init__.py,sha256=9cEQmrat-nJkBdIC_aVQIIoYrrQzNQh41tovroR-SLY,1186
153
- merge/resources/accounting/resources/journal_entries/client.py,sha256=hr6Crb2g1uD0s-IMssoo-K6mP2T9BMT9mTZ3dyoDDEA,31837
156
+ merge/resources/accounting/resources/journal_entries/client.py,sha256=Y7fItEZyZCUW7ZXXOG6tRywgdFeM4SYf4dvEMr1ecwk,36032
154
157
  merge/resources/accounting/resources/journal_entries/raw_client.py,sha256=srNMp4gaQCBGCbOQznBO7OMcUPHaR-TeyfCfLigCAU8,38878
155
158
  merge/resources/accounting/resources/journal_entries/types/__init__.py,sha256=362ssf7u1FdcrVDMW2IZ03DgdJwbCQp0ERBVlG2b03Q,1336
156
159
  merge/resources/accounting/resources/journal_entries/types/journal_entries_list_request_expand.py,sha256=FxCDOHj2JuG_HkGsp_wGUPDNe-8ju5j0jVGBtszMa1c,20607
@@ -161,7 +164,7 @@ merge/resources/accounting/resources/link_token/raw_client.py,sha256=Qs4IG6GwnXc
161
164
  merge/resources/accounting/resources/link_token/types/__init__.py,sha256=5u4pc35s4TmNZ4O2Le56xHN3UZGmvlCdr-C3BfxIEOg,1100
162
165
  merge/resources/accounting/resources/link_token/types/end_user_details_request_language.py,sha256=2BMH_lFqvpT1C4ljoUh5YUm2dgiuLYil6s3_pKcn540,194
163
166
  merge/resources/accounting/resources/linked_accounts/__init__.py,sha256=qlT602tt9halCaj1oeXa66bVB_5EImiYWgBYpAFP3dY,1056
164
- merge/resources/accounting/resources/linked_accounts/client.py,sha256=9h4eo3lXGnOddnpnN_olteby0JqBBZCpTAYHYoNf8Iw,9964
167
+ merge/resources/accounting/resources/linked_accounts/client.py,sha256=fJJavTj9cB8pBskkAKF1W38svCEr3uaOg_oZYBk2syM,11348
165
168
  merge/resources/accounting/resources/linked_accounts/raw_client.py,sha256=DKRqtUwcxdHSDc1bz-qank3cZHbpyV9vl3EEB4Ti83k,10632
166
169
  merge/resources/accounting/resources/linked_accounts/types/__init__.py,sha256=xWSbOu74X9JxtUN921_jbVtBDygRoEcDyGXySS5soJc,1126
167
170
  merge/resources/accounting/resources/linked_accounts/types/linked_accounts_list_request_category.py,sha256=_EGocl5xFPQUgGIidOl4wEewCLbzqWyiXV2PIev7l7M,1354
@@ -169,28 +172,28 @@ merge/resources/accounting/resources/passthrough/__init__.py,sha256=_VhToAyIt_5a
169
172
  merge/resources/accounting/resources/passthrough/client.py,sha256=h5W8I2jamuZxNGkToWnFha7077ZDyDiIO_1BBVeQ7cI,3663
170
173
  merge/resources/accounting/resources/passthrough/raw_client.py,sha256=8KX5Dh3C8iB7anNUEmjx0_-S93hGueWQdQ0RHJ-RlYY,4009
171
174
  merge/resources/accounting/resources/payment_methods/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
172
- merge/resources/accounting/resources/payment_methods/client.py,sha256=p7vLAvVrdbJJIV9OqVfk61_AAXRCslqRakBqoBO7xE0,8975
175
+ merge/resources/accounting/resources/payment_methods/client.py,sha256=ngXkGprc-OZg96MUf109qoeFwSkq9MSDP9iM-JAR8UQ,9427
173
176
  merge/resources/accounting/resources/payment_methods/raw_client.py,sha256=5OH2vhH0kT9K8jx6WeWKN8wPak4H_BBlrnZhwwHO7xE,10584
174
177
  merge/resources/accounting/resources/payment_terms/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
175
- merge/resources/accounting/resources/payment_terms/client.py,sha256=GZgW9asjkttCT_PDPAx425jvzaOCQjGFWVnnr7ggtFU,10059
178
+ merge/resources/accounting/resources/payment_terms/client.py,sha256=VMgeF2ezt4SWosu9osz5xDau-vH_QZ6_-2_LifeUCjA,10511
176
179
  merge/resources/accounting/resources/payment_terms/raw_client.py,sha256=FQJDDHT0UPXIRAzgrKpEwbEsWpLmrK_LVh5_0I-VWns,11696
177
180
  merge/resources/accounting/resources/payments/__init__.py,sha256=XCICwwyTXicjMDD-74EqKkYdiFDL5i4HlcIjIIZxhrE,1150
178
- merge/resources/accounting/resources/payments/client.py,sha256=1vN4Z_yGUwG6A8UcdJNsIS2jxR916hzg2vUQX5Twdew,37128
181
+ merge/resources/accounting/resources/payments/client.py,sha256=RUEJukwGWynfozUIyalor5M-3IzgviDyj4h6-Ii8Mh4,41491
179
182
  merge/resources/accounting/resources/payments/raw_client.py,sha256=69yrHditdVQ8uSOnz-Y5zRXk7T4bmOmvyjQl2IeOoQ0,46399
180
183
  merge/resources/accounting/resources/payments/types/__init__.py,sha256=YosLP_reMRetxW6CZSZOLH2UD_GAg1o7SjmalhwYzj0,1272
181
184
  merge/resources/accounting/resources/payments/types/payments_list_request_expand.py,sha256=HESF9hxQQTOYD0AqaVYGTnZZ6l_l6Rrp-JccxLlf4vQ,46019
182
185
  merge/resources/accounting/resources/payments/types/payments_retrieve_request_expand.py,sha256=W1YCrMCPk3OXvDjRGZicPGCq26rfoHqzKeh4O7qTdqs,46567
183
186
  merge/resources/accounting/resources/phone_numbers/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
184
- merge/resources/accounting/resources/phone_numbers/client.py,sha256=OkI5QuvNcCVgYFHFC4s04Toqoyqf9a0fAUs4TMGJMJM,4324
187
+ merge/resources/accounting/resources/phone_numbers/client.py,sha256=2gBeSZ4Y6QA5wz_cMi_i4Ek2awGCOnseL4gneqeFVIs,4482
185
188
  merge/resources/accounting/resources/phone_numbers/raw_client.py,sha256=ZGWHZhWaRvyRIkHUdYpshBD-M_c6-MDoqEciN2tUOxw,4962
186
189
  merge/resources/accounting/resources/projects/__init__.py,sha256=JHJ4Zf_P74ov2gjzvYq0t5A4pmJOn8WY2iu1HJ1IL9A,1150
187
- merge/resources/accounting/resources/projects/client.py,sha256=ptvoqS3oag_buHWBiTnIzbYDx41Rg9i75BdYXq1cW24,12841
190
+ merge/resources/accounting/resources/projects/client.py,sha256=Wic59W9nGnBYuYSwv-9OzlVhxWVk5zwPyWmd8l-uj_o,15210
188
191
  merge/resources/accounting/resources/projects/raw_client.py,sha256=jisXKn4uAhOAXIKHhP2p6lxzOyzj-RV0Gh2V33JXvPw,15098
189
192
  merge/resources/accounting/resources/projects/types/__init__.py,sha256=wM2-Lj1XQl-qM7H7SEjoai9DV-HfaRHgWhzoYRzRNJY,1272
190
193
  merge/resources/accounting/resources/projects/types/projects_list_request_expand.py,sha256=r6K1bRyyntXlU640inM9P4HJqG6RLQ9ndcX0JQD4Y-o,735
191
194
  merge/resources/accounting/resources/projects/types/projects_retrieve_request_expand.py,sha256=M-dqOWVhmOFBgBdcpo28uUIEhwLKZPJcfMJLs1zrtxc,751
192
195
  merge/resources/accounting/resources/purchase_orders/__init__.py,sha256=3wLK0ImtoLakYmKMExzX-tXK3CPBbJw1YHkdJFVRiq4,1186
193
- merge/resources/accounting/resources/purchase_orders/client.py,sha256=vAXTx4iKQpqoA-mf12-NTbmyVDSrxHO8xcpqWxptvWM,34491
196
+ merge/resources/accounting/resources/purchase_orders/client.py,sha256=MDimpvGW0U47Cs-ai2tp2NLBVG7Nu6SNF3flge3d3TA,38662
194
197
  merge/resources/accounting/resources/purchase_orders/raw_client.py,sha256=V9t9DUPv42bHLs7dG-QWbjrrykx2bWuTMkC-IYUQPHI,41434
195
198
  merge/resources/accounting/resources/purchase_orders/types/__init__.py,sha256=wyTL9L406stZoAiZVu4uF9iCGKxFgVBvophOEy-ZaeA,1336
196
199
  merge/resources/accounting/resources/purchase_orders/types/purchase_orders_list_request_expand.py,sha256=SzeMqMfoPWvUElcCBhOcYPicrKpvLwxFcLOSfVvNXQM,46951
@@ -202,22 +205,25 @@ merge/resources/accounting/resources/scopes/__init__.py,sha256=_VhToAyIt_5axN6CL
202
205
  merge/resources/accounting/resources/scopes/client.py,sha256=1GuFde6uicpmDSVcwifjgm8mV_lIbvJifw3F4pDH52g,10826
203
206
  merge/resources/accounting/resources/scopes/raw_client.py,sha256=mokZLqpoPB5Pbb_8mQMOg34VMRZjEOQinpYStkgdsyE,11028
204
207
  merge/resources/accounting/resources/sync_status/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
205
- merge/resources/accounting/resources/sync_status/client.py,sha256=7pP0qgyI53ZOPnsE02a7PCX8CdKeaN2s92eguMFUJSo,5055
208
+ merge/resources/accounting/resources/sync_status/client.py,sha256=YA1U69lafWT1Zu81kgV-JnPouWgbcxSJsQcY4SCumKw,5109
206
209
  merge/resources/accounting/resources/sync_status/raw_client.py,sha256=U5c8z5As8nzd5WpifUqIQaAxnEMtZwkmx2YQqk9QjPY,5639
207
210
  merge/resources/accounting/resources/tax_rates/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
208
- merge/resources/accounting/resources/tax_rates/client.py,sha256=AZP4QeprWT5FUsS_5uDrat7AucaO0PE8TO4zot7VFBQ,13017
211
+ merge/resources/accounting/resources/tax_rates/client.py,sha256=fSDicMOz-BzbimO4WqA73lh_2xZmVRx6BSWoivPzjR4,14732
209
212
  merge/resources/accounting/resources/tax_rates/raw_client.py,sha256=ShWLOe3TOBG9O0b-zJLnLF-jm4Y3HqqgUknS60IuNyo,15288
210
- merge/resources/accounting/resources/tracking_categories/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
211
- merge/resources/accounting/resources/tracking_categories/client.py,sha256=Vj5MBC7pgcIxwuysUDnatzm1i5ShbK3rNNYM356j0uM,16843
212
- merge/resources/accounting/resources/tracking_categories/raw_client.py,sha256=QKTlWDk9kuwz74u4GgjDSExq5KaIS7UqzTr7Gp11MFI,19190
213
+ merge/resources/accounting/resources/tracking_categories/__init__.py,sha256=sNLfl9Xj5NB7EIcviWbFn0r-hoFy5yfqxIxd4rsGgCI,1216
214
+ merge/resources/accounting/resources/tracking_categories/client.py,sha256=E9WeMJkg1wSglgENMvtrDrTMAou3Eh4HXGPWperd2So,19709
215
+ merge/resources/accounting/resources/tracking_categories/raw_client.py,sha256=YqLvkwNGIsUvg6RsZComWyGk0JH0CPkDzutwkC6UaLw,19673
216
+ merge/resources/accounting/resources/tracking_categories/types/__init__.py,sha256=aGX4LN5UWD2af1HwtVp8v8u1zpKo953VfM4YUyzPckQ,1388
217
+ merge/resources/accounting/resources/tracking_categories/types/tracking_categories_list_request_category_type.py,sha256=a7Dw4mC0RSVTbZqoD1y5nzGNvA16TFgMJ7g_srkqn1g,751
218
+ merge/resources/accounting/resources/tracking_categories/types/tracking_categories_list_request_status.py,sha256=0o3IGpkQ-m-II0OTi2Jp4no2k2YGf10gQ9E4CEDGnDg,720
213
219
  merge/resources/accounting/resources/transactions/__init__.py,sha256=bZVFzWCyH7IY1PT6ANwQfz_3Um-Ays7L9obEFSwuyIc,1174
214
- merge/resources/accounting/resources/transactions/client.py,sha256=RGHAvow3THh6Ho2ZRna9cI5f8wyIqbVdjZmUlWhRX1o,14129
220
+ merge/resources/accounting/resources/transactions/client.py,sha256=KiyGidLpu3Vxxp5dQf7ZVFue6EPmbtUFE9si7Y40Taw,17084
215
221
  merge/resources/accounting/resources/transactions/raw_client.py,sha256=eEBMaItmgkO0nmerypa-TzubOBLsshIWqyP6PpEWRlU,16816
216
222
  merge/resources/accounting/resources/transactions/types/__init__.py,sha256=xTvqSmci44M-1g2XIUslImXz2fVQ43wnydZLGhP1Bd0,1312
217
223
  merge/resources/accounting/resources/transactions/types/transactions_list_request_expand.py,sha256=8365kWSDHZXam7FIV9rjCVBZywuFuoCG8jqGhKlOaYk,19575
218
224
  merge/resources/accounting/resources/transactions/types/transactions_retrieve_request_expand.py,sha256=XgrAFbOEPj3vRBchx9ho55T82dR0jYNp24yUEvkC6l8,19831
219
225
  merge/resources/accounting/resources/vendor_credits/__init__.py,sha256=ClG7_3Wx2L69sshr1ZqG20ug4RJnUfycJC4c_Q99BIE,1180
220
- merge/resources/accounting/resources/vendor_credits/client.py,sha256=rAzPHfo6Zi_Jkiok-MRIN_sVYslBzRc5tU_kpV1Ul2I,18988
226
+ merge/resources/accounting/resources/vendor_credits/client.py,sha256=uxMmxWw9v7WA0MCu-4Z5t5tyjBnSRERakAG1-Edg_3Q,22127
221
227
  merge/resources/accounting/resources/vendor_credits/raw_client.py,sha256=Ws0X34QjUzN5elh9AKuOm6Q3hJATD9KMudutGmM13p8,23987
222
228
  merge/resources/accounting/resources/vendor_credits/types/__init__.py,sha256=CS3zPq2dxTtuGX5iJPzaRRO8TyEQYfIcpDj4PYb6p_k,1326
223
229
  merge/resources/accounting/resources/vendor_credits/types/vendor_credits_list_request_expand.py,sha256=dT1LHp5JxN6AxdcpSdeujiyeSh_mIklDgGpE7O13b44,8691
@@ -753,7 +759,7 @@ merge/resources/ats/resources/account_token/__init__.py,sha256=_VhToAyIt_5axN6CL
753
759
  merge/resources/ats/resources/account_token/client.py,sha256=kDVIqxdjBnHvSh5gU39-RVHBdpjdp2fj37uQa8Dcdc0,3091
754
760
  merge/resources/ats/resources/account_token/raw_client.py,sha256=3GJUM1Yu9JYVaJZMwjGvLuX3cu1ZtIUsgQcPJU3QPD0,3637
755
761
  merge/resources/ats/resources/activities/__init__.py,sha256=4YOQ7P89ovcsk36fYYeOR1yACWdFll4YH8AuHEo8xZU,1534
756
- merge/resources/ats/resources/activities/client.py,sha256=z5zCMT5BQLDZ8COub3Ie5h_JSgDDttJnVm0dy-famSY,20984
762
+ merge/resources/ats/resources/activities/client.py,sha256=yXyxoVUP5SJmCxL7_TWzjLHhngPmdza1ODaJc8vfX-E,24117
757
763
  merge/resources/ats/resources/activities/raw_client.py,sha256=BcLufS4fk_TY4Wno9La265iFmww-Zd8I6kCBA3khXAo,25461
758
764
  merge/resources/ats/resources/activities/types/__init__.py,sha256=LVhSDgoBnVe46Nt17vpx2EO4I1aFMgzYlPfJm-LgFzU,1847
759
765
  merge/resources/ats/resources/activities/types/activities_list_request_remote_fields.py,sha256=EbdZeEOZoR6q7-phOELZ49XW03YsFiVnstNp7-YsC9I,857
@@ -761,7 +767,7 @@ merge/resources/ats/resources/activities/types/activities_list_request_show_enum
761
767
  merge/resources/ats/resources/activities/types/activities_retrieve_request_remote_fields.py,sha256=EptLRhlvXlziglz0aMKKWVQ-tSXLsw6twbt4d0BnMp8,873
762
768
  merge/resources/ats/resources/activities/types/activities_retrieve_request_show_enum_origins.py,sha256=gftC7Ed3Gn60h5h24vcq3xoPkNbM4di6ONmviIwKJTM,885
763
769
  merge/resources/ats/resources/applications/__init__.py,sha256=-B7Z64b2WqfbhpeKKHWHb5X41pVq0ZRKm5lMoeOjys8,1174
764
- merge/resources/ats/resources/applications/client.py,sha256=wu-ZRfT5q1pO7xSF6kJ2i5mQmCYdZP8OQgAcj38JknI,25216
770
+ merge/resources/ats/resources/applications/client.py,sha256=P4LKH6CfYhjV7wtBPE93DJITQmgPSFeso_dMtQaRXuk,28479
765
771
  merge/resources/ats/resources/applications/raw_client.py,sha256=ZsOneTzEakSNV4aX8kMV3EtWQWOtosqRPiPDNY9ShBw,31122
766
772
  merge/resources/ats/resources/applications/types/__init__.py,sha256=5TeL84ZRdU_9769pYSySH2Mmp1QAbZavlmNLsmwx8_Q,1312
767
773
  merge/resources/ats/resources/applications/types/applications_list_request_expand.py,sha256=tR95D-B0MkMq4jRvH8NW15Ol0JZffFjG7TtaSXKfWnA,117151
@@ -772,16 +778,16 @@ merge/resources/ats/resources/async_passthrough/raw_client.py,sha256=1a-h7m2cEQq
772
778
  merge/resources/ats/resources/async_passthrough/types/__init__.py,sha256=xZoQJ90iQWokoy6yfd_9sggRIkFEWCIPhmpoahoo_t0,1113
773
779
  merge/resources/ats/resources/async_passthrough/types/async_passthrough_retrieve_response.py,sha256=uBMjgizc2Qhm2JA0rRTer6NiRT3sq_v-EyTrzkiQC0g,203
774
780
  merge/resources/ats/resources/attachments/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
775
- merge/resources/ats/resources/attachments/client.py,sha256=vdaBd43M1IKXYMIExB8ZQCD6pxIQpjmOO25dCLMaEjg,20708
781
+ merge/resources/ats/resources/attachments/client.py,sha256=axV4ogBfA0TJ3vf98w0uWO6xavdsh7e55JLKK49kxr8,22505
776
782
  merge/resources/ats/resources/attachments/raw_client.py,sha256=JR3jjUvIx0zw7yhRyeKHNvWmov0Wdd5ci14bS_OvMVk,25193
777
783
  merge/resources/ats/resources/audit_trail/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
778
- merge/resources/ats/resources/audit_trail/client.py,sha256=BZ_4YRvM52dQPlBMzNuIBbeuHJZsRcGsvvhN8yKNStE,8530
784
+ merge/resources/ats/resources/audit_trail/client.py,sha256=60vA-AykZS7D2NAAAsZNVXFY-86Mb7dUJbKojFIT3oM,8888
779
785
  merge/resources/ats/resources/audit_trail/raw_client.py,sha256=GPEz5uk0SbZsB-I6CdIZVJ0iS2HqP98nZvKaVjlT09c,9088
780
786
  merge/resources/ats/resources/available_actions/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
781
787
  merge/resources/ats/resources/available_actions/client.py,sha256=DX3bAHmwfRrF7G7iG5RMYhC1eBc8xjf0WSGVmN6mExg,2895
782
788
  merge/resources/ats/resources/available_actions/raw_client.py,sha256=x5-jmQW7czfLCktzq3wdTGA6s9WP_mg62kZjV36RLEA,3437
783
789
  merge/resources/ats/resources/candidates/__init__.py,sha256=w6-8GMT_jgvRRbMbqpH5TuudhK_-vdf__uUoJVYYH1I,1276
784
- merge/resources/ats/resources/candidates/client.py,sha256=1Su5wxasKOjcD428He2ZnV2ZghPNKD8-XZk2qdoObI0,27632
790
+ merge/resources/ats/resources/candidates/client.py,sha256=Tr05aZkleo-bBUu7zfjESidx0KG88edHzakX_jzwmVQ,30449
785
791
  merge/resources/ats/resources/candidates/raw_client.py,sha256=ax5EF7RKwh77Gylrq8lpAAvGv1rmAqmwwcLQsG69338,34710
786
792
  merge/resources/ats/resources/candidates/types/__init__.py,sha256=2Dd66-CGy_epD9h_vcym9Zw0B6OQ5imiVNKvIJc5WTo,1486
787
793
  merge/resources/ats/resources/candidates/types/candidates_list_request_expand.py,sha256=FvbU_Ih2IGTXBRr5OsIZLm9ia5C7jOKNkySAf4IQLwo,833
@@ -791,10 +797,10 @@ merge/resources/ats/resources/delete_account/__init__.py,sha256=_VhToAyIt_5axN6C
791
797
  merge/resources/ats/resources/delete_account/client.py,sha256=Va8aAkmDFIT7KQ3PkvF-YbDOe5oSD5MM7H5Pf4QMrSY,2665
792
798
  merge/resources/ats/resources/delete_account/raw_client.py,sha256=d0tHdOLTXDgOClm7rPepUYBHQB787JPxQYLn_iG_JMk,2635
793
799
  merge/resources/ats/resources/departments/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
794
- merge/resources/ats/resources/departments/client.py,sha256=z5R_X8kpThmdvzy7LlL5MfBKcrqoaP9Cm78Mo1IKK4E,11195
800
+ merge/resources/ats/resources/departments/client.py,sha256=qhpFIPbwW9nftIeKQfneJnScGJix8Ge0fLJL2zSW27A,12778
795
801
  merge/resources/ats/resources/departments/raw_client.py,sha256=_F5juwCER9ea2IFT_qglg4Lc5Zrljsrq9zH9St2Oxdc,13410
796
802
  merge/resources/ats/resources/eeocs/__init__.py,sha256=Eht_-345JSmhHfFfiHIiFAxKdBT-u6oJkU7FV_Zkv2s,1474
797
- merge/resources/ats/resources/eeocs/client.py,sha256=Nv816bJR5XSVxJu6Wy_Vx60seIuHZkMY47Dypocrxu8,15749
803
+ merge/resources/ats/resources/eeocs/client.py,sha256=LpEO9MPO6ZPsgbsmhADubADqx0k19931rZejjUjrG_E,18706
798
804
  merge/resources/ats/resources/eeocs/raw_client.py,sha256=uXBdhATekmpjJ4-HeY1-N5JHO3tIte3Bf7pvsqrI4Ag,18062
799
805
  merge/resources/ats/resources/eeocs/types/__init__.py,sha256=DDModPi2jWYLgDW208-RpB2wiLQqaY_34_84J0kFSqI,1747
800
806
  merge/resources/ats/resources/eeocs/types/eeocs_list_request_remote_fields.py,sha256=p_xPGIVLJ9LpR-qm-q7G83fzM7QvUxTHSEjkOPNA7qc,3803
@@ -802,7 +808,7 @@ merge/resources/ats/resources/eeocs/types/eeocs_list_request_show_enum_origins.p
802
808
  merge/resources/ats/resources/eeocs/types/eeocs_retrieve_request_remote_fields.py,sha256=9utJHwQ_K57eeY9ySzwin_bqzgrPpk394keNT5haQZQ,3867
803
809
  merge/resources/ats/resources/eeocs/types/eeocs_retrieve_request_show_enum_origins.py,sha256=W02YUGE1_6yaLIY9xq685mExfEwL7YO1E_f9RTpH1Ko,3915
804
810
  merge/resources/ats/resources/field_mapping/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
805
- merge/resources/ats/resources/field_mapping/client.py,sha256=ahq_YiNlktOTbA5Wi1Otohp8F1BAsYjj0D3345ERNHc,23466
811
+ merge/resources/ats/resources/field_mapping/client.py,sha256=dmZMWCIA5JvaTa-jsoOaugh7g56HqRsVV2tttXZnfY8,23926
806
812
  merge/resources/ats/resources/field_mapping/raw_client.py,sha256=x269Uh0XwAC6_PTxen-Ko729u9dLsVFAmXky9n5klvE,29215
807
813
  merge/resources/ats/resources/force_resync/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
808
814
  merge/resources/ats/resources/force_resync/client.py,sha256=PhAdr3LIpyfzNf3H1gxq7qwh14yoUwwTC-tuH14v5Bw,3519
@@ -811,26 +817,26 @@ merge/resources/ats/resources/generate_key/__init__.py,sha256=_VhToAyIt_5axN6CLJ
811
817
  merge/resources/ats/resources/generate_key/client.py,sha256=5aK1zVlz0hHKe0Wko1dQ3sDLJB7F5vNwvkEGl639yC8,3070
812
818
  merge/resources/ats/resources/generate_key/raw_client.py,sha256=Fnun7LfpUy9ff1if3kAQd3b2GVeUY9i6d8kHZKd5C9k,3850
813
819
  merge/resources/ats/resources/interviews/__init__.py,sha256=M0f3PuP2gzbxKdA7puiQokB_-2dP6dNmXlAxHumHNhc,1162
814
- merge/resources/ats/resources/interviews/client.py,sha256=D1yzy00M3GjkclvZSO2SzctD7n9pVoUHZa0Fsofm_90,22316
820
+ merge/resources/ats/resources/interviews/client.py,sha256=GfmZA9AuaYOKy8WoU9OoRg4TwNtX2mbiLdTXk4gdqYM,25065
815
821
  merge/resources/ats/resources/interviews/raw_client.py,sha256=EhjoxzZXIurOtOwa-5p8FokPPrRA5PCAlhAdc4RAkLM,26915
816
822
  merge/resources/ats/resources/interviews/types/__init__.py,sha256=8AwRx46og1-F9Vc2yxw2b-O8I9gLTReazenH4p6rgbM,1292
817
823
  merge/resources/ats/resources/interviews/types/interviews_list_request_expand.py,sha256=xyq9du-PhMinUNt5dHVy4vI28htBS1HqBN49JYyLTAY,4187
818
824
  merge/resources/ats/resources/interviews/types/interviews_retrieve_request_expand.py,sha256=YSU0ceJ4gJRUXEs4wKgdd2PObfiIw_ROkmMPBIKX53Y,4251
819
825
  merge/resources/ats/resources/issues/__init__.py,sha256=fKOCxeYsbS41Y58p81luMrp7eaz6BLop2enXQ3HTvtc,1026
820
- merge/resources/ats/resources/issues/client.py,sha256=RPMvRDmxAE3dCISPIvgmQSnQXDyglfiruixGotpJSlM,11087
826
+ merge/resources/ats/resources/issues/client.py,sha256=nzGHacGPTKC2S8i4egl1WKIEwgHPhVO-m5K1CFD1Dmc,13234
821
827
  merge/resources/ats/resources/issues/raw_client.py,sha256=Q8C2hGOq2Ee51_LLDJIPq6tXbfAAlOscbe0XdNyhEt4,13686
822
828
  merge/resources/ats/resources/issues/types/__init__.py,sha256=c7N5BxoJGun2-0qD15I96eDPA36xKVGjt08VJoifSNo,1068
823
829
  merge/resources/ats/resources/issues/types/issues_list_request_status.py,sha256=cBbfu1Q5A0ZPOzB7nM_VHRKEJHnxk8lqN-cGmRX6_x4,508
824
830
  merge/resources/ats/resources/job_interview_stages/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
825
- merge/resources/ats/resources/job_interview_stages/client.py,sha256=bnNwtJaZJEwRuLs91gJ0EFzg1BrGNwoUqJTazyotyQ4,12897
831
+ merge/resources/ats/resources/job_interview_stages/client.py,sha256=NmcXDhQCqgRH8rgqaSndo6BzQRH22kIs7BrqeEqd55I,14542
826
832
  merge/resources/ats/resources/job_interview_stages/raw_client.py,sha256=YwWqkWhr8IjKBrgx3cHU8LRHALTIssAL7n59IJTBM5E,15154
827
833
  merge/resources/ats/resources/job_postings/__init__.py,sha256=dE8IJKhYq3uhrTGg7oGkkzTWvB4yhTbFsZkzDx_8chY,1041
828
- merge/resources/ats/resources/job_postings/client.py,sha256=MM31J9DH4jJu0I-c6paU0CAPdFjhE6n8uYzztVa3cek,13334
834
+ merge/resources/ats/resources/job_postings/client.py,sha256=WqlQzAtl7ngq1u960Vt6PlQ_HHCgZz2zFBLpd-misxk,15267
829
835
  merge/resources/ats/resources/job_postings/raw_client.py,sha256=84UPP_kMrFsWphQVvgQywf5FvYfzoAYPtTeML_tWiq8,15591
830
836
  merge/resources/ats/resources/job_postings/types/__init__.py,sha256=m0QGvAHivXs-2y8aG8nkM5ve4SdnpZVyZuy7JuQanOw,1095
831
837
  merge/resources/ats/resources/job_postings/types/job_postings_list_request_status.py,sha256=DD459cw_Cc4lzqomq0lCJN2Boojscl7nRSxeyQyd_l8,1023
832
838
  merge/resources/ats/resources/jobs/__init__.py,sha256=2wQdbzGIKYOV0fDQLIi7WWoDFUrz2OrHQCA_pB3RC9M,1414
833
- merge/resources/ats/resources/jobs/client.py,sha256=uD1zOB-u89SjqKr0pjfP2gEE2NGeojmFkJYCnWyBQz0,22379
839
+ merge/resources/ats/resources/jobs/client.py,sha256=_fmlnnLkevYj6pI77MMqkcii5VtpoK1JyAk_03rBj5c,25522
834
840
  merge/resources/ats/resources/jobs/raw_client.py,sha256=1HJQXeBj9sIkung1BrbzDb1Q08pQtxrK_Wu6UFmtal4,25683
835
841
  merge/resources/ats/resources/jobs/types/__init__.py,sha256=2vKTqUZQapyOqjU0PcihFsfyXFLEEPGYliSjoGeeyjc,1639
836
842
  merge/resources/ats/resources/jobs/types/jobs_list_request_expand.py,sha256=1B4kaeN4JWDbRkJKIXkdWAavlMCFf5wthnLMeeIOXl0,8483
@@ -843,18 +849,18 @@ merge/resources/ats/resources/link_token/raw_client.py,sha256=UfsNss9cKhbdQjO4p0
843
849
  merge/resources/ats/resources/link_token/types/__init__.py,sha256=5u4pc35s4TmNZ4O2Le56xHN3UZGmvlCdr-C3BfxIEOg,1100
844
850
  merge/resources/ats/resources/link_token/types/end_user_details_request_language.py,sha256=2BMH_lFqvpT1C4ljoUh5YUm2dgiuLYil6s3_pKcn540,194
845
851
  merge/resources/ats/resources/linked_accounts/__init__.py,sha256=qlT602tt9halCaj1oeXa66bVB_5EImiYWgBYpAFP3dY,1056
846
- merge/resources/ats/resources/linked_accounts/client.py,sha256=gLZgIe6ODAaPnR7XxDyLUhK3FcKi6FrO68FVdbfS59w,9950
852
+ merge/resources/ats/resources/linked_accounts/client.py,sha256=5IhBnrd6LZlzuP3l9cJyZRrVhhG5SpHCz1KALLuCYaQ,11320
847
853
  merge/resources/ats/resources/linked_accounts/raw_client.py,sha256=f9w9v_tob9fvlVfruFZMUD5uwEhfSBen8GcGHrt47RM,10618
848
854
  merge/resources/ats/resources/linked_accounts/types/__init__.py,sha256=xWSbOu74X9JxtUN921_jbVtBDygRoEcDyGXySS5soJc,1126
849
855
  merge/resources/ats/resources/linked_accounts/types/linked_accounts_list_request_category.py,sha256=_EGocl5xFPQUgGIidOl4wEewCLbzqWyiXV2PIev7l7M,1354
850
856
  merge/resources/ats/resources/offers/__init__.py,sha256=MjPZ5RGhznfkXpO1UBKjauncUUEOp4Qvz8h7Z-V2Vdk,1127
851
- merge/resources/ats/resources/offers/client.py,sha256=zYYfCi5jmB4gk4jT5zm4irNBsQaUm_D1_OFSBeQrYjA,15847
857
+ merge/resources/ats/resources/offers/client.py,sha256=lc74uHD3hONX7-qmIm-42g_3f81bA12A_kiKLQw2WrY,18174
852
858
  merge/resources/ats/resources/offers/raw_client.py,sha256=kN2FXkfQFvaf5TdW5GUNHNsrRkQCmALIpZAmxsTDu_o,18174
853
859
  merge/resources/ats/resources/offers/types/__init__.py,sha256=4vP2nHoLBttwtyhDnsgx1OtiBD1uDtzC9V137kpfXaE,1252
854
860
  merge/resources/ats/resources/offers/types/offers_list_request_expand.py,sha256=TeIQthOQikNd8KC2_dmHM_7B7rMjD5TzdY0qN5cu0Ks,767
855
861
  merge/resources/ats/resources/offers/types/offers_retrieve_request_expand.py,sha256=Y2aYRm4Iudo53A_YxRA827YZW7sEgt_mvsW6otx0YjI,783
856
862
  merge/resources/ats/resources/offices/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
857
- merge/resources/ats/resources/offices/client.py,sha256=bWjpvJ3Qw_JM8oMwXVn_lsS9UH6YM2kLVkYkqjocPdQ,11077
863
+ merge/resources/ats/resources/offices/client.py,sha256=Ou1XIBPMUii8rzGDKdm7F8K-XVkRek6l9KXksJ-p4jA,12660
858
864
  merge/resources/ats/resources/offices/raw_client.py,sha256=IicPa3g7x39HNb31sBPuVjstdWmT6i_O4fx2O6D3uQs,13292
859
865
  merge/resources/ats/resources/passthrough/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
860
866
  merge/resources/ats/resources/passthrough/client.py,sha256=wMkrClM7z-t72h1rT6mAnfUl-ddo7fTMsC8DNtI6piU,3635
@@ -863,25 +869,25 @@ merge/resources/ats/resources/regenerate_key/__init__.py,sha256=_VhToAyIt_5axN6C
863
869
  merge/resources/ats/resources/regenerate_key/client.py,sha256=Xl5_XthihvLHCwUiUopO91bEMBsvLROz98JZjRwpWiM,3096
864
870
  merge/resources/ats/resources/regenerate_key/raw_client.py,sha256=oa-Mhfxb0-dhksDAmeaATgYmrV8HjWO1bEStYbEtZTk,3860
865
871
  merge/resources/ats/resources/reject_reasons/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
866
- merge/resources/ats/resources/reject_reasons/client.py,sha256=9eU4Lp6jDByWBmDCwLBY2k0YCCXmmgJcQ6leM21UNqo,11261
872
+ merge/resources/ats/resources/reject_reasons/client.py,sha256=_ZLIhyiFqd_NVEtM_XccTI5_CeElxIfd_a2hNh4LbIw,12844
867
873
  merge/resources/ats/resources/reject_reasons/raw_client.py,sha256=mT1birKV20_95RGjmA2H5NmedTacaqFgpU10v7gG2Cc,13476
868
874
  merge/resources/ats/resources/scopes/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
869
875
  merge/resources/ats/resources/scopes/client.py,sha256=ISs8i6ITrjFESYm_O-BmOEcjWrPTWGp4_Wlo7SVhmXA,10770
870
876
  merge/resources/ats/resources/scopes/raw_client.py,sha256=ghmLHuM2p4VnSfo4rrNutN8uhN9k2VMoZ1XIEXXTTXE,10986
871
877
  merge/resources/ats/resources/scorecards/__init__.py,sha256=FM72eg-6ZJhhj9hMqsuuVUNuVYHoIFCeY6XhuKs3QvU,1162
872
- merge/resources/ats/resources/scorecards/client.py,sha256=8jIrnUEQh4Kmyx7pXldAhM9xNbFEpbJLk1381NRPgUI,16733
878
+ merge/resources/ats/resources/scorecards/client.py,sha256=l-ggORJpOyIuq-bqXUgJ2E0KPPmthV1BDVGb4U_YcLo,19260
873
879
  merge/resources/ats/resources/scorecards/raw_client.py,sha256=HykqlrZMi9CU6Ld4Es6_-tjRR7oTEXYbvYgXToJQfQ0,19074
874
880
  merge/resources/ats/resources/scorecards/types/__init__.py,sha256=qJFjLWuGIMmKkDsPB7CxdWf_EEmRNlg0kPDMEbH7uJo,1292
875
881
  merge/resources/ats/resources/scorecards/types/scorecards_list_request_expand.py,sha256=vFFF3C7SmWZV-VOpZJZE0ImcXFJvXro89z8cNlAzXwk,1731
876
882
  merge/resources/ats/resources/scorecards/types/scorecards_retrieve_request_expand.py,sha256=3Nylu_gL8zgPal4Ly45b0Hi6Mz_-I7SbhJMgK3Xr_TE,1763
877
883
  merge/resources/ats/resources/sync_status/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
878
- merge/resources/ats/resources/sync_status/client.py,sha256=ymqdxJzAAD8dDxyTNaApn-ef-woJ71bTTKTO9Rk09kw,5041
884
+ merge/resources/ats/resources/sync_status/client.py,sha256=X8xzJ_A0sPwGQhNUsnkXPjeTOaeppvMe_yfPbO0GIVg,5095
879
885
  merge/resources/ats/resources/sync_status/raw_client.py,sha256=6FgTOGOzyxYpuJVOQGqvzCwGJc_Jz8haT9ndZR7at5Q,5625
880
886
  merge/resources/ats/resources/tags/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
881
- merge/resources/ats/resources/tags/client.py,sha256=Aj55B3jpY7uV91z_kLvBhfUiYNqjO7zw_MxqWTrIpto,8032
887
+ merge/resources/ats/resources/tags/client.py,sha256=YD8N58RFmM5vIepegXDjlln_O-DJMFoxf8I4Pg4TuzM,9457
882
888
  merge/resources/ats/resources/tags/raw_client.py,sha256=lliALPUD2jfmyxWaiBxIGFFikn3VOEeB2JGHkhDlNIw,9190
883
889
  merge/resources/ats/resources/users/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
884
- merge/resources/ats/resources/users/client.py,sha256=KmOasOzzNGVV_eI1N86s8SEYlTZdWV84r-QnWXf0--k,14259
890
+ merge/resources/ats/resources/users/client.py,sha256=dVwyEO8v5sCa8309d7Q58sMkCePfDjzz9qxvzdZsW6A,15900
885
891
  merge/resources/ats/resources/users/raw_client.py,sha256=a4X9rtywjYzGGzTSphlipJQn8qtvAuZuMIm5EiHv1n4,16592
886
892
  merge/resources/ats/resources/webhook_receivers/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
887
893
  merge/resources/ats/resources/webhook_receivers/client.py,sha256=3zodHRSQJPPf98a9ExD4JopX3eLitEdDu5E1R-Aw3Zs,5210
@@ -1104,6 +1110,174 @@ merge/resources/ats/types/veteran_status_enum.py,sha256=SiiRJPvP11x6q2EWojgvD8ni
1104
1110
  merge/resources/ats/types/visibility_enum.py,sha256=c2n5A9Y267-9PpEqpNZaSCL-_-do51MdUJpTvtu-JC0,760
1105
1111
  merge/resources/ats/types/warning_validation_problem.py,sha256=RXDtt3t3FwIeGGXkIr_OHOAybDZg44L_5hOqa2sLlJ0,736
1106
1112
  merge/resources/ats/types/webhook_receiver.py,sha256=g4KQnc-vZPJGlXK-OOFIn2WGyTLKoeaq9TPWQ46VwFY,623
1113
+ merge/resources/chat/__init__.py,sha256=sH4Ll5rU3j6cBf0gx-3n0zp_GzzEw6tdalOrh-gkoxk,12186
1114
+ merge/resources/chat/client.py,sha256=sEuGeoZraPcRIc3PJhpP_WDGsYJjocvFxMfjNvE00RI,19286
1115
+ merge/resources/chat/raw_client.py,sha256=p2JWtUp5VP9wEDfOycxOZjv6ircNRYTfmv3oXwBFYnE,406
1116
+ merge/resources/chat/resources/__init__.py,sha256=T9mdBoC3DkZgn4u-PnX_0NUmAH7pCAdSgYDc8tE4jd4,3303
1117
+ merge/resources/chat/resources/account_details/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1118
+ merge/resources/chat/resources/account_details/client.py,sha256=q95tDRg6gIVvQQtanf9Eg8wjQZlHZRznTdSj5gDECj8,2803
1119
+ merge/resources/chat/resources/account_details/raw_client.py,sha256=aUWsq4oMWstzPT-48GntR5qNTu-yKvYI08Brw5iCCC8,3353
1120
+ merge/resources/chat/resources/account_token/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1121
+ merge/resources/chat/resources/account_token/client.py,sha256=yKs3BZ4SO5J_8okSP-WBU1nV33Hrr9CKe73ptYMxl6Q,3093
1122
+ merge/resources/chat/resources/account_token/raw_client.py,sha256=0FUrhyaQfhKuQyO_XI4ZZOmVjZds07BmcJkK9amLR9E,3639
1123
+ merge/resources/chat/resources/async_passthrough/__init__.py,sha256=fKVWk4jeqEvhNZuk0EtXPEFl5uB136ROeo8C6xczZI8,1053
1124
+ merge/resources/chat/resources/async_passthrough/client.py,sha256=Ew0912TQAagMFfPUTuZBanvltPvtoBGV97ZMky3N0-g,5958
1125
+ merge/resources/chat/resources/async_passthrough/raw_client.py,sha256=1UbCSOgh0DTbg51F95B6girsn8l8PRbZbf7aXBg-V1o,7351
1126
+ merge/resources/chat/resources/async_passthrough/types/__init__.py,sha256=xZoQJ90iQWokoy6yfd_9sggRIkFEWCIPhmpoahoo_t0,1113
1127
+ merge/resources/chat/resources/async_passthrough/types/async_passthrough_retrieve_response.py,sha256=uBMjgizc2Qhm2JA0rRTer6NiRT3sq_v-EyTrzkiQC0g,203
1128
+ merge/resources/chat/resources/audit_trail/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1129
+ merge/resources/chat/resources/audit_trail/client.py,sha256=SkbyCXxewr7Z9AiTX3KqwAwhkEs8r1yD585ClB-DbyA,8942
1130
+ merge/resources/chat/resources/audit_trail/raw_client.py,sha256=m-GNgX5iPfYIh9YN38gyeccSHyunUCXYDGTXg4gU7Y8,9142
1131
+ merge/resources/chat/resources/available_actions/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1132
+ merge/resources/chat/resources/available_actions/client.py,sha256=ZWaBBgfX8i1wv4Z-MDwyysKOQl9nmvRvG_JzZFjldDQ,2897
1133
+ merge/resources/chat/resources/available_actions/raw_client.py,sha256=XM6ohmjsKYhMtw0wXDGFaH2nV5Nq_p-z33GbIJA69ko,3439
1134
+ merge/resources/chat/resources/conversations/__init__.py,sha256=pHdvAsoWv7oeqAk7GYTiDmWbqT62ZlfbFPRCZ7Tdqfs,1068
1135
+ merge/resources/chat/resources/conversations/client.py,sha256=4_IbAKOIe95sqCqOfEsjs1h-jBZCQAUs96fg1umlDMw,20438
1136
+ merge/resources/chat/resources/conversations/raw_client.py,sha256=Gmb3NS5prBhDamllYqZftS5siD6BTg4znSqgYpoAlSg,21323
1137
+ merge/resources/chat/resources/conversations/types/__init__.py,sha256=ohv4GYGMuaN-0c0ps3nGhOvGzAVxCFcvouT2dbY4v0Y,1146
1138
+ merge/resources/chat/resources/conversations/types/conversations_members_list_request_expand.py,sha256=8p6nk09yablLAIPI3Hnw22CCWo9L5m8e2sFalrHTOWA,733
1139
+ merge/resources/chat/resources/delete_account/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1140
+ merge/resources/chat/resources/delete_account/client.py,sha256=AKHyoYSC70uCqv_IGRll-P3W9PqyD_viGt0EUl0aaIc,2667
1141
+ merge/resources/chat/resources/delete_account/raw_client.py,sha256=Qmdj-nw8hA1CyLu66bgsyKcJpQYZDDw-YXoDkJ7Mcfg,2637
1142
+ merge/resources/chat/resources/field_mapping/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1143
+ merge/resources/chat/resources/field_mapping/client.py,sha256=f0WedBO6sQlMMpMbPjOfmAbDZQOAgXjBxeSid6W-MDk,24766
1144
+ merge/resources/chat/resources/field_mapping/raw_client.py,sha256=dfybTq1tCUsPRwH7ZpWVvGlaFcPWc5K5AuBwyld_Jv0,30083
1145
+ merge/resources/chat/resources/force_resync/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1146
+ merge/resources/chat/resources/force_resync/client.py,sha256=lGNwo4i1I7FJjk1MowHqVnVaFapd7sdPw-pCcznF4mU,3521
1147
+ merge/resources/chat/resources/force_resync/raw_client.py,sha256=RmrXdqPYa56vCEV9vV1pBnIbKbEgmLNaITuZKmB2GM8,4063
1148
+ merge/resources/chat/resources/generate_key/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1149
+ merge/resources/chat/resources/generate_key/client.py,sha256=MFdY2ZQXGS_FpthQ_ylrKjqXawrI7xyOij8m_z1afdU,3072
1150
+ merge/resources/chat/resources/generate_key/raw_client.py,sha256=RxgM5PtJX5uMjZeecON8o8g1uv2hvpzviLjbiMhHQo4,3852
1151
+ merge/resources/chat/resources/groups/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1152
+ merge/resources/chat/resources/groups/client.py,sha256=aHKumCGCUWPasIlu2xCMx3xGudW0ugfWROvcbjMU-0Q,12684
1153
+ merge/resources/chat/resources/groups/raw_client.py,sha256=s7Mw3DFaq7Teo5Wqf7P8UHKgQvo5g7OcbKYyWqTg7xI,13316
1154
+ merge/resources/chat/resources/issues/__init__.py,sha256=fKOCxeYsbS41Y58p81luMrp7eaz6BLop2enXQ3HTvtc,1026
1155
+ merge/resources/chat/resources/issues/client.py,sha256=48ryjiHc5Op4Ku0atjyUNRlP9dRMUOU4kTSe5fFghDc,13292
1156
+ merge/resources/chat/resources/issues/raw_client.py,sha256=eKfH1zitjVVnaF_MUSvE99ccNosnhwIr8nV_jFA0FII,13742
1157
+ merge/resources/chat/resources/issues/types/__init__.py,sha256=c7N5BxoJGun2-0qD15I96eDPA36xKVGjt08VJoifSNo,1068
1158
+ merge/resources/chat/resources/issues/types/issues_list_request_status.py,sha256=cBbfu1Q5A0ZPOzB7nM_VHRKEJHnxk8lqN-cGmRX6_x4,508
1159
+ merge/resources/chat/resources/link_token/__init__.py,sha256=SnrZh75KCWfeI4PNUZFwHVSreQcmMJIqJiYcC_Ngtpo,1225
1160
+ merge/resources/chat/resources/link_token/client.py,sha256=Y4p7WAsoFNcjuqvwlqOYzqa7Ar51Uqb1Qn095Ycvs2I,13825
1161
+ merge/resources/chat/resources/link_token/raw_client.py,sha256=cp_7kHtoguMMpMYUj53HOI5EVeEixqI_qekphrJ2lt4,14239
1162
+ merge/resources/chat/resources/link_token/types/__init__.py,sha256=_R_BKsWS8EzRz6fT2MqvVt4S8shrLKb2fVJFkfPtm-Y,1424
1163
+ merge/resources/chat/resources/link_token/types/end_user_details_request_completed_account_initial_screen.py,sha256=zukDNJ3gyH3NNfkChH2SATk-rfFOnL0e1jxqJoY3g28,281
1164
+ merge/resources/chat/resources/link_token/types/end_user_details_request_language.py,sha256=2BMH_lFqvpT1C4ljoUh5YUm2dgiuLYil6s3_pKcn540,194
1165
+ merge/resources/chat/resources/linked_accounts/__init__.py,sha256=qlT602tt9halCaj1oeXa66bVB_5EImiYWgBYpAFP3dY,1056
1166
+ merge/resources/chat/resources/linked_accounts/client.py,sha256=1dAyYdqz1iToDJ7ORp92cnsIYTt3Kk4_T1vs57r8-I8,11558
1167
+ merge/resources/chat/resources/linked_accounts/raw_client.py,sha256=KyULuXyzfHUWXdLqEAVPX_80kUmGyq4ymGKUxaSHtD4,10854
1168
+ merge/resources/chat/resources/linked_accounts/types/__init__.py,sha256=xWSbOu74X9JxtUN921_jbVtBDygRoEcDyGXySS5soJc,1126
1169
+ merge/resources/chat/resources/linked_accounts/types/linked_accounts_list_request_category.py,sha256=nMUd7egTlOvafi_qQeARFnM7QranlVTlk1i_8bOVQX4,1695
1170
+ merge/resources/chat/resources/messages/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1171
+ merge/resources/chat/resources/messages/client.py,sha256=84eyxirQZqHldjn0MGOxiJxPKQNLHkTEOPLatTOcC34,17920
1172
+ merge/resources/chat/resources/messages/raw_client.py,sha256=D-lfjJQBBTv1RvwLX15eEiAfRvquyO6aboH43NzVqUk,19175
1173
+ merge/resources/chat/resources/passthrough/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1174
+ merge/resources/chat/resources/passthrough/client.py,sha256=jdKnFCd3IPKEv5rCB3iacfWBtEuN4a9h0Ec9XVL_0Vk,3639
1175
+ merge/resources/chat/resources/passthrough/raw_client.py,sha256=IBn1ueeu4yaHJR_0HCvfzBE9b-S0ls_I2UMsu56bBvE,3997
1176
+ merge/resources/chat/resources/regenerate_key/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1177
+ merge/resources/chat/resources/regenerate_key/client.py,sha256=ulMtwPRT47uW9TBRybgsazdRt3jR2UQmiGwQM58R_1k,3098
1178
+ merge/resources/chat/resources/regenerate_key/raw_client.py,sha256=pyRFSPZXls0O67WRJ5KPpeb-fRPxUfGKzlvckqw0RuQ,3862
1179
+ merge/resources/chat/resources/scopes/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1180
+ merge/resources/chat/resources/scopes/client.py,sha256=uol106QxN7WhSCG8ZUP0YEYhlrnlSXIC7_1QqPjAYA4,10778
1181
+ merge/resources/chat/resources/scopes/raw_client.py,sha256=ZBvQ6zBLxgRtlepJu_iB2ZR2eI4fbtMw_xlTPczRddE,10992
1182
+ merge/resources/chat/resources/sync_status/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1183
+ merge/resources/chat/resources/sync_status/client.py,sha256=OZZ7GtZp4IkTMROl2Swc_Yv8Hi6AZPfz2ClmykYdzkA,5149
1184
+ merge/resources/chat/resources/sync_status/raw_client.py,sha256=CF4X1qyRRepJ_hD9CmTh0slnF5ekOsDGJrOqrpxapVo,5679
1185
+ merge/resources/chat/resources/users/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1186
+ merge/resources/chat/resources/users/client.py,sha256=-QC3kZpxBSAvzBjg866VIpbg48cKasjw1q_J0XJW5rg,13790
1187
+ merge/resources/chat/resources/users/raw_client.py,sha256=51vABBOYzg_FZEx6cHLwEmfmsOsdA7jaThjaMR3UpCU,14450
1188
+ merge/resources/chat/resources/webhook_receivers/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1189
+ merge/resources/chat/resources/webhook_receivers/client.py,sha256=lCN4JXwZCahbV1LMnQwTd0WlA21sLmf-whvcQEq0xGk,5214
1190
+ merge/resources/chat/resources/webhook_receivers/raw_client.py,sha256=F4vSoNlsl91hOzgSzXpqqNwiCMIpbj-31C7x35S8W5g,7135
1191
+ merge/resources/chat/types/__init__.py,sha256=CdNjwWp2aB-QjXvmlIF7vAp4YKk8G8M5QdLDb26BmpQ,14199
1192
+ merge/resources/chat/types/account_details.py,sha256=6FjFKxsxftOM5DJIiueXWPtJZkuFMIVSgcB_2UT7t8w,1617
1193
+ merge/resources/chat/types/account_details_and_actions.py,sha256=4S2cnfZ4T8vU-rudpCuZWlH23sgL4dk6n9k1ZbzrQt4,2121
1194
+ merge/resources/chat/types/account_details_and_actions_category.py,sha256=bn6Sf9zNV2E_CQZOB6u8f2SrPUAsj9422o_pU6m9tq0,188
1195
+ merge/resources/chat/types/account_details_and_actions_integration.py,sha256=CVJIlOAauqdX0qD-njlO7yyJ8t-wiSHFMUQPqFSPyZ8,947
1196
+ merge/resources/chat/types/account_details_and_actions_status.py,sha256=49pgc9uLW5o2ErI-5RyayatZBDKXiW__Rh0KO83iWY0,256
1197
+ merge/resources/chat/types/account_details_and_actions_status_enum.py,sha256=GFrBpSLOiSBWhIoDyKgp7q6WbH5EgKBampdXQzC1C4Y,1065
1198
+ merge/resources/chat/types/account_details_category.py,sha256=BQ4dV2k-gK9UW90unpjLU2XMuKy1sBduYF0sYG1TAj0,178
1199
+ merge/resources/chat/types/account_integration.py,sha256=woIDDuKOFJNZitvHmnF8PK2AI2dFhmF32i-mpWkmtbU,2614
1200
+ merge/resources/chat/types/account_token.py,sha256=j_8nNYQzRvZK16M1GpiNa7BpUtlk6VBCQtQufciwXSY,671
1201
+ merge/resources/chat/types/advanced_metadata.py,sha256=cTz8xVhwLNkda-__OMaMuX_-ECPhJ5SGGlsXRGnSv-E,829
1202
+ merge/resources/chat/types/async_passthrough_reciept.py,sha256=iHWDi7ghYhCpGtJGOTZVOuDbX6Pk-oNW0K8d0aCR2NM,597
1203
+ merge/resources/chat/types/audit_log_event.py,sha256=c1GAS5BAxb2tJ4df2ouL9CJd0vVi6t_g3xv2SMvFHbw,4530
1204
+ merge/resources/chat/types/audit_log_event_event_type.py,sha256=PMjqzsD8LmLzNW_8PqV11MzykS4Cga4p1w-w36-ADwc,182
1205
+ merge/resources/chat/types/audit_log_event_role.py,sha256=PsoFhqmQ9DiuAx5xQ85KqNvmi3IH_RMWhVScOGSihpg,161
1206
+ merge/resources/chat/types/available_actions.py,sha256=j-KMLrxEDj8gAlMsEIPs0kRW_LjtEk0IjGB_W04vDMc,1066
1207
+ merge/resources/chat/types/categories_enum.py,sha256=vnFTz2Aeoaieb5VhmGabAGHlc-3U1Or5ygjB2g5k41w,1603
1208
+ merge/resources/chat/types/category_enum.py,sha256=7hv-PXVE1JmNQD7yjp16POyeGfZQSaZIzjOdxmI56Vc,1585
1209
+ merge/resources/chat/types/common_model_scope_api.py,sha256=iikeXuknnlFYmnwoRcQ34AnBwbpAPIYhgmov3HpeBGg,812
1210
+ merge/resources/chat/types/common_model_scopes_body_request.py,sha256=KMnJBN-wDY0eQNjXYAgoiyoyXY74T9pzZum_2BIiUhU,726
1211
+ merge/resources/chat/types/completed_account_initial_screen_enum.py,sha256=O8ZkUxzZ79KqliNtuFiA2dhVSsYCysziBgyRDG3pGZI,149
1212
+ merge/resources/chat/types/conversation.py,sha256=B_qgDP14webkgm7d6krdmMCUwsU7lE3MqiV52FZuo-w,2656
1213
+ merge/resources/chat/types/conversation_type.py,sha256=r2ju7rTTCvCaSzTxV17fFjubI0GKTVDwpHN5G3tLg6s,160
1214
+ merge/resources/chat/types/data_passthrough_request.py,sha256=arL5gXYjwGtbdAcjx3hggnoLmZsiRITvn9lXPn08sNw,2533
1215
+ merge/resources/chat/types/data_passthrough_request_method.py,sha256=pPQyuc3sRVbGsvXWrtdwzNYsosT3CzBjXEFLVkGWolo,178
1216
+ merge/resources/chat/types/data_passthrough_request_request_format.py,sha256=GJSbco-ga_oRQkgoqLgiw4JxKuYUjp2gcIBGJy9BdOE,207
1217
+ merge/resources/chat/types/debug_mode_log.py,sha256=_aDyb6W3eB98mw4lcnG-oXwpOx99KbuBnrUXP6IwdTc,684
1218
+ merge/resources/chat/types/debug_model_log_summary.py,sha256=Ab0MWIdzb7pBW6U6lJwhN1VL6H9qDcXnNmUAd1pZuE8,606
1219
+ merge/resources/chat/types/enabled_actions_enum.py,sha256=RBwvCMjrrdPPAbnQXAwKczXklo0uxpgYVrfcDs6lSRo,522
1220
+ merge/resources/chat/types/encoding_enum.py,sha256=ervs42mwv6m0bBeWe-QKdG02RRVLIlFhLOVjzmqen3c,739
1221
+ merge/resources/chat/types/error_validation_problem.py,sha256=DU24juX63Pole34us76TQkTcIhhq7wOCtGAd5OiTZ7s,785
1222
+ merge/resources/chat/types/event_type_enum.py,sha256=wfHQ1fs-1Kca2-WWcmkV_-G4H-RgZVlntxEtZj_VzO8,13928
1223
+ merge/resources/chat/types/external_target_field_api.py,sha256=7qYlHHE-NAj2mbecB_tWxwtNftguu6LIXlfc5ifg5G8,684
1224
+ merge/resources/chat/types/external_target_field_api_response.py,sha256=TvetCRrD5lHlhtCU0myLxmN-2RMmoVLcdEa05frjxpE,1096
1225
+ merge/resources/chat/types/field_mapping_api_instance.py,sha256=N0khXpICVaxPka4bQi0F4k96B423GTDW7l1NYZRclzM,1022
1226
+ merge/resources/chat/types/field_mapping_api_instance_remote_field.py,sha256=HJk927XuxCs-tNA_72KySK3dLY9PZlM21YR8KKelWxw,971
1227
+ merge/resources/chat/types/field_mapping_api_instance_remote_field_remote_endpoint_info.py,sha256=14nzCKH-TW0p4bxGHZl-EccAwsPGaa2suQ1WEs6qxu4,737
1228
+ merge/resources/chat/types/field_mapping_api_instance_response.py,sha256=cqrBXyBN8iXRtCg_5ElBOtrQt_Af4EtaltPmyNEHd8E,1103
1229
+ merge/resources/chat/types/field_mapping_api_instance_target_field.py,sha256=Bjo9opp2p9gcuuoMvCNtZxm4kbh4uowuC9ST9tRoLM4,636
1230
+ merge/resources/chat/types/field_mapping_instance_response.py,sha256=wrRYB0RI5TkHt6ugR5aKYB7at2sgbuPJ-6zQ9DBm43Y,990
1231
+ merge/resources/chat/types/field_permission_deserializer.py,sha256=iycoe64xsMDW-luGbNhfdQw3fANbvS7cUxzfyUezzHQ,734
1232
+ merge/resources/chat/types/field_permission_deserializer_request.py,sha256=cotKpyilSrE7wP4UEhu8W0f8MSpzG8PqvIiMgrhtWwk,741
1233
+ merge/resources/chat/types/group.py,sha256=7UV211UBlyCJxCIZ8kykcHSyV2aS6RvbBnHxo-hFqE0,1936
1234
+ merge/resources/chat/types/individual_common_model_scope_deserializer.py,sha256=BJzQQjO4cycEfSJZEiN6jurJrxGYQlRsBgKSAStlRD0,904
1235
+ merge/resources/chat/types/individual_common_model_scope_deserializer_request.py,sha256=w4C16ZKCwfd621lTG2grC5SHNkvwmIfSQtyzPex0Jns,955
1236
+ merge/resources/chat/types/issue.py,sha256=F1fGOu_vvsxF3ZJa8y6egizcSFujLJ5BHkwWnnjGpKQ,1178
1237
+ merge/resources/chat/types/issue_status.py,sha256=LCtQa_3Xj6JjupNyLEEui7QQu9nQW-dyCtFKveYrbKU,177
1238
+ merge/resources/chat/types/issue_status_enum.py,sha256=LyAyUrrmvKbovYkhYTPMzVGvvXgzEs61pAXgPFJ0Aug,555
1239
+ merge/resources/chat/types/language_enum.py,sha256=FuF4oIahcE954MHHDIZHmvBf9ENLvUrkmNFryHzO-oE,469
1240
+ merge/resources/chat/types/last_sync_result_enum.py,sha256=iKiu1Zk-mue5Ki725f7_DorLDboH1l4W86upM77y1hQ,1319
1241
+ merge/resources/chat/types/link_token.py,sha256=fYa5j3XnK01j8XHUx_A6fa95qXQ3OrRHs43vW54VU1g,663
1242
+ merge/resources/chat/types/member.py,sha256=hYFkqlxAZc3FyMLjdcaizEkrZmPhBsWS-bUAQmP1gWg,2191
1243
+ merge/resources/chat/types/message.py,sha256=bo0QOSvaCi_7BC999mUXgET7wBaWTBVzw7pRhroYknY,2388
1244
+ merge/resources/chat/types/method_enum.py,sha256=TSpKQkDMHSQWo_kyeYo4g1uh7DqyVgZx_REojfiLw0Q,1275
1245
+ merge/resources/chat/types/model_operation.py,sha256=43OJAKzDJO2_lza7ZpUZRweK8d467yGi7Gc61nGHHbg,976
1246
+ merge/resources/chat/types/model_permission_deserializer.py,sha256=v6Zcw8iqy2BikPwjRbjFkb8XHtwRQ9dPwglVv6RRQ2w,608
1247
+ merge/resources/chat/types/model_permission_deserializer_request.py,sha256=6cooL99_wmh88WFFvFRjy6fSZkOaYcp5DAQ75OVxRws,615
1248
+ merge/resources/chat/types/multipart_form_field_request.py,sha256=XYsae6NiWBZn_QLaVBRbcI--1nTP6p80g-DK_5jv4m8,1649
1249
+ merge/resources/chat/types/multipart_form_field_request_encoding.py,sha256=USUfqDHbe7yxsqUbe5abnuj3X2zBdwIbJqaX3Pc6y78,189
1250
+ merge/resources/chat/types/paginated_account_details_and_actions_list.py,sha256=ETdolXusOlWKNDXnA5z3uhWWPd1bVr48WCg5nlRRw9Y,794
1251
+ merge/resources/chat/types/paginated_audit_log_event_list.py,sha256=3DbmS3WJJpWSSokV8AtFAW4ZMObZoAgL25_2SD2mr5M,749
1252
+ merge/resources/chat/types/paginated_conversation_list.py,sha256=NCNKNQsan74FgudS0B-KrbsiIj2iuUK319pRy20IKWQ,743
1253
+ merge/resources/chat/types/paginated_group_list.py,sha256=jEVjuIK6sUknFRLjQjGJFuN0Sl6GiOtDnBf9bFFndt0,715
1254
+ merge/resources/chat/types/paginated_issue_list.py,sha256=t-mzEglr1Qr08OZ-Yv5xDSsK7yDXfIlJiiGtkLLvKfY,715
1255
+ merge/resources/chat/types/paginated_member_list.py,sha256=zGy8jKgoEmQUMHrbgWGU33FmZbPCEqrVNsfEq-kpexc,719
1256
+ merge/resources/chat/types/paginated_message_list.py,sha256=A_cOPoEDUxau9b480Lz8sQm2mZEuYix26o-TfDV7O9U,723
1257
+ merge/resources/chat/types/paginated_sync_status_list.py,sha256=FWYeHhnnJZII_HHKzO12Vr4UJLReNd1qqIoDtDCV6rQ,736
1258
+ merge/resources/chat/types/paginated_user_list.py,sha256=QmSAMQlC-Ji0rJbh16YfXw9j20QqNo0Mn6W4fOxcDPg,711
1259
+ merge/resources/chat/types/remote_data.py,sha256=oJv-PNMNNvs2hZ8_LLe9wkXlNu3RZMUuu1kK4sikG6E,916
1260
+ merge/resources/chat/types/remote_endpoint_info.py,sha256=0BxMkicfPbBLjFDQ71H0TQ9BbTDcGduHmBZjsPZss1M,655
1261
+ merge/resources/chat/types/remote_field_api.py,sha256=wMBjIwazeFhCKlvi9_gCl7l7pX4Cl0ySF4CZyW9-zsE,1130
1262
+ merge/resources/chat/types/remote_field_api_advanced_metadata.py,sha256=jaPWv3UaoR-vuA7YruzUGYFTKheP4cBMHnvXKjZVVl0,198
1263
+ merge/resources/chat/types/remote_field_api_coverage.py,sha256=4bdB5WY4RcmZWXAIOeR_vTqnwIJsGr5eeSJDJFKxgq4,130
1264
+ merge/resources/chat/types/remote_field_api_response.py,sha256=JGCAJMN4D4QI2kO34muXb-j8RfnbJFT4Fg1foBx9GyQ,1025
1265
+ merge/resources/chat/types/remote_key.py,sha256=IUVDqmN_R6yVVyHBPoLJewe-RJaSJsJW-2KSWaRPwUk,800
1266
+ merge/resources/chat/types/remote_response.py,sha256=SnwWCI_5_y7myn0bpjBd6Giy6w3Fz9Kbqiv_5qKzLb8,1223
1267
+ merge/resources/chat/types/remote_response_response_type.py,sha256=5Qk3fCqV2Ih7UXMmMKcXWn74DjbM4wUIwiuQXvGO3so,195
1268
+ merge/resources/chat/types/request_format_enum.py,sha256=v1EstmPH4e1TyCKBO5TPsH-vx1TwIzAPs6PfCYi0Syo,723
1269
+ merge/resources/chat/types/response_type_enum.py,sha256=zqPQup0zjTkzbxnS1F65-sw6N_jVrU88n8cJcbv43MU,562
1270
+ merge/resources/chat/types/role_enum.py,sha256=JzKpj3sXZOIiPGg6qZXvBG7JEVYEkCfAQXQ5XjXugbI,1193
1271
+ merge/resources/chat/types/selective_sync_configurations_usage_enum.py,sha256=jcC5pYXTdX59k0ay3YBJT_uleDpT_h7GweHTwpyddH0,695
1272
+ merge/resources/chat/types/status_fd_5_enum.py,sha256=9uFhTnWd-OPGZ-HbAwKZp_FL2weOIVsNjef1tc2jJXo,1284
1273
+ merge/resources/chat/types/sync_status.py,sha256=dSf0uOh8TCgMJ7S3YeU6KyFIOqzgKJDGxqr2XwoT67Q,1469
1274
+ merge/resources/chat/types/sync_status_last_sync_result.py,sha256=NY6veRnsfFgeHEMlj9Q35FFJCKoCOQAmtLotkPTPbSU,200
1275
+ merge/resources/chat/types/sync_status_status.py,sha256=VAGVIs8Hv1VAaU0_UNCXjXLFcbMHs4P7muYSh9gkUX4,177
1276
+ merge/resources/chat/types/type_enum.py,sha256=MJmuA-T921SdmeMWqLbkYbCNYMvsiyhESCn16UHQKrk,1124
1277
+ merge/resources/chat/types/user.py,sha256=rdnYv_wmOIQ4vrlhe3DwK1H9f4EG0kvAReX_lBwkSew,2578
1278
+ merge/resources/chat/types/validation_problem_source.py,sha256=0ayE7x_uM8R0pzVRz9ZZEc6WS1RUZO3VW3zXjh61RVs,576
1279
+ merge/resources/chat/types/warning_validation_problem.py,sha256=t9CzZaDPK9NykBCj9ok4cJoOXNixtxQCf_DuQg48xDc,787
1280
+ merge/resources/chat/types/webhook_receiver.py,sha256=g4KQnc-vZPJGlXK-OOFIn2WGyTLKoeaq9TPWQ46VwFY,623
1107
1281
  merge/resources/crm/__init__.py,sha256=I1Dx1Bc69UOTtkwMknaPpfK2x4uDn1Zn_1QR7h_FyTY,26379
1108
1282
  merge/resources/crm/client.py,sha256=fpunHX755dQIqGkddtd9FRFVYKmArc1yDgFVPnkgeog,27462
1109
1283
  merge/resources/crm/raw_client.py,sha256=9guTBIuihjloPhDBKAPHrND1Kuz_85FpO3OrLwqeXA8,404
@@ -1115,51 +1289,51 @@ merge/resources/crm/resources/account_token/__init__.py,sha256=_VhToAyIt_5axN6CL
1115
1289
  merge/resources/crm/resources/account_token/client.py,sha256=EuB2_KutZ1ExKd3WHuPB7MzhGsRzbCDOvBZ9fY-coqU,3091
1116
1290
  merge/resources/crm/resources/account_token/raw_client.py,sha256=EYTY7DvZhUXUokh98OiYMwJrgsyTlvSVCkmvavJcu8U,3637
1117
1291
  merge/resources/crm/resources/accounts/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1118
- merge/resources/crm/resources/accounts/client.py,sha256=AInmFT3CkY227FegZboImwXTCqyKPSbtldxSoQBBELw,30131
1292
+ merge/resources/crm/resources/accounts/client.py,sha256=ZjyiHzFZiAFNGnuqs8au_feR2TUkPwq6SN5RF728iis,32784
1119
1293
  merge/resources/crm/resources/accounts/raw_client.py,sha256=_HxhV76aITtcXSdzEmYrEC87UT3vwZugF0xmTiPjqOg,38029
1120
1294
  merge/resources/crm/resources/association_types/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1121
- merge/resources/crm/resources/association_types/client.py,sha256=K7lG7NGiV77YFYmL4opOEx7rR6u2DFSE3XDg-uHO7QE,21228
1295
+ merge/resources/crm/resources/association_types/client.py,sha256=Xb0c3Gf_wCSRVR1TZPaUiDC6cwIg7eN_tfvYn0yDKlE,22939
1122
1296
  merge/resources/crm/resources/association_types/raw_client.py,sha256=a2mvRSpAb1V5JmEIXWzF3HEthN5v5lrqSVKuVqlhE2I,23547
1123
1297
  merge/resources/crm/resources/associations/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1124
- merge/resources/crm/resources/associations/client.py,sha256=6fZQgLWyTslNruVj8EF4RVZW9QXRv7Am030hR7A9igY,14591
1125
- merge/resources/crm/resources/associations/raw_client.py,sha256=Xj_FpQ1Ut6rfJO5sDNi12yzhBOMYQQQ80jDOHKYG-Sc,16008
1298
+ merge/resources/crm/resources/associations/client.py,sha256=SOF8hiyWkhL4Kr8UgqRRaD0ZNl7YourKTwPUWRxhhEg,16258
1299
+ merge/resources/crm/resources/associations/raw_client.py,sha256=MDwbWDw5U2Rj01xXHDQ-dYX3-h1kpLIcjBC_fpUapCg,16008
1126
1300
  merge/resources/crm/resources/async_passthrough/__init__.py,sha256=fKVWk4jeqEvhNZuk0EtXPEFl5uB136ROeo8C6xczZI8,1053
1127
1301
  merge/resources/crm/resources/async_passthrough/client.py,sha256=oMxHAGi_51VevQFjwztWBnzwpKvHesZIqSkVkb9JQaA,5952
1128
1302
  merge/resources/crm/resources/async_passthrough/raw_client.py,sha256=3TIPPbYmEDnUqOpk9qTgyAwDmksbYFDyjPh9gSXocRw,7347
1129
1303
  merge/resources/crm/resources/async_passthrough/types/__init__.py,sha256=xZoQJ90iQWokoy6yfd_9sggRIkFEWCIPhmpoahoo_t0,1113
1130
1304
  merge/resources/crm/resources/async_passthrough/types/async_passthrough_retrieve_response.py,sha256=uBMjgizc2Qhm2JA0rRTer6NiRT3sq_v-EyTrzkiQC0g,203
1131
1305
  merge/resources/crm/resources/audit_trail/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1132
- merge/resources/crm/resources/audit_trail/client.py,sha256=J3_6z80vBqR0C5L2OGetFRR5tv5nj_dgF7AQ4QCIbrU,8530
1306
+ merge/resources/crm/resources/audit_trail/client.py,sha256=2H7-og4Gy6SNrg3ODImqyBZvIA1dx8M5ybm7LqL2n98,8888
1133
1307
  merge/resources/crm/resources/audit_trail/raw_client.py,sha256=cnqykgvXoIxtayDCFPcMMIaznN3tEeSqTBYMk-tswE8,9088
1134
1308
  merge/resources/crm/resources/available_actions/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1135
1309
  merge/resources/crm/resources/available_actions/client.py,sha256=aX4PwUhOJX3UDXt6uOcmUIafkTX5Fz6LXGKrz1XuhF4,2895
1136
1310
  merge/resources/crm/resources/available_actions/raw_client.py,sha256=lJ0EydFe5eAVZP0lKPc4mvVqck4OHtsNb5vXO3N4-Ew,3437
1137
1311
  merge/resources/crm/resources/contacts/__init__.py,sha256=i5E2SNGTIeb7M1kJr9eMRLGoTrr5Wdyb19g3kTbeB-k,1150
1138
- merge/resources/crm/resources/contacts/client.py,sha256=gjOMBGWIY92dM7bsJABX-XispSkv0oKp-w4nyu2zkH8,33981
1312
+ merge/resources/crm/resources/contacts/client.py,sha256=SrIESKeWvlG-U__pWVZKPrMcOrUm-sXLeTgpSTJG3_4,37356
1139
1313
  merge/resources/crm/resources/contacts/raw_client.py,sha256=cLZCbCYpjZVuG4RoxS7ogF2sTWTC48it0WdDSEaJuBc,42188
1140
1314
  merge/resources/crm/resources/contacts/types/__init__.py,sha256=0sbHxB2FUNFr5gxal-k4e8qFPwgX8Cpru7I9MLe1WUQ,1272
1141
1315
  merge/resources/crm/resources/contacts/types/contacts_list_request_expand.py,sha256=3jpmdW9B7lQSmgVL9lK9jBKKsWEMJ5CCWzhj4LMzV3I,715
1142
1316
  merge/resources/crm/resources/contacts/types/contacts_retrieve_request_expand.py,sha256=VpBRp_fbcwD7WwMm0PaRjndExE7Mrryjs9vMkT4J0ak,731
1143
1317
  merge/resources/crm/resources/custom_object_classes/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1144
- merge/resources/crm/resources/custom_object_classes/client.py,sha256=Iscv2GR_5agmvFCmvQRQ_GzFWRKBJ6pL7VKaQ2JQxdo,12567
1318
+ merge/resources/crm/resources/custom_object_classes/client.py,sha256=wtuqzVvbAf09JzDFZ4kjADRrPImajdKlvnQxjht-lfw,14150
1145
1319
  merge/resources/crm/resources/custom_object_classes/raw_client.py,sha256=ymwlRMI42OSA6jxKcMkYYFfNXitX3Fw1KQ4LusqgWfc,14802
1146
1320
  merge/resources/crm/resources/custom_objects/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1147
- merge/resources/crm/resources/custom_objects/client.py,sha256=s8bBrgXPCCNRgTRsGxalXqB4wjo6LuMSODKBFm3orsk,26468
1321
+ merge/resources/crm/resources/custom_objects/client.py,sha256=IN6tSu1Ye9v0L58egDTytvhg88OEuLp2mlLrjrcJz7w,28869
1148
1322
  merge/resources/crm/resources/custom_objects/raw_client.py,sha256=C-sOULjTjcsNnKBUp83QCy3iEikgoAvNFYnB-q8T_SA,30844
1149
1323
  merge/resources/crm/resources/delete_account/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1150
1324
  merge/resources/crm/resources/delete_account/client.py,sha256=t7_exzl6ouIWqV69TkhUPMhEYSLHe9g64YV10sjqmuo,2665
1151
1325
  merge/resources/crm/resources/delete_account/raw_client.py,sha256=Y7KUkoPjguN2MSfE492uI4zoJZ7EyVoTo70-2-_p_k0,2635
1152
1326
  merge/resources/crm/resources/engagement_types/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1153
- merge/resources/crm/resources/engagement_types/client.py,sha256=gvwLJe_sSFODSbK2hmqkGJ_loG8OguULkVUa3ZcvT5E,18964
1327
+ merge/resources/crm/resources/engagement_types/client.py,sha256=lfAHnXAHw1aSQoyr0azdP1XLnsPIQjlgZ420sRBM0bo,21237
1154
1328
  merge/resources/crm/resources/engagement_types/raw_client.py,sha256=wtbMEX5oZIBQqaQFXtfWfOCLWeCrID9OJjeZzaI6iws,22238
1155
1329
  merge/resources/crm/resources/engagements/__init__.py,sha256=bgw-Od9HZ7U1K6UMwrw7dwAip_DrWE0Y5_HNSFO0Ilo,1168
1156
- merge/resources/crm/resources/engagements/client.py,sha256=9MUe0twXa4s9WSmpeCLcQCM5oo6_AE1F5Z2EEJ6xtV0,30794
1330
+ merge/resources/crm/resources/engagements/client.py,sha256=fl3FmtuqhhR5GsciPvifW5v9Kr1WFKQ0uPQzLtwFA2k,34541
1157
1331
  merge/resources/crm/resources/engagements/raw_client.py,sha256=snyfoYyqgdkvym_atp_-CflTPZh81oaAQMe47WwYoQU,38906
1158
1332
  merge/resources/crm/resources/engagements/types/__init__.py,sha256=35Ow6ve2QGig9op5rEGnWhSgWjpVYMpXAxY1fENMlBg,1302
1159
1333
  merge/resources/crm/resources/engagements/types/engagements_list_request_expand.py,sha256=VrYBbS0i7FbnpXs6WrsLYgGNACzlCS2xcBAByWqKz28,3563
1160
1334
  merge/resources/crm/resources/engagements/types/engagements_retrieve_request_expand.py,sha256=DCOjQ864L2xCCmTDnJihmvzumIQRYIPQkC8yjXpU__Q,3627
1161
1335
  merge/resources/crm/resources/field_mapping/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1162
- merge/resources/crm/resources/field_mapping/client.py,sha256=MTj47aFFL6yO0HZ6JJxJc0hYuPxkLIv2IPCk4xhvwus,23466
1336
+ merge/resources/crm/resources/field_mapping/client.py,sha256=l3doEu62f24ec-9R_vtbrptrTjjhuRd1D6oxQ_PGDes,23926
1163
1337
  merge/resources/crm/resources/field_mapping/raw_client.py,sha256=Gn9MOWTHpQvj9N33yIS1IGKcRycbPgzX7AScmCc-LS8,29215
1164
1338
  merge/resources/crm/resources/force_resync/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1165
1339
  merge/resources/crm/resources/force_resync/client.py,sha256=qUw0jogmE2P8lpLf2yAB7VueuyS8Ob0IQHrSV89AOrw,3519
@@ -1168,12 +1342,12 @@ merge/resources/crm/resources/generate_key/__init__.py,sha256=_VhToAyIt_5axN6CLJ
1168
1342
  merge/resources/crm/resources/generate_key/client.py,sha256=wHd3njlOs4N8KWU25mQZJ_IP1EQ9waWqZSBWJRK7d9M,3070
1169
1343
  merge/resources/crm/resources/generate_key/raw_client.py,sha256=ZA1IybLsmI4QYLcsE_kJu-YsVsH8HtH8kySWCz6Jv2I,3850
1170
1344
  merge/resources/crm/resources/issues/__init__.py,sha256=fKOCxeYsbS41Y58p81luMrp7eaz6BLop2enXQ3HTvtc,1026
1171
- merge/resources/crm/resources/issues/client.py,sha256=1pNy6N5f9USf0es8igqDomdFDWdD_i54X9hh7RD13Ys,11087
1345
+ merge/resources/crm/resources/issues/client.py,sha256=xMLJZ6wvViUax-wWIFq4SwgkCMXC5z6chINTbcMhC-4,13234
1172
1346
  merge/resources/crm/resources/issues/raw_client.py,sha256=vW7S6ozgCZbh2QfgNOzppoynyPzB6HOMqsNv4sk9QBI,13686
1173
1347
  merge/resources/crm/resources/issues/types/__init__.py,sha256=c7N5BxoJGun2-0qD15I96eDPA36xKVGjt08VJoifSNo,1068
1174
1348
  merge/resources/crm/resources/issues/types/issues_list_request_status.py,sha256=cBbfu1Q5A0ZPOzB7nM_VHRKEJHnxk8lqN-cGmRX6_x4,508
1175
1349
  merge/resources/crm/resources/leads/__init__.py,sha256=RTn8NkpbqRPTa9m4ngIfd-4gV6tuNNuDWprxC_sgHLs,1121
1176
- merge/resources/crm/resources/leads/client.py,sha256=_NQMRFQSt1aG8OZAzElWr3mhkErGvC3ftUlDfb6T8CA,26905
1350
+ merge/resources/crm/resources/leads/client.py,sha256=O6gaB_Zulri-QyE8_uoHpk9oovhX0onQhbhjBGEhY1g,30384
1177
1351
  merge/resources/crm/resources/leads/raw_client.py,sha256=Szduz2OQIG0k3jmTzYTFi_iWnvO4RDFITdIzYge1HHo,32603
1178
1352
  merge/resources/crm/resources/leads/types/__init__.py,sha256=qgH-pdXm_HrqhrFVtzW8l2XEpUrgpUFAnxE2ZzLsEDA,1242
1179
1353
  merge/resources/crm/resources/leads/types/leads_list_request_expand.py,sha256=S9Bq1uyyKWNK7L_nYXpZv-k8pJKwLYS1uGkPmP5twxI,1851
@@ -1184,18 +1358,18 @@ merge/resources/crm/resources/link_token/raw_client.py,sha256=tkU9dI7DH2O2-kty3b
1184
1358
  merge/resources/crm/resources/link_token/types/__init__.py,sha256=5u4pc35s4TmNZ4O2Le56xHN3UZGmvlCdr-C3BfxIEOg,1100
1185
1359
  merge/resources/crm/resources/link_token/types/end_user_details_request_language.py,sha256=2BMH_lFqvpT1C4ljoUh5YUm2dgiuLYil6s3_pKcn540,194
1186
1360
  merge/resources/crm/resources/linked_accounts/__init__.py,sha256=qlT602tt9halCaj1oeXa66bVB_5EImiYWgBYpAFP3dY,1056
1187
- merge/resources/crm/resources/linked_accounts/client.py,sha256=BLpcOQZAVp6Bqdg77uaLMahCNT1G6OocaHQQWhDi2Hw,9950
1361
+ merge/resources/crm/resources/linked_accounts/client.py,sha256=DxJnxj6M_Dqb2ebRNuSXcTtv_sE1bkGoSR5nxPxlUw8,11320
1188
1362
  merge/resources/crm/resources/linked_accounts/raw_client.py,sha256=UP7yc0HUXxQtQQJNy9gOu1fA12_AWaIEv7FD3u90Sw0,10618
1189
1363
  merge/resources/crm/resources/linked_accounts/types/__init__.py,sha256=xWSbOu74X9JxtUN921_jbVtBDygRoEcDyGXySS5soJc,1126
1190
1364
  merge/resources/crm/resources/linked_accounts/types/linked_accounts_list_request_category.py,sha256=_EGocl5xFPQUgGIidOl4wEewCLbzqWyiXV2PIev7l7M,1354
1191
1365
  merge/resources/crm/resources/notes/__init__.py,sha256=OMnOxRpqIKdyqpejSgAyM2xNfmrzAoYoTFEEx2rt1qk,1121
1192
- merge/resources/crm/resources/notes/client.py,sha256=rCkIMHXu-K3knDstApZsEOl01CF7WqZCCXhch96M3Tg,26073
1366
+ merge/resources/crm/resources/notes/client.py,sha256=ZFbcM9IzI-wxNSUlJop1X-Qsj-rXWUD5nzCMg70DBdA,29338
1193
1367
  merge/resources/crm/resources/notes/raw_client.py,sha256=o_TbZSINAdhx2Vb3pUgPbRDB14yUroCQOpAtMZJRb0A,31757
1194
1368
  merge/resources/crm/resources/notes/types/__init__.py,sha256=SvlDe3vERo48YDRIskcUiPG7In_sTo3ugxFAG7OChas,1242
1195
1369
  merge/resources/crm/resources/notes/types/notes_list_request_expand.py,sha256=g6nuqZi67Q3KC-l59T1FGN2OgWc9miVdLkBslv_fLKY,3267
1196
1370
  merge/resources/crm/resources/notes/types/notes_retrieve_request_expand.py,sha256=kSpZeJY7tXGptI38sn6cPmTuCkcAyC2ssSQXEtnikvY,3331
1197
1371
  merge/resources/crm/resources/opportunities/__init__.py,sha256=oaNh368xIK44GCOBiYKsYvvp1SGcnYg7srqEMJKVFgY,1327
1198
- merge/resources/crm/resources/opportunities/client.py,sha256=QjOScopBc5FeCIL9etmEgyDdaqOm-XYkSpx0g1fsHjg,35200
1372
+ merge/resources/crm/resources/opportunities/client.py,sha256=IOKcHVW-9O2rdGykm8N2LjRcyv2DgQWwkslXj7YJ1yo,39155
1199
1373
  merge/resources/crm/resources/opportunities/raw_client.py,sha256=DqijgwFgH9hq7W-LeHFkdtvm1skDpotxYZjlvrXuT5k,43360
1200
1374
  merge/resources/crm/resources/opportunities/types/__init__.py,sha256=KvFUWxlhtuJ2WdLa44S0P4-zTltrt24Qwxp98h2U7Uo,1514
1201
1375
  merge/resources/crm/resources/opportunities/types/opportunities_list_request_expand.py,sha256=3lyV0eut9bYjXHegQqIYxH2ea0qxXASh1LFoN2mApqQ,1475
@@ -1211,19 +1385,19 @@ merge/resources/crm/resources/scopes/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-
1211
1385
  merge/resources/crm/resources/scopes/client.py,sha256=SUI7t1U3vU746rHsU1C_UDi7H3Q72W5LLaBHF_UDrMU,10770
1212
1386
  merge/resources/crm/resources/scopes/raw_client.py,sha256=jZJQBsPCfvhFT6EypfQjITPNskPxc66ej2jL7Fls_bk,10986
1213
1387
  merge/resources/crm/resources/stages/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1214
- merge/resources/crm/resources/stages/client.py,sha256=H49GVcSIp2zOx-uGdriUtSdURpd6rZUTZllhBTXn5kA,18666
1388
+ merge/resources/crm/resources/stages/client.py,sha256=wiCIE46a96M4unq-4e8whKaiuX-gsIoParqKucFeWMo,20939
1215
1389
  merge/resources/crm/resources/stages/raw_client.py,sha256=yUePjW64wrdhpu8TVPneDx8tH3IYdDl5WaW3bRXHMB8,21940
1216
1390
  merge/resources/crm/resources/sync_status/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1217
- merge/resources/crm/resources/sync_status/client.py,sha256=j_jb3tCCXisgp1_1MneBqVo56jBWVBXKb3hpTqZE52E,5041
1391
+ merge/resources/crm/resources/sync_status/client.py,sha256=EqGwtsg1TDC6vzrtMl_B0F4sQ5fAXrk9R9oHy9hHSso,5095
1218
1392
  merge/resources/crm/resources/sync_status/raw_client.py,sha256=sV5IyrbjzFpHSZTPuTYEa9jz5YQQzveRZL7t_WFqAJI,5625
1219
1393
  merge/resources/crm/resources/tasks/__init__.py,sha256=-pjDR12GQWQ6SUxwJyL0m4Ir85vfDk7M_H4D8x0AJRc,1121
1220
- merge/resources/crm/resources/tasks/client.py,sha256=bPqtw_-l8ftJOUViBQyZhVKPbJC3OmkoIJInAzP0pA8,29286
1394
+ merge/resources/crm/resources/tasks/client.py,sha256=lwAo_0GHlLD1Hxp3WvpjXqfLAym3BUzwPizSkaVrHQ8,32359
1221
1395
  merge/resources/crm/resources/tasks/raw_client.py,sha256=HPQrTx6RbR4S_1TsVWXDZi_GIBW_Y7fQQ1cVXixjvIA,37132
1222
1396
  merge/resources/crm/resources/tasks/types/__init__.py,sha256=b2nJIVVGxI4jz_6SvOY5ZkSU_BJxjyr8WRKAYI5sJug,1242
1223
1397
  merge/resources/crm/resources/tasks/types/tasks_list_request_expand.py,sha256=GILhwWPY4at7DZOd_i3JlLOpxmZJQl1APMQW98iHU3M,1531
1224
1398
  merge/resources/crm/resources/tasks/types/tasks_retrieve_request_expand.py,sha256=riNnk8Pq06DztZ8115GTbiBboLKTm6H1h3r0fVNHVDQ,1563
1225
1399
  merge/resources/crm/resources/users/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1226
- merge/resources/crm/resources/users/client.py,sha256=6vAs3TGgJdHJdluoc2vtU_hoxEpORdaydXk8w6eKklQ,21957
1400
+ merge/resources/crm/resources/users/client.py,sha256=n44lNpVFibpKvhNTpRjUkRfsiYQPnMktD796I3xcam4,24288
1227
1401
  merge/resources/crm/resources/users/raw_client.py,sha256=f71tBqeXjt8LIBZy-dDv0es3kV4SMmc8OjyRsyYx2qE,25540
1228
1402
  merge/resources/crm/resources/webhook_receivers/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1229
1403
  merge/resources/crm/resources/webhook_receivers/client.py,sha256=nOYMjrWYuh_0t6g3YMbd_Z8jQduLwiZxT9s_7nsY0Pw,5210
@@ -1465,7 +1639,7 @@ merge/resources/filestorage/resources/async_passthrough/raw_client.py,sha256=reK
1465
1639
  merge/resources/filestorage/resources/async_passthrough/types/__init__.py,sha256=xZoQJ90iQWokoy6yfd_9sggRIkFEWCIPhmpoahoo_t0,1113
1466
1640
  merge/resources/filestorage/resources/async_passthrough/types/async_passthrough_retrieve_response.py,sha256=uBMjgizc2Qhm2JA0rRTer6NiRT3sq_v-EyTrzkiQC0g,203
1467
1641
  merge/resources/filestorage/resources/audit_trail/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1468
- merge/resources/filestorage/resources/audit_trail/client.py,sha256=TJG4hCVZ8HeZGx6C3LN84BO6m-s79VBZNs2nlZEUJ5Q,8546
1642
+ merge/resources/filestorage/resources/audit_trail/client.py,sha256=Op3suHO5djQpPLoJX8cIb4LhshPqIYMEu_7U0_yJh6M,8904
1469
1643
  merge/resources/filestorage/resources/audit_trail/raw_client.py,sha256=32iXOgdco7yolbgRNPqiqxV0dZow5opwgU7V7V1qQlk,9104
1470
1644
  merge/resources/filestorage/resources/available_actions/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1471
1645
  merge/resources/filestorage/resources/available_actions/client.py,sha256=Y3ifxioTIotB3cL81KT1YthL1YlgLBoCcBa9fvbXEjo,2911
@@ -1474,13 +1648,13 @@ merge/resources/filestorage/resources/delete_account/__init__.py,sha256=_VhToAyI
1474
1648
  merge/resources/filestorage/resources/delete_account/client.py,sha256=SVMyRWOXlssK7hT1jT_pbTMgJBhSSxi0tNrwUeeZJnI,2681
1475
1649
  merge/resources/filestorage/resources/delete_account/raw_client.py,sha256=D5tdLcH0sH4Rp4SGbKp5CJoAF6aOLc8F2WbuLxm6MYA,2651
1476
1650
  merge/resources/filestorage/resources/drives/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1477
- merge/resources/filestorage/resources/drives/client.py,sha256=sH9nCYjYTrV5_27TxeJ3I071ISI0pq1TA5_z6xca-_o,11473
1651
+ merge/resources/filestorage/resources/drives/client.py,sha256=Xn6zSnY8wQUcfGV6rzkUzHTvOX_2R4g1eqHbZYPuIhA,13110
1478
1652
  merge/resources/filestorage/resources/drives/raw_client.py,sha256=qPgXArXmY5Naz1OH_8tjdAcuP90flFsS1W0M_zUIrSs,13702
1479
1653
  merge/resources/filestorage/resources/field_mapping/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1480
- merge/resources/filestorage/resources/field_mapping/client.py,sha256=2xQD4zkJTSNBbvM7WRWHnPGvgUoC9ngToWkVMwP4MwU,23562
1654
+ merge/resources/filestorage/resources/field_mapping/client.py,sha256=yojlZ7dhK2C5P3j3SzO6bDy4BuuLf4pp7G1-lJZBlB0,24022
1481
1655
  merge/resources/filestorage/resources/field_mapping/raw_client.py,sha256=WRc93LhwZTeZJcF2iYtwjDWXax4UjJuqnMtr1eQGRFE,29311
1482
1656
  merge/resources/filestorage/resources/files/__init__.py,sha256=5JtMU8nEKhPVyeFyX4s0hwnL6CA3lvtJOgfCEwjTcOE,1435
1483
- merge/resources/filestorage/resources/files/client.py,sha256=cqi1dtmEHukt7C-w9GANXPWGyFHKD_L13kDuvpb-E0Q,34852
1657
+ merge/resources/filestorage/resources/files/client.py,sha256=54LXTy9pV836bwWhS3BSmNfeDCbfv0RKT9F7Fq4JN6c,39353
1484
1658
  merge/resources/filestorage/resources/files/raw_client.py,sha256=jpOflZbPbh7NfwIlj5fMRy1qTD7wFWKS3h_M7WP9-pU,44445
1485
1659
  merge/resources/filestorage/resources/files/types/__init__.py,sha256=vuA3gwr0oVMZYRZPq6bwW1xqb9fLtEbAsJ2J0AbgPQE,1680
1486
1660
  merge/resources/filestorage/resources/files/types/files_download_request_meta_list_request_order_by.py,sha256=EbgeEimUUUJtFbjpzIa2j12TfA6Wgs6q8gYO-bCo_pw,1175
@@ -1488,7 +1662,7 @@ merge/resources/filestorage/resources/files/types/files_list_request_expand.py,s
1488
1662
  merge/resources/filestorage/resources/files/types/files_list_request_order_by.py,sha256=VmgIr2XJZTSJ9fZnlGY4t8XjeOzoBElzcg2eRGoS8Xo,1080
1489
1663
  merge/resources/filestorage/resources/files/types/files_retrieve_request_expand.py,sha256=P0WRFiimt1N6F1f3iuVNXmYLMa3y6BS15ZKdXobYdIY,1543
1490
1664
  merge/resources/filestorage/resources/folders/__init__.py,sha256=tRr5VDvsnR-bBL0CKSYa9QRgrDGUaVcBeDW6cIFPC68,1144
1491
- merge/resources/filestorage/resources/folders/client.py,sha256=hZXYKWTr-PJ2leuIuBoU-HIKi8_5zP7a1kOslrHnSuk,18494
1665
+ merge/resources/filestorage/resources/folders/client.py,sha256=Qn6444faP2WNAdMc2vwObbX1-u64OeTGyNcTdwQ0lMg,21123
1492
1666
  merge/resources/filestorage/resources/folders/raw_client.py,sha256=Ebuw6wTo1Fz1HPaGURW37o24f7_jo9FOUH9TNGrG5_E,23133
1493
1667
  merge/resources/filestorage/resources/folders/types/__init__.py,sha256=1506XMG2XHRVmSUy-n164c3gQeWjjleuU21rqoV4Hrs,1262
1494
1668
  merge/resources/filestorage/resources/folders/types/folders_list_request_expand.py,sha256=CYoAAnftwM2amoqNX7MLskkQMR0LdR5wIyFI0LiZDxY,1667
@@ -1500,10 +1674,10 @@ merge/resources/filestorage/resources/generate_key/__init__.py,sha256=_VhToAyIt_
1500
1674
  merge/resources/filestorage/resources/generate_key/client.py,sha256=EIv4VUdRiyoXch9YH53jSMqhxol4jGS4ZDsxQ8GbABk,3086
1501
1675
  merge/resources/filestorage/resources/generate_key/raw_client.py,sha256=IgCgZ13pxmNZIYM_8pIQyGkosp8-z4ZSmqhk1ne4Uog,3866
1502
1676
  merge/resources/filestorage/resources/groups/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1503
- merge/resources/filestorage/resources/groups/client.py,sha256=eNCnYKP8IGGSQdj61BKvSJP6QPBdYDbrZCf_WNEb1L8,12261
1677
+ merge/resources/filestorage/resources/groups/client.py,sha256=xsdu4eLIrjt0dXRmJURqCP8bA0JwNdw8_7tSZq5CI7w,13844
1504
1678
  merge/resources/filestorage/resources/groups/raw_client.py,sha256=IZdTiYKFLNMhaIEnWvDWkM5PN_pUv-1uAODo0zl_56E,14504
1505
1679
  merge/resources/filestorage/resources/issues/__init__.py,sha256=fKOCxeYsbS41Y58p81luMrp7eaz6BLop2enXQ3HTvtc,1026
1506
- merge/resources/filestorage/resources/issues/client.py,sha256=sXF7InCjG7veFHpJeP05pH8dT0xXSctKWzK8q6vSp_E,11119
1680
+ merge/resources/filestorage/resources/issues/client.py,sha256=mmnxl6zx0lzjQHWyDjmrd0I75XYkIMLh7x7ZhfKitY8,13282
1507
1681
  merge/resources/filestorage/resources/issues/raw_client.py,sha256=zrC8mYWdLXFs-m6P9zX7_zVEx4F1Su2OFmYL8SaSFEY,13718
1508
1682
  merge/resources/filestorage/resources/issues/types/__init__.py,sha256=c7N5BxoJGun2-0qD15I96eDPA36xKVGjt08VJoifSNo,1068
1509
1683
  merge/resources/filestorage/resources/issues/types/issues_list_request_status.py,sha256=cBbfu1Q5A0ZPOzB7nM_VHRKEJHnxk8lqN-cGmRX6_x4,508
@@ -1511,7 +1685,7 @@ merge/resources/filestorage/resources/link_token/__init__.py,sha256=_VhToAyIt_5a
1511
1685
  merge/resources/filestorage/resources/link_token/client.py,sha256=xo31dYHCPrJgvauKflQhWCAYGnMP5tCqS4nQqXSoWF0,12649
1512
1686
  merge/resources/filestorage/resources/link_token/raw_client.py,sha256=bwjAQr-86bHEe_i9htZkr2TlS1rtIwIhz1H5-qCcUg0,13035
1513
1687
  merge/resources/filestorage/resources/linked_accounts/__init__.py,sha256=qlT602tt9halCaj1oeXa66bVB_5EImiYWgBYpAFP3dY,1056
1514
- merge/resources/filestorage/resources/linked_accounts/client.py,sha256=akawa1Ph8_4Whxvdh-DdGUnoqKaJfD9hZ23p11XVB9Q,9966
1688
+ merge/resources/filestorage/resources/linked_accounts/client.py,sha256=UW418WMUAn3yor8SmaNUK7ltV62VIOr6prUad26YxaI,11352
1515
1689
  merge/resources/filestorage/resources/linked_accounts/raw_client.py,sha256=1SC0Sko7IcZ68GNaBbnqqe1rTbQ8vI7kbxU2Uwg3jls,10634
1516
1690
  merge/resources/filestorage/resources/linked_accounts/types/__init__.py,sha256=xWSbOu74X9JxtUN921_jbVtBDygRoEcDyGXySS5soJc,1126
1517
1691
  merge/resources/filestorage/resources/linked_accounts/types/linked_accounts_list_request_category.py,sha256=_EGocl5xFPQUgGIidOl4wEewCLbzqWyiXV2PIev7l7M,1354
@@ -1525,10 +1699,10 @@ merge/resources/filestorage/resources/scopes/__init__.py,sha256=_VhToAyIt_5axN6C
1525
1699
  merge/resources/filestorage/resources/scopes/client.py,sha256=qcvz2XasKRTQnmXS-giiNiAEiHYbwkpTL8u61HpYBGg,10834
1526
1700
  merge/resources/filestorage/resources/scopes/raw_client.py,sha256=7XyoTdUNd2fdNKvuGtc5WmZQMgZmWOMPOrlUDSFlB8U,11034
1527
1701
  merge/resources/filestorage/resources/sync_status/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1528
- merge/resources/filestorage/resources/sync_status/client.py,sha256=D5neb27zpqXTZHoiEy4X-7IcdlwfMR2fBCJ-PypmB58,5057
1702
+ merge/resources/filestorage/resources/sync_status/client.py,sha256=LAekCi_8L4AzpWOIizO_mKX4RNILbIdSrXsETiusn6s,5111
1529
1703
  merge/resources/filestorage/resources/sync_status/raw_client.py,sha256=xshrw3Bfkc6r5d6wZABaMVhHVGQVhuQ-czQklZ1d-YQ,5641
1530
1704
  merge/resources/filestorage/resources/users/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1531
- merge/resources/filestorage/resources/users/client.py,sha256=NQvHVmc5t5Vbzqdwusaxvcdc69UpFOaDmMsAeXG73_A,11407
1705
+ merge/resources/filestorage/resources/users/client.py,sha256=2M1rnmQ05ufgEyjY9Q1WdzToBzG2EMh8rlQ36SFMsfE,13048
1532
1706
  merge/resources/filestorage/resources/users/raw_client.py,sha256=0ZTsI3BcasYNEjamfQihUxWeVYPFJ6ELfgp1585I82I,13636
1533
1707
  merge/resources/filestorage/resources/webhook_receivers/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1534
1708
  merge/resources/filestorage/resources/webhook_receivers/client.py,sha256=bECZFxfPLQxTPgiShgbwkj36p-ZD3uQDlgEnAeUASCM,5242
@@ -1649,10 +1823,10 @@ merge/resources/filestorage/types/user.py,sha256=_XHaj1gEOc6j7KYYssBhTqMPOpXoXVS
1649
1823
  merge/resources/filestorage/types/validation_problem_source.py,sha256=0ayE7x_uM8R0pzVRz9ZZEc6WS1RUZO3VW3zXjh61RVs,576
1650
1824
  merge/resources/filestorage/types/warning_validation_problem.py,sha256=RXDtt3t3FwIeGGXkIr_OHOAybDZg44L_5hOqa2sLlJ0,736
1651
1825
  merge/resources/filestorage/types/webhook_receiver.py,sha256=g4KQnc-vZPJGlXK-OOFIn2WGyTLKoeaq9TPWQ46VwFY,623
1652
- merge/resources/hris/__init__.py,sha256=nYuI8b9JdC9faVq3g_-9jf0ah5tLI0cYEG-mQxgBXkg,27721
1826
+ merge/resources/hris/__init__.py,sha256=7UTcc36jxjYVGWeIJoBRFH-Yo8vHP9tBUlV8Cv36fxw,28172
1653
1827
  merge/resources/hris/client.py,sha256=87slfB-phfRkryRElmVjF5hDO3TtWp3MG_SK7VSVgCI,29280
1654
1828
  merge/resources/hris/raw_client.py,sha256=kHhDKYWwOVTqP9-59tv7SdcpgDaM6l5XJWXrSYfX5hs,406
1655
- merge/resources/hris/resources/__init__.py,sha256=LatDVy6plCfoTGaeHEj3u7q3lzZv8HWZ1Ba8YiOq17g,9528
1829
+ merge/resources/hris/resources/__init__.py,sha256=A4IwsL6JQ2ukb0YUUh_PRivMlrbdEhCPjvJG1zpDEvU,9711
1656
1830
  merge/resources/hris/resources/account_details/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1657
1831
  merge/resources/hris/resources/account_details/client.py,sha256=EjZZQ8TJGoczYfncb8h0e52qU5zThpyuTO1daIJTOYM,2803
1658
1832
  merge/resources/hris/resources/account_details/raw_client.py,sha256=rgtNujr3s6glMftRW9-3pjiA1ca__lwkBense38RSpo,3353
@@ -1665,38 +1839,38 @@ merge/resources/hris/resources/async_passthrough/raw_client.py,sha256=tbi5OIYZ_V
1665
1839
  merge/resources/hris/resources/async_passthrough/types/__init__.py,sha256=xZoQJ90iQWokoy6yfd_9sggRIkFEWCIPhmpoahoo_t0,1113
1666
1840
  merge/resources/hris/resources/async_passthrough/types/async_passthrough_retrieve_response.py,sha256=uBMjgizc2Qhm2JA0rRTer6NiRT3sq_v-EyTrzkiQC0g,203
1667
1841
  merge/resources/hris/resources/audit_trail/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1668
- merge/resources/hris/resources/audit_trail/client.py,sha256=uqeKAuT9V2ZAvbmXbkvvDNfWNOG4wvZZdxfE7vP_f_Q,8532
1842
+ merge/resources/hris/resources/audit_trail/client.py,sha256=fWCD6lVl2DSzWvUwdH1glavO2LrwGI03orIFn9WzMlc,8890
1669
1843
  merge/resources/hris/resources/audit_trail/raw_client.py,sha256=awnCQFv1dJjNXguMre9IBtS1VkydILFYBHUaA0lkSm4,9090
1670
1844
  merge/resources/hris/resources/available_actions/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1671
1845
  merge/resources/hris/resources/available_actions/client.py,sha256=XXCvPuZsK2oLeDYME2iFJk3UC-TJl1QJsJxVqZDFZc0,2897
1672
1846
  merge/resources/hris/resources/available_actions/raw_client.py,sha256=UH9nOXSOCUu7XFVSiZVScU-fMwOIFmA_VGiBDW2IOEs,3439
1673
1847
  merge/resources/hris/resources/bank_info/__init__.py,sha256=uMz-b3Nl7qiOcWmMvho1vygL9rumyscl_UjkvYVFjxo,1156
1674
- merge/resources/hris/resources/bank_info/client.py,sha256=Tjqg4XuDAaB7XzzvNRzYdPyy7P1TIPhtLbp7E336l7A,17355
1675
- merge/resources/hris/resources/bank_info/raw_client.py,sha256=MTipRAKC7vx5HMigVAq7A290202SKY5DdhUBQ7LjDaI,19718
1848
+ merge/resources/hris/resources/bank_info/client.py,sha256=g_fVfuYCS6u-ybTbCioj5R_JfbLxYk5G5f9Mb1PEvPU,19756
1849
+ merge/resources/hris/resources/bank_info/raw_client.py,sha256=XBcf8b_-z2M885lFIN7uRUjsE2ql-cyY105_qzAqZ9w,19770
1676
1850
  merge/resources/hris/resources/bank_info/types/__init__.py,sha256=JLIYknNHoRbq1wG8Q-M4P6y_CPDiUX3zUIG8HI5JtE4,1290
1677
1851
  merge/resources/hris/resources/bank_info/types/bank_info_list_request_account_type.py,sha256=fxSAKSl0KIXUSdd25UlyriE96XTYGEJjaulntNbuVzg,529
1678
1852
  merge/resources/hris/resources/bank_info/types/bank_info_list_request_order_by.py,sha256=aOl53Oa0GVRbvR5XgZMgw__pJoPRAdqs0HAXFc5GK1U,728
1679
1853
  merge/resources/hris/resources/benefits/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1680
- merge/resources/hris/resources/benefits/client.py,sha256=HBf2h1BX37-Fdn0x3hfM45-Kc4Bga_LOiD5D28f_KAQ,12683
1681
- merge/resources/hris/resources/benefits/raw_client.py,sha256=DlKHBCqmjRW36_OEJ47P-aop1UZ041_YeliCd4z3Rg0,14940
1854
+ merge/resources/hris/resources/benefits/client.py,sha256=Be8XMKPnDDsOnXs07B8g9KDmeh3g2g24_rXyqjDfA1c,14400
1855
+ merge/resources/hris/resources/benefits/raw_client.py,sha256=reWuy3bkMKPS6_YCG9dHFYZrqGNfimCeKWTI0KoUacw,14992
1682
1856
  merge/resources/hris/resources/companies/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1683
- merge/resources/hris/resources/companies/client.py,sha256=gOghFPpehD1RqbBoOs4K52zLBR2EDWbIyMutR2awt30,11123
1684
- merge/resources/hris/resources/companies/raw_client.py,sha256=Wl4w5SLpDXh5DMaALaql-t4lw3fvFiB1skVjkxaG0-E,13330
1857
+ merge/resources/hris/resources/companies/client.py,sha256=se6ktd24EJGpxr84237Ingkci5iEXE1ZEakPatypAn4,12758
1858
+ merge/resources/hris/resources/companies/raw_client.py,sha256=zu_n1TDZOZE8FkndoZZuFlQ3xAt5rxRr8TU_fBD6YGw,13382
1685
1859
  merge/resources/hris/resources/delete_account/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1686
1860
  merge/resources/hris/resources/delete_account/client.py,sha256=l0EKsOUWZQ9NyaFb7PqETeb9bnnFhZNfYxcuvQ8PE0A,2667
1687
1861
  merge/resources/hris/resources/delete_account/raw_client.py,sha256=QTvig4eJsnMJ_RdFDw4G1TvwUzUvh1VYxMAJi9RGj9I,2637
1688
1862
  merge/resources/hris/resources/dependents/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1689
- merge/resources/hris/resources/dependents/client.py,sha256=xyebKtDDLP46Co2Af8gUR7-_l-I3Xi8WRpCQeZzcvYY,12711
1690
- merge/resources/hris/resources/dependents/raw_client.py,sha256=G4pbhZix_wqB7FY8CVzggUCPfwoLDQan47ApTlCvr_8,14968
1863
+ merge/resources/hris/resources/dependents/client.py,sha256=57XCg-KZLjeHyt_qeKNFAj_Gnh0zJs0tZQEPTA2OvIU,14608
1864
+ merge/resources/hris/resources/dependents/raw_client.py,sha256=2OirOC22ClUirFZ2bJgr3v92FHwvsgLmPDxc2RlriwI,15020
1691
1865
  merge/resources/hris/resources/employee_payroll_runs/__init__.py,sha256=enjEMt5A9ijimHvvW3FV28d9u0FE95JxYbmIW8jhpCU,1216
1692
- merge/resources/hris/resources/employee_payroll_runs/client.py,sha256=hnpgR42kyCxbDYA-047NZDykJcykGfdYAe-KI9wCv5U,15749
1693
- merge/resources/hris/resources/employee_payroll_runs/raw_client.py,sha256=45jAB-Hq4PMnD4ixo0WYJkfMAeZn2VL24T2XKe5ntFE,18544
1866
+ merge/resources/hris/resources/employee_payroll_runs/client.py,sha256=KxVaZ0c_44Riot3Ohb0Yo38QKh96yBM5krkwVBgU918,19384
1867
+ merge/resources/hris/resources/employee_payroll_runs/raw_client.py,sha256=mh0uoADrPVE3xC-IMvCl3p-IX8tkBpxmp5uBC_YuHY0,18596
1694
1868
  merge/resources/hris/resources/employee_payroll_runs/types/__init__.py,sha256=ZeEr7D3nDe4rIfVID9gxIB587AmDDpOjGsemjGbNqyI,1390
1695
1869
  merge/resources/hris/resources/employee_payroll_runs/types/employee_payroll_runs_list_request_expand.py,sha256=zTW66wQmK-5lNIsfQUewfAcPwPEnLiJmGP4iq7VY-YA,829
1696
1870
  merge/resources/hris/resources/employee_payroll_runs/types/employee_payroll_runs_retrieve_request_expand.py,sha256=Wal9UB9KcMJwpulAHNu_mobxClWUbFjE5GnaWi6fOBg,845
1697
1871
  merge/resources/hris/resources/employees/__init__.py,sha256=zzzZvE_HZ5WnMt3mH1HqMF1VAePaByO6sB_6gmJyL98,2032
1698
- merge/resources/hris/resources/employees/client.py,sha256=yIKNIxa8kcz6MJoI8gkUVuj7z7RlhEIB7kLiMAdQC24,33906
1699
- merge/resources/hris/resources/employees/raw_client.py,sha256=ghh0piQ08Fs26DGHHdMH2KpZpxV6MZsvHtgCwQ4vKQg,39890
1872
+ merge/resources/hris/resources/employees/client.py,sha256=pGW-uf53s6Lfh4jBjAC-XLSOMLHlk_DVO4GxpSqJP7w,40117
1873
+ merge/resources/hris/resources/employees/raw_client.py,sha256=K8NxuFiwUB3ntKkYf_4BW8InIQN9BeQ_izKqRJzICxk,39890
1700
1874
  merge/resources/hris/resources/employees/types/__init__.py,sha256=ho_jX7f9JoE8V1f7EpPvgU94H1Ep127PxvBSUY4J1Fs,2625
1701
1875
  merge/resources/hris/resources/employees/types/employees_list_request_employment_status.py,sha256=BY67cCw8kzJS1KypaePpcMKyGUVP71w5VwpOiD_GTSM,739
1702
1876
  merge/resources/hris/resources/employees/types/employees_list_request_expand.py,sha256=yIzn_8nt-SkvZt0qIfZro5clWjhqNy6iBf2anA9ixlA,80247
@@ -1707,11 +1881,11 @@ merge/resources/hris/resources/employees/types/employees_retrieve_request_remote
1707
1881
  merge/resources/hris/resources/employees/types/employees_retrieve_request_show_enum_origins.py,sha256=lA7L6qI0K-oQNu5FolDLPsqVFpcaoIBnW6qhiZ47a5g,4179
1708
1882
  merge/resources/hris/resources/employees/types/ignore_common_model_request_reason.py,sha256=9QCgrEP76XjxWTTdo8_2Z7vZyzOnj-9ZtBe1pgZQWEk,189
1709
1883
  merge/resources/hris/resources/employer_benefits/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1710
- merge/resources/hris/resources/employer_benefits/client.py,sha256=IJ9KsocdGoQgYSZ2b3vaNgMJkfR8MHR4q0EX1qs-okY,11357
1711
- merge/resources/hris/resources/employer_benefits/raw_client.py,sha256=kascshSPNAZK99hpfZCD3t0fsHI3Y9INVolAokcQ2f4,13572
1884
+ merge/resources/hris/resources/employer_benefits/client.py,sha256=gVGQHdSWCDe50QXpwepOfpr2KNdaDNNU8DDh2mIzimU,12992
1885
+ merge/resources/hris/resources/employer_benefits/raw_client.py,sha256=iMLKwq7wYs68imqyLDjEXKLfGlYlJhrPDQabnent3WU,13624
1712
1886
  merge/resources/hris/resources/employments/__init__.py,sha256=Wcb91qIXB76iPslXuz0EbbQMUhK5y2vZQ2740S8uqww,1921
1713
- merge/resources/hris/resources/employments/client.py,sha256=s5o64vxSpRuDCuqpWPqMXDLcQitsCXtaE_BTzBpgizw,16928
1714
- merge/resources/hris/resources/employments/raw_client.py,sha256=qEpt874mH6kWGLpV3cUwltrwVheF5Y3UllhYCfMM_UA,19255
1887
+ merge/resources/hris/resources/employments/client.py,sha256=-Sb7HNV-doBVck7UYwszJJ7BYdt82_Y3cfmT5-5kH2U,20711
1888
+ merge/resources/hris/resources/employments/raw_client.py,sha256=tzOKStfu4SK_rY9gLfI_5VLMA4xa8EzGvr826qLM4TE,19307
1715
1889
  merge/resources/hris/resources/employments/types/__init__.py,sha256=sJ5TmViZBM5M8kjPRUU-Sg9uhH8Xrhs6ogcCn8jshvQ,2452
1716
1890
  merge/resources/hris/resources/employments/types/employments_list_request_expand.py,sha256=cWEpvpDaV92QA92gxXC3PJjLv8qMx-YLBv-LzWUC5CM,777
1717
1891
  merge/resources/hris/resources/employments/types/employments_list_request_order_by.py,sha256=E1yhM8n_M3tw6HLxuND6HH6Mhu_Wv51WWM27iccnSdw,707
@@ -1721,8 +1895,8 @@ merge/resources/hris/resources/employments/types/employments_retrieve_request_ex
1721
1895
  merge/resources/hris/resources/employments/types/employments_retrieve_request_remote_fields.py,sha256=XN9BhAdIFsFU9hSsdtEaL224DlNmzieM4-VjCIZ4JRg,4283
1722
1896
  merge/resources/hris/resources/employments/types/employments_retrieve_request_show_enum_origins.py,sha256=UZ3aD5-t9o5SP0o7zAxiHSjrr2vj2Mkt9VDcUKYxE0g,4331
1723
1897
  merge/resources/hris/resources/field_mapping/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1724
- merge/resources/hris/resources/field_mapping/client.py,sha256=3sfU1YUEHRpY10zTMemADNxAr_Rj9p0aNfC-0AZNVF0,23478
1725
- merge/resources/hris/resources/field_mapping/raw_client.py,sha256=joxobStfBxH21mgc3tTsI5w4nSb1TlldmmvkRvy3mE0,29227
1898
+ merge/resources/hris/resources/field_mapping/client.py,sha256=rzLSa3sFQpavg3NuVRh1q_c2eQBngGQfAqV9usthsO0,24766
1899
+ merge/resources/hris/resources/field_mapping/raw_client.py,sha256=CVMx24_qNUIE94PQZaRjJzGu7k-dsY4Cu7i46f3rtVE,30083
1726
1900
  merge/resources/hris/resources/force_resync/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1727
1901
  merge/resources/hris/resources/force_resync/client.py,sha256=1fJc9cX0LKncdjhUvz36OE3rRHvfzKg3nx-wUpyFhiI,3521
1728
1902
  merge/resources/hris/resources/force_resync/raw_client.py,sha256=ZgEsPWNEMY2jBu0Rhc1ihaNTw7H2e4tAr_JaC4wX4cA,4063
@@ -1730,26 +1904,27 @@ merge/resources/hris/resources/generate_key/__init__.py,sha256=_VhToAyIt_5axN6CL
1730
1904
  merge/resources/hris/resources/generate_key/client.py,sha256=RjvyCBe_z6_5bjCvwI0Te-ZqhkTGEX3dTatuOZe7voM,3072
1731
1905
  merge/resources/hris/resources/generate_key/raw_client.py,sha256=Y2J3etGrrJZs9wA6UqrURSz_FwcQH2idb4QUN14CrUA,3852
1732
1906
  merge/resources/hris/resources/groups/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1733
- merge/resources/hris/resources/groups/client.py,sha256=z6t_Wdhd2WMnl5ZY8x96v5rBaYVoNeYbadoTP9V_LY8,15393
1734
- merge/resources/hris/resources/groups/raw_client.py,sha256=oxC7gfXfOVFcR1mZ9FA4GbOR2mgsOV3bIQoDwkhmScM,17706
1907
+ merge/resources/hris/resources/groups/client.py,sha256=8CLvrQ0IJFrZnmN1yET79C2mjlvEHRvRMUEkvA7lw-k,17278
1908
+ merge/resources/hris/resources/groups/raw_client.py,sha256=s1JoIaUI0Tgu9YbPHZOX0EHhpVc75gLjwKzz0Kmsu7U,17758
1735
1909
  merge/resources/hris/resources/issues/__init__.py,sha256=fKOCxeYsbS41Y58p81luMrp7eaz6BLop2enXQ3HTvtc,1026
1736
- merge/resources/hris/resources/issues/client.py,sha256=e-DOmVFHNZ14F7Pq2mLkL0t-FV3dFXWX6u6jhEuFyyI,11091
1737
- merge/resources/hris/resources/issues/raw_client.py,sha256=tlppqFgwdwGM1UzbPWkcSTJdYe7b8bh7mXag-tVK-hs,13690
1910
+ merge/resources/hris/resources/issues/client.py,sha256=0GIehddKTcx_EIraJQ5s3qDwdvVambKoocg2M6H0lG4,13292
1911
+ merge/resources/hris/resources/issues/raw_client.py,sha256=btBaAqabHZ9cw-CVFrdLFHHD0smLzcpUVQfrTrL2rPE,13742
1738
1912
  merge/resources/hris/resources/issues/types/__init__.py,sha256=c7N5BxoJGun2-0qD15I96eDPA36xKVGjt08VJoifSNo,1068
1739
1913
  merge/resources/hris/resources/issues/types/issues_list_request_status.py,sha256=cBbfu1Q5A0ZPOzB7nM_VHRKEJHnxk8lqN-cGmRX6_x4,508
1740
- merge/resources/hris/resources/link_token/__init__.py,sha256=rFqQQV74iUqiyFV38kXLmMy_6QOH7ifcfn9qSZHnCCI,1044
1741
- merge/resources/hris/resources/link_token/client.py,sha256=lh8cCO39rTttSX6sWN8EzW1c-f-qpM5jyS8eZKcXk4s,12724
1742
- merge/resources/hris/resources/link_token/raw_client.py,sha256=e_Se2xqtqZCjdAM7VdX_nkuR_3cpTjXTZvWeaHHBUDw,13124
1743
- merge/resources/hris/resources/link_token/types/__init__.py,sha256=5u4pc35s4TmNZ4O2Le56xHN3UZGmvlCdr-C3BfxIEOg,1100
1914
+ merge/resources/hris/resources/link_token/__init__.py,sha256=SnrZh75KCWfeI4PNUZFwHVSreQcmMJIqJiYcC_Ngtpo,1225
1915
+ merge/resources/hris/resources/link_token/client.py,sha256=SfoqLOIR0_a42XMEn_1S3IX5iWGcOKcZKZu1RzjYZls,13825
1916
+ merge/resources/hris/resources/link_token/raw_client.py,sha256=3L8qIx9G1gtFCzeau5jps-Kmhz09fr94PJqMnFx86xQ,14239
1917
+ merge/resources/hris/resources/link_token/types/__init__.py,sha256=_R_BKsWS8EzRz6fT2MqvVt4S8shrLKb2fVJFkfPtm-Y,1424
1918
+ merge/resources/hris/resources/link_token/types/end_user_details_request_completed_account_initial_screen.py,sha256=zukDNJ3gyH3NNfkChH2SATk-rfFOnL0e1jxqJoY3g28,281
1744
1919
  merge/resources/hris/resources/link_token/types/end_user_details_request_language.py,sha256=2BMH_lFqvpT1C4ljoUh5YUm2dgiuLYil6s3_pKcn540,194
1745
1920
  merge/resources/hris/resources/linked_accounts/__init__.py,sha256=qlT602tt9halCaj1oeXa66bVB_5EImiYWgBYpAFP3dY,1056
1746
- merge/resources/hris/resources/linked_accounts/client.py,sha256=qgJ6Oj9HvZuqSMCSZbzYRuJWbyhYld3kHzADALzCx7Q,9952
1747
- merge/resources/hris/resources/linked_accounts/raw_client.py,sha256=90gn8Co6WkiIOlhLAlEvQsQn0fqv-caXwmqnP1bICKc,10620
1921
+ merge/resources/hris/resources/linked_accounts/client.py,sha256=kQn_JnlqMRpiRDoV7qwhJd-57pu8yYA0yqq-VRr0Jqc,11376
1922
+ merge/resources/hris/resources/linked_accounts/raw_client.py,sha256=Y8P2BfTzaTvylGKUJSVloAAH7wtmhN6DUgrAc7CZ3U8,10672
1748
1923
  merge/resources/hris/resources/linked_accounts/types/__init__.py,sha256=xWSbOu74X9JxtUN921_jbVtBDygRoEcDyGXySS5soJc,1126
1749
1924
  merge/resources/hris/resources/linked_accounts/types/linked_accounts_list_request_category.py,sha256=_EGocl5xFPQUgGIidOl4wEewCLbzqWyiXV2PIev7l7M,1354
1750
1925
  merge/resources/hris/resources/locations/__init__.py,sha256=2j1zOjwxMcR7rMDCtWTT5j5WFBu26n3Ao2kpABE2iF8,1654
1751
- merge/resources/hris/resources/locations/client.py,sha256=maVYDiFngFVmXgMgV3yZnUbTIQm_szhhNmNdFf3Pdxk,15142
1752
- merge/resources/hris/resources/locations/raw_client.py,sha256=jRab9wv1s7yMCIYZm1xQgoM2fs5Oj0q2Pd9NTfGKz-I,17427
1926
+ merge/resources/hris/resources/locations/client.py,sha256=cXoOLg9wJAADTrmCDPylOapR0W428ynVuLngH1xi2BI,18295
1927
+ merge/resources/hris/resources/locations/raw_client.py,sha256=MnsmPUT7bYB7KsW433UdP0nimN0yOcJwrlBtet6tLuQ,17479
1753
1928
  merge/resources/hris/resources/locations/types/__init__.py,sha256=PuY2SQ6pW9_JEqCBrazFSGQ8kIsK0mr4Y3uvTTn8Jn0,2035
1754
1929
  merge/resources/hris/resources/locations/types/locations_list_request_location_type.py,sha256=GIGtB6d4EHpBpD6Jogl6_m54CKVDNiaQu9NaRAwPRkE,500
1755
1930
  merge/resources/hris/resources/locations/types/locations_list_request_remote_fields.py,sha256=I8ucymk9Pr3JtNTgsqzy8cjXmuo6_ntnCeRvWY25EU8,823
@@ -1760,11 +1935,11 @@ merge/resources/hris/resources/passthrough/__init__.py,sha256=_VhToAyIt_5axN6CLJ
1760
1935
  merge/resources/hris/resources/passthrough/client.py,sha256=gP1qRSGmSY5vjjanCT8j8CQH9mFNtZX8yV4rGLmz6QY,3639
1761
1936
  merge/resources/hris/resources/passthrough/raw_client.py,sha256=P_1KIMIApFHlIKDGJ9GHn5_GVVldr5dutGAB4rhAMJg,3997
1762
1937
  merge/resources/hris/resources/pay_groups/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1763
- merge/resources/hris/resources/pay_groups/client.py,sha256=O33FABOurBF7HbxWYH3DUtIkJ9x2ejYhK20Sm_craDE,11145
1764
- merge/resources/hris/resources/pay_groups/raw_client.py,sha256=78ARFnqxEY7NA0T_i7zU9lmklIYcXzZMDRVNuEdjWjU,13360
1938
+ merge/resources/hris/resources/pay_groups/client.py,sha256=-hJDoUAS9gyfDR97kfUvOwEQnePHXuambq-cIpjw_UU,12780
1939
+ merge/resources/hris/resources/pay_groups/raw_client.py,sha256=uOa8MzN8cNU_W9VpcvqJTR2r6vDJRovOVJi01nFHifU,13412
1765
1940
  merge/resources/hris/resources/payroll_runs/__init__.py,sha256=VVmsjLFa3aIoysqDWYC2VdaCERThPTdSF6C4805--b4,1669
1766
- merge/resources/hris/resources/payroll_runs/client.py,sha256=MWyK3HpvPtq3T4Li9AWKcWob42YfPx1RymhwK_-HQVI,17537
1767
- merge/resources/hris/resources/payroll_runs/raw_client.py,sha256=B2AcYVFFIGXRpIGjP6UF8CpIcluUONgBJGtTr2oWXH8,20346
1941
+ merge/resources/hris/resources/payroll_runs/client.py,sha256=D3PqTgkO94FxKzuyZO75k6TZZcHkbyeTc6VzC3PIKdA,21736
1942
+ merge/resources/hris/resources/payroll_runs/raw_client.py,sha256=kzPxrY8wQjt_c-SEEpRce2XwkNMRuoHaDvPZnIzPZOI,20398
1768
1943
  merge/resources/hris/resources/payroll_runs/types/__init__.py,sha256=tOL2LkiDF0x3y_LlMXWVgr0gecVy8Dbl3Fmdio_X9YE,2070
1769
1944
  merge/resources/hris/resources/payroll_runs/types/payroll_runs_list_request_remote_fields.py,sha256=tPzvNgS7sSipUGe7YwOFPtYGsBsPitK07LymV7ImF_0,801
1770
1945
  merge/resources/hris/resources/payroll_runs/types/payroll_runs_list_request_run_type.py,sha256=xOkhGt0IKPHWpdhUpT24XAb-F7M-8vpH_NDW4BY-WNU,1104
@@ -1778,14 +1953,14 @@ merge/resources/hris/resources/scopes/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3
1778
1953
  merge/resources/hris/resources/scopes/client.py,sha256=W8dM4PN3aNlyXyi3-2bo_OdMyzSSfIuKHiCu3Q3bfI8,10778
1779
1954
  merge/resources/hris/resources/scopes/raw_client.py,sha256=B76Goa1Hwc5mFBH_N5bX5gurkZP3Uyk5WCkih9ZkAT8,10992
1780
1955
  merge/resources/hris/resources/sync_status/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1781
- merge/resources/hris/resources/sync_status/client.py,sha256=C0VByNZXdBmVSWxJ3rVJCnR2G7Z4iqJOgWFbUazbUco,5043
1782
- merge/resources/hris/resources/sync_status/raw_client.py,sha256=vSlp7BQ_j8iQ8igB_a3HP461jfJ7T2ufL0C2Ajr_RNg,5627
1956
+ merge/resources/hris/resources/sync_status/client.py,sha256=vuZh3g9YqFciUIcxxjlMMearBTBV3BYligJqovoOvcI,5149
1957
+ merge/resources/hris/resources/sync_status/raw_client.py,sha256=SpvVmi_kTJTf7PhHvwOrPJKCDIoJ83u2Ie7Y3605NSY,5679
1783
1958
  merge/resources/hris/resources/teams/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1784
- merge/resources/hris/resources/teams/client.py,sha256=QcT7e1OzYi5IPGozudG9Fqeg6mvcHAsOjH24ZcnH4lo,12623
1785
- merge/resources/hris/resources/teams/raw_client.py,sha256=L77DktlGZxvKoZSluh4PovuDQkaA_t1Mv-v4fb4xAsM,14880
1959
+ merge/resources/hris/resources/teams/client.py,sha256=RDTGa2WiCvW5xCRVJ7474rqSmS_3fpw_AKid3uo-IB0,14352
1960
+ merge/resources/hris/resources/teams/raw_client.py,sha256=_o0eM37rwjSnxCEbF90-47Sa-btpfC5ZmF3xhWSVZdQ,14932
1786
1961
  merge/resources/hris/resources/time_off/__init__.py,sha256=373npqA5tPcAdLTNxYJjbk000Sxxokls9hqhBwbpEfg,1957
1787
- merge/resources/hris/resources/time_off/client.py,sha256=LcHv4i2b8_G2LUJ5j1hlJDnhugvAYk66Ce_85-QY2i8,25229
1788
- merge/resources/hris/resources/time_off/raw_client.py,sha256=twUq_FuSVkWavOz_FJkDfk4uYtlZVt1ygO_5sMJwnv0,30440
1962
+ merge/resources/hris/resources/time_off/client.py,sha256=gN-iy-bNN2R2e1rG-M4RY9XF2sXX_6jngMkJBOOIdrI,30254
1963
+ merge/resources/hris/resources/time_off/raw_client.py,sha256=yJOcjJHsMQduSOrsYI0KWcOrGTNB6Y9O9r2QY-S6EU8,30492
1789
1964
  merge/resources/hris/resources/time_off/types/__init__.py,sha256=TMGcXOXhqsSi4tbg8nTKlqf1_Y1GAiOuHZxNbnUiWJg,2514
1790
1965
  merge/resources/hris/resources/time_off/types/time_off_list_request_expand.py,sha256=V4uU1OzcmJevHXr79BbmiXgKXum2HM7sX0mvvCk2qmA,751
1791
1966
  merge/resources/hris/resources/time_off/types/time_off_list_request_remote_fields.py,sha256=wPHcr3lzxRqG-rOGbTk7TNu3aZt70rNbKVACZTNr9oA,1595
@@ -1796,23 +1971,24 @@ merge/resources/hris/resources/time_off/types/time_off_retrieve_request_expand.p
1796
1971
  merge/resources/hris/resources/time_off/types/time_off_retrieve_request_remote_fields.py,sha256=ecSF0dKD1s-rCq9_hRNN4xEscNMoiZR_AQb4MoXdlEQ,1627
1797
1972
  merge/resources/hris/resources/time_off/types/time_off_retrieve_request_show_enum_origins.py,sha256=BgO5__bdtrj0oj7Dz3R_IheYB61tEkk_ez7aG5szaak,1651
1798
1973
  merge/resources/hris/resources/time_off_balances/__init__.py,sha256=5IIwDgZxJpEx3_aUX_Vwv9soR03pkvQV75teRPr6xk0,1065
1799
- merge/resources/hris/resources/time_off_balances/client.py,sha256=iXGcqCmBaJ4-C4zGFE-rGWwo5wQylbArLxEDf2kuAQ4,16924
1800
- merge/resources/hris/resources/time_off_balances/raw_client.py,sha256=g7mIaPON8MH-r5cAGsg-N5OYhpt09dNt2M63Ftph3F0,19251
1974
+ merge/resources/hris/resources/time_off_balances/client.py,sha256=rs5je93NLpLrTck8gP1HzFJN2cz-h2HRfyaCZ3UTsnU,19055
1975
+ merge/resources/hris/resources/time_off_balances/raw_client.py,sha256=fzjb6rXp_O4KLSm4KxTBykUYehKpyh5DInBMpob2eSk,19303
1801
1976
  merge/resources/hris/resources/time_off_balances/types/__init__.py,sha256=-Ikm3fZt4V5reHI1Sw2r7F_2PHLOwQyBJGqhZxXG1qk,1145
1802
1977
  merge/resources/hris/resources/time_off_balances/types/time_off_balances_list_request_policy_type.py,sha256=b-iMfE9V52sd9Vr_Q86Vo-03tG8UaAeQRdNeWnjBovo,1272
1803
1978
  merge/resources/hris/resources/timesheet_entries/__init__.py,sha256=V10FKhZJLXWjjTb07Z79CSTz5h7EC8mwqnKgDOHTYlg,1059
1804
- merge/resources/hris/resources/timesheet_entries/client.py,sha256=tUhobAi4TNhIN79Xt_CWMf5dMsbbEVMCbWlDkUXaj6Y,20366
1805
- merge/resources/hris/resources/timesheet_entries/raw_client.py,sha256=u2FAGUXp1lB1JHAvAym5hu_t-tqxiQV4Nkjtc3eRXXE,25477
1979
+ merge/resources/hris/resources/timesheet_entries/client.py,sha256=OQ66fIHTUkvzhliH0pbDKGwEOgAFXeoUnw3acsR6e0U,23627
1980
+ merge/resources/hris/resources/timesheet_entries/raw_client.py,sha256=eJ5vbjLhX9fTeJDPBNArZHyPasIp0-v0EGBqChMG93U,25529
1806
1981
  merge/resources/hris/resources/timesheet_entries/types/__init__.py,sha256=i_S11tBV65N9ip6DBfjpRoojoXMCrJBxuon4d19KY7w,1133
1807
1982
  merge/resources/hris/resources/timesheet_entries/types/timesheet_entries_list_request_order_by.py,sha256=_5wq5NOCrgq6Vf-yp0glKNwA9dnMCfNDpO-0AxLw4YE,665
1808
1983
  merge/resources/hris/resources/webhook_receivers/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1809
1984
  merge/resources/hris/resources/webhook_receivers/client.py,sha256=DzdAvXQYy983Hky2E6MYmhMLO4cSOPWFzrXSuNHlaU8,5214
1810
1985
  merge/resources/hris/resources/webhook_receivers/raw_client.py,sha256=bxXoGGRsQTjkKy_-8CnPwpjNo_qhC4QOQ_jFf1h5D1Y,7135
1811
- merge/resources/hris/types/__init__.py,sha256=amvB0gOsD1Uh4G7z0Dxpq2taJ8yQBbGX_3DWw9wu-q4,28300
1986
+ merge/resources/hris/types/__init__.py,sha256=jVERW6uWz3yt7W1-IgsnS1eoT6mY9eJ1hsc-YmkgRR0,28711
1812
1987
  merge/resources/hris/types/account_details.py,sha256=6FjFKxsxftOM5DJIiueXWPtJZkuFMIVSgcB_2UT7t8w,1617
1813
- merge/resources/hris/types/account_details_and_actions.py,sha256=RU9X0RZWWjNaAplYnhNPORHFJ_NQhdFA7h9F9wC3frs,2134
1988
+ merge/resources/hris/types/account_details_and_actions.py,sha256=4S2cnfZ4T8vU-rudpCuZWlH23sgL4dk6n9k1ZbzrQt4,2121
1814
1989
  merge/resources/hris/types/account_details_and_actions_category.py,sha256=bn6Sf9zNV2E_CQZOB6u8f2SrPUAsj9422o_pU6m9tq0,188
1815
1990
  merge/resources/hris/types/account_details_and_actions_integration.py,sha256=CVJIlOAauqdX0qD-njlO7yyJ8t-wiSHFMUQPqFSPyZ8,947
1991
+ merge/resources/hris/types/account_details_and_actions_status.py,sha256=49pgc9uLW5o2ErI-5RyayatZBDKXiW__Rh0KO83iWY0,256
1816
1992
  merge/resources/hris/types/account_details_and_actions_status_enum.py,sha256=GFrBpSLOiSBWhIoDyKgp7q6WbH5EgKBampdXQzC1C4Y,1065
1817
1993
  merge/resources/hris/types/account_details_category.py,sha256=BQ4dV2k-gK9UW90unpjLU2XMuKy1sBduYF0sYG1TAj0,178
1818
1994
  merge/resources/hris/types/account_integration.py,sha256=woIDDuKOFJNZitvHmnF8PK2AI2dFhmF32i-mpWkmtbU,2614
@@ -1835,6 +2011,7 @@ merge/resources/hris/types/category_enum.py,sha256=j9DOZYeKZvnejiWqyXXdXbgxFx0IX
1835
2011
  merge/resources/hris/types/common_model_scope_api.py,sha256=iikeXuknnlFYmnwoRcQ34AnBwbpAPIYhgmov3HpeBGg,812
1836
2012
  merge/resources/hris/types/common_model_scopes_body_request.py,sha256=KMnJBN-wDY0eQNjXYAgoiyoyXY74T9pzZum_2BIiUhU,726
1837
2013
  merge/resources/hris/types/company.py,sha256=KgwPddmR1gYCgVMAzN8-TSr0lTX2MNFWOYGEaLOe2dY,2263
2014
+ merge/resources/hris/types/completed_account_initial_screen_enum.py,sha256=O8ZkUxzZ79KqliNtuFiA2dhVSsYCysziBgyRDG3pGZI,149
1838
2015
  merge/resources/hris/types/country_enum.py,sha256=2A-XLMufzmrekre6KODisCEJubA35JPrCmHprGUiqKE,35178
1839
2016
  merge/resources/hris/types/data_passthrough_request.py,sha256=gG8yqvRRpSD9HZ7tJZtR2q5oV1gTGlPr2e0NQDyInmo,2421
1840
2017
  merge/resources/hris/types/debug_mode_log.py,sha256=_aDyb6W3eB98mw4lcnG-oXwpOx99KbuBnrUXP6IwdTc,684
@@ -1895,7 +2072,7 @@ merge/resources/hris/types/ethnicity_enum.py,sha256=Efkc3kIc1hSIz18V6Hho3SX3QylX
1895
2072
  merge/resources/hris/types/event_type_enum.py,sha256=wfHQ1fs-1Kca2-WWcmkV_-G4H-RgZVlntxEtZj_VzO8,13928
1896
2073
  merge/resources/hris/types/external_target_field_api.py,sha256=7qYlHHE-NAj2mbecB_tWxwtNftguu6LIXlfc5ifg5G8,684
1897
2074
  merge/resources/hris/types/external_target_field_api_response.py,sha256=idcWL7KmPFGuijxEMfUurCMCbWMzIVFSsoAW71_tW98,2598
1898
- merge/resources/hris/types/field_mapping_api_instance.py,sha256=RttMXfps1-vnnavS0sS1Z9hA_-getVdtHXkfobPKfEk,979
2075
+ merge/resources/hris/types/field_mapping_api_instance.py,sha256=N0khXpICVaxPka4bQi0F4k96B423GTDW7l1NYZRclzM,1022
1899
2076
  merge/resources/hris/types/field_mapping_api_instance_remote_field.py,sha256=HJk927XuxCs-tNA_72KySK3dLY9PZlM21YR8KKelWxw,971
1900
2077
  merge/resources/hris/types/field_mapping_api_instance_remote_field_remote_endpoint_info.py,sha256=14nzCKH-TW0p4bxGHZl-EccAwsPGaa2suQ1WEs6qxu4,737
1901
2078
  merge/resources/hris/types/field_mapping_api_instance_response.py,sha256=GrXY00CnFnlfX-ypA01LZmXX_qV-AprMobCD_K0zjFw,2631
@@ -2006,21 +2183,22 @@ merge/resources/hris/types/units_enum.py,sha256=XIZYjVmI4pBqviS_FDF9jQ4pJ8Nmn-K8
2006
2183
  merge/resources/hris/types/validation_problem_source.py,sha256=0ayE7x_uM8R0pzVRz9ZZEc6WS1RUZO3VW3zXjh61RVs,576
2007
2184
  merge/resources/hris/types/warning_validation_problem.py,sha256=RXDtt3t3FwIeGGXkIr_OHOAybDZg44L_5hOqa2sLlJ0,736
2008
2185
  merge/resources/hris/types/webhook_receiver.py,sha256=g4KQnc-vZPJGlXK-OOFIn2WGyTLKoeaq9TPWQ46VwFY,623
2009
- merge/resources/knowledgebase/__init__.py,sha256=cEw3AHdKuUroH7SmsozF4iwtTH-nIvpW6HfZxOoRsaY,14690
2186
+ merge/resources/knowledgebase/__init__.py,sha256=RDEUO-NBDu8gIaW3LN2p-xZYUvLA4z-6YuM0iIX4GxA,15104
2010
2187
  merge/resources/knowledgebase/client.py,sha256=D66KNfTMVcEfpxPBUDT3IbUWDBAQ0mB2URDyFM6y-KE,20222
2011
2188
  merge/resources/knowledgebase/raw_client.py,sha256=wiGVfv35N8OzcrNoQZjzutTGBE3oVCKw7fN-ixpBMWw,424
2012
- merge/resources/knowledgebase/resources/__init__.py,sha256=HfJAF1XR-ZN3LkiJeWNUXSCwyiYrNWJZ_F9r_oa1aQ4,3745
2189
+ merge/resources/knowledgebase/resources/__init__.py,sha256=p60KNle0gUbPf5OiqWA0tVmQZ7wQiYvFTF6yVco2b5I,4136
2013
2190
  merge/resources/knowledgebase/resources/account_details/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2014
2191
  merge/resources/knowledgebase/resources/account_details/client.py,sha256=JK_2aJDaQE2XopcbnFtIQtlsoqhGbQITuA6sUZAIENc,2821
2015
2192
  merge/resources/knowledgebase/resources/account_details/raw_client.py,sha256=udTPyLlYJzj2-1-scaoGLO3mJS8FMTLS6YIQ34am3-M,3371
2016
2193
  merge/resources/knowledgebase/resources/account_token/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2017
2194
  merge/resources/knowledgebase/resources/account_token/client.py,sha256=q47XuhxSBRNu6IltySLDnA5MrOIAfi9gm_tW8a9Gnjs,3111
2018
2195
  merge/resources/knowledgebase/resources/account_token/raw_client.py,sha256=LeZgDOxgK6hNk6dCVOrJW5iBpybRiomfzunWZjzfy4s,3657
2019
- merge/resources/knowledgebase/resources/articles/__init__.py,sha256=F_EJKu-fDFv-LrPuZsJ8kYutCtO1xLHvTiVQsP-GHnM,1150
2020
- merge/resources/knowledgebase/resources/articles/client.py,sha256=vKbpkLA-57HddW8VGelnkkEXPgftieYdw6dhVHoXviQ,13773
2021
- merge/resources/knowledgebase/resources/articles/raw_client.py,sha256=1OWqiHhBmnLdrJy9JJCknr_m1h7-xyMSbwZSYJU9RFM,16058
2022
- merge/resources/knowledgebase/resources/articles/types/__init__.py,sha256=uxx3piYOkZDyrYTT-t3Bd9sbMvH20Epsbu4nr4WYdJk,1272
2196
+ merge/resources/knowledgebase/resources/articles/__init__.py,sha256=wQ-2yVYx8Bl0y1NseAlhuj7kEppJtpEmE_RUI1T7fTw,1243
2197
+ merge/resources/knowledgebase/resources/articles/client.py,sha256=GF2F6LkCYaBBzqZYhQWviVErA_482g4_zn2t0PaT4sk,17786
2198
+ merge/resources/knowledgebase/resources/articles/raw_client.py,sha256=H5_pgCNvmuSCyXSd25bB-hQoq8zJIkrh7t4BgHq5vqc,17218
2199
+ merge/resources/knowledgebase/resources/articles/types/__init__.py,sha256=H0d78uvz5JmE0posTcZboEStU1eXRc9FL11i4-DSWwc,1429
2023
2200
  merge/resources/knowledgebase/resources/articles/types/articles_list_request_expand.py,sha256=7yWmB8fngthwj0Hhl0iRLfHdAQAgfRAYhGptsyxLewU,45535
2201
+ merge/resources/knowledgebase/resources/articles/types/articles_list_request_type.py,sha256=ICC-Cy2P-_5G3Arbn6hgmzoA889anGVPdppNz4i5H9Q,835
2024
2202
  merge/resources/knowledgebase/resources/articles/types/articles_retrieve_request_expand.py,sha256=NfG3c8XNh-Wnwu3f2fLRX0kTIAbWjvcJPMoic3_vhWk,46119
2025
2203
  merge/resources/knowledgebase/resources/async_passthrough/__init__.py,sha256=fKVWk4jeqEvhNZuk0EtXPEFl5uB136ROeo8C6xczZI8,1053
2026
2204
  merge/resources/knowledgebase/resources/async_passthrough/client.py,sha256=QJE4-g9TI52FPyRC7UmVmoh-pUKzCwDn2Y9DqUC1Syk,6012
@@ -2028,25 +2206,26 @@ merge/resources/knowledgebase/resources/async_passthrough/raw_client.py,sha256=h
2028
2206
  merge/resources/knowledgebase/resources/async_passthrough/types/__init__.py,sha256=xZoQJ90iQWokoy6yfd_9sggRIkFEWCIPhmpoahoo_t0,1113
2029
2207
  merge/resources/knowledgebase/resources/async_passthrough/types/async_passthrough_retrieve_response.py,sha256=uBMjgizc2Qhm2JA0rRTer6NiRT3sq_v-EyTrzkiQC0g,203
2030
2208
  merge/resources/knowledgebase/resources/attachments/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2031
- merge/resources/knowledgebase/resources/attachments/client.py,sha256=q8LgeS-6EGSwouwnX7UksmZEH4AGde8-wjwKZ4z6vMw,11237
2032
- merge/resources/knowledgebase/resources/attachments/raw_client.py,sha256=zlcZ6h4oZoq3BpdNSJKPK0lDTi0-2O6_wKXIFtjnoZw,13452
2209
+ merge/resources/knowledgebase/resources/attachments/client.py,sha256=tRvucr13Jk0d0mgaP60doO48szgC8Ohh56kMnQg7WlU,12872
2210
+ merge/resources/knowledgebase/resources/attachments/raw_client.py,sha256=uis1MvWlg_u4iOShB0hdC_pkqsQSe9mmgfS2vN0pD8M,13504
2033
2211
  merge/resources/knowledgebase/resources/audit_trail/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2034
- merge/resources/knowledgebase/resources/audit_trail/client.py,sha256=gCDFBBVvSe9bWq3u21gYFJqNvd_ZO_L5VMY6wmn2bqU,8550
2212
+ merge/resources/knowledgebase/resources/audit_trail/client.py,sha256=I17Tb2_IrUQpiFnhs_QZ5sxVOB5WZ8fAbxQqCN1F9JI,8908
2035
2213
  merge/resources/knowledgebase/resources/audit_trail/raw_client.py,sha256=v6hAeJO-I1r1TTreGpzVMxGuX1Cut8Kd8_JGa4qca_E,9108
2036
2214
  merge/resources/knowledgebase/resources/available_actions/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2037
2215
  merge/resources/knowledgebase/resources/available_actions/client.py,sha256=n4h5hipZpD-gLLd-pZ6Rdw0Z6Q-QNoE4wVgwUpjwDkQ,2915
2038
2216
  merge/resources/knowledgebase/resources/available_actions/raw_client.py,sha256=1oSk9esh4caLNwFEaxYU85h00akNG4DalGdYUcmr_aU,3457
2039
- merge/resources/knowledgebase/resources/containers/__init__.py,sha256=2r_QLNWlmpx5CVGFNUr9x12krcTc-Fr53073J9zqvj0,1162
2040
- merge/resources/knowledgebase/resources/containers/client.py,sha256=5pQ4jLPXtyCeeh-c1Q99dR5VPnNNjA-6Wuyqc1SAxyY,13867
2041
- merge/resources/knowledgebase/resources/containers/raw_client.py,sha256=7j6EztqITLdi6kxgnSG_j-XegqAbRatOQvea7MrfDHY,16152
2042
- merge/resources/knowledgebase/resources/containers/types/__init__.py,sha256=X3LvoprATO_srzk34-Ke7EPpB2io1339Jb28kQGjUk8,1292
2217
+ merge/resources/knowledgebase/resources/containers/__init__.py,sha256=ClbFOUcx3m8nnEBr2709cQD9ngtIqnSu8cYrDW9BNjY,1261
2218
+ merge/resources/knowledgebase/resources/containers/client.py,sha256=GKz7XbOnEfVFjVY7Cu2JF1sKJTJ2pN_UxHaPJa7vK2Y,16838
2219
+ merge/resources/knowledgebase/resources/containers/raw_client.py,sha256=VnNY5jTP9ZBbQmxVHTSEzB3gtSxaniNF82zegcCSR9Y,16366
2220
+ merge/resources/knowledgebase/resources/containers/types/__init__.py,sha256=ZrfQ3PHDycCsfskWq-xTM6YpJ35SIioEndaUkEPUqSk,1459
2043
2221
  merge/resources/knowledgebase/resources/containers/types/containers_list_request_expand.py,sha256=n482DdDX49iXN8Uo4MKNOK75F6CAmt3BOC1hMfPvnms,1931
2222
+ merge/resources/knowledgebase/resources/containers/types/containers_list_request_type.py,sha256=j5heeiWrT9q6A5q0S57x8WNsYvT7vOw1q3PxpxKaDuQ,1310
2044
2223
  merge/resources/knowledgebase/resources/containers/types/containers_retrieve_request_expand.py,sha256=6sD2COJbzMN3bqkBc5GJWdzmwUdSKArjhUIHU8ZIGE4,1963
2045
2224
  merge/resources/knowledgebase/resources/delete_account/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2046
2225
  merge/resources/knowledgebase/resources/delete_account/client.py,sha256=DewFDyrIjXMMeOVRmwq13vZ2lp4gY7ttYWic2gMstA4,2685
2047
2226
  merge/resources/knowledgebase/resources/delete_account/raw_client.py,sha256=ud5pfVrQ1LAJvw9-GpEE9At7UPbttuF7vLAq0-Tfkc4,2655
2048
2227
  merge/resources/knowledgebase/resources/field_mapping/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2049
- merge/resources/knowledgebase/resources/field_mapping/client.py,sha256=gmXUTuHuHVKHXvU_0x3MW4F7bIHN8eGNgd4CZRO6HNk,24414
2228
+ merge/resources/knowledgebase/resources/field_mapping/client.py,sha256=ifrAGF7DNecO1nm3dEqfJ0O4B2fgFMm_KR7tWy_hDA8,24874
2050
2229
  merge/resources/knowledgebase/resources/field_mapping/raw_client.py,sha256=YAiFuNYdGqDRg8Ox4Y9MlP4tzkj5U7Qm76p5PNweNtM,30191
2051
2230
  merge/resources/knowledgebase/resources/force_resync/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2052
2231
  merge/resources/knowledgebase/resources/force_resync/client.py,sha256=hdHeyPXRNHeTmbUMIQYkCh_6I2oKJIMpObKnI8k28BU,3539
@@ -2055,24 +2234,25 @@ merge/resources/knowledgebase/resources/generate_key/__init__.py,sha256=_VhToAyI
2055
2234
  merge/resources/knowledgebase/resources/generate_key/client.py,sha256=4_MjBNgON0SN4Fl4zPCe5omx3KUTKPD6fxP0eMFP4h0,3090
2056
2235
  merge/resources/knowledgebase/resources/generate_key/raw_client.py,sha256=hSV64JcBZJU6DANPNUkDT0eAdkhfvcAHHEAODq3ufa0,3870
2057
2236
  merge/resources/knowledgebase/resources/groups/__init__.py,sha256=LjQS6gP1VkMzmtGeOdiePmPlhPO_9VmkymJtH2ooPWs,1127
2058
- merge/resources/knowledgebase/resources/groups/client.py,sha256=qsmQJoMS43qWkDk8sfqhQiPNQRGlJ6w9puYl6fMSk4s,12377
2059
- merge/resources/knowledgebase/resources/groups/raw_client.py,sha256=RbtajQjCvRKJcL0dxustMlh45kR0905sAtaIZHequ-8,14620
2237
+ merge/resources/knowledgebase/resources/groups/client.py,sha256=yTFCfaKvfARz2X7-tGCfozCfPXd_0zqaFeDLEQ8_I0o,14728
2238
+ merge/resources/knowledgebase/resources/groups/raw_client.py,sha256=A-3xXO3r7iiqrYxUTTPbg9n2DgMUhFrL_uhe3hzPwD0,14672
2060
2239
  merge/resources/knowledgebase/resources/groups/types/__init__.py,sha256=bYBMAkIAwyM1P7jSDXi_tnjHqVd7N9JjEnDoWKFEBcw,1252
2061
2240
  merge/resources/knowledgebase/resources/groups/types/groups_list_request_expand.py,sha256=uNlRrg0IWFy8PK7cclBbsAI5XWfBxUp9faYAdl2zjJE,757
2062
2241
  merge/resources/knowledgebase/resources/groups/types/groups_retrieve_request_expand.py,sha256=xKbedmOzTzfD0vB77TeKdvBakl__j_s_gwJQ1jUC060,773
2063
2242
  merge/resources/knowledgebase/resources/issues/__init__.py,sha256=fKOCxeYsbS41Y58p81luMrp7eaz6BLop2enXQ3HTvtc,1026
2064
- merge/resources/knowledgebase/resources/issues/client.py,sha256=dy-XDdZtQyXjsaeRqW-u8IpK2MfgBL5Plbl7-hPcCrw,11127
2065
- merge/resources/knowledgebase/resources/issues/raw_client.py,sha256=IDTzUuYcVnX3WVB9QxDli6SH0p_f34JzIhrO0ahpokA,13726
2243
+ merge/resources/knowledgebase/resources/issues/client.py,sha256=fO-PreeRIy07FB4yLcwfyw5rdV5uKhObG24EU6Q_6W0,13396
2244
+ merge/resources/knowledgebase/resources/issues/raw_client.py,sha256=ZftGIl0vTVv0ho7p1R14LOSiHwJZdHLoVhXsH5OsZtU,13778
2066
2245
  merge/resources/knowledgebase/resources/issues/types/__init__.py,sha256=c7N5BxoJGun2-0qD15I96eDPA36xKVGjt08VJoifSNo,1068
2067
2246
  merge/resources/knowledgebase/resources/issues/types/issues_list_request_status.py,sha256=cBbfu1Q5A0ZPOzB7nM_VHRKEJHnxk8lqN-cGmRX6_x4,508
2068
- merge/resources/knowledgebase/resources/link_token/__init__.py,sha256=rFqQQV74iUqiyFV38kXLmMy_6QOH7ifcfn9qSZHnCCI,1044
2069
- merge/resources/knowledgebase/resources/link_token/client.py,sha256=VZk_nEe47_-TkiHn429cOAhKDEce6CRGXEZWbAKDDUk,12760
2070
- merge/resources/knowledgebase/resources/link_token/raw_client.py,sha256=xBiPx6KeMwiuKND-1RcIsOZahICkDA5E36fsQn_9YP0,13142
2071
- merge/resources/knowledgebase/resources/link_token/types/__init__.py,sha256=5u4pc35s4TmNZ4O2Le56xHN3UZGmvlCdr-C3BfxIEOg,1100
2247
+ merge/resources/knowledgebase/resources/link_token/__init__.py,sha256=SnrZh75KCWfeI4PNUZFwHVSreQcmMJIqJiYcC_Ngtpo,1225
2248
+ merge/resources/knowledgebase/resources/link_token/client.py,sha256=4ztxNLd0a3kCP1pU1YMtcxS9J5XRZ1hDRMj_gdwuDag,13861
2249
+ merge/resources/knowledgebase/resources/link_token/raw_client.py,sha256=YFGWFjPHBWRa9cqShWtXHHWbmF967C1BT9Tv3Opyy8o,14257
2250
+ merge/resources/knowledgebase/resources/link_token/types/__init__.py,sha256=_R_BKsWS8EzRz6fT2MqvVt4S8shrLKb2fVJFkfPtm-Y,1424
2251
+ merge/resources/knowledgebase/resources/link_token/types/end_user_details_request_completed_account_initial_screen.py,sha256=zukDNJ3gyH3NNfkChH2SATk-rfFOnL0e1jxqJoY3g28,281
2072
2252
  merge/resources/knowledgebase/resources/link_token/types/end_user_details_request_language.py,sha256=2BMH_lFqvpT1C4ljoUh5YUm2dgiuLYil6s3_pKcn540,194
2073
2253
  merge/resources/knowledgebase/resources/linked_accounts/__init__.py,sha256=qlT602tt9halCaj1oeXa66bVB_5EImiYWgBYpAFP3dY,1056
2074
- merge/resources/knowledgebase/resources/linked_accounts/client.py,sha256=kb_EedFTfKhZILVgTJq-Pt_UcP6o4DlFT3Nlu21Yfy0,10096
2075
- merge/resources/knowledgebase/resources/linked_accounts/raw_client.py,sha256=iBp70kMpbknXYNfRMIz5MtxpuB-2PMgN5qGZEmiAG00,10764
2254
+ merge/resources/knowledgebase/resources/linked_accounts/client.py,sha256=spDw0LOjW1EwPL3K3HJIpP111GZrvTkDHpFP1VAauX4,11538
2255
+ merge/resources/knowledgebase/resources/linked_accounts/raw_client.py,sha256=eyVHqJGONAMVj4Be9nBk88-UisIQJ9-UwHqQmlVGmjY,10816
2076
2256
  merge/resources/knowledgebase/resources/linked_accounts/types/__init__.py,sha256=xWSbOu74X9JxtUN921_jbVtBDygRoEcDyGXySS5soJc,1126
2077
2257
  merge/resources/knowledgebase/resources/linked_accounts/types/linked_accounts_list_request_category.py,sha256=_rMwcKPc1kSMnWr99wLxQ_n7gZhtx20HrOo3iMPLOg0,1547
2078
2258
  merge/resources/knowledgebase/resources/passthrough/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
@@ -2085,11 +2265,11 @@ merge/resources/knowledgebase/resources/scopes/__init__.py,sha256=_VhToAyIt_5axN
2085
2265
  merge/resources/knowledgebase/resources/scopes/client.py,sha256=lGZA9eVjFLWsvX_Hb-e0E1uGvloTkj6iQTAWWWX8nUI,10850
2086
2266
  merge/resources/knowledgebase/resources/scopes/raw_client.py,sha256=NzCBBZcZUqDnhRXy1plnDYCcFKZz2TU5bUJ15mTK174,11046
2087
2267
  merge/resources/knowledgebase/resources/sync_status/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2088
- merge/resources/knowledgebase/resources/sync_status/client.py,sha256=oqAFIJ0xTAuGKQzmmrsfvnD-Yx9AUd0LTgjVdTxJMpw,5061
2089
- merge/resources/knowledgebase/resources/sync_status/raw_client.py,sha256=l3iRfc8znBgpc6j03mGwQVcx-mdgz83g8SRorK-9maU,5645
2268
+ merge/resources/knowledgebase/resources/sync_status/client.py,sha256=KHrAXBQvVSAx7Xml-NihUXRN3OjFTcPnEgGp7TKuEkY,5167
2269
+ merge/resources/knowledgebase/resources/sync_status/raw_client.py,sha256=dkiBMisQSD87KfQCW8k91tnYi1hCxYugxY5fqQAoCKY,5697
2090
2270
  merge/resources/knowledgebase/resources/users/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2091
- merge/resources/knowledgebase/resources/users/client.py,sha256=WuyNWibXDCCP1mBd2p127DforMws7ozxNJ5IvhnTP0I,11055
2092
- merge/resources/knowledgebase/resources/users/raw_client.py,sha256=Z98oYheMLAqG1O_bxd4JEDZ0-bh7qtUPHkngJb8aiHw,13270
2271
+ merge/resources/knowledgebase/resources/users/client.py,sha256=85VumOMSjSQJ-rdWVh5wz7SOPgNoEntqYsu8mKiEK6U,12690
2272
+ merge/resources/knowledgebase/resources/users/raw_client.py,sha256=E4BVM117IeXZ5A2ewc9_3_Svb6vilSjWl1Pv5PQToQM,13322
2093
2273
  merge/resources/knowledgebase/resources/webhook_receivers/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2094
2274
  merge/resources/knowledgebase/resources/webhook_receivers/client.py,sha256=6QiLmnqf42c5rmX_enPYd3uFifvbVWX2hY74SnHCZuM,5250
2095
2275
  merge/resources/knowledgebase/resources/webhook_receivers/raw_client.py,sha256=dcMxXlSRNwy6-ksYJir66I0Tsha17ylDep7O2OcCmS0,7171
@@ -2207,10 +2387,10 @@ merge/resources/knowledgebase/types/validation_problem_source.py,sha256=0ayE7x_u
2207
2387
  merge/resources/knowledgebase/types/visibility_enum.py,sha256=bp-MwlUsrZ4AgX_IJNutaPXOYZIWweKIoBZYVWlPz5k,767
2208
2388
  merge/resources/knowledgebase/types/warning_validation_problem.py,sha256=RXDtt3t3FwIeGGXkIr_OHOAybDZg44L_5hOqa2sLlJ0,736
2209
2389
  merge/resources/knowledgebase/types/webhook_receiver.py,sha256=g4KQnc-vZPJGlXK-OOFIn2WGyTLKoeaq9TPWQ46VwFY,623
2210
- merge/resources/ticketing/__init__.py,sha256=wi2p8mpxTNxTEQYYgWcb-XWpG34Wj3TMg2gjbnzpkHs,21310
2390
+ merge/resources/ticketing/__init__.py,sha256=jW6KyyQfNAnbmWFW35KQg--_xFR7njMWZGXJzLK4Xr8,21895
2211
2391
  merge/resources/ticketing/client.py,sha256=kioyOQqFTh18MypzQZEPPBUSa8zXRo41ba2ybI5hSC8,24496
2212
2392
  merge/resources/ticketing/raw_client.py,sha256=8HRcdo0adAZI5EQ6hFobLqvdQsox9Qo5n45Q8wF-RZs,416
2213
- merge/resources/ticketing/resources/__init__.py,sha256=sBrI7BsMq735oKMF7ZSu3jYAqUfDAgskyK5IQinQiG4,5154
2393
+ merge/resources/ticketing/resources/__init__.py,sha256=6TEYyCY_RuhpZfQsEa7qIZkK6M_T186E93nILByxiHg,5589
2214
2394
  merge/resources/ticketing/resources/account_details/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2215
2395
  merge/resources/ticketing/resources/account_details/client.py,sha256=2cymTg1GvjMz6tMpPo8YH5qtqEnPuceg490SR64ulBo,2813
2216
2396
  merge/resources/ticketing/resources/account_details/raw_client.py,sha256=9SbWMRxf_RI_RdNe4cJMw9gT1YTcijaHNalSJCOtgo4,3363
@@ -2218,7 +2398,7 @@ merge/resources/ticketing/resources/account_token/__init__.py,sha256=_VhToAyIt_5
2218
2398
  merge/resources/ticketing/resources/account_token/client.py,sha256=ZG5vym9OZwE-klocwreK9OwaHXGA7QQhrSshr0fAchs,3103
2219
2399
  merge/resources/ticketing/resources/account_token/raw_client.py,sha256=lHbfOtAoj0RmOLZ71hWCIrG9fCB_13hlg3wsrtKHGlQ,3649
2220
2400
  merge/resources/ticketing/resources/accounts/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2221
- merge/resources/ticketing/resources/accounts/client.py,sha256=bi-RVPzDYoZrFtrPxSAzPGnFZaFauXQS7sWFz6f4Ahk,11131
2401
+ merge/resources/ticketing/resources/accounts/client.py,sha256=lKi-ViLt93-5EDd1g8_PME9FdG2OUKhfuDDHnpRFmwA,12714
2222
2402
  merge/resources/ticketing/resources/accounts/raw_client.py,sha256=cvi5lvO22buGa3mKI9aM2MrozGH3XWSN2MW97TPGg10,13346
2223
2403
  merge/resources/ticketing/resources/async_passthrough/__init__.py,sha256=fKVWk4jeqEvhNZuk0EtXPEFl5uB136ROeo8C6xczZI8,1053
2224
2404
  merge/resources/ticketing/resources/async_passthrough/client.py,sha256=E1lI--LpCWjR5DsX3A3KeSLVeOSC_wm-UOd3lZ1Drjg,5988
@@ -2226,34 +2406,35 @@ merge/resources/ticketing/resources/async_passthrough/raw_client.py,sha256=B2COr
2226
2406
  merge/resources/ticketing/resources/async_passthrough/types/__init__.py,sha256=xZoQJ90iQWokoy6yfd_9sggRIkFEWCIPhmpoahoo_t0,1113
2227
2407
  merge/resources/ticketing/resources/async_passthrough/types/async_passthrough_retrieve_response.py,sha256=uBMjgizc2Qhm2JA0rRTer6NiRT3sq_v-EyTrzkiQC0g,203
2228
2408
  merge/resources/ticketing/resources/attachments/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2229
- merge/resources/ticketing/resources/attachments/client.py,sha256=WGVZBQu32PRSKm4K9uki0FdZppAeUCO_drJhWjRld3E,21096
2230
- merge/resources/ticketing/resources/attachments/raw_client.py,sha256=lBS350-8PGAhK64wxvoFuu38ZIy5mEaxqsWVZtkHquk,28299
2409
+ merge/resources/ticketing/resources/attachments/client.py,sha256=wkTYIMaPmDJqHHj7uhQSOj9dAtNHXetGk9Acr4iiYis,23197
2410
+ merge/resources/ticketing/resources/attachments/raw_client.py,sha256=U9pd8pUacdrYs9704wWsRpwLtyzhQA8KQiC2UxZgJd8,28351
2231
2411
  merge/resources/ticketing/resources/audit_trail/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2232
- merge/resources/ticketing/resources/audit_trail/client.py,sha256=9-kRlF-WlfPUh38bcfYbfkJXAXa7fNl0FXjrQPMHw14,8542
2233
- merge/resources/ticketing/resources/audit_trail/raw_client.py,sha256=3fdCcY8-UOrjU_eLEjnGZESf9K48ceoh_WOoyykFGA4,9100
2412
+ merge/resources/ticketing/resources/audit_trail/client.py,sha256=VoVlNxcesB4u5eVYf1bwPZNO70OgV2okvoqzNpCYGMU,8952
2413
+ merge/resources/ticketing/resources/audit_trail/raw_client.py,sha256=DVGEHFjEt7o9dYAR5YQt20Eapta2BwANnPZErGtT9h4,9152
2234
2414
  merge/resources/ticketing/resources/available_actions/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2235
2415
  merge/resources/ticketing/resources/available_actions/client.py,sha256=0ZuT2-IouQtS2djKSuMl_kjh384RtNxDJXPjt2vr4q8,2907
2236
2416
  merge/resources/ticketing/resources/available_actions/raw_client.py,sha256=bqHzLRUZnmV-0yc6e3JJQgI68Rf8C1bJItdcQ4SBwfI,3449
2237
- merge/resources/ticketing/resources/collections/__init__.py,sha256=yzQrpCSEQDsIFmwVIz3dki0SBCv0iF2iO9G4mUCElBY,1062
2238
- merge/resources/ticketing/resources/collections/client.py,sha256=94Hx7UBieWENq-arOaOwlBwrroyG7BxwaMr5z8IM-l8,22635
2239
- merge/resources/ticketing/resources/collections/raw_client.py,sha256=AXFevui5SvaozIgMRJitxk6L7bGyrp7MpuzUbycTKVs,25891
2240
- merge/resources/ticketing/resources/collections/types/__init__.py,sha256=N7Z33MY0yvoP4hp7YILUcy6ZW-5IGLzPW_ZPMHDMmaA,1136
2417
+ merge/resources/ticketing/resources/collections/__init__.py,sha256=ma8Ht2Ehe7MgZzenMUFVtl_nKOlrUHDtngASqq9XM34,1201
2418
+ merge/resources/ticketing/resources/collections/client.py,sha256=m8VOqw2v7vyVjsmsUr3Ody-Sd6FoPCLC3tbYyEY9ce4,25757
2419
+ merge/resources/ticketing/resources/collections/raw_client.py,sha256=OIFBmyWjB6KGF3IiT-dkyknxPgJWKOxywKJvGMJYqV4,26172
2420
+ merge/resources/ticketing/resources/collections/types/__init__.py,sha256=hWJmrDPEDWkTso7OsGVf6t_VairqGjOFnbdGY0oFLsY,1361
2421
+ merge/resources/ticketing/resources/collections/types/collections_list_request_collection_type.py,sha256=NR8gaGXFyfouRsxW0WrWHbTmigEBCGPu3qCDdD4FpFQ,711
2241
2422
  merge/resources/ticketing/resources/collections/types/collections_viewers_list_request_expand.py,sha256=OJlzFVlszeOLtpbqPGUN2Vndb1Txaooy9GpFIIUAyjA,715
2242
2423
  merge/resources/ticketing/resources/comments/__init__.py,sha256=NmHEkKeKhNPwbtx8Rf6sNuSPSVdGhPMoYHI3mZB7KiM,1150
2243
- merge/resources/ticketing/resources/comments/client.py,sha256=dbcWvzm1cpTUOarljbRu3SG_eQydtbo_5cmeecjpz9U,18104
2244
- merge/resources/ticketing/resources/comments/raw_client.py,sha256=R1HMAkvc1U9_n0OoZjBZBYLgvPH3dyQNqSwvY4OMPe4,22885
2424
+ merge/resources/ticketing/resources/comments/client.py,sha256=c5ibB5VkadAgc-MBftGKC_a2hr1afswpzUkaHUM8aDE,20909
2425
+ merge/resources/ticketing/resources/comments/raw_client.py,sha256=kTI46-ovfxGL1DTyqqgWoHDYoFOHk1b6lSGp7QNz9PA,22937
2245
2426
  merge/resources/ticketing/resources/comments/types/__init__.py,sha256=E47ia0Pdd0Ocjwn0Ze01GAB1UImx5QuUtVRf3kHXzQk,1272
2246
2427
  merge/resources/ticketing/resources/comments/types/comments_list_request_expand.py,sha256=nKoGDtfRuefnl4HY6gbLt-31Ma5JuoKwJVOlmszWpkM,1435
2247
2428
  merge/resources/ticketing/resources/comments/types/comments_retrieve_request_expand.py,sha256=uzvlPNelOETowutZAc7eGSzotIOgFW5PdE2PpfxsM64,1467
2248
2429
  merge/resources/ticketing/resources/contacts/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2249
- merge/resources/ticketing/resources/contacts/client.py,sha256=cq7x7koU5EVDQ9gZxSFgK4lyDDP2j8vDgRH65LfI94A,17467
2250
- merge/resources/ticketing/resources/contacts/raw_client.py,sha256=9gy-_3SMnw-CSwI-lgzWS6C0WcPfRzwSKeZ6uiKf_p4,22074
2430
+ merge/resources/ticketing/resources/contacts/client.py,sha256=UsJT2jr-q6SUT-7UIgYMj7ExXqPmfeTJfgaCjob8E2c,19320
2431
+ merge/resources/ticketing/resources/contacts/raw_client.py,sha256=UI5PvEip4FkiuxkjVOw7q0VHQ0VM4nLkjlJFL71zTeM,22126
2251
2432
  merge/resources/ticketing/resources/delete_account/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2252
2433
  merge/resources/ticketing/resources/delete_account/client.py,sha256=mGGWMgMjplnEsjt42J2059posWuCj-FyuAPhPhcLdQs,2677
2253
2434
  merge/resources/ticketing/resources/delete_account/raw_client.py,sha256=dEzvAjF-eusLG3buwgndEeSLeIavl5kCK051Gf1cKD4,2647
2254
2435
  merge/resources/ticketing/resources/field_mapping/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2255
- merge/resources/ticketing/resources/field_mapping/client.py,sha256=0aQg8g3vABEe7SG8rWGmXiXmWZoGOg8rYeLkT5T5cVU,23538
2256
- merge/resources/ticketing/resources/field_mapping/raw_client.py,sha256=vrWu_CHk527z4LojDO9lC6C80VJOh5GiceCF52_LK3U,29287
2436
+ merge/resources/ticketing/resources/field_mapping/client.py,sha256=IoSTV6HQtGdPiRZhn9T7LPzgEIV6JLdgq6oyOjjiagE,24826
2437
+ merge/resources/ticketing/resources/field_mapping/raw_client.py,sha256=kjVvX4E6IEQYwVbfRzvn2hETzl6NCUVt6SrN9_4zYlk,30143
2257
2438
  merge/resources/ticketing/resources/force_resync/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2258
2439
  merge/resources/ticketing/resources/force_resync/client.py,sha256=qoeVC2ZwTnDjmFb-bWJAt0iQpi0zhJ8BAqyUIfcVlmw,3531
2259
2440
  merge/resources/ticketing/resources/force_resync/raw_client.py,sha256=a_FfyCU-LgOb1IM8-Q3cMviukPzRu7rbSX7MIwISqWQ,4073
@@ -2261,68 +2442,70 @@ merge/resources/ticketing/resources/generate_key/__init__.py,sha256=_VhToAyIt_5a
2261
2442
  merge/resources/ticketing/resources/generate_key/client.py,sha256=E8nSNnqWvCunfpnsxpzHYr_8PwF2wvPfKJks4U3K37s,3082
2262
2443
  merge/resources/ticketing/resources/generate_key/raw_client.py,sha256=2pNt8XeoEfLWWU5AFAfVPAfQUUU9tgkgnC_WtQqjeRA,3862
2263
2444
  merge/resources/ticketing/resources/issues/__init__.py,sha256=fKOCxeYsbS41Y58p81luMrp7eaz6BLop2enXQ3HTvtc,1026
2264
- merge/resources/ticketing/resources/issues/client.py,sha256=29DR1tdAo7aQeUFFVii8OJcIXBioruHifiFIZzOoiD8,11111
2265
- merge/resources/ticketing/resources/issues/raw_client.py,sha256=uMCeEUnnnEsq0ZHlpSj4ZFaZCj-HKXzBuAFdxGG0ocU,13710
2445
+ merge/resources/ticketing/resources/issues/client.py,sha256=h8iwo3NmFBdILw5bvvXxUIm_IbyitXwl_yJYFKBk1Tw,13322
2446
+ merge/resources/ticketing/resources/issues/raw_client.py,sha256=d3X0sRceKl_QmRHr-VH1dc4URc0UQ7nqpKAcoxeFOpg,13762
2266
2447
  merge/resources/ticketing/resources/issues/types/__init__.py,sha256=c7N5BxoJGun2-0qD15I96eDPA36xKVGjt08VJoifSNo,1068
2267
2448
  merge/resources/ticketing/resources/issues/types/issues_list_request_status.py,sha256=cBbfu1Q5A0ZPOzB7nM_VHRKEJHnxk8lqN-cGmRX6_x4,508
2268
- merge/resources/ticketing/resources/link_token/__init__.py,sha256=rFqQQV74iUqiyFV38kXLmMy_6QOH7ifcfn9qSZHnCCI,1044
2269
- merge/resources/ticketing/resources/link_token/client.py,sha256=kvwXn7QVvbO6qcEolTXaC-fnlZ4KoT0Ym9T7TSbCtN4,12744
2270
- merge/resources/ticketing/resources/link_token/raw_client.py,sha256=sedkVgAc9VMq4Ri79L2LyKa2g1IpZ6oLaVk0irEURGI,13134
2271
- merge/resources/ticketing/resources/link_token/types/__init__.py,sha256=5u4pc35s4TmNZ4O2Le56xHN3UZGmvlCdr-C3BfxIEOg,1100
2449
+ merge/resources/ticketing/resources/link_token/__init__.py,sha256=SnrZh75KCWfeI4PNUZFwHVSreQcmMJIqJiYcC_Ngtpo,1225
2450
+ merge/resources/ticketing/resources/link_token/client.py,sha256=wpPd4nq1OL3OamzUcYZKIrYEifg5vHHjonwq0MO_n0M,13845
2451
+ merge/resources/ticketing/resources/link_token/raw_client.py,sha256=Z8J_7AeJgGsDjehVZuftwliH3abUkkb_xZ6tSmYaPHU,14249
2452
+ merge/resources/ticketing/resources/link_token/types/__init__.py,sha256=_R_BKsWS8EzRz6fT2MqvVt4S8shrLKb2fVJFkfPtm-Y,1424
2453
+ merge/resources/ticketing/resources/link_token/types/end_user_details_request_completed_account_initial_screen.py,sha256=zukDNJ3gyH3NNfkChH2SATk-rfFOnL0e1jxqJoY3g28,281
2272
2454
  merge/resources/ticketing/resources/link_token/types/end_user_details_request_language.py,sha256=2BMH_lFqvpT1C4ljoUh5YUm2dgiuLYil6s3_pKcn540,194
2273
2455
  merge/resources/ticketing/resources/linked_accounts/__init__.py,sha256=qlT602tt9halCaj1oeXa66bVB_5EImiYWgBYpAFP3dY,1056
2274
- merge/resources/ticketing/resources/linked_accounts/client.py,sha256=DMUIzAVFBi1IPzEb8NWkTgGhcAk2___7TLvOdUubVmU,9962
2275
- merge/resources/ticketing/resources/linked_accounts/raw_client.py,sha256=voRUR3SlXvSgiRyxFIUkqQAgdcC-cRY_2W9rrKtJcxI,10630
2456
+ merge/resources/ticketing/resources/linked_accounts/client.py,sha256=cyQcClo4bOe4t-FmYYQJh9rxJHMaOMjEUffy21Wl_Oo,11396
2457
+ merge/resources/ticketing/resources/linked_accounts/raw_client.py,sha256=nlsptGABNYCxf5PrRawpsHz1A-AhSb1vKvL_ZHnmFYM,10682
2276
2458
  merge/resources/ticketing/resources/linked_accounts/types/__init__.py,sha256=xWSbOu74X9JxtUN921_jbVtBDygRoEcDyGXySS5soJc,1126
2277
2459
  merge/resources/ticketing/resources/linked_accounts/types/linked_accounts_list_request_category.py,sha256=_EGocl5xFPQUgGIidOl4wEewCLbzqWyiXV2PIev7l7M,1354
2278
2460
  merge/resources/ticketing/resources/passthrough/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2279
2461
  merge/resources/ticketing/resources/passthrough/client.py,sha256=FSsQp_OL2MzbG1riu1sNZy-KKz5ZLIDSCOOC2vsFrVE,3659
2280
2462
  merge/resources/ticketing/resources/passthrough/raw_client.py,sha256=WGJQN555L7wOF1Ic_C_UBKgiGscvS4jrE9aByjUgDSM,4007
2281
2463
  merge/resources/ticketing/resources/projects/__init__.py,sha256=OxvATZJ1wWiZ_dEZ8Tf5eYz1xVHTsjBUCy4_XzWuHuM,1047
2282
- merge/resources/ticketing/resources/projects/client.py,sha256=KutT0-Cs9lZtaXukyR_C60ivjRO0Fl9vNrIc7NLmc2E,16665
2283
- merge/resources/ticketing/resources/projects/raw_client.py,sha256=U4f4hcaoDaVZegvolIqcpdN912QjV6k4peB1DLt0zvw,19807
2464
+ merge/resources/ticketing/resources/projects/client.py,sha256=_YvPLnuaE_7YvQPsi5ShlXbOScrNm6oeYz0hM6daT3Q,19006
2465
+ merge/resources/ticketing/resources/projects/raw_client.py,sha256=jRJvPC6PT28Srlt3SzKnYMC6kSTGrDL1yijWU5J-pNQ,19911
2284
2466
  merge/resources/ticketing/resources/projects/types/__init__.py,sha256=DwSPoXB6HNpBnPWp6wKX--V5jQZD87ceN8Gnjptofcs,1105
2285
2467
  merge/resources/ticketing/resources/projects/types/projects_users_list_request_expand.py,sha256=OLtNd0uNab7xwrGpL3_BZsMZqwIpJEjRt9MahqSmdvs,715
2286
2468
  merge/resources/ticketing/resources/regenerate_key/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2287
2469
  merge/resources/ticketing/resources/regenerate_key/client.py,sha256=rpehVVeXi_U9lnYkgTENR3OaqWQZR7zpDcAe8LopK7g,3108
2288
2470
  merge/resources/ticketing/resources/regenerate_key/raw_client.py,sha256=Y6QynFlDZUG_O5_B3XctsCFG8y0czLJ0XhzZpuZq5So,3872
2289
2471
  merge/resources/ticketing/resources/roles/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2290
- merge/resources/ticketing/resources/roles/client.py,sha256=wC5uzqs3DEfAplmY3zhvPyXOf2a0wZUSM_rqKUpjYAo,11039
2291
- merge/resources/ticketing/resources/roles/raw_client.py,sha256=jH3dIsJ5TJYi_oJg8Cn1NP_lZiFYL5md1_73OxVepj8,13254
2472
+ merge/resources/ticketing/resources/roles/client.py,sha256=lQWAo0FaKpjFes8v3cezNsnOPORmvPlDbjrsofBQzXU,12674
2473
+ merge/resources/ticketing/resources/roles/raw_client.py,sha256=VjFbp0u8fyUFRVSgPgRiLJPopvBkgc_eAwV9U0mufvI,13306
2292
2474
  merge/resources/ticketing/resources/scopes/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2293
2475
  merge/resources/ticketing/resources/scopes/client.py,sha256=BH78LXGR1I5QlWDi7PUdJNUSH59AwGxWNIxuZYraHis,10818
2294
2476
  merge/resources/ticketing/resources/scopes/raw_client.py,sha256=Ts-uoWdN_x5vUd61G74aGRekvZGICGm3jU7VXBgLEWM,11022
2295
2477
  merge/resources/ticketing/resources/sync_status/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2296
- merge/resources/ticketing/resources/sync_status/client.py,sha256=DcIJTHl8A8dA-K9lcYGUB6B5vM6xTM1kU4CwGZXdD8E,5053
2297
- merge/resources/ticketing/resources/sync_status/raw_client.py,sha256=qeTshmIkbApwt_dl42HIdy2KpL7PUGPoh47l6zYMbzg,5637
2478
+ merge/resources/ticketing/resources/sync_status/client.py,sha256=zZshYdo0-NWsXEDzppWrNFOMdj017WWKKSJ6XoITBpA,5159
2479
+ merge/resources/ticketing/resources/sync_status/raw_client.py,sha256=5as_qkbpswk_ujAAjSfEIZGbkbQNckZWxkZJwwpuq_o,5689
2298
2480
  merge/resources/ticketing/resources/tags/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2299
- merge/resources/ticketing/resources/tags/client.py,sha256=GKu3zqfpViqKNRvZrfGYGvIqWBZhwvbNooBpedGT4e4,11009
2300
- merge/resources/ticketing/resources/tags/raw_client.py,sha256=6UNvNp-RcwnCpwnnq5ZJ8UGuB8R-qaPaC0ds46URLrc,13224
2481
+ merge/resources/ticketing/resources/tags/client.py,sha256=fKBM7QANtP_2a-vqxcVCej7qGd0kw6MY5aGgwbeyCxw,12644
2482
+ merge/resources/ticketing/resources/tags/raw_client.py,sha256=se8ASWF7oMz_PSihfSuWY8PgkZ9j1r_PXXgEw9Na9Yo,13276
2301
2483
  merge/resources/ticketing/resources/teams/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2302
- merge/resources/ticketing/resources/teams/client.py,sha256=yh5we_JqqPWQJSfoQR30lGq3TsplaCUS_dUQUb1u6uQ,11039
2303
- merge/resources/ticketing/resources/teams/raw_client.py,sha256=ZORtIL48lj-2gLymgrZcVZtgN9nPxMMNbKVIJc81xf4,13254
2304
- merge/resources/ticketing/resources/tickets/__init__.py,sha256=FYL9mDiw0QgkoUN2PcDIXe0j9QytUY3Jsa4vCVCpo9E,1969
2305
- merge/resources/ticketing/resources/tickets/client.py,sha256=zxWf55nTUli5JwCTKvG4OhkALrl2k70JQoG6wyjIv8w,49064
2306
- merge/resources/ticketing/resources/tickets/raw_client.py,sha256=iMjeMFQx6hMt2JTFJCMDeUKeD5lRmOMGpWZ1oX9U8ro,59485
2307
- merge/resources/ticketing/resources/tickets/types/__init__.py,sha256=1tZDeuby1cP_MxknSPoiJTIPIHkaVLKqPSAOBPiLhak,2518
2484
+ merge/resources/ticketing/resources/teams/client.py,sha256=1L2d6AnEzsq_r-mON-k_w8reTRNAIRKdw4vZdaip4Qk,12674
2485
+ merge/resources/ticketing/resources/teams/raw_client.py,sha256=ONy1Vs4gibD__sD0ZoyteXWHePn0bP4trn2z9RrHOSg,13306
2486
+ merge/resources/ticketing/resources/tickets/__init__.py,sha256=LjlHAU2RlP3MlwLMUGPiGtIMXxtXoZpwVuOA5WzEjtg,2077
2487
+ merge/resources/ticketing/resources/tickets/client.py,sha256=thFjOBJCWrGl6ZAiDEsfUqmrygIDQtWw-oSJ3xVfy08,58199
2488
+ merge/resources/ticketing/resources/tickets/raw_client.py,sha256=TaB6bjOax4nsZMzvV-DnJxrajRb4XlAxzrP7QzmuYY4,60327
2489
+ merge/resources/ticketing/resources/tickets/types/__init__.py,sha256=RMFPPBtUv4rWky3uaPa7uHgHsw2KXbDVTMa2Vp6CcFA,2684
2308
2490
  merge/resources/ticketing/resources/tickets/types/tickets_list_request_expand.py,sha256=KxXHoeLtnz3GIdhceulanFd62gXIvznYedNVDMIs1jc,86077
2309
2491
  merge/resources/ticketing/resources/tickets/types/tickets_list_request_priority.py,sha256=u1BXrjcjqAv-prW6BJboeyw_CdBsjj6Lo8a8bnnsHA8,810
2310
2492
  merge/resources/ticketing/resources/tickets/types/tickets_list_request_remote_fields.py,sha256=cahTXMHKePRLCWFWPk1e2615gf1HGb2RnuoVBWLCzSo,1635
2311
2493
  merge/resources/ticketing/resources/tickets/types/tickets_list_request_show_enum_origins.py,sha256=Mr3FBZCSHE4YFrEbX6n1ah0_QXuoDFFj6KXzQwjifeg,1659
2494
+ merge/resources/ticketing/resources/tickets/types/tickets_list_request_status.py,sha256=Ed7lI6Xk327AHahRZWSNQXgxXaaLwknPaz-yalpsy3g,984
2312
2495
  merge/resources/ticketing/resources/tickets/types/tickets_retrieve_request_expand.py,sha256=4LMwZ3f-qQWLLpRmAsNcpj0cBXjEkGVWybo5Esse5o0,87209
2313
2496
  merge/resources/ticketing/resources/tickets/types/tickets_retrieve_request_remote_fields.py,sha256=Z1PZhFnotfrqY3xq996Jtq4KYxuHn2IglVaOVcqk7_E,1667
2314
2497
  merge/resources/ticketing/resources/tickets/types/tickets_retrieve_request_show_enum_origins.py,sha256=Eg18aXyyl2SwNQIc68n0a94YjvfevDP1L93TruNfTYE,1691
2315
2498
  merge/resources/ticketing/resources/tickets/types/tickets_viewers_list_request_expand.py,sha256=GRuiCShPcTOq5znz45swJACE8Xxz9hyVub3z0WggA2U,699
2316
2499
  merge/resources/ticketing/resources/users/__init__.py,sha256=MfVOB8ryGNwdd67di0URN-8dtuqMUOmCYCQFW7J489k,1121
2317
- merge/resources/ticketing/resources/users/client.py,sha256=zdTubLLyUNo-4ayREez4Nx2kOLU87N107rKANFck37E,13145
2318
- merge/resources/ticketing/resources/users/raw_client.py,sha256=e-ua7fVBygaLMiGcfXMRuCJoQKrmcRzQr2Cl3wBcc5I,15416
2500
+ merge/resources/ticketing/resources/users/client.py,sha256=5eOIbmnwrgc_JCfdVqj_3BQksyfXV7sat7frTZXhpHY,15484
2501
+ merge/resources/ticketing/resources/users/raw_client.py,sha256=unbSlbdAB3mj-ZPxiIwqVk-0NuZhqS9stxaJpROIIHg,15468
2319
2502
  merge/resources/ticketing/resources/users/types/__init__.py,sha256=iMjdwDWRm9OARXa4biig3rDY7gNTuvK6luMB7rmyKk0,1242
2320
2503
  merge/resources/ticketing/resources/users/types/users_list_request_expand.py,sha256=CMz1tUJb6xqyu4Iry_KLpza9OtUjMzjdrJxXzM2egrk,683
2321
2504
  merge/resources/ticketing/resources/users/types/users_retrieve_request_expand.py,sha256=01JMChGjlW_drpqy9kADxGsR_DzcVo3_KG8xKMZ_qX8,699
2322
2505
  merge/resources/ticketing/resources/webhook_receivers/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2323
2506
  merge/resources/ticketing/resources/webhook_receivers/client.py,sha256=pcQtKIFrlloxnbOzBusrSDdMB_AEpHbgmHxbY-zryR0,5234
2324
2507
  merge/resources/ticketing/resources/webhook_receivers/raw_client.py,sha256=z_jWqvk4Q4_GS9t6vrUc1w2fKZKbdFzQkL5R428GhNQ,7155
2325
- merge/resources/ticketing/types/__init__.py,sha256=bWP3ET1GtSWvke3kMrq_i-UWOuWA-XeIOOZb8WVjBMU,24946
2508
+ merge/resources/ticketing/types/__init__.py,sha256=Yofu0CyLeFXX7IzizdtGjbQX-esLxHl6p7wJWkMaD4Y,25159
2326
2509
  merge/resources/ticketing/types/account.py,sha256=bpQB4YiNw0po2b5Q8fgWecSNfIQbqHzo_YsR6sheIKY,2160
2327
2510
  merge/resources/ticketing/types/account_details.py,sha256=6FjFKxsxftOM5DJIiueXWPtJZkuFMIVSgcB_2UT7t8w,1617
2328
2511
  merge/resources/ticketing/types/account_details_and_actions.py,sha256=4S2cnfZ4T8vU-rudpCuZWlH23sgL4dk6n9k1ZbzrQt4,2121
@@ -2343,8 +2526,8 @@ merge/resources/ticketing/types/audit_log_event.py,sha256=c1GAS5BAxb2tJ4df2ouL9C
2343
2526
  merge/resources/ticketing/types/audit_log_event_event_type.py,sha256=PMjqzsD8LmLzNW_8PqV11MzykS4Cga4p1w-w36-ADwc,182
2344
2527
  merge/resources/ticketing/types/audit_log_event_role.py,sha256=PsoFhqmQ9DiuAx5xQ85KqNvmi3IH_RMWhVScOGSihpg,161
2345
2528
  merge/resources/ticketing/types/available_actions.py,sha256=j-KMLrxEDj8gAlMsEIPs0kRW_LjtEk0IjGB_W04vDMc,1066
2346
- merge/resources/ticketing/types/categories_enum.py,sha256=D8WazEwlr8J2tRQT14nO_samkLIS9-gixLmortWbOoE,1391
2347
- merge/resources/ticketing/types/category_enum.py,sha256=j9DOZYeKZvnejiWqyXXdXbgxFx0IXd5yPkh7t64Prhc,1375
2529
+ merge/resources/ticketing/types/categories_enum.py,sha256=vnFTz2Aeoaieb5VhmGabAGHlc-3U1Or5ygjB2g5k41w,1603
2530
+ merge/resources/ticketing/types/category_enum.py,sha256=7hv-PXVE1JmNQD7yjp16POyeGfZQSaZIzjOdxmI56Vc,1585
2348
2531
  merge/resources/ticketing/types/collection.py,sha256=brmTVcS10zWEdrJPn__gtGmWIObeTp_rmcRv2O48Z54,3508
2349
2532
  merge/resources/ticketing/types/collection_access_level.py,sha256=_FtCzwDYNnsE0YlwUXe0YLhY6Yk01qmcZOupSqmLhb8,218
2350
2533
  merge/resources/ticketing/types/collection_access_level_enum.py,sha256=T80ySkaZrk90nKnZCmbm_9DbzIWNzfPhEb4-Tthi2QQ,1034
@@ -2362,6 +2545,7 @@ merge/resources/ticketing/types/comment_ticket.py,sha256=UHeAWvfGD31OAzoyUuSEbwz
2362
2545
  merge/resources/ticketing/types/comment_user.py,sha256=aNCDVbDBYMuciXRbZJvX0gdH0Cw-m6Xvpu-z85-Z5eo,142
2363
2546
  merge/resources/ticketing/types/common_model_scope_api.py,sha256=iikeXuknnlFYmnwoRcQ34AnBwbpAPIYhgmov3HpeBGg,812
2364
2547
  merge/resources/ticketing/types/common_model_scopes_body_request.py,sha256=KMnJBN-wDY0eQNjXYAgoiyoyXY74T9pzZum_2BIiUhU,726
2548
+ merge/resources/ticketing/types/completed_account_initial_screen_enum.py,sha256=O8ZkUxzZ79KqliNtuFiA2dhVSsYCysziBgyRDG3pGZI,149
2365
2549
  merge/resources/ticketing/types/contact.py,sha256=wXAkze4MHc5yDO8cu_NJ-zXg9QRCCjMTSvX9MM3tPMU,2434
2366
2550
  merge/resources/ticketing/types/contact_account.py,sha256=SnEy_sVkp5uWBt7sfRWiecLXj7mEp3vCWngDNb4mZ2s,154
2367
2551
  merge/resources/ticketing/types/contact_request.py,sha256=CtR5pW-qT6GhYgDAjiAFg4z2peaKUWLri0SmaMznoNo,1590
@@ -2376,7 +2560,7 @@ merge/resources/ticketing/types/event_type_enum.py,sha256=wfHQ1fs-1Kca2-WWcmkV_-
2376
2560
  merge/resources/ticketing/types/external_target_field_api.py,sha256=7qYlHHE-NAj2mbecB_tWxwtNftguu6LIXlfc5ifg5G8,684
2377
2561
  merge/resources/ticketing/types/external_target_field_api_response.py,sha256=a1Geyv6dWIlkZxZ3MCFZ0iEnz1eT6ubiVTJveXfzvIY,1866
2378
2562
  merge/resources/ticketing/types/field_format_enum.py,sha256=UftGZKBqWXBRUkFBgnf5pcsYd2UmRNoiHiCeBMFeuO8,1197
2379
- merge/resources/ticketing/types/field_mapping_api_instance.py,sha256=RttMXfps1-vnnavS0sS1Z9hA_-getVdtHXkfobPKfEk,979
2563
+ merge/resources/ticketing/types/field_mapping_api_instance.py,sha256=N0khXpICVaxPka4bQi0F4k96B423GTDW7l1NYZRclzM,1022
2380
2564
  merge/resources/ticketing/types/field_mapping_api_instance_remote_field.py,sha256=HJk927XuxCs-tNA_72KySK3dLY9PZlM21YR8KKelWxw,971
2381
2565
  merge/resources/ticketing/types/field_mapping_api_instance_remote_field_remote_endpoint_info.py,sha256=14nzCKH-TW0p4bxGHZl-EccAwsPGaa2suQ1WEs6qxu4,737
2382
2566
  merge/resources/ticketing/types/field_mapping_api_instance_response.py,sha256=h92q1ZrA_UVwsL15u793w6WdbLyyptWqxo2BcwTa06I,1880
@@ -2495,7 +2679,7 @@ merge/resources/ticketing/types/viewer_user.py,sha256=VrOx8xWvNadSYjdErIMg2pPsHV
2495
2679
  merge/resources/ticketing/types/warning_validation_problem.py,sha256=RXDtt3t3FwIeGGXkIr_OHOAybDZg44L_5hOqa2sLlJ0,736
2496
2680
  merge/resources/ticketing/types/webhook_receiver.py,sha256=g4KQnc-vZPJGlXK-OOFIn2WGyTLKoeaq9TPWQ46VwFY,623
2497
2681
  merge/version.py,sha256=kLtHrVsKjnCqlIC_JtezQUWrCPQkXhjpD_2pdlcGh18,84
2498
- mergepythonclient-2.4.0.dist-info/LICENSE.md,sha256=WKO7xLnLSUInldiq5i25eVqKAjwIUKenaS4Cgir2Iuw,3275
2499
- mergepythonclient-2.4.0.dist-info/METADATA,sha256=04frznIJ4a5giPsUln4hClTvw4u-ZEHfHJL6NH5UIL8,7270
2500
- mergepythonclient-2.4.0.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
2501
- mergepythonclient-2.4.0.dist-info/RECORD,,
2682
+ mergepythonclient-2.5.0.dist-info/LICENSE.md,sha256=WKO7xLnLSUInldiq5i25eVqKAjwIUKenaS4Cgir2Iuw,3275
2683
+ mergepythonclient-2.5.0.dist-info/METADATA,sha256=WXTtaBylOeKE9pQQF25FkfgdTNlZH1fu1x21aTCXnbc,7367
2684
+ mergepythonclient-2.5.0.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
2685
+ mergepythonclient-2.5.0.dist-info/RECORD,,