mergepythonclient 2.1.1__py3-none-any.whl → 2.3.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (300) hide show
  1. merge/__init__.py +40 -4
  2. merge/client.py +118 -18
  3. merge/core/__init__.py +75 -21
  4. merge/core/client_wrapper.py +2 -2
  5. merge/core/force_multipart.py +4 -2
  6. merge/core/http_response.py +1 -1
  7. merge/core/unchecked_base_model.py +3 -3
  8. merge/resources/__init__.py +33 -1
  9. merge/resources/accounting/__init__.py +1242 -607
  10. merge/resources/accounting/client.py +835 -165
  11. merge/resources/accounting/resources/__init__.py +208 -92
  12. merge/resources/accounting/resources/accounting_periods/client.py +6 -2
  13. merge/resources/accounting/resources/accounts/__init__.py +36 -6
  14. merge/resources/accounting/resources/accounts/client.py +6 -2
  15. merge/resources/accounting/resources/accounts/types/__init__.py +34 -4
  16. merge/resources/accounting/resources/async_passthrough/__init__.py +26 -1
  17. merge/resources/accounting/resources/async_passthrough/types/__init__.py +26 -1
  18. merge/resources/accounting/resources/attachments/client.py +6 -2
  19. merge/resources/accounting/resources/audit_trail/client.py +6 -2
  20. merge/resources/accounting/resources/balance_sheets/client.py +6 -2
  21. merge/resources/accounting/resources/bank_feed_accounts/client.py +6 -2
  22. merge/resources/accounting/resources/bank_feed_transactions/client.py +6 -2
  23. merge/resources/accounting/resources/cash_flow_statements/client.py +6 -2
  24. merge/resources/accounting/resources/company_info/__init__.py +29 -1
  25. merge/resources/accounting/resources/company_info/client.py +6 -2
  26. merge/resources/accounting/resources/company_info/types/__init__.py +30 -2
  27. merge/resources/accounting/resources/contacts/__init__.py +29 -1
  28. merge/resources/accounting/resources/contacts/client.py +195 -4
  29. merge/resources/accounting/resources/contacts/raw_client.py +203 -0
  30. merge/resources/accounting/resources/contacts/types/__init__.py +30 -2
  31. merge/resources/accounting/resources/credit_notes/__init__.py +40 -8
  32. merge/resources/accounting/resources/credit_notes/client.py +6 -2
  33. merge/resources/accounting/resources/credit_notes/types/__init__.py +38 -6
  34. merge/resources/accounting/resources/employees/client.py +6 -2
  35. merge/resources/accounting/resources/expense_reports/__init__.py +34 -5
  36. merge/resources/accounting/resources/expense_reports/client.py +20 -6
  37. merge/resources/accounting/resources/expense_reports/types/__init__.py +32 -3
  38. merge/resources/accounting/resources/expenses/__init__.py +29 -1
  39. merge/resources/accounting/resources/expenses/client.py +18 -6
  40. merge/resources/accounting/resources/expenses/types/__init__.py +30 -2
  41. merge/resources/accounting/resources/general_ledger_transactions/__init__.py +29 -1
  42. merge/resources/accounting/resources/general_ledger_transactions/client.py +6 -2
  43. merge/resources/accounting/resources/general_ledger_transactions/types/__init__.py +30 -2
  44. merge/resources/accounting/resources/income_statements/client.py +6 -2
  45. merge/resources/accounting/resources/invoices/__init__.py +36 -6
  46. merge/resources/accounting/resources/invoices/client.py +18 -6
  47. merge/resources/accounting/resources/invoices/types/__init__.py +34 -4
  48. merge/resources/accounting/resources/issues/__init__.py +26 -1
  49. merge/resources/accounting/resources/issues/client.py +6 -2
  50. merge/resources/accounting/resources/issues/types/__init__.py +26 -1
  51. merge/resources/accounting/resources/items/__init__.py +26 -1
  52. merge/resources/accounting/resources/items/client.py +6 -2
  53. merge/resources/accounting/resources/items/types/__init__.py +30 -2
  54. merge/resources/accounting/resources/journal_entries/__init__.py +29 -1
  55. merge/resources/accounting/resources/journal_entries/client.py +18 -6
  56. merge/resources/accounting/resources/journal_entries/types/__init__.py +30 -2
  57. merge/resources/accounting/resources/link_token/__init__.py +26 -1
  58. merge/resources/accounting/resources/link_token/types/__init__.py +26 -1
  59. merge/resources/accounting/resources/linked_accounts/__init__.py +26 -1
  60. merge/resources/accounting/resources/linked_accounts/client.py +6 -2
  61. merge/resources/accounting/resources/linked_accounts/types/__init__.py +28 -1
  62. merge/resources/accounting/resources/payment_methods/client.py +6 -2
  63. merge/resources/accounting/resources/payment_terms/client.py +6 -2
  64. merge/resources/accounting/resources/payments/__init__.py +29 -1
  65. merge/resources/accounting/resources/payments/client.py +18 -6
  66. merge/resources/accounting/resources/payments/types/__init__.py +30 -2
  67. merge/resources/accounting/resources/projects/__init__.py +29 -1
  68. merge/resources/accounting/resources/projects/client.py +6 -2
  69. merge/resources/accounting/resources/projects/types/__init__.py +30 -2
  70. merge/resources/accounting/resources/purchase_orders/__init__.py +29 -1
  71. merge/resources/accounting/resources/purchase_orders/client.py +18 -6
  72. merge/resources/accounting/resources/purchase_orders/types/__init__.py +30 -2
  73. merge/resources/accounting/resources/sync_status/client.py +6 -2
  74. merge/resources/accounting/resources/tax_rates/client.py +6 -2
  75. merge/resources/accounting/resources/tracking_categories/client.py +6 -2
  76. merge/resources/accounting/resources/transactions/__init__.py +29 -1
  77. merge/resources/accounting/resources/transactions/client.py +6 -2
  78. merge/resources/accounting/resources/transactions/types/__init__.py +30 -2
  79. merge/resources/accounting/resources/transactions/types/transactions_list_request_expand.py +141 -0
  80. merge/resources/accounting/resources/transactions/types/transactions_retrieve_request_expand.py +141 -0
  81. merge/resources/accounting/resources/vendor_credits/__init__.py +29 -1
  82. merge/resources/accounting/resources/vendor_credits/client.py +6 -2
  83. merge/resources/accounting/resources/vendor_credits/types/__init__.py +30 -2
  84. merge/resources/accounting/types/__init__.py +1070 -519
  85. merge/resources/accounting/types/patched_contact_request.py +91 -0
  86. merge/resources/accounting/types/patched_contact_request_addresses_item.py +7 -0
  87. merge/resources/accounting/types/remote_field_class.py +1 -0
  88. merge/resources/ats/__init__.py +586 -282
  89. merge/resources/ats/client.py +590 -120
  90. merge/resources/ats/resources/__init__.py +150 -63
  91. merge/resources/ats/resources/activities/__init__.py +36 -6
  92. merge/resources/ats/resources/activities/client.py +6 -2
  93. merge/resources/ats/resources/activities/types/__init__.py +34 -4
  94. merge/resources/ats/resources/applications/__init__.py +29 -1
  95. merge/resources/ats/resources/applications/client.py +6 -2
  96. merge/resources/ats/resources/applications/types/__init__.py +30 -2
  97. merge/resources/ats/resources/async_passthrough/__init__.py +26 -1
  98. merge/resources/ats/resources/async_passthrough/types/__init__.py +26 -1
  99. merge/resources/ats/resources/attachments/client.py +6 -2
  100. merge/resources/ats/resources/audit_trail/client.py +6 -2
  101. merge/resources/ats/resources/candidates/__init__.py +30 -1
  102. merge/resources/ats/resources/candidates/client.py +6 -2
  103. merge/resources/ats/resources/candidates/types/__init__.py +32 -3
  104. merge/resources/ats/resources/departments/client.py +6 -2
  105. merge/resources/ats/resources/eeocs/__init__.py +36 -6
  106. merge/resources/ats/resources/eeocs/client.py +6 -2
  107. merge/resources/ats/resources/eeocs/types/__init__.py +34 -4
  108. merge/resources/ats/resources/interviews/__init__.py +29 -1
  109. merge/resources/ats/resources/interviews/client.py +6 -2
  110. merge/resources/ats/resources/interviews/types/__init__.py +30 -2
  111. merge/resources/ats/resources/issues/__init__.py +26 -1
  112. merge/resources/ats/resources/issues/client.py +6 -2
  113. merge/resources/ats/resources/issues/types/__init__.py +26 -1
  114. merge/resources/ats/resources/job_interview_stages/client.py +6 -2
  115. merge/resources/ats/resources/job_postings/__init__.py +26 -1
  116. merge/resources/ats/resources/job_postings/client.py +6 -2
  117. merge/resources/ats/resources/job_postings/types/__init__.py +26 -1
  118. merge/resources/ats/resources/jobs/__init__.py +36 -6
  119. merge/resources/ats/resources/jobs/client.py +8 -2
  120. merge/resources/ats/resources/jobs/types/__init__.py +34 -4
  121. merge/resources/ats/resources/link_token/__init__.py +26 -1
  122. merge/resources/ats/resources/link_token/types/__init__.py +26 -1
  123. merge/resources/ats/resources/linked_accounts/__init__.py +26 -1
  124. merge/resources/ats/resources/linked_accounts/client.py +6 -2
  125. merge/resources/ats/resources/linked_accounts/types/__init__.py +28 -1
  126. merge/resources/ats/resources/offers/__init__.py +26 -1
  127. merge/resources/ats/resources/offers/client.py +6 -2
  128. merge/resources/ats/resources/offers/types/__init__.py +30 -2
  129. merge/resources/ats/resources/offices/client.py +6 -2
  130. merge/resources/ats/resources/reject_reasons/client.py +6 -2
  131. merge/resources/ats/resources/scorecards/__init__.py +29 -1
  132. merge/resources/ats/resources/scorecards/client.py +6 -2
  133. merge/resources/ats/resources/scorecards/types/__init__.py +30 -2
  134. merge/resources/ats/resources/sync_status/client.py +6 -2
  135. merge/resources/ats/resources/tags/client.py +6 -2
  136. merge/resources/ats/resources/users/client.py +6 -2
  137. merge/resources/ats/types/__init__.py +462 -219
  138. merge/resources/ats/types/event_type_enum.py +4 -0
  139. merge/resources/crm/__init__.py +566 -272
  140. merge/resources/crm/client.py +556 -114
  141. merge/resources/crm/resources/__init__.py +121 -47
  142. merge/resources/crm/resources/accounts/client.py +12 -4
  143. merge/resources/crm/resources/association_types/client.py +2 -0
  144. merge/resources/crm/resources/associations/client.py +2 -0
  145. merge/resources/crm/resources/async_passthrough/__init__.py +26 -1
  146. merge/resources/crm/resources/async_passthrough/types/__init__.py +26 -1
  147. merge/resources/crm/resources/audit_trail/client.py +6 -2
  148. merge/resources/crm/resources/contacts/__init__.py +29 -1
  149. merge/resources/crm/resources/contacts/client.py +12 -4
  150. merge/resources/crm/resources/contacts/types/__init__.py +30 -2
  151. merge/resources/crm/resources/custom_object_classes/client.py +6 -2
  152. merge/resources/crm/resources/custom_objects/client.py +8 -2
  153. merge/resources/crm/resources/engagement_types/client.py +12 -4
  154. merge/resources/crm/resources/engagements/__init__.py +29 -1
  155. merge/resources/crm/resources/engagements/client.py +12 -4
  156. merge/resources/crm/resources/engagements/types/__init__.py +30 -2
  157. merge/resources/crm/resources/issues/__init__.py +26 -1
  158. merge/resources/crm/resources/issues/client.py +6 -2
  159. merge/resources/crm/resources/issues/types/__init__.py +26 -1
  160. merge/resources/crm/resources/leads/__init__.py +26 -1
  161. merge/resources/crm/resources/leads/client.py +12 -4
  162. merge/resources/crm/resources/leads/types/__init__.py +30 -2
  163. merge/resources/crm/resources/link_token/__init__.py +26 -1
  164. merge/resources/crm/resources/link_token/types/__init__.py +26 -1
  165. merge/resources/crm/resources/linked_accounts/__init__.py +26 -1
  166. merge/resources/crm/resources/linked_accounts/client.py +6 -2
  167. merge/resources/crm/resources/linked_accounts/types/__init__.py +28 -1
  168. merge/resources/crm/resources/notes/__init__.py +26 -1
  169. merge/resources/crm/resources/notes/client.py +12 -4
  170. merge/resources/crm/resources/notes/types/__init__.py +30 -2
  171. merge/resources/crm/resources/opportunities/__init__.py +34 -1
  172. merge/resources/crm/resources/opportunities/client.py +12 -4
  173. merge/resources/crm/resources/opportunities/types/__init__.py +32 -3
  174. merge/resources/crm/resources/stages/client.py +12 -4
  175. merge/resources/crm/resources/sync_status/client.py +6 -2
  176. merge/resources/crm/resources/tasks/__init__.py +26 -1
  177. merge/resources/crm/resources/tasks/client.py +12 -4
  178. merge/resources/crm/resources/tasks/types/__init__.py +30 -2
  179. merge/resources/crm/resources/users/client.py +12 -4
  180. merge/resources/crm/types/__init__.py +470 -224
  181. merge/resources/crm/types/remote_field_class.py +1 -0
  182. merge/resources/filestorage/__init__.py +322 -150
  183. merge/resources/filestorage/client.py +405 -87
  184. merge/resources/filestorage/resources/__init__.py +91 -34
  185. merge/resources/filestorage/resources/async_passthrough/__init__.py +26 -1
  186. merge/resources/filestorage/resources/async_passthrough/types/__init__.py +26 -1
  187. merge/resources/filestorage/resources/audit_trail/client.py +6 -2
  188. merge/resources/filestorage/resources/drives/client.py +6 -2
  189. merge/resources/filestorage/resources/files/__init__.py +36 -6
  190. merge/resources/filestorage/resources/files/client.py +42 -4
  191. merge/resources/filestorage/resources/files/raw_client.py +38 -0
  192. merge/resources/filestorage/resources/files/types/__init__.py +34 -4
  193. merge/resources/filestorage/resources/folders/__init__.py +29 -1
  194. merge/resources/filestorage/resources/folders/client.py +6 -2
  195. merge/resources/filestorage/resources/folders/types/__init__.py +30 -2
  196. merge/resources/filestorage/resources/groups/client.py +6 -2
  197. merge/resources/filestorage/resources/issues/__init__.py +26 -1
  198. merge/resources/filestorage/resources/issues/client.py +6 -2
  199. merge/resources/filestorage/resources/issues/types/__init__.py +26 -1
  200. merge/resources/filestorage/resources/linked_accounts/__init__.py +26 -1
  201. merge/resources/filestorage/resources/linked_accounts/client.py +6 -2
  202. merge/resources/filestorage/resources/linked_accounts/types/__init__.py +28 -1
  203. merge/resources/filestorage/resources/sync_status/client.py +6 -2
  204. merge/resources/filestorage/resources/users/client.py +6 -2
  205. merge/resources/filestorage/types/__init__.py +258 -117
  206. merge/resources/hris/__init__.py +576 -277
  207. merge/resources/hris/client.py +590 -120
  208. merge/resources/hris/resources/__init__.py +188 -86
  209. merge/resources/hris/resources/async_passthrough/__init__.py +26 -1
  210. merge/resources/hris/resources/async_passthrough/types/__init__.py +26 -1
  211. merge/resources/hris/resources/audit_trail/client.py +6 -2
  212. merge/resources/hris/resources/bank_info/__init__.py +29 -1
  213. merge/resources/hris/resources/bank_info/client.py +6 -2
  214. merge/resources/hris/resources/bank_info/types/__init__.py +30 -2
  215. merge/resources/hris/resources/benefits/client.py +6 -2
  216. merge/resources/hris/resources/companies/client.py +6 -2
  217. merge/resources/hris/resources/dependents/client.py +6 -2
  218. merge/resources/hris/resources/employee_payroll_runs/__init__.py +29 -1
  219. merge/resources/hris/resources/employee_payroll_runs/client.py +6 -2
  220. merge/resources/hris/resources/employee_payroll_runs/types/__init__.py +30 -2
  221. merge/resources/hris/resources/employees/__init__.py +44 -10
  222. merge/resources/hris/resources/employees/client.py +6 -2
  223. merge/resources/hris/resources/employees/types/__init__.py +42 -8
  224. merge/resources/hris/resources/employer_benefits/client.py +6 -2
  225. merge/resources/hris/resources/employments/__init__.py +42 -9
  226. merge/resources/hris/resources/employments/client.py +6 -2
  227. merge/resources/hris/resources/employments/types/__init__.py +40 -7
  228. merge/resources/hris/resources/groups/client.py +6 -2
  229. merge/resources/hris/resources/issues/__init__.py +26 -1
  230. merge/resources/hris/resources/issues/client.py +6 -2
  231. merge/resources/hris/resources/issues/types/__init__.py +26 -1
  232. merge/resources/hris/resources/link_token/__init__.py +26 -1
  233. merge/resources/hris/resources/link_token/types/__init__.py +26 -1
  234. merge/resources/hris/resources/linked_accounts/__init__.py +26 -1
  235. merge/resources/hris/resources/linked_accounts/client.py +6 -2
  236. merge/resources/hris/resources/linked_accounts/types/__init__.py +28 -1
  237. merge/resources/hris/resources/locations/__init__.py +38 -7
  238. merge/resources/hris/resources/locations/client.py +6 -2
  239. merge/resources/hris/resources/locations/types/__init__.py +36 -5
  240. merge/resources/hris/resources/pay_groups/client.py +6 -2
  241. merge/resources/hris/resources/payroll_runs/__init__.py +38 -7
  242. merge/resources/hris/resources/payroll_runs/client.py +6 -2
  243. merge/resources/hris/resources/payroll_runs/types/__init__.py +36 -5
  244. merge/resources/hris/resources/sync_status/client.py +6 -2
  245. merge/resources/hris/resources/teams/client.py +6 -2
  246. merge/resources/hris/resources/time_off/__init__.py +44 -10
  247. merge/resources/hris/resources/time_off/client.py +6 -2
  248. merge/resources/hris/resources/time_off/types/__init__.py +42 -8
  249. merge/resources/hris/resources/time_off_balances/__init__.py +26 -1
  250. merge/resources/hris/resources/time_off_balances/client.py +6 -2
  251. merge/resources/hris/resources/time_off_balances/types/__init__.py +28 -1
  252. merge/resources/hris/resources/timesheet_entries/__init__.py +26 -1
  253. merge/resources/hris/resources/timesheet_entries/client.py +6 -2
  254. merge/resources/hris/resources/timesheet_entries/types/__init__.py +28 -1
  255. merge/resources/hris/types/__init__.py +422 -199
  256. merge/resources/hris/types/benefit.py +4 -4
  257. merge/resources/ticketing/__init__.py +464 -221
  258. merge/resources/ticketing/client.py +507 -105
  259. merge/resources/ticketing/resources/__init__.py +120 -48
  260. merge/resources/ticketing/resources/accounts/client.py +6 -2
  261. merge/resources/ticketing/resources/async_passthrough/__init__.py +26 -1
  262. merge/resources/ticketing/resources/async_passthrough/types/__init__.py +26 -1
  263. merge/resources/ticketing/resources/attachments/client.py +6 -2
  264. merge/resources/ticketing/resources/audit_trail/client.py +6 -2
  265. merge/resources/ticketing/resources/collections/__init__.py +26 -1
  266. merge/resources/ticketing/resources/collections/client.py +8 -2
  267. merge/resources/ticketing/resources/collections/types/__init__.py +28 -1
  268. merge/resources/ticketing/resources/comments/__init__.py +29 -1
  269. merge/resources/ticketing/resources/comments/client.py +6 -2
  270. merge/resources/ticketing/resources/comments/types/__init__.py +30 -2
  271. merge/resources/ticketing/resources/contacts/client.py +6 -2
  272. merge/resources/ticketing/resources/issues/__init__.py +26 -1
  273. merge/resources/ticketing/resources/issues/client.py +6 -2
  274. merge/resources/ticketing/resources/issues/types/__init__.py +26 -1
  275. merge/resources/ticketing/resources/link_token/__init__.py +26 -1
  276. merge/resources/ticketing/resources/link_token/types/__init__.py +26 -1
  277. merge/resources/ticketing/resources/linked_accounts/__init__.py +26 -1
  278. merge/resources/ticketing/resources/linked_accounts/client.py +6 -2
  279. merge/resources/ticketing/resources/linked_accounts/types/__init__.py +28 -1
  280. merge/resources/ticketing/resources/projects/__init__.py +26 -1
  281. merge/resources/ticketing/resources/projects/client.py +8 -2
  282. merge/resources/ticketing/resources/projects/types/__init__.py +26 -1
  283. merge/resources/ticketing/resources/roles/client.py +6 -2
  284. merge/resources/ticketing/resources/sync_status/client.py +6 -2
  285. merge/resources/ticketing/resources/tags/client.py +6 -2
  286. merge/resources/ticketing/resources/teams/client.py +6 -2
  287. merge/resources/ticketing/resources/tickets/__init__.py +44 -10
  288. merge/resources/ticketing/resources/tickets/client.py +24 -4
  289. merge/resources/ticketing/resources/tickets/raw_client.py +10 -0
  290. merge/resources/ticketing/resources/tickets/types/__init__.py +42 -8
  291. merge/resources/ticketing/resources/users/__init__.py +26 -1
  292. merge/resources/ticketing/resources/users/client.py +6 -2
  293. merge/resources/ticketing/resources/users/types/__init__.py +30 -2
  294. merge/resources/ticketing/types/__init__.py +370 -173
  295. merge/resources/ticketing/types/patched_ticket_request.py +5 -5
  296. merge/resources/ticketing/types/remote_field_class.py +1 -0
  297. {mergepythonclient-2.1.1.dist-info → mergepythonclient-2.3.0.dist-info}/METADATA +5 -2
  298. {mergepythonclient-2.1.1.dist-info → mergepythonclient-2.3.0.dist-info}/RECORD +300 -298
  299. {mergepythonclient-2.1.1.dist-info → mergepythonclient-2.3.0.dist-info}/LICENSE.md +0 -0
  300. {mergepythonclient-2.1.1.dist-info → mergepythonclient-2.3.0.dist-info}/WHEEL +0 -0
@@ -1,27 +1,27 @@
1
- merge/__init__.py,sha256=Z0AgfVpF84nlRCCgnrDZOwBo1TpY5yK7otpaSWcgo-U,449
2
- merge/client.py,sha256=kU02MZFiaoEyFdw6kMEkaqof-j40fTjMLPFBAsFreTM,7342
3
- merge/core/__init__.py,sha256=tpn7rjb6C2UIkYZYIqdrNpI7Yax2jw88sXh2baxaxAI,1715
1
+ merge/__init__.py,sha256=7CpPMlOY5g9lp7RtOX7wB2O6rqlVjboKEcEwmF0EHL4,1582
2
+ merge/client.py,sha256=1U0ic4bNZX2OmUFTlpEdSdCCIy4R2jd7S-qN9V9dJ60,10412
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=9-oFiE7bOofm-YDIuJ0j4m52CxzdVLtBQ5BTt7okNAc,3096
5
+ merge/core/client_wrapper.py,sha256=B-oGOnavRqx5f-5FpXQRECP4sEanGFFWVvAnikKyjDA,3096
6
6
  merge/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
7
7
  merge/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
8
- merge/core/force_multipart.py,sha256=awxh5MtcRYe74ehY8U76jzv6fYM_w_D3Rur7KQQzSDk,429
8
+ merge/core/force_multipart.py,sha256=cH981xLy0kZVKiZZkFoeUjgJ2Zuq7KXB2aRAnmHzRDc,477
9
9
  merge/core/http_client.py,sha256=QurkBvCZZz2Z1d8znp4M2YbOXebBUPcPXRhPIS84Wvk,21214
10
- merge/core/http_response.py,sha256=4uOAtXXFTyFXHLXeQWSfQST9PGcOCRAdHVgGTxdyg84,1334
10
+ merge/core/http_response.py,sha256=A6URkoTBCiryctAA-m9EiDWOsHgM5oYAlcYVc_YOiiI,1330
11
11
  merge/core/jsonable_encoder.py,sha256=hGgcEEeX11sqxxsll7h15pO3pTNVxk_n79Kcn0laoWA,3655
12
12
  merge/core/pydantic_utilities.py,sha256=26OU5_xPbBZzydnxHekxNJ2VVCKiFLWErU4EdrX6nRU,9071
13
13
  merge/core/query_encoder.py,sha256=ekulqNd0j8TgD7ox-Qbz7liqX8-KP9blvT9DsRCenYM,2144
14
14
  merge/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4-PZ-5Bl3Vppd864mS6vQZw,342
15
15
  merge/core/request_options.py,sha256=h0QUNCFVdCW_7GclVySCAY2w4NhtXVBUCmHgmzaxpcg,1681
16
16
  merge/core/serialization.py,sha256=ECL3bvv_0i7U4uvPidZCNel--MUbA0iq0aGcNKi3kws,9818
17
- merge/core/unchecked_base_model.py,sha256=Mxeca_uJ9Wb2ccIsWtgIwhFQHlZC8GNuKWboPvQmgrE,12432
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=7gKKPU-keI8e8yLrTdN37vaiPxUftUe2yn5HJ1J0qAk,226
21
- merge/resources/accounting/__init__.py,sha256=9ppwYaWyDYsDLuo0FplSgxYfNPWMQ_RyQJDT-5aoqO0,36408
22
- merge/resources/accounting/client.py,sha256=n4DVgWrKqhSXwCzs-kZKoIwBiBRriros08n8KzwCZbg,13429
20
+ merge/resources/__init__.py,sha256=FsMGYvolC7TxsLxxFhlZSaO7O-b7NPgkU7L68g_otCE,1169
21
+ merge/resources/accounting/__init__.py,sha256=3ND0F_r5Hd8xXRyBDuiWEh3toqccZ41TXRrq38aSE74,65016
22
+ merge/resources/accounting/client.py,sha256=f52dPsVdLBAnsbYI4X9WjWrsolkFed2Py9s3pdelkSs,41640
23
23
  merge/resources/accounting/raw_client.py,sha256=Z2qfSB2hS9YozVdwPsSvbLeH5yeWbIaDNihubIguhNI,418
24
- merge/resources/accounting/resources/__init__.py,sha256=Rc1e_A-CASzZSom6aL6tbMvYgHdTOjZ96fIoTa89bLU,5669
24
+ merge/resources/accounting/resources/__init__.py,sha256=k0xHMKk-c1B4XhBQKR9kEatvtyxi5fycc9VmvTpjrKY,10467
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,12 +29,12 @@ 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=KyfFqTM8GW3YrvH9VN2dNu5a1MtM7kC909TYZC-4Ad0,8883
32
+ merge/resources/accounting/resources/accounting_periods/client.py,sha256=6HyDF-t-9A3HbhUG7EYjMeGLGWsBzxvx5i9Zi428DGM,9067
33
33
  merge/resources/accounting/resources/accounting_periods/raw_client.py,sha256=mz0VocQYItJMbt1Im_ZbI50Ecaf0BSWycbRLRyoqPV0,10676
34
- merge/resources/accounting/resources/accounts/__init__.py,sha256=cdiigMLMYiVepQ20GXU5UPlryzFOqqHMw9gfhElrygo,455
35
- merge/resources/accounting/resources/accounts/client.py,sha256=SZ9QHbcgKDuI03XMpZ-JBjDjAKv7D--sVASsQJimdmo,21982
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
36
  merge/resources/accounting/resources/accounts/raw_client.py,sha256=E05mU0Mk9B0ljsv3W7QMeROmUlBh-wKnZ3WvioIrACo,26847
