mergepythonclient 2.1.0__py3-none-any.whl → 2.2.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 (175) hide show
  1. merge/core/client_wrapper.py +2 -2
  2. merge/core/force_multipart.py +4 -2
  3. merge/core/http_response.py +1 -1
  4. merge/core/unchecked_base_model.py +41 -3
  5. merge/resources/accounting/__init__.py +64 -0
  6. merge/resources/accounting/client.py +5 -0
  7. merge/resources/accounting/resources/__init__.py +10 -0
  8. merge/resources/accounting/resources/accounting_periods/client.py +6 -2
  9. merge/resources/accounting/resources/accounts/client.py +6 -2
  10. merge/resources/accounting/resources/attachments/client.py +6 -2
  11. merge/resources/accounting/resources/audit_trail/client.py +6 -2
  12. merge/resources/accounting/resources/balance_sheets/client.py +6 -2
  13. merge/resources/accounting/resources/bank_feed_accounts/client.py +6 -2
  14. merge/resources/accounting/resources/bank_feed_transactions/client.py +6 -2
  15. merge/resources/accounting/resources/cash_flow_statements/client.py +6 -2
  16. merge/resources/accounting/resources/company_info/client.py +6 -2
  17. merge/resources/accounting/resources/contacts/client.py +195 -4
  18. merge/resources/accounting/resources/contacts/raw_client.py +203 -0
  19. merge/resources/accounting/resources/credit_notes/client.py +6 -2
  20. merge/resources/accounting/resources/employees/client.py +67 -2
  21. merge/resources/accounting/resources/employees/raw_client.py +62 -0
  22. merge/resources/accounting/resources/expense_reports/__init__.py +15 -0
  23. merge/resources/accounting/resources/expense_reports/client.py +1015 -0
  24. merge/resources/accounting/resources/expense_reports/raw_client.py +1020 -0
  25. merge/resources/accounting/resources/expense_reports/types/__init__.py +13 -0
  26. merge/resources/accounting/resources/expense_reports/types/expense_reports_lines_list_request_expand.py +265 -0
  27. merge/resources/accounting/resources/expense_reports/types/expense_reports_list_request_expand.py +73 -0
  28. merge/resources/accounting/resources/expense_reports/types/expense_reports_retrieve_request_expand.py +73 -0
  29. merge/resources/accounting/resources/expenses/client.py +18 -6
  30. merge/resources/accounting/resources/general_ledger_transactions/client.py +6 -2
  31. merge/resources/accounting/resources/income_statements/client.py +6 -2
  32. merge/resources/accounting/resources/invoices/client.py +18 -6
  33. merge/resources/accounting/resources/issues/client.py +6 -2
  34. merge/resources/accounting/resources/items/client.py +6 -2
  35. merge/resources/accounting/resources/journal_entries/client.py +18 -6
  36. merge/resources/accounting/resources/linked_accounts/client.py +6 -2
  37. merge/resources/accounting/resources/payment_methods/client.py +6 -2
  38. merge/resources/accounting/resources/payment_terms/client.py +6 -2
  39. merge/resources/accounting/resources/payments/client.py +18 -6
  40. merge/resources/accounting/resources/projects/client.py +67 -2
  41. merge/resources/accounting/resources/projects/raw_client.py +62 -0
  42. merge/resources/accounting/resources/purchase_orders/client.py +18 -6
  43. merge/resources/accounting/resources/sync_status/client.py +6 -2
  44. merge/resources/accounting/resources/tax_rates/client.py +6 -2
  45. merge/resources/accounting/resources/tracking_categories/client.py +6 -2
  46. merge/resources/accounting/resources/transactions/client.py +6 -2
  47. merge/resources/accounting/resources/transactions/types/transactions_list_request_expand.py +141 -0
  48. merge/resources/accounting/resources/transactions/types/transactions_retrieve_request_expand.py +141 -0
  49. merge/resources/accounting/resources/vendor_credits/client.py +6 -2
  50. merge/resources/accounting/types/__init__.py +56 -0
  51. merge/resources/accounting/types/expense_report.py +423 -0
  52. merge/resources/accounting/types/expense_report_company.py +7 -0
  53. merge/resources/accounting/types/expense_report_line.py +441 -0
  54. merge/resources/accounting/types/expense_report_line_account.py +7 -0
  55. merge/resources/accounting/types/expense_report_line_company.py +7 -0
  56. merge/resources/accounting/types/expense_report_line_contact.py +7 -0
  57. merge/resources/accounting/types/expense_report_line_employee.py +7 -0
  58. merge/resources/accounting/types/expense_report_line_project.py +7 -0
  59. merge/resources/accounting/types/expense_report_line_request.py +427 -0
  60. merge/resources/accounting/types/expense_report_line_request_account.py +7 -0
  61. merge/resources/accounting/types/expense_report_line_request_company.py +7 -0
  62. merge/resources/accounting/types/expense_report_line_request_contact.py +7 -0
  63. merge/resources/accounting/types/expense_report_line_request_employee.py +7 -0
  64. merge/resources/accounting/types/expense_report_line_request_project.py +7 -0
  65. merge/resources/accounting/types/expense_report_line_request_tax_rate.py +7 -0
  66. merge/resources/accounting/types/expense_report_line_tax_rate.py +7 -0
  67. merge/resources/accounting/types/expense_report_request.py +401 -0
  68. merge/resources/accounting/types/expense_report_request_accounting_period.py +7 -0
  69. merge/resources/accounting/types/expense_report_request_company.py +7 -0
  70. merge/resources/accounting/types/expense_report_request_employee.py +7 -0
  71. merge/resources/accounting/types/expense_report_response.py +27 -0
  72. merge/resources/accounting/types/expense_report_status.py +7 -0
  73. merge/resources/accounting/types/expense_report_status_enum.py +36 -0
  74. merge/resources/accounting/types/external_target_field_api_response.py +3 -0
  75. merge/resources/accounting/types/field_mapping_api_instance_response.py +3 -0
  76. merge/resources/accounting/types/item.py +11 -0
  77. merge/resources/accounting/types/item_type.py +7 -0
  78. merge/resources/accounting/types/paginated_expense_report_line_list.py +23 -0
  79. merge/resources/accounting/types/paginated_expense_report_list.py +23 -0
  80. merge/resources/accounting/types/patched_contact_request.py +91 -0
  81. merge/resources/accounting/types/patched_contact_request_addresses_item.py +7 -0
  82. merge/resources/accounting/types/remote_field_class.py +1 -0
  83. merge/resources/ats/resources/activities/client.py +6 -2
  84. merge/resources/ats/resources/applications/client.py +6 -2
  85. merge/resources/ats/resources/attachments/client.py +6 -2
  86. merge/resources/ats/resources/audit_trail/client.py +6 -2
  87. merge/resources/ats/resources/candidates/client.py +6 -2
  88. merge/resources/ats/resources/departments/client.py +6 -2
  89. merge/resources/ats/resources/eeocs/client.py +6 -2
  90. merge/resources/ats/resources/interviews/client.py +6 -2
  91. merge/resources/ats/resources/issues/client.py +6 -2
  92. merge/resources/ats/resources/job_interview_stages/client.py +6 -2
  93. merge/resources/ats/resources/job_postings/client.py +6 -2
  94. merge/resources/ats/resources/jobs/client.py +8 -2
  95. merge/resources/ats/resources/linked_accounts/client.py +6 -2
  96. merge/resources/ats/resources/offers/client.py +6 -2
  97. merge/resources/ats/resources/offices/client.py +6 -2
  98. merge/resources/ats/resources/reject_reasons/client.py +6 -2
  99. merge/resources/ats/resources/scorecards/client.py +6 -2
  100. merge/resources/ats/resources/sync_status/client.py +6 -2
  101. merge/resources/ats/resources/tags/client.py +6 -2
  102. merge/resources/ats/resources/users/client.py +6 -2
  103. merge/resources/ats/types/event_type_enum.py +4 -0
  104. merge/resources/crm/resources/accounts/client.py +12 -4
  105. merge/resources/crm/resources/association_types/client.py +2 -0
  106. merge/resources/crm/resources/associations/client.py +2 -0
  107. merge/resources/crm/resources/audit_trail/client.py +6 -2
  108. merge/resources/crm/resources/contacts/client.py +12 -4
  109. merge/resources/crm/resources/custom_object_classes/client.py +6 -2
  110. merge/resources/crm/resources/custom_objects/client.py +8 -2
  111. merge/resources/crm/resources/engagement_types/client.py +12 -4
  112. merge/resources/crm/resources/engagements/client.py +12 -4
  113. merge/resources/crm/resources/issues/client.py +6 -2
  114. merge/resources/crm/resources/leads/client.py +12 -4
  115. merge/resources/crm/resources/linked_accounts/client.py +6 -2
  116. merge/resources/crm/resources/notes/client.py +12 -4
  117. merge/resources/crm/resources/opportunities/client.py +12 -4
  118. merge/resources/crm/resources/stages/client.py +12 -4
  119. merge/resources/crm/resources/sync_status/client.py +6 -2
  120. merge/resources/crm/resources/tasks/client.py +12 -4
  121. merge/resources/crm/resources/users/client.py +12 -4
  122. merge/resources/crm/types/remote_field_class.py +1 -0
  123. merge/resources/filestorage/resources/audit_trail/client.py +6 -2
  124. merge/resources/filestorage/resources/drives/client.py +6 -2
  125. merge/resources/filestorage/resources/files/client.py +42 -4
  126. merge/resources/filestorage/resources/files/raw_client.py +38 -0
  127. merge/resources/filestorage/resources/folders/client.py +6 -2
  128. merge/resources/filestorage/resources/groups/client.py +6 -2
  129. merge/resources/filestorage/resources/issues/client.py +6 -2
  130. merge/resources/filestorage/resources/linked_accounts/client.py +6 -2
  131. merge/resources/filestorage/resources/sync_status/client.py +6 -2
  132. merge/resources/filestorage/resources/users/client.py +6 -2
  133. merge/resources/hris/resources/audit_trail/client.py +6 -2
  134. merge/resources/hris/resources/bank_info/client.py +6 -2
  135. merge/resources/hris/resources/benefits/client.py +6 -2
  136. merge/resources/hris/resources/companies/client.py +6 -2
  137. merge/resources/hris/resources/dependents/client.py +6 -2
  138. merge/resources/hris/resources/employee_payroll_runs/client.py +6 -2
  139. merge/resources/hris/resources/employees/client.py +6 -2
  140. merge/resources/hris/resources/employer_benefits/client.py +6 -2
  141. merge/resources/hris/resources/employments/client.py +6 -2
  142. merge/resources/hris/resources/groups/client.py +6 -2
  143. merge/resources/hris/resources/issues/client.py +6 -2
  144. merge/resources/hris/resources/linked_accounts/client.py +6 -2
  145. merge/resources/hris/resources/locations/client.py +6 -2
  146. merge/resources/hris/resources/pay_groups/client.py +6 -2
  147. merge/resources/hris/resources/payroll_runs/client.py +6 -2
  148. merge/resources/hris/resources/sync_status/client.py +6 -2
  149. merge/resources/hris/resources/teams/client.py +6 -2
  150. merge/resources/hris/resources/time_off/client.py +6 -2
  151. merge/resources/hris/resources/time_off_balances/client.py +6 -2
  152. merge/resources/hris/resources/timesheet_entries/client.py +6 -2
  153. merge/resources/hris/types/benefit.py +4 -4
  154. merge/resources/ticketing/resources/accounts/client.py +6 -2
  155. merge/resources/ticketing/resources/attachments/client.py +6 -2
  156. merge/resources/ticketing/resources/audit_trail/client.py +6 -2
  157. merge/resources/ticketing/resources/collections/client.py +8 -2
  158. merge/resources/ticketing/resources/comments/client.py +6 -2
  159. merge/resources/ticketing/resources/contacts/client.py +6 -2
  160. merge/resources/ticketing/resources/issues/client.py +6 -2
  161. merge/resources/ticketing/resources/linked_accounts/client.py +6 -2
  162. merge/resources/ticketing/resources/projects/client.py +8 -2
  163. merge/resources/ticketing/resources/roles/client.py +6 -2
  164. merge/resources/ticketing/resources/sync_status/client.py +6 -2
  165. merge/resources/ticketing/resources/tags/client.py +6 -2
  166. merge/resources/ticketing/resources/teams/client.py +6 -2
  167. merge/resources/ticketing/resources/tickets/client.py +24 -4
  168. merge/resources/ticketing/resources/tickets/raw_client.py +10 -0
  169. merge/resources/ticketing/resources/users/client.py +6 -2
  170. merge/resources/ticketing/types/patched_ticket_request.py +5 -5
  171. merge/resources/ticketing/types/remote_field_class.py +1 -0
  172. {mergepythonclient-2.1.0.dist-info → mergepythonclient-2.2.0.dist-info}/METADATA +5 -2
  173. {mergepythonclient-2.1.0.dist-info → mergepythonclient-2.2.0.dist-info}/RECORD +175 -140
  174. {mergepythonclient-2.1.0.dist-info → mergepythonclient-2.2.0.dist-info}/LICENSE.md +0 -0
  175. {mergepythonclient-2.1.0.dist-info → mergepythonclient-2.2.0.dist-info}/WHEEL +0 -0
@@ -2,26 +2,26 @@ merge/__init__.py,sha256=Z0AgfVpF84nlRCCgnrDZOwBo1TpY5yK7otpaSWcgo-U,449
2
2
  merge/client.py,sha256=kU02MZFiaoEyFdw6kMEkaqof-j40fTjMLPFBAsFreTM,7342
3
3
  merge/core/__init__.py,sha256=tpn7rjb6C2UIkYZYIqdrNpI7Yax2jw88sXh2baxaxAI,1715
4
4
  merge/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
5
- merge/core/client_wrapper.py,sha256=sE52VmKOT-IeeN7XwaJFBmBr9tD-_j6psNnnKBPMwJM,3096
5
+ merge/core/client_wrapper.py,sha256=-WO8-xV9198L1g45I2s4V4PFcDnCG_W3NWeJL59pDp4,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=CskE9m-ZNvMg3AjGwuBqCaT1CbfY7sVpOVWr0FfOLDQ,10752
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
20
  merge/resources/__init__.py,sha256=7gKKPU-keI8e8yLrTdN37vaiPxUftUe2yn5HJ1J0qAk,226
21
- merge/resources/accounting/__init__.py,sha256=M_4JnChjVwyHL4gl1xGnNb2yHdSBcU36RbSNET4Ncc8,34466
22
- merge/resources/accounting/client.py,sha256=69zphD5F5ylA0uirhlRix4oPLtw1UWmf_sWQH8hO75Q,13162
21
+ merge/resources/accounting/__init__.py,sha256=5nnRc24nJHcQ1U-Md2bmUibNVkfjI58PHAgiY6gCeO8,36546
22
+ merge/resources/accounting/client.py,sha256=n4DVgWrKqhSXwCzs-kZKoIwBiBRriros08n8KzwCZbg,13429
23
23
  merge/resources/accounting/raw_client.py,sha256=Z2qfSB2hS9YozVdwPsSvbLeH5yeWbIaDNihubIguhNI,418
24
- merge/resources/accounting/resources/__init__.py,sha256=P-n2GJa5bg8EIfyZ7QKEUFRDse_-ZAKLQZ9ugT4nNlo,5346
24
+ merge/resources/accounting/resources/__init__.py,sha256=Rc1e_A-CASzZSom6aL6tbMvYgHdTOjZ96fIoTa89bLU,5669
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,10 +29,10 @@ 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
34
  merge/resources/accounting/resources/accounts/__init__.py,sha256=cdiigMLMYiVepQ20GXU5UPlryzFOqqHMw9gfhElrygo,455
35
- merge/resources/accounting/resources/accounts/client.py,sha256=SZ9QHbcgKDuI03XMpZ-JBjDjAKv7D--sVASsQJimdmo,21982
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
37
  merge/resources/accounting/resources/accounts/types/__init__.py,sha256=VR07jYfKlvsV-dvYvyQIcuC_7j6s9D-5yVZALSkHohs,624
38
38
  merge/resources/accounting/resources/accounts/types/accounts_list_request_remote_fields.py,sha256=Az9-yjthTEGOb7FdZi1s0ofW8feZI_Jo1Te64G7YsKE,819
@@ -51,40 +51,40 @@ merge/resources/accounting/resources/async_tasks/__init__.py,sha256=_VhToAyIt_5a
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
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
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
77
  merge/resources/accounting/resources/company_info/types/__init__.py,sha256=5mxkxfc2eBE0tqQ0FcgeJIZEqceX0JHfrupY2LdIN5Y,323
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
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
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
83
  merge/resources/accounting/resources/contacts/types/__init__.py,sha256=EPkxRBuO5CXib_I81aqE3R5M34xishFcL_mM1oqOkic,303
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
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
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
89
  merge/resources/accounting/resources/credit_notes/types/__init__.py,sha256=480KNUgSgIScubtai1BUStGNrEfh8lj28FHjyY9rLP4,898
90
90
  merge/resources/accounting/resources/credit_notes/types/credit_notes_list_request_expand.py,sha256=cLYDWczwQVJoE4Dtx6l2C1DyqaD6TYdocFba8Qb_L8Q,45331
@@ -97,10 +97,17 @@ 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=8lhifizemeUOH1oxyJiO7x6ajSTD-IFADBTZ1FJ26i0,9781
101
- merge/resources/accounting/resources/employees/raw_client.py,sha256=eDVQXiJNdkpuMy02rodOeNRK1-lapkPngJyEzv6vxM4,11602
100
+ merge/resources/accounting/resources/employees/client.py,sha256=cBzlafdSbyn5VP-qR4IzRYNzHmGe5tqBAR-cHV0tyA4,12703
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=W9CMwgliIq1LM7nRlKt3_EAp9JjQf-ofUDIjPz_O3tM,37672
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
106
+ merge/resources/accounting/resources/expense_reports/types/expense_reports_lines_list_request_expand.py,sha256=V7UlSiB_j1YAENJ7Hgjlo56-uVnWqKGyrjrlPLNhAHw,16179
107
+ merge/resources/accounting/resources/expense_reports/types/expense_reports_list_request_expand.py,sha256=F2qY-xF9Bn9puaZqeX6_owcoHNjZ8dA3fZpMTebKDw8,3691
108
+ merge/resources/accounting/resources/expense_reports/types/expense_reports_retrieve_request_expand.py,sha256=G4od-4S-KDh54MthiZEBXPUzCNSA4kNus0E6QKC4tj8,3755
102
109
  merge/resources/accounting/resources/expenses/__init__.py,sha256=XdylRSRtlmTize2rwQKHkjHoGtFld7MAacuR-WykVhA,235
103
- merge/resources/accounting/resources/expenses/client.py,sha256=5nX_5IJzggSt2qSiK7zz4U-AECqAklLXODIi4kAuirA,30873
110
+ merge/resources/accounting/resources/expenses/client.py,sha256=F7W_QSmc0s1dn5brnjjzB50l1uHnfVU09gqPrXM2yIg,31425
104
111
  merge/resources/accounting/resources/expenses/raw_client.py,sha256=TqCP9Yx15qJbEGRES8sMTf3WAzWljH47-DlE0QIjc4E,38474
105
112
  merge/resources/accounting/resources/expenses/types/__init__.py,sha256=svAfy0Pv-9oprEZ4-56-Ta4AWMLD-KZgf1AT2pLPTp8,303
