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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (171) hide show
  1. merge/__init__.py +40 -4
  2. merge/client.py +118 -18
  3. merge/core/__init__.py +75 -21
  4. merge/core/client_wrapper.py +2 -2
  5. merge/resources/__init__.py +33 -1
  6. merge/resources/accounting/__init__.py +1240 -609
  7. merge/resources/accounting/client.py +835 -165
  8. merge/resources/accounting/resources/__init__.py +208 -92
  9. merge/resources/accounting/resources/accounts/__init__.py +36 -6
  10. merge/resources/accounting/resources/accounts/types/__init__.py +34 -4
  11. merge/resources/accounting/resources/async_passthrough/__init__.py +26 -1
  12. merge/resources/accounting/resources/async_passthrough/types/__init__.py +26 -1
  13. merge/resources/accounting/resources/company_info/__init__.py +29 -1
  14. merge/resources/accounting/resources/company_info/types/__init__.py +30 -2
  15. merge/resources/accounting/resources/contacts/__init__.py +29 -1
  16. merge/resources/accounting/resources/contacts/types/__init__.py +30 -2
  17. merge/resources/accounting/resources/credit_notes/__init__.py +40 -8
  18. merge/resources/accounting/resources/credit_notes/types/__init__.py +38 -6
  19. merge/resources/accounting/resources/expense_reports/__init__.py +34 -5
  20. merge/resources/accounting/resources/expense_reports/types/__init__.py +32 -3
  21. merge/resources/accounting/resources/expenses/__init__.py +29 -1
  22. merge/resources/accounting/resources/expenses/types/__init__.py +30 -2
  23. merge/resources/accounting/resources/general_ledger_transactions/__init__.py +29 -1
  24. merge/resources/accounting/resources/general_ledger_transactions/types/__init__.py +30 -2
  25. merge/resources/accounting/resources/invoices/__init__.py +36 -6
  26. merge/resources/accounting/resources/invoices/types/__init__.py +34 -4
  27. merge/resources/accounting/resources/issues/__init__.py +26 -1
  28. merge/resources/accounting/resources/issues/types/__init__.py +26 -1
  29. merge/resources/accounting/resources/items/__init__.py +26 -1
  30. merge/resources/accounting/resources/items/types/__init__.py +30 -2
  31. merge/resources/accounting/resources/journal_entries/__init__.py +29 -1
  32. merge/resources/accounting/resources/journal_entries/types/__init__.py +30 -2
  33. merge/resources/accounting/resources/link_token/__init__.py +26 -1
  34. merge/resources/accounting/resources/link_token/types/__init__.py +26 -1
  35. merge/resources/accounting/resources/linked_accounts/__init__.py +26 -1
  36. merge/resources/accounting/resources/linked_accounts/types/__init__.py +28 -1
  37. merge/resources/accounting/resources/payments/__init__.py +29 -1
  38. merge/resources/accounting/resources/payments/types/__init__.py +30 -2
  39. merge/resources/accounting/resources/projects/__init__.py +29 -1
  40. merge/resources/accounting/resources/projects/types/__init__.py +30 -2
  41. merge/resources/accounting/resources/purchase_orders/__init__.py +29 -1
  42. merge/resources/accounting/resources/purchase_orders/types/__init__.py +30 -2
  43. merge/resources/accounting/resources/transactions/__init__.py +29 -1
  44. merge/resources/accounting/resources/transactions/types/__init__.py +30 -2
  45. merge/resources/accounting/resources/vendor_credits/__init__.py +29 -1
  46. merge/resources/accounting/resources/vendor_credits/types/__init__.py +30 -2
  47. merge/resources/accounting/types/__init__.py +1068 -521
  48. merge/resources/ats/__init__.py +586 -282
  49. merge/resources/ats/client.py +590 -120
  50. merge/resources/ats/resources/__init__.py +150 -63
  51. merge/resources/ats/resources/activities/__init__.py +36 -6
  52. merge/resources/ats/resources/activities/types/__init__.py +34 -4
  53. merge/resources/ats/resources/applications/__init__.py +29 -1
  54. merge/resources/ats/resources/applications/types/__init__.py +30 -2
  55. merge/resources/ats/resources/async_passthrough/__init__.py +26 -1
  56. merge/resources/ats/resources/async_passthrough/types/__init__.py +26 -1
  57. merge/resources/ats/resources/candidates/__init__.py +30 -1
  58. merge/resources/ats/resources/candidates/types/__init__.py +32 -3
  59. merge/resources/ats/resources/eeocs/__init__.py +36 -6
  60. merge/resources/ats/resources/eeocs/types/__init__.py +34 -4
  61. merge/resources/ats/resources/interviews/__init__.py +29 -1
  62. merge/resources/ats/resources/interviews/types/__init__.py +30 -2
  63. merge/resources/ats/resources/issues/__init__.py +26 -1
  64. merge/resources/ats/resources/issues/types/__init__.py +26 -1
  65. merge/resources/ats/resources/job_postings/__init__.py +26 -1
  66. merge/resources/ats/resources/job_postings/types/__init__.py +26 -1
  67. merge/resources/ats/resources/jobs/__init__.py +36 -6
  68. merge/resources/ats/resources/jobs/types/__init__.py +34 -4
  69. merge/resources/ats/resources/link_token/__init__.py +26 -1
  70. merge/resources/ats/resources/link_token/types/__init__.py +26 -1
  71. merge/resources/ats/resources/linked_accounts/__init__.py +26 -1
  72. merge/resources/ats/resources/linked_accounts/types/__init__.py +28 -1
  73. merge/resources/ats/resources/offers/__init__.py +26 -1
  74. merge/resources/ats/resources/offers/types/__init__.py +30 -2
  75. merge/resources/ats/resources/scorecards/__init__.py +29 -1
  76. merge/resources/ats/resources/scorecards/types/__init__.py +30 -2
  77. merge/resources/ats/types/__init__.py +462 -219
  78. merge/resources/crm/__init__.py +566 -272
  79. merge/resources/crm/client.py +556 -114
  80. merge/resources/crm/resources/__init__.py +121 -47
  81. merge/resources/crm/resources/async_passthrough/__init__.py +26 -1
  82. merge/resources/crm/resources/async_passthrough/types/__init__.py +26 -1
  83. merge/resources/crm/resources/contacts/__init__.py +29 -1
  84. merge/resources/crm/resources/contacts/types/__init__.py +30 -2
  85. merge/resources/crm/resources/engagements/__init__.py +29 -1
  86. merge/resources/crm/resources/engagements/types/__init__.py +30 -2
  87. merge/resources/crm/resources/issues/__init__.py +26 -1
  88. merge/resources/crm/resources/issues/types/__init__.py +26 -1
  89. merge/resources/crm/resources/leads/__init__.py +26 -1
  90. merge/resources/crm/resources/leads/types/__init__.py +30 -2
  91. merge/resources/crm/resources/link_token/__init__.py +26 -1
  92. merge/resources/crm/resources/link_token/types/__init__.py +26 -1
  93. merge/resources/crm/resources/linked_accounts/__init__.py +26 -1
  94. merge/resources/crm/resources/linked_accounts/types/__init__.py +28 -1
  95. merge/resources/crm/resources/notes/__init__.py +26 -1
  96. merge/resources/crm/resources/notes/types/__init__.py +30 -2
  97. merge/resources/crm/resources/opportunities/__init__.py +34 -1
  98. merge/resources/crm/resources/opportunities/types/__init__.py +32 -3
  99. merge/resources/crm/resources/tasks/__init__.py +26 -1
  100. merge/resources/crm/resources/tasks/types/__init__.py +30 -2
  101. merge/resources/crm/types/__init__.py +470 -224
  102. merge/resources/filestorage/__init__.py +322 -150
  103. merge/resources/filestorage/client.py +405 -87
  104. merge/resources/filestorage/resources/__init__.py +91 -34
  105. merge/resources/filestorage/resources/async_passthrough/__init__.py +26 -1
  106. merge/resources/filestorage/resources/async_passthrough/types/__init__.py +26 -1
  107. merge/resources/filestorage/resources/files/__init__.py +36 -6
  108. merge/resources/filestorage/resources/files/types/__init__.py +34 -4
  109. merge/resources/filestorage/resources/folders/__init__.py +29 -1
  110. merge/resources/filestorage/resources/folders/types/__init__.py +30 -2
  111. merge/resources/filestorage/resources/issues/__init__.py +26 -1
  112. merge/resources/filestorage/resources/issues/types/__init__.py +26 -1
  113. merge/resources/filestorage/resources/linked_accounts/__init__.py +26 -1
  114. merge/resources/filestorage/resources/linked_accounts/types/__init__.py +28 -1
  115. merge/resources/filestorage/types/__init__.py +258 -117
  116. merge/resources/hris/__init__.py +576 -277
  117. merge/resources/hris/client.py +590 -120
  118. merge/resources/hris/resources/__init__.py +188 -86
  119. merge/resources/hris/resources/async_passthrough/__init__.py +26 -1
  120. merge/resources/hris/resources/async_passthrough/types/__init__.py +26 -1
  121. merge/resources/hris/resources/bank_info/__init__.py +29 -1
  122. merge/resources/hris/resources/bank_info/types/__init__.py +30 -2
  123. merge/resources/hris/resources/employee_payroll_runs/__init__.py +29 -1
  124. merge/resources/hris/resources/employee_payroll_runs/types/__init__.py +30 -2
  125. merge/resources/hris/resources/employees/__init__.py +44 -10
  126. merge/resources/hris/resources/employees/types/__init__.py +42 -8
  127. merge/resources/hris/resources/employments/__init__.py +42 -9
  128. merge/resources/hris/resources/employments/types/__init__.py +40 -7
  129. merge/resources/hris/resources/issues/__init__.py +26 -1
  130. merge/resources/hris/resources/issues/types/__init__.py +26 -1
  131. merge/resources/hris/resources/link_token/__init__.py +26 -1
  132. merge/resources/hris/resources/link_token/types/__init__.py +26 -1
  133. merge/resources/hris/resources/linked_accounts/__init__.py +26 -1
  134. merge/resources/hris/resources/linked_accounts/types/__init__.py +28 -1
  135. merge/resources/hris/resources/locations/__init__.py +38 -7
  136. merge/resources/hris/resources/locations/types/__init__.py +36 -5
  137. merge/resources/hris/resources/payroll_runs/__init__.py +38 -7
  138. merge/resources/hris/resources/payroll_runs/types/__init__.py +36 -5
  139. merge/resources/hris/resources/time_off/__init__.py +44 -10
  140. merge/resources/hris/resources/time_off/types/__init__.py +42 -8
  141. merge/resources/hris/resources/time_off_balances/__init__.py +26 -1
  142. merge/resources/hris/resources/time_off_balances/types/__init__.py +28 -1
  143. merge/resources/hris/resources/timesheet_entries/__init__.py +26 -1
  144. merge/resources/hris/resources/timesheet_entries/types/__init__.py +28 -1
  145. merge/resources/hris/types/__init__.py +422 -199
  146. merge/resources/ticketing/__init__.py +464 -221
  147. merge/resources/ticketing/client.py +507 -105
  148. merge/resources/ticketing/resources/__init__.py +120 -48
  149. merge/resources/ticketing/resources/async_passthrough/__init__.py +26 -1
  150. merge/resources/ticketing/resources/async_passthrough/types/__init__.py +26 -1
  151. merge/resources/ticketing/resources/collections/__init__.py +26 -1
  152. merge/resources/ticketing/resources/collections/types/__init__.py +28 -1
  153. merge/resources/ticketing/resources/comments/__init__.py +29 -1
  154. merge/resources/ticketing/resources/comments/types/__init__.py +30 -2
  155. merge/resources/ticketing/resources/issues/__init__.py +26 -1
  156. merge/resources/ticketing/resources/issues/types/__init__.py +26 -1
  157. merge/resources/ticketing/resources/link_token/__init__.py +26 -1
  158. merge/resources/ticketing/resources/link_token/types/__init__.py +26 -1
  159. merge/resources/ticketing/resources/linked_accounts/__init__.py +26 -1
  160. merge/resources/ticketing/resources/linked_accounts/types/__init__.py +28 -1
  161. merge/resources/ticketing/resources/projects/__init__.py +26 -1
  162. merge/resources/ticketing/resources/projects/types/__init__.py +26 -1
  163. merge/resources/ticketing/resources/tickets/__init__.py +44 -10
  164. merge/resources/ticketing/resources/tickets/types/__init__.py +42 -8
  165. merge/resources/ticketing/resources/users/__init__.py +26 -1
  166. merge/resources/ticketing/resources/users/types/__init__.py +30 -2
  167. merge/resources/ticketing/types/__init__.py +370 -173
  168. {mergepythonclient-2.2.0.dist-info → mergepythonclient-2.3.0.dist-info}/METADATA +2 -1
  169. {mergepythonclient-2.2.0.dist-info → mergepythonclient-2.3.0.dist-info}/RECORD +171 -171
  170. {mergepythonclient-2.2.0.dist-info → mergepythonclient-2.3.0.dist-info}/LICENSE.md +0 -0
  171. {mergepythonclient-2.2.0.dist-info → mergepythonclient-2.3.0.dist-info}/WHEEL +0 -0
@@ -1,8 +1,8 @@
1
- merge/__init__.py,sha256=Z0AgfVpF84nlRCCgnrDZOwBo1TpY5yK7otpaSWcgo-U,449
2
- merge/client.py,sha256=kU02MZFiaoEyFdw6kMEkaqof-j40fTjMLPFBAsFreTM,7342
3
- merge/core/__init__.py,sha256=tpn7rjb6C2UIkYZYIqdrNpI7Yax2jw88sXh2baxaxAI,1715
1
+ merge/__init__.py,sha256=7CpPMlOY5g9lp7RtOX7wB2O6rqlVjboKEcEwmF0EHL4,1582
2
+ merge/client.py,sha256=1U0ic4bNZX2OmUFTlpEdSdCCIy4R2jd7S-qN9V9dJ60,10412
3
+ merge/core/__init__.py,sha256=HNk-wnH_j2yAf7IroaZM9JJFe4mnkNHq06t2QmaBweg,3862
4
4
  merge/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
5
- merge/core/client_wrapper.py,sha256=-WO8-xV9198L1g45I2s4V4PFcDnCG_W3NWeJL59pDp4,3096
5
+ merge/core/client_wrapper.py,sha256=B-oGOnavRqx5f-5FpXQRECP4sEanGFFWVvAnikKyjDA,3096
6
6
  merge/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
7
7
  merge/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
8
8
  merge/core/force_multipart.py,sha256=cH981xLy0kZVKiZZkFoeUjgJ2Zuq7KXB2aRAnmHzRDc,477
@@ -17,11 +17,11 @@ merge/core/serialization.py,sha256=ECL3bvv_0i7U4uvPidZCNel--MUbA0iq0aGcNKi3kws,9
17
17
  merge/core/unchecked_base_model.py,sha256=nq6as7p3yGVI5h7HhuqCtKZo7K83zB8nk6Qq31zqU9M,12540
18
18
  merge/environment.py,sha256=_NIx-kWS6kpztpqgz6_abDGnsZkLAO1WayrcM8gKetw,260
19
19
  merge/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
- merge/resources/__init__.py,sha256=7gKKPU-keI8e8yLrTdN37vaiPxUftUe2yn5HJ1J0qAk,226
21
- merge/resources/accounting/__init__.py,sha256=5nnRc24nJHcQ1U-Md2bmUibNVkfjI58PHAgiY6gCeO8,36546
22
- merge/resources/accounting/client.py,sha256=n4DVgWrKqhSXwCzs-kZKoIwBiBRriros08n8KzwCZbg,13429
20
+ merge/resources/__init__.py,sha256=FsMGYvolC7TxsLxxFhlZSaO7O-b7NPgkU7L68g_otCE,1169
21
+ merge/resources/accounting/__init__.py,sha256=3ND0F_r5Hd8xXRyBDuiWEh3toqccZ41TXRrq38aSE74,65016
22
+ merge/resources/accounting/client.py,sha256=f52dPsVdLBAnsbYI4X9WjWrsolkFed2Py9s3pdelkSs,41640
23
23
  merge/resources/accounting/raw_client.py,sha256=Z2qfSB2hS9YozVdwPsSvbLeH5yeWbIaDNihubIguhNI,418
24
- merge/resources/accounting/resources/__init__.py,sha256=Rc1e_A-CASzZSom6aL6tbMvYgHdTOjZ96fIoTa89bLU,5669
24
+ merge/resources/accounting/resources/__init__.py,sha256=k0xHMKk-c1B4XhBQKR9kEatvtyxi5fycc9VmvTpjrKY,10467
25
25
  merge/resources/accounting/resources/account_details/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
26
26
  merge/resources/accounting/resources/account_details/client.py,sha256=pTW8cFYhyKT-uW4VKN08N83D9HZaF6jrF5SG5P61tGo,2815
27
27
  merge/resources/accounting/resources/account_details/raw_client.py,sha256=BUsYlgqjf5EIY5TXBbpBKsf43b1YFdn_Si9dbm-Cnzs,3365
@@ -31,10 +31,10 @@ merge/resources/accounting/resources/account_token/raw_client.py,sha256=TuZlOj5w
31
31
  merge/resources/accounting/resources/accounting_periods/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
32
32
  merge/resources/accounting/resources/accounting_periods/client.py,sha256=6HyDF-t-9A3HbhUG7EYjMeGLGWsBzxvx5i9Zi428DGM,9067
33
33
  merge/resources/accounting/resources/accounting_periods/raw_client.py,sha256=mz0VocQYItJMbt1Im_ZbI50Ecaf0BSWycbRLRyoqPV0,10676
34
- merge/resources/accounting/resources/accounts/__init__.py,sha256=cdiigMLMYiVepQ20GXU5UPlryzFOqqHMw9gfhElrygo,455
34
+ merge/resources/accounting/resources/accounts/__init__.py,sha256=JCWLBmK_cDqxnirEGwnOqeeIJbsD7fQzRYOImkdIgIY,1510
35
35
  merge/resources/accounting/resources/accounts/client.py,sha256=Lym5Jxt11clXDb04XqHrAyz7_zpgzdeKE_KRUPDqSHw,22166
36
36
  merge/resources/accounting/resources/accounts/raw_client.py,sha256=E05mU0Mk9B0ljsv3W7QMeROmUlBh-wKnZ3WvioIrACo,26847
37
- merge/resources/accounting/resources/accounts/types/__init__.py,sha256=VR07jYfKlvsV-dvYvyQIcuC_7j6s9D-5yVZALSkHohs,624
37
+ merge/resources/accounting/resources/accounts/types/__init__.py,sha256=9jJE0LovNrZfX496E4Llnf0-6gq8gBJWqeAjmbg4mLI,1807
38
38
  merge/resources/accounting/resources/accounts/types/accounts_list_request_remote_fields.py,sha256=Az9-yjthTEGOb7FdZi1s0ofW8feZI_Jo1Te64G7YsKE,819
39
39
  merge/resources/accounting/resources/accounts/types/accounts_list_request_show_enum_origins.py,sha256=p4H3hs0DYQhimbiFtKzPBJs7OUyJkGuBVlYXeMfAJ00,831
40
40
  merge/resources/accounting/resources/accounts/types/accounts_retrieve_request_remote_fields.py,sha256=y5Npkd8r2hM_TcJfluSMRV4Jmkai4gRihwius9ox7GA,835
@@ -42,10 +42,10 @@ merge/resources/accounting/resources/accounts/types/accounts_retrieve_request_sh
42
42
  merge/resources/accounting/resources/addresses/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
43
43
  merge/resources/accounting/resources/addresses/client.py,sha256=3GqkSdL0kwAtHMvoQEozs1leGcQtklbUCqLI7j9n-ss,5498
44
44
  merge/resources/accounting/resources/addresses/raw_client.py,sha256=pf8F-difbVs5xTqzWdmJKxs_xYb94U0GdFjtk8jZ9Nw,6132
45
- merge/resources/accounting/resources/async_passthrough/__init__.py,sha256=1MpPldWxuhYBQ4thZ3E-Ykjn3NxDsYfdArx3XkPQtdI,185
45
+ merge/resources/accounting/resources/async_passthrough/__init__.py,sha256=fKVWk4jeqEvhNZuk0EtXPEFl5uB136ROeo8C6xczZI8,1053
46
46
  merge/resources/accounting/resources/async_passthrough/client.py,sha256=2LLJUnL3Ve6On3_pwZaZHHrso4rO1M6KusYytJdKSZg,5994
47
47
  merge/resources/accounting/resources/async_passthrough/raw_client.py,sha256=RQp8g0cwgl96iCECxKsIJzThIOnU-Y8eSOcmH-Zcl9U,7375
48
- merge/resources/accounting/resources/async_passthrough/types/__init__.py,sha256=0LUj53dTeTqfs50XizOk2ro3RcqGYXn71qHGyZs5Rdg,215
48
+ merge/resources/accounting/resources/async_passthrough/types/__init__.py,sha256=xZoQJ90iQWokoy6yfd_9sggRIkFEWCIPhmpoahoo_t0,1113
49
49
  merge/resources/accounting/resources/async_passthrough/types/async_passthrough_retrieve_response.py,sha256=uBMjgizc2Qhm2JA0rRTer6NiRT3sq_v-EyTrzkiQC0g,203