37
- merge/resources/accounting/resources/accounts/types/__init__.py,sha256=VR07jYfKlvsV-dvYvyQIcuC_7j6s9D-5yVZALSkHohs,624
37
+ merge/resources/accounting/resources/accounts/types/__init__.py,sha256=9jJE0LovNrZfX496E4Llnf0-6gq8gBJWqeAjmbg4mLI,1807
38
38
  merge/resources/accounting/resources/accounts/types/accounts_list_request_remote_fields.py,sha256=Az9-yjthTEGOb7FdZi1s0ofW8feZI_Jo1Te64G7YsKE,819
39
39
  merge/resources/accounting/resources/accounts/types/accounts_list_request_show_enum_origins.py,sha256=p4H3hs0DYQhimbiFtKzPBJs7OUyJkGuBVlYXeMfAJ00,831
40
40
  merge/resources/accounting/resources/accounts/types/accounts_retrieve_request_remote_fields.py,sha256=y5Npkd8r2hM_TcJfluSMRV4Jmkai4gRihwius9ox7GA,835
@@ -42,51 +42,51 @@ merge/resources/accounting/resources/accounts/types/accounts_retrieve_request_sh
42
42
  merge/resources/accounting/resources/addresses/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
43
43
  merge/resources/accounting/resources/addresses/client.py,sha256=3GqkSdL0kwAtHMvoQEozs1leGcQtklbUCqLI7j9n-ss,5498
44
44
  merge/resources/accounting/resources/addresses/raw_client.py,sha256=pf8F-difbVs5xTqzWdmJKxs_xYb94U0GdFjtk8jZ9Nw,6132
45
- merge/resources/accounting/resources/async_passthrough/__init__.py,sha256=1MpPldWxuhYBQ4thZ3E-Ykjn3NxDsYfdArx3XkPQtdI,185
45
+ merge/resources/accounting/resources/async_passthrough/__init__.py,sha256=fKVWk4jeqEvhNZuk0EtXPEFl5uB136ROeo8C6xczZI8,1053
46
46
  merge/resources/accounting/resources/async_passthrough/client.py,sha256=2LLJUnL3Ve6On3_pwZaZHHrso4rO1M6KusYytJdKSZg,5994
47
47
  merge/resources/accounting/resources/async_passthrough/raw_client.py,sha256=RQp8g0cwgl96iCECxKsIJzThIOnU-Y8eSOcmH-Zcl9U,7375
48
- merge/resources/accounting/resources/async_passthrough/types/__init__.py,sha256=0LUj53dTeTqfs50XizOk2ro3RcqGYXn71qHGyZs5Rdg,215
48
+ merge/resources/accounting/resources/async_passthrough/types/__init__.py,sha256=xZoQJ90iQWokoy6yfd_9sggRIkFEWCIPhmpoahoo_t0,1113
49
49
  merge/resources/accounting/resources/async_passthrough/types/async_passthrough_retrieve_response.py,sha256=uBMjgizc2Qhm2JA0rRTer6NiRT3sq_v-EyTrzkiQC0g,203
50
50
  merge/resources/accounting/resources/async_tasks/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
51
51
  merge/resources/accounting/resources/async_tasks/client.py,sha256=pC32ZXOBAcGLHTmWh1qFNEOVKNWycCBzAjRv_F-UFns,2934
52
52
  merge/resources/accounting/resources/async_tasks/raw_client.py,sha256=uPVabKYIhi6jyh7i864cW-aHHHo_ifYwz2HyYJlr32E,3554
53
53
  merge/resources/accounting/resources/attachments/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
54
- merge/resources/accounting/resources/attachments/client.py,sha256=g4PUTeLn2wA3hapLlzowQBvrflFA6Ui2V6xahe4XirU,16600
54
+ merge/resources/accounting/resources/attachments/client.py,sha256=OZn-dkAflujAbixzZH_2z1OLGpKfiax2LIFMorpGIbM,16784
55
55
  merge/resources/accounting/resources/attachments/raw_client.py,sha256=ZsNtjO_7C1tisneUo-BsQ5m0IqJ7zBwezaUbyj0gQD4,21405
56
56
  merge/resources/accounting/resources/audit_trail/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
57
- merge/resources/accounting/resources/audit_trail/client.py,sha256=NWjXyi34d36NNlVmiK87KmjSR0uqNf9A3gR-dCn7IGI,8360
57
+ merge/resources/accounting/resources/audit_trail/client.py,sha256=doAWb5tegHnuSJ2kIlf0wah8-A-wail_LzDR2wJdjkk,8544
58
58
  merge/resources/accounting/resources/audit_trail/raw_client.py,sha256=8vjokzhBE9acfeoWRRXw93AqEpczQofJGVMVLpEPDsE,9102
59
59
  merge/resources/accounting/resources/available_actions/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
60
60
  merge/resources/accounting/resources/available_actions/client.py,sha256=1dHD1pkKAfeZKGJixE8h01HzV5CFTIgR-KsP7zS54yg,2909
61
61
  merge/resources/accounting/resources/available_actions/raw_client.py,sha256=9XJWLE8gtRUrVL2pNWvPq-SA7Nzg_Q1z3prv_IM3CMk,3451
62
62
  merge/resources/accounting/resources/balance_sheets/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
63
- merge/resources/accounting/resources/balance_sheets/client.py,sha256=ixzzMDnmoZ-JeQ-bRQJqSMu2LMkJCZxS0JvMZE60fV0,12653
63
+ merge/resources/accounting/resources/balance_sheets/client.py,sha256=Ftyi31j_qAz_RWnEbWqTwHMxm1uHSjnUYLrFkEfnfmk,12837
64
64
  merge/resources/accounting/resources/balance_sheets/raw_client.py,sha256=mnhmeHDON1lOsNFXrLgf_LEhqpqfR7cbatfXHsry3UY,15094
65
65
  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=VbIQKrbdddUMxfUGDnDLAGl01TCYSiCWbeeZz-jpArE,13762
66
+ merge/resources/accounting/resources/bank_feed_accounts/client.py,sha256=qZ_GYkG4Ol75sy1c-AFC8PckSgJfBUpYvbGi7cGYqcc,13946
67
67
  merge/resources/accounting/resources/bank_feed_accounts/raw_client.py,sha256=yLOM64mSBqn2nQC6_ezDkVm6lIhnhCdBUWRYVoBSRZQ,17867
68
68
  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=HFr7rqf70g6rK-BBUW5_ynZxqyce9SzdK3MKwXr_nlI,18079
69
+ merge/resources/accounting/resources/bank_feed_transactions/client.py,sha256=sox-eVU0ralI8TODGv7jYo1qyULSQP_VhyjL4KEP3cw,18263
70
70
  merge/resources/accounting/resources/bank_feed_transactions/raw_client.py,sha256=k3oGtFrKAb8nOTJdp2Zb3rvSFU0hoJOMlhHfQNQv9EI,22804
71
71
  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=v8MwEUBIASBTFHygNfKJ5gLeUdB7fPBEFy88tIeLLDo,12821
72
+ merge/resources/accounting/resources/cash_flow_statements/client.py,sha256=NL8MekFovINzKj5narTrzc2KajU_NzpmE04posubXgs,13005
73
73
  merge/resources/accounting/resources/cash_flow_statements/raw_client.py,sha256=qZKUG2nZ3WBCD-QzjVpPNn1aY9sEsEUzrQrR4w9PRMs,15262
74
- merge/resources/accounting/resources/company_info/__init__.py,sha256=slQo6lM3CgRAwIS5j-ffppl0rqq7iZ09MlGVcUZ5Ps0,247
75
- merge/resources/accounting/resources/company_info/client.py,sha256=1PdPrwYMGaZjPluoLXEosB1ple2EwvbUuUXm6I4uG-4,12415
74
+ 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
76
76
  merge/resources/accounting/resources/company_info/raw_client.py,sha256=ZUS66HDfBg5tYnPp4x_1_kwd3Co4eG6UpAlGvB_N1eE,14850
77
- merge/resources/accounting/resources/company_info/types/__init__.py,sha256=5mxkxfc2eBE0tqQ0FcgeJIZEqceX0JHfrupY2LdIN5Y,323
77
+ merge/resources/accounting/resources/company_info/types/__init__.py,sha256=jRpjxUb8rTY5phW4CKbxDehacG3Yooucv6Bu9dv2fIY,1306
78
78
  merge/resources/accounting/resources/company_info/types/company_info_list_request_expand.py,sha256=vixn0_jiOrl0k-tt_kdzUHLVL4dVcV0Thk6QYia_EFI,827
79
79
  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=-2sXN9uRSOxRpvtG54uCrMIB_n7lHdDy0z5pgw1_Nc8,235
81
- merge/resources/accounting/resources/contacts/client.py,sha256=89FuXVjdIaNGSzsc7W93tcaHkZ6YBNoKk6_zgmbRjxs,28889
82
- merge/resources/accounting/resources/contacts/raw_client.py,sha256=b9OHsDR8Y7_L-saGhRp6RN6SMM2dpMyt0M77AgW4r5c,34997
83
- merge/resources/accounting/resources/contacts/types/__init__.py,sha256=EPkxRBuO5CXib_I81aqE3R5M34xishFcL_mM1oqOkic,303
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
84
84
  merge/resources/accounting/resources/contacts/types/contacts_list_request_expand.py,sha256=JuJqvv0yVgLDYuJ0TyoTjZMlO4PTKhiHocrO6GH6vjA,1675
85
85
  merge/resources/accounting/resources/contacts/types/contacts_retrieve_request_expand.py,sha256=TIItJMimUJ2J3CNTNEV9wtmnG8n9zmke2tgNz3AKM2E,1707
86
- merge/resources/accounting/resources/credit_notes/__init__.py,sha256=8eyYL1OkX1Jm_ZsPz2dT3g2Y1qJ29qPsECioSDogXg0,627
87
- merge/resources/accounting/resources/credit_notes/client.py,sha256=Q6BEGMeVj6iFeSyZ__xcQ26Yo98JyLYG5kxfpJoxoGk,21974
86
+ 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
88
88
  merge/resources/accounting/resources/credit_notes/raw_client.py,sha256=-QY3KAdZ5KcCGojq5LfKRHPgqrO7wrQ_UscqEDE1c0M,27213
89
- merge/resources/accounting/resources/credit_notes/types/__init__.py,sha256=480KNUgSgIScubtai1BUStGNrEfh8lj28FHjyY9rLP4,898
89
+ merge/resources/accounting/resources/credit_notes/types/__init__.py,sha256=O1goNWQHhNdyyQYt_OsU-asotrvlm-01iRCFAyAxBLY,2271
90
90
  merge/resources/accounting/resources/credit_notes/types/credit_notes_list_request_expand.py,sha256=cLYDWczwQVJoE4Dtx6l2C1DyqaD6TYdocFba8Qb_L8Q,45331
91
91
  merge/resources/accounting/resources/credit_notes/types/credit_notes_list_request_remote_fields.py,sha256=iCUz97VACnQqShTXBuXXMeM714rKyLXqFwr2r-XYsM8,731
92
92
  merge/resources/accounting/resources/credit_notes/types/credit_notes_list_request_show_enum_origins.py,sha256=bkkLnEugrrVGfZbBlwNfJf6hzc09_U5uqC4cfhzOwxg,743
@@ -97,19 +97,19 @@ merge/resources/accounting/resources/delete_account/__init__.py,sha256=_VhToAyIt
97
97
  merge/resources/accounting/resources/delete_account/client.py,sha256=1TA_PjdRVqCFs29-mvng8_mXWVubWqQyijyJlOfQjzs,2679
98
98
  merge/resources/accounting/resources/delete_account/raw_client.py,sha256=iv6EmyXTm4FCtjeqqvJSSWEW_tyAW4I2B4Zcftlsq_c,2649
99
99
  merge/resources/accounting/resources/employees/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
100
- merge/resources/accounting/resources/employees/client.py,sha256=-jhQJcQuV_VadzOM0s2LdUSkci4dl9JAh6w58gYyzbA,12519
100
+ merge/resources/accounting/resources/employees/client.py,sha256=cBzlafdSbyn5VP-qR4IzRYNzHmGe5tqBAR-cHV0tyA4,12703
101
101
  merge/resources/accounting/resources/employees/raw_client.py,sha256=36bSJtJJtrCW4svjyJdnyApjAddapkgbqtdG7CLPGkY,14960
102
- merge/resources/accounting/resources/expense_reports/__init__.py,sha256=qUa3v-FHKdoc5nMjjgSMks3xEibXcDnUwf_BLFhHUlc,369
103
- merge/resources/accounting/resources/expense_reports/client.py,sha256=IITQHOvYTlBFk7NvYA3ihFHcTFXTFuhHjikRQNMenmo,36958
102
+ 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
104
104
  merge/resources/accounting/resources/expense_reports/raw_client.py,sha256=nPZZvIB0XShL1bc67zntSP-7YxSDwGGtCb4ncT5K0hM,44852
105
- merge/resources/accounting/resources/expense_reports/types/__init__.py,sha256=pPM9R2yTUDH1Et1XmRF8Ca5ArZhw0K1oESemrIS0IOA,488
105
+ merge/resources/accounting/resources/expense_reports/types/__init__.py,sha256=Rp-Nq2cBWraoMV8H9sT-hnC_xrJU5nHJzF3IzgT6qb4,1577
106
106
  merge/resources/accounting/resources/expense_reports/types/expense_reports_lines_list_request_expand.py,sha256=V7UlSiB_j1YAENJ7Hgjlo56-uVnWqKGyrjrlPLNhAHw,16179
107
107
  merge/resources/accounting/resources/expense_reports/types/expense_reports_list_request_expand.py,sha256=F2qY-xF9Bn9puaZqeX6_owcoHNjZ8dA3fZpMTebKDw8,3691
108
108
  merge/resources/accounting/resources/expense_reports/types/expense_reports_retrieve_request_expand.py,sha256=G4od-4S-KDh54MthiZEBXPUzCNSA4kNus0E6QKC4tj8,3755
109
- merge/resources/accounting/resources/expenses/__init__.py,sha256=XdylRSRtlmTize2rwQKHkjHoGtFld7MAacuR-WykVhA,235
110
- merge/resources/accounting/resources/expenses/client.py,sha256=5nX_5IJzggSt2qSiK7zz4U-AECqAklLXODIi4kAuirA,30873
109
+ 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
111
111
  merge/resources/accounting/resources/expenses/raw_client.py,sha256=TqCP9Yx15qJbEGRES8sMTf3WAzWljH47-DlE0QIjc4E,38474
112
- merge/resources/accounting/resources/expenses/types/__init__.py,sha256=svAfy0Pv-9oprEZ4-56-Ta4AWMLD-KZgf1AT2pLPTp8,303
112
+ merge/resources/accounting/resources/expenses/types/__init__.py,sha256=Y_YDTOTDtuPaRN8Z07DZdsSHw8xsnfd-bw-NPG9KYMs,1272
113
113
  merge/resources/accounting/resources/expenses/types/expenses_list_request_expand.py,sha256=20alb3EB0ARvXmADljzBxtBkKrqtPiic2AvT2DbcYLk,18915
114
114
  merge/resources/accounting/resources/expenses/types/expenses_retrieve_request_expand.py,sha256=v9CbvBPbe2tgi89sdjwYhgt8sZtNkKYnA5xsoZ89yaY,19171
115
115
  merge/resources/accounting/resources/field_mapping/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
@@ -118,81 +118,81 @@ merge/resources/accounting/resources/field_mapping/raw_client.py,sha256=IX8_D9TF
118
118
  merge/resources/accounting/resources/force_resync/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
119
119
  merge/resources/accounting/resources/force_resync/client.py,sha256=O1-0Ctq-sz-LipDPy-YZUzHebTMawFhbENL2H0rjzkI,3533
120
120
  merge/resources/accounting/resources/force_resync/raw_client.py,sha256=dQw_Q1SEtw4fNszVkkq4QD-gLiqSfLHWeZGKUlI_cUk,4075
121
- merge/resources/accounting/resources/general_ledger_transactions/__init__.py,sha256=_c0UyXf_HW2JMwmzPtmEiOxlXSyrDv3qQSRbrr0d3Wk,303
122
- merge/resources/accounting/resources/general_ledger_transactions/client.py,sha256=1J_PFKuTbRfN5QjnnkSxD6So8ORxtqJN-mw7-fkYWuc,14431
121
+ 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
123
123
  merge/resources/accounting/resources/general_ledger_transactions/raw_client.py,sha256=D63SdOvqpHEJmFO0A0mc7Bc3Q70hgJTOXzWsiYBDYqU,17218
124
- merge/resources/accounting/resources/general_ledger_transactions/types/__init__.py,sha256=k9xZ_SjjMn7S1wjIOfWZK5PywgR7TnFni8_YQLIGO48,409
124
+ merge/resources/accounting/resources/general_ledger_transactions/types/__init__.py,sha256=wO-P92yWGLFUz7at5qapLULhT_ADRu9vLdMtbrdXSjQ,1450
125
125
  merge/resources/accounting/resources/general_ledger_transactions/types/general_ledger_transactions_list_request_expand.py,sha256=ZLK6o66R37TBmNnZ1xZ_DUjHWVFePy_KRIL9-4SQlW4,5595
126
126
  merge/resources/accounting/resources/general_ledger_transactions/types/general_ledger_transactions_retrieve_request_expand.py,sha256=YW6w_yjHmebdsvuTJUibCxH29P58TfAyYl7Fr9W4kCU,5659
127
127
  merge/resources/accounting/resources/generate_key/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
128
128
  merge/resources/accounting/resources/generate_key/client.py,sha256=kcSmal1KN57Te5DbIKoCeuNyJuKspbSaKACaSgQah4w,3084
129
129
  merge/resources/accounting/resources/generate_key/raw_client.py,sha256=7d4DW4Ohj8h02z53KH1tMjAf_S0jdrbxHy09gSD76ZA,3864
130
130
  merge/resources/accounting/resources/income_statements/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
131
- merge/resources/accounting/resources/income_statements/client.py,sha256=EZD0gW2J1E-EIJSZWw6hO8Sa6K7RdeXoylyJtPeBPj0,12751
131
+ merge/resources/accounting/resources/income_statements/client.py,sha256=vpJbSJtvcMxQxXpvHALwN57_sizhIqBjEqwfUc00xlE,12935
132
132
  merge/resources/accounting/resources/income_statements/raw_client.py,sha256=0o6wHjOC9-vYqcNUnAw6AJBBxC__PPkH_BVBgPFYGdI,15192
133
- merge/resources/accounting/resources/invoices/__init__.py,sha256=8QOdkIUvUNN7Z-y3EWfj0rqB2T0P966wnsHDp_mnBOE,383
134
- merge/resources/accounting/resources/invoices/client.py,sha256=bGPG1ptGWMJvRG8Gsq6Ud-0_4cveVH9Gf8650TP4wxM,40951
133
+ merge/resources/accounting/resources/invoices/__init__.py,sha256=APDTb0yWpoSu4uqzc-xPgoYtEEeneR_U47b47rYGgbI,1402
134
+ merge/resources/accounting/resources/invoices/client.py,sha256=lkduncu2xpUaeP_nTy7ZmkpmNS0dPSJv8ffNCY5ZC5A,41503
135
135
  merge/resources/accounting/resources/invoices/raw_client.py,sha256=O99iYBhiSMfzAI-74CgkBsvivzZILS5nrM67G-gDJQc,50734
136
- merge/resources/accounting/resources/invoices/types/__init__.py,sha256=Ci-3RC4bO3SOxejEx4dLyzkpo1v5jTyFYhK8lvrm7JQ,510
136
+ merge/resources/accounting/resources/invoices/types/__init__.py,sha256=tepZity0pQTwqTkpg3wnbSUgfbvZV9fTvkfxSqaPiX0,1615
137
137
  merge/resources/accounting/resources/invoices/types/invoices_list_request_expand.py,sha256=iJhSsuXqrbj4ZgRLGzPO2nomzSiZp2oFhV_VeVEC0sI,2441009
138
138
  merge/resources/accounting/resources/invoices/types/invoices_list_request_status.py,sha256=4ypbiLMygc-RZ-6NgpfuiMOphExSMOKWXd51Ui3ba6c,1150
139
139
  merge/resources/accounting/resources/invoices/types/invoices_list_request_type.py,sha256=XsKM2hgAx8-bddMxBHBCedkW_PbnS3D6foKNeR3zmXs,622
140
140
  merge/resources/accounting/resources/invoices/types/invoices_retrieve_request_expand.py,sha256=zh5Bt3RidKanmMnUziqm-JkFl1RS02jICyW0kfXcL2o,2464989
141
- merge/resources/accounting/resources/issues/__init__.py,sha256=8N-ynHIskTDmO3zwQbhyEHy7OTb63CJ_NdZRdLDBOyk,167
142
- merge/resources/accounting/resources/issues/client.py,sha256=J4YW0B7--IzJ-0kZKG4N64rSMOYqN5LHLEqfRnw6AUI,10931
141
+ merge/resources/accounting/resources/issues/__init__.py,sha256=fKOCxeYsbS41Y58p81luMrp7eaz6BLop2enXQ3HTvtc,1026
142
+ merge/resources/accounting/resources/issues/client.py,sha256=1QkIdt0b95t2TYptl1O1qGGZsioru2r8MZhLUBXXbH0,11115
143
143
  merge/resources/accounting/resources/issues/raw_client.py,sha256=i9N_XeX5GK2qzqX2brLfDIFRncwvoX6ADEpFbM9_MKU,13714
144
- merge/resources/accounting/resources/issues/types/__init__.py,sha256=jjxa8xGa5vTp5-uzIuy8dWJLKrwzX6DnMKPEEkgN4eo,188
144
+ merge/resources/accounting/resources/issues/types/__init__.py,sha256=c7N5BxoJGun2-0qD15I96eDPA36xKVGjt08VJoifSNo,1068
145
145
  merge/resources/accounting/resources/issues/types/issues_list_request_status.py,sha256=cBbfu1Q5A0ZPOzB7nM_VHRKEJHnxk8lqN-cGmRX6_x4,508
146
- merge/resources/accounting/resources/items/__init__.py,sha256=LP1V9GE7DGsi5BRNm_9wsrWFnVWgEi-Der4usoiFzxI,223
147
- merge/resources/accounting/resources/items/client.py,sha256=fyXL3hUPnl9ZFc3ZAB0kZ-K79TBaKlhIocC6gwd9YHQ,24813
146
+ merge/resources/accounting/resources/items/__init__.py,sha256=lP70QeEKjPpjMnAWSdWJGgx0KVSXAMo0FO7Vx17EWns,1121
147
+ merge/resources/accounting/resources/items/client.py,sha256=VxBSmEt8B3MlrxSoqxZOrEPqzDbzSr44JcQatnPrGwM,24997
148
148
  merge/resources/accounting/resources/items/raw_client.py,sha256=KsOGCTOGQxLPSaWebijjfjj96ahw4fWnlnlcglGsAIM,31770
149
- merge/resources/accounting/resources/items/types/__init__.py,sha256=-hezj5PvwmOjY5XyPX3-ekOB87OcuyrNhfyVmgaIbWs,285
149
+ merge/resources/accounting/resources/items/types/__init__.py,sha256=IyYbAJwQtijmyTHzvC4dalNL9dF9vsG8k9qxahpcD4Q,1242
150
150
  merge/resources/accounting/resources/items/types/items_list_request_expand.py,sha256=FDmwznf3cYIcS6VICN-P8zLoCFaQ2y_NaoFIhbBMu_o,9523
151
151
  merge/resources/accounting/resources/items/types/items_retrieve_request_expand.py,sha256=pwtGsTtgvHiunK4XL2wXUIYsWY9NyD5iTjRAEl_TUYQ,9651
152
- merge/resources/accounting/resources/journal_entries/__init__.py,sha256=ChXYqyJ5O_FiG562ymVM8busv6T1Oj-Xknc2jK2k0KE,259
153
- merge/resources/accounting/resources/journal_entries/client.py,sha256=U1GuL0OAwDexUlGcwrFL0dsaHZ7kWtvvtaHoWmzfPZc,31285
152
+ 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
154
154
  merge/resources/accounting/resources/journal_entries/raw_client.py,sha256=srNMp4gaQCBGCbOQznBO7OMcUPHaR-TeyfCfLigCAU8,38878
155
- merge/resources/accounting/resources/journal_entries/types/__init__.py,sha256=cxFawgzzMBH0S5BC--eoh4f54_xmWRV4V5X5AMZyOFQ,341
155
+ merge/resources/accounting/resources/journal_entries/types/__init__.py,sha256=362ssf7u1FdcrVDMW2IZ03DgdJwbCQp0ERBVlG2b03Q,1336
156
156
  merge/resources/accounting/resources/journal_entries/types/journal_entries_list_request_expand.py,sha256=FxCDOHj2JuG_HkGsp_wGUPDNe-8ju5j0jVGBtszMa1c,20607
157
157
  merge/resources/accounting/resources/journal_entries/types/journal_entries_retrieve_request_expand.py,sha256=oDL8u7IvKUaLABgRHAkswJ8NYbm_yg0RulYqcWf7HXc,20899
158
- merge/resources/accounting/resources/link_token/__init__.py,sha256=SHuz7ETMvuBzMIPBkqssDkfS9iJSZzYgw7pG6AM6bwk,179
158
+ merge/resources/accounting/resources/link_token/__init__.py,sha256=rFqQQV74iUqiyFV38kXLmMy_6QOH7ifcfn9qSZHnCCI,1044
159
159
  merge/resources/accounting/resources/link_token/client.py,sha256=3RjqNsgsg0mnCL8nOKM73iegiig2vrAwulJDvEGn-fU,12748
160
160
  merge/resources/accounting/resources/link_token/raw_client.py,sha256=Qs4IG6GwnXc1QuoMvdiBY-y2MSPeF1Kl7RQc8HSpmyw,13136
161
- merge/resources/accounting/resources/link_token/types/__init__.py,sha256=_DhmnLsRiAcpljK-OPGnDEHf9-FqnWXLVWUL4pOe8-I,207
161
+ merge/resources/accounting/resources/link_token/types/__init__.py,sha256=5u4pc35s4TmNZ4O2Le56xHN3UZGmvlCdr-C3BfxIEOg,1100
162
162
  merge/resources/accounting/resources/link_token/types/end_user_details_request_language.py,sha256=2BMH_lFqvpT1C4ljoUh5YUm2dgiuLYil6s3_pKcn540,194
163
- merge/resources/accounting/resources/linked_accounts/__init__.py,sha256=jDuRvmYXqKpaHo-Ya2LUjqfqk_rXOUOW7dSpRi-dvqM,187
164
- merge/resources/accounting/resources/linked_accounts/client.py,sha256=cw7wEq_u18q1cCI9huG0Zp50PBDM8O_Psnsnf-kOXBs,9780
163
+ 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
165
165
  merge/resources/accounting/resources/linked_accounts/raw_client.py,sha256=DKRqtUwcxdHSDc1bz-qank3cZHbpyV9vl3EEB4Ti83k,10632
166
- merge/resources/accounting/resources/linked_accounts/types/__init__.py,sha256=FjSJvzQG9s-6wuY4YUdmieuUNQvaQXZKDSC138TRMz0,219
166
+ merge/resources/accounting/resources/linked_accounts/types/__init__.py,sha256=xWSbOu74X9JxtUN921_jbVtBDygRoEcDyGXySS5soJc,1126
167
167
  merge/resources/accounting/resources/linked_accounts/types/linked_accounts_list_request_category.py,sha256=_EGocl5xFPQUgGIidOl4wEewCLbzqWyiXV2PIev7l7M,1354
168
168
  merge/resources/accounting/resources/passthrough/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
169
169
  merge/resources/accounting/resources/passthrough/client.py,sha256=h5W8I2jamuZxNGkToWnFha7077ZDyDiIO_1BBVeQ7cI,3663
170
170
  merge/resources/accounting/resources/passthrough/raw_client.py,sha256=8KX5Dh3C8iB7anNUEmjx0_-S93hGueWQdQ0RHJ-RlYY,4009
171
171
  merge/resources/accounting/resources/payment_methods/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