106
113
  merge/resources/accounting/resources/expenses/types/expenses_list_request_expand.py,sha256=20alb3EB0ARvXmADljzBxtBkKrqtPiic2AvT2DbcYLk,18915
@@ -112,7 +119,7 @@ merge/resources/accounting/resources/force_resync/__init__.py,sha256=_VhToAyIt_5
112
119
  merge/resources/accounting/resources/force_resync/client.py,sha256=O1-0Ctq-sz-LipDPy-YZUzHebTMawFhbENL2H0rjzkI,3533
113
120
  merge/resources/accounting/resources/force_resync/raw_client.py,sha256=dQw_Q1SEtw4fNszVkkq4QD-gLiqSfLHWeZGKUlI_cUk,4075
114
121
  merge/resources/accounting/resources/general_ledger_transactions/__init__.py,sha256=_c0UyXf_HW2JMwmzPtmEiOxlXSyrDv3qQSRbrr0d3Wk,303
115
- merge/resources/accounting/resources/general_ledger_transactions/client.py,sha256=1J_PFKuTbRfN5QjnnkSxD6So8ORxtqJN-mw7-fkYWuc,14431
122
+ merge/resources/accounting/resources/general_ledger_transactions/client.py,sha256=Y19QoweVuTLwln1nKsz2J442qQq1p928nShWloOSDLo,14615
116
123
  merge/resources/accounting/resources/general_ledger_transactions/raw_client.py,sha256=D63SdOvqpHEJmFO0A0mc7Bc3Q70hgJTOXzWsiYBDYqU,17218
117
124
  merge/resources/accounting/resources/general_ledger_transactions/types/__init__.py,sha256=k9xZ_SjjMn7S1wjIOfWZK5PywgR7TnFni8_YQLIGO48,409
118
125
  merge/resources/accounting/resources/general_ledger_transactions/types/general_ledger_transactions_list_request_expand.py,sha256=ZLK6o66R37TBmNnZ1xZ_DUjHWVFePy_KRIL9-4SQlW4,5595
@@ -121,10 +128,10 @@ merge/resources/accounting/resources/generate_key/__init__.py,sha256=_VhToAyIt_5
121
128
  merge/resources/accounting/resources/generate_key/client.py,sha256=kcSmal1KN57Te5DbIKoCeuNyJuKspbSaKACaSgQah4w,3084
122
129
  merge/resources/accounting/resources/generate_key/raw_client.py,sha256=7d4DW4Ohj8h02z53KH1tMjAf_S0jdrbxHy09gSD76ZA,3864
123
130
  merge/resources/accounting/resources/income_statements/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
124
- 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
125
132
  merge/resources/accounting/resources/income_statements/raw_client.py,sha256=0o6wHjOC9-vYqcNUnAw6AJBBxC__PPkH_BVBgPFYGdI,15192
126
133
  merge/resources/accounting/resources/invoices/__init__.py,sha256=8QOdkIUvUNN7Z-y3EWfj0rqB2T0P966wnsHDp_mnBOE,383
127
- merge/resources/accounting/resources/invoices/client.py,sha256=bGPG1ptGWMJvRG8Gsq6Ud-0_4cveVH9Gf8650TP4wxM,40951
134
+ merge/resources/accounting/resources/invoices/client.py,sha256=lkduncu2xpUaeP_nTy7ZmkpmNS0dPSJv8ffNCY5ZC5A,41503
128
135
  merge/resources/accounting/resources/invoices/raw_client.py,sha256=O99iYBhiSMfzAI-74CgkBsvivzZILS5nrM67G-gDJQc,50734
129
136
  merge/resources/accounting/resources/invoices/types/__init__.py,sha256=Ci-3RC4bO3SOxejEx4dLyzkpo1v5jTyFYhK8lvrm7JQ,510
130
137
  merge/resources/accounting/resources/invoices/types/invoices_list_request_expand.py,sha256=iJhSsuXqrbj4ZgRLGzPO2nomzSiZp2oFhV_VeVEC0sI,2441009
@@ -132,18 +139,18 @@ merge/resources/accounting/resources/invoices/types/invoices_list_request_status
132
139
  merge/resources/accounting/resources/invoices/types/invoices_list_request_type.py,sha256=XsKM2hgAx8-bddMxBHBCedkW_PbnS3D6foKNeR3zmXs,622
133
140
  merge/resources/accounting/resources/invoices/types/invoices_retrieve_request_expand.py,sha256=zh5Bt3RidKanmMnUziqm-JkFl1RS02jICyW0kfXcL2o,2464989
134
141
  merge/resources/accounting/resources/issues/__init__.py,sha256=8N-ynHIskTDmO3zwQbhyEHy7OTb63CJ_NdZRdLDBOyk,167
135
- merge/resources/accounting/resources/issues/client.py,sha256=J4YW0B7--IzJ-0kZKG4N64rSMOYqN5LHLEqfRnw6AUI,10931
142
+ merge/resources/accounting/resources/issues/client.py,sha256=1QkIdt0b95t2TYptl1O1qGGZsioru2r8MZhLUBXXbH0,11115
136
143
  merge/resources/accounting/resources/issues/raw_client.py,sha256=i9N_XeX5GK2qzqX2brLfDIFRncwvoX6ADEpFbM9_MKU,13714
137
144
  merge/resources/accounting/resources/issues/types/__init__.py,sha256=jjxa8xGa5vTp5-uzIuy8dWJLKrwzX6DnMKPEEkgN4eo,188
138
145
  merge/resources/accounting/resources/issues/types/issues_list_request_status.py,sha256=cBbfu1Q5A0ZPOzB7nM_VHRKEJHnxk8lqN-cGmRX6_x4,508
139
146
  merge/resources/accounting/resources/items/__init__.py,sha256=LP1V9GE7DGsi5BRNm_9wsrWFnVWgEi-Der4usoiFzxI,223
140
- merge/resources/accounting/resources/items/client.py,sha256=fyXL3hUPnl9ZFc3ZAB0kZ-K79TBaKlhIocC6gwd9YHQ,24813
147
+ merge/resources/accounting/resources/items/client.py,sha256=VxBSmEt8B3MlrxSoqxZOrEPqzDbzSr44JcQatnPrGwM,24997
141
148
  merge/resources/accounting/resources/items/raw_client.py,sha256=KsOGCTOGQxLPSaWebijjfjj96ahw4fWnlnlcglGsAIM,31770
142
149
  merge/resources/accounting/resources/items/types/__init__.py,sha256=-hezj5PvwmOjY5XyPX3-ekOB87OcuyrNhfyVmgaIbWs,285
143
150
  merge/resources/accounting/resources/items/types/items_list_request_expand.py,sha256=FDmwznf3cYIcS6VICN-P8zLoCFaQ2y_NaoFIhbBMu_o,9523
144
151
  merge/resources/accounting/resources/items/types/items_retrieve_request_expand.py,sha256=pwtGsTtgvHiunK4XL2wXUIYsWY9NyD5iTjRAEl_TUYQ,9651
145
152
  merge/resources/accounting/resources/journal_entries/__init__.py,sha256=ChXYqyJ5O_FiG562ymVM8busv6T1Oj-Xknc2jK2k0KE,259
146
- merge/resources/accounting/resources/journal_entries/client.py,sha256=U1GuL0OAwDexUlGcwrFL0dsaHZ7kWtvvtaHoWmzfPZc,31285
153
+ merge/resources/accounting/resources/journal_entries/client.py,sha256=hr6Crb2g1uD0s-IMssoo-K6mP2T9BMT9mTZ3dyoDDEA,31837
147
154
  merge/resources/accounting/resources/journal_entries/raw_client.py,sha256=srNMp4gaQCBGCbOQznBO7OMcUPHaR-TeyfCfLigCAU8,38878
148
155
  merge/resources/accounting/resources/journal_entries/types/__init__.py,sha256=cxFawgzzMBH0S5BC--eoh4f54_xmWRV4V5X5AMZyOFQ,341
149
156
  merge/resources/accounting/resources/journal_entries/types/journal_entries_list_request_expand.py,sha256=FxCDOHj2JuG_HkGsp_wGUPDNe-8ju5j0jVGBtszMa1c,20607
@@ -154,7 +161,7 @@ merge/resources/accounting/resources/link_token/raw_client.py,sha256=Qs4IG6GwnXc
154
161
  merge/resources/accounting/resources/link_token/types/__init__.py,sha256=_DhmnLsRiAcpljK-OPGnDEHf9-FqnWXLVWUL4pOe8-I,207
155
162
  merge/resources/accounting/resources/link_token/types/end_user_details_request_language.py,sha256=2BMH_lFqvpT1C4ljoUh5YUm2dgiuLYil6s3_pKcn540,194
156
163
  merge/resources/accounting/resources/linked_accounts/__init__.py,sha256=jDuRvmYXqKpaHo-Ya2LUjqfqk_rXOUOW7dSpRi-dvqM,187
157
- merge/resources/accounting/resources/linked_accounts/client.py,sha256=cw7wEq_u18q1cCI9huG0Zp50PBDM8O_Psnsnf-kOXBs,9780
164
+ merge/resources/accounting/resources/linked_accounts/client.py,sha256=9h4eo3lXGnOddnpnN_olteby0JqBBZCpTAYHYoNf8Iw,9964
158
165
  merge/resources/accounting/resources/linked_accounts/raw_client.py,sha256=DKRqtUwcxdHSDc1bz-qank3cZHbpyV9vl3EEB4Ti83k,10632
159
166
  merge/resources/accounting/resources/linked_accounts/types/__init__.py,sha256=FjSJvzQG9s-6wuY4YUdmieuUNQvaQXZKDSC138TRMz0,219
160
167
  merge/resources/accounting/resources/linked_accounts/types/linked_accounts_list_request_category.py,sha256=_EGocl5xFPQUgGIidOl4wEewCLbzqWyiXV2PIev7l7M,1354
@@ -162,13 +169,13 @@ merge/resources/accounting/resources/passthrough/__init__.py,sha256=_VhToAyIt_5a
162
169
  merge/resources/accounting/resources/passthrough/client.py,sha256=h5W8I2jamuZxNGkToWnFha7077ZDyDiIO_1BBVeQ7cI,3663
163
170
  merge/resources/accounting/resources/passthrough/raw_client.py,sha256=8KX5Dh3C8iB7anNUEmjx0_-S93hGueWQdQ0RHJ-RlYY,4009
164
171
  merge/resources/accounting/resources/payment_methods/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
165
- 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
166
173
  merge/resources/accounting/resources/payment_methods/raw_client.py,sha256=5OH2vhH0kT9K8jx6WeWKN8wPak4H_BBlrnZhwwHO7xE,10584
167
174
  merge/resources/accounting/resources/payment_terms/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
168
- merge/resources/accounting/resources/payment_terms/client.py,sha256=uELItC3qUiD3nWwOLz1TyNHfzecEc1omHO2Q8u7gWOc,9875
175
+ merge/resources/accounting/resources/payment_terms/client.py,sha256=GZgW9asjkttCT_PDPAx425jvzaOCQjGFWVnnr7ggtFU,10059
169
176
  merge/resources/accounting/resources/payment_terms/raw_client.py,sha256=FQJDDHT0UPXIRAzgrKpEwbEsWpLmrK_LVh5_0I-VWns,11696
170
177
  merge/resources/accounting/resources/payments/__init__.py,sha256=FQ4iEkIwx0gdbFTaLohmmeRAYyFzeBL4jmL3qyp3rpg,235
171
- merge/resources/accounting/resources/payments/client.py,sha256=dWZyi3CRvIVs7NF2X4-M3LsP4OqN2wXGjoa0JPQBN6A,36576
178
+ merge/resources/accounting/resources/payments/client.py,sha256=1vN4Z_yGUwG6A8UcdJNsIS2jxR916hzg2vUQX5Twdew,37128
172
179
  merge/resources/accounting/resources/payments/raw_client.py,sha256=69yrHditdVQ8uSOnz-Y5zRXk7T4bmOmvyjQl2IeOoQ0,46399
173
180
  merge/resources/accounting/resources/payments/types/__init__.py,sha256=vCer3lj8gXUvA4MnA_NgWp5lj7rIHpbEVOL4X5Q2pFU,303
174
181
  merge/resources/accounting/resources/payments/types/payments_list_request_expand.py,sha256=HESF9hxQQTOYD0AqaVYGTnZZ6l_l6Rrp-JccxLlf4vQ,46019
@@ -177,13 +184,13 @@ merge/resources/accounting/resources/phone_numbers/__init__.py,sha256=_VhToAyIt_
177
184
  merge/resources/accounting/resources/phone_numbers/client.py,sha256=OkI5QuvNcCVgYFHFC4s04Toqoyqf9a0fAUs4TMGJMJM,4324
178
185
  merge/resources/accounting/resources/phone_numbers/raw_client.py,sha256=ZGWHZhWaRvyRIkHUdYpshBD-M_c6-MDoqEciN2tUOxw,4962
179
186
  merge/resources/accounting/resources/projects/__init__.py,sha256=Hnpeeo8O3mZqBxOaXHqtzidyjtj2_hSTPF7S1ZyzBps,235
180
- merge/resources/accounting/resources/projects/client.py,sha256=gDqNNSc-IfEB3wSQ72dbdH2_ppICUY_s4EW80sd3wn0,9921
181
- merge/resources/accounting/resources/projects/raw_client.py,sha256=iahjcFy9g3SQ2-ZZX9gGCwPkIzaKFHw78IHQUJggE4o,11742
187
+ merge/resources/accounting/resources/projects/client.py,sha256=ptvoqS3oag_buHWBiTnIzbYDx41Rg9i75BdYXq1cW24,12841
188
+ merge/resources/accounting/resources/projects/raw_client.py,sha256=jisXKn4uAhOAXIKHhP2p6lxzOyzj-RV0Gh2V33JXvPw,15098
182
189
  merge/resources/accounting/resources/projects/types/__init__.py,sha256=3Bck0IKa5Blg0JRdgT98e_m0AV6he8AfzjjXSwUxGP8,303
183
190
  merge/resources/accounting/resources/projects/types/projects_list_request_expand.py,sha256=r6K1bRyyntXlU640inM9P4HJqG6RLQ9ndcX0JQD4Y-o,735
184
191
  merge/resources/accounting/resources/projects/types/projects_retrieve_request_expand.py,sha256=M-dqOWVhmOFBgBdcpo28uUIEhwLKZPJcfMJLs1zrtxc,751
185
192
  merge/resources/accounting/resources/purchase_orders/__init__.py,sha256=ROwU5qBCyqHmpQP3I1D4VY5pJhIIVJB-ROUyDSsT6QE,259
186
- merge/resources/accounting/resources/purchase_orders/client.py,sha256=Bmjbdpg3EF5hvSJNaA8Bi8FGjoV16K6LloOGpvmeoYc,33939
193
+ merge/resources/accounting/resources/purchase_orders/client.py,sha256=vAXTx4iKQpqoA-mf12-NTbmyVDSrxHO8xcpqWxptvWM,34491
187
194
  merge/resources/accounting/resources/purchase_orders/raw_client.py,sha256=V9t9DUPv42bHLs7dG-QWbjrrykx2bWuTMkC-IYUQPHI,41434
188
195
  merge/resources/accounting/resources/purchase_orders/types/__init__.py,sha256=Pv8HGF5iftNYjTYA0m7-Yb8Aqb8KJG2BLfcvGJo_U6U,341
189
196
  merge/resources/accounting/resources/purchase_orders/types/purchase_orders_list_request_expand.py,sha256=SzeMqMfoPWvUElcCBhOcYPicrKpvLwxFcLOSfVvNXQM,46951
@@ -195,22 +202,22 @@ merge/resources/accounting/resources/scopes/__init__.py,sha256=_VhToAyIt_5axN6CL
195
202
  merge/resources/accounting/resources/scopes/client.py,sha256=1GuFde6uicpmDSVcwifjgm8mV_lIbvJifw3F4pDH52g,10826
196
203
  merge/resources/accounting/resources/scopes/raw_client.py,sha256=mokZLqpoPB5Pbb_8mQMOg34VMRZjEOQinpYStkgdsyE,11028
197
204
  merge/resources/accounting/resources/sync_status/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
198
- 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
199
206
  merge/resources/accounting/resources/sync_status/raw_client.py,sha256=U5c8z5As8nzd5WpifUqIQaAxnEMtZwkmx2YQqk9QjPY,5639
200
207
  merge/resources/accounting/resources/tax_rates/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
201
- 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
202
209
  merge/resources/accounting/resources/tax_rates/raw_client.py,sha256=ShWLOe3TOBG9O0b-zJLnLF-jm4Y3HqqgUknS60IuNyo,15288
203
210
  merge/resources/accounting/resources/tracking_categories/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
204
- 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
205
212
  merge/resources/accounting/resources/tracking_categories/raw_client.py,sha256=QKTlWDk9kuwz74u4GgjDSExq5KaIS7UqzTr7Gp11MFI,19190
206
213
  merge/resources/accounting/resources/transactions/__init__.py,sha256=MAzQVZpaP3GY0UfUHU6iLzYipveqQyLB4FfOGzBtbr0,251
207
- merge/resources/accounting/resources/transactions/client.py,sha256=Hzr-iGYjTrmbOWerd4QzcNrbTVZr1mVsvvXTzjUfbuU,13945
214
+ merge/resources/accounting/resources/transactions/client.py,sha256=RGHAvow3THh6Ho2ZRna9cI5f8wyIqbVdjZmUlWhRX1o,14129
208
215
  merge/resources/accounting/resources/transactions/raw_client.py,sha256=eEBMaItmgkO0nmerypa-TzubOBLsshIWqyP6PpEWRlU,16816
209
216
  merge/resources/accounting/resources/transactions/types/__init__.py,sha256=wc9A0k_kUrYFihOmSDRaR_50Ui2X2Z_G0V8gfwhCGkc,327
210
- merge/resources/accounting/resources/transactions/types/transactions_list_request_expand.py,sha256=nAUYjwVv1de98sxCefWEnET2iYcPm74kfRl3wfphWYI,9171
211
- merge/resources/accounting/resources/transactions/types/transactions_retrieve_request_expand.py,sha256=o925DciP4YbJPTjt43E8xbAqPgoPc3VlZlgcegrwVM4,9299
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
212
219
  merge/resources/accounting/resources/vendor_credits/__init__.py,sha256=GAGfZVX3e96k5gRBtjJuV6LECbphCejDI80O0eQIFD0,255
213
- merge/resources/accounting/resources/vendor_credits/client.py,sha256=0qC7SdPIeWfEbMPPCq0qep_3l3qZ1E9_aLH6mW8dk-Y,18804
220
+ merge/resources/accounting/resources/vendor_credits/client.py,sha256=rAzPHfo6Zi_Jkiok-MRIN_sVYslBzRc5tU_kpV1Ul2I,18988
214
221
  merge/resources/accounting/resources/vendor_credits/raw_client.py,sha256=Ws0X34QjUzN5elh9AKuOm6Q3hJATD9KMudutGmM13p8,23987
215
222
  merge/resources/accounting/resources/vendor_credits/types/__init__.py,sha256=fRK-o9-tnUeUUjLpkDyCYBRO8Pp729oTDt_BjyKgvCQ,335
216
223
  merge/resources/accounting/resources/vendor_credits/types/vendor_credits_list_request_expand.py,sha256=dT1LHp5JxN6AxdcpSdeujiyeSh_mIklDgGpE7O13b44,8691