50
50
  merge/resources/accounting/resources/async_tasks/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
51
51
  merge/resources/accounting/resources/async_tasks/client.py,sha256=pC32ZXOBAcGLHTmWh1qFNEOVKNWycCBzAjRv_F-UFns,2934
@@ -71,22 +71,22 @@ merge/resources/accounting/resources/bank_feed_transactions/raw_client.py,sha256
71
71
  merge/resources/accounting/resources/cash_flow_statements/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
72
72
  merge/resources/accounting/resources/cash_flow_statements/client.py,sha256=NL8MekFovINzKj5narTrzc2KajU_NzpmE04posubXgs,13005
73
73
  merge/resources/accounting/resources/cash_flow_statements/raw_client.py,sha256=qZKUG2nZ3WBCD-QzjVpPNn1aY9sEsEUzrQrR4w9PRMs,15262
74
- merge/resources/accounting/resources/company_info/__init__.py,sha256=slQo6lM3CgRAwIS5j-ffppl0rqq7iZ09MlGVcUZ5Ps0,247
74
+ merge/resources/accounting/resources/company_info/__init__.py,sha256=0jv2RRGq4QTwU-kQoumfE7aKgqO9qIKjTG3bemrRPjw,1168
75
75
  merge/resources/accounting/resources/company_info/client.py,sha256=vWTffqG5uRuZSPpFon_lFzFufFPsUBJP-JLu9o3iKAs,12599
76
76
  merge/resources/accounting/resources/company_info/raw_client.py,sha256=ZUS66HDfBg5tYnPp4x_1_kwd3Co4eG6UpAlGvB_N1eE,14850
77
- merge/resources/accounting/resources/company_info/types/__init__.py,sha256=5mxkxfc2eBE0tqQ0FcgeJIZEqceX0JHfrupY2LdIN5Y,323
77
+ merge/resources/accounting/resources/company_info/types/__init__.py,sha256=jRpjxUb8rTY5phW4CKbxDehacG3Yooucv6Bu9dv2fIY,1306
78
78
  merge/resources/accounting/resources/company_info/types/company_info_list_request_expand.py,sha256=vixn0_jiOrl0k-tt_kdzUHLVL4dVcV0Thk6QYia_EFI,827
79
79
  merge/resources/accounting/resources/company_info/types/company_info_retrieve_request_expand.py,sha256=cr55rgtrfdLQxRzjzp4onvrRRONcC9jl_NzE2kg-smw,843
80
- merge/resources/accounting/resources/contacts/__init__.py,sha256=-2sXN9uRSOxRpvtG54uCrMIB_n7lHdDy0z5pgw1_Nc8,235
80
+ merge/resources/accounting/resources/contacts/__init__.py,sha256=i5E2SNGTIeb7M1kJr9eMRLGoTrr5Wdyb19g3kTbeB-k,1150
81
81
  merge/resources/accounting/resources/contacts/client.py,sha256=OJiJmpGDIoCsD3nNmf8taPBAkqouEomhgk5LwK9gXRI,34150
82
82
  merge/resources/accounting/resources/contacts/raw_client.py,sha256=hpcm5Bf9RhSeS5u_9Cq-rwyExFsfeEDZdCikIz5NB48,42094
83
- merge/resources/accounting/resources/contacts/types/__init__.py,sha256=EPkxRBuO5CXib_I81aqE3R5M34xishFcL_mM1oqOkic,303
83
+ merge/resources/accounting/resources/contacts/types/__init__.py,sha256=0sbHxB2FUNFr5gxal-k4e8qFPwgX8Cpru7I9MLe1WUQ,1272
84
84
  merge/resources/accounting/resources/contacts/types/contacts_list_request_expand.py,sha256=JuJqvv0yVgLDYuJ0TyoTjZMlO4PTKhiHocrO6GH6vjA,1675
85
85
  merge/resources/accounting/resources/contacts/types/contacts_retrieve_request_expand.py,sha256=TIItJMimUJ2J3CNTNEV9wtmnG8n9zmke2tgNz3AKM2E,1707
86
- merge/resources/accounting/resources/credit_notes/__init__.py,sha256=8eyYL1OkX1Jm_ZsPz2dT3g2Y1qJ29qPsECioSDogXg0,627
86
+ merge/resources/accounting/resources/credit_notes/__init__.py,sha256=iIC1_n6ZsaYrfIfnMZRdTSt-WjHbRoSPT_T2Fr3Woe8,1798
87
87
  merge/resources/accounting/resources/credit_notes/client.py,sha256=pBCtPUTA-zso79kwbHOWeeN14I6CZyq-x-nM1s81NjE,22158
88
88
  merge/resources/accounting/resources/credit_notes/raw_client.py,sha256=-QY3KAdZ5KcCGojq5LfKRHPgqrO7wrQ_UscqEDE1c0M,27213
89
- merge/resources/accounting/resources/credit_notes/types/__init__.py,sha256=480KNUgSgIScubtai1BUStGNrEfh8lj28FHjyY9rLP4,898
89
+ merge/resources/accounting/resources/credit_notes/types/__init__.py,sha256=O1goNWQHhNdyyQYt_OsU-asotrvlm-01iRCFAyAxBLY,2271
90
90
  merge/resources/accounting/resources/credit_notes/types/credit_notes_list_request_expand.py,sha256=cLYDWczwQVJoE4Dtx6l2C1DyqaD6TYdocFba8Qb_L8Q,45331
91
91
  merge/resources/accounting/resources/credit_notes/types/credit_notes_list_request_remote_fields.py,sha256=iCUz97VACnQqShTXBuXXMeM714rKyLXqFwr2r-XYsM8,731
92
92
  merge/resources/accounting/resources/credit_notes/types/credit_notes_list_request_show_enum_origins.py,sha256=bkkLnEugrrVGfZbBlwNfJf6hzc09_U5uqC4cfhzOwxg,743
@@ -99,17 +99,17 @@ merge/resources/accounting/resources/delete_account/raw_client.py,sha256=iv6EmyX
99
99
  merge/resources/accounting/resources/employees/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
100
100
  merge/resources/accounting/resources/employees/client.py,sha256=cBzlafdSbyn5VP-qR4IzRYNzHmGe5tqBAR-cHV0tyA4,12703
101
101
  merge/resources/accounting/resources/employees/raw_client.py,sha256=36bSJtJJtrCW4svjyJdnyApjAddapkgbqtdG7CLPGkY,14960
102
- merge/resources/accounting/resources/expense_reports/__init__.py,sha256=qUa3v-FHKdoc5nMjjgSMks3xEibXcDnUwf_BLFhHUlc,369
102
+ merge/resources/accounting/resources/expense_reports/__init__.py,sha256=4-xCpFjpFCJ7Zl8w2du_4KtRD1bP9pnu71j_j6HJ6lY,1366
103
103
  merge/resources/accounting/resources/expense_reports/client.py,sha256=W9CMwgliIq1LM7nRlKt3_EAp9JjQf-ofUDIjPz_O3tM,37672
104
104
  merge/resources/accounting/resources/expense_reports/raw_client.py,sha256=nPZZvIB0XShL1bc67zntSP-7YxSDwGGtCb4ncT5K0hM,44852
105
- merge/resources/accounting/resources/expense_reports/types/__init__.py,sha256=pPM9R2yTUDH1Et1XmRF8Ca5ArZhw0K1oESemrIS0IOA,488
105
+ merge/resources/accounting/resources/expense_reports/types/__init__.py,sha256=Rp-Nq2cBWraoMV8H9sT-hnC_xrJU5nHJzF3IzgT6qb4,1577
106
106
  merge/resources/accounting/resources/expense_reports/types/expense_reports_lines_list_request_expand.py,sha256=V7UlSiB_j1YAENJ7Hgjlo56-uVnWqKGyrjrlPLNhAHw,16179
107
107
  merge/resources/accounting/resources/expense_reports/types/expense_reports_list_request_expand.py,sha256=F2qY-xF9Bn9puaZqeX6_owcoHNjZ8dA3fZpMTebKDw8,3691
108
108
  merge/resources/accounting/resources/expense_reports/types/expense_reports_retrieve_request_expand.py,sha256=G4od-4S-KDh54MthiZEBXPUzCNSA4kNus0E6QKC4tj8,3755
109
- merge/resources/accounting/resources/expenses/__init__.py,sha256=XdylRSRtlmTize2rwQKHkjHoGtFld7MAacuR-WykVhA,235
109
+ merge/resources/accounting/resources/expenses/__init__.py,sha256=lvSKdXe8HfQc-KES0Je-EuDWvm44Q7S-4nCr8LM_fvg,1150
110
110
  merge/resources/accounting/resources/expenses/client.py,sha256=F7W_QSmc0s1dn5brnjjzB50l1uHnfVU09gqPrXM2yIg,31425
111
111
  merge/resources/accounting/resources/expenses/raw_client.py,sha256=TqCP9Yx15qJbEGRES8sMTf3WAzWljH47-DlE0QIjc4E,38474
112
- merge/resources/accounting/resources/expenses/types/__init__.py,sha256=svAfy0Pv-9oprEZ4-56-Ta4AWMLD-KZgf1AT2pLPTp8,303
112
+ merge/resources/accounting/resources/expenses/types/__init__.py,sha256=Y_YDTOTDtuPaRN8Z07DZdsSHw8xsnfd-bw-NPG9KYMs,1272
113
113
  merge/resources/accounting/resources/expenses/types/expenses_list_request_expand.py,sha256=20alb3EB0ARvXmADljzBxtBkKrqtPiic2AvT2DbcYLk,18915
114
114
  merge/resources/accounting/resources/expenses/types/expenses_retrieve_request_expand.py,sha256=v9CbvBPbe2tgi89sdjwYhgt8sZtNkKYnA5xsoZ89yaY,19171
115
115
  merge/resources/accounting/resources/field_mapping/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
@@ -118,10 +118,10 @@ merge/resources/accounting/resources/field_mapping/raw_client.py,sha256=IX8_D9TF
118
118
  merge/resources/accounting/resources/force_resync/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
119
119
  merge/resources/accounting/resources/force_resync/client.py,sha256=O1-0Ctq-sz-LipDPy-YZUzHebTMawFhbENL2H0rjzkI,3533
120
120
  merge/resources/accounting/resources/force_resync/raw_client.py,sha256=dQw_Q1SEtw4fNszVkkq4QD-gLiqSfLHWeZGKUlI_cUk,4075
121
- merge/resources/accounting/resources/general_ledger_transactions/__init__.py,sha256=_c0UyXf_HW2JMwmzPtmEiOxlXSyrDv3qQSRbrr0d3Wk,303
121
+ merge/resources/accounting/resources/general_ledger_transactions/__init__.py,sha256=PWIUBpXHT2it_aaBO4o7k37QfbbC_8v4MYAHrZMMkIk,1252
122
122
  merge/resources/accounting/resources/general_ledger_transactions/client.py,sha256=Y19QoweVuTLwln1nKsz2J442qQq1p928nShWloOSDLo,14615
123
123
  merge/resources/accounting/resources/general_ledger_transactions/raw_client.py,sha256=D63SdOvqpHEJmFO0A0mc7Bc3Q70hgJTOXzWsiYBDYqU,17218
124
- merge/resources/accounting/resources/general_ledger_transactions/types/__init__.py,sha256=k9xZ_SjjMn7S1wjIOfWZK5PywgR7TnFni8_YQLIGO48,409
124
+ merge/resources/accounting/resources/general_ledger_transactions/types/__init__.py,sha256=wO-P92yWGLFUz7at5qapLULhT_ADRu9vLdMtbrdXSjQ,1450
125
125
  merge/resources/accounting/resources/general_ledger_transactions/types/general_ledger_transactions_list_request_expand.py,sha256=ZLK6o66R37TBmNnZ1xZ_DUjHWVFePy_KRIL9-4SQlW4,5595
126
126
  merge/resources/accounting/resources/general_ledger_transactions/types/general_ledger_transactions_retrieve_request_expand.py,sha256=YW6w_yjHmebdsvuTJUibCxH29P58TfAyYl7Fr9W4kCU,5659
127
127
  merge/resources/accounting/resources/generate_key/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
@@ -130,40 +130,40 @@ merge/resources/accounting/resources/generate_key/raw_client.py,sha256=7d4DW4Ohj
130
130
  merge/resources/accounting/resources/income_statements/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
131
131
  merge/resources/accounting/resources/income_statements/client.py,sha256=vpJbSJtvcMxQxXpvHALwN57_sizhIqBjEqwfUc00xlE,12935
132
132
  merge/resources/accounting/resources/income_statements/raw_client.py,sha256=0o6wHjOC9-vYqcNUnAw6AJBBxC__PPkH_BVBgPFYGdI,15192
133
- merge/resources/accounting/resources/invoices/__init__.py,sha256=8QOdkIUvUNN7Z-y3EWfj0rqB2T0P966wnsHDp_mnBOE,383
133
+ merge/resources/accounting/resources/invoices/__init__.py,sha256=APDTb0yWpoSu4uqzc-xPgoYtEEeneR_U47b47rYGgbI,1402
134
134
  merge/resources/accounting/resources/invoices/client.py,sha256=lkduncu2xpUaeP_nTy7ZmkpmNS0dPSJv8ffNCY5ZC5A,41503
135
135
  merge/resources/accounting/resources/invoices/raw_client.py,sha256=O99iYBhiSMfzAI-74CgkBsvivzZILS5nrM67G-gDJQc,50734
136
- merge/resources/accounting/resources/invoices/types/__init__.py,sha256=Ci-3RC4bO3SOxejEx4dLyzkpo1v5jTyFYhK8lvrm7JQ,510
136
+ merge/resources/accounting/resources/invoices/types/__init__.py,sha256=tepZity0pQTwqTkpg3wnbSUgfbvZV9fTvkfxSqaPiX0,1615
137
137
  merge/resources/accounting/resources/invoices/types/invoices_list_request_expand.py,sha256=iJhSsuXqrbj4ZgRLGzPO2nomzSiZp2oFhV_VeVEC0sI,2441009
138
138
  merge/resources/accounting/resources/invoices/types/invoices_list_request_status.py,sha256=4ypbiLMygc-RZ-6NgpfuiMOphExSMOKWXd51Ui3ba6c,1150
139
139
  merge/resources/accounting/resources/invoices/types/invoices_list_request_type.py,sha256=XsKM2hgAx8-bddMxBHBCedkW_PbnS3D6foKNeR3zmXs,622
140
140
  merge/resources/accounting/resources/invoices/types/invoices_retrieve_request_expand.py,sha256=zh5Bt3RidKanmMnUziqm-JkFl1RS02jICyW0kfXcL2o,2464989
141
- merge/resources/accounting/resources/issues/__init__.py,sha256=8N-ynHIskTDmO3zwQbhyEHy7OTb63CJ_NdZRdLDBOyk,167
141
+ merge/resources/accounting/resources/issues/__init__.py,sha256=fKOCxeYsbS41Y58p81luMrp7eaz6BLop2enXQ3HTvtc,1026
142
142
  merge/resources/accounting/resources/issues/client.py,sha256=1QkIdt0b95t2TYptl1O1qGGZsioru2r8MZhLUBXXbH0,11115
143
143
  merge/resources/accounting/resources/issues/raw_client.py,sha256=i9N_XeX5GK2qzqX2brLfDIFRncwvoX6ADEpFbM9_MKU,13714
144
- merge/resources/accounting/resources/issues/types/__init__.py,sha256=jjxa8xGa5vTp5-uzIuy8dWJLKrwzX6DnMKPEEkgN4eo,188
144
+ merge/resources/accounting/resources/issues/types/__init__.py,sha256=c7N5BxoJGun2-0qD15I96eDPA36xKVGjt08VJoifSNo,1068
145
145
  merge/resources/accounting/resources/issues/types/issues_list_request_status.py,sha256=cBbfu1Q5A0ZPOzB7nM_VHRKEJHnxk8lqN-cGmRX6_x4,508
146
- merge/resources/accounting/resources/items/__init__.py,sha256=LP1V9GE7DGsi5BRNm_9wsrWFnVWgEi-Der4usoiFzxI,223
146
+ merge/resources/accounting/resources/items/__init__.py,sha256=lP70QeEKjPpjMnAWSdWJGgx0KVSXAMo0FO7Vx17EWns,1121
147
147
  merge/resources/accounting/resources/items/client.py,sha256=VxBSmEt8B3MlrxSoqxZOrEPqzDbzSr44JcQatnPrGwM,24997
148
148
  merge/resources/accounting/resources/items/raw_client.py,sha256=KsOGCTOGQxLPSaWebijjfjj96ahw4fWnlnlcglGsAIM,31770
149
- merge/resources/accounting/resources/items/types/__init__.py,sha256=-hezj5PvwmOjY5XyPX3-ekOB87OcuyrNhfyVmgaIbWs,285
149
+ merge/resources/accounting/resources/items/types/__init__.py,sha256=IyYbAJwQtijmyTHzvC4dalNL9dF9vsG8k9qxahpcD4Q,1242
150
150
  merge/resources/accounting/resources/items/types/items_list_request_expand.py,sha256=FDmwznf3cYIcS6VICN-P8zLoCFaQ2y_NaoFIhbBMu_o,9523
151
151
  merge/resources/accounting/resources/items/types/items_retrieve_request_expand.py,sha256=pwtGsTtgvHiunK4XL2wXUIYsWY9NyD5iTjRAEl_TUYQ,9651
152
- merge/resources/accounting/resources/journal_entries/__init__.py,sha256=ChXYqyJ5O_FiG562ymVM8busv6T1Oj-Xknc2jK2k0KE,259
152
+ merge/resources/accounting/resources/journal_entries/__init__.py,sha256=9cEQmrat-nJkBdIC_aVQIIoYrrQzNQh41tovroR-SLY,1186
153
153
  merge/resources/accounting/resources/journal_entries/client.py,sha256=hr6Crb2g1uD0s-IMssoo-K6mP2T9BMT9mTZ3dyoDDEA,31837
154
154
  merge/resources/accounting/resources/journal_entries/raw_client.py,sha256=srNMp4gaQCBGCbOQznBO7OMcUPHaR-TeyfCfLigCAU8,38878
155
- merge/resources/accounting/resources/journal_entries/types/__init__.py,sha256=cxFawgzzMBH0S5BC--eoh4f54_xmWRV4V5X5AMZyOFQ,341
155
+ merge/resources/accounting/resources/journal_entries/types/__init__.py,sha256=362ssf7u1FdcrVDMW2IZ03DgdJwbCQp0ERBVlG2b03Q,1336
156
156
  merge/resources/accounting/resources/journal_entries/types/journal_entries_list_request_expand.py,sha256=FxCDOHj2JuG_HkGsp_wGUPDNe-8ju5j0jVGBtszMa1c,20607
157
157
  merge/resources/accounting/resources/journal_entries/types/journal_entries_retrieve_request_expand.py,sha256=oDL8u7IvKUaLABgRHAkswJ8NYbm_yg0RulYqcWf7HXc,20899
158
- merge/resources/accounting/resources/link_token/__init__.py,sha256=SHuz7ETMvuBzMIPBkqssDkfS9iJSZzYgw7pG6AM6bwk,179
158
+ merge/resources/accounting/resources/link_token/__init__.py,sha256=rFqQQV74iUqiyFV38kXLmMy_6QOH7ifcfn9qSZHnCCI,1044
159
159
  merge/resources/accounting/resources/link_token/client.py,sha256=3RjqNsgsg0mnCL8nOKM73iegiig2vrAwulJDvEGn-fU,12748
160
160
  merge/resources/accounting/resources/link_token/raw_client.py,sha256=Qs4IG6GwnXc1QuoMvdiBY-y2MSPeF1Kl7RQc8HSpmyw,13136
161
- merge/resources/accounting/resources/link_token/types/__init__.py,sha256=_DhmnLsRiAcpljK-OPGnDEHf9-FqnWXLVWUL4pOe8-I,207
161
+ merge/resources/accounting/resources/link_token/types/__init__.py,sha256=5u4pc35s4TmNZ4O2Le56xHN3UZGmvlCdr-C3BfxIEOg,1100
162
162
  merge/resources/accounting/resources/link_token/types/end_user_details_request_language.py,sha256=2BMH_lFqvpT1C4ljoUh5YUm2dgiuLYil6s3_pKcn540,194
163
- merge/resources/accounting/resources/linked_accounts/__init__.py,sha256=jDuRvmYXqKpaHo-Ya2LUjqfqk_rXOUOW7dSpRi-dvqM,187
163
+ merge/resources/accounting/resources/linked_accounts/__init__.py,sha256=qlT602tt9halCaj1oeXa66bVB_5EImiYWgBYpAFP3dY,1056
164
164
  merge/resources/accounting/resources/linked_accounts/client.py,sha256=9h4eo3lXGnOddnpnN_olteby0JqBBZCpTAYHYoNf8Iw,9964
165
165
  merge/resources/accounting/resources/linked_accounts/raw_client.py,sha256=DKRqtUwcxdHSDc1bz-qank3cZHbpyV9vl3EEB4Ti83k,10632