172
- merge/resources/accounting/resources/payment_methods/client.py,sha256=9s-P2IEgeSUYh2hIwcIGChjeai7twx583anSrCdw7KY,8791
172
+ merge/resources/accounting/resources/payment_methods/client.py,sha256=p7vLAvVrdbJJIV9OqVfk61_AAXRCslqRakBqoBO7xE0,8975
173
173
  merge/resources/accounting/resources/payment_methods/raw_client.py,sha256=5OH2vhH0kT9K8jx6WeWKN8wPak4H_BBlrnZhwwHO7xE,10584
174
174
  merge/resources/accounting/resources/payment_terms/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
175
- merge/resources/accounting/resources/payment_terms/client.py,sha256=uELItC3qUiD3nWwOLz1TyNHfzecEc1omHO2Q8u7gWOc,9875
175
+ merge/resources/accounting/resources/payment_terms/client.py,sha256=GZgW9asjkttCT_PDPAx425jvzaOCQjGFWVnnr7ggtFU,10059
176
176
  merge/resources/accounting/resources/payment_terms/raw_client.py,sha256=FQJDDHT0UPXIRAzgrKpEwbEsWpLmrK_LVh5_0I-VWns,11696
177
- merge/resources/accounting/resources/payments/__init__.py,sha256=FQ4iEkIwx0gdbFTaLohmmeRAYyFzeBL4jmL3qyp3rpg,235
178
- merge/resources/accounting/resources/payments/client.py,sha256=dWZyi3CRvIVs7NF2X4-M3LsP4OqN2wXGjoa0JPQBN6A,36576
177
+ merge/resources/accounting/resources/payments/__init__.py,sha256=XCICwwyTXicjMDD-74EqKkYdiFDL5i4HlcIjIIZxhrE,1150
178
+ merge/resources/accounting/resources/payments/client.py,sha256=1vN4Z_yGUwG6A8UcdJNsIS2jxR916hzg2vUQX5Twdew,37128
179
179
  merge/resources/accounting/resources/payments/raw_client.py,sha256=69yrHditdVQ8uSOnz-Y5zRXk7T4bmOmvyjQl2IeOoQ0,46399
180
- merge/resources/accounting/resources/payments/types/__init__.py,sha256=vCer3lj8gXUvA4MnA_NgWp5lj7rIHpbEVOL4X5Q2pFU,303
180
+ merge/resources/accounting/resources/payments/types/__init__.py,sha256=YosLP_reMRetxW6CZSZOLH2UD_GAg1o7SjmalhwYzj0,1272
181
181
  merge/resources/accounting/resources/payments/types/payments_list_request_expand.py,sha256=HESF9hxQQTOYD0AqaVYGTnZZ6l_l6Rrp-JccxLlf4vQ,46019
182
182
  merge/resources/accounting/resources/payments/types/payments_retrieve_request_expand.py,sha256=W1YCrMCPk3OXvDjRGZicPGCq26rfoHqzKeh4O7qTdqs,46567
183
183
  merge/resources/accounting/resources/phone_numbers/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
184
184
  merge/resources/accounting/resources/phone_numbers/client.py,sha256=OkI5QuvNcCVgYFHFC4s04Toqoyqf9a0fAUs4TMGJMJM,4324
185
185
  merge/resources/accounting/resources/phone_numbers/raw_client.py,sha256=ZGWHZhWaRvyRIkHUdYpshBD-M_c6-MDoqEciN2tUOxw,4962
186
- merge/resources/accounting/resources/projects/__init__.py,sha256=Hnpeeo8O3mZqBxOaXHqtzidyjtj2_hSTPF7S1ZyzBps,235
187
- merge/resources/accounting/resources/projects/client.py,sha256=maBCX48GmJm38UlUNSs3mirl54qKanLUxccBBP5CN0U,12657
186
+ merge/resources/accounting/resources/projects/__init__.py,sha256=JHJ4Zf_P74ov2gjzvYq0t5A4pmJOn8WY2iu1HJ1IL9A,1150
187
+ merge/resources/accounting/resources/projects/client.py,sha256=ptvoqS3oag_buHWBiTnIzbYDx41Rg9i75BdYXq1cW24,12841
188
188
  merge/resources/accounting/resources/projects/raw_client.py,sha256=jisXKn4uAhOAXIKHhP2p6lxzOyzj-RV0Gh2V33JXvPw,15098
189
- merge/resources/accounting/resources/projects/types/__init__.py,sha256=3Bck0IKa5Blg0JRdgT98e_m0AV6he8AfzjjXSwUxGP8,303
189
+ merge/resources/accounting/resources/projects/types/__init__.py,sha256=wM2-Lj1XQl-qM7H7SEjoai9DV-HfaRHgWhzoYRzRNJY,1272
190
190
  merge/resources/accounting/resources/projects/types/projects_list_request_expand.py,sha256=r6K1bRyyntXlU640inM9P4HJqG6RLQ9ndcX0JQD4Y-o,735
191
191
  merge/resources/accounting/resources/projects/types/projects_retrieve_request_expand.py,sha256=M-dqOWVhmOFBgBdcpo28uUIEhwLKZPJcfMJLs1zrtxc,751
192
- merge/resources/accounting/resources/purchase_orders/__init__.py,sha256=ROwU5qBCyqHmpQP3I1D4VY5pJhIIVJB-ROUyDSsT6QE,259
193
- merge/resources/accounting/resources/purchase_orders/client.py,sha256=Bmjbdpg3EF5hvSJNaA8Bi8FGjoV16K6LloOGpvmeoYc,33939
192
+ 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
194
194
  merge/resources/accounting/resources/purchase_orders/raw_client.py,sha256=V9t9DUPv42bHLs7dG-QWbjrrykx2bWuTMkC-IYUQPHI,41434
195
- merge/resources/accounting/resources/purchase_orders/types/__init__.py,sha256=Pv8HGF5iftNYjTYA0m7-Yb8Aqb8KJG2BLfcvGJo_U6U,341
195
+ merge/resources/accounting/resources/purchase_orders/types/__init__.py,sha256=wyTL9L406stZoAiZVu4uF9iCGKxFgVBvophOEy-ZaeA,1336
196
196
  merge/resources/accounting/resources/purchase_orders/types/purchase_orders_list_request_expand.py,sha256=SzeMqMfoPWvUElcCBhOcYPicrKpvLwxFcLOSfVvNXQM,46951
197
197
  merge/resources/accounting/resources/purchase_orders/types/purchase_orders_retrieve_request_expand.py,sha256=nd6hoVXJgq62DVmxHU4I_z6EUErKk9OaWk5l0idNH3Q,47751
198
198
  merge/resources/accounting/resources/regenerate_key/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
@@ -202,30 +202,30 @@ merge/resources/accounting/resources/scopes/__init__.py,sha256=_VhToAyIt_5axN6CL
202
202
  merge/resources/accounting/resources/scopes/client.py,sha256=1GuFde6uicpmDSVcwifjgm8mV_lIbvJifw3F4pDH52g,10826
203
203
  merge/resources/accounting/resources/scopes/raw_client.py,sha256=mokZLqpoPB5Pbb_8mQMOg34VMRZjEOQinpYStkgdsyE,11028
204
204
  merge/resources/accounting/resources/sync_status/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
205
- merge/resources/accounting/resources/sync_status/client.py,sha256=inZl9INmsQXYcUQhPC-Xe9XI2rBcfVZl8BAu_JegmMw,4871
205
+ merge/resources/accounting/resources/sync_status/client.py,sha256=7pP0qgyI53ZOPnsE02a7PCX8CdKeaN2s92eguMFUJSo,5055
206
206
  merge/resources/accounting/resources/sync_status/raw_client.py,sha256=U5c8z5As8nzd5WpifUqIQaAxnEMtZwkmx2YQqk9QjPY,5639
207
207
  merge/resources/accounting/resources/tax_rates/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
208
- merge/resources/accounting/resources/tax_rates/client.py,sha256=3lqIUPRMWN6nycdaRClg1veGxK9FYN99IK0Ia_3Y7FA,12833
208
+ merge/resources/accounting/resources/tax_rates/client.py,sha256=AZP4QeprWT5FUsS_5uDrat7AucaO0PE8TO4zot7VFBQ,13017
209
209
  merge/resources/accounting/resources/tax_rates/raw_client.py,sha256=ShWLOe3TOBG9O0b-zJLnLF-jm4Y3HqqgUknS60IuNyo,15288
210
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=ffQ-_tBk32eo_BVA4l1pt5yT8kjrfCQIpbZRFLFyLQk,16659
211
+ merge/resources/accounting/resources/tracking_categories/client.py,sha256=Vj5MBC7pgcIxwuysUDnatzm1i5ShbK3rNNYM356j0uM,16843
212
212
  merge/resources/accounting/resources/tracking_categories/raw_client.py,sha256=QKTlWDk9kuwz74u4GgjDSExq5KaIS7UqzTr7Gp11MFI,19190
213
- merge/resources/accounting/resources/transactions/__init__.py,sha256=MAzQVZpaP3GY0UfUHU6iLzYipveqQyLB4FfOGzBtbr0,251
214
- merge/resources/accounting/resources/transactions/client.py,sha256=Hzr-iGYjTrmbOWerd4QzcNrbTVZr1mVsvvXTzjUfbuU,13945
213
+ merge/resources/accounting/resources/transactions/__init__.py,sha256=bZVFzWCyH7IY1PT6ANwQfz_3Um-Ays7L9obEFSwuyIc,1174
214
+ merge/resources/accounting/resources/transactions/client.py,sha256=RGHAvow3THh6Ho2ZRna9cI5f8wyIqbVdjZmUlWhRX1o,14129
215
215
  merge/resources/accounting/resources/transactions/raw_client.py,sha256=eEBMaItmgkO0nmerypa-TzubOBLsshIWqyP6PpEWRlU,16816
216
- merge/resources/accounting/resources/transactions/types/__init__.py,sha256=wc9A0k_kUrYFihOmSDRaR_50Ui2X2Z_G0V8gfwhCGkc,327
217
- merge/resources/accounting/resources/transactions/types/transactions_list_request_expand.py,sha256=nAUYjwVv1de98sxCefWEnET2iYcPm74kfRl3wfphWYI,9171
218
- merge/resources/accounting/resources/transactions/types/transactions_retrieve_request_expand.py,sha256=o925DciP4YbJPTjt43E8xbAqPgoPc3VlZlgcegrwVM4,9299
219
- merge/resources/accounting/resources/vendor_credits/__init__.py,sha256=GAGfZVX3e96k5gRBtjJuV6LECbphCejDI80O0eQIFD0,255
220
- merge/resources/accounting/resources/vendor_credits/client.py,sha256=0qC7SdPIeWfEbMPPCq0qep_3l3qZ1E9_aLH6mW8dk-Y,18804
216
+ merge/resources/accounting/resources/transactions/types/__init__.py,sha256=xTvqSmci44M-1g2XIUslImXz2fVQ43wnydZLGhP1Bd0,1312
217
+ merge/resources/accounting/resources/transactions/types/transactions_list_request_expand.py,sha256=8365kWSDHZXam7FIV9rjCVBZywuFuoCG8jqGhKlOaYk,19575
218
+ merge/resources/accounting/resources/transactions/types/transactions_retrieve_request_expand.py,sha256=XgrAFbOEPj3vRBchx9ho55T82dR0jYNp24yUEvkC6l8,19831
219
+ 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
221
221
  merge/resources/accounting/resources/vendor_credits/raw_client.py,sha256=Ws0X34QjUzN5elh9AKuOm6Q3hJATD9KMudutGmM13p8,23987
222
- merge/resources/accounting/resources/vendor_credits/types/__init__.py,sha256=fRK-o9-tnUeUUjLpkDyCYBRO8Pp729oTDt_BjyKgvCQ,335
222
+ merge/resources/accounting/resources/vendor_credits/types/__init__.py,sha256=CS3zPq2dxTtuGX5iJPzaRRO8TyEQYfIcpDj4PYb6p_k,1326
223
223
  merge/resources/accounting/resources/vendor_credits/types/vendor_credits_list_request_expand.py,sha256=dT1LHp5JxN6AxdcpSdeujiyeSh_mIklDgGpE7O13b44,8691
224
224
  merge/resources/accounting/resources/vendor_credits/types/vendor_credits_retrieve_request_expand.py,sha256=bqZelf1QFmVXc--BsDMsQznpDLeMt2hJjYHGk-1Vcts,8819
225
225
  merge/resources/accounting/resources/webhook_receivers/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
226
226
  merge/resources/accounting/resources/webhook_receivers/client.py,sha256=kjqQ42l6V0-CwCF2ENgSaYNiRBlkzNff3s-mNRr5_pE,5238
227
227
  merge/resources/accounting/resources/webhook_receivers/raw_client.py,sha256=Rck5ssy1nlIcEkLUw0OVPX1HUOd3WUJW4XVxz9LqDQg,7159
228
- merge/resources/accounting/types/__init__.py,sha256=bkwUPqByGoKyoLWi-Fkx9ioLe_NkjMMFH_vNfrfSa3E,49233
228
+ merge/resources/accounting/types/__init__.py,sha256=lUISMknPton0UmQTIdWXK3HIKEimAhoTck6B1XW-TZY,84562
229
229
  merge/resources/accounting/types/account.py,sha256=2f6W3aEEhHfUj8HrZOrS2XN06IgQ7nuXD0_8LK_XrKM,15204
230
230
  merge/resources/accounting/types/account_account_type.py,sha256=Q89Q7sOANCg8AK5Y83pApbuN4lSJ323_CrppZSpokRE,206
231
231
  merge/resources/accounting/types/account_account_type_enum.py,sha256=FrCjqIr4_BR0T6PMgRUt9FEVqtPoyTdTwDv8Wz1bdsQ,3230
@@ -596,6 +596,8 @@ merge/resources/accounting/types/paginated_tax_rate_list.py,sha256=MSvrOW4iTZVXB
596
596
  merge/resources/accounting/types/paginated_tracking_category_list.py,sha256=y7E-2J89pxYO1KdVaSZwhJLwOcYyz2Z3meTjRRw1WIo,760
597
597
  merge/resources/accounting/types/paginated_transaction_list.py,sha256=jnDQBFSl5o__rhmCoiHhl6zp_kSfvsBdKa1EXBiF_2U,739
598
598
  merge/resources/accounting/types/paginated_vendor_credit_list.py,sha256=wl26WhYOQl4RtyU8NvYGKC2i2Iv8irTvZ3vt5Wha8a4,1438
599
+ merge/resources/accounting/types/patched_contact_request.py,sha256=uLl408rpyXrBAmJaPThvc980nwj9Xs2pgA2reKy9Exs,3050
600
+ merge/resources/accounting/types/patched_contact_request_addresses_item.py,sha256=RQpEOTGJ4NLRmNj6bBJca9CxNTXj0Fm4O58LL9A22X0,174
599
601
  merge/resources/accounting/types/patched_item_request_request.py,sha256=ISXYjt-d40IxMt40jGokViociOsI3f54R3bgRRxJFSU,2641
600
602
  merge/resources/accounting/types/patched_item_request_request_status.py,sha256=ry7GVqLLAHstkbGuggDZZvFpRa5EYpXBgna1UKDHjRE,193
601
603
  merge/resources/accounting/types/patched_item_request_request_type.py,sha256=Egn03sWFSpg8CWT_NeYDY_SAV6jLjwEpDE91SKzvHjk,184
@@ -672,7 +674,7 @@ merge/resources/accounting/types/remote_field.py,sha256=VYODTdHsSUSj1aaWzcWKdDzS
672
674
  merge/resources/accounting/types/remote_field_api.py,sha256=o7WbCUNUnmPtn6F09P3lKsXSHpEjAN8ZEfu8xsZL4Ko,1085
673
675
  merge/resources/accounting/types/remote_field_api_coverage.py,sha256=4bdB5WY4RcmZWXAIOeR_vTqnwIJsGr5eeSJDJFKxgq4,130
674
676
  merge/resources/accounting/types/remote_field_api_response.py,sha256=Mx97o8mDPKNgXyGWgnFD-h3wpFvVv3ngVU-eKIaMIfs,3598
675
- merge/resources/accounting/types/remote_field_class.py,sha256=VDlNRa_2Hr1Ik6UF1QZurmgXOwNKiaczabSjk7ZkaMg,1168
677
+ merge/resources/accounting/types/remote_field_class.py,sha256=aYLOySjAlvAHkEsn1ZDumq9-PglKHf6-UNkH_WS7doE,1224
676
678
  merge/resources/accounting/types/remote_field_remote_field_class.py,sha256=hO2WF1YOop9W_KViuHPjwdvK2sYjq8Wh43U87C9hEso,196
677
679
  merge/resources/accounting/types/remote_field_request.py,sha256=_dbR1Oq1a1RkrmW-6PYyZnODMh54X4Xvk_VRiU5MwoM,764
678
680
  merge/resources/accounting/types/remote_field_request_remote_field_class.py,sha256=CF0MIbwvcvBlT3_Pw_KmUD8f5_JyOY8hn-ajehwOrlo,203
@@ -740,48 +742,48 @@ merge/resources/accounting/types/vendor_credit_tracking_categories_item.py,sha25
740
742
  merge/resources/accounting/types/vendor_credit_vendor.py,sha256=Hbx_dA_l0j2zLa1Lq0ZVp-awB7rk0kfhrRC-_AAL-Pk,158
741
743
  merge/resources/accounting/types/warning_validation_problem.py,sha256=RXDtt3t3FwIeGGXkIr_OHOAybDZg44L_5hOqa2sLlJ0,736
742
744
  merge/resources/accounting/types/webhook_receiver.py,sha256=g4KQnc-vZPJGlXK-OOFIn2WGyTLKoeaq9TPWQ46VwFY,623
743
- merge/resources/ats/__init__.py,sha256=1ehxW8ra-B9his5ZKRs7si7H5Ca3WwOiyTla5qjvJ8M,15350
744
- merge/resources/ats/client.py,sha256=1FwfG2WC9dV3YEUTzJZM7EI6htOTwBbt2LRDxKew7Po,9376
745
+ merge/resources/ats/__init__.py,sha256=0rpVAj_nKJ_NVe0MKqAiH55ZrcpkbyYPHdjLV5iXwyw,28201
746
+ merge/resources/ats/client.py,sha256=Dvkwc80xk3DxVr4ojaszBGtYiybcqJw2-YMItR4ady0,28343
745
747
  merge/resources/ats/raw_client.py,sha256=MRKuoo8ARCLmq_R2YdrQSmcB_KzqPPaOdemqPBYCLF4,404
746
- merge/resources/ats/resources/__init__.py,sha256=EUOnEgv49msr73fBwU0l2EhDp13zfztTMQfs6Ql8Z7s,3627
748
+ merge/resources/ats/resources/__init__.py,sha256=mHgT5XcNYiavmP3uvDZ3T4puHDwLz0hjtC91N75276o,6939
747
749
  merge/resources/ats/resources/account_details/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
748
750
  merge/resources/ats/resources/account_details/client.py,sha256=oz5hRvzMUgFEb_bVUVJOttKeoDfHdZWKbmlM32c1uVw,2801
749
751
  merge/resources/ats/resources/account_details/raw_client.py,sha256=_Rkkyn2yn8di0gasIvO72rGSg_aF22l-LI9O6lDRGmE,3351
750
752
  merge/resources/ats/resources/account_token/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
751
753
  merge/resources/ats/resources/account_token/client.py,sha256=kDVIqxdjBnHvSh5gU39-RVHBdpjdp2fj37uQa8Dcdc0,3091
752
754
  merge/resources/ats/resources/account_token/raw_client.py,sha256=3GJUM1Yu9JYVaJZMwjGvLuX3cu1ZtIUsgQcPJU3QPD0,3637
753
- merge/resources/ats/resources/activities/__init__.py,sha256=-7a9PFupqA9rSMXdfNzvDNwWZ5-z-97--UWDJ5QEKrk,471
754
- merge/resources/ats/resources/activities/client.py,sha256=LCN_rawnHLGqwfkgDKlDByGMjYSWKLK2RI4kFv1lc3E,20800
755
+ merge/resources/ats/resources/activities/__init__.py,sha256=4YOQ7P89ovcsk36fYYeOR1yACWdFll4YH8AuHEo8xZU,1534
756
+ merge/resources/ats/resources/activities/client.py,sha256=z5zCMT5BQLDZ8COub3Ie5h_JSgDDttJnVm0dy-famSY,20984
755
757
  merge/resources/ats/resources/activities/raw_client.py,sha256=BcLufS4fk_TY4Wno9La265iFmww-Zd8I6kCBA3khXAo,25461
756
- merge/resources/ats/resources/activities/types/__init__.py,sha256=z70xvrXN4FknJpeUPn3htP2ZzbBYMPLWAgnCxWn-vpQ,648
758
+ merge/resources/ats/resources/activities/types/__init__.py,sha256=LVhSDgoBnVe46Nt17vpx2EO4I1aFMgzYlPfJm-LgFzU,1847
757
759
  merge/resources/ats/resources/activities/types/activities_list_request_remote_fields.py,sha256=EbdZeEOZoR6q7-phOELZ49XW03YsFiVnstNp7-YsC9I,857
758
760
  merge/resources/ats/resources/activities/types/activities_list_request_show_enum_origins.py,sha256=nYATTTiHNeti_XXsL794-kkcmO6sLAa5tqdslLIHmVo,869
759
761
  merge/resources/ats/resources/activities/types/activities_retrieve_request_remote_fields.py,sha256=EptLRhlvXlziglz0aMKKWVQ-tSXLsw6twbt4d0BnMp8,873
760
762
  merge/resources/ats/resources/activities/types/activities_retrieve_request_show_enum_origins.py,sha256=gftC7Ed3Gn60h5h24vcq3xoPkNbM4di6ONmviIwKJTM,885
761
- merge/resources/ats/resources/applications/__init__.py,sha256=SidKCw-0G6GhwJv8i071-h0wrLA8SPRZWFj2j85Bg1Y,251
762
- merge/resources/ats/resources/applications/client.py,sha256=v42eAlHoMnZVaAJo7zhTRH_fRLGq3xxB0oorYbnXgjw,25032
763
+ merge/resources/ats/resources/applications/__init__.py,sha256=-B7Z64b2WqfbhpeKKHWHb5X41pVq0ZRKm5lMoeOjys8,1174
764
+ merge/resources/ats/resources/applications/client.py,sha256=wu-ZRfT5q1pO7xSF6kJ2i5mQmCYdZP8OQgAcj38JknI,25216
763
765
  merge/resources/ats/resources/applications/raw_client.py,sha256=ZsOneTzEakSNV4aX8kMV3EtWQWOtosqRPiPDNY9ShBw,31122
764
- merge/resources/ats/resources/applications/types/__init__.py,sha256=fL5AJHQ9Br-GgXH02iLpk8LEqw8tCixmRngTWbGSyao,327
766
+ merge/resources/ats/resources/applications/types/__init__.py,sha256=5TeL84ZRdU_9769pYSySH2Mmp1QAbZavlmNLsmwx8_Q,1312
765
767
  merge/resources/ats/resources/applications/types/applications_list_request_expand.py,sha256=tR95D-B0MkMq4jRvH8NW15Ol0JZffFjG7TtaSXKfWnA,117151
766
768
  merge/resources/ats/resources/applications/types/applications_retrieve_request_expand.py,sha256=KSVOBPTXZpSC6HBfghIMm1Uq_yJ5Qk8gsF--ZQW9c1k,118607
767
- merge/resources/ats/resources/async_passthrough/__init__.py,sha256=1MpPldWxuhYBQ4thZ3E-Ykjn3NxDsYfdArx3XkPQtdI,185
769
+ merge/resources/ats/resources/async_passthrough/__init__.py,sha256=fKVWk4jeqEvhNZuk0EtXPEFl5uB136ROeo8C6xczZI8,1053
768
770
  merge/resources/ats/resources/async_passthrough/client.py,sha256=rgQ0LiOASHIW32F949SJPYzsECiU4HQlZUI-EMH4ViE,5952
769
771
  merge/resources/ats/resources/async_passthrough/raw_client.py,sha256=1a-h7m2cEQq291Ym-tVIccNi-TzZDqwVubUZ6pvvozo,7347
770
- merge/resources/ats/resources/async_passthrough/types/__init__.py,sha256=0LUj53dTeTqfs50XizOk2ro3RcqGYXn71qHGyZs5Rdg,215
772
+ merge/resources/ats/resources/async_passthrough/types/__init__.py,sha256=xZoQJ90iQWokoy6yfd_9sggRIkFEWCIPhmpoahoo_t0,1113
771
773
  merge/resources/ats/resources/async_passthrough/types/async_passthrough_retrieve_response.py,sha256=uBMjgizc2Qhm2JA0rRTer6NiRT3sq_v-EyTrzkiQC0g,203
772
774
  merge/resources/ats/resources/attachments/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
773
- merge/resources/ats/resources/attachments/client.py,sha256=Cio4svhBNlvDECrq96W0ge7ZZLsGjfhgM5zVC8kNqgI,20524
775
+ merge/resources/ats/resources/attachments/client.py,sha256=vdaBd43M1IKXYMIExB8ZQCD6pxIQpjmOO25dCLMaEjg,20708
774
776
  merge/resources/ats/resources/attachments/raw_client.py,sha256=JR3jjUvIx0zw7yhRyeKHNvWmov0Wdd5ci14bS_OvMVk,25193
775
777
  merge/resources/ats/resources/audit_trail/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
776
- merge/resources/ats/resources/audit_trail/client.py,sha256=nSm0yu7NguF44DhA0mtm0HhjQn7o1r9EI10kEof0qvg,8346
778
+ merge/resources/ats/resources/audit_trail/client.py,sha256=BZ_4YRvM52dQPlBMzNuIBbeuHJZsRcGsvvhN8yKNStE,8530
777
779
  merge/resources/ats/resources/audit_trail/raw_client.py,sha256=GPEz5uk0SbZsB-I6CdIZVJ0iS2HqP98nZvKaVjlT09c,9088
778
780
  merge/resources/ats/resources/available_actions/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
779
781
  merge/resources/ats/resources/available_actions/client.py,sha256=DX3bAHmwfRrF7G7iG5RMYhC1eBc8xjf0WSGVmN6mExg,2895
780
782
  merge/resources/ats/resources/available_actions/raw_client.py,sha256=x5-jmQW7czfLCktzq3wdTGA6s9WP_mg62kZjV36RLEA,3437
781
- merge/resources/ats/resources/candidates/__init__.py,sha256=4vAJWLq2R2LlWJTw6zACGlCdvhRz0RhuUVHbRTy6v5w,309
782
- merge/resources/ats/resources/candidates/client.py,sha256=rIWTjcRBHXOeaH2rwqlMsIhiokj-nD0HQijSx_kp5-0,27448
783
+ 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
783
785
  merge/resources/ats/resources/candidates/raw_client.py,sha256=ax5EF7RKwh77Gylrq8lpAAvGv1rmAqmwwcLQsG69338,34710
784
- merge/resources/ats/resources/candidates/types/__init__.py,sha256=DF4erREoyZpBAPTrbFo3_tTkzq3wAgTISLOvLXv__-k,428
786
+ merge/resources/ats/resources/candidates/types/__init__.py,sha256=2Dd66-CGy_epD9h_vcym9Zw0B6OQ5imiVNKvIJc5WTo,1486
785
787
  merge/resources/ats/resources/candidates/types/candidates_list_request_expand.py,sha256=FvbU_Ih2IGTXBRr5OsIZLm9ia5C7jOKNkySAf4IQLwo,833
786
788
  merge/resources/ats/resources/candidates/types/candidates_retrieve_request_expand.py,sha256=Raklhf47gXFSOhrB9PXA1OheuJZbGp4daApxj4C5UaU,849
787
789
  merge/resources/ats/resources/candidates/types/ignore_common_model_request_reason.py,sha256=9QCgrEP76XjxWTTdo8_2Z7vZyzOnj-9ZtBe1pgZQWEk,189