@@ -218,7 +225,7 @@ merge/resources/accounting/resources/vendor_credits/types/vendor_credits_retriev
218
225
  merge/resources/accounting/resources/webhook_receivers/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
219
226
  merge/resources/accounting/resources/webhook_receivers/client.py,sha256=kjqQ42l6V0-CwCF2ENgSaYNiRBlkzNff3s-mNRr5_pE,5238
220
227
  merge/resources/accounting/resources/webhook_receivers/raw_client.py,sha256=Rck5ssy1nlIcEkLUw0OVPX1HUOd3WUJW4XVxz9LqDQg,7159
221
- merge/resources/accounting/types/__init__.py,sha256=RnZhOWy-YIfiAPe-9C4L5WFejNuhhDM7AiR7uGOnIW0,46624
228
+ merge/resources/accounting/types/__init__.py,sha256=_uL20_I8UZ9MbCnDRaBYnflg0afnLHLYzOff2RvijpM,49450
222
229
  merge/resources/accounting/types/account.py,sha256=2f6W3aEEhHfUj8HrZOrS2XN06IgQ7nuXD0_8LK_XrKM,15204
223
230
  merge/resources/accounting/types/account_account_type.py,sha256=Q89Q7sOANCg8AK5Y83pApbuN4lSJ323_CrppZSpokRE,206
224
231
  merge/resources/accounting/types/account_account_type_enum.py,sha256=FrCjqIr4_BR0T6PMgRUt9FEVqtPoyTdTwDv8Wz1bdsQ,3230
@@ -380,6 +387,29 @@ merge/resources/accounting/types/expense_line_request_tracking_categories_item.p
380
387
  merge/resources/accounting/types/expense_line_request_tracking_category.py,sha256=6bWFsrePhfAcVK92K5DuebuQ4o6luuO7T50w8v4vHAg,202
381
388
  merge/resources/accounting/types/expense_line_tracking_categories_item.py,sha256=NUCrwFWVPJnyTdjnXAzphg9HJQ6OK0t2oVO5co84_2o,201
382
389
  merge/resources/accounting/types/expense_line_tracking_category.py,sha256=dwvXDMtMMF9PAvy827y8PUiSnHfrpobO_ivz2kmv43U,195
390
+ merge/resources/accounting/types/expense_report.py,sha256=fEHlsHk_KjKAElc2ENkUlqgLG2CpYB1ISkxHByu0H-s,14397
391
+ merge/resources/accounting/types/expense_report_company.py,sha256=9ods9-Yz6t7LmnxZT8JISwBBbYNN6lhz2MgwqtaNOAI,173
392
+ merge/resources/accounting/types/expense_report_line.py,sha256=Bs0EdH3xJLAa2QTOnRfKWayVQd3I_ky-VhMMqH07R5s,15235
393
+ merge/resources/accounting/types/expense_report_line_account.py,sha256=Grk5KIDph210GDTT1qlViLgHOy1WG7kGmkQ70OTnW-M,164
394
+ merge/resources/accounting/types/expense_report_line_company.py,sha256=DoYWRyvxxdY_9eesDMEBXIol3wvxIBMnRoHW31n1bBQ,177
395
+ merge/resources/accounting/types/expense_report_line_contact.py,sha256=m-3w0KETQY5q8F1Bg9Fjb2REPbMvSANVmpluA2VEa7g,164
396
+ merge/resources/accounting/types/expense_report_line_employee.py,sha256=3cjF0lWXzmxkZFVpkJrcO2R-SOsyEah8f7wQcKvGabo,168
397
+ merge/resources/accounting/types/expense_report_line_project.py,sha256=HDq6r3eoxiWOwGFn1lF8G-4qarbYdC-T_BB3I8PzSEk,164
398
+ merge/resources/accounting/types/expense_report_line_request.py,sha256=FKw748U-7T1631v7JPgtr1EV6tyTCVJpzBd-iLKKXLI,14871
399
+ merge/resources/accounting/types/expense_report_line_request_account.py,sha256=Ij3xn1VVbM5LHkAqJLaenw6O1-pvjqJ8184tflGQAdQ,171
400
+ merge/resources/accounting/types/expense_report_line_request_company.py,sha256=suXjlHM0ysgpnUPEQj321XCLYnAyzGqrNJkEJnctBRg,184
401
+ merge/resources/accounting/types/expense_report_line_request_contact.py,sha256=99CPEsJNZh-nZRtEyL1NthLqPpqiPhWIHnSYbi7QpSg,171
402
+ merge/resources/accounting/types/expense_report_line_request_employee.py,sha256=bEYWmNStYzSf7crPZcq5AQ9js0FkcKVSpMdlTgDmbKU,175
403
+ merge/resources/accounting/types/expense_report_line_request_project.py,sha256=A2GohiP93bGWoQuJmQhvm3m8XYK5QrX_F_fir245hqQ,171
404
+ merge/resources/accounting/types/expense_report_line_request_tax_rate.py,sha256=zy2ZUloKVL1GlbLXV16pzqDA6GTizIhsrDWLfiPM19s,172
405
+ merge/resources/accounting/types/expense_report_line_tax_rate.py,sha256=NWkFJmkUFiGVPsFPw8_degf3czNNV1dmVRi8mTx_HGY,165
406
+ merge/resources/accounting/types/expense_report_request.py,sha256=cSQSsOV9NUVcgPKyfQIwQ2d45dz1cDHfWodREI6jpWA,13716
407
+ merge/resources/accounting/types/expense_report_request_accounting_period.py,sha256=1VD_7GFMUxJj9QzEh0w5xOfK8sn8NmmcvrsLvrv5-rI,204
408
+ merge/resources/accounting/types/expense_report_request_company.py,sha256=CdmIn5tWFfWesV7sLIY00YlBFYWWvD-OVVd2N4VP11w,180
409
+ merge/resources/accounting/types/expense_report_request_employee.py,sha256=CMF-TBnQf8nzpeKoKjKewpiuyectgtHCGwU2VyP53VU,171
410
+ merge/resources/accounting/types/expense_report_response.py,sha256=s1kWwxRFA82ILMWSam-OTo0XbxA0qGGLMeE1SmEUj4c,951
411
+ merge/resources/accounting/types/expense_report_status.py,sha256=EEVUSjpsQ3mIpFcekQbucmMT6K21agIBrbXaMFWTTLM,210
412
+ merge/resources/accounting/types/expense_report_status_enum.py,sha256=OLbvtkGYlPn1wJe-maApMlIaWCZFYaY0AQSlstDxE8w,975
383
413
  merge/resources/accounting/types/expense_request.py,sha256=IM2tlmS27C6mqYGvygNiiUqYVTGqqDxxrwLD7Amx1Ws,14490
384
414
  merge/resources/accounting/types/expense_request_account.py,sha256=k4wPgePbQbE68GT-rIAS_L6rNHgehIFW0yMUKMYyV1g,161
385
415
  merge/resources/accounting/types/expense_request_accounting_period.py,sha256=H1p49BlVml3UEuv07PDq6wjULS71lPF-rwP6aPN8Wuk,198
@@ -391,13 +421,13 @@ merge/resources/accounting/types/expense_request_tracking_categories_item.py,sha
391
421
  merge/resources/accounting/types/expense_response.py,sha256=7TkciU3o06_ZTPZV14Aqshnuqg_Tnj9chL3dGcm3oX8,926
392
422
  merge/resources/accounting/types/expense_tracking_categories_item.py,sha256=JidDWnncZvrRf4mq9b_Nh7ALRMhsc2KYvdLeeIXp7KU,197
393
423
  merge/resources/accounting/types/external_target_field_api.py,sha256=7qYlHHE-NAj2mbecB_tWxwtNftguu6LIXlfc5ifg5G8,684
394
- merge/resources/accounting/types/external_target_field_api_response.py,sha256=6Ekdzhy0pp-LGCvrAEHl38vTkpSiM3neSVF8lFuuDgc,3935
424
+ merge/resources/accounting/types/external_target_field_api_response.py,sha256=_c0W3y5XOYOr7q-c6OqhqE_RGrujFByVWcmDRyZeoes,4076
395
425
  merge/resources/accounting/types/feed_status_enum.py,sha256=b-AMvBnL5-P-JZB7mlfJb9d4STvNDQl-HIJlzpZdi_U,545
396
426
  merge/resources/accounting/types/field_format_enum.py,sha256=UftGZKBqWXBRUkFBgnf5pcsYd2UmRNoiHiCeBMFeuO8,1197
397
427
  merge/resources/accounting/types/field_mapping_api_instance.py,sha256=RttMXfps1-vnnavS0sS1Z9hA_-getVdtHXkfobPKfEk,979
398
428
  merge/resources/accounting/types/field_mapping_api_instance_remote_field.py,sha256=HJk927XuxCs-tNA_72KySK3dLY9PZlM21YR8KKelWxw,971
399
429
  merge/resources/accounting/types/field_mapping_api_instance_remote_field_remote_endpoint_info.py,sha256=14nzCKH-TW0p4bxGHZl-EccAwsPGaa2suQ1WEs6qxu4,737
400
- merge/resources/accounting/types/field_mapping_api_instance_response.py,sha256=-445O9KLVE_jwuKK75L3253RZKVUm79KFAteeLSixHk,3977
430
+ merge/resources/accounting/types/field_mapping_api_instance_response.py,sha256=s05o-T16xZ2L8JFBK_RMiiJ4GlqL6YGq232dz47yZtA,4119
401
431
  merge/resources/accounting/types/field_mapping_api_instance_target_field.py,sha256=Bjo9opp2p9gcuuoMvCNtZxm4kbh4uowuC9ST9tRoLM4,636
402
432
  merge/resources/accounting/types/field_mapping_instance_response.py,sha256=wrRYB0RI5TkHt6ugR5aKYB7at2sgbuPJ-6zQ9DBm43Y,990
403
433
  merge/resources/accounting/types/field_permission_deserializer.py,sha256=iycoe64xsMDW-luGbNhfdQw3fANbvS7cUxzfyUezzHQ,734
@@ -474,7 +504,7 @@ merge/resources/accounting/types/invoice_type_enum.py,sha256=VJCZj6vwx0vWQl3mvPK
474
504
  merge/resources/accounting/types/issue.py,sha256=F1fGOu_vvsxF3ZJa8y6egizcSFujLJ5BHkwWnnjGpKQ,1178
475
505
  merge/resources/accounting/types/issue_status.py,sha256=LCtQa_3Xj6JjupNyLEEui7QQu9nQW-dyCtFKveYrbKU,177
476
506
  merge/resources/accounting/types/issue_status_enum.py,sha256=LyAyUrrmvKbovYkhYTPMzVGvvXgzEs61pAXgPFJ0Aug,555
477
- merge/resources/accounting/types/item.py,sha256=GwjCzB4sl8QdIXyd6A2SdVI52nYAEohm6EYmjFgTOpM,3563
507
+ merge/resources/accounting/types/item.py,sha256=p36NAoWPLP84eAAjXHc7PfwV89PvzOEzjWubO-uuq6k,3825
478
508
  merge/resources/accounting/types/item_company.py,sha256=FeTD1Po9hD9A_k3GplK2LXHB5R44yaAYUHwIgYs1Boc,164
479
509
  merge/resources/accounting/types/item_format_enum.py,sha256=hR1Fgvl9DyfE1HsTW7dz8OxLzKLg06pnvDQIwII2-Bo,1190
480
510
  merge/resources/accounting/types/item_purchase_account.py,sha256=3tnYKr7nGxfhOqAY9MCiPon6wfQ02m4qjP4nMyKRg7g,159
@@ -492,6 +522,7 @@ merge/resources/accounting/types/item_sales_account.py,sha256=2kxSf2kd1qZh9Xjdzy
492
522
  merge/resources/accounting/types/item_sales_tax_rate.py,sha256=gr9NWfhSxoFbhQbjtGZFMs1lpwTc5x1H9lzaegWktbQ,157
493
523
  merge/resources/accounting/types/item_schema.py,sha256=Tj_-s--kXh3ulFIsVwTAsKOOZJ9ZvLM4BS-UyBAjVac,799
494
524
  merge/resources/accounting/types/item_status.py,sha256=UyG0YBFTWKs6lfa4ui1sDuB6bnbyb1FCBKhakrU9OBM,172
525
+ merge/resources/accounting/types/item_type.py,sha256=rcp8eoTI8QHAYXuGO80M9MrE0Dk9xxVNYXUoyU3_abI,163
495
526
  merge/resources/accounting/types/item_type_enum.py,sha256=HgPoVaXnUmHmNezpJJk4uLmAOq9-S_i-5YHtric5M8g,1176
496
527
  merge/resources/accounting/types/journal_entry.py,sha256=wr451iVFu5eZcASLH-n3rQHowFdYIXTXeSD_POK6XfQ,15626
497
528
  merge/resources/accounting/types/journal_entry_accounting_period.py,sha256=K0ZVBFxE9w7ufxk-MuWVI0ltbYJIWi-NXvdNHP1sJsA,196
@@ -546,6 +577,8 @@ merge/resources/accounting/types/paginated_contact_list.py,sha256=ezWaqRqXAN_ohV
546
577
  merge/resources/accounting/types/paginated_credit_note_list.py,sha256=O6xvEQtXrW8D4CywGoawH0GXa7YC2iHOWyfdUgZ5tc0,1432
547
578
  merge/resources/accounting/types/paginated_employee_list.py,sha256=kV3CeN-exNm4yeQVkYxeJb3DPcgBVA1cXZD2NpOJrPQ,727
548
579
  merge/resources/accounting/types/paginated_expense_list.py,sha256=YN2_5zstMejay6kZQA58tTVgXSQzP16aU53AZ3rJCGM,723
580
+ merge/resources/accounting/types/paginated_expense_report_line_list.py,sha256=fjnMSpGhYPIongr6cBfPvxLPN_7jRIsZ45D5g6eGlmg,765
581
+ merge/resources/accounting/types/paginated_expense_report_list.py,sha256=r4ncFBxfE6oi2DVbysqIZ8WnmCbvNcVL4XcalQ_cQdw,748
549
582
  merge/resources/accounting/types/paginated_general_ledger_transaction_list.py,sha256=9C_cSCxTuxC8Aq_vzPfJuOUCEU3BZCI2oancJ1ClfDE,793
550
583
  merge/resources/accounting/types/paginated_income_statement_list.py,sha256=_qtAEmZMeP7oWycFk4eyJNO_7U8JldHdXPTBqn2uC7k,756
551
584
  merge/resources/accounting/types/paginated_invoice_list.py,sha256=kNGjHWwepRkdSS19-Qwest389ssCr_mRhejda7zbcUk,1423
@@ -563,6 +596,8 @@ merge/resources/accounting/types/paginated_tax_rate_list.py,sha256=MSvrOW4iTZVXB
563
596
  merge/resources/accounting/types/paginated_tracking_category_list.py,sha256=y7E-2J89pxYO1KdVaSZwhJLwOcYyz2Z3meTjRRw1WIo,760
564
597
  merge/resources/accounting/types/paginated_transaction_list.py,sha256=jnDQBFSl5o__rhmCoiHhl6zp_kSfvsBdKa1EXBiF_2U,739
565
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
566
601
  merge/resources/accounting/types/patched_item_request_request.py,sha256=ISXYjt-d40IxMt40jGokViociOsI3f54R3bgRRxJFSU,2641
567
602
  merge/resources/accounting/types/patched_item_request_request_status.py,sha256=ry7GVqLLAHstkbGuggDZZvFpRa5EYpXBgna1UKDHjRE,193
568
603
  merge/resources/accounting/types/patched_item_request_request_type.py,sha256=Egn03sWFSpg8CWT_NeYDY_SAV6jLjwEpDE91SKzvHjk,184
@@ -639,7 +674,7 @@ merge/resources/accounting/types/remote_field.py,sha256=VYODTdHsSUSj1aaWzcWKdDzS
639
674
  merge/resources/accounting/types/remote_field_api.py,sha256=o7WbCUNUnmPtn6F09P3lKsXSHpEjAN8ZEfu8xsZL4Ko,1085
640
675
  merge/resources/accounting/types/remote_field_api_coverage.py,sha256=4bdB5WY4RcmZWXAIOeR_vTqnwIJsGr5eeSJDJFKxgq4,130
641
676
  merge/resources/accounting/types/remote_field_api_response.py,sha256=Mx97o8mDPKNgXyGWgnFD-h3wpFvVv3ngVU-eKIaMIfs,3598
642
- 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
643
678
  merge/resources/accounting/types/remote_field_remote_field_class.py,sha256=hO2WF1YOop9W_KViuHPjwdvK2sYjq8Wh43U87C9hEso,196
644
679
  merge/resources/accounting/types/remote_field_request.py,sha256=_dbR1Oq1a1RkrmW-6PYyZnODMh54X4Xvk_VRiU5MwoM,764
645
680
  merge/resources/accounting/types/remote_field_request_remote_field_class.py,sha256=CF0MIbwvcvBlT3_Pw_KmUD8f5_JyOY8hn-ajehwOrlo,203
@@ -718,7 +753,7 @@ merge/resources/ats/resources/account_token/__init__.py,sha256=_VhToAyIt_5axN6CL
718
753
  merge/resources/ats/resources/account_token/client.py,sha256=kDVIqxdjBnHvSh5gU39-RVHBdpjdp2fj37uQa8Dcdc0,3091
719
754
  merge/resources/ats/resources/account_token/raw_client.py,sha256=3GJUM1Yu9JYVaJZMwjGvLuX3cu1ZtIUsgQcPJU3QPD0,3637
720
755
  merge/resources/ats/resources/activities/__init__.py,sha256=-7a9PFupqA9rSMXdfNzvDNwWZ5-z-97--UWDJ5QEKrk,471
721
- merge/resources/ats/resources/activities/client.py,sha256=LCN_rawnHLGqwfkgDKlDByGMjYSWKLK2RI4kFv1lc3E,20800
756
+ merge/resources/ats/resources/activities/client.py,sha256=z5zCMT5BQLDZ8COub3Ie5h_JSgDDttJnVm0dy-famSY,20984
722
757
  merge/resources/ats/resources/activities/raw_client.py,sha256=BcLufS4fk_TY4Wno9La265iFmww-Zd8I6kCBA3khXAo,25461
723
758
  merge/resources/ats/resources/activities/types/__init__.py,sha256=z70xvrXN4FknJpeUPn3htP2ZzbBYMPLWAgnCxWn-vpQ,648
724
759
  merge/resources/ats/resources/activities/types/activities_list_request_remote_fields.py,sha256=EbdZeEOZoR6q7-phOELZ49XW03YsFiVnstNp7-YsC9I,857
@@ -726,7 +761,7 @@ merge/resources/ats/resources/activities/types/activities_list_request_show_enum
726
761
  merge/resources/ats/resources/activities/types/activities_retrieve_request_remote_fields.py,sha256=EptLRhlvXlziglz0aMKKWVQ-tSXLsw6twbt4d0BnMp8,873
727
762
  merge/resources/ats/resources/activities/types/activities_retrieve_request_show_enum_origins.py,sha256=gftC7Ed3Gn60h5h24vcq3xoPkNbM4di6ONmviIwKJTM,885
728
763
  merge/resources/ats/resources/applications/__init__.py,sha256=SidKCw-0G6GhwJv8i071-h0wrLA8SPRZWFj2j85Bg1Y,251