166
- merge/resources/accounting/resources/linked_accounts/types/__init__.py,sha256=FjSJvzQG9s-6wuY4YUdmieuUNQvaQXZKDSC138TRMz0,219
166
+ merge/resources/accounting/resources/linked_accounts/types/__init__.py,sha256=xWSbOu74X9JxtUN921_jbVtBDygRoEcDyGXySS5soJc,1126
167
167
  merge/resources/accounting/resources/linked_accounts/types/linked_accounts_list_request_category.py,sha256=_EGocl5xFPQUgGIidOl4wEewCLbzqWyiXV2PIev7l7M,1354
168
168
  merge/resources/accounting/resources/passthrough/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
169
169
  merge/resources/accounting/resources/passthrough/client.py,sha256=h5W8I2jamuZxNGkToWnFha7077ZDyDiIO_1BBVeQ7cI,3663
@@ -174,25 +174,25 @@ merge/resources/accounting/resources/payment_methods/raw_client.py,sha256=5OH2vh
174
174
  merge/resources/accounting/resources/payment_terms/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
175
175
  merge/resources/accounting/resources/payment_terms/client.py,sha256=GZgW9asjkttCT_PDPAx425jvzaOCQjGFWVnnr7ggtFU,10059
176
176
  merge/resources/accounting/resources/payment_terms/raw_client.py,sha256=FQJDDHT0UPXIRAzgrKpEwbEsWpLmrK_LVh5_0I-VWns,11696
177
- merge/resources/accounting/resources/payments/__init__.py,sha256=FQ4iEkIwx0gdbFTaLohmmeRAYyFzeBL4jmL3qyp3rpg,235
177
+ merge/resources/accounting/resources/payments/__init__.py,sha256=XCICwwyTXicjMDD-74EqKkYdiFDL5i4HlcIjIIZxhrE,1150
178
178
  merge/resources/accounting/resources/payments/client.py,sha256=1vN4Z_yGUwG6A8UcdJNsIS2jxR916hzg2vUQX5Twdew,37128
179
179
  merge/resources/accounting/resources/payments/raw_client.py,sha256=69yrHditdVQ8uSOnz-Y5zRXk7T4bmOmvyjQl2IeOoQ0,46399
180
- merge/resources/accounting/resources/payments/types/__init__.py,sha256=vCer3lj8gXUvA4MnA_NgWp5lj7rIHpbEVOL4X5Q2pFU,303
180
+ merge/resources/accounting/resources/payments/types/__init__.py,sha256=YosLP_reMRetxW6CZSZOLH2UD_GAg1o7SjmalhwYzj0,1272
181
181
  merge/resources/accounting/resources/payments/types/payments_list_request_expand.py,sha256=HESF9hxQQTOYD0AqaVYGTnZZ6l_l6Rrp-JccxLlf4vQ,46019
182
182
  merge/resources/accounting/resources/payments/types/payments_retrieve_request_expand.py,sha256=W1YCrMCPk3OXvDjRGZicPGCq26rfoHqzKeh4O7qTdqs,46567
183
183
  merge/resources/accounting/resources/phone_numbers/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
184
184
  merge/resources/accounting/resources/phone_numbers/client.py,sha256=OkI5QuvNcCVgYFHFC4s04Toqoyqf9a0fAUs4TMGJMJM,4324
185
185
  merge/resources/accounting/resources/phone_numbers/raw_client.py,sha256=ZGWHZhWaRvyRIkHUdYpshBD-M_c6-MDoqEciN2tUOxw,4962
186
- merge/resources/accounting/resources/projects/__init__.py,sha256=Hnpeeo8O3mZqBxOaXHqtzidyjtj2_hSTPF7S1ZyzBps,235
186
+ merge/resources/accounting/resources/projects/__init__.py,sha256=JHJ4Zf_P74ov2gjzvYq0t5A4pmJOn8WY2iu1HJ1IL9A,1150
187
187
  merge/resources/accounting/resources/projects/client.py,sha256=ptvoqS3oag_buHWBiTnIzbYDx41Rg9i75BdYXq1cW24,12841
188
188
  merge/resources/accounting/resources/projects/raw_client.py,sha256=jisXKn4uAhOAXIKHhP2p6lxzOyzj-RV0Gh2V33JXvPw,15098
189
- merge/resources/accounting/resources/projects/types/__init__.py,sha256=3Bck0IKa5Blg0JRdgT98e_m0AV6he8AfzjjXSwUxGP8,303
189
+ merge/resources/accounting/resources/projects/types/__init__.py,sha256=wM2-Lj1XQl-qM7H7SEjoai9DV-HfaRHgWhzoYRzRNJY,1272
190
190
  merge/resources/accounting/resources/projects/types/projects_list_request_expand.py,sha256=r6K1bRyyntXlU640inM9P4HJqG6RLQ9ndcX0JQD4Y-o,735
191
191
  merge/resources/accounting/resources/projects/types/projects_retrieve_request_expand.py,sha256=M-dqOWVhmOFBgBdcpo28uUIEhwLKZPJcfMJLs1zrtxc,751
192
- merge/resources/accounting/resources/purchase_orders/__init__.py,sha256=ROwU5qBCyqHmpQP3I1D4VY5pJhIIVJB-ROUyDSsT6QE,259
192
+ merge/resources/accounting/resources/purchase_orders/__init__.py,sha256=3wLK0ImtoLakYmKMExzX-tXK3CPBbJw1YHkdJFVRiq4,1186
193
193
  merge/resources/accounting/resources/purchase_orders/client.py,sha256=vAXTx4iKQpqoA-mf12-NTbmyVDSrxHO8xcpqWxptvWM,34491
194
194
  merge/resources/accounting/resources/purchase_orders/raw_client.py,sha256=V9t9DUPv42bHLs7dG-QWbjrrykx2bWuTMkC-IYUQPHI,41434
195
- merge/resources/accounting/resources/purchase_orders/types/__init__.py,sha256=Pv8HGF5iftNYjTYA0m7-Yb8Aqb8KJG2BLfcvGJo_U6U,341
195
+ merge/resources/accounting/resources/purchase_orders/types/__init__.py,sha256=wyTL9L406stZoAiZVu4uF9iCGKxFgVBvophOEy-ZaeA,1336
196
196
  merge/resources/accounting/resources/purchase_orders/types/purchase_orders_list_request_expand.py,sha256=SzeMqMfoPWvUElcCBhOcYPicrKpvLwxFcLOSfVvNXQM,46951
197
197
  merge/resources/accounting/resources/purchase_orders/types/purchase_orders_retrieve_request_expand.py,sha256=nd6hoVXJgq62DVmxHU4I_z6EUErKk9OaWk5l0idNH3Q,47751
198
198
  merge/resources/accounting/resources/regenerate_key/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
@@ -210,22 +210,22 @@ merge/resources/accounting/resources/tax_rates/raw_client.py,sha256=ShWLOe3TOBG9
210
210
  merge/resources/accounting/resources/tracking_categories/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
211
211
  merge/resources/accounting/resources/tracking_categories/client.py,sha256=Vj5MBC7pgcIxwuysUDnatzm1i5ShbK3rNNYM356j0uM,16843
212
212
  merge/resources/accounting/resources/tracking_categories/raw_client.py,sha256=QKTlWDk9kuwz74u4GgjDSExq5KaIS7UqzTr7Gp11MFI,19190
213
- merge/resources/accounting/resources/transactions/__init__.py,sha256=MAzQVZpaP3GY0UfUHU6iLzYipveqQyLB4FfOGzBtbr0,251
213
+ merge/resources/accounting/resources/transactions/__init__.py,sha256=bZVFzWCyH7IY1PT6ANwQfz_3Um-Ays7L9obEFSwuyIc,1174
214
214
  merge/resources/accounting/resources/transactions/client.py,sha256=RGHAvow3THh6Ho2ZRna9cI5f8wyIqbVdjZmUlWhRX1o,14129
215
215
  merge/resources/accounting/resources/transactions/raw_client.py,sha256=eEBMaItmgkO0nmerypa-TzubOBLsshIWqyP6PpEWRlU,16816
216
- merge/resources/accounting/resources/transactions/types/__init__.py,sha256=wc9A0k_kUrYFihOmSDRaR_50Ui2X2Z_G0V8gfwhCGkc,327
216
+ merge/resources/accounting/resources/transactions/types/__init__.py,sha256=xTvqSmci44M-1g2XIUslImXz2fVQ43wnydZLGhP1Bd0,1312
217
217
  merge/resources/accounting/resources/transactions/types/transactions_list_request_expand.py,sha256=8365kWSDHZXam7FIV9rjCVBZywuFuoCG8jqGhKlOaYk,19575
218
218
  merge/resources/accounting/resources/transactions/types/transactions_retrieve_request_expand.py,sha256=XgrAFbOEPj3vRBchx9ho55T82dR0jYNp24yUEvkC6l8,19831
219
- merge/resources/accounting/resources/vendor_credits/__init__.py,sha256=GAGfZVX3e96k5gRBtjJuV6LECbphCejDI80O0eQIFD0,255
219
+ merge/resources/accounting/resources/vendor_credits/__init__.py,sha256=ClG7_3Wx2L69sshr1ZqG20ug4RJnUfycJC4c_Q99BIE,1180
220
220
  merge/resources/accounting/resources/vendor_credits/client.py,sha256=rAzPHfo6Zi_Jkiok-MRIN_sVYslBzRc5tU_kpV1Ul2I,18988
221
221
  merge/resources/accounting/resources/vendor_credits/raw_client.py,sha256=Ws0X34QjUzN5elh9AKuOm6Q3hJATD9KMudutGmM13p8,23987
222
- merge/resources/accounting/resources/vendor_credits/types/__init__.py,sha256=fRK-o9-tnUeUUjLpkDyCYBRO8Pp729oTDt_BjyKgvCQ,335
222
+ merge/resources/accounting/resources/vendor_credits/types/__init__.py,sha256=CS3zPq2dxTtuGX5iJPzaRRO8TyEQYfIcpDj4PYb6p_k,1326
223
223
  merge/resources/accounting/resources/vendor_credits/types/vendor_credits_list_request_expand.py,sha256=dT1LHp5JxN6AxdcpSdeujiyeSh_mIklDgGpE7O13b44,8691
224
224
  merge/resources/accounting/resources/vendor_credits/types/vendor_credits_retrieve_request_expand.py,sha256=bqZelf1QFmVXc--BsDMsQznpDLeMt2hJjYHGk-1Vcts,8819
225
225
  merge/resources/accounting/resources/webhook_receivers/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
226
226
  merge/resources/accounting/resources/webhook_receivers/client.py,sha256=kjqQ42l6V0-CwCF2ENgSaYNiRBlkzNff3s-mNRr5_pE,5238
227
227
  merge/resources/accounting/resources/webhook_receivers/raw_client.py,sha256=Rck5ssy1nlIcEkLUw0OVPX1HUOd3WUJW4XVxz9LqDQg,7159
228
- merge/resources/accounting/types/__init__.py,sha256=_uL20_I8UZ9MbCnDRaBYnflg0afnLHLYzOff2RvijpM,49450
228
+ merge/resources/accounting/types/__init__.py,sha256=lUISMknPton0UmQTIdWXK3HIKEimAhoTck6B1XW-TZY,84562
229
229
  merge/resources/accounting/types/account.py,sha256=2f6W3aEEhHfUj8HrZOrS2XN06IgQ7nuXD0_8LK_XrKM,15204
230
230
  merge/resources/accounting/types/account_account_type.py,sha256=Q89Q7sOANCg8AK5Y83pApbuN4lSJ323_CrppZSpokRE,206
231
231
  merge/resources/accounting/types/account_account_type_enum.py,sha256=FrCjqIr4_BR0T6PMgRUt9FEVqtPoyTdTwDv8Wz1bdsQ,3230
@@ -742,34 +742,34 @@ merge/resources/accounting/types/vendor_credit_tracking_categories_item.py,sha25
742
742
  merge/resources/accounting/types/vendor_credit_vendor.py,sha256=Hbx_dA_l0j2zLa1Lq0ZVp-awB7rk0kfhrRC-_AAL-Pk,158
743
743
  merge/resources/accounting/types/warning_validation_problem.py,sha256=RXDtt3t3FwIeGGXkIr_OHOAybDZg44L_5hOqa2sLlJ0,736
744
744
  merge/resources/accounting/types/webhook_receiver.py,sha256=g4KQnc-vZPJGlXK-OOFIn2WGyTLKoeaq9TPWQ46VwFY,623
745
- merge/resources/ats/__init__.py,sha256=1ehxW8ra-B9his5ZKRs7si7H5Ca3WwOiyTla5qjvJ8M,15350
746
- merge/resources/ats/client.py,sha256=1FwfG2WC9dV3YEUTzJZM7EI6htOTwBbt2LRDxKew7Po,9376
745
+ merge/resources/ats/__init__.py,sha256=0rpVAj_nKJ_NVe0MKqAiH55ZrcpkbyYPHdjLV5iXwyw,28201
746
+ merge/resources/ats/client.py,sha256=Dvkwc80xk3DxVr4ojaszBGtYiybcqJw2-YMItR4ady0,28343
747
747
  merge/resources/ats/raw_client.py,sha256=MRKuoo8ARCLmq_R2YdrQSmcB_KzqPPaOdemqPBYCLF4,404
748
- merge/resources/ats/resources/__init__.py,sha256=EUOnEgv49msr73fBwU0l2EhDp13zfztTMQfs6Ql8Z7s,3627
748
+ merge/resources/ats/resources/__init__.py,sha256=mHgT5XcNYiavmP3uvDZ3T4puHDwLz0hjtC91N75276o,6939
749
749
  merge/resources/ats/resources/account_details/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
750
750
  merge/resources/ats/resources/account_details/client.py,sha256=oz5hRvzMUgFEb_bVUVJOttKeoDfHdZWKbmlM32c1uVw,2801
751
751
  merge/resources/ats/resources/account_details/raw_client.py,sha256=_Rkkyn2yn8di0gasIvO72rGSg_aF22l-LI9O6lDRGmE,3351
752
752
  merge/resources/ats/resources/account_token/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
753
753
  merge/resources/ats/resources/account_token/client.py,sha256=kDVIqxdjBnHvSh5gU39-RVHBdpjdp2fj37uQa8Dcdc0,3091
754
754
  merge/resources/ats/resources/account_token/raw_client.py,sha256=3GJUM1Yu9JYVaJZMwjGvLuX3cu1ZtIUsgQcPJU3QPD0,3637
755
- merge/resources/ats/resources/activities/__init__.py,sha256=-7a9PFupqA9rSMXdfNzvDNwWZ5-z-97--UWDJ5QEKrk,471
755
+ merge/resources/ats/resources/activities/__init__.py,sha256=4YOQ7P89ovcsk36fYYeOR1yACWdFll4YH8AuHEo8xZU,1534
756
756
  merge/resources/ats/resources/activities/client.py,sha256=z5zCMT5BQLDZ8COub3Ie5h_JSgDDttJnVm0dy-famSY,20984
757
757
  merge/resources/ats/resources/activities/raw_client.py,sha256=BcLufS4fk_TY4Wno9La265iFmww-Zd8I6kCBA3khXAo,25461
758
- merge/resources/ats/resources/activities/types/__init__.py,sha256=z70xvrXN4FknJpeUPn3htP2ZzbBYMPLWAgnCxWn-vpQ,648
758
+ merge/resources/ats/resources/activities/types/__init__.py,sha256=LVhSDgoBnVe46Nt17vpx2EO4I1aFMgzYlPfJm-LgFzU,1847
759
759
  merge/resources/ats/resources/activities/types/activities_list_request_remote_fields.py,sha256=EbdZeEOZoR6q7-phOELZ49XW03YsFiVnstNp7-YsC9I,857
760
760
  merge/resources/ats/resources/activities/types/activities_list_request_show_enum_origins.py,sha256=nYATTTiHNeti_XXsL794-kkcmO6sLAa5tqdslLIHmVo,869
761
761
  merge/resources/ats/resources/activities/types/activities_retrieve_request_remote_fields.py,sha256=EptLRhlvXlziglz0aMKKWVQ-tSXLsw6twbt4d0BnMp8,873
762
762
  merge/resources/ats/resources/activities/types/activities_retrieve_request_show_enum_origins.py,sha256=gftC7Ed3Gn60h5h24vcq3xoPkNbM4di6ONmviIwKJTM,885
763
- merge/resources/ats/resources/applications/__init__.py,sha256=SidKCw-0G6GhwJv8i071-h0wrLA8SPRZWFj2j85Bg1Y,251
763
+ merge/resources/ats/resources/applications/__init__.py,sha256=-B7Z64b2WqfbhpeKKHWHb5X41pVq0ZRKm5lMoeOjys8,1174
764
764
  merge/resources/ats/resources/applications/client.py,sha256=wu-ZRfT5q1pO7xSF6kJ2i5mQmCYdZP8OQgAcj38JknI,25216
765
765
  merge/resources/ats/resources/applications/raw_client.py,sha256=ZsOneTzEakSNV4aX8kMV3EtWQWOtosqRPiPDNY9ShBw,31122
766
- merge/resources/ats/resources/applications/types/__init__.py,sha256=fL5AJHQ9Br-GgXH02iLpk8LEqw8tCixmRngTWbGSyao,327
766
+ merge/resources/ats/resources/applications/types/__init__.py,sha256=5TeL84ZRdU_9769pYSySH2Mmp1QAbZavlmNLsmwx8_Q,1312
767
767
  merge/resources/ats/resources/applications/types/applications_list_request_expand.py,sha256=tR95D-B0MkMq4jRvH8NW15Ol0JZffFjG7TtaSXKfWnA,117151
768
768
  merge/resources/ats/resources/applications/types/applications_retrieve_request_expand.py,sha256=KSVOBPTXZpSC6HBfghIMm1Uq_yJ5Qk8gsF--ZQW9c1k,118607
769
- merge/resources/ats/resources/async_passthrough/__init__.py,sha256=1MpPldWxuhYBQ4thZ3E-Ykjn3NxDsYfdArx3XkPQtdI,185
769
+ merge/resources/ats/resources/async_passthrough/__init__.py,sha256=fKVWk4jeqEvhNZuk0EtXPEFl5uB136ROeo8C6xczZI8,1053
770
770
  merge/resources/ats/resources/async_passthrough/client.py,sha256=rgQ0LiOASHIW32F949SJPYzsECiU4HQlZUI-EMH4ViE,5952
771
771
  merge/resources/ats/resources/async_passthrough/raw_client.py,sha256=1a-h7m2cEQq291Ym-tVIccNi-TzZDqwVubUZ6pvvozo,7347
772
- merge/resources/ats/resources/async_passthrough/types/__init__.py,sha256=0LUj53dTeTqfs50XizOk2ro3RcqGYXn71qHGyZs5Rdg,215
772
+ merge/resources/ats/resources/async_passthrough/types/__init__.py,sha256=xZoQJ90iQWokoy6yfd_9sggRIkFEWCIPhmpoahoo_t0,1113
773
773
  merge/resources/ats/resources/async_passthrough/types/async_passthrough_retrieve_response.py,sha256=uBMjgizc2Qhm2JA0rRTer6NiRT3sq_v-EyTrzkiQC0g,203
774
774
  merge/resources/ats/resources/attachments/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
775
775
  merge/resources/ats/resources/attachments/client.py,sha256=vdaBd43M1IKXYMIExB8ZQCD6pxIQpjmOO25dCLMaEjg,20708
@@ -780,10 +780,10 @@ merge/resources/ats/resources/audit_trail/raw_client.py,sha256=GPEz5uk0SbZsB-I6C
780
780
  merge/resources/ats/resources/available_actions/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
781
781
  merge/resources/ats/resources/available_actions/client.py,sha256=DX3bAHmwfRrF7G7iG5RMYhC1eBc8xjf0WSGVmN6mExg,2895
782
782
  merge/resources/ats/resources/available_actions/raw_client.py,sha256=x5-jmQW7czfLCktzq3wdTGA6s9WP_mg62kZjV36RLEA,3437
783
- merge/resources/ats/resources/candidates/__init__.py,sha256=4vAJWLq2R2LlWJTw6zACGlCdvhRz0RhuUVHbRTy6v5w,309
783
+ merge/resources/ats/resources/candidates/__init__.py,sha256=w6-8GMT_jgvRRbMbqpH5TuudhK_-vdf__uUoJVYYH1I,1276
784
784
  merge/resources/ats/resources/candidates/client.py,sha256=1Su5wxasKOjcD428He2ZnV2ZghPNKD8-XZk2qdoObI0,27632
785
785
  merge/resources/ats/resources/candidates/raw_client.py,sha256=ax5EF7RKwh77Gylrq8lpAAvGv1rmAqmwwcLQsG69338,34710
786
- merge/resources/ats/resources/candidates/types/__init__.py,sha256=DF4erREoyZpBAPTrbFo3_tTkzq3wAgTISLOvLXv__-k,428
786
+ merge/resources/ats/resources/candidates/types/__init__.py,sha256=2Dd66-CGy_epD9h_vcym9Zw0B6OQ5imiVNKvIJc5WTo,1486
787
787
  merge/resources/ats/resources/candidates/types/candidates_list_request_expand.py,sha256=FvbU_Ih2IGTXBRr5OsIZLm9ia5C7jOKNkySAf4IQLwo,833