@@ -789,12 +791,12 @@ merge/resources/ats/resources/delete_account/__init__.py,sha256=_VhToAyIt_5axN6C
789
791
  merge/resources/ats/resources/delete_account/client.py,sha256=Va8aAkmDFIT7KQ3PkvF-YbDOe5oSD5MM7H5Pf4QMrSY,2665
790
792
  merge/resources/ats/resources/delete_account/raw_client.py,sha256=d0tHdOLTXDgOClm7rPepUYBHQB787JPxQYLn_iG_JMk,2635
791
793
  merge/resources/ats/resources/departments/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
792
- merge/resources/ats/resources/departments/client.py,sha256=yHPPtA4UK8vRvby5rZG3TXwZa3757VtenbVt-k_mDuQ,11011
794
+ merge/resources/ats/resources/departments/client.py,sha256=z5R_X8kpThmdvzy7LlL5MfBKcrqoaP9Cm78Mo1IKK4E,11195
793
795
  merge/resources/ats/resources/departments/raw_client.py,sha256=_F5juwCER9ea2IFT_qglg4Lc5Zrljsrq9zH9St2Oxdc,13410
794
- merge/resources/ats/resources/eeocs/__init__.py,sha256=myufvT2uQFozdu7rPvL7eVc9mUHyEKHYf1GFJy41I3s,431
795
- merge/resources/ats/resources/eeocs/client.py,sha256=s_b_gyZ1PjKRIS41SxhFOAfERTm12Xwtc0Ajkloy4iE,15565
796
+ 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
796
798
  merge/resources/ats/resources/eeocs/raw_client.py,sha256=uXBdhATekmpjJ4-HeY1-N5JHO3tIte3Bf7pvsqrI4Ag,18062
797
- merge/resources/ats/resources/eeocs/types/__init__.py,sha256=WgzWd0xcKP8SQoFo75J-rbXIQcd16X7G429oEDvh2hU,588
799
+ merge/resources/ats/resources/eeocs/types/__init__.py,sha256=DDModPi2jWYLgDW208-RpB2wiLQqaY_34_84J0kFSqI,1747
798
800
  merge/resources/ats/resources/eeocs/types/eeocs_list_request_remote_fields.py,sha256=p_xPGIVLJ9LpR-qm-q7G83fzM7QvUxTHSEjkOPNA7qc,3803
799
801
  merge/resources/ats/resources/eeocs/types/eeocs_list_request_show_enum_origins.py,sha256=52EGOVkBWMn5hGKJcjr83P9xMoHXmBviTm5IhKOe2hY,3851
800
802
  merge/resources/ats/resources/eeocs/types/eeocs_retrieve_request_remote_fields.py,sha256=9utJHwQ_K57eeY9ySzwin_bqzgrPpk394keNT5haQZQ,3867
@@ -808,51 +810,51 @@ merge/resources/ats/resources/force_resync/raw_client.py,sha256=5bXpUwMnyPFh0NgD
808
810
  merge/resources/ats/resources/generate_key/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
809
811
  merge/resources/ats/resources/generate_key/client.py,sha256=5aK1zVlz0hHKe0Wko1dQ3sDLJB7F5vNwvkEGl639yC8,3070
810
812
  merge/resources/ats/resources/generate_key/raw_client.py,sha256=Fnun7LfpUy9ff1if3kAQd3b2GVeUY9i6d8kHZKd5C9k,3850
811
- merge/resources/ats/resources/interviews/__init__.py,sha256=ye942zibyOKeOtuWrnNie3nhGT2Lt1J86d5FtjDSEbg,243
812
- merge/resources/ats/resources/interviews/client.py,sha256=mcMClnir0wva2zXYanONsKij4ZXpJdtNnV4VmeYyZrg,22132
813
+ merge/resources/ats/resources/interviews/__init__.py,sha256=M0f3PuP2gzbxKdA7puiQokB_-2dP6dNmXlAxHumHNhc,1162
814
+ merge/resources/ats/resources/interviews/client.py,sha256=D1yzy00M3GjkclvZSO2SzctD7n9pVoUHZa0Fsofm_90,22316
813
815
  merge/resources/ats/resources/interviews/raw_client.py,sha256=EhjoxzZXIurOtOwa-5p8FokPPrRA5PCAlhAdc4RAkLM,26915
814
- merge/resources/ats/resources/interviews/types/__init__.py,sha256=7cM3HJPi02FBkjcm3Bz7vv_NDjDiCLVkp8NYmfhPhlw,315
816
+ merge/resources/ats/resources/interviews/types/__init__.py,sha256=8AwRx46og1-F9Vc2yxw2b-O8I9gLTReazenH4p6rgbM,1292
815
817
  merge/resources/ats/resources/interviews/types/interviews_list_request_expand.py,sha256=xyq9du-PhMinUNt5dHVy4vI28htBS1HqBN49JYyLTAY,4187
816
818
  merge/resources/ats/resources/interviews/types/interviews_retrieve_request_expand.py,sha256=YSU0ceJ4gJRUXEs4wKgdd2PObfiIw_ROkmMPBIKX53Y,4251
817
- merge/resources/ats/resources/issues/__init__.py,sha256=8N-ynHIskTDmO3zwQbhyEHy7OTb63CJ_NdZRdLDBOyk,167
818
- merge/resources/ats/resources/issues/client.py,sha256=wGbdIkiGJOUKlbcaiahLTlRsmYRxoECMeULN5HVE5Ug,10903
819
+ merge/resources/ats/resources/issues/__init__.py,sha256=fKOCxeYsbS41Y58p81luMrp7eaz6BLop2enXQ3HTvtc,1026
820
+ merge/resources/ats/resources/issues/client.py,sha256=RPMvRDmxAE3dCISPIvgmQSnQXDyglfiruixGotpJSlM,11087
819
821
  merge/resources/ats/resources/issues/raw_client.py,sha256=Q8C2hGOq2Ee51_LLDJIPq6tXbfAAlOscbe0XdNyhEt4,13686
820
- merge/resources/ats/resources/issues/types/__init__.py,sha256=jjxa8xGa5vTp5-uzIuy8dWJLKrwzX6DnMKPEEkgN4eo,188
822
+ merge/resources/ats/resources/issues/types/__init__.py,sha256=c7N5BxoJGun2-0qD15I96eDPA36xKVGjt08VJoifSNo,1068
821
823
  merge/resources/ats/resources/issues/types/issues_list_request_status.py,sha256=cBbfu1Q5A0ZPOzB7nM_VHRKEJHnxk8lqN-cGmRX6_x4,508
822
824
  merge/resources/ats/resources/job_interview_stages/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
823
- merge/resources/ats/resources/job_interview_stages/client.py,sha256=xc6BnNYRQfqTiL56SbmO232j93Mqcs16lqjI6dvS6fc,12713
825
+ merge/resources/ats/resources/job_interview_stages/client.py,sha256=bnNwtJaZJEwRuLs91gJ0EFzg1BrGNwoUqJTazyotyQ4,12897
824
826
  merge/resources/ats/resources/job_interview_stages/raw_client.py,sha256=YwWqkWhr8IjKBrgx3cHU8LRHALTIssAL7n59IJTBM5E,15154
825
- merge/resources/ats/resources/job_postings/__init__.py,sha256=ABkpsd-5AOuEC47y262hEh2AH-e93ZoRCY0UowtZIGs,177
826
- merge/resources/ats/resources/job_postings/client.py,sha256=JTAiNPlTLSQTnKt2skyvZIMcj7FOkx4AhFUd1OvUjq8,13150
827
+ 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
827
829
  merge/resources/ats/resources/job_postings/raw_client.py,sha256=84UPP_kMrFsWphQVvgQywf5FvYfzoAYPtTeML_tWiq8,15591
828
- merge/resources/ats/resources/job_postings/types/__init__.py,sha256=DfI0dlyQhzb_mOiOe0JdCS57yfoXd4iRYUt_Aobez2M,204
830
+ merge/resources/ats/resources/job_postings/types/__init__.py,sha256=m0QGvAHivXs-2y8aG8nkM5ve4SdnpZVyZuy7JuQanOw,1095
829
831
  merge/resources/ats/resources/job_postings/types/job_postings_list_request_status.py,sha256=DD459cw_Cc4lzqomq0lCJN2Boojscl7nRSxeyQyd_l8,1023
830
- merge/resources/ats/resources/jobs/__init__.py,sha256=uB3kagmDzGwd6LLPerwPt0lcfpgsinUWVGCw2vI9iDE,391
831
- merge/resources/ats/resources/jobs/client.py,sha256=bjnRWthdFiTnraasYoxYm8Y2cnqEgdbTXVaHxCD7qIU,22033
832
+ merge/resources/ats/resources/jobs/__init__.py,sha256=2wQdbzGIKYOV0fDQLIi7WWoDFUrz2OrHQCA_pB3RC9M,1414
833
+ merge/resources/ats/resources/jobs/client.py,sha256=uD1zOB-u89SjqKr0pjfP2gEE2NGeojmFkJYCnWyBQz0,22379
832
834
  merge/resources/ats/resources/jobs/raw_client.py,sha256=1HJQXeBj9sIkung1BrbzDb1Q08pQtxrK_Wu6UFmtal4,25683
833
- merge/resources/ats/resources/jobs/types/__init__.py,sha256=z1XF8BcKtAZ7OCi_rk383vEnJUZ_uu6nXjN4IdUFvnI,524
835
+ merge/resources/ats/resources/jobs/types/__init__.py,sha256=2vKTqUZQapyOqjU0PcihFsfyXFLEEPGYliSjoGeeyjc,1639
834
836
  merge/resources/ats/resources/jobs/types/jobs_list_request_expand.py,sha256=1B4kaeN4JWDbRkJKIXkdWAavlMCFf5wthnLMeeIOXl0,8483
835
837
  merge/resources/ats/resources/jobs/types/jobs_list_request_status.py,sha256=62bp9qckkUjyZ7Ez5ipGKhHHFvnHr1tTe9e5To-miEM,956
836
838
  merge/resources/ats/resources/jobs/types/jobs_retrieve_request_expand.py,sha256=_k0n0SR7alHbk6SAfS9iQNfotO5AXCpAxCPaSX5upm4,8611
837
839
  merge/resources/ats/resources/jobs/types/jobs_screening_questions_list_request_expand.py,sha256=7zHNB5o-v3Nnicrn42dHPNZxdC177a2RwPc5vNeHQB4,751
838
- merge/resources/ats/resources/link_token/__init__.py,sha256=SHuz7ETMvuBzMIPBkqssDkfS9iJSZzYgw7pG6AM6bwk,179
840
+ merge/resources/ats/resources/link_token/__init__.py,sha256=rFqQQV74iUqiyFV38kXLmMy_6QOH7ifcfn9qSZHnCCI,1044
839
841
  merge/resources/ats/resources/link_token/client.py,sha256=Ff6ZcuMF_GfxXEfKZM7M1P-9pOIF5muTLkfX7T6Lu3c,12720
840
842
  merge/resources/ats/resources/link_token/raw_client.py,sha256=UfsNss9cKhbdQjO4p0q3k4w6P18CFxhkY59_5ZbPfck,13122
841
- merge/resources/ats/resources/link_token/types/__init__.py,sha256=_DhmnLsRiAcpljK-OPGnDEHf9-FqnWXLVWUL4pOe8-I,207
843
+ merge/resources/ats/resources/link_token/types/__init__.py,sha256=5u4pc35s4TmNZ4O2Le56xHN3UZGmvlCdr-C3BfxIEOg,1100
842
844
  merge/resources/ats/resources/link_token/types/end_user_details_request_language.py,sha256=2BMH_lFqvpT1C4ljoUh5YUm2dgiuLYil6s3_pKcn540,194
843
- merge/resources/ats/resources/linked_accounts/__init__.py,sha256=jDuRvmYXqKpaHo-Ya2LUjqfqk_rXOUOW7dSpRi-dvqM,187
844
- merge/resources/ats/resources/linked_accounts/client.py,sha256=Qm3w2SewfUSojTGfIleFy9zMZzenfjpAhQ6iRdC9ivc,9766
845
+ merge/resources/ats/resources/linked_accounts/__init__.py,sha256=qlT602tt9halCaj1oeXa66bVB_5EImiYWgBYpAFP3dY,1056
846
+ merge/resources/ats/resources/linked_accounts/client.py,sha256=gLZgIe6ODAaPnR7XxDyLUhK3FcKi6FrO68FVdbfS59w,9950
845
847
  merge/resources/ats/resources/linked_accounts/raw_client.py,sha256=f9w9v_tob9fvlVfruFZMUD5uwEhfSBen8GcGHrt47RM,10618
846
- merge/resources/ats/resources/linked_accounts/types/__init__.py,sha256=FjSJvzQG9s-6wuY4YUdmieuUNQvaQXZKDSC138TRMz0,219
848
+ merge/resources/ats/resources/linked_accounts/types/__init__.py,sha256=xWSbOu74X9JxtUN921_jbVtBDygRoEcDyGXySS5soJc,1126
847
849
  merge/resources/ats/resources/linked_accounts/types/linked_accounts_list_request_category.py,sha256=_EGocl5xFPQUgGIidOl4wEewCLbzqWyiXV2PIev7l7M,1354
848
- merge/resources/ats/resources/offers/__init__.py,sha256=4sWeI0xo022pVv-wC1Z-XEwGqjLWAwn1ZpVfswvommw,227
849
- merge/resources/ats/resources/offers/client.py,sha256=vRocP4O_apE80pHZw8MgRllMQE0q7mLGRcADZT81yDU,15663
850
+ merge/resources/ats/resources/offers/__init__.py,sha256=MjPZ5RGhznfkXpO1UBKjauncUUEOp4Qvz8h7Z-V2Vdk,1127
851
+ merge/resources/ats/resources/offers/client.py,sha256=zYYfCi5jmB4gk4jT5zm4irNBsQaUm_D1_OFSBeQrYjA,15847
850
852
  merge/resources/ats/resources/offers/raw_client.py,sha256=kN2FXkfQFvaf5TdW5GUNHNsrRkQCmALIpZAmxsTDu_o,18174
851
- merge/resources/ats/resources/offers/types/__init__.py,sha256=uBbN8hlvln2dNepbLvrW6frHWMgziscAQolWxqkdXYs,291
853
+ merge/resources/ats/resources/offers/types/__init__.py,sha256=4vP2nHoLBttwtyhDnsgx1OtiBD1uDtzC9V137kpfXaE,1252
852
854
  merge/resources/ats/resources/offers/types/offers_list_request_expand.py,sha256=TeIQthOQikNd8KC2_dmHM_7B7rMjD5TzdY0qN5cu0Ks,767
853
855
  merge/resources/ats/resources/offers/types/offers_retrieve_request_expand.py,sha256=Y2aYRm4Iudo53A_YxRA827YZW7sEgt_mvsW6otx0YjI,783
854
856
  merge/resources/ats/resources/offices/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
855
- merge/resources/ats/resources/offices/client.py,sha256=jHbrzibTFMecX5lWPgVw8RDRQxMmpEhKe5_fjM5E0mU,10893
857
+ merge/resources/ats/resources/offices/client.py,sha256=bWjpvJ3Qw_JM8oMwXVn_lsS9UH6YM2kLVkYkqjocPdQ,11077
856
858
  merge/resources/ats/resources/offices/raw_client.py,sha256=IicPa3g7x39HNb31sBPuVjstdWmT6i_O4fx2O6D3uQs,13292
857
859
  merge/resources/ats/resources/passthrough/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
858
860
  merge/resources/ats/resources/passthrough/client.py,sha256=wMkrClM7z-t72h1rT6mAnfUl-ddo7fTMsC8DNtI6piU,3635
@@ -861,30 +863,30 @@ merge/resources/ats/resources/regenerate_key/__init__.py,sha256=_VhToAyIt_5axN6C
861
863
  merge/resources/ats/resources/regenerate_key/client.py,sha256=Xl5_XthihvLHCwUiUopO91bEMBsvLROz98JZjRwpWiM,3096
862
864
  merge/resources/ats/resources/regenerate_key/raw_client.py,sha256=oa-Mhfxb0-dhksDAmeaATgYmrV8HjWO1bEStYbEtZTk,3860
863
865
  merge/resources/ats/resources/reject_reasons/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
864
- merge/resources/ats/resources/reject_reasons/client.py,sha256=u0prmzsagfNDLuwG45weFk63QjHPC1dkSCvDBwMu5go,11077
866
+ merge/resources/ats/resources/reject_reasons/client.py,sha256=9eU4Lp6jDByWBmDCwLBY2k0YCCXmmgJcQ6leM21UNqo,11261
865
867
  merge/resources/ats/resources/reject_reasons/raw_client.py,sha256=mT1birKV20_95RGjmA2H5NmedTacaqFgpU10v7gG2Cc,13476
866
868
  merge/resources/ats/resources/scopes/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
867
869
  merge/resources/ats/resources/scopes/client.py,sha256=ISs8i6ITrjFESYm_O-BmOEcjWrPTWGp4_Wlo7SVhmXA,10770
868
870
  merge/resources/ats/resources/scopes/raw_client.py,sha256=ghmLHuM2p4VnSfo4rrNutN8uhN9k2VMoZ1XIEXXTTXE,10986
869
- merge/resources/ats/resources/scorecards/__init__.py,sha256=GhEFJMt_aXNCS6b3ETek4riAvFa0N_XFYr-ro6LzESY,243
870
- merge/resources/ats/resources/scorecards/client.py,sha256=6Vc5HivEohFV2-wbh7yOdc4H-5RE9jcf7z3xEBYGYYo,16549
871
+ merge/resources/ats/resources/scorecards/__init__.py,sha256=FM72eg-6ZJhhj9hMqsuuVUNuVYHoIFCeY6XhuKs3QvU,1162
872
+ merge/resources/ats/resources/scorecards/client.py,sha256=8jIrnUEQh4Kmyx7pXldAhM9xNbFEpbJLk1381NRPgUI,16733
871
873
  merge/resources/ats/resources/scorecards/raw_client.py,sha256=HykqlrZMi9CU6Ld4Es6_-tjRR7oTEXYbvYgXToJQfQ0,19074
872
- merge/resources/ats/resources/scorecards/types/__init__.py,sha256=z2pbkqWcLCYWrTsHCfaL7dNz74TV_g_t2oanFhZTsy8,315
874
+ merge/resources/ats/resources/scorecards/types/__init__.py,sha256=qJFjLWuGIMmKkDsPB7CxdWf_EEmRNlg0kPDMEbH7uJo,1292
873
875
  merge/resources/ats/resources/scorecards/types/scorecards_list_request_expand.py,sha256=vFFF3C7SmWZV-VOpZJZE0ImcXFJvXro89z8cNlAzXwk,1731
874
876
  merge/resources/ats/resources/scorecards/types/scorecards_retrieve_request_expand.py,sha256=3Nylu_gL8zgPal4Ly45b0Hi6Mz_-I7SbhJMgK3Xr_TE,1763
875
877
  merge/resources/ats/resources/sync_status/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
876
- merge/resources/ats/resources/sync_status/client.py,sha256=aSEF79h7tZzJcNDbHC7_BAdlgTk7-KLvF6Gbblqz-50,4857
878
+ merge/resources/ats/resources/sync_status/client.py,sha256=ymqdxJzAAD8dDxyTNaApn-ef-woJ71bTTKTO9Rk09kw,5041
877
879
  merge/resources/ats/resources/sync_status/raw_client.py,sha256=6FgTOGOzyxYpuJVOQGqvzCwGJc_Jz8haT9ndZR7at5Q,5625
878
880
  merge/resources/ats/resources/tags/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
879
- merge/resources/ats/resources/tags/client.py,sha256=zobzkshtfcCzqYhiDvoRS5PHMNrg6W_NE33vsP8kaek,7848
881
+ merge/resources/ats/resources/tags/client.py,sha256=Aj55B3jpY7uV91z_kLvBhfUiYNqjO7zw_MxqWTrIpto,8032
880
882
  merge/resources/ats/resources/tags/raw_client.py,sha256=lliALPUD2jfmyxWaiBxIGFFikn3VOEeB2JGHkhDlNIw,9190
881
883
  merge/resources/ats/resources/users/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
882
- merge/resources/ats/resources/users/client.py,sha256=jF7wNb5mjmaI6d1Ubol6n3SoDU7qZ0zZ_sUCZSg9G8w,14075
884
+ merge/resources/ats/resources/users/client.py,sha256=KmOasOzzNGVV_eI1N86s8SEYlTZdWV84r-QnWXf0--k,14259
883
885
  merge/resources/ats/resources/users/raw_client.py,sha256=a4X9rtywjYzGGzTSphlipJQn8qtvAuZuMIm5EiHv1n4,16592
884
886
  merge/resources/ats/resources/webhook_receivers/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
885
887
  merge/resources/ats/resources/webhook_receivers/client.py,sha256=3zodHRSQJPPf98a9ExD4JopX3eLitEdDu5E1R-Aw3Zs,5210
886
888
  merge/resources/ats/resources/webhook_receivers/raw_client.py,sha256=UUDXduQXEU5p-MNIgtf3DTrTtv2wbEE8SkLJCKJUj3U,7131
887
- merge/resources/ats/types/__init__.py,sha256=UbLuTLm2zoB4xD8fOjrHZHS4yDXJteytGwEa9kntXhY,18921
889
+ merge/resources/ats/types/__init__.py,sha256=NF-iLh5DSLIIRrSHZ57eIxYlb2lX8J37h9JbmtRKycg,32810
888
890
  merge/resources/ats/types/access_role_enum.py,sha256=h6k5JiAyywFbiaB461sMfQ6HYaj_-KH4r0g3iEqMVVM,1240
889
891
  merge/resources/ats/types/account_details.py,sha256=6FjFKxsxftOM5DJIiueXWPtJZkuFMIVSgcB_2UT7t8w,1617
890
892
  merge/resources/ats/types/account_details_and_actions.py,sha256=4S2cnfZ4T8vU-rudpCuZWlH23sgL4dk6n9k1ZbzrQt4,2121
@@ -964,7 +966,7 @@ merge/resources/ats/types/email_address_type_enum.py,sha256=gMSpQWj4ycaI7HDaPs-z
964
966
  merge/resources/ats/types/enabled_actions_enum.py,sha256=RBwvCMjrrdPPAbnQXAwKczXklo0uxpgYVrfcDs6lSRo,522
965
967
  merge/resources/ats/types/encoding_enum.py,sha256=ervs42mwv6m0bBeWe-QKdG02RRVLIlFhLOVjzmqen3c,739
966
968
  merge/resources/ats/types/error_validation_problem.py,sha256=kTcN_MW8qd0YV5bMdeQfhxCyx5z3RYSfQkjjhrQcX0Y,734
967
- merge/resources/ats/types/event_type_enum.py,sha256=7vXxUdcPC6e-Uvmks71hEuMZx8LEoHCbR_wFDinM4VQ,13675
969
+ merge/resources/ats/types/event_type_enum.py,sha256=wfHQ1fs-1Kca2-WWcmkV_-G4H-RgZVlntxEtZj_VzO8,13928
968
970
  merge/resources/ats/types/external_target_field_api.py,sha256=7qYlHHE-NAj2mbecB_tWxwtNftguu6LIXlfc5ifg5G8,684
969
971
  merge/resources/ats/types/external_target_field_api_response.py,sha256=HgWRIMMe2cGS7N5AQLSJNXIhgoasjpn48KvaxeEE8j0,2580
970
972
  merge/resources/ats/types/field_mapping_api_instance.py,sha256=RttMXfps1-vnnavS0sS1Z9hA_-getVdtHXkfobPKfEk,979
@@ -1102,10 +1104,10 @@ merge/resources/ats/types/veteran_status_enum.py,sha256=SiiRJPvP11x6q2EWojgvD8ni
1102
1104
  merge/resources/ats/types/visibility_enum.py,sha256=c2n5A9Y267-9PpEqpNZaSCL-_-do51MdUJpTvtu-JC0,760
1103
1105
  merge/resources/ats/types/warning_validation_problem.py,sha256=RXDtt3t3FwIeGGXkIr_OHOAybDZg44L_5hOqa2sLlJ0,736
1104
1106
  merge/resources/ats/types/webhook_receiver.py,sha256=g4KQnc-vZPJGlXK-OOFIn2WGyTLKoeaq9TPWQ46VwFY,623
1105
- merge/resources/crm/__init__.py,sha256=LrjAxtnWJEveLQ288MOLxHww6i7racBfGYa41F9I_x4,14270
1106
- merge/resources/crm/client.py,sha256=yeydgistiRUzTrsCYwCuDfkLQDji0tOqr4BtRtnI3t4,9005
1107
+ merge/resources/crm/__init__.py,sha256=I1Dx1Bc69UOTtkwMknaPpfK2x4uDn1Zn_1QR7h_FyTY,26379
1108
+ merge/resources/crm/client.py,sha256=PcRsev56VokrI3KBAIqSbiwpwoy8rKhfCtQnTcZAInU,27062
1107
1109
  merge/resources/crm/raw_client.py,sha256=9guTBIuihjloPhDBKAPHrND1Kuz_85FpO3OrLwqeXA8,404
1108
- merge/resources/crm/resources/__init__.py,sha256=CN0EM85rzlr5WwwNWEFL6f-vO17FdVdBwalp926Ln2s,2622
1110
+ merge/resources/crm/resources/__init__.py,sha256=zTsmeaHeecf4stpa2XgviiX39tmjxp_rE8872khkDfY,5239
1109
1111
  merge/resources/crm/resources/account_details/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1110
1112
  merge/resources/crm/resources/account_details/client.py,sha256=CldGnS_8Pgng52dHMmy56d9eGGCDgvNbd8o3NOwxQ6Q,2801
1111
1113
  merge/resources/crm/resources/account_details/raw_client.py,sha256=q-ohjy1FdvrROwC6vyLTyD1Bi7dcqPniQiKPW5kWLLU,3351
@@ -1113,47 +1115,47 @@ merge/resources/crm/resources/account_token/__init__.py,sha256=_VhToAyIt_5axN6CL
1113
1115
  merge/resources/crm/resources/account_token/client.py,sha256=EuB2_KutZ1ExKd3WHuPB7MzhGsRzbCDOvBZ9fY-coqU,3091
1114
1116
  merge/resources/crm/resources/account_token/raw_client.py,sha256=EYTY7DvZhUXUokh98OiYMwJrgsyTlvSVCkmvavJcu8U,3637
1115
1117
  merge/resources/crm/resources/accounts/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1116
- merge/resources/crm/resources/accounts/client.py,sha256=HKjYoIKaY0Qi8-ru1fP5d8DlzF_qarHv4tWokVjcuTU,29763
1118
+ merge/resources/crm/resources/accounts/client.py,sha256=AInmFT3CkY227FegZboImwXTCqyKPSbtldxSoQBBELw,30131
1117
1119
  merge/resources/crm/resources/accounts/raw_client.py,sha256=_HxhV76aITtcXSdzEmYrEC87UT3vwZugF0xmTiPjqOg,38029
1118
1120
  merge/resources/crm/resources/association_types/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1119
- merge/resources/crm/resources/association_types/client.py,sha256=7Zbe443E6Ni9_cG8pv5_3pePzS6gw3FjvMSooIbOoxc,21066
1121
+ merge/resources/crm/resources/association_types/client.py,sha256=K7lG7NGiV77YFYmL4opOEx7rR6u2DFSE3XDg-uHO7QE,21228
1120
1122
  merge/resources/crm/resources/association_types/raw_client.py,sha256=a2mvRSpAb1V5JmEIXWzF3HEthN5v5lrqSVKuVqlhE2I,23547
1121
1123
  merge/resources/crm/resources/associations/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1122