729
- merge/resources/ats/resources/applications/client.py,sha256=v42eAlHoMnZVaAJo7zhTRH_fRLGq3xxB0oorYbnXgjw,25032
764
+ merge/resources/ats/resources/applications/client.py,sha256=wu-ZRfT5q1pO7xSF6kJ2i5mQmCYdZP8OQgAcj38JknI,25216
730
765
  merge/resources/ats/resources/applications/raw_client.py,sha256=ZsOneTzEakSNV4aX8kMV3EtWQWOtosqRPiPDNY9ShBw,31122
731
766
  merge/resources/ats/resources/applications/types/__init__.py,sha256=fL5AJHQ9Br-GgXH02iLpk8LEqw8tCixmRngTWbGSyao,327
732
767
  merge/resources/ats/resources/applications/types/applications_list_request_expand.py,sha256=tR95D-B0MkMq4jRvH8NW15Ol0JZffFjG7TtaSXKfWnA,117151
@@ -737,16 +772,16 @@ merge/resources/ats/resources/async_passthrough/raw_client.py,sha256=1a-h7m2cEQq
737
772
  merge/resources/ats/resources/async_passthrough/types/__init__.py,sha256=0LUj53dTeTqfs50XizOk2ro3RcqGYXn71qHGyZs5Rdg,215
738
773
  merge/resources/ats/resources/async_passthrough/types/async_passthrough_retrieve_response.py,sha256=uBMjgizc2Qhm2JA0rRTer6NiRT3sq_v-EyTrzkiQC0g,203
739
774
  merge/resources/ats/resources/attachments/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
740
- merge/resources/ats/resources/attachments/client.py,sha256=Cio4svhBNlvDECrq96W0ge7ZZLsGjfhgM5zVC8kNqgI,20524
775
+ merge/resources/ats/resources/attachments/client.py,sha256=vdaBd43M1IKXYMIExB8ZQCD6pxIQpjmOO25dCLMaEjg,20708
741
776
  merge/resources/ats/resources/attachments/raw_client.py,sha256=JR3jjUvIx0zw7yhRyeKHNvWmov0Wdd5ci14bS_OvMVk,25193
742
777
  merge/resources/ats/resources/audit_trail/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
743
- merge/resources/ats/resources/audit_trail/client.py,sha256=nSm0yu7NguF44DhA0mtm0HhjQn7o1r9EI10kEof0qvg,8346
778
+ merge/resources/ats/resources/audit_trail/client.py,sha256=BZ_4YRvM52dQPlBMzNuIBbeuHJZsRcGsvvhN8yKNStE,8530
744
779
  merge/resources/ats/resources/audit_trail/raw_client.py,sha256=GPEz5uk0SbZsB-I6CdIZVJ0iS2HqP98nZvKaVjlT09c,9088
745
780
  merge/resources/ats/resources/available_actions/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
746
781
  merge/resources/ats/resources/available_actions/client.py,sha256=DX3bAHmwfRrF7G7iG5RMYhC1eBc8xjf0WSGVmN6mExg,2895
747
782
  merge/resources/ats/resources/available_actions/raw_client.py,sha256=x5-jmQW7czfLCktzq3wdTGA6s9WP_mg62kZjV36RLEA,3437
748
783
  merge/resources/ats/resources/candidates/__init__.py,sha256=4vAJWLq2R2LlWJTw6zACGlCdvhRz0RhuUVHbRTy6v5w,309
749
- merge/resources/ats/resources/candidates/client.py,sha256=rIWTjcRBHXOeaH2rwqlMsIhiokj-nD0HQijSx_kp5-0,27448
784
+ merge/resources/ats/resources/candidates/client.py,sha256=1Su5wxasKOjcD428He2ZnV2ZghPNKD8-XZk2qdoObI0,27632
750
785
  merge/resources/ats/resources/candidates/raw_client.py,sha256=ax5EF7RKwh77Gylrq8lpAAvGv1rmAqmwwcLQsG69338,34710
751
786
  merge/resources/ats/resources/candidates/types/__init__.py,sha256=DF4erREoyZpBAPTrbFo3_tTkzq3wAgTISLOvLXv__-k,428
752
787
  merge/resources/ats/resources/candidates/types/candidates_list_request_expand.py,sha256=FvbU_Ih2IGTXBRr5OsIZLm9ia5C7jOKNkySAf4IQLwo,833
@@ -756,10 +791,10 @@ merge/resources/ats/resources/delete_account/__init__.py,sha256=_VhToAyIt_5axN6C
756
791
  merge/resources/ats/resources/delete_account/client.py,sha256=Va8aAkmDFIT7KQ3PkvF-YbDOe5oSD5MM7H5Pf4QMrSY,2665
757
792
  merge/resources/ats/resources/delete_account/raw_client.py,sha256=d0tHdOLTXDgOClm7rPepUYBHQB787JPxQYLn_iG_JMk,2635
758
793
  merge/resources/ats/resources/departments/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
759
- merge/resources/ats/resources/departments/client.py,sha256=yHPPtA4UK8vRvby5rZG3TXwZa3757VtenbVt-k_mDuQ,11011
794
+ merge/resources/ats/resources/departments/client.py,sha256=z5R_X8kpThmdvzy7LlL5MfBKcrqoaP9Cm78Mo1IKK4E,11195
760
795
  merge/resources/ats/resources/departments/raw_client.py,sha256=_F5juwCER9ea2IFT_qglg4Lc5Zrljsrq9zH9St2Oxdc,13410
761
796
  merge/resources/ats/resources/eeocs/__init__.py,sha256=myufvT2uQFozdu7rPvL7eVc9mUHyEKHYf1GFJy41I3s,431
762
- merge/resources/ats/resources/eeocs/client.py,sha256=s_b_gyZ1PjKRIS41SxhFOAfERTm12Xwtc0Ajkloy4iE,15565
797
+ merge/resources/ats/resources/eeocs/client.py,sha256=Nv816bJR5XSVxJu6Wy_Vx60seIuHZkMY47Dypocrxu8,15749
763
798
  merge/resources/ats/resources/eeocs/raw_client.py,sha256=uXBdhATekmpjJ4-HeY1-N5JHO3tIte3Bf7pvsqrI4Ag,18062
764
799
  merge/resources/ats/resources/eeocs/types/__init__.py,sha256=WgzWd0xcKP8SQoFo75J-rbXIQcd16X7G429oEDvh2hU,588
765
800
  merge/resources/ats/resources/eeocs/types/eeocs_list_request_remote_fields.py,sha256=p_xPGIVLJ9LpR-qm-q7G83fzM7QvUxTHSEjkOPNA7qc,3803
@@ -776,26 +811,26 @@ merge/resources/ats/resources/generate_key/__init__.py,sha256=_VhToAyIt_5axN6CLJ
776
811
  merge/resources/ats/resources/generate_key/client.py,sha256=5aK1zVlz0hHKe0Wko1dQ3sDLJB7F5vNwvkEGl639yC8,3070
777
812
  merge/resources/ats/resources/generate_key/raw_client.py,sha256=Fnun7LfpUy9ff1if3kAQd3b2GVeUY9i6d8kHZKd5C9k,3850
778
813
  merge/resources/ats/resources/interviews/__init__.py,sha256=ye942zibyOKeOtuWrnNie3nhGT2Lt1J86d5FtjDSEbg,243
779
- merge/resources/ats/resources/interviews/client.py,sha256=mcMClnir0wva2zXYanONsKij4ZXpJdtNnV4VmeYyZrg,22132
814
+ merge/resources/ats/resources/interviews/client.py,sha256=D1yzy00M3GjkclvZSO2SzctD7n9pVoUHZa0Fsofm_90,22316
780
815
  merge/resources/ats/resources/interviews/raw_client.py,sha256=EhjoxzZXIurOtOwa-5p8FokPPrRA5PCAlhAdc4RAkLM,26915
781
816
  merge/resources/ats/resources/interviews/types/__init__.py,sha256=7cM3HJPi02FBkjcm3Bz7vv_NDjDiCLVkp8NYmfhPhlw,315
782
817
  merge/resources/ats/resources/interviews/types/interviews_list_request_expand.py,sha256=xyq9du-PhMinUNt5dHVy4vI28htBS1HqBN49JYyLTAY,4187
783
818
  merge/resources/ats/resources/interviews/types/interviews_retrieve_request_expand.py,sha256=YSU0ceJ4gJRUXEs4wKgdd2PObfiIw_ROkmMPBIKX53Y,4251
784
819
  merge/resources/ats/resources/issues/__init__.py,sha256=8N-ynHIskTDmO3zwQbhyEHy7OTb63CJ_NdZRdLDBOyk,167
785
- merge/resources/ats/resources/issues/client.py,sha256=wGbdIkiGJOUKlbcaiahLTlRsmYRxoECMeULN5HVE5Ug,10903
820
+ merge/resources/ats/resources/issues/client.py,sha256=RPMvRDmxAE3dCISPIvgmQSnQXDyglfiruixGotpJSlM,11087
786
821
  merge/resources/ats/resources/issues/raw_client.py,sha256=Q8C2hGOq2Ee51_LLDJIPq6tXbfAAlOscbe0XdNyhEt4,13686
787
822
  merge/resources/ats/resources/issues/types/__init__.py,sha256=jjxa8xGa5vTp5-uzIuy8dWJLKrwzX6DnMKPEEkgN4eo,188
788
823
  merge/resources/ats/resources/issues/types/issues_list_request_status.py,sha256=cBbfu1Q5A0ZPOzB7nM_VHRKEJHnxk8lqN-cGmRX6_x4,508
789
824
  merge/resources/ats/resources/job_interview_stages/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
790
- 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
791
826
  merge/resources/ats/resources/job_interview_stages/raw_client.py,sha256=YwWqkWhr8IjKBrgx3cHU8LRHALTIssAL7n59IJTBM5E,15154
792
827
  merge/resources/ats/resources/job_postings/__init__.py,sha256=ABkpsd-5AOuEC47y262hEh2AH-e93ZoRCY0UowtZIGs,177
793
- merge/resources/ats/resources/job_postings/client.py,sha256=JTAiNPlTLSQTnKt2skyvZIMcj7FOkx4AhFUd1OvUjq8,13150
828
+ merge/resources/ats/resources/job_postings/client.py,sha256=MM31J9DH4jJu0I-c6paU0CAPdFjhE6n8uYzztVa3cek,13334
794
829
  merge/resources/ats/resources/job_postings/raw_client.py,sha256=84UPP_kMrFsWphQVvgQywf5FvYfzoAYPtTeML_tWiq8,15591
795
830
  merge/resources/ats/resources/job_postings/types/__init__.py,sha256=DfI0dlyQhzb_mOiOe0JdCS57yfoXd4iRYUt_Aobez2M,204
796
831
  merge/resources/ats/resources/job_postings/types/job_postings_list_request_status.py,sha256=DD459cw_Cc4lzqomq0lCJN2Boojscl7nRSxeyQyd_l8,1023
797
832
  merge/resources/ats/resources/jobs/__init__.py,sha256=uB3kagmDzGwd6LLPerwPt0lcfpgsinUWVGCw2vI9iDE,391
798
- merge/resources/ats/resources/jobs/client.py,sha256=bjnRWthdFiTnraasYoxYm8Y2cnqEgdbTXVaHxCD7qIU,22033
833
+ merge/resources/ats/resources/jobs/client.py,sha256=uD1zOB-u89SjqKr0pjfP2gEE2NGeojmFkJYCnWyBQz0,22379
799
834
  merge/resources/ats/resources/jobs/raw_client.py,sha256=1HJQXeBj9sIkung1BrbzDb1Q08pQtxrK_Wu6UFmtal4,25683
800
835
  merge/resources/ats/resources/jobs/types/__init__.py,sha256=z1XF8BcKtAZ7OCi_rk383vEnJUZ_uu6nXjN4IdUFvnI,524
801
836
  merge/resources/ats/resources/jobs/types/jobs_list_request_expand.py,sha256=1B4kaeN4JWDbRkJKIXkdWAavlMCFf5wthnLMeeIOXl0,8483
@@ -808,18 +843,18 @@ merge/resources/ats/resources/link_token/raw_client.py,sha256=UfsNss9cKhbdQjO4p0
808
843
  merge/resources/ats/resources/link_token/types/__init__.py,sha256=_DhmnLsRiAcpljK-OPGnDEHf9-FqnWXLVWUL4pOe8-I,207
809
844
  merge/resources/ats/resources/link_token/types/end_user_details_request_language.py,sha256=2BMH_lFqvpT1C4ljoUh5YUm2dgiuLYil6s3_pKcn540,194
810
845
  merge/resources/ats/resources/linked_accounts/__init__.py,sha256=jDuRvmYXqKpaHo-Ya2LUjqfqk_rXOUOW7dSpRi-dvqM,187
811
- merge/resources/ats/resources/linked_accounts/client.py,sha256=Qm3w2SewfUSojTGfIleFy9zMZzenfjpAhQ6iRdC9ivc,9766
846
+ merge/resources/ats/resources/linked_accounts/client.py,sha256=gLZgIe6ODAaPnR7XxDyLUhK3FcKi6FrO68FVdbfS59w,9950
812
847
  merge/resources/ats/resources/linked_accounts/raw_client.py,sha256=f9w9v_tob9fvlVfruFZMUD5uwEhfSBen8GcGHrt47RM,10618
813
848
  merge/resources/ats/resources/linked_accounts/types/__init__.py,sha256=FjSJvzQG9s-6wuY4YUdmieuUNQvaQXZKDSC138TRMz0,219
814
849
  merge/resources/ats/resources/linked_accounts/types/linked_accounts_list_request_category.py,sha256=_EGocl5xFPQUgGIidOl4wEewCLbzqWyiXV2PIev7l7M,1354
815
850
  merge/resources/ats/resources/offers/__init__.py,sha256=4sWeI0xo022pVv-wC1Z-XEwGqjLWAwn1ZpVfswvommw,227
816
- merge/resources/ats/resources/offers/client.py,sha256=vRocP4O_apE80pHZw8MgRllMQE0q7mLGRcADZT81yDU,15663
851
+ merge/resources/ats/resources/offers/client.py,sha256=zYYfCi5jmB4gk4jT5zm4irNBsQaUm_D1_OFSBeQrYjA,15847
817
852
  merge/resources/ats/resources/offers/raw_client.py,sha256=kN2FXkfQFvaf5TdW5GUNHNsrRkQCmALIpZAmxsTDu_o,18174
818
853
  merge/resources/ats/resources/offers/types/__init__.py,sha256=uBbN8hlvln2dNepbLvrW6frHWMgziscAQolWxqkdXYs,291
819
854
  merge/resources/ats/resources/offers/types/offers_list_request_expand.py,sha256=TeIQthOQikNd8KC2_dmHM_7B7rMjD5TzdY0qN5cu0Ks,767
820
855
  merge/resources/ats/resources/offers/types/offers_retrieve_request_expand.py,sha256=Y2aYRm4Iudo53A_YxRA827YZW7sEgt_mvsW6otx0YjI,783
821
856
  merge/resources/ats/resources/offices/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
822
- merge/resources/ats/resources/offices/client.py,sha256=jHbrzibTFMecX5lWPgVw8RDRQxMmpEhKe5_fjM5E0mU,10893
857
+ merge/resources/ats/resources/offices/client.py,sha256=bWjpvJ3Qw_JM8oMwXVn_lsS9UH6YM2kLVkYkqjocPdQ,11077
823
858
  merge/resources/ats/resources/offices/raw_client.py,sha256=IicPa3g7x39HNb31sBPuVjstdWmT6i_O4fx2O6D3uQs,13292
824
859
  merge/resources/ats/resources/passthrough/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
825
860
  merge/resources/ats/resources/passthrough/client.py,sha256=wMkrClM7z-t72h1rT6mAnfUl-ddo7fTMsC8DNtI6piU,3635
@@ -828,25 +863,25 @@ merge/resources/ats/resources/regenerate_key/__init__.py,sha256=_VhToAyIt_5axN6C
828
863
  merge/resources/ats/resources/regenerate_key/client.py,sha256=Xl5_XthihvLHCwUiUopO91bEMBsvLROz98JZjRwpWiM,3096
829
864
  merge/resources/ats/resources/regenerate_key/raw_client.py,sha256=oa-Mhfxb0-dhksDAmeaATgYmrV8HjWO1bEStYbEtZTk,3860
830
865
  merge/resources/ats/resources/reject_reasons/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
831
- merge/resources/ats/resources/reject_reasons/client.py,sha256=u0prmzsagfNDLuwG45weFk63QjHPC1dkSCvDBwMu5go,11077
866
+ merge/resources/ats/resources/reject_reasons/client.py,sha256=9eU4Lp6jDByWBmDCwLBY2k0YCCXmmgJcQ6leM21UNqo,11261
832
867
  merge/resources/ats/resources/reject_reasons/raw_client.py,sha256=mT1birKV20_95RGjmA2H5NmedTacaqFgpU10v7gG2Cc,13476
833
868
  merge/resources/ats/resources/scopes/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
834
869
  merge/resources/ats/resources/scopes/client.py,sha256=ISs8i6ITrjFESYm_O-BmOEcjWrPTWGp4_Wlo7SVhmXA,10770
835
870
  merge/resources/ats/resources/scopes/raw_client.py,sha256=ghmLHuM2p4VnSfo4rrNutN8uhN9k2VMoZ1XIEXXTTXE,10986
836
871
  merge/resources/ats/resources/scorecards/__init__.py,sha256=GhEFJMt_aXNCS6b3ETek4riAvFa0N_XFYr-ro6LzESY,243
837
- merge/resources/ats/resources/scorecards/client.py,sha256=6Vc5HivEohFV2-wbh7yOdc4H-5RE9jcf7z3xEBYGYYo,16549
872
+ merge/resources/ats/resources/scorecards/client.py,sha256=8jIrnUEQh4Kmyx7pXldAhM9xNbFEpbJLk1381NRPgUI,16733
838
873
  merge/resources/ats/resources/scorecards/raw_client.py,sha256=HykqlrZMi9CU6Ld4Es6_-tjRR7oTEXYbvYgXToJQfQ0,19074
839
874
  merge/resources/ats/resources/scorecards/types/__init__.py,sha256=z2pbkqWcLCYWrTsHCfaL7dNz74TV_g_t2oanFhZTsy8,315
840
875
  merge/resources/ats/resources/scorecards/types/scorecards_list_request_expand.py,sha256=vFFF3C7SmWZV-VOpZJZE0ImcXFJvXro89z8cNlAzXwk,1731
841
876
  merge/resources/ats/resources/scorecards/types/scorecards_retrieve_request_expand.py,sha256=3Nylu_gL8zgPal4Ly45b0Hi6Mz_-I7SbhJMgK3Xr_TE,1763
842
877
  merge/resources/ats/resources/sync_status/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
843
- 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
844
879
  merge/resources/ats/resources/sync_status/raw_client.py,sha256=6FgTOGOzyxYpuJVOQGqvzCwGJc_Jz8haT9ndZR7at5Q,5625
845
880
  merge/resources/ats/resources/tags/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
846
- merge/resources/ats/resources/tags/client.py,sha256=zobzkshtfcCzqYhiDvoRS5PHMNrg6W_NE33vsP8kaek,7848
881
+ merge/resources/ats/resources/tags/client.py,sha256=Aj55B3jpY7uV91z_kLvBhfUiYNqjO7zw_MxqWTrIpto,8032
847
882
  merge/resources/ats/resources/tags/raw_client.py,sha256=lliALPUD2jfmyxWaiBxIGFFikn3VOEeB2JGHkhDlNIw,9190