788
788
  merge/resources/ats/resources/candidates/types/candidates_retrieve_request_expand.py,sha256=Raklhf47gXFSOhrB9PXA1OheuJZbGp4daApxj4C5UaU,849
789
789
  merge/resources/ats/resources/candidates/types/ignore_common_model_request_reason.py,sha256=9QCgrEP76XjxWTTdo8_2Z7vZyzOnj-9ZtBe1pgZQWEk,189
@@ -793,10 +793,10 @@ merge/resources/ats/resources/delete_account/raw_client.py,sha256=d0tHdOLTXDgOCl
793
793
  merge/resources/ats/resources/departments/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
794
794
  merge/resources/ats/resources/departments/client.py,sha256=z5R_X8kpThmdvzy7LlL5MfBKcrqoaP9Cm78Mo1IKK4E,11195
795
795
  merge/resources/ats/resources/departments/raw_client.py,sha256=_F5juwCER9ea2IFT_qglg4Lc5Zrljsrq9zH9St2Oxdc,13410
796
- merge/resources/ats/resources/eeocs/__init__.py,sha256=myufvT2uQFozdu7rPvL7eVc9mUHyEKHYf1GFJy41I3s,431
796
+ merge/resources/ats/resources/eeocs/__init__.py,sha256=Eht_-345JSmhHfFfiHIiFAxKdBT-u6oJkU7FV_Zkv2s,1474
797
797
  merge/resources/ats/resources/eeocs/client.py,sha256=Nv816bJR5XSVxJu6Wy_Vx60seIuHZkMY47Dypocrxu8,15749
798
798
  merge/resources/ats/resources/eeocs/raw_client.py,sha256=uXBdhATekmpjJ4-HeY1-N5JHO3tIte3Bf7pvsqrI4Ag,18062
799
- merge/resources/ats/resources/eeocs/types/__init__.py,sha256=WgzWd0xcKP8SQoFo75J-rbXIQcd16X7G429oEDvh2hU,588
799
+ merge/resources/ats/resources/eeocs/types/__init__.py,sha256=DDModPi2jWYLgDW208-RpB2wiLQqaY_34_84J0kFSqI,1747
800
800
  merge/resources/ats/resources/eeocs/types/eeocs_list_request_remote_fields.py,sha256=p_xPGIVLJ9LpR-qm-q7G83fzM7QvUxTHSEjkOPNA7qc,3803
801
801
  merge/resources/ats/resources/eeocs/types/eeocs_list_request_show_enum_origins.py,sha256=52EGOVkBWMn5hGKJcjr83P9xMoHXmBviTm5IhKOe2hY,3851
802
802
  merge/resources/ats/resources/eeocs/types/eeocs_retrieve_request_remote_fields.py,sha256=9utJHwQ_K57eeY9ySzwin_bqzgrPpk394keNT5haQZQ,3867
@@ -810,47 +810,47 @@ merge/resources/ats/resources/force_resync/raw_client.py,sha256=5bXpUwMnyPFh0NgD
810
810
  merge/resources/ats/resources/generate_key/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
811
811
  merge/resources/ats/resources/generate_key/client.py,sha256=5aK1zVlz0hHKe0Wko1dQ3sDLJB7F5vNwvkEGl639yC8,3070
812
812
  merge/resources/ats/resources/generate_key/raw_client.py,sha256=Fnun7LfpUy9ff1if3kAQd3b2GVeUY9i6d8kHZKd5C9k,3850
813
- merge/resources/ats/resources/interviews/__init__.py,sha256=ye942zibyOKeOtuWrnNie3nhGT2Lt1J86d5FtjDSEbg,243
813
+ merge/resources/ats/resources/interviews/__init__.py,sha256=M0f3PuP2gzbxKdA7puiQokB_-2dP6dNmXlAxHumHNhc,1162
814
814
  merge/resources/ats/resources/interviews/client.py,sha256=D1yzy00M3GjkclvZSO2SzctD7n9pVoUHZa0Fsofm_90,22316
815
815
  merge/resources/ats/resources/interviews/raw_client.py,sha256=EhjoxzZXIurOtOwa-5p8FokPPrRA5PCAlhAdc4RAkLM,26915
816
- merge/resources/ats/resources/interviews/types/__init__.py,sha256=7cM3HJPi02FBkjcm3Bz7vv_NDjDiCLVkp8NYmfhPhlw,315
816
+ merge/resources/ats/resources/interviews/types/__init__.py,sha256=8AwRx46og1-F9Vc2yxw2b-O8I9gLTReazenH4p6rgbM,1292
817
817
  merge/resources/ats/resources/interviews/types/interviews_list_request_expand.py,sha256=xyq9du-PhMinUNt5dHVy4vI28htBS1HqBN49JYyLTAY,4187
818
818
  merge/resources/ats/resources/interviews/types/interviews_retrieve_request_expand.py,sha256=YSU0ceJ4gJRUXEs4wKgdd2PObfiIw_ROkmMPBIKX53Y,4251
819
- merge/resources/ats/resources/issues/__init__.py,sha256=8N-ynHIskTDmO3zwQbhyEHy7OTb63CJ_NdZRdLDBOyk,167
819
+ merge/resources/ats/resources/issues/__init__.py,sha256=fKOCxeYsbS41Y58p81luMrp7eaz6BLop2enXQ3HTvtc,1026
820
820
  merge/resources/ats/resources/issues/client.py,sha256=RPMvRDmxAE3dCISPIvgmQSnQXDyglfiruixGotpJSlM,11087
821
821
  merge/resources/ats/resources/issues/raw_client.py,sha256=Q8C2hGOq2Ee51_LLDJIPq6tXbfAAlOscbe0XdNyhEt4,13686
822
- merge/resources/ats/resources/issues/types/__init__.py,sha256=jjxa8xGa5vTp5-uzIuy8dWJLKrwzX6DnMKPEEkgN4eo,188
822
+ merge/resources/ats/resources/issues/types/__init__.py,sha256=c7N5BxoJGun2-0qD15I96eDPA36xKVGjt08VJoifSNo,1068
823
823
  merge/resources/ats/resources/issues/types/issues_list_request_status.py,sha256=cBbfu1Q5A0ZPOzB7nM_VHRKEJHnxk8lqN-cGmRX6_x4,508
824
824
  merge/resources/ats/resources/job_interview_stages/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
825
825
  merge/resources/ats/resources/job_interview_stages/client.py,sha256=bnNwtJaZJEwRuLs91gJ0EFzg1BrGNwoUqJTazyotyQ4,12897
826
826
  merge/resources/ats/resources/job_interview_stages/raw_client.py,sha256=YwWqkWhr8IjKBrgx3cHU8LRHALTIssAL7n59IJTBM5E,15154
827
- merge/resources/ats/resources/job_postings/__init__.py,sha256=ABkpsd-5AOuEC47y262hEh2AH-e93ZoRCY0UowtZIGs,177
827
+ merge/resources/ats/resources/job_postings/__init__.py,sha256=dE8IJKhYq3uhrTGg7oGkkzTWvB4yhTbFsZkzDx_8chY,1041
828
828
  merge/resources/ats/resources/job_postings/client.py,sha256=MM31J9DH4jJu0I-c6paU0CAPdFjhE6n8uYzztVa3cek,13334
829
829
  merge/resources/ats/resources/job_postings/raw_client.py,sha256=84UPP_kMrFsWphQVvgQywf5FvYfzoAYPtTeML_tWiq8,15591
830
- merge/resources/ats/resources/job_postings/types/__init__.py,sha256=DfI0dlyQhzb_mOiOe0JdCS57yfoXd4iRYUt_Aobez2M,204
830
+ merge/resources/ats/resources/job_postings/types/__init__.py,sha256=m0QGvAHivXs-2y8aG8nkM5ve4SdnpZVyZuy7JuQanOw,1095
831
831
  merge/resources/ats/resources/job_postings/types/job_postings_list_request_status.py,sha256=DD459cw_Cc4lzqomq0lCJN2Boojscl7nRSxeyQyd_l8,1023
832
- merge/resources/ats/resources/jobs/__init__.py,sha256=uB3kagmDzGwd6LLPerwPt0lcfpgsinUWVGCw2vI9iDE,391
832
+ merge/resources/ats/resources/jobs/__init__.py,sha256=2wQdbzGIKYOV0fDQLIi7WWoDFUrz2OrHQCA_pB3RC9M,1414
833
833
  merge/resources/ats/resources/jobs/client.py,sha256=uD1zOB-u89SjqKr0pjfP2gEE2NGeojmFkJYCnWyBQz0,22379
834
834
  merge/resources/ats/resources/jobs/raw_client.py,sha256=1HJQXeBj9sIkung1BrbzDb1Q08pQtxrK_Wu6UFmtal4,25683
835
- merge/resources/ats/resources/jobs/types/__init__.py,sha256=z1XF8BcKtAZ7OCi_rk383vEnJUZ_uu6nXjN4IdUFvnI,524
835
+ merge/resources/ats/resources/jobs/types/__init__.py,sha256=2vKTqUZQapyOqjU0PcihFsfyXFLEEPGYliSjoGeeyjc,1639
836
836
  merge/resources/ats/resources/jobs/types/jobs_list_request_expand.py,sha256=1B4kaeN4JWDbRkJKIXkdWAavlMCFf5wthnLMeeIOXl0,8483
837
837
  merge/resources/ats/resources/jobs/types/jobs_list_request_status.py,sha256=62bp9qckkUjyZ7Ez5ipGKhHHFvnHr1tTe9e5To-miEM,956
838
838
  merge/resources/ats/resources/jobs/types/jobs_retrieve_request_expand.py,sha256=_k0n0SR7alHbk6SAfS9iQNfotO5AXCpAxCPaSX5upm4,8611
839
839
  merge/resources/ats/resources/jobs/types/jobs_screening_questions_list_request_expand.py,sha256=7zHNB5o-v3Nnicrn42dHPNZxdC177a2RwPc5vNeHQB4,751
840
- merge/resources/ats/resources/link_token/__init__.py,sha256=SHuz7ETMvuBzMIPBkqssDkfS9iJSZzYgw7pG6AM6bwk,179
840
+ merge/resources/ats/resources/link_token/__init__.py,sha256=rFqQQV74iUqiyFV38kXLmMy_6QOH7ifcfn9qSZHnCCI,1044
841
841
  merge/resources/ats/resources/link_token/client.py,sha256=Ff6ZcuMF_GfxXEfKZM7M1P-9pOIF5muTLkfX7T6Lu3c,12720
842
842
  merge/resources/ats/resources/link_token/raw_client.py,sha256=UfsNss9cKhbdQjO4p0q3k4w6P18CFxhkY59_5ZbPfck,13122
843
- merge/resources/ats/resources/link_token/types/__init__.py,sha256=_DhmnLsRiAcpljK-OPGnDEHf9-FqnWXLVWUL4pOe8-I,207
843
+ merge/resources/ats/resources/link_token/types/__init__.py,sha256=5u4pc35s4TmNZ4O2Le56xHN3UZGmvlCdr-C3BfxIEOg,1100
844
844
  merge/resources/ats/resources/link_token/types/end_user_details_request_language.py,sha256=2BMH_lFqvpT1C4ljoUh5YUm2dgiuLYil6s3_pKcn540,194
845
- merge/resources/ats/resources/linked_accounts/__init__.py,sha256=jDuRvmYXqKpaHo-Ya2LUjqfqk_rXOUOW7dSpRi-dvqM,187
845
+ merge/resources/ats/resources/linked_accounts/__init__.py,sha256=qlT602tt9halCaj1oeXa66bVB_5EImiYWgBYpAFP3dY,1056
846
846
  merge/resources/ats/resources/linked_accounts/client.py,sha256=gLZgIe6ODAaPnR7XxDyLUhK3FcKi6FrO68FVdbfS59w,9950
847
847
  merge/resources/ats/resources/linked_accounts/raw_client.py,sha256=f9w9v_tob9fvlVfruFZMUD5uwEhfSBen8GcGHrt47RM,10618
848
- merge/resources/ats/resources/linked_accounts/types/__init__.py,sha256=FjSJvzQG9s-6wuY4YUdmieuUNQvaQXZKDSC138TRMz0,219
848
+ merge/resources/ats/resources/linked_accounts/types/__init__.py,sha256=xWSbOu74X9JxtUN921_jbVtBDygRoEcDyGXySS5soJc,1126
849
849
  merge/resources/ats/resources/linked_accounts/types/linked_accounts_list_request_category.py,sha256=_EGocl5xFPQUgGIidOl4wEewCLbzqWyiXV2PIev7l7M,1354
850
- merge/resources/ats/resources/offers/__init__.py,sha256=4sWeI0xo022pVv-wC1Z-XEwGqjLWAwn1ZpVfswvommw,227
850
+ merge/resources/ats/resources/offers/__init__.py,sha256=MjPZ5RGhznfkXpO1UBKjauncUUEOp4Qvz8h7Z-V2Vdk,1127
851
851
  merge/resources/ats/resources/offers/client.py,sha256=zYYfCi5jmB4gk4jT5zm4irNBsQaUm_D1_OFSBeQrYjA,15847
852
852
  merge/resources/ats/resources/offers/raw_client.py,sha256=kN2FXkfQFvaf5TdW5GUNHNsrRkQCmALIpZAmxsTDu_o,18174
853
- merge/resources/ats/resources/offers/types/__init__.py,sha256=uBbN8hlvln2dNepbLvrW6frHWMgziscAQolWxqkdXYs,291
853
+ merge/resources/ats/resources/offers/types/__init__.py,sha256=4vP2nHoLBttwtyhDnsgx1OtiBD1uDtzC9V137kpfXaE,1252
854
854
  merge/resources/ats/resources/offers/types/offers_list_request_expand.py,sha256=TeIQthOQikNd8KC2_dmHM_7B7rMjD5TzdY0qN5cu0Ks,767
855
855
  merge/resources/ats/resources/offers/types/offers_retrieve_request_expand.py,sha256=Y2aYRm4Iudo53A_YxRA827YZW7sEgt_mvsW6otx0YjI,783
856
856
  merge/resources/ats/resources/offices/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
@@ -868,10 +868,10 @@ merge/resources/ats/resources/reject_reasons/raw_client.py,sha256=mT1birKV20_95R
868
868
  merge/resources/ats/resources/scopes/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
869
869
  merge/resources/ats/resources/scopes/client.py,sha256=ISs8i6ITrjFESYm_O-BmOEcjWrPTWGp4_Wlo7SVhmXA,10770
870
870
  merge/resources/ats/resources/scopes/raw_client.py,sha256=ghmLHuM2p4VnSfo4rrNutN8uhN9k2VMoZ1XIEXXTTXE,10986
871
- merge/resources/ats/resources/scorecards/__init__.py,sha256=GhEFJMt_aXNCS6b3ETek4riAvFa0N_XFYr-ro6LzESY,243
871
+ merge/resources/ats/resources/scorecards/__init__.py,sha256=FM72eg-6ZJhhj9hMqsuuVUNuVYHoIFCeY6XhuKs3QvU,1162
872
872
  merge/resources/ats/resources/scorecards/client.py,sha256=8jIrnUEQh4Kmyx7pXldAhM9xNbFEpbJLk1381NRPgUI,16733
873
873
  merge/resources/ats/resources/scorecards/raw_client.py,sha256=HykqlrZMi9CU6Ld4Es6_-tjRR7oTEXYbvYgXToJQfQ0,19074
874
- merge/resources/ats/resources/scorecards/types/__init__.py,sha256=z2pbkqWcLCYWrTsHCfaL7dNz74TV_g_t2oanFhZTsy8,315
874
+ merge/resources/ats/resources/scorecards/types/__init__.py,sha256=qJFjLWuGIMmKkDsPB7CxdWf_EEmRNlg0kPDMEbH7uJo,1292
875
875
  merge/resources/ats/resources/scorecards/types/scorecards_list_request_expand.py,sha256=vFFF3C7SmWZV-VOpZJZE0ImcXFJvXro89z8cNlAzXwk,1731
876
876
  merge/resources/ats/resources/scorecards/types/scorecards_retrieve_request_expand.py,sha256=3Nylu_gL8zgPal4Ly45b0Hi6Mz_-I7SbhJMgK3Xr_TE,1763
877
877
  merge/resources/ats/resources/sync_status/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
@@ -886,7 +886,7 @@ merge/resources/ats/resources/users/raw_client.py,sha256=a4X9rtywjYzGGzTSphlipJQ
886
886
  merge/resources/ats/resources/webhook_receivers/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
887
887
  merge/resources/ats/resources/webhook_receivers/client.py,sha256=3zodHRSQJPPf98a9ExD4JopX3eLitEdDu5E1R-Aw3Zs,5210
888
888
  merge/resources/ats/resources/webhook_receivers/raw_client.py,sha256=UUDXduQXEU5p-MNIgtf3DTrTtv2wbEE8SkLJCKJUj3U,7131
889
- merge/resources/ats/types/__init__.py,sha256=UbLuTLm2zoB4xD8fOjrHZHS4yDXJteytGwEa9kntXhY,18921
889
+ merge/resources/ats/types/__init__.py,sha256=NF-iLh5DSLIIRrSHZ57eIxYlb2lX8J37h9JbmtRKycg,32810
890
890
  merge/resources/ats/types/access_role_enum.py,sha256=h6k5JiAyywFbiaB461sMfQ6HYaj_-KH4r0g3iEqMVVM,1240
891
891
  merge/resources/ats/types/account_details.py,sha256=6FjFKxsxftOM5DJIiueXWPtJZkuFMIVSgcB_2UT7t8w,1617
892
892
  merge/resources/ats/types/account_details_and_actions.py,sha256=4S2cnfZ4T8vU-rudpCuZWlH23sgL4dk6n9k1ZbzrQt4,2121
@@ -1104,10 +1104,10 @@ merge/resources/ats/types/veteran_status_enum.py,sha256=SiiRJPvP11x6q2EWojgvD8ni
1104
1104
  merge/resources/ats/types/visibility_enum.py,sha256=c2n5A9Y267-9PpEqpNZaSCL-_-do51MdUJpTvtu-JC0,760
1105
1105
  merge/resources/ats/types/warning_validation_problem.py,sha256=RXDtt3t3FwIeGGXkIr_OHOAybDZg44L_5hOqa2sLlJ0,736
1106
1106
  merge/resources/ats/types/webhook_receiver.py,sha256=g4KQnc-vZPJGlXK-OOFIn2WGyTLKoeaq9TPWQ46VwFY,623
1107
- merge/resources/crm/__init__.py,sha256=LrjAxtnWJEveLQ288MOLxHww6i7racBfGYa41F9I_x4,14270
1108
- merge/resources/crm/client.py,sha256=yeydgistiRUzTrsCYwCuDfkLQDji0tOqr4BtRtnI3t4,9005
1107
+ merge/resources/crm/__init__.py,sha256=I1Dx1Bc69UOTtkwMknaPpfK2x4uDn1Zn_1QR7h_FyTY,26379
1108
+ merge/resources/crm/client.py,sha256=PcRsev56VokrI3KBAIqSbiwpwoy8rKhfCtQnTcZAInU,27062
1109
1109
  merge/resources/crm/raw_client.py,sha256=9guTBIuihjloPhDBKAPHrND1Kuz_85FpO3OrLwqeXA8,404
1110
- merge/resources/crm/resources/__init__.py,sha256=CN0EM85rzlr5WwwNWEFL6f-vO17FdVdBwalp926Ln2s,2622
1110
+ merge/resources/crm/resources/__init__.py,sha256=zTsmeaHeecf4stpa2XgviiX39tmjxp_rE8872khkDfY,5239
1111
1111
  merge/resources/crm/resources/account_details/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1112
1112
  merge/resources/crm/resources/account_details/client.py,sha256=CldGnS_8Pgng52dHMmy56d9eGGCDgvNbd8o3NOwxQ6Q,2801
1113
1113
  merge/resources/crm/resources/account_details/raw_client.py,sha256=q-ohjy1FdvrROwC6vyLTyD1Bi7dcqPniQiKPW5kWLLU,3351
@@ -1123,10 +1123,10 @@ merge/resources/crm/resources/association_types/raw_client.py,sha256=a2mvRSpAb1V
1123
1123
  merge/resources/crm/resources/associations/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1124
1124
  merge/resources/crm/resources/associations/client.py,sha256=6fZQgLWyTslNruVj8EF4RVZW9QXRv7Am030hR7A9igY,14591
1125
1125
  merge/resources/crm/resources/associations/raw_client.py,sha256=Xj_FpQ1Ut6rfJO5sDNi12yzhBOMYQQQ80jDOHKYG-Sc,16008
1126
- merge/resources/crm/resources/async_passthrough/__init__.py,sha256=1MpPldWxuhYBQ4thZ3E-Ykjn3NxDsYfdArx3XkPQtdI,185
1126
+ merge/resources/crm/resources/async_passthrough/__init__.py,sha256=fKVWk4jeqEvhNZuk0EtXPEFl5uB136ROeo8C6xczZI8,1053
1127
1127
  merge/resources/crm/resources/async_passthrough/client.py,sha256=oMxHAGi_51VevQFjwztWBnzwpKvHesZIqSkVkb9JQaA,5952