- merge/resources/crm/resources/associations/client.py,sha256=Mj1ok7n_n1WEDv3yM4QdJzgV3eRGARhF15E5cx65-uQ,14429
1124
+ merge/resources/crm/resources/associations/client.py,sha256=6fZQgLWyTslNruVj8EF4RVZW9QXRv7Am030hR7A9igY,14591
1123
1125
  merge/resources/crm/resources/associations/raw_client.py,sha256=Xj_FpQ1Ut6rfJO5sDNi12yzhBOMYQQQ80jDOHKYG-Sc,16008
1124
- merge/resources/crm/resources/async_passthrough/__init__.py,sha256=1MpPldWxuhYBQ4thZ3E-Ykjn3NxDsYfdArx3XkPQtdI,185
1126
+ merge/resources/crm/resources/async_passthrough/__init__.py,sha256=fKVWk4jeqEvhNZuk0EtXPEFl5uB136ROeo8C6xczZI8,1053
1125
1127
  merge/resources/crm/resources/async_passthrough/client.py,sha256=oMxHAGi_51VevQFjwztWBnzwpKvHesZIqSkVkb9JQaA,5952
1126
1128
  merge/resources/crm/resources/async_passthrough/raw_client.py,sha256=3TIPPbYmEDnUqOpk9qTgyAwDmksbYFDyjPh9gSXocRw,7347
1127
- merge/resources/crm/resources/async_passthrough/types/__init__.py,sha256=0LUj53dTeTqfs50XizOk2ro3RcqGYXn71qHGyZs5Rdg,215
1129
+ merge/resources/crm/resources/async_passthrough/types/__init__.py,sha256=xZoQJ90iQWokoy6yfd_9sggRIkFEWCIPhmpoahoo_t0,1113
1128
1130
  merge/resources/crm/resources/async_passthrough/types/async_passthrough_retrieve_response.py,sha256=uBMjgizc2Qhm2JA0rRTer6NiRT3sq_v-EyTrzkiQC0g,203
1129
1131
  merge/resources/crm/resources/audit_trail/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1130
- merge/resources/crm/resources/audit_trail/client.py,sha256=9U1NP3jdrA1YqhtOZJMZuFFuBAi6X2IOntfU8eXrTcA,8346
1132
+ merge/resources/crm/resources/audit_trail/client.py,sha256=J3_6z80vBqR0C5L2OGetFRR5tv5nj_dgF7AQ4QCIbrU,8530
1131
1133
  merge/resources/crm/resources/audit_trail/raw_client.py,sha256=cnqykgvXoIxtayDCFPcMMIaznN3tEeSqTBYMk-tswE8,9088
1132
1134
  merge/resources/crm/resources/available_actions/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1133
1135
  merge/resources/crm/resources/available_actions/client.py,sha256=aX4PwUhOJX3UDXt6uOcmUIafkTX5Fz6LXGKrz1XuhF4,2895
1134
1136
  merge/resources/crm/resources/available_actions/raw_client.py,sha256=lJ0EydFe5eAVZP0lKPc4mvVqck4OHtsNb5vXO3N4-Ew,3437
1135
- merge/resources/crm/resources/contacts/__init__.py,sha256=-2sXN9uRSOxRpvtG54uCrMIB_n7lHdDy0z5pgw1_Nc8,235
1136
- merge/resources/crm/resources/contacts/client.py,sha256=Fuk8r_fp3Yuqb1GW79Y6J9x1MYLTpzDcWZFzg72lf_g,33613
1137
+ merge/resources/crm/resources/contacts/__init__.py,sha256=i5E2SNGTIeb7M1kJr9eMRLGoTrr5Wdyb19g3kTbeB-k,1150
1138
+ merge/resources/crm/resources/contacts/client.py,sha256=gjOMBGWIY92dM7bsJABX-XispSkv0oKp-w4nyu2zkH8,33981
1137
1139
  merge/resources/crm/resources/contacts/raw_client.py,sha256=cLZCbCYpjZVuG4RoxS7ogF2sTWTC48it0WdDSEaJuBc,42188
1138
- merge/resources/crm/resources/contacts/types/__init__.py,sha256=EPkxRBuO5CXib_I81aqE3R5M34xishFcL_mM1oqOkic,303
1140
+ merge/resources/crm/resources/contacts/types/__init__.py,sha256=0sbHxB2FUNFr5gxal-k4e8qFPwgX8Cpru7I9MLe1WUQ,1272
1139
1141
  merge/resources/crm/resources/contacts/types/contacts_list_request_expand.py,sha256=3jpmdW9B7lQSmgVL9lK9jBKKsWEMJ5CCWzhj4LMzV3I,715
1140
1142
  merge/resources/crm/resources/contacts/types/contacts_retrieve_request_expand.py,sha256=VpBRp_fbcwD7WwMm0PaRjndExE7Mrryjs9vMkT4J0ak,731
1141
1143
  merge/resources/crm/resources/custom_object_classes/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1142
- merge/resources/crm/resources/custom_object_classes/client.py,sha256=4J77rBYmHUL2Fl1TTRwtcQ9Erm0lnKsl1I7fv61OUTs,12383
1144
+ merge/resources/crm/resources/custom_object_classes/client.py,sha256=Iscv2GR_5agmvFCmvQRQ_GzFWRKBJ6pL7VKaQ2JQxdo,12567
1143
1145
  merge/resources/crm/resources/custom_object_classes/raw_client.py,sha256=ymwlRMI42OSA6jxKcMkYYFfNXitX3Fw1KQ4LusqgWfc,14802
1144
1146
  merge/resources/crm/resources/custom_objects/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1145
- merge/resources/crm/resources/custom_objects/client.py,sha256=OSN5v489_RGb6GpMKMhvzdhDOKx0uAUf74VBbP15nco,26122
1147
+ merge/resources/crm/resources/custom_objects/client.py,sha256=s8bBrgXPCCNRgTRsGxalXqB4wjo6LuMSODKBFm3orsk,26468
1146
1148
  merge/resources/crm/resources/custom_objects/raw_client.py,sha256=C-sOULjTjcsNnKBUp83QCy3iEikgoAvNFYnB-q8T_SA,30844
1147
1149
  merge/resources/crm/resources/delete_account/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1148
1150
  merge/resources/crm/resources/delete_account/client.py,sha256=t7_exzl6ouIWqV69TkhUPMhEYSLHe9g64YV10sjqmuo,2665
1149
1151
  merge/resources/crm/resources/delete_account/raw_client.py,sha256=Y7KUkoPjguN2MSfE492uI4zoJZ7EyVoTo70-2-_p_k0,2635
1150
1152
  merge/resources/crm/resources/engagement_types/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1151
- merge/resources/crm/resources/engagement_types/client.py,sha256=xxvIwpRJZzFY4_zIRIkGPQESwZH8sdOvZ36PNpPDOTs,18596
1153
+ merge/resources/crm/resources/engagement_types/client.py,sha256=gvwLJe_sSFODSbK2hmqkGJ_loG8OguULkVUa3ZcvT5E,18964
1152
1154
  merge/resources/crm/resources/engagement_types/raw_client.py,sha256=wtbMEX5oZIBQqaQFXtfWfOCLWeCrID9OJjeZzaI6iws,22238
1153
- merge/resources/crm/resources/engagements/__init__.py,sha256=f4wnf7KWLkofp6LtPXG4q_aLPyN0Wxz2qUEg5G6dE_U,247
1154
- merge/resources/crm/resources/engagements/client.py,sha256=9-Oi50IlCeMwJ8Jxpttqeklp1-9k2w72Ni5XJ3srqjY,30426
1155
+ 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
1155
1157
  merge/resources/crm/resources/engagements/raw_client.py,sha256=snyfoYyqgdkvym_atp_-CflTPZh81oaAQMe47WwYoQU,38906
1156
- merge/resources/crm/resources/engagements/types/__init__.py,sha256=1l1BjZWwPAKZwFUmlUQQsDGnhFn6pp3CNtFfNBlcYkc,321
1158
+ merge/resources/crm/resources/engagements/types/__init__.py,sha256=35Ow6ve2QGig9op5rEGnWhSgWjpVYMpXAxY1fENMlBg,1302
1157
1159
  merge/resources/crm/resources/engagements/types/engagements_list_request_expand.py,sha256=VrYBbS0i7FbnpXs6WrsLYgGNACzlCS2xcBAByWqKz28,3563
1158
1160
  merge/resources/crm/resources/engagements/types/engagements_retrieve_request_expand.py,sha256=DCOjQ864L2xCCmTDnJihmvzumIQRYIPQkC8yjXpU__Q,3627
1159
1161
  merge/resources/crm/resources/field_mapping/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
@@ -1165,37 +1167,37 @@ merge/resources/crm/resources/force_resync/raw_client.py,sha256=UCjARSWW7vBheWqt
1165
1167
  merge/resources/crm/resources/generate_key/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1166
1168
  merge/resources/crm/resources/generate_key/client.py,sha256=wHd3njlOs4N8KWU25mQZJ_IP1EQ9waWqZSBWJRK7d9M,3070
1167
1169
  merge/resources/crm/resources/generate_key/raw_client.py,sha256=ZA1IybLsmI4QYLcsE_kJu-YsVsH8HtH8kySWCz6Jv2I,3850
1168
- merge/resources/crm/resources/issues/__init__.py,sha256=8N-ynHIskTDmO3zwQbhyEHy7OTb63CJ_NdZRdLDBOyk,167
1169
- merge/resources/crm/resources/issues/client.py,sha256=YQ1atXS6-b8nex79zhQuUyCvTjSZgbfJYo8-fxHztTo,10903
1170
+ merge/resources/crm/resources/issues/__init__.py,sha256=fKOCxeYsbS41Y58p81luMrp7eaz6BLop2enXQ3HTvtc,1026
1171
+ merge/resources/crm/resources/issues/client.py,sha256=1pNy6N5f9USf0es8igqDomdFDWdD_i54X9hh7RD13Ys,11087
1170
1172
  merge/resources/crm/resources/issues/raw_client.py,sha256=vW7S6ozgCZbh2QfgNOzppoynyPzB6HOMqsNv4sk9QBI,13686
1171
- merge/resources/crm/resources/issues/types/__init__.py,sha256=jjxa8xGa5vTp5-uzIuy8dWJLKrwzX6DnMKPEEkgN4eo,188
1173
+ merge/resources/crm/resources/issues/types/__init__.py,sha256=c7N5BxoJGun2-0qD15I96eDPA36xKVGjt08VJoifSNo,1068
1172
1174
  merge/resources/crm/resources/issues/types/issues_list_request_status.py,sha256=cBbfu1Q5A0ZPOzB7nM_VHRKEJHnxk8lqN-cGmRX6_x4,508
1173
- merge/resources/crm/resources/leads/__init__.py,sha256=oy51fXd9SpRVvxwykYYeqzlt59aqsN63yPuUCTlpUOM,223
1174
- merge/resources/crm/resources/leads/client.py,sha256=lJAS2QfjxlSVyq6blWYFRCnkV6G1Fp1gyz0HrbtC9YU,26537
1175
+ merge/resources/crm/resources/leads/__init__.py,sha256=RTn8NkpbqRPTa9m4ngIfd-4gV6tuNNuDWprxC_sgHLs,1121
1176
+ merge/resources/crm/resources/leads/client.py,sha256=_NQMRFQSt1aG8OZAzElWr3mhkErGvC3ftUlDfb6T8CA,26905
1175
1177
  merge/resources/crm/resources/leads/raw_client.py,sha256=Szduz2OQIG0k3jmTzYTFi_iWnvO4RDFITdIzYge1HHo,32603
1176
- merge/resources/crm/resources/leads/types/__init__.py,sha256=mERzaJmz-BGiAjeqVJCdk_fRVZXJSFOMdiG8nITbcyw,285
1178
+ merge/resources/crm/resources/leads/types/__init__.py,sha256=qgH-pdXm_HrqhrFVtzW8l2XEpUrgpUFAnxE2ZzLsEDA,1242
1177
1179
  merge/resources/crm/resources/leads/types/leads_list_request_expand.py,sha256=S9Bq1uyyKWNK7L_nYXpZv-k8pJKwLYS1uGkPmP5twxI,1851
1178
1180
  merge/resources/crm/resources/leads/types/leads_retrieve_request_expand.py,sha256=M7kM8xBygZskQLrWww81yd6Db_0xq8ZD-eBysbCDk3s,1883
1179
- merge/resources/crm/resources/link_token/__init__.py,sha256=SHuz7ETMvuBzMIPBkqssDkfS9iJSZzYgw7pG6AM6bwk,179
1181
+ merge/resources/crm/resources/link_token/__init__.py,sha256=rFqQQV74iUqiyFV38kXLmMy_6QOH7ifcfn9qSZHnCCI,1044
1180
1182
  merge/resources/crm/resources/link_token/client.py,sha256=jPS82CtvuN9lIt__wBm1WW69xTXTHsYYvSI3o-oMST8,12720
1181
1183
  merge/resources/crm/resources/link_token/raw_client.py,sha256=tkU9dI7DH2O2-kty3bqZQoQeuANQIEiYLgIy564WAHc,13122
1182
- merge/resources/crm/resources/link_token/types/__init__.py,sha256=_DhmnLsRiAcpljK-OPGnDEHf9-FqnWXLVWUL4pOe8-I,207
1184
+ merge/resources/crm/resources/link_token/types/__init__.py,sha256=5u4pc35s4TmNZ4O2Le56xHN3UZGmvlCdr-C3BfxIEOg,1100
1183
1185
  merge/resources/crm/resources/link_token/types/end_user_details_request_language.py,sha256=2BMH_lFqvpT1C4ljoUh5YUm2dgiuLYil6s3_pKcn540,194
1184
- merge/resources/crm/resources/linked_accounts/__init__.py,sha256=jDuRvmYXqKpaHo-Ya2LUjqfqk_rXOUOW7dSpRi-dvqM,187
1185
- merge/resources/crm/resources/linked_accounts/client.py,sha256=XitZfc6V52JCze5agHMZoUBZK5vDHw0TcAy8vji97r0,9766
1186
+ merge/resources/crm/resources/linked_accounts/__init__.py,sha256=qlT602tt9halCaj1oeXa66bVB_5EImiYWgBYpAFP3dY,1056
1187
+ merge/resources/crm/resources/linked_accounts/client.py,sha256=BLpcOQZAVp6Bqdg77uaLMahCNT1G6OocaHQQWhDi2Hw,9950
1186
1188
  merge/resources/crm/resources/linked_accounts/raw_client.py,sha256=UP7yc0HUXxQtQQJNy9gOu1fA12_AWaIEv7FD3u90Sw0,10618
1187
- merge/resources/crm/resources/linked_accounts/types/__init__.py,sha256=FjSJvzQG9s-6wuY4YUdmieuUNQvaQXZKDSC138TRMz0,219
1189
+ merge/resources/crm/resources/linked_accounts/types/__init__.py,sha256=xWSbOu74X9JxtUN921_jbVtBDygRoEcDyGXySS5soJc,1126
1188
1190
  merge/resources/crm/resources/linked_accounts/types/linked_accounts_list_request_category.py,sha256=_EGocl5xFPQUgGIidOl4wEewCLbzqWyiXV2PIev7l7M,1354
1189
- merge/resources/crm/resources/notes/__init__.py,sha256=gX5if8grtKNJjmHi5Fw5WsDkvVYt7TBtvjC3CPoBS9Q,223
1190
- merge/resources/crm/resources/notes/client.py,sha256=aB9s43x54DXkET1pzgfhy5Xm2XjWKFjgGCFmxAwXV-4,25705
1191
+ merge/resources/crm/resources/notes/__init__.py,sha256=OMnOxRpqIKdyqpejSgAyM2xNfmrzAoYoTFEEx2rt1qk,1121
1192
+ merge/resources/crm/resources/notes/client.py,sha256=rCkIMHXu-K3knDstApZsEOl01CF7WqZCCXhch96M3Tg,26073
1191
1193
  merge/resources/crm/resources/notes/raw_client.py,sha256=o_TbZSINAdhx2Vb3pUgPbRDB14yUroCQOpAtMZJRb0A,31757
1192
- merge/resources/crm/resources/notes/types/__init__.py,sha256=nj0GlmtO70iIc5n73Jfrzf5et4AQULx4Zf0Xb25aXQY,285
1194
+ merge/resources/crm/resources/notes/types/__init__.py,sha256=SvlDe3vERo48YDRIskcUiPG7In_sTo3ugxFAG7OChas,1242
1193
1195
  merge/resources/crm/resources/notes/types/notes_list_request_expand.py,sha256=g6nuqZi67Q3KC-l59T1FGN2OgWc9miVdLkBslv_fLKY,3267
1194
1196
  merge/resources/crm/resources/notes/types/notes_retrieve_request_expand.py,sha256=kSpZeJY7tXGptI38sn6cPmTuCkcAyC2ssSQXEtnikvY,3331
1195
- merge/resources/crm/resources/opportunities/__init__.py,sha256=QW1NlRBYyJPG_Er_rHcyodUu0BIDLYkCtOZJymBbTdw,321
1196
- merge/resources/crm/resources/opportunities/client.py,sha256=ELYGuNO_6tVKNQ4e7-l3MyiVrrpE9pLJFm75e_FXovk,34832
1197
+ merge/resources/crm/resources/opportunities/__init__.py,sha256=oaNh368xIK44GCOBiYKsYvvp1SGcnYg7srqEMJKVFgY,1327
1198
+ merge/resources/crm/resources/opportunities/client.py,sha256=QjOScopBc5FeCIL9etmEgyDdaqOm-XYkSpx0g1fsHjg,35200
1197
1199
  merge/resources/crm/resources/opportunities/raw_client.py,sha256=DqijgwFgH9hq7W-LeHFkdtvm1skDpotxYZjlvrXuT5k,43360
1198
- merge/resources/crm/resources/opportunities/types/__init__.py,sha256=TT7TjixR-cnGHPRRIF3czuKdzfpxOXb4eAyMC0Uitqg,445
1200
+ merge/resources/crm/resources/opportunities/types/__init__.py,sha256=KvFUWxlhtuJ2WdLa44S0P4-zTltrt24Qwxp98h2U7Uo,1514
1199
1201
  merge/resources/crm/resources/opportunities/types/opportunities_list_request_expand.py,sha256=3lyV0eut9bYjXHegQqIYxH2ea0qxXASh1LFoN2mApqQ,1475
1200
1202
  merge/resources/crm/resources/opportunities/types/opportunities_list_request_status.py,sha256=bhYxMgDI6DSwYKP9NhUY5qdMNfcZayGAru_yDIUQu5M,665
1201
1203
  merge/resources/crm/resources/opportunities/types/opportunities_retrieve_request_expand.py,sha256=3FVxfe10W_-8wv7IeIf9wuIblDBcDLGMnn60cpzfexs,1507
@@ -1209,24 +1211,24 @@ merge/resources/crm/resources/scopes/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-
1209
1211
  merge/resources/crm/resources/scopes/client.py,sha256=SUI7t1U3vU746rHsU1C_UDi7H3Q72W5LLaBHF_UDrMU,10770
1210
1212
  merge/resources/crm/resources/scopes/raw_client.py,sha256=jZJQBsPCfvhFT6EypfQjITPNskPxc66ej2jL7Fls_bk,10986
1211
1213
  merge/resources/crm/resources/stages/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1212
- merge/resources/crm/resources/stages/client.py,sha256=0Zs8LdkLsjslNN08qXHxRatZwZGGiSmsy1oV0et9AcI,18298
1214
+ merge/resources/crm/resources/stages/client.py,sha256=H49GVcSIp2zOx-uGdriUtSdURpd6rZUTZllhBTXn5kA,18666
1213
1215
  merge/resources/crm/resources/stages/raw_client.py,sha256=yUePjW64wrdhpu8TVPneDx8tH3IYdDl5WaW3bRXHMB8,21940
1214
1216
  merge/resources/crm/resources/sync_status/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1215
- merge/resources/crm/resources/sync_status/client.py,sha256=Lrbelpd_TjQVHI7O8ZI6Yd4zKFokV_XFH0OR9SMqvFM,4857
1217
+ merge/resources/crm/resources/sync_status/client.py,sha256=j_jb3tCCXisgp1_1MneBqVo56jBWVBXKb3hpTqZE52E,5041
1216
1218
  merge/resources/crm/resources/sync_status/raw_client.py,sha256=sV5IyrbjzFpHSZTPuTYEa9jz5YQQzveRZL7t_WFqAJI,5625
1217
- merge/resources/crm/resources/tasks/__init__.py,sha256=g0IkZEoFIvAiQRniB-Bm3Pfg0RL4VxUSz3hMeXU0D2Y,223
1218
- merge/resources/crm/resources/tasks/client.py,sha256=xmMq_n2juTpoiTz_RNcALThHlmlvhpIBIPs9p3rt9lw,28918
1219
+ merge/resources/crm/resources/tasks/__init__.py,sha256=-pjDR12GQWQ6SUxwJyL0m4Ir85vfDk7M_H4D8x0AJRc,1121
1220
+ merge/resources/crm/resources/tasks/client.py,sha256=bPqtw_-l8ftJOUViBQyZhVKPbJC3OmkoIJInAzP0pA8,29286
1219
1221
  merge/resources/crm/resources/tasks/raw_client.py,sha256=HPQrTx6RbR4S_1TsVWXDZi_GIBW_Y7fQQ1cVXixjvIA,37132
1220
- merge/resources/crm/resources/tasks/types/__init__.py,sha256=o6eKt7h_1nuPuflLZDZUpfUHJFLNk5fDbwCc9OIekcs,285
1222
+ merge/resources/crm/resources/tasks/types/__init__.py,sha256=b2nJIVVGxI4jz_6SvOY5ZkSU_BJxjyr8WRKAYI5sJug,1242
1221
1223
  merge/resources/crm/resources/tasks/types/tasks_list_request_expand.py,sha256=GILhwWPY4at7DZOd_i3JlLOpxmZJQl1APMQW98iHU3M,1531
1222
1224
  merge/resources/crm/resources/tasks/types/tasks_retrieve_request_expand.py,sha256=riNnk8Pq06DztZ8115GTbiBboLKTm6H1h3r0fVNHVDQ,1563
1223
1225
  merge/resources/crm/resources/users/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1224
- merge/resources/crm/resources/users/client.py,sha256=4TvbOo22js9-X-Yep-KkYiGmk8Xt8hPaCYX9OqtUl-s,21589
1226
+ merge/resources/crm/resources/users/client.py,sha256=6vAs3TGgJdHJdluoc2vtU_hoxEpORdaydXk8w6eKklQ,21957
1225
1227
  merge/resources/crm/resources/users/raw_client.py,sha256=f71tBqeXjt8LIBZy-dDv0es3kV4SMmc8OjyRsyYx2qE,25540
1226
1228
  merge/resources/crm/resources/webhook_receivers/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1227
1229
  merge/resources/crm/resources/webhook_receivers/client.py,sha256=nOYMjrWYuh_0t6g3YMbd_Z8jQduLwiZxT9s_7nsY0Pw,5210
1228
1230
  merge/resources/crm/resources/webhook_receivers/raw_client.py,sha256=8gwIW6-PP1OznLQ7CljYqfwJZGtfj-YnFJWY_wW7DtU,7131
1229
- merge/resources/crm/types/__init__.py,sha256=z2tGrL-ynwW9xsU-i__78JsxzZyPWdZNbgZ9aZwmg44,18720
1231
+ merge/resources/crm/types/__init__.py,sha256=KFN_K-c_fYfFfGhFC85JEvIR6_picFnJ5aynzY4X660,32484
1230
1232
  merge/resources/crm/types/account.py,sha256=Vj-YXi91VdrdeOVKT8LqBWUholVFHXGvTmXC_-8nIxY,3334
1231
1233
  merge/resources/crm/types/account_details.py,sha256=6FjFKxsxftOM5DJIiueXWPtJZkuFMIVSgcB_2UT7t8w,1617
1232
1234
  merge/resources/crm/types/account_details_and_actions.py,sha256=YOQ5tra0HdxLvVJjrveq1eBtwYRbH7df24iXQR6cgro,2018
@@ -1408,7 +1410,7 @@ merge/resources/crm/types/remote_field.py,sha256=VYODTdHsSUSj1aaWzcWKdDzSy6076US
1408
1410
  merge/resources/crm/types/remote_field_api.py,sha256=o7WbCUNUnmPtn6F09P3lKsXSHpEjAN8ZEfu8xsZL4Ko,1085
1409
1411
  merge/resources/crm/types/remote_field_api_coverage.py,sha256=4bdB5WY4RcmZWXAIOeR_vTqnwIJsGr5eeSJDJFKxgq4,130
1410
1412
  merge/resources/crm/types/remote_field_api_response.py,sha256=IGLLpajsqOH3YFa2yFoLXoaLy516oACxshh46c5gLoc,1543
1411
- merge/resources/crm/types/remote_field_class.py,sha256=KSA0Es38nqo6ocJM0yK_inobC_ninRORbIj39qfWaSk,1357
1413
+ merge/resources/crm/types/remote_field_class.py,sha256=7014ZuKocUqmuAyftVY76IDVbspzspU6p4CcQLVSR6w,1413
1412
1414
  merge/resources/crm/types/remote_field_class_field_choices_item.py,sha256=D5b6HkXqWvnb0eoy4qo8fPgGDYC_bFsGyDUt0C8IglQ,677
1413
1415
  merge/resources/crm/types/remote_field_class_field_format.py,sha256=SiD46GD6y9f5y1xOJ51_r7BZJBfsTjT4ChetGIzikEw,193
1414
1416
  merge/resources/crm/types/remote_field_class_field_type.py,sha256=yoj_DEE3MenAnIe9ASAD9rb75dw6IOdgRif2rrMyVvw,185
@@ -1447,23 +1449,23 @@ merge/resources/crm/types/user.py,sha256=Xhu67x4JWYeifdFHpHWwLX479kM4STCKdizt8Oz
1447
1449
  merge/resources/crm/types/validation_problem_source.py,sha256=0ayE7x_uM8R0pzVRz9ZZEc6WS1RUZO3VW3zXjh61RVs,576
1448
1450
  merge/resources/crm/types/warning_validation_problem.py,sha256=RXDtt3t3FwIeGGXkIr_OHOAybDZg44L_5hOqa2sLlJ0,736
1449
1451
  merge/resources/crm/types/webhook_receiver.py,sha256=g4KQnc-vZPJGlXK-OOFIn2WGyTLKoeaq9TPWQ46VwFY,623
1450
- merge/resources/filestorage/__init__.py,sha256=mXgXDWzB4EYts_M6ZgNA-JszTfzj2_C1_5UiPQpNgXE,7636
1451
- merge/resources/filestorage/client.py,sha256=ADJmiKGszeBjzD6WTWwhPpSUJZPl39Y_T3VvLLvKBdM,6824
1452
+ merge/resources/filestorage/__init__.py,sha256=ZVa6lpbCHPmJSMoRjs8cI-h63Bbg-B2j0aEnRck40M8,14530
1453
+ merge/resources/filestorage/client.py,sha256=ghk8yO6ifmPKZzYeSby3nDfie552AMcl3KgEQ9vdNNY,19539
1452
1454
  merge/resources/filestorage/raw_client.py,sha256=PVXeg6hYhZZhtj_lhnch8LsrgH9xYIYyABSbBSWJSWA,420
1453
- merge/resources/filestorage/resources/__init__.py,sha256=sv1IyDe0YePZ-2XxyBMdt30sfJzs54HptXbfbcs6YLI,1644
1455
+ merge/resources/filestorage/resources/__init__.py,sha256=9j1EAueR9hUZ5ew6DTVbPq28D1gpsmH_mjFXjWltk_E,3572
1454
1456
  merge/resources/filestorage/resources/account_details/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1455
1457
  merge/resources/filestorage/resources/account_details/client.py,sha256=RdaNbxon2GHjpNReOJtITaoJEYq3SGOT12UbTBe958U,2817
1456
1458
  merge/resources/filestorage/resources/account_details/raw_client.py,sha256=iaLOYj2_n7y6btxnP4lKMRITyrddVf_qpoP9wowIFmo,3367
1457
1459
  merge/resources/filestorage/resources/account_token/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1458