848
883
  merge/resources/ats/resources/users/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
849
- 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
850
885
  merge/resources/ats/resources/users/raw_client.py,sha256=a4X9rtywjYzGGzTSphlipJQn8qtvAuZuMIm5EiHv1n4,16592
851
886
  merge/resources/ats/resources/webhook_receivers/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
852
887
  merge/resources/ats/resources/webhook_receivers/client.py,sha256=3zodHRSQJPPf98a9ExD4JopX3eLitEdDu5E1R-Aw3Zs,5210
@@ -931,7 +966,7 @@ merge/resources/ats/types/email_address_type_enum.py,sha256=gMSpQWj4ycaI7HDaPs-z
931
966
  merge/resources/ats/types/enabled_actions_enum.py,sha256=RBwvCMjrrdPPAbnQXAwKczXklo0uxpgYVrfcDs6lSRo,522
932
967
  merge/resources/ats/types/encoding_enum.py,sha256=ervs42mwv6m0bBeWe-QKdG02RRVLIlFhLOVjzmqen3c,739
933
968
  merge/resources/ats/types/error_validation_problem.py,sha256=kTcN_MW8qd0YV5bMdeQfhxCyx5z3RYSfQkjjhrQcX0Y,734
934
- 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
935
970
  merge/resources/ats/types/external_target_field_api.py,sha256=7qYlHHE-NAj2mbecB_tWxwtNftguu6LIXlfc5ifg5G8,684
936
971
  merge/resources/ats/types/external_target_field_api_response.py,sha256=HgWRIMMe2cGS7N5AQLSJNXIhgoasjpn48KvaxeEE8j0,2580
937
972
  merge/resources/ats/types/field_mapping_api_instance.py,sha256=RttMXfps1-vnnavS0sS1Z9hA_-getVdtHXkfobPKfEk,979
@@ -1080,13 +1115,13 @@ merge/resources/crm/resources/account_token/__init__.py,sha256=_VhToAyIt_5axN6CL
1080
1115
  merge/resources/crm/resources/account_token/client.py,sha256=EuB2_KutZ1ExKd3WHuPB7MzhGsRzbCDOvBZ9fY-coqU,3091
1081
1116
  merge/resources/crm/resources/account_token/raw_client.py,sha256=EYTY7DvZhUXUokh98OiYMwJrgsyTlvSVCkmvavJcu8U,3637
1082
1117
  merge/resources/crm/resources/accounts/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1083
- merge/resources/crm/resources/accounts/client.py,sha256=HKjYoIKaY0Qi8-ru1fP5d8DlzF_qarHv4tWokVjcuTU,29763
1118
+ merge/resources/crm/resources/accounts/client.py,sha256=AInmFT3CkY227FegZboImwXTCqyKPSbtldxSoQBBELw,30131
1084
1119
  merge/resources/crm/resources/accounts/raw_client.py,sha256=_HxhV76aITtcXSdzEmYrEC87UT3vwZugF0xmTiPjqOg,38029
1085
1120
  merge/resources/crm/resources/association_types/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1086
- 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
1087
1122
  merge/resources/crm/resources/association_types/raw_client.py,sha256=a2mvRSpAb1V5JmEIXWzF3HEthN5v5lrqSVKuVqlhE2I,23547
1088
1123
  merge/resources/crm/resources/associations/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1089
- merge/resources/crm/resources/associations/client.py,sha256=Mj1ok7n_n1WEDv3yM4QdJzgV3eRGARhF15E5cx65-uQ,14429
1124
+ merge/resources/crm/resources/associations/client.py,sha256=6fZQgLWyTslNruVj8EF4RVZW9QXRv7Am030hR7A9igY,14591
1090
1125
  merge/resources/crm/resources/associations/raw_client.py,sha256=Xj_FpQ1Ut6rfJO5sDNi12yzhBOMYQQQ80jDOHKYG-Sc,16008
1091
1126
  merge/resources/crm/resources/async_passthrough/__init__.py,sha256=1MpPldWxuhYBQ4thZ3E-Ykjn3NxDsYfdArx3XkPQtdI,185
1092
1127
  merge/resources/crm/resources/async_passthrough/client.py,sha256=oMxHAGi_51VevQFjwztWBnzwpKvHesZIqSkVkb9JQaA,5952
@@ -1094,31 +1129,31 @@ merge/resources/crm/resources/async_passthrough/raw_client.py,sha256=3TIPPbYmEDn
1094
1129
  merge/resources/crm/resources/async_passthrough/types/__init__.py,sha256=0LUj53dTeTqfs50XizOk2ro3RcqGYXn71qHGyZs5Rdg,215
1095
1130
  merge/resources/crm/resources/async_passthrough/types/async_passthrough_retrieve_response.py,sha256=uBMjgizc2Qhm2JA0rRTer6NiRT3sq_v-EyTrzkiQC0g,203
1096
1131
  merge/resources/crm/resources/audit_trail/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1097
- 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
1098
1133
  merge/resources/crm/resources/audit_trail/raw_client.py,sha256=cnqykgvXoIxtayDCFPcMMIaznN3tEeSqTBYMk-tswE8,9088
1099
1134
  merge/resources/crm/resources/available_actions/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1100
1135
  merge/resources/crm/resources/available_actions/client.py,sha256=aX4PwUhOJX3UDXt6uOcmUIafkTX5Fz6LXGKrz1XuhF4,2895
1101
1136
  merge/resources/crm/resources/available_actions/raw_client.py,sha256=lJ0EydFe5eAVZP0lKPc4mvVqck4OHtsNb5vXO3N4-Ew,3437
1102
1137
  merge/resources/crm/resources/contacts/__init__.py,sha256=-2sXN9uRSOxRpvtG54uCrMIB_n7lHdDy0z5pgw1_Nc8,235
1103
- merge/resources/crm/resources/contacts/client.py,sha256=Fuk8r_fp3Yuqb1GW79Y6J9x1MYLTpzDcWZFzg72lf_g,33613
1138
+ merge/resources/crm/resources/contacts/client.py,sha256=gjOMBGWIY92dM7bsJABX-XispSkv0oKp-w4nyu2zkH8,33981
1104
1139
  merge/resources/crm/resources/contacts/raw_client.py,sha256=cLZCbCYpjZVuG4RoxS7ogF2sTWTC48it0WdDSEaJuBc,42188
1105
1140
  merge/resources/crm/resources/contacts/types/__init__.py,sha256=EPkxRBuO5CXib_I81aqE3R5M34xishFcL_mM1oqOkic,303
1106
1141
  merge/resources/crm/resources/contacts/types/contacts_list_request_expand.py,sha256=3jpmdW9B7lQSmgVL9lK9jBKKsWEMJ5CCWzhj4LMzV3I,715
1107
1142
  merge/resources/crm/resources/contacts/types/contacts_retrieve_request_expand.py,sha256=VpBRp_fbcwD7WwMm0PaRjndExE7Mrryjs9vMkT4J0ak,731
1108
1143
  merge/resources/crm/resources/custom_object_classes/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1109
- 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
1110
1145
  merge/resources/crm/resources/custom_object_classes/raw_client.py,sha256=ymwlRMI42OSA6jxKcMkYYFfNXitX3Fw1KQ4LusqgWfc,14802
1111
1146
  merge/resources/crm/resources/custom_objects/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1112
- merge/resources/crm/resources/custom_objects/client.py,sha256=OSN5v489_RGb6GpMKMhvzdhDOKx0uAUf74VBbP15nco,26122
1147
+ merge/resources/crm/resources/custom_objects/client.py,sha256=s8bBrgXPCCNRgTRsGxalXqB4wjo6LuMSODKBFm3orsk,26468
1113
1148
  merge/resources/crm/resources/custom_objects/raw_client.py,sha256=C-sOULjTjcsNnKBUp83QCy3iEikgoAvNFYnB-q8T_SA,30844
1114
1149
  merge/resources/crm/resources/delete_account/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1115
1150
  merge/resources/crm/resources/delete_account/client.py,sha256=t7_exzl6ouIWqV69TkhUPMhEYSLHe9g64YV10sjqmuo,2665
1116
1151
  merge/resources/crm/resources/delete_account/raw_client.py,sha256=Y7KUkoPjguN2MSfE492uI4zoJZ7EyVoTo70-2-_p_k0,2635
1117
1152
  merge/resources/crm/resources/engagement_types/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1118
- 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
1119
1154
  merge/resources/crm/resources/engagement_types/raw_client.py,sha256=wtbMEX5oZIBQqaQFXtfWfOCLWeCrID9OJjeZzaI6iws,22238
1120
1155
  merge/resources/crm/resources/engagements/__init__.py,sha256=f4wnf7KWLkofp6LtPXG4q_aLPyN0Wxz2qUEg5G6dE_U,247
1121
- merge/resources/crm/resources/engagements/client.py,sha256=9-Oi50IlCeMwJ8Jxpttqeklp1-9k2w72Ni5XJ3srqjY,30426
1156
+ merge/resources/crm/resources/engagements/client.py,sha256=9MUe0twXa4s9WSmpeCLcQCM5oo6_AE1F5Z2EEJ6xtV0,30794
1122
1157
  merge/resources/crm/resources/engagements/raw_client.py,sha256=snyfoYyqgdkvym_atp_-CflTPZh81oaAQMe47WwYoQU,38906
1123
1158
  merge/resources/crm/resources/engagements/types/__init__.py,sha256=1l1BjZWwPAKZwFUmlUQQsDGnhFn6pp3CNtFfNBlcYkc,321
1124
1159
  merge/resources/crm/resources/engagements/types/engagements_list_request_expand.py,sha256=VrYBbS0i7FbnpXs6WrsLYgGNACzlCS2xcBAByWqKz28,3563
@@ -1133,12 +1168,12 @@ merge/resources/crm/resources/generate_key/__init__.py,sha256=_VhToAyIt_5axN6CLJ
1133
1168
  merge/resources/crm/resources/generate_key/client.py,sha256=wHd3njlOs4N8KWU25mQZJ_IP1EQ9waWqZSBWJRK7d9M,3070
1134
1169
  merge/resources/crm/resources/generate_key/raw_client.py,sha256=ZA1IybLsmI4QYLcsE_kJu-YsVsH8HtH8kySWCz6Jv2I,3850
1135
1170
  merge/resources/crm/resources/issues/__init__.py,sha256=8N-ynHIskTDmO3zwQbhyEHy7OTb63CJ_NdZRdLDBOyk,167
1136
- merge/resources/crm/resources/issues/client.py,sha256=YQ1atXS6-b8nex79zhQuUyCvTjSZgbfJYo8-fxHztTo,10903
1171
+ merge/resources/crm/resources/issues/client.py,sha256=1pNy6N5f9USf0es8igqDomdFDWdD_i54X9hh7RD13Ys,11087
1137
1172
  merge/resources/crm/resources/issues/raw_client.py,sha256=vW7S6ozgCZbh2QfgNOzppoynyPzB6HOMqsNv4sk9QBI,13686
1138
1173
  merge/resources/crm/resources/issues/types/__init__.py,sha256=jjxa8xGa5vTp5-uzIuy8dWJLKrwzX6DnMKPEEkgN4eo,188
1139
1174
  merge/resources/crm/resources/issues/types/issues_list_request_status.py,sha256=cBbfu1Q5A0ZPOzB7nM_VHRKEJHnxk8lqN-cGmRX6_x4,508
1140
1175
  merge/resources/crm/resources/leads/__init__.py,sha256=oy51fXd9SpRVvxwykYYeqzlt59aqsN63yPuUCTlpUOM,223
1141
- merge/resources/crm/resources/leads/client.py,sha256=lJAS2QfjxlSVyq6blWYFRCnkV6G1Fp1gyz0HrbtC9YU,26537
1176
+ merge/resources/crm/resources/leads/client.py,sha256=_NQMRFQSt1aG8OZAzElWr3mhkErGvC3ftUlDfb6T8CA,26905
1142
1177
  merge/resources/crm/resources/leads/raw_client.py,sha256=Szduz2OQIG0k3jmTzYTFi_iWnvO4RDFITdIzYge1HHo,32603
1143
1178
  merge/resources/crm/resources/leads/types/__init__.py,sha256=mERzaJmz-BGiAjeqVJCdk_fRVZXJSFOMdiG8nITbcyw,285
1144
1179
  merge/resources/crm/resources/leads/types/leads_list_request_expand.py,sha256=S9Bq1uyyKWNK7L_nYXpZv-k8pJKwLYS1uGkPmP5twxI,1851
@@ -1149,18 +1184,18 @@ merge/resources/crm/resources/link_token/raw_client.py,sha256=tkU9dI7DH2O2-kty3b
1149
1184
  merge/resources/crm/resources/link_token/types/__init__.py,sha256=_DhmnLsRiAcpljK-OPGnDEHf9-FqnWXLVWUL4pOe8-I,207
1150
1185
  merge/resources/crm/resources/link_token/types/end_user_details_request_language.py,sha256=2BMH_lFqvpT1C4ljoUh5YUm2dgiuLYil6s3_pKcn540,194
1151
1186
  merge/resources/crm/resources/linked_accounts/__init__.py,sha256=jDuRvmYXqKpaHo-Ya2LUjqfqk_rXOUOW7dSpRi-dvqM,187
1152
- merge/resources/crm/resources/linked_accounts/client.py,sha256=XitZfc6V52JCze5agHMZoUBZK5vDHw0TcAy8vji97r0,9766
1187
+ merge/resources/crm/resources/linked_accounts/client.py,sha256=BLpcOQZAVp6Bqdg77uaLMahCNT1G6OocaHQQWhDi2Hw,9950
1153
1188
  merge/resources/crm/resources/linked_accounts/raw_client.py,sha256=UP7yc0HUXxQtQQJNy9gOu1fA12_AWaIEv7FD3u90Sw0,10618
1154
1189
  merge/resources/crm/resources/linked_accounts/types/__init__.py,sha256=FjSJvzQG9s-6wuY4YUdmieuUNQvaQXZKDSC138TRMz0,219
1155
1190
  merge/resources/crm/resources/linked_accounts/types/linked_accounts_list_request_category.py,sha256=_EGocl5xFPQUgGIidOl4wEewCLbzqWyiXV2PIev7l7M,1354
1156
1191
  merge/resources/crm/resources/notes/__init__.py,sha256=gX5if8grtKNJjmHi5Fw5WsDkvVYt7TBtvjC3CPoBS9Q,223
1157
- merge/resources/crm/resources/notes/client.py,sha256=aB9s43x54DXkET1pzgfhy5Xm2XjWKFjgGCFmxAwXV-4,25705
1192
+ merge/resources/crm/resources/notes/client.py,sha256=rCkIMHXu-K3knDstApZsEOl01CF7WqZCCXhch96M3Tg,26073
1158
1193
  merge/resources/crm/resources/notes/raw_client.py,sha256=o_TbZSINAdhx2Vb3pUgPbRDB14yUroCQOpAtMZJRb0A,31757
1159
1194
  merge/resources/crm/resources/notes/types/__init__.py,sha256=nj0GlmtO70iIc5n73Jfrzf5et4AQULx4Zf0Xb25aXQY,285
1160
1195
  merge/resources/crm/resources/notes/types/notes_list_request_expand.py,sha256=g6nuqZi67Q3KC-l59T1FGN2OgWc9miVdLkBslv_fLKY,3267
1161
1196
  merge/resources/crm/resources/notes/types/notes_retrieve_request_expand.py,sha256=kSpZeJY7tXGptI38sn6cPmTuCkcAyC2ssSQXEtnikvY,3331
1162
1197
  merge/resources/crm/resources/opportunities/__init__.py,sha256=QW1NlRBYyJPG_Er_rHcyodUu0BIDLYkCtOZJymBbTdw,321
1163
- merge/resources/crm/resources/opportunities/client.py,sha256=ELYGuNO_6tVKNQ4e7-l3MyiVrrpE9pLJFm75e_FXovk,34832
1198
+ merge/resources/crm/resources/opportunities/client.py,sha256=QjOScopBc5FeCIL9etmEgyDdaqOm-XYkSpx0g1fsHjg,35200
1164
1199
  merge/resources/crm/resources/opportunities/raw_client.py,sha256=DqijgwFgH9hq7W-LeHFkdtvm1skDpotxYZjlvrXuT5k,43360
1165
1200
  merge/resources/crm/resources/opportunities/types/__init__.py,sha256=TT7TjixR-cnGHPRRIF3czuKdzfpxOXb4eAyMC0Uitqg,445
1166
1201
  merge/resources/crm/resources/opportunities/types/opportunities_list_request_expand.py,sha256=3lyV0eut9bYjXHegQqIYxH2ea0qxXASh1LFoN2mApqQ,1475
@@ -1176,19 +1211,19 @@ merge/resources/crm/resources/scopes/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-
1176
1211
  merge/resources/crm/resources/scopes/client.py,sha256=SUI7t1U3vU746rHsU1C_UDi7H3Q72W5LLaBHF_UDrMU,10770
1177
1212
  merge/resources/crm/resources/scopes/raw_client.py,sha256=jZJQBsPCfvhFT6EypfQjITPNskPxc66ej2jL7Fls_bk,10986
1178
1213
  merge/resources/crm/resources/stages/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1179
- merge/resources/crm/resources/stages/client.py,sha256=0Zs8LdkLsjslNN08qXHxRatZwZGGiSmsy1oV0et9AcI,18298
1214
+ merge/resources/crm/resources/stages/client.py,sha256=H49GVcSIp2zOx-uGdriUtSdURpd6rZUTZllhBTXn5kA,18666
1180
1215
  merge/resources/crm/resources/stages/raw_client.py,sha256=yUePjW64wrdhpu8TVPneDx8tH3IYdDl5WaW3bRXHMB8,21940
1181
1216
  merge/resources/crm/resources/sync_status/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1182
- 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
1183
1218
  merge/resources/crm/resources/sync_status/raw_client.py,sha256=sV5IyrbjzFpHSZTPuTYEa9jz5YQQzveRZL7t_WFqAJI,5625
1184
1219
  merge/resources/crm/resources/tasks/__init__.py,sha256=g0IkZEoFIvAiQRniB-Bm3Pfg0RL4VxUSz3hMeXU0D2Y,223
1185
- merge/resources/crm/resources/tasks/client.py,sha256=xmMq_n2juTpoiTz_RNcALThHlmlvhpIBIPs9p3rt9lw,28918
1220
+ merge/resources/crm/resources/tasks/client.py,sha256=bPqtw_-l8ftJOUViBQyZhVKPbJC3OmkoIJInAzP0pA8,29286
1186
1221
  merge/resources/crm/resources/tasks/raw_client.py,sha256=HPQrTx6RbR4S_1TsVWXDZi_GIBW_Y7fQQ1cVXixjvIA,37132
1187
1222
  merge/resources/crm/resources/tasks/types/__init__.py,sha256=o6eKt7h_1nuPuflLZDZUpfUHJFLNk5fDbwCc9OIekcs,285
1188
1223
  merge/resources/crm/resources/tasks/types/tasks_list_request_expand.py,sha256=GILhwWPY4at7DZOd_i3JlLOpxmZJQl1APMQW98iHU3M,1531
1189
1224
  merge/resources/crm/resources/tasks/types/tasks_retrieve_request_expand.py,sha256=riNnk8Pq06DztZ8115GTbiBboLKTm6H1h3r0fVNHVDQ,1563