1128
1128
  merge/resources/crm/resources/async_passthrough/raw_client.py,sha256=3TIPPbYmEDnUqOpk9qTgyAwDmksbYFDyjPh9gSXocRw,7347
1129
- merge/resources/crm/resources/async_passthrough/types/__init__.py,sha256=0LUj53dTeTqfs50XizOk2ro3RcqGYXn71qHGyZs5Rdg,215
1129
+ merge/resources/crm/resources/async_passthrough/types/__init__.py,sha256=xZoQJ90iQWokoy6yfd_9sggRIkFEWCIPhmpoahoo_t0,1113
1130
1130
  merge/resources/crm/resources/async_passthrough/types/async_passthrough_retrieve_response.py,sha256=uBMjgizc2Qhm2JA0rRTer6NiRT3sq_v-EyTrzkiQC0g,203
1131
1131
  merge/resources/crm/resources/audit_trail/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1132
1132
  merge/resources/crm/resources/audit_trail/client.py,sha256=J3_6z80vBqR0C5L2OGetFRR5tv5nj_dgF7AQ4QCIbrU,8530
@@ -1134,10 +1134,10 @@ merge/resources/crm/resources/audit_trail/raw_client.py,sha256=cnqykgvXoIxtayDCF
1134
1134
  merge/resources/crm/resources/available_actions/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1135
1135
  merge/resources/crm/resources/available_actions/client.py,sha256=aX4PwUhOJX3UDXt6uOcmUIafkTX5Fz6LXGKrz1XuhF4,2895
1136
1136
  merge/resources/crm/resources/available_actions/raw_client.py,sha256=lJ0EydFe5eAVZP0lKPc4mvVqck4OHtsNb5vXO3N4-Ew,3437
1137
- merge/resources/crm/resources/contacts/__init__.py,sha256=-2sXN9uRSOxRpvtG54uCrMIB_n7lHdDy0z5pgw1_Nc8,235
1137
+ merge/resources/crm/resources/contacts/__init__.py,sha256=i5E2SNGTIeb7M1kJr9eMRLGoTrr5Wdyb19g3kTbeB-k,1150
1138
1138
  merge/resources/crm/resources/contacts/client.py,sha256=gjOMBGWIY92dM7bsJABX-XispSkv0oKp-w4nyu2zkH8,33981
1139
1139
  merge/resources/crm/resources/contacts/raw_client.py,sha256=cLZCbCYpjZVuG4RoxS7ogF2sTWTC48it0WdDSEaJuBc,42188
1140
- merge/resources/crm/resources/contacts/types/__init__.py,sha256=EPkxRBuO5CXib_I81aqE3R5M34xishFcL_mM1oqOkic,303
1140
+ merge/resources/crm/resources/contacts/types/__init__.py,sha256=0sbHxB2FUNFr5gxal-k4e8qFPwgX8Cpru7I9MLe1WUQ,1272
1141
1141
  merge/resources/crm/resources/contacts/types/contacts_list_request_expand.py,sha256=3jpmdW9B7lQSmgVL9lK9jBKKsWEMJ5CCWzhj4LMzV3I,715
1142
1142
  merge/resources/crm/resources/contacts/types/contacts_retrieve_request_expand.py,sha256=VpBRp_fbcwD7WwMm0PaRjndExE7Mrryjs9vMkT4J0ak,731
1143
1143
  merge/resources/crm/resources/custom_object_classes/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
@@ -1152,10 +1152,10 @@ merge/resources/crm/resources/delete_account/raw_client.py,sha256=Y7KUkoPjguN2MS
1152
1152
  merge/resources/crm/resources/engagement_types/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1153
1153
  merge/resources/crm/resources/engagement_types/client.py,sha256=gvwLJe_sSFODSbK2hmqkGJ_loG8OguULkVUa3ZcvT5E,18964
1154
1154
  merge/resources/crm/resources/engagement_types/raw_client.py,sha256=wtbMEX5oZIBQqaQFXtfWfOCLWeCrID9OJjeZzaI6iws,22238
1155
- merge/resources/crm/resources/engagements/__init__.py,sha256=f4wnf7KWLkofp6LtPXG4q_aLPyN0Wxz2qUEg5G6dE_U,247
1155
+ merge/resources/crm/resources/engagements/__init__.py,sha256=bgw-Od9HZ7U1K6UMwrw7dwAip_DrWE0Y5_HNSFO0Ilo,1168
1156
1156
  merge/resources/crm/resources/engagements/client.py,sha256=9MUe0twXa4s9WSmpeCLcQCM5oo6_AE1F5Z2EEJ6xtV0,30794
1157
1157
  merge/resources/crm/resources/engagements/raw_client.py,sha256=snyfoYyqgdkvym_atp_-CflTPZh81oaAQMe47WwYoQU,38906
1158
- merge/resources/crm/resources/engagements/types/__init__.py,sha256=1l1BjZWwPAKZwFUmlUQQsDGnhFn6pp3CNtFfNBlcYkc,321
1158
+ merge/resources/crm/resources/engagements/types/__init__.py,sha256=35Ow6ve2QGig9op5rEGnWhSgWjpVYMpXAxY1fENMlBg,1302
1159
1159
  merge/resources/crm/resources/engagements/types/engagements_list_request_expand.py,sha256=VrYBbS0i7FbnpXs6WrsLYgGNACzlCS2xcBAByWqKz28,3563
1160
1160
  merge/resources/crm/resources/engagements/types/engagements_retrieve_request_expand.py,sha256=DCOjQ864L2xCCmTDnJihmvzumIQRYIPQkC8yjXpU__Q,3627
1161
1161
  merge/resources/crm/resources/field_mapping/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
@@ -1167,37 +1167,37 @@ merge/resources/crm/resources/force_resync/raw_client.py,sha256=UCjARSWW7vBheWqt
1167
1167
  merge/resources/crm/resources/generate_key/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1168
1168
  merge/resources/crm/resources/generate_key/client.py,sha256=wHd3njlOs4N8KWU25mQZJ_IP1EQ9waWqZSBWJRK7d9M,3070
1169
1169
  merge/resources/crm/resources/generate_key/raw_client.py,sha256=ZA1IybLsmI4QYLcsE_kJu-YsVsH8HtH8kySWCz6Jv2I,3850
1170
- merge/resources/crm/resources/issues/__init__.py,sha256=8N-ynHIskTDmO3zwQbhyEHy7OTb63CJ_NdZRdLDBOyk,167
1170
+ merge/resources/crm/resources/issues/__init__.py,sha256=fKOCxeYsbS41Y58p81luMrp7eaz6BLop2enXQ3HTvtc,1026
1171
1171
  merge/resources/crm/resources/issues/client.py,sha256=1pNy6N5f9USf0es8igqDomdFDWdD_i54X9hh7RD13Ys,11087
1172
1172
  merge/resources/crm/resources/issues/raw_client.py,sha256=vW7S6ozgCZbh2QfgNOzppoynyPzB6HOMqsNv4sk9QBI,13686
1173
- merge/resources/crm/resources/issues/types/__init__.py,sha256=jjxa8xGa5vTp5-uzIuy8dWJLKrwzX6DnMKPEEkgN4eo,188
1173
+ merge/resources/crm/resources/issues/types/__init__.py,sha256=c7N5BxoJGun2-0qD15I96eDPA36xKVGjt08VJoifSNo,1068
1174
1174
  merge/resources/crm/resources/issues/types/issues_list_request_status.py,sha256=cBbfu1Q5A0ZPOzB7nM_VHRKEJHnxk8lqN-cGmRX6_x4,508
1175
- merge/resources/crm/resources/leads/__init__.py,sha256=oy51fXd9SpRVvxwykYYeqzlt59aqsN63yPuUCTlpUOM,223
1175
+ merge/resources/crm/resources/leads/__init__.py,sha256=RTn8NkpbqRPTa9m4ngIfd-4gV6tuNNuDWprxC_sgHLs,1121
1176
1176
  merge/resources/crm/resources/leads/client.py,sha256=_NQMRFQSt1aG8OZAzElWr3mhkErGvC3ftUlDfb6T8CA,26905
1177
1177
  merge/resources/crm/resources/leads/raw_client.py,sha256=Szduz2OQIG0k3jmTzYTFi_iWnvO4RDFITdIzYge1HHo,32603
1178
- merge/resources/crm/resources/leads/types/__init__.py,sha256=mERzaJmz-BGiAjeqVJCdk_fRVZXJSFOMdiG8nITbcyw,285
1178
+ merge/resources/crm/resources/leads/types/__init__.py,sha256=qgH-pdXm_HrqhrFVtzW8l2XEpUrgpUFAnxE2ZzLsEDA,1242
1179
1179
  merge/resources/crm/resources/leads/types/leads_list_request_expand.py,sha256=S9Bq1uyyKWNK7L_nYXpZv-k8pJKwLYS1uGkPmP5twxI,1851
1180
1180
  merge/resources/crm/resources/leads/types/leads_retrieve_request_expand.py,sha256=M7kM8xBygZskQLrWww81yd6Db_0xq8ZD-eBysbCDk3s,1883
1181
- merge/resources/crm/resources/link_token/__init__.py,sha256=SHuz7ETMvuBzMIPBkqssDkfS9iJSZzYgw7pG6AM6bwk,179
1181
+ merge/resources/crm/resources/link_token/__init__.py,sha256=rFqQQV74iUqiyFV38kXLmMy_6QOH7ifcfn9qSZHnCCI,1044
1182
1182
  merge/resources/crm/resources/link_token/client.py,sha256=jPS82CtvuN9lIt__wBm1WW69xTXTHsYYvSI3o-oMST8,12720
1183
1183
  merge/resources/crm/resources/link_token/raw_client.py,sha256=tkU9dI7DH2O2-kty3bqZQoQeuANQIEiYLgIy564WAHc,13122
1184
- merge/resources/crm/resources/link_token/types/__init__.py,sha256=_DhmnLsRiAcpljK-OPGnDEHf9-FqnWXLVWUL4pOe8-I,207
1184
+ merge/resources/crm/resources/link_token/types/__init__.py,sha256=5u4pc35s4TmNZ4O2Le56xHN3UZGmvlCdr-C3BfxIEOg,1100
1185
1185
  merge/resources/crm/resources/link_token/types/end_user_details_request_language.py,sha256=2BMH_lFqvpT1C4ljoUh5YUm2dgiuLYil6s3_pKcn540,194
1186
- merge/resources/crm/resources/linked_accounts/__init__.py,sha256=jDuRvmYXqKpaHo-Ya2LUjqfqk_rXOUOW7dSpRi-dvqM,187
1186
+ merge/resources/crm/resources/linked_accounts/__init__.py,sha256=qlT602tt9halCaj1oeXa66bVB_5EImiYWgBYpAFP3dY,1056
1187
1187
  merge/resources/crm/resources/linked_accounts/client.py,sha256=BLpcOQZAVp6Bqdg77uaLMahCNT1G6OocaHQQWhDi2Hw,9950
1188
1188
  merge/resources/crm/resources/linked_accounts/raw_client.py,sha256=UP7yc0HUXxQtQQJNy9gOu1fA12_AWaIEv7FD3u90Sw0,10618
1189
- merge/resources/crm/resources/linked_accounts/types/__init__.py,sha256=FjSJvzQG9s-6wuY4YUdmieuUNQvaQXZKDSC138TRMz0,219
1189
+ merge/resources/crm/resources/linked_accounts/types/__init__.py,sha256=xWSbOu74X9JxtUN921_jbVtBDygRoEcDyGXySS5soJc,1126
1190
1190
  merge/resources/crm/resources/linked_accounts/types/linked_accounts_list_request_category.py,sha256=_EGocl5xFPQUgGIidOl4wEewCLbzqWyiXV2PIev7l7M,1354
1191
- merge/resources/crm/resources/notes/__init__.py,sha256=gX5if8grtKNJjmHi5Fw5WsDkvVYt7TBtvjC3CPoBS9Q,223
1191
+ merge/resources/crm/resources/notes/__init__.py,sha256=OMnOxRpqIKdyqpejSgAyM2xNfmrzAoYoTFEEx2rt1qk,1121
1192
1192
  merge/resources/crm/resources/notes/client.py,sha256=rCkIMHXu-K3knDstApZsEOl01CF7WqZCCXhch96M3Tg,26073
1193
1193
  merge/resources/crm/resources/notes/raw_client.py,sha256=o_TbZSINAdhx2Vb3pUgPbRDB14yUroCQOpAtMZJRb0A,31757
1194
- merge/resources/crm/resources/notes/types/__init__.py,sha256=nj0GlmtO70iIc5n73Jfrzf5et4AQULx4Zf0Xb25aXQY,285
1194
+ merge/resources/crm/resources/notes/types/__init__.py,sha256=SvlDe3vERo48YDRIskcUiPG7In_sTo3ugxFAG7OChas,1242
1195
1195
  merge/resources/crm/resources/notes/types/notes_list_request_expand.py,sha256=g6nuqZi67Q3KC-l59T1FGN2OgWc9miVdLkBslv_fLKY,3267
1196
1196
  merge/resources/crm/resources/notes/types/notes_retrieve_request_expand.py,sha256=kSpZeJY7tXGptI38sn6cPmTuCkcAyC2ssSQXEtnikvY,3331
1197
- merge/resources/crm/resources/opportunities/__init__.py,sha256=QW1NlRBYyJPG_Er_rHcyodUu0BIDLYkCtOZJymBbTdw,321
1197
+ merge/resources/crm/resources/opportunities/__init__.py,sha256=oaNh368xIK44GCOBiYKsYvvp1SGcnYg7srqEMJKVFgY,1327
1198
1198
  merge/resources/crm/resources/opportunities/client.py,sha256=QjOScopBc5FeCIL9etmEgyDdaqOm-XYkSpx0g1fsHjg,35200
1199
1199
  merge/resources/crm/resources/opportunities/raw_client.py,sha256=DqijgwFgH9hq7W-LeHFkdtvm1skDpotxYZjlvrXuT5k,43360
1200
- merge/resources/crm/resources/opportunities/types/__init__.py,sha256=TT7TjixR-cnGHPRRIF3czuKdzfpxOXb4eAyMC0Uitqg,445
1200
+ merge/resources/crm/resources/opportunities/types/__init__.py,sha256=KvFUWxlhtuJ2WdLa44S0P4-zTltrt24Qwxp98h2U7Uo,1514
1201
1201
  merge/resources/crm/resources/opportunities/types/opportunities_list_request_expand.py,sha256=3lyV0eut9bYjXHegQqIYxH2ea0qxXASh1LFoN2mApqQ,1475
1202
1202
  merge/resources/crm/resources/opportunities/types/opportunities_list_request_status.py,sha256=bhYxMgDI6DSwYKP9NhUY5qdMNfcZayGAru_yDIUQu5M,665
1203
1203
  merge/resources/crm/resources/opportunities/types/opportunities_retrieve_request_expand.py,sha256=3FVxfe10W_-8wv7IeIf9wuIblDBcDLGMnn60cpzfexs,1507
@@ -1216,10 +1216,10 @@ merge/resources/crm/resources/stages/raw_client.py,sha256=yUePjW64wrdhpu8TVPneDx
1216
1216
  merge/resources/crm/resources/sync_status/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1217
1217
  merge/resources/crm/resources/sync_status/client.py,sha256=j_jb3tCCXisgp1_1MneBqVo56jBWVBXKb3hpTqZE52E,5041
1218
1218
  merge/resources/crm/resources/sync_status/raw_client.py,sha256=sV5IyrbjzFpHSZTPuTYEa9jz5YQQzveRZL7t_WFqAJI,5625
1219
- merge/resources/crm/resources/tasks/__init__.py,sha256=g0IkZEoFIvAiQRniB-Bm3Pfg0RL4VxUSz3hMeXU0D2Y,223
1219
+ merge/resources/crm/resources/tasks/__init__.py,sha256=-pjDR12GQWQ6SUxwJyL0m4Ir85vfDk7M_H4D8x0AJRc,1121
1220
1220
  merge/resources/crm/resources/tasks/client.py,sha256=bPqtw_-l8ftJOUViBQyZhVKPbJC3OmkoIJInAzP0pA8,29286
1221
1221
  merge/resources/crm/resources/tasks/raw_client.py,sha256=HPQrTx6RbR4S_1TsVWXDZi_GIBW_Y7fQQ1cVXixjvIA,37132
1222
- merge/resources/crm/resources/tasks/types/__init__.py,sha256=o6eKt7h_1nuPuflLZDZUpfUHJFLNk5fDbwCc9OIekcs,285
1222
+ merge/resources/crm/resources/tasks/types/__init__.py,sha256=b2nJIVVGxI4jz_6SvOY5ZkSU_BJxjyr8WRKAYI5sJug,1242
1223
1223
  merge/resources/crm/resources/tasks/types/tasks_list_request_expand.py,sha256=GILhwWPY4at7DZOd_i3JlLOpxmZJQl1APMQW98iHU3M,1531
1224
1224
  merge/resources/crm/resources/tasks/types/tasks_retrieve_request_expand.py,sha256=riNnk8Pq06DztZ8115GTbiBboLKTm6H1h3r0fVNHVDQ,1563
1225
1225
  merge/resources/crm/resources/users/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
@@ -1228,7 +1228,7 @@ merge/resources/crm/resources/users/raw_client.py,sha256=f71tBqeXjt8LIBZy-dDv0es
1228
1228
  merge/resources/crm/resources/webhook_receivers/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1229
1229
  merge/resources/crm/resources/webhook_receivers/client.py,sha256=nOYMjrWYuh_0t6g3YMbd_Z8jQduLwiZxT9s_7nsY0Pw,5210
1230
1230
  merge/resources/crm/resources/webhook_receivers/raw_client.py,sha256=8gwIW6-PP1OznLQ7CljYqfwJZGtfj-YnFJWY_wW7DtU,7131
1231
- merge/resources/crm/types/__init__.py,sha256=z2tGrL-ynwW9xsU-i__78JsxzZyPWdZNbgZ9aZwmg44,18720
1231
+ merge/resources/crm/types/__init__.py,sha256=KFN_K-c_fYfFfGhFC85JEvIR6_picFnJ5aynzY4X660,32484
1232
1232
  merge/resources/crm/types/account.py,sha256=Vj-YXi91VdrdeOVKT8LqBWUholVFHXGvTmXC_-8nIxY,3334
1233
1233
  merge/resources/crm/types/account_details.py,sha256=6FjFKxsxftOM5DJIiueXWPtJZkuFMIVSgcB_2UT7t8w,1617
1234
1234
  merge/resources/crm/types/account_details_and_actions.py,sha256=YOQ5tra0HdxLvVJjrveq1eBtwYRbH7df24iXQR6cgro,2018
@@ -1449,20 +1449,20 @@ merge/resources/crm/types/user.py,sha256=Xhu67x4JWYeifdFHpHWwLX479kM4STCKdizt8Oz
1449
1449
  merge/resources/crm/types/validation_problem_source.py,sha256=0ayE7x_uM8R0pzVRz9ZZEc6WS1RUZO3VW3zXjh61RVs,576
1450
1450
  merge/resources/crm/types/warning_validation_problem.py,sha256=RXDtt3t3FwIeGGXkIr_OHOAybDZg44L_5hOqa2sLlJ0,736
1451
1451
  merge/resources/crm/types/webhook_receiver.py,sha256=g4KQnc-vZPJGlXK-OOFIn2WGyTLKoeaq9TPWQ46VwFY,623
1452
- merge/resources/filestorage/__init__.py,sha256=mXgXDWzB4EYts_M6ZgNA-JszTfzj2_C1_5UiPQpNgXE,7636
1453
- merge/resources/filestorage/client.py,sha256=ADJmiKGszeBjzD6WTWwhPpSUJZPl39Y_T3VvLLvKBdM,6824
1452
+ merge/resources/filestorage/__init__.py,sha256=ZVa6lpbCHPmJSMoRjs8cI-h63Bbg-B2j0aEnRck40M8,14530
1453
+ merge/resources/filestorage/client.py,sha256=ghk8yO6ifmPKZzYeSby3nDfie552AMcl3KgEQ9vdNNY,19539
1454
1454
  merge/resources/filestorage/raw_client.py,sha256=PVXeg6hYhZZhtj_lhnch8LsrgH9xYIYyABSbBSWJSWA,420
1455
- merge/resources/filestorage/resources/__init__.py,sha256=sv1IyDe0YePZ-2XxyBMdt30sfJzs54HptXbfbcs6YLI,1644
1455
+ merge/resources/filestorage/resources/__init__.py,sha256=9j1EAueR9hUZ5ew6DTVbPq28D1gpsmH_mjFXjWltk_E,3572
1456
1456
  merge/resources/filestorage/resources/account_details/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1457
1457
  merge/resources/filestorage/resources/account_details/client.py,sha256=RdaNbxon2GHjpNReOJtITaoJEYq3SGOT12UbTBe958U,2817
1458
1458
  merge/resources/filestorage/resources/account_details/raw_client.py,sha256=iaLOYj2_n7y6btxnP4lKMRITyrddVf_qpoP9wowIFmo,3367