1460
  merge/resources/filestorage/resources/account_token/client.py,sha256=Z8fnYeLsbZjYqoI6q97Qs1qEdgDlPyI1q8FA105oCfc,3107
1459
1461
  merge/resources/filestorage/resources/account_token/raw_client.py,sha256=TYT01ZLFOcgcASmTv019HOg-dn_9zUWzxkECATWv70s,3653
1460
- merge/resources/filestorage/resources/async_passthrough/__init__.py,sha256=1MpPldWxuhYBQ4thZ3E-Ykjn3NxDsYfdArx3XkPQtdI,185
1462
+ merge/resources/filestorage/resources/async_passthrough/__init__.py,sha256=fKVWk4jeqEvhNZuk0EtXPEFl5uB136ROeo8C6xczZI8,1053
1461
1463
  merge/resources/filestorage/resources/async_passthrough/client.py,sha256=_zwzxb1o1qt-0nYDEbOdpkNQ3UKn8to4m_yPqiwDEWY,6000
1462
1464
  merge/resources/filestorage/resources/async_passthrough/raw_client.py,sha256=reKpCBgWZLdoH2smqpMWPs3BGsEzzDlMmYTKaarsRwY,7379
1463
- merge/resources/filestorage/resources/async_passthrough/types/__init__.py,sha256=0LUj53dTeTqfs50XizOk2ro3RcqGYXn71qHGyZs5Rdg,215
1465
+ merge/resources/filestorage/resources/async_passthrough/types/__init__.py,sha256=xZoQJ90iQWokoy6yfd_9sggRIkFEWCIPhmpoahoo_t0,1113
1464
1466
  merge/resources/filestorage/resources/async_passthrough/types/async_passthrough_retrieve_response.py,sha256=uBMjgizc2Qhm2JA0rRTer6NiRT3sq_v-EyTrzkiQC0g,203
1465
1467
  merge/resources/filestorage/resources/audit_trail/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1466
- merge/resources/filestorage/resources/audit_trail/client.py,sha256=Qh7PE3izfgsfJqz-VQK-XktIPxuBIMzy0pMe7OUCV6E,8362
1468
+ merge/resources/filestorage/resources/audit_trail/client.py,sha256=TJG4hCVZ8HeZGx6C3LN84BO6m-s79VBZNs2nlZEUJ5Q,8546
1467
1469
  merge/resources/filestorage/resources/audit_trail/raw_client.py,sha256=32iXOgdco7yolbgRNPqiqxV0dZow5opwgU7V7V1qQlk,9104
1468
1470
  merge/resources/filestorage/resources/available_actions/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1469
1471
  merge/resources/filestorage/resources/available_actions/client.py,sha256=Y3ifxioTIotB3cL81KT1YthL1YlgLBoCcBa9fvbXEjo,2911
@@ -1472,23 +1474,23 @@ merge/resources/filestorage/resources/delete_account/__init__.py,sha256=_VhToAyI
1472
1474
  merge/resources/filestorage/resources/delete_account/client.py,sha256=SVMyRWOXlssK7hT1jT_pbTMgJBhSSxi0tNrwUeeZJnI,2681
1473
1475
  merge/resources/filestorage/resources/delete_account/raw_client.py,sha256=D5tdLcH0sH4Rp4SGbKp5CJoAF6aOLc8F2WbuLxm6MYA,2651
1474
1476
  merge/resources/filestorage/resources/drives/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1475
- merge/resources/filestorage/resources/drives/client.py,sha256=NcKgzvAE0cVPl8NaZChcr1A9N8fbtloF5z31HMHYSyU,11289
1477
+ merge/resources/filestorage/resources/drives/client.py,sha256=sH9nCYjYTrV5_27TxeJ3I071ISI0pq1TA5_z6xca-_o,11473
1476
1478
  merge/resources/filestorage/resources/drives/raw_client.py,sha256=qPgXArXmY5Naz1OH_8tjdAcuP90flFsS1W0M_zUIrSs,13702
1477
1479
  merge/resources/filestorage/resources/field_mapping/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1478
1480
  merge/resources/filestorage/resources/field_mapping/client.py,sha256=2xQD4zkJTSNBbvM7WRWHnPGvgUoC9ngToWkVMwP4MwU,23562
1479
1481
  merge/resources/filestorage/resources/field_mapping/raw_client.py,sha256=WRc93LhwZTeZJcF2iYtwjDWXax4UjJuqnMtr1eQGRFE,29311
1480
- merge/resources/filestorage/resources/files/__init__.py,sha256=6THf5EGAJ7tVbx_S9_cuD0NXnBQVGx6i9u2CCKxPTdQ,405
1481
- merge/resources/filestorage/resources/files/client.py,sha256=6UJ6btDxwtOThyu3fQSLAlUFs6tpAA91vuuDa64hFlo,32774
1482
- merge/resources/filestorage/resources/files/raw_client.py,sha256=Ns85FhyjxYF9CNaxH-MlDz23XswI7-PY97MpuBcj0Ic,42299
1483
- merge/resources/filestorage/resources/files/types/__init__.py,sha256=wDc-L06UTT_rcfmBe5vwpQeofdLQVnPhwVL25_Ep4Mg,548
1482
+ merge/resources/filestorage/resources/files/__init__.py,sha256=5JtMU8nEKhPVyeFyX4s0hwnL6CA3lvtJOgfCEwjTcOE,1435
1483
+ merge/resources/filestorage/resources/files/client.py,sha256=cqi1dtmEHukt7C-w9GANXPWGyFHKD_L13kDuvpb-E0Q,34852
1484
+ merge/resources/filestorage/resources/files/raw_client.py,sha256=jpOflZbPbh7NfwIlj5fMRy1qTD7wFWKS3h_M7WP9-pU,44445
1485
+ merge/resources/filestorage/resources/files/types/__init__.py,sha256=vuA3gwr0oVMZYRZPq6bwW1xqb9fLtEbAsJ2J0AbgPQE,1680
1484
1486
  merge/resources/filestorage/resources/files/types/files_download_request_meta_list_request_order_by.py,sha256=EbgeEimUUUJtFbjpzIa2j12TfA6Wgs6q8gYO-bCo_pw,1175
1485
1487
  merge/resources/filestorage/resources/files/types/files_list_request_expand.py,sha256=Osq6VmKt1P0g6NGq5P7u6m0Al8u9pXHoKFCCTMaDYV0,1511
1486
1488
  merge/resources/filestorage/resources/files/types/files_list_request_order_by.py,sha256=VmgIr2XJZTSJ9fZnlGY4t8XjeOzoBElzcg2eRGoS8Xo,1080
1487
1489
  merge/resources/filestorage/resources/files/types/files_retrieve_request_expand.py,sha256=P0WRFiimt1N6F1f3iuVNXmYLMa3y6BS15ZKdXobYdIY,1543
1488
- merge/resources/filestorage/resources/folders/__init__.py,sha256=2eY5VQNpe9L1_mZrwdBoQnzupXdMDiaH8kvcUrNKask,231
1489
- merge/resources/filestorage/resources/folders/client.py,sha256=sVLbYjwu_L0RXZRivX9p4afCa3YGJMFSwCJtrRE9U8U,18310
1490
+ 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
1490
1492
  merge/resources/filestorage/resources/folders/raw_client.py,sha256=Ebuw6wTo1Fz1HPaGURW37o24f7_jo9FOUH9TNGrG5_E,23133
1491
- merge/resources/filestorage/resources/folders/types/__init__.py,sha256=pXdPNYxDthupCSrM9C9O1fsrV3CBr14nD9Kw7pykLsc,297
1493
+ merge/resources/filestorage/resources/folders/types/__init__.py,sha256=1506XMG2XHRVmSUy-n164c3gQeWjjleuU21rqoV4Hrs,1262
1492
1494
  merge/resources/filestorage/resources/folders/types/folders_list_request_expand.py,sha256=CYoAAnftwM2amoqNX7MLskkQMR0LdR5wIyFI0LiZDxY,1667
1493
1495
  merge/resources/filestorage/resources/folders/types/folders_retrieve_request_expand.py,sha256=J7ndrUkCS95QL7DXd2HPWzuQ2VgQWqEzwem5Pn4eABE,1699
1494
1496
  merge/resources/filestorage/resources/force_resync/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
@@ -1498,20 +1500,20 @@ merge/resources/filestorage/resources/generate_key/__init__.py,sha256=_VhToAyIt_
1498
1500
  merge/resources/filestorage/resources/generate_key/client.py,sha256=EIv4VUdRiyoXch9YH53jSMqhxol4jGS4ZDsxQ8GbABk,3086
1499
1501
  merge/resources/filestorage/resources/generate_key/raw_client.py,sha256=IgCgZ13pxmNZIYM_8pIQyGkosp8-z4ZSmqhk1ne4Uog,3866
1500
1502
  merge/resources/filestorage/resources/groups/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1501
- merge/resources/filestorage/resources/groups/client.py,sha256=SUskM02imaRU32eQZIS4Gti6HFUYzvxkVYOGy5rRWc4,12077
1503
+ merge/resources/filestorage/resources/groups/client.py,sha256=eNCnYKP8IGGSQdj61BKvSJP6QPBdYDbrZCf_WNEb1L8,12261
1502
1504
  merge/resources/filestorage/resources/groups/raw_client.py,sha256=IZdTiYKFLNMhaIEnWvDWkM5PN_pUv-1uAODo0zl_56E,14504
1503
- merge/resources/filestorage/resources/issues/__init__.py,sha256=8N-ynHIskTDmO3zwQbhyEHy7OTb63CJ_NdZRdLDBOyk,167
1504
- merge/resources/filestorage/resources/issues/client.py,sha256=Dh0zUkhx8DHUBWNW8wKy8-WTxN03VhquWb4T1NHmEAw,10935
1505
+ merge/resources/filestorage/resources/issues/__init__.py,sha256=fKOCxeYsbS41Y58p81luMrp7eaz6BLop2enXQ3HTvtc,1026
1506
+ merge/resources/filestorage/resources/issues/client.py,sha256=sXF7InCjG7veFHpJeP05pH8dT0xXSctKWzK8q6vSp_E,11119
1505
1507
  merge/resources/filestorage/resources/issues/raw_client.py,sha256=zrC8mYWdLXFs-m6P9zX7_zVEx4F1Su2OFmYL8SaSFEY,13718
1506
- merge/resources/filestorage/resources/issues/types/__init__.py,sha256=jjxa8xGa5vTp5-uzIuy8dWJLKrwzX6DnMKPEEkgN4eo,188
1508
+ merge/resources/filestorage/resources/issues/types/__init__.py,sha256=c7N5BxoJGun2-0qD15I96eDPA36xKVGjt08VJoifSNo,1068
1507
1509
  merge/resources/filestorage/resources/issues/types/issues_list_request_status.py,sha256=cBbfu1Q5A0ZPOzB7nM_VHRKEJHnxk8lqN-cGmRX6_x4,508
1508
1510
  merge/resources/filestorage/resources/link_token/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1509
1511
  merge/resources/filestorage/resources/link_token/client.py,sha256=xo31dYHCPrJgvauKflQhWCAYGnMP5tCqS4nQqXSoWF0,12649
1510
1512
  merge/resources/filestorage/resources/link_token/raw_client.py,sha256=bwjAQr-86bHEe_i9htZkr2TlS1rtIwIhz1H5-qCcUg0,13035
1511
- merge/resources/filestorage/resources/linked_accounts/__init__.py,sha256=jDuRvmYXqKpaHo-Ya2LUjqfqk_rXOUOW7dSpRi-dvqM,187
1512
- merge/resources/filestorage/resources/linked_accounts/client.py,sha256=rmr1awMHTAvgBWsOMpp9UJBYL2F_8JbMGCuEIYdFHoA,9782
1513
+ 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
1513
1515
  merge/resources/filestorage/resources/linked_accounts/raw_client.py,sha256=1SC0Sko7IcZ68GNaBbnqqe1rTbQ8vI7kbxU2Uwg3jls,10634
1514
- merge/resources/filestorage/resources/linked_accounts/types/__init__.py,sha256=FjSJvzQG9s-6wuY4YUdmieuUNQvaQXZKDSC138TRMz0,219
1516
+ merge/resources/filestorage/resources/linked_accounts/types/__init__.py,sha256=xWSbOu74X9JxtUN921_jbVtBDygRoEcDyGXySS5soJc,1126
1515
1517
  merge/resources/filestorage/resources/linked_accounts/types/linked_accounts_list_request_category.py,sha256=_EGocl5xFPQUgGIidOl4wEewCLbzqWyiXV2PIev7l7M,1354
1516
1518
  merge/resources/filestorage/resources/passthrough/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1517
1519
  merge/resources/filestorage/resources/passthrough/client.py,sha256=g2SR6lWHsWhIJwODAb8oVqIGHggRJwcWbS21rwN32J0,3667
@@ -1523,15 +1525,15 @@ merge/resources/filestorage/resources/scopes/__init__.py,sha256=_VhToAyIt_5axN6C
1523
1525
  merge/resources/filestorage/resources/scopes/client.py,sha256=qcvz2XasKRTQnmXS-giiNiAEiHYbwkpTL8u61HpYBGg,10834
1524
1526
  merge/resources/filestorage/resources/scopes/raw_client.py,sha256=7XyoTdUNd2fdNKvuGtc5WmZQMgZmWOMPOrlUDSFlB8U,11034
1525
1527
  merge/resources/filestorage/resources/sync_status/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1526
- merge/resources/filestorage/resources/sync_status/client.py,sha256=u_nMY3np_46DGph7QjMWwFO1ZpMhtiiSacCimLVZW70,4873
1528
+ merge/resources/filestorage/resources/sync_status/client.py,sha256=D5neb27zpqXTZHoiEy4X-7IcdlwfMR2fBCJ-PypmB58,5057
1527
1529
  merge/resources/filestorage/resources/sync_status/raw_client.py,sha256=xshrw3Bfkc6r5d6wZABaMVhHVGQVhuQ-czQklZ1d-YQ,5641
1528
1530
  merge/resources/filestorage/resources/users/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1529
- merge/resources/filestorage/resources/users/client.py,sha256=_ZzFkymZnU39QNZuy59KDFDvFl2twMZM1qsotWH3itw,11223
1531
+ merge/resources/filestorage/resources/users/client.py,sha256=NQvHVmc5t5Vbzqdwusaxvcdc69UpFOaDmMsAeXG73_A,11407
1530
1532
  merge/resources/filestorage/resources/users/raw_client.py,sha256=0ZTsI3BcasYNEjamfQihUxWeVYPFJ6ELfgp1585I82I,13636
1531
1533
  merge/resources/filestorage/resources/webhook_receivers/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1532
1534
  merge/resources/filestorage/resources/webhook_receivers/client.py,sha256=bECZFxfPLQxTPgiShgbwkj36p-ZD3uQDlgEnAeUASCM,5242
1533
1535
  merge/resources/filestorage/resources/webhook_receivers/raw_client.py,sha256=m8-R2L437nqfeMnKx_hEnKCygzUcZhLMK3wptKZQ4Dg,7163
1534
- merge/resources/filestorage/types/__init__.py,sha256=5Nw7P11k5CUCkLzCKf85UhcB2p7X6GR2CcFeLw7t2w0,9677
1536
+ merge/resources/filestorage/types/__init__.py,sha256=jQnrfIj50_11gOXgRERnMEsD0xn6vYwoi-96P0orPE8,17159
1535
1537
  merge/resources/filestorage/types/account_details.py,sha256=R-2NtN2t8819sbbZpXJ2QFhnedEHDGYL_Ppa1qc3d-E,1586
1536
1538
  merge/resources/filestorage/types/account_details_and_actions.py,sha256=kupTWsY26XB4SlEvIJZcURJ5oXXP52L_9i6AjW9fN3Y,2071
1537
1539
  merge/resources/filestorage/types/account_details_and_actions_integration.py,sha256=CVJIlOAauqdX0qD-njlO7yyJ8t-wiSHFMUQPqFSPyZ8,947
@@ -1647,55 +1649,55 @@ merge/resources/filestorage/types/user.py,sha256=_XHaj1gEOc6j7KYYssBhTqMPOpXoXVS
1647
1649
  merge/resources/filestorage/types/validation_problem_source.py,sha256=0ayE7x_uM8R0pzVRz9ZZEc6WS1RUZO3VW3zXjh61RVs,576
1648
1650
  merge/resources/filestorage/types/warning_validation_problem.py,sha256=RXDtt3t3FwIeGGXkIr_OHOAybDZg44L_5hOqa2sLlJ0,736
1649
1651
  merge/resources/filestorage/types/webhook_receiver.py,sha256=g4KQnc-vZPJGlXK-OOFIn2WGyTLKoeaq9TPWQ46VwFY,623
1650
- merge/resources/hris/__init__.py,sha256=Swv48IPdZxD-KkVmgO0YJFUIqrypto734dD7QVQiph4,15040
1651
- merge/resources/hris/client.py,sha256=EBNJsj08b7M3Ps4_uWpLJv3T5XFwQhqvWNSTnpvwvS8,9555
1652
+ merge/resources/hris/__init__.py,sha256=nYuI8b9JdC9faVq3g_-9jf0ah5tLI0cYEG-mQxgBXkg,27721
1653
+ merge/resources/hris/client.py,sha256=qxsCa_wDvGDYby5OQQlhB1uuJceDRQ9L24VW1O8ibTk,28878
1652
1654
  merge/resources/hris/raw_client.py,sha256=kHhDKYWwOVTqP9-59tv7SdcpgDaM6l5XJWXrSYfX5hs,406
1653
- merge/resources/hris/resources/__init__.py,sha256=r8wBiZzUWP7Z5ulkac6YUfGjCNeFY42LTjUT1YRZv3Q,5109
1655
+ merge/resources/hris/resources/__init__.py,sha256=LatDVy6plCfoTGaeHEj3u7q3lzZv8HWZ1Ba8YiOq17g,9528
1654
1656
  merge/resources/hris/resources/account_details/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1655
1657
  merge/resources/hris/resources/account_details/client.py,sha256=EjZZQ8TJGoczYfncb8h0e52qU5zThpyuTO1daIJTOYM,2803
1656
1658
  merge/resources/hris/resources/account_details/raw_client.py,sha256=rgtNujr3s6glMftRW9-3pjiA1ca__lwkBense38RSpo,3353
1657
1659
  merge/resources/hris/resources/account_token/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1658
1660
  merge/resources/hris/resources/account_token/client.py,sha256=MA2Nh8u54S2cgZnPq8citFqZy4mLVZz100swGaw2a0c,3093
1659
1661
  merge/resources/hris/resources/account_token/raw_client.py,sha256=VW6MqiwyLqCPtHXJR50FDIrZwL4bsOpdvbpVWVyi4ek,3639
1660
- merge/resources/hris/resources/async_passthrough/__init__.py,sha256=1MpPldWxuhYBQ4thZ3E-Ykjn3NxDsYfdArx3XkPQtdI,185
1662
+ merge/resources/hris/resources/async_passthrough/__init__.py,sha256=fKVWk4jeqEvhNZuk0EtXPEFl5uB136ROeo8C6xczZI8,1053
1661
1663
  merge/resources/hris/resources/async_passthrough/client.py,sha256=1pAZXXFvZNd8gwzCS07NVhCheNEoghFFFKyY-60I3hk,5958
1662
1664
  merge/resources/hris/resources/async_passthrough/raw_client.py,sha256=tbi5OIYZ_V6qj1s-e5rbT98NoAWHPYO8aK2Nuy5JLrE,7351
1663
- merge/resources/hris/resources/async_passthrough/types/__init__.py,sha256=0LUj53dTeTqfs50XizOk2ro3RcqGYXn71qHGyZs5Rdg,215
1665
+ merge/resources/hris/resources/async_passthrough/types/__init__.py,sha256=xZoQJ90iQWokoy6yfd_9sggRIkFEWCIPhmpoahoo_t0,1113
1664
1666
  merge/resources/hris/resources/async_passthrough/types/async_passthrough_retrieve_response.py,sha256=uBMjgizc2Qhm2JA0rRTer6NiRT3sq_v-EyTrzkiQC0g,203
1665
1667
  merge/resources/hris/resources/audit_trail/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1666
- merge/resources/hris/resources/audit_trail/client.py,sha256=eVC9IDvZaE29ucZif-CF3knI357VOFtMO42BiusbCf4,8348
1668
+ merge/resources/hris/resources/audit_trail/client.py,sha256=uqeKAuT9V2ZAvbmXbkvvDNfWNOG4wvZZdxfE7vP_f_Q,8532
1667
1669
  merge/resources/hris/resources/audit_trail/raw_client.py,sha256=awnCQFv1dJjNXguMre9IBtS1VkydILFYBHUaA0lkSm4,9090
1668
1670
  merge/resources/hris/resources/available_actions/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1669
1671
  merge/resources/hris/resources/available_actions/client.py,sha256=XXCvPuZsK2oLeDYME2iFJk3UC-TJl1QJsJxVqZDFZc0,2897
1670
1672
  merge/resources/hris/resources/available_actions/raw_client.py,sha256=UH9nOXSOCUu7XFVSiZVScU-fMwOIFmA_VGiBDW2IOEs,3439
1671
- merge/resources/hris/resources/bank_info/__init__.py,sha256=cl9rAAh18gI_rXOXcAxdV1SO4M2Gp-O8r9pCZ94lB1Q,239
1672
- merge/resources/hris/resources/bank_info/client.py,sha256=ZDApzPPgvbgj4ldDmuFSMmGW0xl5zaIeoKD7A4IOMKc,17171
1673
+ 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
1673
1675
  merge/resources/hris/resources/bank_info/raw_client.py,sha256=MTipRAKC7vx5HMigVAq7A290202SKY5DdhUBQ7LjDaI,19718
1674
- merge/resources/hris/resources/bank_info/types/__init__.py,sha256=a5A8TeGy6CBD8Ub7XzXoWqzJucSojub_UWzescwdMDE,313
1676
+ merge/resources/hris/resources/bank_info/types/__init__.py,sha256=JLIYknNHoRbq1wG8Q-M4P6y_CPDiUX3zUIG8HI5JtE4,1290
1675
1677
  merge/resources/hris/resources/bank_info/types/bank_info_list_request_account_type.py,sha256=fxSAKSl0KIXUSdd25UlyriE96XTYGEJjaulntNbuVzg,529
1676
1678
  merge/resources/hris/resources/bank_info/types/bank_info_list_request_order_by.py,sha256=aOl53Oa0GVRbvR5XgZMgw__pJoPRAdqs0HAXFc5GK1U,728
1677
1679
  merge/resources/hris/resources/benefits/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1678
- merge/resources/hris/resources/benefits/client.py,sha256=eH0ILnZlqoUG05mTeZGMg3jRDRsBArlR_5YpmSH5XKg,12499
1680
+ merge/resources/hris/resources/benefits/client.py,sha256=HBf2h1BX37-Fdn0x3hfM45-Kc4Bga_LOiD5D28f_KAQ,12683
1679
1681
  merge/resources/hris/resources/benefits/raw_client.py,sha256=DlKHBCqmjRW36_OEJ47P-aop1UZ041_YeliCd4z3Rg0,14940
1680
1682
  merge/resources/hris/resources/companies/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1681
- merge/resources/hris/resources/companies/client.py,sha256=z_9Wbz6AzZ9mhuVIDQbHlwBLT2QGH8lx2-Xq5POGsnU,10939
1683
+ merge/resources/hris/resources/companies/client.py,sha256=gOghFPpehD1RqbBoOs4K52zLBR2EDWbIyMutR2awt30,11123
1682
1684
  merge/resources/hris/resources/companies/raw_client.py,sha256=Wl4w5SLpDXh5DMaALaql-t4lw3fvFiB1skVjkxaG0-E,13330
1683
1685
  merge/resources/hris/resources/delete_account/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1684
1686
  merge/resources/hris/resources/delete_account/client.py,sha256=l0EKsOUWZQ9NyaFb7PqETeb9bnnFhZNfYxcuvQ8PE0A,2667
1685
1687
  merge/resources/hris/resources/delete_account/raw_client.py,sha256=QTvig4eJsnMJ_RdFDw4G1TvwUzUvh1VYxMAJi9RGj9I,2637
1686
1688
  merge/resources/hris/resources/dependents/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1687
- merge/resources/hris/resources/dependents/client.py,sha256=fpHSPwhLRTkW83cUVqMxRhgvL5TEw1OllUFPlLYuOxI,12121
1689
+ merge/resources/hris/resources/dependents/client.py,sha256=5w5cYKRaCLLLVUqK-02Q0srs-bmRPFsgw1050zd2WNE,12305
1688
1690
  merge/resources/hris/resources/dependents/raw_client.py,sha256=ww1xCMw2H2RzhymJxhHTwWl6-ie1y4jRDz3RyirhCmo,14548
1689
- merge/resources/hris/resources/employee_payroll_runs/__init__.py,sha256=tcSw_WFZYJW1fp0J8owLTrOekvh_Id3N44OaLtwUkYs,279
1690
- merge/resources/hris/resources/employee_payroll_runs/client.py,sha256=KRMCZRKqyuq9Okfa1KOSkpyh1cqt5UXT6tkhISJ65EQ,15565
1691
+ 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
1691
1693
  merge/resources/hris/resources/employee_payroll_runs/raw_client.py,sha256=45jAB-Hq4PMnD4ixo0WYJkfMAeZn2VL24T2XKe5ntFE,18544
1692
- merge/resources/hris/resources/employee_payroll_runs/types/__init__.py,sha256=Ia4qjGW85A-Z4lTj2MuoAQGDrREoVxY0qijCJmazHXk,373
1694
+ merge/resources/hris/resources/employee_payroll_runs/types/__init__.py,sha256=ZeEr7D3nDe4rIfVID9gxIB587AmDDpOjGsemjGbNqyI,1390
1693
1695
  merge/resources/hris/resources/employee_payroll_runs/types/employee_payroll_runs_list_request_expand.py,sha256=zTW66wQmK-5lNIsfQUewfAcPwPEnLiJmGP4iq7VY-YA,829
1694
1696
  merge/resources/hris/resources/employee_payroll_runs/types/employee_payroll_runs_retrieve_request_expand.py,sha256=Wal9UB9KcMJwpulAHNu_mobxClWUbFjE5GnaWi6fOBg,845
1695
- merge/resources/hris/resources/employees/__init__.py,sha256=8_2NCEuD1AJAAtrhLI7TQ3mtuBNCYvrlkf-Q7BK9klE,763
1696
- merge/resources/hris/resources/employees/client.py,sha256=TQd31cG-cHYdcwEBkcJD9SPMCwbrY23EQ93Amu8nFc4,33270
1697
+ merge/resources/hris/resources/employees/__init__.py,sha256=zzzZvE_HZ5WnMt3mH1HqMF1VAePaByO6sB_6gmJyL98,2032
1698
+ merge/resources/hris/resources/employees/client.py,sha256=7DOe89-yIT4N0bgMH_vnxlAn5NsZpMrIVJ0Kw0HwqJ0,33454
1697
1699
  merge/resources/hris/resources/employees/raw_client.py,sha256=D6bsZmJjmioQpIYjWqthfYdkbkxwiHzFzLl9xBU8Blw,39424
1698
- merge/resources/hris/resources/employees/types/__init__.py,sha256=2f2aEF4iSPrhr0aXN3mh13nc-Hxrsq6NNO9kXNQ0rT4,1108
1700
+ merge/resources/hris/resources/employees/types/__init__.py,sha256=ho_jX7f9JoE8V1f7EpPvgU94H1Ep127PxvBSUY4J1Fs,2625
1699
1701
  merge/resources/hris/resources/employees/types/employees_list_request_employment_status.py,sha256=BY67cCw8kzJS1KypaePpcMKyGUVP71w5VwpOiD_GTSM,739
1700
1702
  merge/resources/hris/resources/employees/types/employees_list_request_expand.py,sha256=yIzn_8nt-SkvZt0qIfZro5clWjhqNy6iBf2anA9ixlA,80247