1190
1225
  merge/resources/crm/resources/users/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1191
- 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
1192
1227
  merge/resources/crm/resources/users/raw_client.py,sha256=f71tBqeXjt8LIBZy-dDv0es3kV4SMmc8OjyRsyYx2qE,25540
1193
1228
  merge/resources/crm/resources/webhook_receivers/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1194
1229
  merge/resources/crm/resources/webhook_receivers/client.py,sha256=nOYMjrWYuh_0t6g3YMbd_Z8jQduLwiZxT9s_7nsY0Pw,5210
@@ -1375,7 +1410,7 @@ merge/resources/crm/types/remote_field.py,sha256=VYODTdHsSUSj1aaWzcWKdDzSy6076US
1375
1410
  merge/resources/crm/types/remote_field_api.py,sha256=o7WbCUNUnmPtn6F09P3lKsXSHpEjAN8ZEfu8xsZL4Ko,1085
1376
1411
  merge/resources/crm/types/remote_field_api_coverage.py,sha256=4bdB5WY4RcmZWXAIOeR_vTqnwIJsGr5eeSJDJFKxgq4,130
1377
1412
  merge/resources/crm/types/remote_field_api_response.py,sha256=IGLLpajsqOH3YFa2yFoLXoaLy516oACxshh46c5gLoc,1543
1378
- 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
1379
1414
  merge/resources/crm/types/remote_field_class_field_choices_item.py,sha256=D5b6HkXqWvnb0eoy4qo8fPgGDYC_bFsGyDUt0C8IglQ,677
1380
1415
  merge/resources/crm/types/remote_field_class_field_format.py,sha256=SiD46GD6y9f5y1xOJ51_r7BZJBfsTjT4ChetGIzikEw,193
1381
1416
  merge/resources/crm/types/remote_field_class_field_type.py,sha256=yoj_DEE3MenAnIe9ASAD9rb75dw6IOdgRif2rrMyVvw,185
@@ -1430,7 +1465,7 @@ merge/resources/filestorage/resources/async_passthrough/raw_client.py,sha256=reK
1430
1465
  merge/resources/filestorage/resources/async_passthrough/types/__init__.py,sha256=0LUj53dTeTqfs50XizOk2ro3RcqGYXn71qHGyZs5Rdg,215
1431
1466
  merge/resources/filestorage/resources/async_passthrough/types/async_passthrough_retrieve_response.py,sha256=uBMjgizc2Qhm2JA0rRTer6NiRT3sq_v-EyTrzkiQC0g,203
1432
1467
  merge/resources/filestorage/resources/audit_trail/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1433
- 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
1434
1469
  merge/resources/filestorage/resources/audit_trail/raw_client.py,sha256=32iXOgdco7yolbgRNPqiqxV0dZow5opwgU7V7V1qQlk,9104
1435
1470
  merge/resources/filestorage/resources/available_actions/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1436
1471
  merge/resources/filestorage/resources/available_actions/client.py,sha256=Y3ifxioTIotB3cL81KT1YthL1YlgLBoCcBa9fvbXEjo,2911
@@ -1439,21 +1474,21 @@ merge/resources/filestorage/resources/delete_account/__init__.py,sha256=_VhToAyI
1439
1474
  merge/resources/filestorage/resources/delete_account/client.py,sha256=SVMyRWOXlssK7hT1jT_pbTMgJBhSSxi0tNrwUeeZJnI,2681
1440
1475
  merge/resources/filestorage/resources/delete_account/raw_client.py,sha256=D5tdLcH0sH4Rp4SGbKp5CJoAF6aOLc8F2WbuLxm6MYA,2651
1441
1476
  merge/resources/filestorage/resources/drives/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1442
- merge/resources/filestorage/resources/drives/client.py,sha256=NcKgzvAE0cVPl8NaZChcr1A9N8fbtloF5z31HMHYSyU,11289
1477
+ merge/resources/filestorage/resources/drives/client.py,sha256=sH9nCYjYTrV5_27TxeJ3I071ISI0pq1TA5_z6xca-_o,11473
1443
1478
  merge/resources/filestorage/resources/drives/raw_client.py,sha256=qPgXArXmY5Naz1OH_8tjdAcuP90flFsS1W0M_zUIrSs,13702
1444
1479
  merge/resources/filestorage/resources/field_mapping/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1445
1480
  merge/resources/filestorage/resources/field_mapping/client.py,sha256=2xQD4zkJTSNBbvM7WRWHnPGvgUoC9ngToWkVMwP4MwU,23562
1446
1481
  merge/resources/filestorage/resources/field_mapping/raw_client.py,sha256=WRc93LhwZTeZJcF2iYtwjDWXax4UjJuqnMtr1eQGRFE,29311
1447
1482
  merge/resources/filestorage/resources/files/__init__.py,sha256=6THf5EGAJ7tVbx_S9_cuD0NXnBQVGx6i9u2CCKxPTdQ,405
1448
- merge/resources/filestorage/resources/files/client.py,sha256=6UJ6btDxwtOThyu3fQSLAlUFs6tpAA91vuuDa64hFlo,32774
1449
- merge/resources/filestorage/resources/files/raw_client.py,sha256=Ns85FhyjxYF9CNaxH-MlDz23XswI7-PY97MpuBcj0Ic,42299
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
1450
1485
  merge/resources/filestorage/resources/files/types/__init__.py,sha256=wDc-L06UTT_rcfmBe5vwpQeofdLQVnPhwVL25_Ep4Mg,548
1451
1486
  merge/resources/filestorage/resources/files/types/files_download_request_meta_list_request_order_by.py,sha256=EbgeEimUUUJtFbjpzIa2j12TfA6Wgs6q8gYO-bCo_pw,1175
1452
1487
  merge/resources/filestorage/resources/files/types/files_list_request_expand.py,sha256=Osq6VmKt1P0g6NGq5P7u6m0Al8u9pXHoKFCCTMaDYV0,1511
1453
1488
  merge/resources/filestorage/resources/files/types/files_list_request_order_by.py,sha256=VmgIr2XJZTSJ9fZnlGY4t8XjeOzoBElzcg2eRGoS8Xo,1080
1454
1489
  merge/resources/filestorage/resources/files/types/files_retrieve_request_expand.py,sha256=P0WRFiimt1N6F1f3iuVNXmYLMa3y6BS15ZKdXobYdIY,1543
1455
1490
  merge/resources/filestorage/resources/folders/__init__.py,sha256=2eY5VQNpe9L1_mZrwdBoQnzupXdMDiaH8kvcUrNKask,231
1456
- merge/resources/filestorage/resources/folders/client.py,sha256=sVLbYjwu_L0RXZRivX9p4afCa3YGJMFSwCJtrRE9U8U,18310
1491
+ merge/resources/filestorage/resources/folders/client.py,sha256=hZXYKWTr-PJ2leuIuBoU-HIKi8_5zP7a1kOslrHnSuk,18494
1457
1492
  merge/resources/filestorage/resources/folders/raw_client.py,sha256=Ebuw6wTo1Fz1HPaGURW37o24f7_jo9FOUH9TNGrG5_E,23133
1458
1493
  merge/resources/filestorage/resources/folders/types/__init__.py,sha256=pXdPNYxDthupCSrM9C9O1fsrV3CBr14nD9Kw7pykLsc,297
1459
1494
  merge/resources/filestorage/resources/folders/types/folders_list_request_expand.py,sha256=CYoAAnftwM2amoqNX7MLskkQMR0LdR5wIyFI0LiZDxY,1667
@@ -1465,10 +1500,10 @@ merge/resources/filestorage/resources/generate_key/__init__.py,sha256=_VhToAyIt_
1465
1500
  merge/resources/filestorage/resources/generate_key/client.py,sha256=EIv4VUdRiyoXch9YH53jSMqhxol4jGS4ZDsxQ8GbABk,3086
1466
1501
  merge/resources/filestorage/resources/generate_key/raw_client.py,sha256=IgCgZ13pxmNZIYM_8pIQyGkosp8-z4ZSmqhk1ne4Uog,3866
1467
1502
  merge/resources/filestorage/resources/groups/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1468
- merge/resources/filestorage/resources/groups/client.py,sha256=SUskM02imaRU32eQZIS4Gti6HFUYzvxkVYOGy5rRWc4,12077
1503
+ merge/resources/filestorage/resources/groups/client.py,sha256=eNCnYKP8IGGSQdj61BKvSJP6QPBdYDbrZCf_WNEb1L8,12261
1469
1504
  merge/resources/filestorage/resources/groups/raw_client.py,sha256=IZdTiYKFLNMhaIEnWvDWkM5PN_pUv-1uAODo0zl_56E,14504
1470
1505
  merge/resources/filestorage/resources/issues/__init__.py,sha256=8N-ynHIskTDmO3zwQbhyEHy7OTb63CJ_NdZRdLDBOyk,167
1471
- merge/resources/filestorage/resources/issues/client.py,sha256=Dh0zUkhx8DHUBWNW8wKy8-WTxN03VhquWb4T1NHmEAw,10935
1506
+ merge/resources/filestorage/resources/issues/client.py,sha256=sXF7InCjG7veFHpJeP05pH8dT0xXSctKWzK8q6vSp_E,11119
1472
1507
  merge/resources/filestorage/resources/issues/raw_client.py,sha256=zrC8mYWdLXFs-m6P9zX7_zVEx4F1Su2OFmYL8SaSFEY,13718
1473
1508
  merge/resources/filestorage/resources/issues/types/__init__.py,sha256=jjxa8xGa5vTp5-uzIuy8dWJLKrwzX6DnMKPEEkgN4eo,188
1474
1509
  merge/resources/filestorage/resources/issues/types/issues_list_request_status.py,sha256=cBbfu1Q5A0ZPOzB7nM_VHRKEJHnxk8lqN-cGmRX6_x4,508
@@ -1476,7 +1511,7 @@ merge/resources/filestorage/resources/link_token/__init__.py,sha256=_VhToAyIt_5a
1476
1511
  merge/resources/filestorage/resources/link_token/client.py,sha256=xo31dYHCPrJgvauKflQhWCAYGnMP5tCqS4nQqXSoWF0,12649
1477
1512
  merge/resources/filestorage/resources/link_token/raw_client.py,sha256=bwjAQr-86bHEe_i9htZkr2TlS1rtIwIhz1H5-qCcUg0,13035
1478
1513
  merge/resources/filestorage/resources/linked_accounts/__init__.py,sha256=jDuRvmYXqKpaHo-Ya2LUjqfqk_rXOUOW7dSpRi-dvqM,187
1479
- merge/resources/filestorage/resources/linked_accounts/client.py,sha256=rmr1awMHTAvgBWsOMpp9UJBYL2F_8JbMGCuEIYdFHoA,9782
1514
+ merge/resources/filestorage/resources/linked_accounts/client.py,sha256=akawa1Ph8_4Whxvdh-DdGUnoqKaJfD9hZ23p11XVB9Q,9966
1480
1515
  merge/resources/filestorage/resources/linked_accounts/raw_client.py,sha256=1SC0Sko7IcZ68GNaBbnqqe1rTbQ8vI7kbxU2Uwg3jls,10634
1481
1516
  merge/resources/filestorage/resources/linked_accounts/types/__init__.py,sha256=FjSJvzQG9s-6wuY4YUdmieuUNQvaQXZKDSC138TRMz0,219
1482
1517
  merge/resources/filestorage/resources/linked_accounts/types/linked_accounts_list_request_category.py,sha256=_EGocl5xFPQUgGIidOl4wEewCLbzqWyiXV2PIev7l7M,1354
@@ -1490,10 +1525,10 @@ merge/resources/filestorage/resources/scopes/__init__.py,sha256=_VhToAyIt_5axN6C
1490
1525
  merge/resources/filestorage/resources/scopes/client.py,sha256=qcvz2XasKRTQnmXS-giiNiAEiHYbwkpTL8u61HpYBGg,10834
1491
1526
  merge/resources/filestorage/resources/scopes/raw_client.py,sha256=7XyoTdUNd2fdNKvuGtc5WmZQMgZmWOMPOrlUDSFlB8U,11034
1492
1527
  merge/resources/filestorage/resources/sync_status/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1493
- 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
1494
1529
  merge/resources/filestorage/resources/sync_status/raw_client.py,sha256=xshrw3Bfkc6r5d6wZABaMVhHVGQVhuQ-czQklZ1d-YQ,5641
1495
1530
  merge/resources/filestorage/resources/users/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1496
- merge/resources/filestorage/resources/users/client.py,sha256=_ZzFkymZnU39QNZuy59KDFDvFl2twMZM1qsotWH3itw,11223
1531
+ merge/resources/filestorage/resources/users/client.py,sha256=NQvHVmc5t5Vbzqdwusaxvcdc69UpFOaDmMsAeXG73_A,11407
1497
1532
  merge/resources/filestorage/resources/users/raw_client.py,sha256=0ZTsI3BcasYNEjamfQihUxWeVYPFJ6ELfgp1585I82I,13636
1498
1533
  merge/resources/filestorage/resources/webhook_receivers/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1499
1534
  merge/resources/filestorage/resources/webhook_receivers/client.py,sha256=bECZFxfPLQxTPgiShgbwkj36p-ZD3uQDlgEnAeUASCM,5242
@@ -1630,37 +1665,37 @@ merge/resources/hris/resources/async_passthrough/raw_client.py,sha256=tbi5OIYZ_V
1630
1665
  merge/resources/hris/resources/async_passthrough/types/__init__.py,sha256=0LUj53dTeTqfs50XizOk2ro3RcqGYXn71qHGyZs5Rdg,215
1631
1666
  merge/resources/hris/resources/async_passthrough/types/async_passthrough_retrieve_response.py,sha256=uBMjgizc2Qhm2JA0rRTer6NiRT3sq_v-EyTrzkiQC0g,203
1632
1667
  merge/resources/hris/resources/audit_trail/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1633
- 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
1634
1669
  merge/resources/hris/resources/audit_trail/raw_client.py,sha256=awnCQFv1dJjNXguMre9IBtS1VkydILFYBHUaA0lkSm4,9090
1635
1670
  merge/resources/hris/resources/available_actions/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1636
1671
  merge/resources/hris/resources/available_actions/client.py,sha256=XXCvPuZsK2oLeDYME2iFJk3UC-TJl1QJsJxVqZDFZc0,2897
1637
1672
  merge/resources/hris/resources/available_actions/raw_client.py,sha256=UH9nOXSOCUu7XFVSiZVScU-fMwOIFmA_VGiBDW2IOEs,3439
1638
1673
  merge/resources/hris/resources/bank_info/__init__.py,sha256=cl9rAAh18gI_rXOXcAxdV1SO4M2Gp-O8r9pCZ94lB1Q,239
1639
- merge/resources/hris/resources/bank_info/client.py,sha256=ZDApzPPgvbgj4ldDmuFSMmGW0xl5zaIeoKD7A4IOMKc,17171
1674
+ merge/resources/hris/resources/bank_info/client.py,sha256=Tjqg4XuDAaB7XzzvNRzYdPyy7P1TIPhtLbp7E336l7A,17355
1640
1675
  merge/resources/hris/resources/bank_info/raw_client.py,sha256=MTipRAKC7vx5HMigVAq7A290202SKY5DdhUBQ7LjDaI,19718
1641
1676
  merge/resources/hris/resources/bank_info/types/__init__.py,sha256=a5A8TeGy6CBD8Ub7XzXoWqzJucSojub_UWzescwdMDE,313
1642
1677
  merge/resources/hris/resources/bank_info/types/bank_info_list_request_account_type.py,sha256=fxSAKSl0KIXUSdd25UlyriE96XTYGEJjaulntNbuVzg,529
1643
1678
  merge/resources/hris/resources/bank_info/types/bank_info_list_request_order_by.py,sha256=aOl53Oa0GVRbvR5XgZMgw__pJoPRAdqs0HAXFc5GK1U,728
1644
1679
  merge/resources/hris/resources/benefits/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1645
- 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
1646
1681
  merge/resources/hris/resources/benefits/raw_client.py,sha256=DlKHBCqmjRW36_OEJ47P-aop1UZ041_YeliCd4z3Rg0,14940
1647
1682
  merge/resources/hris/resources/companies/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1648
- merge/resources/hris/resources/companies/client.py,sha256=z_9Wbz6AzZ9mhuVIDQbHlwBLT2QGH8lx2-Xq5POGsnU,10939
1683
+ merge/resources/hris/resources/companies/client.py,sha256=gOghFPpehD1RqbBoOs4K52zLBR2EDWbIyMutR2awt30,11123
1649
1684
  merge/resources/hris/resources/companies/raw_client.py,sha256=Wl4w5SLpDXh5DMaALaql-t4lw3fvFiB1skVjkxaG0-E,13330
1650
1685
  merge/resources/hris/resources/delete_account/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1651
1686
  merge/resources/hris/resources/delete_account/client.py,sha256=l0EKsOUWZQ9NyaFb7PqETeb9bnnFhZNfYxcuvQ8PE0A,2667
1652
1687
  merge/resources/hris/resources/delete_account/raw_client.py,sha256=QTvig4eJsnMJ_RdFDw4G1TvwUzUvh1VYxMAJi9RGj9I,2637
1653
1688
  merge/resources/hris/resources/dependents/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1654
- merge/resources/hris/resources/dependents/client.py,sha256=fpHSPwhLRTkW83cUVqMxRhgvL5TEw1OllUFPlLYuOxI,12121
1689
+ merge/resources/hris/resources/dependents/client.py,sha256=5w5cYKRaCLLLVUqK-02Q0srs-bmRPFsgw1050zd2WNE,12305
1655
1690
  merge/resources/hris/resources/dependents/raw_client.py,sha256=ww1xCMw2H2RzhymJxhHTwWl6-ie1y4jRDz3RyirhCmo,14548
1656
1691
  merge/resources/hris/resources/employee_payroll_runs/__init__.py,sha256=tcSw_WFZYJW1fp0J8owLTrOekvh_Id3N44OaLtwUkYs,279
1657
- merge/resources/hris/resources/employee_payroll_runs/client.py,sha256=KRMCZRKqyuq9Okfa1KOSkpyh1cqt5UXT6tkhISJ65EQ,15565
1692
+ merge/resources/hris/resources/employee_payroll_runs/client.py,sha256=hnpgR42kyCxbDYA-047NZDykJcykGfdYAe-KI9wCv5U,15749
1658
1693
  merge/resources/hris/resources/employee_payroll_runs/raw_client.py,sha256=45jAB-Hq4PMnD4ixo0WYJkfMAeZn2VL24T2XKe5ntFE,18544
1659
1694
  merge/resources/hris/resources/employee_payroll_runs/types/__init__.py,sha256=Ia4qjGW85A-Z4lTj2MuoAQGDrREoVxY0qijCJmazHXk,373
1660
1695
  merge/resources/hris/resources/employee_payroll_runs/types/employee_payroll_runs_list_request_expand.py,sha256=zTW66wQmK-5lNIsfQUewfAcPwPEnLiJmGP4iq7VY-YA,829
1661
1696
  merge/resources/hris/resources/employee_payroll_runs/types/employee_payroll_runs_retrieve_request_expand.py,sha256=Wal9UB9KcMJwpulAHNu_mobxClWUbFjE5GnaWi6fOBg,845
1662
1697
  merge/resources/hris/resources/employees/__init__.py,sha256=8_2NCEuD1AJAAtrhLI7TQ3mtuBNCYvrlkf-Q7BK9klE,763