1459
1459
  merge/resources/filestorage/resources/account_token/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1460
1460
  merge/resources/filestorage/resources/account_token/client.py,sha256=Z8fnYeLsbZjYqoI6q97Qs1qEdgDlPyI1q8FA105oCfc,3107
1461
1461
  merge/resources/filestorage/resources/account_token/raw_client.py,sha256=TYT01ZLFOcgcASmTv019HOg-dn_9zUWzxkECATWv70s,3653
1462
- merge/resources/filestorage/resources/async_passthrough/__init__.py,sha256=1MpPldWxuhYBQ4thZ3E-Ykjn3NxDsYfdArx3XkPQtdI,185
1462
+ merge/resources/filestorage/resources/async_passthrough/__init__.py,sha256=fKVWk4jeqEvhNZuk0EtXPEFl5uB136ROeo8C6xczZI8,1053
1463
1463
  merge/resources/filestorage/resources/async_passthrough/client.py,sha256=_zwzxb1o1qt-0nYDEbOdpkNQ3UKn8to4m_yPqiwDEWY,6000
1464
1464
  merge/resources/filestorage/resources/async_passthrough/raw_client.py,sha256=reKpCBgWZLdoH2smqpMWPs3BGsEzzDlMmYTKaarsRwY,7379
1465
- merge/resources/filestorage/resources/async_passthrough/types/__init__.py,sha256=0LUj53dTeTqfs50XizOk2ro3RcqGYXn71qHGyZs5Rdg,215
1465
+ merge/resources/filestorage/resources/async_passthrough/types/__init__.py,sha256=xZoQJ90iQWokoy6yfd_9sggRIkFEWCIPhmpoahoo_t0,1113
1466
1466
  merge/resources/filestorage/resources/async_passthrough/types/async_passthrough_retrieve_response.py,sha256=uBMjgizc2Qhm2JA0rRTer6NiRT3sq_v-EyTrzkiQC0g,203
1467
1467
  merge/resources/filestorage/resources/audit_trail/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1468
1468
  merge/resources/filestorage/resources/audit_trail/client.py,sha256=TJG4hCVZ8HeZGx6C3LN84BO6m-s79VBZNs2nlZEUJ5Q,8546
@@ -1479,18 +1479,18 @@ merge/resources/filestorage/resources/drives/raw_client.py,sha256=qPgXArXmY5Naz1
1479
1479
  merge/resources/filestorage/resources/field_mapping/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1480
1480
  merge/resources/filestorage/resources/field_mapping/client.py,sha256=2xQD4zkJTSNBbvM7WRWHnPGvgUoC9ngToWkVMwP4MwU,23562
1481
1481
  merge/resources/filestorage/resources/field_mapping/raw_client.py,sha256=WRc93LhwZTeZJcF2iYtwjDWXax4UjJuqnMtr1eQGRFE,29311
1482
- merge/resources/filestorage/resources/files/__init__.py,sha256=6THf5EGAJ7tVbx_S9_cuD0NXnBQVGx6i9u2CCKxPTdQ,405
1482
+ merge/resources/filestorage/resources/files/__init__.py,sha256=5JtMU8nEKhPVyeFyX4s0hwnL6CA3lvtJOgfCEwjTcOE,1435
1483
1483
  merge/resources/filestorage/resources/files/client.py,sha256=cqi1dtmEHukt7C-w9GANXPWGyFHKD_L13kDuvpb-E0Q,34852
1484
1484
  merge/resources/filestorage/resources/files/raw_client.py,sha256=jpOflZbPbh7NfwIlj5fMRy1qTD7wFWKS3h_M7WP9-pU,44445
1485
- merge/resources/filestorage/resources/files/types/__init__.py,sha256=wDc-L06UTT_rcfmBe5vwpQeofdLQVnPhwVL25_Ep4Mg,548
1485
+ merge/resources/filestorage/resources/files/types/__init__.py,sha256=vuA3gwr0oVMZYRZPq6bwW1xqb9fLtEbAsJ2J0AbgPQE,1680
1486
1486
  merge/resources/filestorage/resources/files/types/files_download_request_meta_list_request_order_by.py,sha256=EbgeEimUUUJtFbjpzIa2j12TfA6Wgs6q8gYO-bCo_pw,1175
1487
1487
  merge/resources/filestorage/resources/files/types/files_list_request_expand.py,sha256=Osq6VmKt1P0g6NGq5P7u6m0Al8u9pXHoKFCCTMaDYV0,1511
1488
1488
  merge/resources/filestorage/resources/files/types/files_list_request_order_by.py,sha256=VmgIr2XJZTSJ9fZnlGY4t8XjeOzoBElzcg2eRGoS8Xo,1080
1489
1489
  merge/resources/filestorage/resources/files/types/files_retrieve_request_expand.py,sha256=P0WRFiimt1N6F1f3iuVNXmYLMa3y6BS15ZKdXobYdIY,1543
1490
- merge/resources/filestorage/resources/folders/__init__.py,sha256=2eY5VQNpe9L1_mZrwdBoQnzupXdMDiaH8kvcUrNKask,231
1490
+ merge/resources/filestorage/resources/folders/__init__.py,sha256=tRr5VDvsnR-bBL0CKSYa9QRgrDGUaVcBeDW6cIFPC68,1144
1491
1491
  merge/resources/filestorage/resources/folders/client.py,sha256=hZXYKWTr-PJ2leuIuBoU-HIKi8_5zP7a1kOslrHnSuk,18494
1492
1492
  merge/resources/filestorage/resources/folders/raw_client.py,sha256=Ebuw6wTo1Fz1HPaGURW37o24f7_jo9FOUH9TNGrG5_E,23133
1493
- merge/resources/filestorage/resources/folders/types/__init__.py,sha256=pXdPNYxDthupCSrM9C9O1fsrV3CBr14nD9Kw7pykLsc,297
1493
+ merge/resources/filestorage/resources/folders/types/__init__.py,sha256=1506XMG2XHRVmSUy-n164c3gQeWjjleuU21rqoV4Hrs,1262
1494
1494
  merge/resources/filestorage/resources/folders/types/folders_list_request_expand.py,sha256=CYoAAnftwM2amoqNX7MLskkQMR0LdR5wIyFI0LiZDxY,1667
1495
1495
  merge/resources/filestorage/resources/folders/types/folders_retrieve_request_expand.py,sha256=J7ndrUkCS95QL7DXd2HPWzuQ2VgQWqEzwem5Pn4eABE,1699
1496
1496
  merge/resources/filestorage/resources/force_resync/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
@@ -1502,18 +1502,18 @@ merge/resources/filestorage/resources/generate_key/raw_client.py,sha256=IgCgZ13p
1502
1502
  merge/resources/filestorage/resources/groups/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1503
1503
  merge/resources/filestorage/resources/groups/client.py,sha256=eNCnYKP8IGGSQdj61BKvSJP6QPBdYDbrZCf_WNEb1L8,12261
1504
1504
  merge/resources/filestorage/resources/groups/raw_client.py,sha256=IZdTiYKFLNMhaIEnWvDWkM5PN_pUv-1uAODo0zl_56E,14504
1505
- merge/resources/filestorage/resources/issues/__init__.py,sha256=8N-ynHIskTDmO3zwQbhyEHy7OTb63CJ_NdZRdLDBOyk,167
1505
+ merge/resources/filestorage/resources/issues/__init__.py,sha256=fKOCxeYsbS41Y58p81luMrp7eaz6BLop2enXQ3HTvtc,1026
1506
1506
  merge/resources/filestorage/resources/issues/client.py,sha256=sXF7InCjG7veFHpJeP05pH8dT0xXSctKWzK8q6vSp_E,11119
1507
1507
  merge/resources/filestorage/resources/issues/raw_client.py,sha256=zrC8mYWdLXFs-m6P9zX7_zVEx4F1Su2OFmYL8SaSFEY,13718
1508
- merge/resources/filestorage/resources/issues/types/__init__.py,sha256=jjxa8xGa5vTp5-uzIuy8dWJLKrwzX6DnMKPEEkgN4eo,188
1508
+ merge/resources/filestorage/resources/issues/types/__init__.py,sha256=c7N5BxoJGun2-0qD15I96eDPA36xKVGjt08VJoifSNo,1068
1509
1509
  merge/resources/filestorage/resources/issues/types/issues_list_request_status.py,sha256=cBbfu1Q5A0ZPOzB7nM_VHRKEJHnxk8lqN-cGmRX6_x4,508
1510
1510
  merge/resources/filestorage/resources/link_token/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1511
1511
  merge/resources/filestorage/resources/link_token/client.py,sha256=xo31dYHCPrJgvauKflQhWCAYGnMP5tCqS4nQqXSoWF0,12649
1512
1512
  merge/resources/filestorage/resources/link_token/raw_client.py,sha256=bwjAQr-86bHEe_i9htZkr2TlS1rtIwIhz1H5-qCcUg0,13035
1513
- merge/resources/filestorage/resources/linked_accounts/__init__.py,sha256=jDuRvmYXqKpaHo-Ya2LUjqfqk_rXOUOW7dSpRi-dvqM,187
1513
+ merge/resources/filestorage/resources/linked_accounts/__init__.py,sha256=qlT602tt9halCaj1oeXa66bVB_5EImiYWgBYpAFP3dY,1056
1514
1514
  merge/resources/filestorage/resources/linked_accounts/client.py,sha256=akawa1Ph8_4Whxvdh-DdGUnoqKaJfD9hZ23p11XVB9Q,9966
1515
1515
  merge/resources/filestorage/resources/linked_accounts/raw_client.py,sha256=1SC0Sko7IcZ68GNaBbnqqe1rTbQ8vI7kbxU2Uwg3jls,10634
1516
- merge/resources/filestorage/resources/linked_accounts/types/__init__.py,sha256=FjSJvzQG9s-6wuY4YUdmieuUNQvaQXZKDSC138TRMz0,219
1516
+ merge/resources/filestorage/resources/linked_accounts/types/__init__.py,sha256=xWSbOu74X9JxtUN921_jbVtBDygRoEcDyGXySS5soJc,1126
1517
1517
  merge/resources/filestorage/resources/linked_accounts/types/linked_accounts_list_request_category.py,sha256=_EGocl5xFPQUgGIidOl4wEewCLbzqWyiXV2PIev7l7M,1354
1518
1518
  merge/resources/filestorage/resources/passthrough/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1519
1519
  merge/resources/filestorage/resources/passthrough/client.py,sha256=g2SR6lWHsWhIJwODAb8oVqIGHggRJwcWbS21rwN32J0,3667
@@ -1533,7 +1533,7 @@ merge/resources/filestorage/resources/users/raw_client.py,sha256=0ZTsI3BcasYNEja
1533
1533
  merge/resources/filestorage/resources/webhook_receivers/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1534
1534
  merge/resources/filestorage/resources/webhook_receivers/client.py,sha256=bECZFxfPLQxTPgiShgbwkj36p-ZD3uQDlgEnAeUASCM,5242
1535
1535
  merge/resources/filestorage/resources/webhook_receivers/raw_client.py,sha256=m8-R2L437nqfeMnKx_hEnKCygzUcZhLMK3wptKZQ4Dg,7163
1536
- merge/resources/filestorage/types/__init__.py,sha256=5Nw7P11k5CUCkLzCKf85UhcB2p7X6GR2CcFeLw7t2w0,9677
1536
+ merge/resources/filestorage/types/__init__.py,sha256=jQnrfIj50_11gOXgRERnMEsD0xn6vYwoi-96P0orPE8,17159
1537
1537
  merge/resources/filestorage/types/account_details.py,sha256=R-2NtN2t8819sbbZpXJ2QFhnedEHDGYL_Ppa1qc3d-E,1586
1538
1538
  merge/resources/filestorage/types/account_details_and_actions.py,sha256=kupTWsY26XB4SlEvIJZcURJ5oXXP52L_9i6AjW9fN3Y,2071
1539
1539
  merge/resources/filestorage/types/account_details_and_actions_integration.py,sha256=CVJIlOAauqdX0qD-njlO7yyJ8t-wiSHFMUQPqFSPyZ8,947
@@ -1649,20 +1649,20 @@ merge/resources/filestorage/types/user.py,sha256=_XHaj1gEOc6j7KYYssBhTqMPOpXoXVS
1649
1649
  merge/resources/filestorage/types/validation_problem_source.py,sha256=0ayE7x_uM8R0pzVRz9ZZEc6WS1RUZO3VW3zXjh61RVs,576
1650
1650
  merge/resources/filestorage/types/warning_validation_problem.py,sha256=RXDtt3t3FwIeGGXkIr_OHOAybDZg44L_5hOqa2sLlJ0,736
1651
1651
  merge/resources/filestorage/types/webhook_receiver.py,sha256=g4KQnc-vZPJGlXK-OOFIn2WGyTLKoeaq9TPWQ46VwFY,623
1652
- merge/resources/hris/__init__.py,sha256=Swv48IPdZxD-KkVmgO0YJFUIqrypto734dD7QVQiph4,15040
1653
- merge/resources/hris/client.py,sha256=EBNJsj08b7M3Ps4_uWpLJv3T5XFwQhqvWNSTnpvwvS8,9555
1652
+ merge/resources/hris/__init__.py,sha256=nYuI8b9JdC9faVq3g_-9jf0ah5tLI0cYEG-mQxgBXkg,27721
1653
+ merge/resources/hris/client.py,sha256=qxsCa_wDvGDYby5OQQlhB1uuJceDRQ9L24VW1O8ibTk,28878
1654
1654
  merge/resources/hris/raw_client.py,sha256=kHhDKYWwOVTqP9-59tv7SdcpgDaM6l5XJWXrSYfX5hs,406
1655
- merge/resources/hris/resources/__init__.py,sha256=r8wBiZzUWP7Z5ulkac6YUfGjCNeFY42LTjUT1YRZv3Q,5109
1655
+ merge/resources/hris/resources/__init__.py,sha256=LatDVy6plCfoTGaeHEj3u7q3lzZv8HWZ1Ba8YiOq17g,9528
1656
1656
  merge/resources/hris/resources/account_details/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1657
1657
  merge/resources/hris/resources/account_details/client.py,sha256=EjZZQ8TJGoczYfncb8h0e52qU5zThpyuTO1daIJTOYM,2803
1658
1658
  merge/resources/hris/resources/account_details/raw_client.py,sha256=rgtNujr3s6glMftRW9-3pjiA1ca__lwkBense38RSpo,3353
1659
1659
  merge/resources/hris/resources/account_token/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1660
1660
  merge/resources/hris/resources/account_token/client.py,sha256=MA2Nh8u54S2cgZnPq8citFqZy4mLVZz100swGaw2a0c,3093
1661
1661
  merge/resources/hris/resources/account_token/raw_client.py,sha256=VW6MqiwyLqCPtHXJR50FDIrZwL4bsOpdvbpVWVyi4ek,3639
1662
- merge/resources/hris/resources/async_passthrough/__init__.py,sha256=1MpPldWxuhYBQ4thZ3E-Ykjn3NxDsYfdArx3XkPQtdI,185
1662
+ merge/resources/hris/resources/async_passthrough/__init__.py,sha256=fKVWk4jeqEvhNZuk0EtXPEFl5uB136ROeo8C6xczZI8,1053
1663
1663
  merge/resources/hris/resources/async_passthrough/client.py,sha256=1pAZXXFvZNd8gwzCS07NVhCheNEoghFFFKyY-60I3hk,5958
1664
1664
  merge/resources/hris/resources/async_passthrough/raw_client.py,sha256=tbi5OIYZ_V6qj1s-e5rbT98NoAWHPYO8aK2Nuy5JLrE,7351
1665
- merge/resources/hris/resources/async_passthrough/types/__init__.py,sha256=0LUj53dTeTqfs50XizOk2ro3RcqGYXn71qHGyZs5Rdg,215
1665
+ merge/resources/hris/resources/async_passthrough/types/__init__.py,sha256=xZoQJ90iQWokoy6yfd_9sggRIkFEWCIPhmpoahoo_t0,1113
1666
1666
  merge/resources/hris/resources/async_passthrough/types/async_passthrough_retrieve_response.py,sha256=uBMjgizc2Qhm2JA0rRTer6NiRT3sq_v-EyTrzkiQC0g,203
1667
1667
  merge/resources/hris/resources/audit_trail/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1668
1668
  merge/resources/hris/resources/audit_trail/client.py,sha256=uqeKAuT9V2ZAvbmXbkvvDNfWNOG4wvZZdxfE7vP_f_Q,8532
@@ -1670,10 +1670,10 @@ merge/resources/hris/resources/audit_trail/raw_client.py,sha256=awnCQFv1dJjNXguM
1670
1670
  merge/resources/hris/resources/available_actions/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1671
1671
  merge/resources/hris/resources/available_actions/client.py,sha256=XXCvPuZsK2oLeDYME2iFJk3UC-TJl1QJsJxVqZDFZc0,2897
1672
1672
  merge/resources/hris/resources/available_actions/raw_client.py,sha256=UH9nOXSOCUu7XFVSiZVScU-fMwOIFmA_VGiBDW2IOEs,3439
1673
- merge/resources/hris/resources/bank_info/__init__.py,sha256=cl9rAAh18gI_rXOXcAxdV1SO4M2Gp-O8r9pCZ94lB1Q,239
1673
+ merge/resources/hris/resources/bank_info/__init__.py,sha256=uMz-b3Nl7qiOcWmMvho1vygL9rumyscl_UjkvYVFjxo,1156
1674
1674
  merge/resources/hris/resources/bank_info/client.py,sha256=Tjqg4XuDAaB7XzzvNRzYdPyy7P1TIPhtLbp7E336l7A,17355
1675
1675
  merge/resources/hris/resources/bank_info/raw_client.py,sha256=MTipRAKC7vx5HMigVAq7A290202SKY5DdhUBQ7LjDaI,19718
1676
- merge/resources/hris/resources/bank_info/types/__init__.py,sha256=a5A8TeGy6CBD8Ub7XzXoWqzJucSojub_UWzescwdMDE,313
1676
+ merge/resources/hris/resources/bank_info/types/__init__.py,sha256=JLIYknNHoRbq1wG8Q-M4P6y_CPDiUX3zUIG8HI5JtE4,1290
1677
1677
  merge/resources/hris/resources/bank_info/types/bank_info_list_request_account_type.py,sha256=fxSAKSl0KIXUSdd25UlyriE96XTYGEJjaulntNbuVzg,529
1678
1678
  merge/resources/hris/resources/bank_info/types/bank_info_list_request_order_by.py,sha256=aOl53Oa0GVRbvR5XgZMgw__pJoPRAdqs0HAXFc5GK1U,728
1679
1679
  merge/resources/hris/resources/benefits/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
@@ -1688,16 +1688,16 @@ merge/resources/hris/resources/delete_account/raw_client.py,sha256=QTvig4eJsnMJ_
1688
1688
  merge/resources/hris/resources/dependents/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1689
1689
  merge/resources/hris/resources/dependents/client.py,sha256=5w5cYKRaCLLLVUqK-02Q0srs-bmRPFsgw1050zd2WNE,12305
1690
1690
  merge/resources/hris/resources/dependents/raw_client.py,sha256=ww1xCMw2H2RzhymJxhHTwWl6-ie1y4jRDz3RyirhCmo,14548
1691
- merge/resources/hris/resources/employee_payroll_runs/__init__.py,sha256=tcSw_WFZYJW1fp0J8owLTrOekvh_Id3N44OaLtwUkYs,279
1691
+ merge/resources/hris/resources/employee_payroll_runs/__init__.py,sha256=enjEMt5A9ijimHvvW3FV28d9u0FE95JxYbmIW8jhpCU,1216
1692
1692
  merge/resources/hris/resources/employee_payroll_runs/client.py,sha256=hnpgR42kyCxbDYA-047NZDykJcykGfdYAe-KI9wCv5U,15749
1693
1693
  merge/resources/hris/resources/employee_payroll_runs/raw_client.py,sha256=45jAB-Hq4PMnD4ixo0WYJkfMAeZn2VL24T2XKe5ntFE,18544
1694
- merge/resources/hris/resources/employee_payroll_runs/types/__init__.py,sha256=Ia4qjGW85A-Z4lTj2MuoAQGDrREoVxY0qijCJmazHXk,373
1694
+ merge/resources/hris/resources/employee_payroll_runs/types/__init__.py,sha256=ZeEr7D3nDe4rIfVID9gxIB587AmDDpOjGsemjGbNqyI,1390
1695
1695
  merge/resources/hris/resources/employee_payroll_runs/types/employee_payroll_runs_list_request_expand.py,sha256=zTW66wQmK-5lNIsfQUewfAcPwPEnLiJmGP4iq7VY-YA,829
1696
1696
  merge/resources/hris/resources/employee_payroll_runs/types/employee_payroll_runs_retrieve_request_expand.py,sha256=Wal9UB9KcMJwpulAHNu_mobxClWUbFjE5GnaWi6fOBg,845