1701
1703
  merge/resources/hris/resources/employees/types/employees_list_request_remote_fields.py,sha256=GiS_bSlwNnKrc90acEXQtxZFfL7GAySwvEamIsViqQw,4067
@@ -1705,12 +1707,12 @@ merge/resources/hris/resources/employees/types/employees_retrieve_request_remote
1705
1707
  merge/resources/hris/resources/employees/types/employees_retrieve_request_show_enum_origins.py,sha256=lA7L6qI0K-oQNu5FolDLPsqVFpcaoIBnW6qhiZ47a5g,4179
1706
1708
  merge/resources/hris/resources/employees/types/ignore_common_model_request_reason.py,sha256=9QCgrEP76XjxWTTdo8_2Z7vZyzOnj-9ZtBe1pgZQWEk,189
1707
1709
  merge/resources/hris/resources/employer_benefits/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1708
- merge/resources/hris/resources/employer_benefits/client.py,sha256=d46t25mlHp6WvGn2_jnXUSABmvAJpI5GMRqKMWbCrg4,11173
1710
+ merge/resources/hris/resources/employer_benefits/client.py,sha256=IJ9KsocdGoQgYSZ2b3vaNgMJkfR8MHR4q0EX1qs-okY,11357
1709
1711
  merge/resources/hris/resources/employer_benefits/raw_client.py,sha256=kascshSPNAZK99hpfZCD3t0fsHI3Y9INVolAokcQ2f4,13572
1710
- merge/resources/hris/resources/employments/__init__.py,sha256=yANiOWCfm675FK1owSISv_YLM89uB3y_t3PrB4KCim8,699
1711
- merge/resources/hris/resources/employments/client.py,sha256=TJxjglC7gKnztcE9Y7CwBj9Fqj_YGbUAN2DFRaozHjc,16744
1712
+ merge/resources/hris/resources/employments/__init__.py,sha256=Wcb91qIXB76iPslXuz0EbbQMUhK5y2vZQ2740S8uqww,1921
1713
+ merge/resources/hris/resources/employments/client.py,sha256=s5o64vxSpRuDCuqpWPqMXDLcQitsCXtaE_BTzBpgizw,16928
1712
1714
  merge/resources/hris/resources/employments/raw_client.py,sha256=qEpt874mH6kWGLpV3cUwltrwVheF5Y3UllhYCfMM_UA,19255
1713
- merge/resources/hris/resources/employments/types/__init__.py,sha256=y87dHc7s-mLaIb8-yiJ85ZC7VH8Ej67j3P_LpdnZFB8,1006
1715
+ merge/resources/hris/resources/employments/types/__init__.py,sha256=sJ5TmViZBM5M8kjPRUU-Sg9uhH8Xrhs6ogcCn8jshvQ,2452
1714
1716
  merge/resources/hris/resources/employments/types/employments_list_request_expand.py,sha256=cWEpvpDaV92QA92gxXC3PJjLv8qMx-YLBv-LzWUC5CM,777
1715
1717
  merge/resources/hris/resources/employments/types/employments_list_request_order_by.py,sha256=E1yhM8n_M3tw6HLxuND6HH6Mhu_Wv51WWM27iccnSdw,707
1716
1718
  merge/resources/hris/resources/employments/types/employments_list_request_remote_fields.py,sha256=xX5n6JuuHYbS5KZnyP6ALCmceYnyIKF0KFDfBrffWH0,4219
@@ -1728,27 +1730,27 @@ merge/resources/hris/resources/generate_key/__init__.py,sha256=_VhToAyIt_5axN6CL
1728
1730
  merge/resources/hris/resources/generate_key/client.py,sha256=RjvyCBe_z6_5bjCvwI0Te-ZqhkTGEX3dTatuOZe7voM,3072
1729
1731
  merge/resources/hris/resources/generate_key/raw_client.py,sha256=Y2J3etGrrJZs9wA6UqrURSz_FwcQH2idb4QUN14CrUA,3852
1730
1732
  merge/resources/hris/resources/groups/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1731
- merge/resources/hris/resources/groups/client.py,sha256=K-qj5NAf10E-RtgtjfbOaYeQpnTbKUw0YKqhPBKtsvU,15209
1733
+ merge/resources/hris/resources/groups/client.py,sha256=z6t_Wdhd2WMnl5ZY8x96v5rBaYVoNeYbadoTP9V_LY8,15393
1732
1734
  merge/resources/hris/resources/groups/raw_client.py,sha256=oxC7gfXfOVFcR1mZ9FA4GbOR2mgsOV3bIQoDwkhmScM,17706
1733
- merge/resources/hris/resources/issues/__init__.py,sha256=8N-ynHIskTDmO3zwQbhyEHy7OTb63CJ_NdZRdLDBOyk,167
1734
- merge/resources/hris/resources/issues/client.py,sha256=bZ-bnRRFYhMAaM_M6ZM5v0F4uxrZMPj2bcnd5MXY5Ps,10907
1735
+ merge/resources/hris/resources/issues/__init__.py,sha256=fKOCxeYsbS41Y58p81luMrp7eaz6BLop2enXQ3HTvtc,1026
1736
+ merge/resources/hris/resources/issues/client.py,sha256=e-DOmVFHNZ14F7Pq2mLkL0t-FV3dFXWX6u6jhEuFyyI,11091
1735
1737
  merge/resources/hris/resources/issues/raw_client.py,sha256=tlppqFgwdwGM1UzbPWkcSTJdYe7b8bh7mXag-tVK-hs,13690
1736
- merge/resources/hris/resources/issues/types/__init__.py,sha256=jjxa8xGa5vTp5-uzIuy8dWJLKrwzX6DnMKPEEkgN4eo,188
1738
+ merge/resources/hris/resources/issues/types/__init__.py,sha256=c7N5BxoJGun2-0qD15I96eDPA36xKVGjt08VJoifSNo,1068
1737
1739
  merge/resources/hris/resources/issues/types/issues_list_request_status.py,sha256=cBbfu1Q5A0ZPOzB7nM_VHRKEJHnxk8lqN-cGmRX6_x4,508
1738
- merge/resources/hris/resources/link_token/__init__.py,sha256=SHuz7ETMvuBzMIPBkqssDkfS9iJSZzYgw7pG6AM6bwk,179
1740
+ merge/resources/hris/resources/link_token/__init__.py,sha256=rFqQQV74iUqiyFV38kXLmMy_6QOH7ifcfn9qSZHnCCI,1044
1739
1741
  merge/resources/hris/resources/link_token/client.py,sha256=lh8cCO39rTttSX6sWN8EzW1c-f-qpM5jyS8eZKcXk4s,12724
1740
1742
  merge/resources/hris/resources/link_token/raw_client.py,sha256=e_Se2xqtqZCjdAM7VdX_nkuR_3cpTjXTZvWeaHHBUDw,13124
1741
- merge/resources/hris/resources/link_token/types/__init__.py,sha256=_DhmnLsRiAcpljK-OPGnDEHf9-FqnWXLVWUL4pOe8-I,207
1743
+ merge/resources/hris/resources/link_token/types/__init__.py,sha256=5u4pc35s4TmNZ4O2Le56xHN3UZGmvlCdr-C3BfxIEOg,1100
1742
1744
  merge/resources/hris/resources/link_token/types/end_user_details_request_language.py,sha256=2BMH_lFqvpT1C4ljoUh5YUm2dgiuLYil6s3_pKcn540,194
1743
- merge/resources/hris/resources/linked_accounts/__init__.py,sha256=jDuRvmYXqKpaHo-Ya2LUjqfqk_rXOUOW7dSpRi-dvqM,187
1744
- merge/resources/hris/resources/linked_accounts/client.py,sha256=NqoYM_3UqWNbHi-KMN1eyW6JgpoX4_xIZ6ji8FE__co,9768
1745
+ merge/resources/hris/resources/linked_accounts/__init__.py,sha256=qlT602tt9halCaj1oeXa66bVB_5EImiYWgBYpAFP3dY,1056
1746
+ merge/resources/hris/resources/linked_accounts/client.py,sha256=qgJ6Oj9HvZuqSMCSZbzYRuJWbyhYld3kHzADALzCx7Q,9952
1745
1747
  merge/resources/hris/resources/linked_accounts/raw_client.py,sha256=90gn8Co6WkiIOlhLAlEvQsQn0fqv-caXwmqnP1bICKc,10620
1746
- merge/resources/hris/resources/linked_accounts/types/__init__.py,sha256=FjSJvzQG9s-6wuY4YUdmieuUNQvaQXZKDSC138TRMz0,219
1748
+ merge/resources/hris/resources/linked_accounts/types/__init__.py,sha256=xWSbOu74X9JxtUN921_jbVtBDygRoEcDyGXySS5soJc,1126
1747
1749
  merge/resources/hris/resources/linked_accounts/types/linked_accounts_list_request_category.py,sha256=_EGocl5xFPQUgGIidOl4wEewCLbzqWyiXV2PIev7l7M,1354
1748
- merge/resources/hris/resources/locations/__init__.py,sha256=LPqpOwykkC4ereezxGHF-R016DpCoHrOBcY4CKadQi4,541
1749
- merge/resources/hris/resources/locations/client.py,sha256=rfLKm-DHDiQhGUqNocUbwm6kGif28W47oTtCppFt3t0,14958
1750
+ merge/resources/hris/resources/locations/__init__.py,sha256=2j1zOjwxMcR7rMDCtWTT5j5WFBu26n3Ao2kpABE2iF8,1654
1751
+ merge/resources/hris/resources/locations/client.py,sha256=maVYDiFngFVmXgMgV3yZnUbTIQm_szhhNmNdFf3Pdxk,15142
1750
1752
  merge/resources/hris/resources/locations/raw_client.py,sha256=jRab9wv1s7yMCIYZm1xQgoM2fs5Oj0q2Pd9NTfGKz-I,17427
1751
- merge/resources/hris/resources/locations/types/__init__.py,sha256=IHW1QcMBuvcPGpImeyWsQpLI8YiwYWdWUNI-8ltscp0,759
1753
+ merge/resources/hris/resources/locations/types/__init__.py,sha256=PuY2SQ6pW9_JEqCBrazFSGQ8kIsK0mr4Y3uvTTn8Jn0,2035
1752
1754
  merge/resources/hris/resources/locations/types/locations_list_request_location_type.py,sha256=GIGtB6d4EHpBpD6Jogl6_m54CKVDNiaQu9NaRAwPRkE,500
1753
1755
  merge/resources/hris/resources/locations/types/locations_list_request_remote_fields.py,sha256=I8ucymk9Pr3JtNTgsqzy8cjXmuo6_ntnCeRvWY25EU8,823
1754
1756
  merge/resources/hris/resources/locations/types/locations_list_request_show_enum_origins.py,sha256=7T33OWeZsvFYkk5brJ7LrLn8c8Kovo4i-K5mcshtHwU,835
@@ -1758,12 +1760,12 @@ merge/resources/hris/resources/passthrough/__init__.py,sha256=_VhToAyIt_5axN6CLJ
1758
1760
  merge/resources/hris/resources/passthrough/client.py,sha256=gP1qRSGmSY5vjjanCT8j8CQH9mFNtZX8yV4rGLmz6QY,3639
1759
1761
  merge/resources/hris/resources/passthrough/raw_client.py,sha256=P_1KIMIApFHlIKDGJ9GHn5_GVVldr5dutGAB4rhAMJg,3997
1760
1762
  merge/resources/hris/resources/pay_groups/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1761
- merge/resources/hris/resources/pay_groups/client.py,sha256=BGE2HxsMqMtmXId8-SX3m_AH9YkcX18xyyPC0x9XDRo,10961
1763
+ merge/resources/hris/resources/pay_groups/client.py,sha256=O33FABOurBF7HbxWYH3DUtIkJ9x2ejYhK20Sm_craDE,11145
1762
1764
  merge/resources/hris/resources/pay_groups/raw_client.py,sha256=78ARFnqxEY7NA0T_i7zU9lmklIYcXzZMDRVNuEdjWjU,13360
1763
- merge/resources/hris/resources/payroll_runs/__init__.py,sha256=_SyNb-DiVAOjsRu0D5-MVyyTK8q53B_QRA-CVss2c1s,551
1764
- merge/resources/hris/resources/payroll_runs/client.py,sha256=0jfc87CJD1OFu9lQ6Wjt-UQ5d-fHSDgtlh4Z4ZGzOz4,17353
1765
+ 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
1765
1767
  merge/resources/hris/resources/payroll_runs/raw_client.py,sha256=B2AcYVFFIGXRpIGjP6UF8CpIcluUONgBJGtTr2oWXH8,20346
1766
- merge/resources/hris/resources/payroll_runs/types/__init__.py,sha256=pQZdCwnFF7RoGR379_u21K3_72hSDCbMS7tahfMfF5o,779
1768
+ merge/resources/hris/resources/payroll_runs/types/__init__.py,sha256=tOL2LkiDF0x3y_LlMXWVgr0gecVy8Dbl3Fmdio_X9YE,2070
1767
1769
  merge/resources/hris/resources/payroll_runs/types/payroll_runs_list_request_remote_fields.py,sha256=tPzvNgS7sSipUGe7YwOFPtYGsBsPitK07LymV7ImF_0,801
1768
1770
  merge/resources/hris/resources/payroll_runs/types/payroll_runs_list_request_run_type.py,sha256=xOkhGt0IKPHWpdhUpT24XAb-F7M-8vpH_NDW4BY-WNU,1104
1769
1771
  merge/resources/hris/resources/payroll_runs/types/payroll_runs_list_request_show_enum_origins.py,sha256=VlQD6HaIKjU0rPKdCPtgRug6GopZp2POT_TaYzksz6s,813
@@ -1776,15 +1778,15 @@ merge/resources/hris/resources/scopes/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3
1776
1778
  merge/resources/hris/resources/scopes/client.py,sha256=W8dM4PN3aNlyXyi3-2bo_OdMyzSSfIuKHiCu3Q3bfI8,10778
1777
1779
  merge/resources/hris/resources/scopes/raw_client.py,sha256=B76Goa1Hwc5mFBH_N5bX5gurkZP3Uyk5WCkih9ZkAT8,10992
1778
1780
  merge/resources/hris/resources/sync_status/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1779
- merge/resources/hris/resources/sync_status/client.py,sha256=uSHagf-a5s0Tq3Ut-6m3YplZaL-gA0AVn1aT9g4Q9BY,4859
1781
+ merge/resources/hris/resources/sync_status/client.py,sha256=C0VByNZXdBmVSWxJ3rVJCnR2G7Z4iqJOgWFbUazbUco,5043
1780
1782
  merge/resources/hris/resources/sync_status/raw_client.py,sha256=vSlp7BQ_j8iQ8igB_a3HP461jfJ7T2ufL0C2Ajr_RNg,5627
1781
1783
  merge/resources/hris/resources/teams/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1782
- merge/resources/hris/resources/teams/client.py,sha256=z_zVv_tJvoV3VPszFhulTWgfkTKpyblu5v19wrKC_Wc,12439
1784
+ merge/resources/hris/resources/teams/client.py,sha256=QcT7e1OzYi5IPGozudG9Fqeg6mvcHAsOjH24ZcnH4lo,12623
1783
1785
  merge/resources/hris/resources/teams/raw_client.py,sha256=L77DktlGZxvKoZSluh4PovuDQkaA_t1Mv-v4fb4xAsM,14880
1784
- merge/resources/hris/resources/time_off/__init__.py,sha256=mY-f8GoIWWA4gSw3z9ZkSMOaFiAW-2txw663SvCyl5s,713
1785
- merge/resources/hris/resources/time_off/client.py,sha256=9T6p8erJRza2vsiw6e_6UoeFeWh5pBrx7AcClgYNiuo,25045
1786
+ 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
1786
1788
  merge/resources/hris/resources/time_off/raw_client.py,sha256=twUq_FuSVkWavOz_FJkDfk4uYtlZVt1ygO_5sMJwnv0,30440
1787
- merge/resources/hris/resources/time_off/types/__init__.py,sha256=sk1XIoU-5Fn-OFy1Lpi3S5aUVpI5OeJuQ-D7DhHTIeA,1040
1789
+ merge/resources/hris/resources/time_off/types/__init__.py,sha256=TMGcXOXhqsSi4tbg8nTKlqf1_Y1GAiOuHZxNbnUiWJg,2514
1788
1790
  merge/resources/hris/resources/time_off/types/time_off_list_request_expand.py,sha256=V4uU1OzcmJevHXr79BbmiXgKXum2HM7sX0mvvCk2qmA,751
1789
1791
  merge/resources/hris/resources/time_off/types/time_off_list_request_remote_fields.py,sha256=wPHcr3lzxRqG-rOGbTk7TNu3aZt70rNbKVACZTNr9oA,1595
1790
1792
  merge/resources/hris/resources/time_off/types/time_off_list_request_request_type.py,sha256=lCugEjiH31AbVz88j-g89O4DeGcAYTt3NxG9kbj8YTo,1223
@@ -1793,20 +1795,20 @@ merge/resources/hris/resources/time_off/types/time_off_list_request_status.py,sh
1793
1795
  merge/resources/hris/resources/time_off/types/time_off_retrieve_request_expand.py,sha256=9ksUITMqjdJx0y6Gjr8xUBLy6khKkczJtNHbYjJ9aPw,767
1794
1796
  merge/resources/hris/resources/time_off/types/time_off_retrieve_request_remote_fields.py,sha256=ecSF0dKD1s-rCq9_hRNN4xEscNMoiZR_AQb4MoXdlEQ,1627
1795
1797
  merge/resources/hris/resources/time_off/types/time_off_retrieve_request_show_enum_origins.py,sha256=BgO5__bdtrj0oj7Dz3R_IheYB61tEkk_ez7aG5szaak,1651
1796
- merge/resources/hris/resources/time_off_balances/__init__.py,sha256=genzWGPJ4FIK2TTq_jGLa0fDqKeua2SQPMxYcYqqvpA,193
1797
- merge/resources/hris/resources/time_off_balances/client.py,sha256=AWHwjN48eBitrphte2XmGLIWJ8HVc__Uu1D3mZBRSYY,16740
1798
+ 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
1798
1800
  merge/resources/hris/resources/time_off_balances/raw_client.py,sha256=g7mIaPON8MH-r5cAGsg-N5OYhpt09dNt2M63Ftph3F0,19251
1799
- merge/resources/hris/resources/time_off_balances/types/__init__.py,sha256=0IAJsgrX6q0nFIxhhUeLrWef9nSL_MalkcLimcHGx-M,230
1801
+ merge/resources/hris/resources/time_off_balances/types/__init__.py,sha256=-Ikm3fZt4V5reHI1Sw2r7F_2PHLOwQyBJGqhZxXG1qk,1145
1800
1802
  merge/resources/hris/resources/time_off_balances/types/time_off_balances_list_request_policy_type.py,sha256=b-iMfE9V52sd9Vr_Q86Vo-03tG8UaAeQRdNeWnjBovo,1272
1801
- merge/resources/hris/resources/timesheet_entries/__init__.py,sha256=tGQgVuAV8aDWg1ap1hP4i5boX3BVT7_a7AQHv1hmvao,189
1802
- merge/resources/hris/resources/timesheet_entries/client.py,sha256=Zp5gS3EseIljN7MVaw_ngjdQzeEFPuig4MrcMujcC6o,20182
1803
+ merge/resources/hris/resources/timesheet_entries/__init__.py,sha256=V10FKhZJLXWjjTb07Z79CSTz5h7EC8mwqnKgDOHTYlg,1059
1804
+ merge/resources/hris/resources/timesheet_entries/client.py,sha256=tUhobAi4TNhIN79Xt_CWMf5dMsbbEVMCbWlDkUXaj6Y,20366
1803
1805
  merge/resources/hris/resources/timesheet_entries/raw_client.py,sha256=u2FAGUXp1lB1JHAvAym5hu_t-tqxiQV4Nkjtc3eRXXE,25477
1804
- merge/resources/hris/resources/timesheet_entries/types/__init__.py,sha256=jNo8ilxJPb61n0TaGEu2SL0TFV-rMIBWmZM9izVkRFc,223
1806
+ merge/resources/hris/resources/timesheet_entries/types/__init__.py,sha256=i_S11tBV65N9ip6DBfjpRoojoXMCrJBxuon4d19KY7w,1133
1805
1807
  merge/resources/hris/resources/timesheet_entries/types/timesheet_entries_list_request_order_by.py,sha256=_5wq5NOCrgq6Vf-yp0glKNwA9dnMCfNDpO-0AxLw4YE,665
1806
1808
  merge/resources/hris/resources/webhook_receivers/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1807
1809
  merge/resources/hris/resources/webhook_receivers/client.py,sha256=DzdAvXQYy983Hky2E6MYmhMLO4cSOPWFzrXSuNHlaU8,5214
1808
1810
  merge/resources/hris/resources/webhook_receivers/raw_client.py,sha256=bxXoGGRsQTjkKy_-8CnPwpjNo_qhC4QOQ_jFf1h5D1Y,7135
1809
- merge/resources/hris/types/__init__.py,sha256=5qRNlvlf535jhiKbAcsrng4GRic1X1Us7X4j6q5dQ-w,16245
1811
+ merge/resources/hris/types/__init__.py,sha256=amvB0gOsD1Uh4G7z0Dxpq2taJ8yQBbGX_3DWw9wu-q4,28300
1810
1812
  merge/resources/hris/types/account_details.py,sha256=6FjFKxsxftOM5DJIiueXWPtJZkuFMIVSgcB_2UT7t8w,1617
1811
1813
  merge/resources/hris/types/account_details_and_actions.py,sha256=RU9X0RZWWjNaAplYnhNPORHFJ_NQhdFA7h9F9wC3frs,2134
1812
1814
  merge/resources/hris/types/account_details_and_actions_category.py,sha256=bn6Sf9zNV2E_CQZOB6u8f2SrPUAsj9422o_pU6m9tq0,188
@@ -1825,7 +1827,7 @@ merge/resources/hris/types/available_actions.py,sha256=j-KMLrxEDj8gAlMsEIPs0kRW_
1825
1827
  merge/resources/hris/types/bank_info.py,sha256=6VbFW3MX4kSPPS8hL6tObt5_a7WUJN_JpZTB80ZYjho,3069
1826
1828
  merge/resources/hris/types/bank_info_account_type.py,sha256=CwxfhHHnimr_lRXZhGJY4wW19lPJprwG2VF5qwROemM,185
1827
1829
  merge/resources/hris/types/bank_info_employee.py,sha256=QYbZyICGISpmkDGsXNWWuRpu-_OrafTgQwk9B8hgl-s,159
1828
- merge/resources/hris/types/benefit.py,sha256=LEmQ9x_ywKGyi3UMPGHHWT4cWcBRSrq3Ua1HTUz-LUs,3217
1830
+ merge/resources/hris/types/benefit.py,sha256=NtRrCcS5i4ngBxLAw-7JcKE34ZX1_niM_rUHM0cd67M,3217
1829
1831
  merge/resources/hris/types/benefit_employee.py,sha256=9zoRBsH6Fb8XVmnQtJUdCFDslKWoOQcqQigp3aSl5OM,158
1830
1832
  merge/resources/hris/types/benefit_plan_type_enum.py,sha256=GWiYLZ8_Pm71oQej48Bzxu9xFbTEfrBPX8qfU0ME34U,1186
1831
1833
  merge/resources/hris/types/categories_enum.py,sha256=D8WazEwlr8J2tRQT14nO_samkLIS9-gixLmortWbOoE,1391
@@ -2004,10 +2006,10 @@ merge/resources/hris/types/units_enum.py,sha256=XIZYjVmI4pBqviS_FDF9jQ4pJ8Nmn-K8
2004
2006
  merge/resources/hris/types/validation_problem_source.py,sha256=0ayE7x_uM8R0pzVRz9ZZEc6WS1RUZO3VW3zXjh61RVs,576
2005
2007
  merge/resources/hris/types/warning_validation_problem.py,sha256=RXDtt3t3FwIeGGXkIr_OHOAybDZg44L_5hOqa2sLlJ0,736
2006
2008
  merge/resources/hris/types/webhook_receiver.py,sha256=g4KQnc-vZPJGlXK-OOFIn2WGyTLKoeaq9TPWQ46VwFY,623
2007
- merge/resources/ticketing/__init__.py,sha256=iRyMfo-ULYGOwxPAvgcACZm_BoAfGK7pnmWUYFzkvUI,11406
2008
- merge/resources/ticketing/client.py,sha256=X2IgHmqY0-zjmxH1PKJTsMatF6Gbco5ZDtHgRbcFnW8,8149
2009
+ merge/resources/ticketing/__init__.py,sha256=wi2p8mpxTNxTEQYYgWcb-XWpG34Wj3TMg2gjbnzpkHs,21310
2010
+ merge/resources/ticketing/client.py,sha256=WcbjpQBCYH_qIP7eQ85KkGr7PYVAvY5mOtnN7V0pWKk,24084
2009
2011
  merge/resources/ticketing/raw_client.py,sha256=8HRcdo0adAZI5EQ6hFobLqvdQsox9Qo5n45Q8wF-RZs,416
2010
- merge/resources/ticketing/resources/__init__.py,sha256=lIWCkzpcljfT-xN_czyAVoRVAwQy3Am-cePU398aqBE,2573
2012
+ merge/resources/ticketing/resources/__init__.py,sha256=sBrI7BsMq735oKMF7ZSu3jYAqUfDAgskyK5IQinQiG4,5154
2011
2013
  merge/resources/ticketing/resources/account_details/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2012
2014
  merge/resources/ticketing/resources/account_details/client.py,sha256=2cymTg1GvjMz6tMpPo8YH5qtqEnPuceg490SR64ulBo,2813
2013
2015
  merge/resources/ticketing/resources/account_details/raw_client.py,sha256=9SbWMRxf_RI_RdNe4cJMw9gT1YTcijaHNalSJCOtgo4,3363
@@ -2015,35 +2017,35 @@ merge/resources/ticketing/resources/account_token/__init__.py,sha256=_VhToAyIt_5
2015
2017
  merge/resources/ticketing/resources/account_token/client.py,sha256=ZG5vym9OZwE-klocwreK9OwaHXGA7QQhrSshr0fAchs,3103
2016
2018
  merge/resources/ticketing/resources/account_token/raw_client.py,sha256=lHbfOtAoj0RmOLZ71hWCIrG9fCB_13hlg3wsrtKHGlQ,3649
2017
2019
  merge/resources/ticketing/resources/accounts/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2018
- merge/resources/ticketing/resources/accounts/client.py,sha256=9qcet4RoVCx_3n-dcL1jpq3arj-9a0lxReWZxFV-lR0,10947
2020
+ merge/resources/ticketing/resources/accounts/client.py,sha256=bi-RVPzDYoZrFtrPxSAzPGnFZaFauXQS7sWFz6f4Ahk,11131
2019
2021
  merge/resources/ticketing/resources/accounts/raw_client.py,sha256=cvi5lvO22buGa3mKI9aM2MrozGH3XWSN2MW97TPGg10,13346
2020
- merge/resources/ticketing/resources/async_passthrough/__init__.py,sha256=1MpPldWxuhYBQ4thZ3E-Ykjn3NxDsYfdArx3XkPQtdI,185
2022
+ merge/resources/ticketing/resources/async_passthrough/__init__.py,sha256=fKVWk4jeqEvhNZuk0EtXPEFl5uB136ROeo8C6xczZI8,1053
2021
2023
  merge/resources/ticketing/resources/async_passthrough/client.py,sha256=E1lI--LpCWjR5DsX3A3KeSLVeOSC_wm-UOd3lZ1Drjg,5988
2022
2024
  merge/resources/ticketing/resources/async_passthrough/raw_client.py,sha256=B2COr6onJKGkNgTFq3p2XlsbCLKZc4rZlbpX09NKlUc,7371