1663
- merge/resources/hris/resources/employees/client.py,sha256=TQd31cG-cHYdcwEBkcJD9SPMCwbrY23EQ93Amu8nFc4,33270
1698
+ merge/resources/hris/resources/employees/client.py,sha256=7DOe89-yIT4N0bgMH_vnxlAn5NsZpMrIVJ0Kw0HwqJ0,33454
1664
1699
  merge/resources/hris/resources/employees/raw_client.py,sha256=D6bsZmJjmioQpIYjWqthfYdkbkxwiHzFzLl9xBU8Blw,39424
1665
1700
  merge/resources/hris/resources/employees/types/__init__.py,sha256=2f2aEF4iSPrhr0aXN3mh13nc-Hxrsq6NNO9kXNQ0rT4,1108
1666
1701
  merge/resources/hris/resources/employees/types/employees_list_request_employment_status.py,sha256=BY67cCw8kzJS1KypaePpcMKyGUVP71w5VwpOiD_GTSM,739
@@ -1672,10 +1707,10 @@ merge/resources/hris/resources/employees/types/employees_retrieve_request_remote
1672
1707
  merge/resources/hris/resources/employees/types/employees_retrieve_request_show_enum_origins.py,sha256=lA7L6qI0K-oQNu5FolDLPsqVFpcaoIBnW6qhiZ47a5g,4179
1673
1708
  merge/resources/hris/resources/employees/types/ignore_common_model_request_reason.py,sha256=9QCgrEP76XjxWTTdo8_2Z7vZyzOnj-9ZtBe1pgZQWEk,189
1674
1709
  merge/resources/hris/resources/employer_benefits/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1675
- 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
1676
1711
  merge/resources/hris/resources/employer_benefits/raw_client.py,sha256=kascshSPNAZK99hpfZCD3t0fsHI3Y9INVolAokcQ2f4,13572
1677
1712
  merge/resources/hris/resources/employments/__init__.py,sha256=yANiOWCfm675FK1owSISv_YLM89uB3y_t3PrB4KCim8,699
1678
- merge/resources/hris/resources/employments/client.py,sha256=TJxjglC7gKnztcE9Y7CwBj9Fqj_YGbUAN2DFRaozHjc,16744
1713
+ merge/resources/hris/resources/employments/client.py,sha256=s5o64vxSpRuDCuqpWPqMXDLcQitsCXtaE_BTzBpgizw,16928
1679
1714
  merge/resources/hris/resources/employments/raw_client.py,sha256=qEpt874mH6kWGLpV3cUwltrwVheF5Y3UllhYCfMM_UA,19255
1680
1715
  merge/resources/hris/resources/employments/types/__init__.py,sha256=y87dHc7s-mLaIb8-yiJ85ZC7VH8Ej67j3P_LpdnZFB8,1006
1681
1716
  merge/resources/hris/resources/employments/types/employments_list_request_expand.py,sha256=cWEpvpDaV92QA92gxXC3PJjLv8qMx-YLBv-LzWUC5CM,777
@@ -1695,10 +1730,10 @@ merge/resources/hris/resources/generate_key/__init__.py,sha256=_VhToAyIt_5axN6CL
1695
1730
  merge/resources/hris/resources/generate_key/client.py,sha256=RjvyCBe_z6_5bjCvwI0Te-ZqhkTGEX3dTatuOZe7voM,3072
1696
1731
  merge/resources/hris/resources/generate_key/raw_client.py,sha256=Y2J3etGrrJZs9wA6UqrURSz_FwcQH2idb4QUN14CrUA,3852
1697
1732
  merge/resources/hris/resources/groups/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1698
- 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
1699
1734
  merge/resources/hris/resources/groups/raw_client.py,sha256=oxC7gfXfOVFcR1mZ9FA4GbOR2mgsOV3bIQoDwkhmScM,17706
1700
1735
  merge/resources/hris/resources/issues/__init__.py,sha256=8N-ynHIskTDmO3zwQbhyEHy7OTb63CJ_NdZRdLDBOyk,167
1701
- merge/resources/hris/resources/issues/client.py,sha256=bZ-bnRRFYhMAaM_M6ZM5v0F4uxrZMPj2bcnd5MXY5Ps,10907
1736
+ merge/resources/hris/resources/issues/client.py,sha256=e-DOmVFHNZ14F7Pq2mLkL0t-FV3dFXWX6u6jhEuFyyI,11091
1702
1737
  merge/resources/hris/resources/issues/raw_client.py,sha256=tlppqFgwdwGM1UzbPWkcSTJdYe7b8bh7mXag-tVK-hs,13690
1703
1738
  merge/resources/hris/resources/issues/types/__init__.py,sha256=jjxa8xGa5vTp5-uzIuy8dWJLKrwzX6DnMKPEEkgN4eo,188
1704
1739
  merge/resources/hris/resources/issues/types/issues_list_request_status.py,sha256=cBbfu1Q5A0ZPOzB7nM_VHRKEJHnxk8lqN-cGmRX6_x4,508
@@ -1708,12 +1743,12 @@ merge/resources/hris/resources/link_token/raw_client.py,sha256=e_Se2xqtqZCjdAM7V
1708
1743
  merge/resources/hris/resources/link_token/types/__init__.py,sha256=_DhmnLsRiAcpljK-OPGnDEHf9-FqnWXLVWUL4pOe8-I,207
1709
1744
  merge/resources/hris/resources/link_token/types/end_user_details_request_language.py,sha256=2BMH_lFqvpT1C4ljoUh5YUm2dgiuLYil6s3_pKcn540,194
1710
1745
  merge/resources/hris/resources/linked_accounts/__init__.py,sha256=jDuRvmYXqKpaHo-Ya2LUjqfqk_rXOUOW7dSpRi-dvqM,187
1711
- merge/resources/hris/resources/linked_accounts/client.py,sha256=NqoYM_3UqWNbHi-KMN1eyW6JgpoX4_xIZ6ji8FE__co,9768
1746
+ merge/resources/hris/resources/linked_accounts/client.py,sha256=qgJ6Oj9HvZuqSMCSZbzYRuJWbyhYld3kHzADALzCx7Q,9952
1712
1747
  merge/resources/hris/resources/linked_accounts/raw_client.py,sha256=90gn8Co6WkiIOlhLAlEvQsQn0fqv-caXwmqnP1bICKc,10620
1713
1748
  merge/resources/hris/resources/linked_accounts/types/__init__.py,sha256=FjSJvzQG9s-6wuY4YUdmieuUNQvaQXZKDSC138TRMz0,219
1714
1749
  merge/resources/hris/resources/linked_accounts/types/linked_accounts_list_request_category.py,sha256=_EGocl5xFPQUgGIidOl4wEewCLbzqWyiXV2PIev7l7M,1354
1715
1750
  merge/resources/hris/resources/locations/__init__.py,sha256=LPqpOwykkC4ereezxGHF-R016DpCoHrOBcY4CKadQi4,541
1716
- merge/resources/hris/resources/locations/client.py,sha256=rfLKm-DHDiQhGUqNocUbwm6kGif28W47oTtCppFt3t0,14958
1751
+ merge/resources/hris/resources/locations/client.py,sha256=maVYDiFngFVmXgMgV3yZnUbTIQm_szhhNmNdFf3Pdxk,15142
1717
1752
  merge/resources/hris/resources/locations/raw_client.py,sha256=jRab9wv1s7yMCIYZm1xQgoM2fs5Oj0q2Pd9NTfGKz-I,17427
1718
1753
  merge/resources/hris/resources/locations/types/__init__.py,sha256=IHW1QcMBuvcPGpImeyWsQpLI8YiwYWdWUNI-8ltscp0,759
1719
1754
  merge/resources/hris/resources/locations/types/locations_list_request_location_type.py,sha256=GIGtB6d4EHpBpD6Jogl6_m54CKVDNiaQu9NaRAwPRkE,500
@@ -1725,10 +1760,10 @@ merge/resources/hris/resources/passthrough/__init__.py,sha256=_VhToAyIt_5axN6CLJ
1725
1760
  merge/resources/hris/resources/passthrough/client.py,sha256=gP1qRSGmSY5vjjanCT8j8CQH9mFNtZX8yV4rGLmz6QY,3639
1726
1761
  merge/resources/hris/resources/passthrough/raw_client.py,sha256=P_1KIMIApFHlIKDGJ9GHn5_GVVldr5dutGAB4rhAMJg,3997
1727
1762
  merge/resources/hris/resources/pay_groups/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1728
- 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
1729
1764
  merge/resources/hris/resources/pay_groups/raw_client.py,sha256=78ARFnqxEY7NA0T_i7zU9lmklIYcXzZMDRVNuEdjWjU,13360
1730
1765
  merge/resources/hris/resources/payroll_runs/__init__.py,sha256=_SyNb-DiVAOjsRu0D5-MVyyTK8q53B_QRA-CVss2c1s,551
1731
- merge/resources/hris/resources/payroll_runs/client.py,sha256=0jfc87CJD1OFu9lQ6Wjt-UQ5d-fHSDgtlh4Z4ZGzOz4,17353
1766
+ merge/resources/hris/resources/payroll_runs/client.py,sha256=MWyK3HpvPtq3T4Li9AWKcWob42YfPx1RymhwK_-HQVI,17537
1732
1767
  merge/resources/hris/resources/payroll_runs/raw_client.py,sha256=B2AcYVFFIGXRpIGjP6UF8CpIcluUONgBJGtTr2oWXH8,20346
1733
1768
  merge/resources/hris/resources/payroll_runs/types/__init__.py,sha256=pQZdCwnFF7RoGR379_u21K3_72hSDCbMS7tahfMfF5o,779
1734
1769
  merge/resources/hris/resources/payroll_runs/types/payroll_runs_list_request_remote_fields.py,sha256=tPzvNgS7sSipUGe7YwOFPtYGsBsPitK07LymV7ImF_0,801
@@ -1743,13 +1778,13 @@ merge/resources/hris/resources/scopes/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3
1743
1778
  merge/resources/hris/resources/scopes/client.py,sha256=W8dM4PN3aNlyXyi3-2bo_OdMyzSSfIuKHiCu3Q3bfI8,10778
1744
1779
  merge/resources/hris/resources/scopes/raw_client.py,sha256=B76Goa1Hwc5mFBH_N5bX5gurkZP3Uyk5WCkih9ZkAT8,10992
1745
1780
  merge/resources/hris/resources/sync_status/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1746
- 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
1747
1782
  merge/resources/hris/resources/sync_status/raw_client.py,sha256=vSlp7BQ_j8iQ8igB_a3HP461jfJ7T2ufL0C2Ajr_RNg,5627
1748
1783
  merge/resources/hris/resources/teams/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1749
- merge/resources/hris/resources/teams/client.py,sha256=z_zVv_tJvoV3VPszFhulTWgfkTKpyblu5v19wrKC_Wc,12439
1784
+ merge/resources/hris/resources/teams/client.py,sha256=QcT7e1OzYi5IPGozudG9Fqeg6mvcHAsOjH24ZcnH4lo,12623
1750
1785
  merge/resources/hris/resources/teams/raw_client.py,sha256=L77DktlGZxvKoZSluh4PovuDQkaA_t1Mv-v4fb4xAsM,14880
1751
1786
  merge/resources/hris/resources/time_off/__init__.py,sha256=mY-f8GoIWWA4gSw3z9ZkSMOaFiAW-2txw663SvCyl5s,713
1752
- merge/resources/hris/resources/time_off/client.py,sha256=9T6p8erJRza2vsiw6e_6UoeFeWh5pBrx7AcClgYNiuo,25045
1787
+ merge/resources/hris/resources/time_off/client.py,sha256=LcHv4i2b8_G2LUJ5j1hlJDnhugvAYk66Ce_85-QY2i8,25229
1753
1788
  merge/resources/hris/resources/time_off/raw_client.py,sha256=twUq_FuSVkWavOz_FJkDfk4uYtlZVt1ygO_5sMJwnv0,30440
1754
1789
  merge/resources/hris/resources/time_off/types/__init__.py,sha256=sk1XIoU-5Fn-OFy1Lpi3S5aUVpI5OeJuQ-D7DhHTIeA,1040
1755
1790
  merge/resources/hris/resources/time_off/types/time_off_list_request_expand.py,sha256=V4uU1OzcmJevHXr79BbmiXgKXum2HM7sX0mvvCk2qmA,751
@@ -1761,12 +1796,12 @@ merge/resources/hris/resources/time_off/types/time_off_retrieve_request_expand.p
1761
1796
  merge/resources/hris/resources/time_off/types/time_off_retrieve_request_remote_fields.py,sha256=ecSF0dKD1s-rCq9_hRNN4xEscNMoiZR_AQb4MoXdlEQ,1627
1762
1797
  merge/resources/hris/resources/time_off/types/time_off_retrieve_request_show_enum_origins.py,sha256=BgO5__bdtrj0oj7Dz3R_IheYB61tEkk_ez7aG5szaak,1651
1763
1798
  merge/resources/hris/resources/time_off_balances/__init__.py,sha256=genzWGPJ4FIK2TTq_jGLa0fDqKeua2SQPMxYcYqqvpA,193
1764
- merge/resources/hris/resources/time_off_balances/client.py,sha256=AWHwjN48eBitrphte2XmGLIWJ8HVc__Uu1D3mZBRSYY,16740
1799
+ merge/resources/hris/resources/time_off_balances/client.py,sha256=iXGcqCmBaJ4-C4zGFE-rGWwo5wQylbArLxEDf2kuAQ4,16924
1765
1800
  merge/resources/hris/resources/time_off_balances/raw_client.py,sha256=g7mIaPON8MH-r5cAGsg-N5OYhpt09dNt2M63Ftph3F0,19251
1766
1801
  merge/resources/hris/resources/time_off_balances/types/__init__.py,sha256=0IAJsgrX6q0nFIxhhUeLrWef9nSL_MalkcLimcHGx-M,230
1767
1802
  merge/resources/hris/resources/time_off_balances/types/time_off_balances_list_request_policy_type.py,sha256=b-iMfE9V52sd9Vr_Q86Vo-03tG8UaAeQRdNeWnjBovo,1272
1768
1803
  merge/resources/hris/resources/timesheet_entries/__init__.py,sha256=tGQgVuAV8aDWg1ap1hP4i5boX3BVT7_a7AQHv1hmvao,189
1769
- merge/resources/hris/resources/timesheet_entries/client.py,sha256=Zp5gS3EseIljN7MVaw_ngjdQzeEFPuig4MrcMujcC6o,20182
1804
+ merge/resources/hris/resources/timesheet_entries/client.py,sha256=tUhobAi4TNhIN79Xt_CWMf5dMsbbEVMCbWlDkUXaj6Y,20366
1770
1805
  merge/resources/hris/resources/timesheet_entries/raw_client.py,sha256=u2FAGUXp1lB1JHAvAym5hu_t-tqxiQV4Nkjtc3eRXXE,25477
1771
1806
  merge/resources/hris/resources/timesheet_entries/types/__init__.py,sha256=jNo8ilxJPb61n0TaGEu2SL0TFV-rMIBWmZM9izVkRFc,223
1772
1807
  merge/resources/hris/resources/timesheet_entries/types/timesheet_entries_list_request_order_by.py,sha256=_5wq5NOCrgq6Vf-yp0glKNwA9dnMCfNDpO-0AxLw4YE,665
@@ -1792,7 +1827,7 @@ merge/resources/hris/types/available_actions.py,sha256=j-KMLrxEDj8gAlMsEIPs0kRW_
1792
1827
  merge/resources/hris/types/bank_info.py,sha256=6VbFW3MX4kSPPS8hL6tObt5_a7WUJN_JpZTB80ZYjho,3069
1793
1828
  merge/resources/hris/types/bank_info_account_type.py,sha256=CwxfhHHnimr_lRXZhGJY4wW19lPJprwG2VF5qwROemM,185
1794
1829
  merge/resources/hris/types/bank_info_employee.py,sha256=QYbZyICGISpmkDGsXNWWuRpu-_OrafTgQwk9B8hgl-s,159
1795
- merge/resources/hris/types/benefit.py,sha256=LEmQ9x_ywKGyi3UMPGHHWT4cWcBRSrq3Ua1HTUz-LUs,3217
1830
+ merge/resources/hris/types/benefit.py,sha256=NtRrCcS5i4ngBxLAw-7JcKE34ZX1_niM_rUHM0cd67M,3217
1796
1831
  merge/resources/hris/types/benefit_employee.py,sha256=9zoRBsH6Fb8XVmnQtJUdCFDslKWoOQcqQigp3aSl5OM,158
1797
1832
  merge/resources/hris/types/benefit_plan_type_enum.py,sha256=GWiYLZ8_Pm71oQej48Bzxu9xFbTEfrBPX8qfU0ME34U,1186
1798
1833
  merge/resources/hris/types/categories_enum.py,sha256=D8WazEwlr8J2tRQT14nO_samkLIS9-gixLmortWbOoE,1391
@@ -1982,7 +2017,7 @@ merge/resources/ticketing/resources/account_token/__init__.py,sha256=_VhToAyIt_5
1982
2017
  merge/resources/ticketing/resources/account_token/client.py,sha256=ZG5vym9OZwE-klocwreK9OwaHXGA7QQhrSshr0fAchs,3103
1983
2018
  merge/resources/ticketing/resources/account_token/raw_client.py,sha256=lHbfOtAoj0RmOLZ71hWCIrG9fCB_13hlg3wsrtKHGlQ,3649
1984
2019
  merge/resources/ticketing/resources/accounts/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1985
- 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
1986
2021
  merge/resources/ticketing/resources/accounts/raw_client.py,sha256=cvi5lvO22buGa3mKI9aM2MrozGH3XWSN2MW97TPGg10,13346
1987
2022
  merge/resources/ticketing/resources/async_passthrough/__init__.py,sha256=1MpPldWxuhYBQ4thZ3E-Ykjn3NxDsYfdArx3XkPQtdI,185
1988
2023
  merge/resources/ticketing/resources/async_passthrough/client.py,sha256=E1lI--LpCWjR5DsX3A3KeSLVeOSC_wm-UOd3lZ1Drjg,5988
@@ -1990,27 +2025,27 @@ merge/resources/ticketing/resources/async_passthrough/raw_client.py,sha256=B2COr
1990
2025
  merge/resources/ticketing/resources/async_passthrough/types/__init__.py,sha256=0LUj53dTeTqfs50XizOk2ro3RcqGYXn71qHGyZs5Rdg,215
1991
2026
  merge/resources/ticketing/resources/async_passthrough/types/async_passthrough_retrieve_response.py,sha256=uBMjgizc2Qhm2JA0rRTer6NiRT3sq_v-EyTrzkiQC0g,203
1992
2027
  merge/resources/ticketing/resources/attachments/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1993
- merge/resources/ticketing/resources/attachments/client.py,sha256=rg7f9zuWUFRaNGEgfjcA6lHCyKfEp5DaYP5TENjnKOI,20912
2028
+ merge/resources/ticketing/resources/attachments/client.py,sha256=WGVZBQu32PRSKm4K9uki0FdZppAeUCO_drJhWjRld3E,21096
1994
2029
  merge/resources/ticketing/resources/attachments/raw_client.py,sha256=lBS350-8PGAhK64wxvoFuu38ZIy5mEaxqsWVZtkHquk,28299
1995
2030
  merge/resources/ticketing/resources/audit_trail/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1996