1697
- merge/resources/hris/resources/employees/__init__.py,sha256=8_2NCEuD1AJAAtrhLI7TQ3mtuBNCYvrlkf-Q7BK9klE,763
1697
+ merge/resources/hris/resources/employees/__init__.py,sha256=zzzZvE_HZ5WnMt3mH1HqMF1VAePaByO6sB_6gmJyL98,2032
1698
1698
  merge/resources/hris/resources/employees/client.py,sha256=7DOe89-yIT4N0bgMH_vnxlAn5NsZpMrIVJ0Kw0HwqJ0,33454
1699
1699
  merge/resources/hris/resources/employees/raw_client.py,sha256=D6bsZmJjmioQpIYjWqthfYdkbkxwiHzFzLl9xBU8Blw,39424
1700
- merge/resources/hris/resources/employees/types/__init__.py,sha256=2f2aEF4iSPrhr0aXN3mh13nc-Hxrsq6NNO9kXNQ0rT4,1108
1700
+ merge/resources/hris/resources/employees/types/__init__.py,sha256=ho_jX7f9JoE8V1f7EpPvgU94H1Ep127PxvBSUY4J1Fs,2625
1701
1701
  merge/resources/hris/resources/employees/types/employees_list_request_employment_status.py,sha256=BY67cCw8kzJS1KypaePpcMKyGUVP71w5VwpOiD_GTSM,739
1702
1702
  merge/resources/hris/resources/employees/types/employees_list_request_expand.py,sha256=yIzn_8nt-SkvZt0qIfZro5clWjhqNy6iBf2anA9ixlA,80247
1703
1703
  merge/resources/hris/resources/employees/types/employees_list_request_remote_fields.py,sha256=GiS_bSlwNnKrc90acEXQtxZFfL7GAySwvEamIsViqQw,4067
@@ -1709,10 +1709,10 @@ merge/resources/hris/resources/employees/types/ignore_common_model_request_reaso
1709
1709
  merge/resources/hris/resources/employer_benefits/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1710
1710
  merge/resources/hris/resources/employer_benefits/client.py,sha256=IJ9KsocdGoQgYSZ2b3vaNgMJkfR8MHR4q0EX1qs-okY,11357
1711
1711
  merge/resources/hris/resources/employer_benefits/raw_client.py,sha256=kascshSPNAZK99hpfZCD3t0fsHI3Y9INVolAokcQ2f4,13572
1712
- merge/resources/hris/resources/employments/__init__.py,sha256=yANiOWCfm675FK1owSISv_YLM89uB3y_t3PrB4KCim8,699
1712
+ merge/resources/hris/resources/employments/__init__.py,sha256=Wcb91qIXB76iPslXuz0EbbQMUhK5y2vZQ2740S8uqww,1921
1713
1713
  merge/resources/hris/resources/employments/client.py,sha256=s5o64vxSpRuDCuqpWPqMXDLcQitsCXtaE_BTzBpgizw,16928
1714
1714
  merge/resources/hris/resources/employments/raw_client.py,sha256=qEpt874mH6kWGLpV3cUwltrwVheF5Y3UllhYCfMM_UA,19255
1715
- merge/resources/hris/resources/employments/types/__init__.py,sha256=y87dHc7s-mLaIb8-yiJ85ZC7VH8Ej67j3P_LpdnZFB8,1006
1715
+ merge/resources/hris/resources/employments/types/__init__.py,sha256=sJ5TmViZBM5M8kjPRUU-Sg9uhH8Xrhs6ogcCn8jshvQ,2452
1716
1716
  merge/resources/hris/resources/employments/types/employments_list_request_expand.py,sha256=cWEpvpDaV92QA92gxXC3PJjLv8qMx-YLBv-LzWUC5CM,777
1717
1717
  merge/resources/hris/resources/employments/types/employments_list_request_order_by.py,sha256=E1yhM8n_M3tw6HLxuND6HH6Mhu_Wv51WWM27iccnSdw,707
1718
1718
  merge/resources/hris/resources/employments/types/employments_list_request_remote_fields.py,sha256=xX5n6JuuHYbS5KZnyP6ALCmceYnyIKF0KFDfBrffWH0,4219
@@ -1732,25 +1732,25 @@ merge/resources/hris/resources/generate_key/raw_client.py,sha256=Y2J3etGrrJZs9wA
1732
1732
  merge/resources/hris/resources/groups/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1733
1733
  merge/resources/hris/resources/groups/client.py,sha256=z6t_Wdhd2WMnl5ZY8x96v5rBaYVoNeYbadoTP9V_LY8,15393
1734
1734
  merge/resources/hris/resources/groups/raw_client.py,sha256=oxC7gfXfOVFcR1mZ9FA4GbOR2mgsOV3bIQoDwkhmScM,17706
1735
- merge/resources/hris/resources/issues/__init__.py,sha256=8N-ynHIskTDmO3zwQbhyEHy7OTb63CJ_NdZRdLDBOyk,167
1735
+ merge/resources/hris/resources/issues/__init__.py,sha256=fKOCxeYsbS41Y58p81luMrp7eaz6BLop2enXQ3HTvtc,1026
1736
1736
  merge/resources/hris/resources/issues/client.py,sha256=e-DOmVFHNZ14F7Pq2mLkL0t-FV3dFXWX6u6jhEuFyyI,11091
1737
1737
  merge/resources/hris/resources/issues/raw_client.py,sha256=tlppqFgwdwGM1UzbPWkcSTJdYe7b8bh7mXag-tVK-hs,13690
1738
- merge/resources/hris/resources/issues/types/__init__.py,sha256=jjxa8xGa5vTp5-uzIuy8dWJLKrwzX6DnMKPEEkgN4eo,188
1738
+ merge/resources/hris/resources/issues/types/__init__.py,sha256=c7N5BxoJGun2-0qD15I96eDPA36xKVGjt08VJoifSNo,1068
1739
1739
  merge/resources/hris/resources/issues/types/issues_list_request_status.py,sha256=cBbfu1Q5A0ZPOzB7nM_VHRKEJHnxk8lqN-cGmRX6_x4,508
1740
- merge/resources/hris/resources/link_token/__init__.py,sha256=SHuz7ETMvuBzMIPBkqssDkfS9iJSZzYgw7pG6AM6bwk,179
1740
+ merge/resources/hris/resources/link_token/__init__.py,sha256=rFqQQV74iUqiyFV38kXLmMy_6QOH7ifcfn9qSZHnCCI,1044
1741
1741
  merge/resources/hris/resources/link_token/client.py,sha256=lh8cCO39rTttSX6sWN8EzW1c-f-qpM5jyS8eZKcXk4s,12724
1742
1742
  merge/resources/hris/resources/link_token/raw_client.py,sha256=e_Se2xqtqZCjdAM7VdX_nkuR_3cpTjXTZvWeaHHBUDw,13124
1743
- merge/resources/hris/resources/link_token/types/__init__.py,sha256=_DhmnLsRiAcpljK-OPGnDEHf9-FqnWXLVWUL4pOe8-I,207
1743
+ merge/resources/hris/resources/link_token/types/__init__.py,sha256=5u4pc35s4TmNZ4O2Le56xHN3UZGmvlCdr-C3BfxIEOg,1100
1744
1744
  merge/resources/hris/resources/link_token/types/end_user_details_request_language.py,sha256=2BMH_lFqvpT1C4ljoUh5YUm2dgiuLYil6s3_pKcn540,194
1745
- merge/resources/hris/resources/linked_accounts/__init__.py,sha256=jDuRvmYXqKpaHo-Ya2LUjqfqk_rXOUOW7dSpRi-dvqM,187
1745
+ merge/resources/hris/resources/linked_accounts/__init__.py,sha256=qlT602tt9halCaj1oeXa66bVB_5EImiYWgBYpAFP3dY,1056
1746
1746
  merge/resources/hris/resources/linked_accounts/client.py,sha256=qgJ6Oj9HvZuqSMCSZbzYRuJWbyhYld3kHzADALzCx7Q,9952
1747
1747
  merge/resources/hris/resources/linked_accounts/raw_client.py,sha256=90gn8Co6WkiIOlhLAlEvQsQn0fqv-caXwmqnP1bICKc,10620
1748
- merge/resources/hris/resources/linked_accounts/types/__init__.py,sha256=FjSJvzQG9s-6wuY4YUdmieuUNQvaQXZKDSC138TRMz0,219
1748
+ merge/resources/hris/resources/linked_accounts/types/__init__.py,sha256=xWSbOu74X9JxtUN921_jbVtBDygRoEcDyGXySS5soJc,1126
1749
1749
  merge/resources/hris/resources/linked_accounts/types/linked_accounts_list_request_category.py,sha256=_EGocl5xFPQUgGIidOl4wEewCLbzqWyiXV2PIev7l7M,1354
1750
- merge/resources/hris/resources/locations/__init__.py,sha256=LPqpOwykkC4ereezxGHF-R016DpCoHrOBcY4CKadQi4,541
1750
+ merge/resources/hris/resources/locations/__init__.py,sha256=2j1zOjwxMcR7rMDCtWTT5j5WFBu26n3Ao2kpABE2iF8,1654
1751
1751
  merge/resources/hris/resources/locations/client.py,sha256=maVYDiFngFVmXgMgV3yZnUbTIQm_szhhNmNdFf3Pdxk,15142
1752
1752
  merge/resources/hris/resources/locations/raw_client.py,sha256=jRab9wv1s7yMCIYZm1xQgoM2fs5Oj0q2Pd9NTfGKz-I,17427
1753
- merge/resources/hris/resources/locations/types/__init__.py,sha256=IHW1QcMBuvcPGpImeyWsQpLI8YiwYWdWUNI-8ltscp0,759
1753
+ merge/resources/hris/resources/locations/types/__init__.py,sha256=PuY2SQ6pW9_JEqCBrazFSGQ8kIsK0mr4Y3uvTTn8Jn0,2035
1754
1754
  merge/resources/hris/resources/locations/types/locations_list_request_location_type.py,sha256=GIGtB6d4EHpBpD6Jogl6_m54CKVDNiaQu9NaRAwPRkE,500
1755
1755
  merge/resources/hris/resources/locations/types/locations_list_request_remote_fields.py,sha256=I8ucymk9Pr3JtNTgsqzy8cjXmuo6_ntnCeRvWY25EU8,823
1756
1756
  merge/resources/hris/resources/locations/types/locations_list_request_show_enum_origins.py,sha256=7T33OWeZsvFYkk5brJ7LrLn8c8Kovo4i-K5mcshtHwU,835
@@ -1762,10 +1762,10 @@ merge/resources/hris/resources/passthrough/raw_client.py,sha256=P_1KIMIApFHlIKDG
1762
1762
  merge/resources/hris/resources/pay_groups/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1763
1763
  merge/resources/hris/resources/pay_groups/client.py,sha256=O33FABOurBF7HbxWYH3DUtIkJ9x2ejYhK20Sm_craDE,11145
1764
1764
  merge/resources/hris/resources/pay_groups/raw_client.py,sha256=78ARFnqxEY7NA0T_i7zU9lmklIYcXzZMDRVNuEdjWjU,13360
1765
- merge/resources/hris/resources/payroll_runs/__init__.py,sha256=_SyNb-DiVAOjsRu0D5-MVyyTK8q53B_QRA-CVss2c1s,551
1765
+ merge/resources/hris/resources/payroll_runs/__init__.py,sha256=VVmsjLFa3aIoysqDWYC2VdaCERThPTdSF6C4805--b4,1669
1766
1766
  merge/resources/hris/resources/payroll_runs/client.py,sha256=MWyK3HpvPtq3T4Li9AWKcWob42YfPx1RymhwK_-HQVI,17537
1767
1767
  merge/resources/hris/resources/payroll_runs/raw_client.py,sha256=B2AcYVFFIGXRpIGjP6UF8CpIcluUONgBJGtTr2oWXH8,20346
1768
- merge/resources/hris/resources/payroll_runs/types/__init__.py,sha256=pQZdCwnFF7RoGR379_u21K3_72hSDCbMS7tahfMfF5o,779
1768
+ merge/resources/hris/resources/payroll_runs/types/__init__.py,sha256=tOL2LkiDF0x3y_LlMXWVgr0gecVy8Dbl3Fmdio_X9YE,2070
1769
1769
  merge/resources/hris/resources/payroll_runs/types/payroll_runs_list_request_remote_fields.py,sha256=tPzvNgS7sSipUGe7YwOFPtYGsBsPitK07LymV7ImF_0,801
1770
1770
  merge/resources/hris/resources/payroll_runs/types/payroll_runs_list_request_run_type.py,sha256=xOkhGt0IKPHWpdhUpT24XAb-F7M-8vpH_NDW4BY-WNU,1104
1771
1771
  merge/resources/hris/resources/payroll_runs/types/payroll_runs_list_request_show_enum_origins.py,sha256=VlQD6HaIKjU0rPKdCPtgRug6GopZp2POT_TaYzksz6s,813
@@ -1783,10 +1783,10 @@ merge/resources/hris/resources/sync_status/raw_client.py,sha256=vSlp7BQ_j8iQ8igB
1783
1783
  merge/resources/hris/resources/teams/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1784
1784
  merge/resources/hris/resources/teams/client.py,sha256=QcT7e1OzYi5IPGozudG9Fqeg6mvcHAsOjH24ZcnH4lo,12623
1785
1785
  merge/resources/hris/resources/teams/raw_client.py,sha256=L77DktlGZxvKoZSluh4PovuDQkaA_t1Mv-v4fb4xAsM,14880
1786
- merge/resources/hris/resources/time_off/__init__.py,sha256=mY-f8GoIWWA4gSw3z9ZkSMOaFiAW-2txw663SvCyl5s,713
1786
+ merge/resources/hris/resources/time_off/__init__.py,sha256=373npqA5tPcAdLTNxYJjbk000Sxxokls9hqhBwbpEfg,1957
1787
1787
  merge/resources/hris/resources/time_off/client.py,sha256=LcHv4i2b8_G2LUJ5j1hlJDnhugvAYk66Ce_85-QY2i8,25229
1788
1788
  merge/resources/hris/resources/time_off/raw_client.py,sha256=twUq_FuSVkWavOz_FJkDfk4uYtlZVt1ygO_5sMJwnv0,30440
1789
- merge/resources/hris/resources/time_off/types/__init__.py,sha256=sk1XIoU-5Fn-OFy1Lpi3S5aUVpI5OeJuQ-D7DhHTIeA,1040
1789
+ merge/resources/hris/resources/time_off/types/__init__.py,sha256=TMGcXOXhqsSi4tbg8nTKlqf1_Y1GAiOuHZxNbnUiWJg,2514
1790
1790
  merge/resources/hris/resources/time_off/types/time_off_list_request_expand.py,sha256=V4uU1OzcmJevHXr79BbmiXgKXum2HM7sX0mvvCk2qmA,751
1791
1791
  merge/resources/hris/resources/time_off/types/time_off_list_request_remote_fields.py,sha256=wPHcr3lzxRqG-rOGbTk7TNu3aZt70rNbKVACZTNr9oA,1595
1792
1792
  merge/resources/hris/resources/time_off/types/time_off_list_request_request_type.py,sha256=lCugEjiH31AbVz88j-g89O4DeGcAYTt3NxG9kbj8YTo,1223
@@ -1795,20 +1795,20 @@ merge/resources/hris/resources/time_off/types/time_off_list_request_status.py,sh
1795
1795
  merge/resources/hris/resources/time_off/types/time_off_retrieve_request_expand.py,sha256=9ksUITMqjdJx0y6Gjr8xUBLy6khKkczJtNHbYjJ9aPw,767
1796
1796
  merge/resources/hris/resources/time_off/types/time_off_retrieve_request_remote_fields.py,sha256=ecSF0dKD1s-rCq9_hRNN4xEscNMoiZR_AQb4MoXdlEQ,1627
1797
1797
  merge/resources/hris/resources/time_off/types/time_off_retrieve_request_show_enum_origins.py,sha256=BgO5__bdtrj0oj7Dz3R_IheYB61tEkk_ez7aG5szaak,1651
1798
- merge/resources/hris/resources/time_off_balances/__init__.py,sha256=genzWGPJ4FIK2TTq_jGLa0fDqKeua2SQPMxYcYqqvpA,193
1798
+ merge/resources/hris/resources/time_off_balances/__init__.py,sha256=5IIwDgZxJpEx3_aUX_Vwv9soR03pkvQV75teRPr6xk0,1065
1799
1799
  merge/resources/hris/resources/time_off_balances/client.py,sha256=iXGcqCmBaJ4-C4zGFE-rGWwo5wQylbArLxEDf2kuAQ4,16924
1800
1800
  merge/resources/hris/resources/time_off_balances/raw_client.py,sha256=g7mIaPON8MH-r5cAGsg-N5OYhpt09dNt2M63Ftph3F0,19251
1801
- merge/resources/hris/resources/time_off_balances/types/__init__.py,sha256=0IAJsgrX6q0nFIxhhUeLrWef9nSL_MalkcLimcHGx-M,230
1801
+ merge/resources/hris/resources/time_off_balances/types/__init__.py,sha256=-Ikm3fZt4V5reHI1Sw2r7F_2PHLOwQyBJGqhZxXG1qk,1145
1802
1802
  merge/resources/hris/resources/time_off_balances/types/time_off_balances_list_request_policy_type.py,sha256=b-iMfE9V52sd9Vr_Q86Vo-03tG8UaAeQRdNeWnjBovo,1272
1803
- merge/resources/hris/resources/timesheet_entries/__init__.py,sha256=tGQgVuAV8aDWg1ap1hP4i5boX3BVT7_a7AQHv1hmvao,189
1803
+ merge/resources/hris/resources/timesheet_entries/__init__.py,sha256=V10FKhZJLXWjjTb07Z79CSTz5h7EC8mwqnKgDOHTYlg,1059
1804
1804
  merge/resources/hris/resources/timesheet_entries/client.py,sha256=tUhobAi4TNhIN79Xt_CWMf5dMsbbEVMCbWlDkUXaj6Y,20366
1805
1805
  merge/resources/hris/resources/timesheet_entries/raw_client.py,sha256=u2FAGUXp1lB1JHAvAym5hu_t-tqxiQV4Nkjtc3eRXXE,25477
1806
- merge/resources/hris/resources/timesheet_entries/types/__init__.py,sha256=jNo8ilxJPb61n0TaGEu2SL0TFV-rMIBWmZM9izVkRFc,223
1806
+ merge/resources/hris/resources/timesheet_entries/types/__init__.py,sha256=i_S11tBV65N9ip6DBfjpRoojoXMCrJBxuon4d19KY7w,1133
1807
1807
  merge/resources/hris/resources/timesheet_entries/types/timesheet_entries_list_request_order_by.py,sha256=_5wq5NOCrgq6Vf-yp0glKNwA9dnMCfNDpO-0AxLw4YE,665
1808
1808
  merge/resources/hris/resources/webhook_receivers/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
1809
1809
  merge/resources/hris/resources/webhook_receivers/client.py,sha256=DzdAvXQYy983Hky2E6MYmhMLO4cSOPWFzrXSuNHlaU8,5214
1810
1810
  merge/resources/hris/resources/webhook_receivers/raw_client.py,sha256=bxXoGGRsQTjkKy_-8CnPwpjNo_qhC4QOQ_jFf1h5D1Y,7135
1811
- merge/resources/hris/types/__init__.py,sha256=5qRNlvlf535jhiKbAcsrng4GRic1X1Us7X4j6q5dQ-w,16245
1811
+ merge/resources/hris/types/__init__.py,sha256=amvB0gOsD1Uh4G7z0Dxpq2taJ8yQBbGX_3DWw9wu-q4,28300
1812
1812
  merge/resources/hris/types/account_details.py,sha256=6FjFKxsxftOM5DJIiueXWPtJZkuFMIVSgcB_2UT7t8w,1617
1813
1813
  merge/resources/hris/types/account_details_and_actions.py,sha256=RU9X0RZWWjNaAplYnhNPORHFJ_NQhdFA7h9F9wC3frs,2134
1814
1814
  merge/resources/hris/types/account_details_and_actions_category.py,sha256=bn6Sf9zNV2E_CQZOB6u8f2SrPUAsj9422o_pU6m9tq0,188
@@ -2006,10 +2006,10 @@ merge/resources/hris/types/units_enum.py,sha256=XIZYjVmI4pBqviS_FDF9jQ4pJ8Nmn-K8
2006
2006
  merge/resources/hris/types/validation_problem_source.py,sha256=0ayE7x_uM8R0pzVRz9ZZEc6WS1RUZO3VW3zXjh61RVs,576
2007
2007
  merge/resources/hris/types/warning_validation_problem.py,sha256=RXDtt3t3FwIeGGXkIr_OHOAybDZg44L_5hOqa2sLlJ0,736
2008
2008
  merge/resources/hris/types/webhook_receiver.py,sha256=g4KQnc-vZPJGlXK-OOFIn2WGyTLKoeaq9TPWQ46VwFY,623
2009
- merge/resources/ticketing/__init__.py,sha256=iRyMfo-ULYGOwxPAvgcACZm_BoAfGK7pnmWUYFzkvUI,11406
2010
- merge/resources/ticketing/client.py,sha256=X2IgHmqY0-zjmxH1PKJTsMatF6Gbco5ZDtHgRbcFnW8,8149
2009
+ merge/resources/ticketing/__init__.py,sha256=wi2p8mpxTNxTEQYYgWcb-XWpG34Wj3TMg2gjbnzpkHs,21310
2010
+ merge/resources/ticketing/client.py,sha256=WcbjpQBCYH_qIP7eQ85KkGr7PYVAvY5mOtnN7V0pWKk,24084
2011
2011
  merge/resources/ticketing/raw_client.py,sha256=8HRcdo0adAZI5EQ6hFobLqvdQsox9Qo5n45Q8wF-RZs,416