2023
- merge/resources/ticketing/resources/async_passthrough/types/__init__.py,sha256=0LUj53dTeTqfs50XizOk2ro3RcqGYXn71qHGyZs5Rdg,215
2025
+ merge/resources/ticketing/resources/async_passthrough/types/__init__.py,sha256=xZoQJ90iQWokoy6yfd_9sggRIkFEWCIPhmpoahoo_t0,1113
2024
2026
  merge/resources/ticketing/resources/async_passthrough/types/async_passthrough_retrieve_response.py,sha256=uBMjgizc2Qhm2JA0rRTer6NiRT3sq_v-EyTrzkiQC0g,203
2025
2027
  merge/resources/ticketing/resources/attachments/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2026
- merge/resources/ticketing/resources/attachments/client.py,sha256=rg7f9zuWUFRaNGEgfjcA6lHCyKfEp5DaYP5TENjnKOI,20912
2028
+ merge/resources/ticketing/resources/attachments/client.py,sha256=WGVZBQu32PRSKm4K9uki0FdZppAeUCO_drJhWjRld3E,21096
2027
2029
  merge/resources/ticketing/resources/attachments/raw_client.py,sha256=lBS350-8PGAhK64wxvoFuu38ZIy5mEaxqsWVZtkHquk,28299
2028
2030
  merge/resources/ticketing/resources/audit_trail/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2029
- merge/resources/ticketing/resources/audit_trail/client.py,sha256=jKrUmt6uj8Du6BragJMGK4O2m1Ef9foo3WsqiIJsnv8,8358
2031
+ merge/resources/ticketing/resources/audit_trail/client.py,sha256=9-kRlF-WlfPUh38bcfYbfkJXAXa7fNl0FXjrQPMHw14,8542
2030
2032
  merge/resources/ticketing/resources/audit_trail/raw_client.py,sha256=3fdCcY8-UOrjU_eLEjnGZESf9K48ceoh_WOoyykFGA4,9100
2031
2033
  merge/resources/ticketing/resources/available_actions/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2032
2034
  merge/resources/ticketing/resources/available_actions/client.py,sha256=0ZuT2-IouQtS2djKSuMl_kjh384RtNxDJXPjt2vr4q8,2907
2033
2035
  merge/resources/ticketing/resources/available_actions/raw_client.py,sha256=bqHzLRUZnmV-0yc6e3JJQgI68Rf8C1bJItdcQ4SBwfI,3449
2034
- merge/resources/ticketing/resources/collections/__init__.py,sha256=9FYXE9JkIv2tNREKBnQ8xAX_zi1bkOshLoukUUlwvrs,191
2035
- merge/resources/ticketing/resources/collections/client.py,sha256=I6NlMvmVjIqesWUULNu50SXlEzUH5JIQFuL4C_S9ZGM,21943
2036
+ merge/resources/ticketing/resources/collections/__init__.py,sha256=yzQrpCSEQDsIFmwVIz3dki0SBCv0iF2iO9G4mUCElBY,1062
2037
+ merge/resources/ticketing/resources/collections/client.py,sha256=YuX2AN6wVvirEDgnMutP9RkoLgtyHNwqtmnwBTqd_NM,22289
2036
2038
  merge/resources/ticketing/resources/collections/raw_client.py,sha256=QraWZ8Qlz3J9usm2sF1PoIe_OwERyKw7izBI82kP1N8,25531
2037
- merge/resources/ticketing/resources/collections/types/__init__.py,sha256=y55m8uLl_LkMPwHqwX3ANuFOICJr1L8CQd3Jx1abY68,225
2039
+ merge/resources/ticketing/resources/collections/types/__init__.py,sha256=N7Z33MY0yvoP4hp7YILUcy6ZW-5IGLzPW_ZPMHDMmaA,1136
2038
2040
  merge/resources/ticketing/resources/collections/types/collections_viewers_list_request_expand.py,sha256=OJlzFVlszeOLtpbqPGUN2Vndb1Txaooy9GpFIIUAyjA,715
2039
- merge/resources/ticketing/resources/comments/__init__.py,sha256=t1uNXN8isGF9LZJfelcQsfIEghGciFar9QrRS287Svs,235
2040
- merge/resources/ticketing/resources/comments/client.py,sha256=h58oh9wtcMU_cSHA248iEeCRx20Py7rEa5IHe4Ub9iI,17920
2041
+ merge/resources/ticketing/resources/comments/__init__.py,sha256=NmHEkKeKhNPwbtx8Rf6sNuSPSVdGhPMoYHI3mZB7KiM,1150
2042
+ merge/resources/ticketing/resources/comments/client.py,sha256=dbcWvzm1cpTUOarljbRu3SG_eQydtbo_5cmeecjpz9U,18104
2041
2043
  merge/resources/ticketing/resources/comments/raw_client.py,sha256=R1HMAkvc1U9_n0OoZjBZBYLgvPH3dyQNqSwvY4OMPe4,22885
2042
- merge/resources/ticketing/resources/comments/types/__init__.py,sha256=az0OPm4N7HZofppsXQYbEiJKLP5UUVc8JboNp332uMg,303
2044
+ merge/resources/ticketing/resources/comments/types/__init__.py,sha256=E47ia0Pdd0Ocjwn0Ze01GAB1UImx5QuUtVRf3kHXzQk,1272
2043
2045
  merge/resources/ticketing/resources/comments/types/comments_list_request_expand.py,sha256=nKoGDtfRuefnl4HY6gbLt-31Ma5JuoKwJVOlmszWpkM,1435
2044
2046
  merge/resources/ticketing/resources/comments/types/comments_retrieve_request_expand.py,sha256=uzvlPNelOETowutZAc7eGSzotIOgFW5PdE2PpfxsM64,1467
2045
2047
  merge/resources/ticketing/resources/contacts/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2046
- merge/resources/ticketing/resources/contacts/client.py,sha256=GulnyMS79tPQ5w5AfK4q5VDQH6j74CG-SN934pJGnyM,16857
2048
+ merge/resources/ticketing/resources/contacts/client.py,sha256=Ph_MpsACj1UyIWbefuUMeYeqqnT4T55GDDy2brwHDeE,17041
2047
2049
  merge/resources/ticketing/resources/contacts/raw_client.py,sha256=bTBpJomzvK4w7tvaeoW_ZWIRF8a8ITyBKfrxsHMcT6Y,21634
2048
2050
  merge/resources/ticketing/resources/delete_account/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2049
2051
  merge/resources/ticketing/resources/delete_account/client.py,sha256=mGGWMgMjplnEsjt42J2059posWuCj-FyuAPhPhcLdQs,2677
@@ -2057,51 +2059,51 @@ merge/resources/ticketing/resources/force_resync/raw_client.py,sha256=a_FfyCU-Lg
2057
2059
  merge/resources/ticketing/resources/generate_key/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2058
2060
  merge/resources/ticketing/resources/generate_key/client.py,sha256=E8nSNnqWvCunfpnsxpzHYr_8PwF2wvPfKJks4U3K37s,3082
2059
2061
  merge/resources/ticketing/resources/generate_key/raw_client.py,sha256=2pNt8XeoEfLWWU5AFAfVPAfQUUU9tgkgnC_WtQqjeRA,3862
2060
- merge/resources/ticketing/resources/issues/__init__.py,sha256=8N-ynHIskTDmO3zwQbhyEHy7OTb63CJ_NdZRdLDBOyk,167
2061
- merge/resources/ticketing/resources/issues/client.py,sha256=TcB0SNi6Vq5VJ9_G2xh9ZDB0_ZPs_ZDnAdTq_q5lwuc,10927
2062
+ merge/resources/ticketing/resources/issues/__init__.py,sha256=fKOCxeYsbS41Y58p81luMrp7eaz6BLop2enXQ3HTvtc,1026
2063
+ merge/resources/ticketing/resources/issues/client.py,sha256=29DR1tdAo7aQeUFFVii8OJcIXBioruHifiFIZzOoiD8,11111
2062
2064
  merge/resources/ticketing/resources/issues/raw_client.py,sha256=uMCeEUnnnEsq0ZHlpSj4ZFaZCj-HKXzBuAFdxGG0ocU,13710
2063
- merge/resources/ticketing/resources/issues/types/__init__.py,sha256=jjxa8xGa5vTp5-uzIuy8dWJLKrwzX6DnMKPEEkgN4eo,188
2065
+ merge/resources/ticketing/resources/issues/types/__init__.py,sha256=c7N5BxoJGun2-0qD15I96eDPA36xKVGjt08VJoifSNo,1068
2064
2066
  merge/resources/ticketing/resources/issues/types/issues_list_request_status.py,sha256=cBbfu1Q5A0ZPOzB7nM_VHRKEJHnxk8lqN-cGmRX6_x4,508
2065
- merge/resources/ticketing/resources/link_token/__init__.py,sha256=SHuz7ETMvuBzMIPBkqssDkfS9iJSZzYgw7pG6AM6bwk,179
2067
+ merge/resources/ticketing/resources/link_token/__init__.py,sha256=rFqQQV74iUqiyFV38kXLmMy_6QOH7ifcfn9qSZHnCCI,1044
2066
2068
  merge/resources/ticketing/resources/link_token/client.py,sha256=kvwXn7QVvbO6qcEolTXaC-fnlZ4KoT0Ym9T7TSbCtN4,12744
2067
2069
  merge/resources/ticketing/resources/link_token/raw_client.py,sha256=sedkVgAc9VMq4Ri79L2LyKa2g1IpZ6oLaVk0irEURGI,13134
2068
- merge/resources/ticketing/resources/link_token/types/__init__.py,sha256=_DhmnLsRiAcpljK-OPGnDEHf9-FqnWXLVWUL4pOe8-I,207
2070
+ merge/resources/ticketing/resources/link_token/types/__init__.py,sha256=5u4pc35s4TmNZ4O2Le56xHN3UZGmvlCdr-C3BfxIEOg,1100
2069
2071
  merge/resources/ticketing/resources/link_token/types/end_user_details_request_language.py,sha256=2BMH_lFqvpT1C4ljoUh5YUm2dgiuLYil6s3_pKcn540,194
2070
- merge/resources/ticketing/resources/linked_accounts/__init__.py,sha256=jDuRvmYXqKpaHo-Ya2LUjqfqk_rXOUOW7dSpRi-dvqM,187
2071
- merge/resources/ticketing/resources/linked_accounts/client.py,sha256=def0uoI56IzajjVK2UO7AjMGuE15opeMVdPNwfL5c0U,9778
2072
+ merge/resources/ticketing/resources/linked_accounts/__init__.py,sha256=qlT602tt9halCaj1oeXa66bVB_5EImiYWgBYpAFP3dY,1056
2073
+ merge/resources/ticketing/resources/linked_accounts/client.py,sha256=DMUIzAVFBi1IPzEb8NWkTgGhcAk2___7TLvOdUubVmU,9962
2072
2074
  merge/resources/ticketing/resources/linked_accounts/raw_client.py,sha256=voRUR3SlXvSgiRyxFIUkqQAgdcC-cRY_2W9rrKtJcxI,10630
2073
- merge/resources/ticketing/resources/linked_accounts/types/__init__.py,sha256=FjSJvzQG9s-6wuY4YUdmieuUNQvaQXZKDSC138TRMz0,219
2075
+ merge/resources/ticketing/resources/linked_accounts/types/__init__.py,sha256=xWSbOu74X9JxtUN921_jbVtBDygRoEcDyGXySS5soJc,1126
2074
2076
  merge/resources/ticketing/resources/linked_accounts/types/linked_accounts_list_request_category.py,sha256=_EGocl5xFPQUgGIidOl4wEewCLbzqWyiXV2PIev7l7M,1354
2075
2077
  merge/resources/ticketing/resources/passthrough/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2076
2078
  merge/resources/ticketing/resources/passthrough/client.py,sha256=FSsQp_OL2MzbG1riu1sNZy-KKz5ZLIDSCOOC2vsFrVE,3659
2077
2079
  merge/resources/ticketing/resources/passthrough/raw_client.py,sha256=WGJQN555L7wOF1Ic_C_UBKgiGscvS4jrE9aByjUgDSM,4007
2078
- merge/resources/ticketing/resources/projects/__init__.py,sha256=LRSbNx9VmJvVasmgjiEDRLQOuT8U65YWDeHwqAGHz3I,181
2079
- merge/resources/ticketing/resources/projects/client.py,sha256=aTx0CD-hfHCch5tbVVQEhSEmNY84A482S36JrkckR9s,16319
2080
+ merge/resources/ticketing/resources/projects/__init__.py,sha256=OxvATZJ1wWiZ_dEZ8Tf5eYz1xVHTsjBUCy4_XzWuHuM,1047
2081
+ merge/resources/ticketing/resources/projects/client.py,sha256=KutT0-Cs9lZtaXukyR_C60ivjRO0Fl9vNrIc7NLmc2E,16665
2080
2082
  merge/resources/ticketing/resources/projects/raw_client.py,sha256=U4f4hcaoDaVZegvolIqcpdN912QjV6k4peB1DLt0zvw,19807
2081
- merge/resources/ticketing/resources/projects/types/__init__.py,sha256=IRI_QD9I4Lp_9j1lwZZrQlPSHNZ0Fgsjds5SrEKv-T8,210
2083
+ merge/resources/ticketing/resources/projects/types/__init__.py,sha256=DwSPoXB6HNpBnPWp6wKX--V5jQZD87ceN8Gnjptofcs,1105
2082
2084
  merge/resources/ticketing/resources/projects/types/projects_users_list_request_expand.py,sha256=OLtNd0uNab7xwrGpL3_BZsMZqwIpJEjRt9MahqSmdvs,715
2083
2085
  merge/resources/ticketing/resources/regenerate_key/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2084
2086
  merge/resources/ticketing/resources/regenerate_key/client.py,sha256=rpehVVeXi_U9lnYkgTENR3OaqWQZR7zpDcAe8LopK7g,3108
2085
2087
  merge/resources/ticketing/resources/regenerate_key/raw_client.py,sha256=Y6QynFlDZUG_O5_B3XctsCFG8y0czLJ0XhzZpuZq5So,3872
2086
2088
  merge/resources/ticketing/resources/roles/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2087
- merge/resources/ticketing/resources/roles/client.py,sha256=FoX_lf4Bd8UwxAE0q3a-QOBdlAoZkDAc7Vi9_pO1hno,10855
2089
+ merge/resources/ticketing/resources/roles/client.py,sha256=wC5uzqs3DEfAplmY3zhvPyXOf2a0wZUSM_rqKUpjYAo,11039
2088
2090
  merge/resources/ticketing/resources/roles/raw_client.py,sha256=jH3dIsJ5TJYi_oJg8Cn1NP_lZiFYL5md1_73OxVepj8,13254
2089
2091
  merge/resources/ticketing/resources/scopes/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2090
2092
  merge/resources/ticketing/resources/scopes/client.py,sha256=BH78LXGR1I5QlWDi7PUdJNUSH59AwGxWNIxuZYraHis,10818
2091
2093
  merge/resources/ticketing/resources/scopes/raw_client.py,sha256=Ts-uoWdN_x5vUd61G74aGRekvZGICGm3jU7VXBgLEWM,11022
2092
2094
  merge/resources/ticketing/resources/sync_status/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2093
- merge/resources/ticketing/resources/sync_status/client.py,sha256=rn8Y36Jv6N0NI7ryrIruyoLQkILOKsQEDFi8e4y_u6g,4869
2095
+ merge/resources/ticketing/resources/sync_status/client.py,sha256=DcIJTHl8A8dA-K9lcYGUB6B5vM6xTM1kU4CwGZXdD8E,5053
2094
2096
  merge/resources/ticketing/resources/sync_status/raw_client.py,sha256=qeTshmIkbApwt_dl42HIdy2KpL7PUGPoh47l6zYMbzg,5637
2095
2097
  merge/resources/ticketing/resources/tags/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2096
- merge/resources/ticketing/resources/tags/client.py,sha256=6sWHt3_VkxZmS2Uy7EzuZ7roQ6iG6yRZmkqvs2U18us,10825
2098
+ merge/resources/ticketing/resources/tags/client.py,sha256=GKu3zqfpViqKNRvZrfGYGvIqWBZhwvbNooBpedGT4e4,11009
2097
2099
  merge/resources/ticketing/resources/tags/raw_client.py,sha256=6UNvNp-RcwnCpwnnq5ZJ8UGuB8R-qaPaC0ds46URLrc,13224
2098
2100
  merge/resources/ticketing/resources/teams/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2099
- merge/resources/ticketing/resources/teams/client.py,sha256=kpnlpBUmsQMKCldK4Fkb38vQ00lSbLQw1DEn8lwIjjI,10855
2101
+ merge/resources/ticketing/resources/teams/client.py,sha256=yh5we_JqqPWQJSfoQR30lGq3TsplaCUS_dUQUb1u6uQ,11039
2100
2102
  merge/resources/ticketing/resources/teams/raw_client.py,sha256=ZORtIL48lj-2gLymgrZcVZtgN9nPxMMNbKVIJc81xf4,13254
2101
- merge/resources/ticketing/resources/tickets/__init__.py,sha256=Evh80VX7Dv7Lua_L--PoHF18GkD9tAdyedi_H-4awPY,721
2102
- merge/resources/ticketing/resources/tickets/client.py,sha256=mRoF4HD4BwPHvYKXi2-2Nz9lLlah450oSSd8zADfxxk,47786
2103
- merge/resources/ticketing/resources/tickets/raw_client.py,sha256=jyoO8llqSmwUPB_nvAL4-pt2RlrGcWZ9zIpME8p2ARo,58709
2104
- merge/resources/ticketing/resources/tickets/types/__init__.py,sha256=jaNZdkqwlxjuwbqcXkjPsGMkklZ1Y_GuRavULFQjB94,1044
2103
+ merge/resources/ticketing/resources/tickets/__init__.py,sha256=FYL9mDiw0QgkoUN2PcDIXe0j9QytUY3Jsa4vCVCpo9E,1969
2104
+ merge/resources/ticketing/resources/tickets/client.py,sha256=w9Q7gFQDupD32B0589IBTQ69H-x8w16HeQaXtCvkfWw,48726
2105
+ merge/resources/ticketing/resources/tickets/raw_client.py,sha256=B2uSLBqbEUNSXGp4msPDIWfEw-_Kuqg7m5BLO9x-yu0,59133
2106
+ merge/resources/ticketing/resources/tickets/types/__init__.py,sha256=1tZDeuby1cP_MxknSPoiJTIPIHkaVLKqPSAOBPiLhak,2518
2105
2107
  merge/resources/ticketing/resources/tickets/types/tickets_list_request_expand.py,sha256=KxXHoeLtnz3GIdhceulanFd62gXIvznYedNVDMIs1jc,86077
2106
2108
  merge/resources/ticketing/resources/tickets/types/tickets_list_request_priority.py,sha256=u1BXrjcjqAv-prW6BJboeyw_CdBsjj6Lo8a8bnnsHA8,810
2107
2109
  merge/resources/ticketing/resources/tickets/types/tickets_list_request_remote_fields.py,sha256=cahTXMHKePRLCWFWPk1e2615gf1HGb2RnuoVBWLCzSo,1635
@@ -2110,16 +2112,16 @@ merge/resources/ticketing/resources/tickets/types/tickets_retrieve_request_expan
2110
2112
  merge/resources/ticketing/resources/tickets/types/tickets_retrieve_request_remote_fields.py,sha256=Z1PZhFnotfrqY3xq996Jtq4KYxuHn2IglVaOVcqk7_E,1667
2111
2113
  merge/resources/ticketing/resources/tickets/types/tickets_retrieve_request_show_enum_origins.py,sha256=Eg18aXyyl2SwNQIc68n0a94YjvfevDP1L93TruNfTYE,1691
2112
2114
  merge/resources/ticketing/resources/tickets/types/tickets_viewers_list_request_expand.py,sha256=GRuiCShPcTOq5znz45swJACE8Xxz9hyVub3z0WggA2U,699
2113
- merge/resources/ticketing/resources/users/__init__.py,sha256=fMq1UtLJT7r8j1FlRlzuSrxumGDjPUCySBwDkT0Kvp8,223
2114
- merge/resources/ticketing/resources/users/client.py,sha256=-XVN27gMVeMRHQH8oUz_KL_NldsHU2kZ_UACshr82vc,12961
2115
+ merge/resources/ticketing/resources/users/__init__.py,sha256=MfVOB8ryGNwdd67di0URN-8dtuqMUOmCYCQFW7J489k,1121
2116
+ merge/resources/ticketing/resources/users/client.py,sha256=zdTubLLyUNo-4ayREez4Nx2kOLU87N107rKANFck37E,13145
2115
2117
  merge/resources/ticketing/resources/users/raw_client.py,sha256=e-ua7fVBygaLMiGcfXMRuCJoQKrmcRzQr2Cl3wBcc5I,15416
2116
- merge/resources/ticketing/resources/users/types/__init__.py,sha256=l1zsl__Lr7LN8qoNLhdTTRNXB0PdBD60ensxvUbwu7s,285
2118
+ merge/resources/ticketing/resources/users/types/__init__.py,sha256=iMjdwDWRm9OARXa4biig3rDY7gNTuvK6luMB7rmyKk0,1242
2117
2119
  merge/resources/ticketing/resources/users/types/users_list_request_expand.py,sha256=CMz1tUJb6xqyu4Iry_KLpza9OtUjMzjdrJxXzM2egrk,683
2118
2120
  merge/resources/ticketing/resources/users/types/users_retrieve_request_expand.py,sha256=01JMChGjlW_drpqy9kADxGsR_DzcVo3_KG8xKMZ_qX8,699
2119
2121
  merge/resources/ticketing/resources/webhook_receivers/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2120
2122
  merge/resources/ticketing/resources/webhook_receivers/client.py,sha256=pcQtKIFrlloxnbOzBusrSDdMB_AEpHbgmHxbY-zryR0,5234
2121
2123
  merge/resources/ticketing/resources/webhook_receivers/raw_client.py,sha256=z_jWqvk4Q4_GS9t6vrUc1w2fKZKbdFzQkL5R428GhNQ,7155
2122
- merge/resources/ticketing/types/__init__.py,sha256=5Ix9J30RURQGosLJqquHXV89VdiJ_pBwmZKAZfIW0Wg,14270
2124
+ merge/resources/ticketing/types/__init__.py,sha256=bWP3ET1GtSWvke3kMrq_i-UWOuWA-XeIOOZb8WVjBMU,24946
2123
2125
  merge/resources/ticketing/types/account.py,sha256=bpQB4YiNw0po2b5Q8fgWecSNfIQbqHzo_YsR6sheIKY,2160
2124
2126
  merge/resources/ticketing/types/account_details.py,sha256=6FjFKxsxftOM5DJIiueXWPtJZkuFMIVSgcB_2UT7t8w,1617
2125
2127
  merge/resources/ticketing/types/account_details_and_actions.py,sha256=4S2cnfZ4T8vU-rudpCuZWlH23sgL4dk6n9k1ZbzrQt4,2121
@@ -2218,7 +2220,7 @@ merge/resources/ticketing/types/paginated_team_list.py,sha256=Dj-NK5s2ysj2ldR7wR
2218
2220
  merge/resources/ticketing/types/paginated_ticket_list.py,sha256=6npdqLAi9lmxMjI2r2KwyyHW9_3UMwU08vrUP4fFbHw,970
2219
2221
  merge/resources/ticketing/types/paginated_user_list.py,sha256=QmSAMQlC-Ji0rJbh16YfXw9j20QqNo0Mn6W4fOxcDPg,711
2220
2222
  merge/resources/ticketing/types/paginated_viewer_list.py,sha256=P6yO3gZ5v33aCyH9AKS2E-YFCqcZGEEMD1hbPcK-aoI,719
2221
- merge/resources/ticketing/types/patched_ticket_request.py,sha256=hING8KnIL9Gs4O_JXUF-pyV0zx3V8WE8o4Y8jPcUOlM,4628
2223
+ merge/resources/ticketing/types/patched_ticket_request.py,sha256=xQrTAyrqTTrP7mzAocFC8UFWwtbXSjQz0MK69yhNdwQ,4628
2222
2224
  merge/resources/ticketing/types/patched_ticket_request_access_level.py,sha256=KQyVjbeSzHDwbGtKiyDNMtbeReZLURSI9yojrzG8NyY,216
2223
2225
  merge/resources/ticketing/types/patched_ticket_request_priority.py,sha256=IllBp1Yoc2VBnIRZ6MMfqyhxs0WVgwrvFnhw_9na40I,184
2224
2226
  merge/resources/ticketing/types/patched_ticket_request_status.py,sha256=MOoLcSVHs_ubo7VXG1YhkWwYnS5d8WCr5GPlGMiG3B4,195
@@ -2230,7 +2232,7 @@ merge/resources/ticketing/types/remote_field.py,sha256=VYODTdHsSUSj1aaWzcWKdDzSy
2230
2232
  merge/resources/ticketing/types/remote_field_api.py,sha256=o7WbCUNUnmPtn6F09P3lKsXSHpEjAN8ZEfu8xsZL4Ko,1085
2231
2233
  merge/resources/ticketing/types/remote_field_api_coverage.py,sha256=4bdB5WY4RcmZWXAIOeR_vTqnwIJsGr5eeSJDJFKxgq4,130
2232
2234
  merge/resources/ticketing/types/remote_field_api_response.py,sha256=VqQsAsZWKqDGVKX3-WMZpE2DkR4OeCidKU7oalHNHV4,1753
2233
- merge/resources/ticketing/types/remote_field_class.py,sha256=KSA0Es38nqo6ocJM0yK_inobC_ninRORbIj39qfWaSk,1357
2235
+ merge/resources/ticketing/types/remote_field_class.py,sha256=7014ZuKocUqmuAyftVY76IDVbspzspU6p4CcQLVSR6w,1413
2234
2236
  merge/resources/ticketing/types/remote_field_class_field_choices_item.py,sha256=D5b6HkXqWvnb0eoy4qo8fPgGDYC_bFsGyDUt0C8IglQ,677
2235
2237
  merge/resources/ticketing/types/remote_field_class_field_format.py,sha256=PR-0fMwHrlYE34w2JhFMjoPyk-LuwcAmzzVRt3eF2mM,193
2236
2238
  merge/resources/ticketing/types/remote_field_class_field_type.py,sha256=1lWymJnLa1XuEzd3rMlAb1S5KmTtqm8Z24-EGqby9oQ,185
@@ -2292,7 +2294,7 @@ merge/resources/ticketing/types/viewer_user.py,sha256=VrOx8xWvNadSYjdErIMg2pPsHV
2292
2294
  merge/resources/ticketing/types/warning_validation_problem.py,sha256=RXDtt3t3FwIeGGXkIr_OHOAybDZg44L_5hOqa2sLlJ0,736
2293
2295
  merge/resources/ticketing/types/webhook_receiver.py,sha256=g4KQnc-vZPJGlXK-OOFIn2WGyTLKoeaq9TPWQ46VwFY,623
2294
2296
  merge/version.py,sha256=kLtHrVsKjnCqlIC_JtezQUWrCPQkXhjpD_2pdlcGh18,84
2295
- mergepythonclient-2.1.1.dist-info/LICENSE.md,sha256=WKO7xLnLSUInldiq5i25eVqKAjwIUKenaS4Cgir2Iuw,3275
2296
- mergepythonclient-2.1.1.dist-info/METADATA,sha256=b0zhANN1tsRtRNqtk6VGLqL0sQkW5myKaBmMga7C8Ao,7266
2297
- mergepythonclient-2.1.1.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
2298
- mergepythonclient-2.1.1.dist-info/RECORD,,
2297
+ mergepythonclient-2.3.0.dist-info/LICENSE.md,sha256=WKO7xLnLSUInldiq5i25eVqKAjwIUKenaS4Cgir2Iuw,3275
2298
+ mergepythonclient-2.3.0.dist-info/METADATA,sha256=SPyNvXGOV7JvwKaFthUQvO7D57bY08xVgEYCWH7fDVA,7270
2299
+ mergepythonclient-2.3.0.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
2300
+ mergepythonclient-2.3.0.dist-info/RECORD,,