- 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
1997
2032
  merge/resources/ticketing/resources/audit_trail/raw_client.py,sha256=3fdCcY8-UOrjU_eLEjnGZESf9K48ceoh_WOoyykFGA4,9100
1998
2033
  merge/resources/ticketing/resources/available_actions/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1999
2034
  merge/resources/ticketing/resources/available_actions/client.py,sha256=0ZuT2-IouQtS2djKSuMl_kjh384RtNxDJXPjt2vr4q8,2907
2000
2035
  merge/resources/ticketing/resources/available_actions/raw_client.py,sha256=bqHzLRUZnmV-0yc6e3JJQgI68Rf8C1bJItdcQ4SBwfI,3449
2001
2036
  merge/resources/ticketing/resources/collections/__init__.py,sha256=9FYXE9JkIv2tNREKBnQ8xAX_zi1bkOshLoukUUlwvrs,191
2002
- merge/resources/ticketing/resources/collections/client.py,sha256=I6NlMvmVjIqesWUULNu50SXlEzUH5JIQFuL4C_S9ZGM,21943
2037
+ merge/resources/ticketing/resources/collections/client.py,sha256=YuX2AN6wVvirEDgnMutP9RkoLgtyHNwqtmnwBTqd_NM,22289
2003
2038
  merge/resources/ticketing/resources/collections/raw_client.py,sha256=QraWZ8Qlz3J9usm2sF1PoIe_OwERyKw7izBI82kP1N8,25531
2004
2039
  merge/resources/ticketing/resources/collections/types/__init__.py,sha256=y55m8uLl_LkMPwHqwX3ANuFOICJr1L8CQd3Jx1abY68,225
2005
2040
  merge/resources/ticketing/resources/collections/types/collections_viewers_list_request_expand.py,sha256=OJlzFVlszeOLtpbqPGUN2Vndb1Txaooy9GpFIIUAyjA,715
2006
2041
  merge/resources/ticketing/resources/comments/__init__.py,sha256=t1uNXN8isGF9LZJfelcQsfIEghGciFar9QrRS287Svs,235
2007
- merge/resources/ticketing/resources/comments/client.py,sha256=h58oh9wtcMU_cSHA248iEeCRx20Py7rEa5IHe4Ub9iI,17920
2042
+ merge/resources/ticketing/resources/comments/client.py,sha256=dbcWvzm1cpTUOarljbRu3SG_eQydtbo_5cmeecjpz9U,18104
2008
2043
  merge/resources/ticketing/resources/comments/raw_client.py,sha256=R1HMAkvc1U9_n0OoZjBZBYLgvPH3dyQNqSwvY4OMPe4,22885
2009
2044
  merge/resources/ticketing/resources/comments/types/__init__.py,sha256=az0OPm4N7HZofppsXQYbEiJKLP5UUVc8JboNp332uMg,303
2010
2045
  merge/resources/ticketing/resources/comments/types/comments_list_request_expand.py,sha256=nKoGDtfRuefnl4HY6gbLt-31Ma5JuoKwJVOlmszWpkM,1435
2011
2046
  merge/resources/ticketing/resources/comments/types/comments_retrieve_request_expand.py,sha256=uzvlPNelOETowutZAc7eGSzotIOgFW5PdE2PpfxsM64,1467
2012
2047
  merge/resources/ticketing/resources/contacts/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2013
- merge/resources/ticketing/resources/contacts/client.py,sha256=GulnyMS79tPQ5w5AfK4q5VDQH6j74CG-SN934pJGnyM,16857
2048
+ merge/resources/ticketing/resources/contacts/client.py,sha256=Ph_MpsACj1UyIWbefuUMeYeqqnT4T55GDDy2brwHDeE,17041
2014
2049
  merge/resources/ticketing/resources/contacts/raw_client.py,sha256=bTBpJomzvK4w7tvaeoW_ZWIRF8a8ITyBKfrxsHMcT6Y,21634
2015
2050
  merge/resources/ticketing/resources/delete_account/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2016
2051
  merge/resources/ticketing/resources/delete_account/client.py,sha256=mGGWMgMjplnEsjt42J2059posWuCj-FyuAPhPhcLdQs,2677
@@ -2025,7 +2060,7 @@ merge/resources/ticketing/resources/generate_key/__init__.py,sha256=_VhToAyIt_5a
2025
2060
  merge/resources/ticketing/resources/generate_key/client.py,sha256=E8nSNnqWvCunfpnsxpzHYr_8PwF2wvPfKJks4U3K37s,3082
2026
2061
  merge/resources/ticketing/resources/generate_key/raw_client.py,sha256=2pNt8XeoEfLWWU5AFAfVPAfQUUU9tgkgnC_WtQqjeRA,3862
2027
2062
  merge/resources/ticketing/resources/issues/__init__.py,sha256=8N-ynHIskTDmO3zwQbhyEHy7OTb63CJ_NdZRdLDBOyk,167
2028
- merge/resources/ticketing/resources/issues/client.py,sha256=TcB0SNi6Vq5VJ9_G2xh9ZDB0_ZPs_ZDnAdTq_q5lwuc,10927
2063
+ merge/resources/ticketing/resources/issues/client.py,sha256=29DR1tdAo7aQeUFFVii8OJcIXBioruHifiFIZzOoiD8,11111
2029
2064
  merge/resources/ticketing/resources/issues/raw_client.py,sha256=uMCeEUnnnEsq0ZHlpSj4ZFaZCj-HKXzBuAFdxGG0ocU,13710
2030
2065
  merge/resources/ticketing/resources/issues/types/__init__.py,sha256=jjxa8xGa5vTp5-uzIuy8dWJLKrwzX6DnMKPEEkgN4eo,188
2031
2066
  merge/resources/ticketing/resources/issues/types/issues_list_request_status.py,sha256=cBbfu1Q5A0ZPOzB7nM_VHRKEJHnxk8lqN-cGmRX6_x4,508
@@ -2035,7 +2070,7 @@ merge/resources/ticketing/resources/link_token/raw_client.py,sha256=sedkVgAc9VMq
2035
2070
  merge/resources/ticketing/resources/link_token/types/__init__.py,sha256=_DhmnLsRiAcpljK-OPGnDEHf9-FqnWXLVWUL4pOe8-I,207
2036
2071
  merge/resources/ticketing/resources/link_token/types/end_user_details_request_language.py,sha256=2BMH_lFqvpT1C4ljoUh5YUm2dgiuLYil6s3_pKcn540,194
2037
2072
  merge/resources/ticketing/resources/linked_accounts/__init__.py,sha256=jDuRvmYXqKpaHo-Ya2LUjqfqk_rXOUOW7dSpRi-dvqM,187
2038
- merge/resources/ticketing/resources/linked_accounts/client.py,sha256=def0uoI56IzajjVK2UO7AjMGuE15opeMVdPNwfL5c0U,9778
2073
+ merge/resources/ticketing/resources/linked_accounts/client.py,sha256=DMUIzAVFBi1IPzEb8NWkTgGhcAk2___7TLvOdUubVmU,9962
2039
2074
  merge/resources/ticketing/resources/linked_accounts/raw_client.py,sha256=voRUR3SlXvSgiRyxFIUkqQAgdcC-cRY_2W9rrKtJcxI,10630
2040
2075
  merge/resources/ticketing/resources/linked_accounts/types/__init__.py,sha256=FjSJvzQG9s-6wuY4YUdmieuUNQvaQXZKDSC138TRMz0,219
2041
2076
  merge/resources/ticketing/resources/linked_accounts/types/linked_accounts_list_request_category.py,sha256=_EGocl5xFPQUgGIidOl4wEewCLbzqWyiXV2PIev7l7M,1354
@@ -2043,7 +2078,7 @@ merge/resources/ticketing/resources/passthrough/__init__.py,sha256=_VhToAyIt_5ax
2043
2078
  merge/resources/ticketing/resources/passthrough/client.py,sha256=FSsQp_OL2MzbG1riu1sNZy-KKz5ZLIDSCOOC2vsFrVE,3659
2044
2079
  merge/resources/ticketing/resources/passthrough/raw_client.py,sha256=WGJQN555L7wOF1Ic_C_UBKgiGscvS4jrE9aByjUgDSM,4007
2045
2080
  merge/resources/ticketing/resources/projects/__init__.py,sha256=LRSbNx9VmJvVasmgjiEDRLQOuT8U65YWDeHwqAGHz3I,181
2046
- merge/resources/ticketing/resources/projects/client.py,sha256=aTx0CD-hfHCch5tbVVQEhSEmNY84A482S36JrkckR9s,16319
2081
+ merge/resources/ticketing/resources/projects/client.py,sha256=KutT0-Cs9lZtaXukyR_C60ivjRO0Fl9vNrIc7NLmc2E,16665
2047
2082
  merge/resources/ticketing/resources/projects/raw_client.py,sha256=U4f4hcaoDaVZegvolIqcpdN912QjV6k4peB1DLt0zvw,19807
2048
2083
  merge/resources/ticketing/resources/projects/types/__init__.py,sha256=IRI_QD9I4Lp_9j1lwZZrQlPSHNZ0Fgsjds5SrEKv-T8,210
2049
2084
  merge/resources/ticketing/resources/projects/types/projects_users_list_request_expand.py,sha256=OLtNd0uNab7xwrGpL3_BZsMZqwIpJEjRt9MahqSmdvs,715
@@ -2051,23 +2086,23 @@ merge/resources/ticketing/resources/regenerate_key/__init__.py,sha256=_VhToAyIt_
2051
2086
  merge/resources/ticketing/resources/regenerate_key/client.py,sha256=rpehVVeXi_U9lnYkgTENR3OaqWQZR7zpDcAe8LopK7g,3108
2052
2087
  merge/resources/ticketing/resources/regenerate_key/raw_client.py,sha256=Y6QynFlDZUG_O5_B3XctsCFG8y0czLJ0XhzZpuZq5So,3872
2053
2088
  merge/resources/ticketing/resources/roles/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2054
- 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
2055
2090
  merge/resources/ticketing/resources/roles/raw_client.py,sha256=jH3dIsJ5TJYi_oJg8Cn1NP_lZiFYL5md1_73OxVepj8,13254
2056
2091
  merge/resources/ticketing/resources/scopes/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2057
2092
  merge/resources/ticketing/resources/scopes/client.py,sha256=BH78LXGR1I5QlWDi7PUdJNUSH59AwGxWNIxuZYraHis,10818
2058
2093
  merge/resources/ticketing/resources/scopes/raw_client.py,sha256=Ts-uoWdN_x5vUd61G74aGRekvZGICGm3jU7VXBgLEWM,11022
2059
2094
  merge/resources/ticketing/resources/sync_status/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2060
- 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
2061
2096
  merge/resources/ticketing/resources/sync_status/raw_client.py,sha256=qeTshmIkbApwt_dl42HIdy2KpL7PUGPoh47l6zYMbzg,5637
2062
2097
  merge/resources/ticketing/resources/tags/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2063
- merge/resources/ticketing/resources/tags/client.py,sha256=6sWHt3_VkxZmS2Uy7EzuZ7roQ6iG6yRZmkqvs2U18us,10825
2098
+ merge/resources/ticketing/resources/tags/client.py,sha256=GKu3zqfpViqKNRvZrfGYGvIqWBZhwvbNooBpedGT4e4,11009
2064
2099
  merge/resources/ticketing/resources/tags/raw_client.py,sha256=6UNvNp-RcwnCpwnnq5ZJ8UGuB8R-qaPaC0ds46URLrc,13224
2065
2100
  merge/resources/ticketing/resources/teams/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2066
- merge/resources/ticketing/resources/teams/client.py,sha256=kpnlpBUmsQMKCldK4Fkb38vQ00lSbLQw1DEn8lwIjjI,10855
2101
+ merge/resources/ticketing/resources/teams/client.py,sha256=yh5we_JqqPWQJSfoQR30lGq3TsplaCUS_dUQUb1u6uQ,11039
2067
2102
  merge/resources/ticketing/resources/teams/raw_client.py,sha256=ZORtIL48lj-2gLymgrZcVZtgN9nPxMMNbKVIJc81xf4,13254
2068
2103
  merge/resources/ticketing/resources/tickets/__init__.py,sha256=Evh80VX7Dv7Lua_L--PoHF18GkD9tAdyedi_H-4awPY,721
2069
- merge/resources/ticketing/resources/tickets/client.py,sha256=mRoF4HD4BwPHvYKXi2-2Nz9lLlah450oSSd8zADfxxk,47786
2070
- merge/resources/ticketing/resources/tickets/raw_client.py,sha256=jyoO8llqSmwUPB_nvAL4-pt2RlrGcWZ9zIpME8p2ARo,58709
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
2071
2106
  merge/resources/ticketing/resources/tickets/types/__init__.py,sha256=jaNZdkqwlxjuwbqcXkjPsGMkklZ1Y_GuRavULFQjB94,1044
2072
2107
  merge/resources/ticketing/resources/tickets/types/tickets_list_request_expand.py,sha256=KxXHoeLtnz3GIdhceulanFd62gXIvznYedNVDMIs1jc,86077
2073
2108
  merge/resources/ticketing/resources/tickets/types/tickets_list_request_priority.py,sha256=u1BXrjcjqAv-prW6BJboeyw_CdBsjj6Lo8a8bnnsHA8,810
@@ -2078,7 +2113,7 @@ merge/resources/ticketing/resources/tickets/types/tickets_retrieve_request_remot
2078
2113
  merge/resources/ticketing/resources/tickets/types/tickets_retrieve_request_show_enum_origins.py,sha256=Eg18aXyyl2SwNQIc68n0a94YjvfevDP1L93TruNfTYE,1691
2079
2114
  merge/resources/ticketing/resources/tickets/types/tickets_viewers_list_request_expand.py,sha256=GRuiCShPcTOq5znz45swJACE8Xxz9hyVub3z0WggA2U,699
2080
2115
  merge/resources/ticketing/resources/users/__init__.py,sha256=fMq1UtLJT7r8j1FlRlzuSrxumGDjPUCySBwDkT0Kvp8,223
2081
- merge/resources/ticketing/resources/users/client.py,sha256=-XVN27gMVeMRHQH8oUz_KL_NldsHU2kZ_UACshr82vc,12961
2116
+ merge/resources/ticketing/resources/users/client.py,sha256=zdTubLLyUNo-4ayREez4Nx2kOLU87N107rKANFck37E,13145
2082
2117
  merge/resources/ticketing/resources/users/raw_client.py,sha256=e-ua7fVBygaLMiGcfXMRuCJoQKrmcRzQr2Cl3wBcc5I,15416
2083
2118
  merge/resources/ticketing/resources/users/types/__init__.py,sha256=l1zsl__Lr7LN8qoNLhdTTRNXB0PdBD60ensxvUbwu7s,285
2084
2119
  merge/resources/ticketing/resources/users/types/users_list_request_expand.py,sha256=CMz1tUJb6xqyu4Iry_KLpza9OtUjMzjdrJxXzM2egrk,683
@@ -2185,7 +2220,7 @@ merge/resources/ticketing/types/paginated_team_list.py,sha256=Dj-NK5s2ysj2ldR7wR
2185
2220
  merge/resources/ticketing/types/paginated_ticket_list.py,sha256=6npdqLAi9lmxMjI2r2KwyyHW9_3UMwU08vrUP4fFbHw,970
2186
2221
  merge/resources/ticketing/types/paginated_user_list.py,sha256=QmSAMQlC-Ji0rJbh16YfXw9j20QqNo0Mn6W4fOxcDPg,711
2187
2222
  merge/resources/ticketing/types/paginated_viewer_list.py,sha256=P6yO3gZ5v33aCyH9AKS2E-YFCqcZGEEMD1hbPcK-aoI,719
2188
- 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
2189
2224
  merge/resources/ticketing/types/patched_ticket_request_access_level.py,sha256=KQyVjbeSzHDwbGtKiyDNMtbeReZLURSI9yojrzG8NyY,216
2190
2225
  merge/resources/ticketing/types/patched_ticket_request_priority.py,sha256=IllBp1Yoc2VBnIRZ6MMfqyhxs0WVgwrvFnhw_9na40I,184
2191
2226
  merge/resources/ticketing/types/patched_ticket_request_status.py,sha256=MOoLcSVHs_ubo7VXG1YhkWwYnS5d8WCr5GPlGMiG3B4,195
@@ -2197,7 +2232,7 @@ merge/resources/ticketing/types/remote_field.py,sha256=VYODTdHsSUSj1aaWzcWKdDzSy
2197
2232
  merge/resources/ticketing/types/remote_field_api.py,sha256=o7WbCUNUnmPtn6F09P3lKsXSHpEjAN8ZEfu8xsZL4Ko,1085
2198
2233
  merge/resources/ticketing/types/remote_field_api_coverage.py,sha256=4bdB5WY4RcmZWXAIOeR_vTqnwIJsGr5eeSJDJFKxgq4,130
2199
2234
  merge/resources/ticketing/types/remote_field_api_response.py,sha256=VqQsAsZWKqDGVKX3-WMZpE2DkR4OeCidKU7oalHNHV4,1753
2200
- 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
2201
2236
  merge/resources/ticketing/types/remote_field_class_field_choices_item.py,sha256=D5b6HkXqWvnb0eoy4qo8fPgGDYC_bFsGyDUt0C8IglQ,677
2202
2237
  merge/resources/ticketing/types/remote_field_class_field_format.py,sha256=PR-0fMwHrlYE34w2JhFMjoPyk-LuwcAmzzVRt3eF2mM,193
2203
2238
  merge/resources/ticketing/types/remote_field_class_field_type.py,sha256=1lWymJnLa1XuEzd3rMlAb1S5KmTtqm8Z24-EGqby9oQ,185
@@ -2259,7 +2294,7 @@ merge/resources/ticketing/types/viewer_user.py,sha256=VrOx8xWvNadSYjdErIMg2pPsHV
2259
2294
  merge/resources/ticketing/types/warning_validation_problem.py,sha256=RXDtt3t3FwIeGGXkIr_OHOAybDZg44L_5hOqa2sLlJ0,736
2260
2295
  merge/resources/ticketing/types/webhook_receiver.py,sha256=g4KQnc-vZPJGlXK-OOFIn2WGyTLKoeaq9TPWQ46VwFY,623
2261
2296
  merge/version.py,sha256=kLtHrVsKjnCqlIC_JtezQUWrCPQkXhjpD_2pdlcGh18,84
2262
- mergepythonclient-2.1.0.dist-info/LICENSE.md,sha256=WKO7xLnLSUInldiq5i25eVqKAjwIUKenaS4Cgir2Iuw,3275
2263
- mergepythonclient-2.1.0.dist-info/METADATA,sha256=NWTuIqZiBROho-ox_4TEVIIH32XMXysb5aTm9DzE-j0,7265
2264
- mergepythonclient-2.1.0.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
2265
- mergepythonclient-2.1.0.dist-info/RECORD,,
2297
+ mergepythonclient-2.2.0.dist-info/LICENSE.md,sha256=WKO7xLnLSUInldiq5i25eVqKAjwIUKenaS4Cgir2Iuw,3275
2298
+ mergepythonclient-2.2.0.dist-info/METADATA,sha256=f3HWJ9M5TrgW_fHg5tNlXsY9ogULv8zbPmG5RYkpAeg,7269
2299
+ mergepythonclient-2.2.0.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
2300
+ mergepythonclient-2.2.0.dist-info/RECORD,,