2012
- merge/resources/ticketing/resources/__init__.py,sha256=lIWCkzpcljfT-xN_czyAVoRVAwQy3Am-cePU398aqBE,2573
2012
+ merge/resources/ticketing/resources/__init__.py,sha256=sBrI7BsMq735oKMF7ZSu3jYAqUfDAgskyK5IQinQiG4,5154
2013
2013
  merge/resources/ticketing/resources/account_details/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2014
2014
  merge/resources/ticketing/resources/account_details/client.py,sha256=2cymTg1GvjMz6tMpPo8YH5qtqEnPuceg490SR64ulBo,2813
2015
2015
  merge/resources/ticketing/resources/account_details/raw_client.py,sha256=9SbWMRxf_RI_RdNe4cJMw9gT1YTcijaHNalSJCOtgo4,3363
@@ -2019,10 +2019,10 @@ merge/resources/ticketing/resources/account_token/raw_client.py,sha256=lHbfOtAoj
2019
2019
  merge/resources/ticketing/resources/accounts/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2020
2020
  merge/resources/ticketing/resources/accounts/client.py,sha256=bi-RVPzDYoZrFtrPxSAzPGnFZaFauXQS7sWFz6f4Ahk,11131
2021
2021
  merge/resources/ticketing/resources/accounts/raw_client.py,sha256=cvi5lvO22buGa3mKI9aM2MrozGH3XWSN2MW97TPGg10,13346
2022
- merge/resources/ticketing/resources/async_passthrough/__init__.py,sha256=1MpPldWxuhYBQ4thZ3E-Ykjn3NxDsYfdArx3XkPQtdI,185
2022
+ merge/resources/ticketing/resources/async_passthrough/__init__.py,sha256=fKVWk4jeqEvhNZuk0EtXPEFl5uB136ROeo8C6xczZI8,1053
2023
2023
  merge/resources/ticketing/resources/async_passthrough/client.py,sha256=E1lI--LpCWjR5DsX3A3KeSLVeOSC_wm-UOd3lZ1Drjg,5988
2024
2024
  merge/resources/ticketing/resources/async_passthrough/raw_client.py,sha256=B2COr6onJKGkNgTFq3p2XlsbCLKZc4rZlbpX09NKlUc,7371
2025
- merge/resources/ticketing/resources/async_passthrough/types/__init__.py,sha256=0LUj53dTeTqfs50XizOk2ro3RcqGYXn71qHGyZs5Rdg,215
2025
+ merge/resources/ticketing/resources/async_passthrough/types/__init__.py,sha256=xZoQJ90iQWokoy6yfd_9sggRIkFEWCIPhmpoahoo_t0,1113
2026
2026
  merge/resources/ticketing/resources/async_passthrough/types/async_passthrough_retrieve_response.py,sha256=uBMjgizc2Qhm2JA0rRTer6NiRT3sq_v-EyTrzkiQC0g,203
2027
2027
  merge/resources/ticketing/resources/attachments/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2028
2028
  merge/resources/ticketing/resources/attachments/client.py,sha256=WGVZBQu32PRSKm4K9uki0FdZppAeUCO_drJhWjRld3E,21096
@@ -2033,15 +2033,15 @@ merge/resources/ticketing/resources/audit_trail/raw_client.py,sha256=3fdCcY8-UOr
2033
2033
  merge/resources/ticketing/resources/available_actions/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2034
2034
  merge/resources/ticketing/resources/available_actions/client.py,sha256=0ZuT2-IouQtS2djKSuMl_kjh384RtNxDJXPjt2vr4q8,2907
2035
2035
  merge/resources/ticketing/resources/available_actions/raw_client.py,sha256=bqHzLRUZnmV-0yc6e3JJQgI68Rf8C1bJItdcQ4SBwfI,3449
2036
- merge/resources/ticketing/resources/collections/__init__.py,sha256=9FYXE9JkIv2tNREKBnQ8xAX_zi1bkOshLoukUUlwvrs,191
2036
+ merge/resources/ticketing/resources/collections/__init__.py,sha256=yzQrpCSEQDsIFmwVIz3dki0SBCv0iF2iO9G4mUCElBY,1062
2037
2037
  merge/resources/ticketing/resources/collections/client.py,sha256=YuX2AN6wVvirEDgnMutP9RkoLgtyHNwqtmnwBTqd_NM,22289
2038
2038
  merge/resources/ticketing/resources/collections/raw_client.py,sha256=QraWZ8Qlz3J9usm2sF1PoIe_OwERyKw7izBI82kP1N8,25531
2039
- merge/resources/ticketing/resources/collections/types/__init__.py,sha256=y55m8uLl_LkMPwHqwX3ANuFOICJr1L8CQd3Jx1abY68,225
2039
+ merge/resources/ticketing/resources/collections/types/__init__.py,sha256=N7Z33MY0yvoP4hp7YILUcy6ZW-5IGLzPW_ZPMHDMmaA,1136
2040
2040
  merge/resources/ticketing/resources/collections/types/collections_viewers_list_request_expand.py,sha256=OJlzFVlszeOLtpbqPGUN2Vndb1Txaooy9GpFIIUAyjA,715
2041
- merge/resources/ticketing/resources/comments/__init__.py,sha256=t1uNXN8isGF9LZJfelcQsfIEghGciFar9QrRS287Svs,235
2041
+ merge/resources/ticketing/resources/comments/__init__.py,sha256=NmHEkKeKhNPwbtx8Rf6sNuSPSVdGhPMoYHI3mZB7KiM,1150
2042
2042
  merge/resources/ticketing/resources/comments/client.py,sha256=dbcWvzm1cpTUOarljbRu3SG_eQydtbo_5cmeecjpz9U,18104
2043
2043
  merge/resources/ticketing/resources/comments/raw_client.py,sha256=R1HMAkvc1U9_n0OoZjBZBYLgvPH3dyQNqSwvY4OMPe4,22885
2044
- merge/resources/ticketing/resources/comments/types/__init__.py,sha256=az0OPm4N7HZofppsXQYbEiJKLP5UUVc8JboNp332uMg,303
2044
+ merge/resources/ticketing/resources/comments/types/__init__.py,sha256=E47ia0Pdd0Ocjwn0Ze01GAB1UImx5QuUtVRf3kHXzQk,1272
2045
2045
  merge/resources/ticketing/resources/comments/types/comments_list_request_expand.py,sha256=nKoGDtfRuefnl4HY6gbLt-31Ma5JuoKwJVOlmszWpkM,1435
2046
2046
  merge/resources/ticketing/resources/comments/types/comments_retrieve_request_expand.py,sha256=uzvlPNelOETowutZAc7eGSzotIOgFW5PdE2PpfxsM64,1467
2047
2047
  merge/resources/ticketing/resources/contacts/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
@@ -2059,28 +2059,28 @@ merge/resources/ticketing/resources/force_resync/raw_client.py,sha256=a_FfyCU-Lg
2059
2059
  merge/resources/ticketing/resources/generate_key/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2060
2060
  merge/resources/ticketing/resources/generate_key/client.py,sha256=E8nSNnqWvCunfpnsxpzHYr_8PwF2wvPfKJks4U3K37s,3082
2061
2061
  merge/resources/ticketing/resources/generate_key/raw_client.py,sha256=2pNt8XeoEfLWWU5AFAfVPAfQUUU9tgkgnC_WtQqjeRA,3862
2062
- merge/resources/ticketing/resources/issues/__init__.py,sha256=8N-ynHIskTDmO3zwQbhyEHy7OTb63CJ_NdZRdLDBOyk,167
2062
+ merge/resources/ticketing/resources/issues/__init__.py,sha256=fKOCxeYsbS41Y58p81luMrp7eaz6BLop2enXQ3HTvtc,1026
2063
2063
  merge/resources/ticketing/resources/issues/client.py,sha256=29DR1tdAo7aQeUFFVii8OJcIXBioruHifiFIZzOoiD8,11111
2064
2064
  merge/resources/ticketing/resources/issues/raw_client.py,sha256=uMCeEUnnnEsq0ZHlpSj4ZFaZCj-HKXzBuAFdxGG0ocU,13710
2065
- merge/resources/ticketing/resources/issues/types/__init__.py,sha256=jjxa8xGa5vTp5-uzIuy8dWJLKrwzX6DnMKPEEkgN4eo,188
2065
+ merge/resources/ticketing/resources/issues/types/__init__.py,sha256=c7N5BxoJGun2-0qD15I96eDPA36xKVGjt08VJoifSNo,1068
2066
2066
  merge/resources/ticketing/resources/issues/types/issues_list_request_status.py,sha256=cBbfu1Q5A0ZPOzB7nM_VHRKEJHnxk8lqN-cGmRX6_x4,508
2067
- merge/resources/ticketing/resources/link_token/__init__.py,sha256=SHuz7ETMvuBzMIPBkqssDkfS9iJSZzYgw7pG6AM6bwk,179
2067
+ merge/resources/ticketing/resources/link_token/__init__.py,sha256=rFqQQV74iUqiyFV38kXLmMy_6QOH7ifcfn9qSZHnCCI,1044
2068
2068
  merge/resources/ticketing/resources/link_token/client.py,sha256=kvwXn7QVvbO6qcEolTXaC-fnlZ4KoT0Ym9T7TSbCtN4,12744
2069
2069
  merge/resources/ticketing/resources/link_token/raw_client.py,sha256=sedkVgAc9VMq4Ri79L2LyKa2g1IpZ6oLaVk0irEURGI,13134
2070
- merge/resources/ticketing/resources/link_token/types/__init__.py,sha256=_DhmnLsRiAcpljK-OPGnDEHf9-FqnWXLVWUL4pOe8-I,207
2070
+ merge/resources/ticketing/resources/link_token/types/__init__.py,sha256=5u4pc35s4TmNZ4O2Le56xHN3UZGmvlCdr-C3BfxIEOg,1100
2071
2071
  merge/resources/ticketing/resources/link_token/types/end_user_details_request_language.py,sha256=2BMH_lFqvpT1C4ljoUh5YUm2dgiuLYil6s3_pKcn540,194
2072
- merge/resources/ticketing/resources/linked_accounts/__init__.py,sha256=jDuRvmYXqKpaHo-Ya2LUjqfqk_rXOUOW7dSpRi-dvqM,187
2072
+ merge/resources/ticketing/resources/linked_accounts/__init__.py,sha256=qlT602tt9halCaj1oeXa66bVB_5EImiYWgBYpAFP3dY,1056
2073
2073
  merge/resources/ticketing/resources/linked_accounts/client.py,sha256=DMUIzAVFBi1IPzEb8NWkTgGhcAk2___7TLvOdUubVmU,9962
2074
2074
  merge/resources/ticketing/resources/linked_accounts/raw_client.py,sha256=voRUR3SlXvSgiRyxFIUkqQAgdcC-cRY_2W9rrKtJcxI,10630
2075
- merge/resources/ticketing/resources/linked_accounts/types/__init__.py,sha256=FjSJvzQG9s-6wuY4YUdmieuUNQvaQXZKDSC138TRMz0,219
2075
+ merge/resources/ticketing/resources/linked_accounts/types/__init__.py,sha256=xWSbOu74X9JxtUN921_jbVtBDygRoEcDyGXySS5soJc,1126
2076
2076
  merge/resources/ticketing/resources/linked_accounts/types/linked_accounts_list_request_category.py,sha256=_EGocl5xFPQUgGIidOl4wEewCLbzqWyiXV2PIev7l7M,1354
2077
2077
  merge/resources/ticketing/resources/passthrough/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2078
2078
  merge/resources/ticketing/resources/passthrough/client.py,sha256=FSsQp_OL2MzbG1riu1sNZy-KKz5ZLIDSCOOC2vsFrVE,3659
2079
2079
  merge/resources/ticketing/resources/passthrough/raw_client.py,sha256=WGJQN555L7wOF1Ic_C_UBKgiGscvS4jrE9aByjUgDSM,4007
2080
- merge/resources/ticketing/resources/projects/__init__.py,sha256=LRSbNx9VmJvVasmgjiEDRLQOuT8U65YWDeHwqAGHz3I,181
2080
+ merge/resources/ticketing/resources/projects/__init__.py,sha256=OxvATZJ1wWiZ_dEZ8Tf5eYz1xVHTsjBUCy4_XzWuHuM,1047
2081
2081
  merge/resources/ticketing/resources/projects/client.py,sha256=KutT0-Cs9lZtaXukyR_C60ivjRO0Fl9vNrIc7NLmc2E,16665
2082
2082
  merge/resources/ticketing/resources/projects/raw_client.py,sha256=U4f4hcaoDaVZegvolIqcpdN912QjV6k4peB1DLt0zvw,19807
2083
- merge/resources/ticketing/resources/projects/types/__init__.py,sha256=IRI_QD9I4Lp_9j1lwZZrQlPSHNZ0Fgsjds5SrEKv-T8,210
2083
+ merge/resources/ticketing/resources/projects/types/__init__.py,sha256=DwSPoXB6HNpBnPWp6wKX--V5jQZD87ceN8Gnjptofcs,1105
2084
2084
  merge/resources/ticketing/resources/projects/types/projects_users_list_request_expand.py,sha256=OLtNd0uNab7xwrGpL3_BZsMZqwIpJEjRt9MahqSmdvs,715
2085
2085
  merge/resources/ticketing/resources/regenerate_key/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2086
2086
  merge/resources/ticketing/resources/regenerate_key/client.py,sha256=rpehVVeXi_U9lnYkgTENR3OaqWQZR7zpDcAe8LopK7g,3108
@@ -2100,10 +2100,10 @@ merge/resources/ticketing/resources/tags/raw_client.py,sha256=6UNvNp-RcwnCpwnnq5
2100
2100
  merge/resources/ticketing/resources/teams/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2101
2101
  merge/resources/ticketing/resources/teams/client.py,sha256=yh5we_JqqPWQJSfoQR30lGq3TsplaCUS_dUQUb1u6uQ,11039
2102
2102
  merge/resources/ticketing/resources/teams/raw_client.py,sha256=ZORtIL48lj-2gLymgrZcVZtgN9nPxMMNbKVIJc81xf4,13254
2103
- merge/resources/ticketing/resources/tickets/__init__.py,sha256=Evh80VX7Dv7Lua_L--PoHF18GkD9tAdyedi_H-4awPY,721
2103
+ merge/resources/ticketing/resources/tickets/__init__.py,sha256=FYL9mDiw0QgkoUN2PcDIXe0j9QytUY3Jsa4vCVCpo9E,1969
2104
2104
  merge/resources/ticketing/resources/tickets/client.py,sha256=w9Q7gFQDupD32B0589IBTQ69H-x8w16HeQaXtCvkfWw,48726
2105
2105
  merge/resources/ticketing/resources/tickets/raw_client.py,sha256=B2uSLBqbEUNSXGp4msPDIWfEw-_Kuqg7m5BLO9x-yu0,59133
2106
- merge/resources/ticketing/resources/tickets/types/__init__.py,sha256=jaNZdkqwlxjuwbqcXkjPsGMkklZ1Y_GuRavULFQjB94,1044
2106
+ merge/resources/ticketing/resources/tickets/types/__init__.py,sha256=1tZDeuby1cP_MxknSPoiJTIPIHkaVLKqPSAOBPiLhak,2518
2107
2107
  merge/resources/ticketing/resources/tickets/types/tickets_list_request_expand.py,sha256=KxXHoeLtnz3GIdhceulanFd62gXIvznYedNVDMIs1jc,86077
2108
2108
  merge/resources/ticketing/resources/tickets/types/tickets_list_request_priority.py,sha256=u1BXrjcjqAv-prW6BJboeyw_CdBsjj6Lo8a8bnnsHA8,810
2109
2109
  merge/resources/ticketing/resources/tickets/types/tickets_list_request_remote_fields.py,sha256=cahTXMHKePRLCWFWPk1e2615gf1HGb2RnuoVBWLCzSo,1635
@@ -2112,16 +2112,16 @@ merge/resources/ticketing/resources/tickets/types/tickets_retrieve_request_expan
2112
2112
  merge/resources/ticketing/resources/tickets/types/tickets_retrieve_request_remote_fields.py,sha256=Z1PZhFnotfrqY3xq996Jtq4KYxuHn2IglVaOVcqk7_E,1667
2113
2113
  merge/resources/ticketing/resources/tickets/types/tickets_retrieve_request_show_enum_origins.py,sha256=Eg18aXyyl2SwNQIc68n0a94YjvfevDP1L93TruNfTYE,1691
2114
2114
  merge/resources/ticketing/resources/tickets/types/tickets_viewers_list_request_expand.py,sha256=GRuiCShPcTOq5znz45swJACE8Xxz9hyVub3z0WggA2U,699
2115
- merge/resources/ticketing/resources/users/__init__.py,sha256=fMq1UtLJT7r8j1FlRlzuSrxumGDjPUCySBwDkT0Kvp8,223
2115
+ merge/resources/ticketing/resources/users/__init__.py,sha256=MfVOB8ryGNwdd67di0URN-8dtuqMUOmCYCQFW7J489k,1121
2116
2116
  merge/resources/ticketing/resources/users/client.py,sha256=zdTubLLyUNo-4ayREez4Nx2kOLU87N107rKANFck37E,13145
2117
2117
  merge/resources/ticketing/resources/users/raw_client.py,sha256=e-ua7fVBygaLMiGcfXMRuCJoQKrmcRzQr2Cl3wBcc5I,15416
2118
- merge/resources/ticketing/resources/users/types/__init__.py,sha256=l1zsl__Lr7LN8qoNLhdTTRNXB0PdBD60ensxvUbwu7s,285
2118
+ merge/resources/ticketing/resources/users/types/__init__.py,sha256=iMjdwDWRm9OARXa4biig3rDY7gNTuvK6luMB7rmyKk0,1242
2119
2119
  merge/resources/ticketing/resources/users/types/users_list_request_expand.py,sha256=CMz1tUJb6xqyu4Iry_KLpza9OtUjMzjdrJxXzM2egrk,683
2120
2120
  merge/resources/ticketing/resources/users/types/users_retrieve_request_expand.py,sha256=01JMChGjlW_drpqy9kADxGsR_DzcVo3_KG8xKMZ_qX8,699
2121
2121
  merge/resources/ticketing/resources/webhook_receivers/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
2122
2122
  merge/resources/ticketing/resources/webhook_receivers/client.py,sha256=pcQtKIFrlloxnbOzBusrSDdMB_AEpHbgmHxbY-zryR0,5234
2123
2123
  merge/resources/ticketing/resources/webhook_receivers/raw_client.py,sha256=z_jWqvk4Q4_GS9t6vrUc1w2fKZKbdFzQkL5R428GhNQ,7155
2124
- merge/resources/ticketing/types/__init__.py,sha256=5Ix9J30RURQGosLJqquHXV89VdiJ_pBwmZKAZfIW0Wg,14270
2124
+ merge/resources/ticketing/types/__init__.py,sha256=bWP3ET1GtSWvke3kMrq_i-UWOuWA-XeIOOZb8WVjBMU,24946
2125
2125
  merge/resources/ticketing/types/account.py,sha256=bpQB4YiNw0po2b5Q8fgWecSNfIQbqHzo_YsR6sheIKY,2160
2126
2126
  merge/resources/ticketing/types/account_details.py,sha256=6FjFKxsxftOM5DJIiueXWPtJZkuFMIVSgcB_2UT7t8w,1617
2127
2127
  merge/resources/ticketing/types/account_details_and_actions.py,sha256=4S2cnfZ4T8vU-rudpCuZWlH23sgL4dk6n9k1ZbzrQt4,2121
@@ -2294,7 +2294,7 @@ merge/resources/ticketing/types/viewer_user.py,sha256=VrOx8xWvNadSYjdErIMg2pPsHV
2294
2294
  merge/resources/ticketing/types/warning_validation_problem.py,sha256=RXDtt3t3FwIeGGXkIr_OHOAybDZg44L_5hOqa2sLlJ0,736
2295
2295
  merge/resources/ticketing/types/webhook_receiver.py,sha256=g4KQnc-vZPJGlXK-OOFIn2WGyTLKoeaq9TPWQ46VwFY,623
2296
2296
  merge/version.py,sha256=kLtHrVsKjnCqlIC_JtezQUWrCPQkXhjpD_2pdlcGh18,84
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,,
2297
+ mergepythonclient-2.3.0.dist-info/LICENSE.md,sha256=WKO7xLnLSUInldiq5i25eVqKAjwIUKenaS4Cgir2Iuw,3275
2298
+ mergepythonclient-2.3.0.dist-info/METADATA,sha256=SPyNvXGOV7JvwKaFthUQvO7D57bY08xVgEYCWH7fDVA,7270
2299
+ mergepythonclient-2.3.0.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
2300
+ mergepythonclient-2.3.0.dist-info/RECORD,,