@mergeapi/merge-node-client 1.0.4 → 1.0.5

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 (4988) hide show
  1. package/Client.d.ts +1 -0
  2. package/README.md +0 -1
  3. package/api/resources/accounting/client/Client.d.ts +1 -0
  4. package/api/resources/accounting/index.d.ts +1 -1
  5. package/api/resources/accounting/index.js +1 -1
  6. package/api/resources/accounting/resources/accountDetails/client/Client.d.ts +4 -0
  7. package/api/resources/accounting/resources/accountDetails/client/Client.js +5 -1
  8. package/api/resources/accounting/resources/accountToken/client/Client.d.ts +1 -0
  9. package/api/resources/accounting/resources/accountToken/client/Client.js +2 -1
  10. package/api/resources/accounting/resources/accountingPeriods/client/Client.d.ts +7 -0
  11. package/api/resources/accounting/resources/accountingPeriods/client/Client.js +17 -10
  12. package/api/resources/accounting/resources/accountingPeriods/client/requests/AccountingPeriodsListRequest.d.ts +4 -0
  13. package/api/resources/accounting/resources/accountingPeriods/client/requests/AccountingPeriodsRetrieveRequest.d.ts +4 -0
  14. package/api/resources/accounting/resources/accounts/client/Client.d.ts +30 -0
  15. package/api/resources/accounting/resources/accounts/client/Client.js +59 -27
  16. package/api/resources/accounting/resources/accounts/client/requests/AccountEndpointRequest.d.ts +13 -0
  17. package/api/resources/accounting/resources/accounts/client/requests/AccountsListRequest.d.ts +8 -0
  18. package/api/resources/accounting/resources/accounts/client/requests/AccountsRetrieveRequest.d.ts +8 -0
  19. package/api/resources/accounting/resources/accounts/index.d.ts +1 -0
  20. package/api/resources/accounting/resources/accounts/index.js +1 -0
  21. package/api/resources/accounting/resources/accounts/types/index.d.ts +4 -0
  22. package/api/resources/accounting/resources/accounts/types/index.js +20 -0
  23. package/api/resources/accounting/resources/addresses/client/Client.d.ts +7 -0
  24. package/api/resources/accounting/resources/addresses/client/Client.js +12 -6
  25. package/api/resources/accounting/resources/addresses/client/requests/AddressesRetrieveRequest.d.ts +7 -0
  26. package/api/resources/accounting/resources/asyncPassthrough/client/Client.d.ts +15 -0
  27. package/api/resources/accounting/resources/asyncPassthrough/client/Client.js +18 -2
  28. package/api/resources/accounting/resources/attachments/client/Client.d.ts +19 -0
  29. package/api/resources/accounting/resources/attachments/client/Client.js +42 -21
  30. package/api/resources/accounting/resources/attachments/client/requests/AccountingAttachmentEndpointRequest.d.ts +10 -0
  31. package/api/resources/accounting/resources/attachments/client/requests/AttachmentsListRequest.d.ts +4 -0
  32. package/api/resources/accounting/resources/attachments/client/requests/AttachmentsRetrieveRequest.d.ts +4 -0
  33. package/api/resources/accounting/resources/auditTrail/client/Client.d.ts +4 -0
  34. package/api/resources/accounting/resources/auditTrail/client/Client.js +12 -9
  35. package/api/resources/accounting/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +4 -0
  36. package/api/resources/accounting/resources/availableActions/client/Client.d.ts +1 -0
  37. package/api/resources/accounting/resources/availableActions/client/Client.js +2 -1
  38. package/api/resources/accounting/resources/balanceSheets/client/Client.d.ts +11 -0
  39. package/api/resources/accounting/resources/balanceSheets/client/Client.js +29 -18
  40. package/api/resources/accounting/resources/balanceSheets/client/requests/BalanceSheetsListRequest.d.ts +6 -0
  41. package/api/resources/accounting/resources/balanceSheets/client/requests/BalanceSheetsRetrieveRequest.d.ts +6 -0
  42. package/api/resources/accounting/resources/cashFlowStatements/client/Client.d.ts +11 -0
  43. package/api/resources/accounting/resources/cashFlowStatements/client/Client.js +29 -18
  44. package/api/resources/accounting/resources/cashFlowStatements/client/requests/CashFlowStatementsListRequest.d.ts +6 -0
  45. package/api/resources/accounting/resources/cashFlowStatements/client/requests/CashFlowStatementsRetrieveRequest.d.ts +6 -0
  46. package/api/resources/accounting/resources/companyInfo/client/Client.d.ts +11 -0
  47. package/api/resources/accounting/resources/companyInfo/client/Client.js +28 -17
  48. package/api/resources/accounting/resources/companyInfo/client/requests/CompanyInfoListRequest.d.ts +6 -0
  49. package/api/resources/accounting/resources/companyInfo/client/requests/CompanyInfoRetrieveRequest.d.ts +6 -0
  50. package/api/resources/accounting/resources/companyInfo/index.d.ts +1 -0
  51. package/api/resources/accounting/resources/companyInfo/index.js +1 -0
  52. package/api/resources/accounting/resources/companyInfo/types/index.d.ts +2 -0
  53. package/api/resources/accounting/resources/companyInfo/types/index.js +18 -0
  54. package/api/resources/accounting/resources/contacts/client/Client.d.ts +34 -0
  55. package/api/resources/accounting/resources/contacts/client/Client.js +65 -29
  56. package/api/resources/accounting/resources/contacts/client/requests/ContactEndpointRequest.d.ts +17 -0
  57. package/api/resources/accounting/resources/contacts/client/requests/ContactsListRequest.d.ts +8 -0
  58. package/api/resources/accounting/resources/contacts/client/requests/ContactsRetrieveRequest.d.ts +8 -0
  59. package/api/resources/accounting/resources/contacts/index.d.ts +1 -0
  60. package/api/resources/accounting/resources/contacts/index.js +1 -0
  61. package/api/resources/accounting/resources/contacts/types/index.d.ts +2 -0
  62. package/api/resources/accounting/resources/contacts/types/index.js +18 -0
  63. package/api/resources/accounting/resources/creditNotes/client/Client.d.ts +15 -0
  64. package/api/resources/accounting/resources/creditNotes/client/Client.js +39 -24
  65. package/api/resources/accounting/resources/creditNotes/client/requests/CreditNotesListRequest.d.ts +8 -0
  66. package/api/resources/accounting/resources/creditNotes/client/requests/CreditNotesRetrieveRequest.d.ts +8 -0
  67. package/api/resources/accounting/resources/creditNotes/index.d.ts +1 -0
  68. package/api/resources/accounting/resources/creditNotes/index.js +1 -0
  69. package/api/resources/accounting/resources/creditNotes/types/index.d.ts +6 -0
  70. package/api/resources/accounting/resources/creditNotes/types/index.js +22 -0
  71. package/api/resources/accounting/resources/deleteAccount/client/Client.d.ts +4 -0
  72. package/api/resources/accounting/resources/deleteAccount/client/Client.js +5 -1
  73. package/api/resources/accounting/resources/expenses/client/Client.d.ts +30 -0
  74. package/api/resources/accounting/resources/expenses/client/Client.js +57 -25
  75. package/api/resources/accounting/resources/expenses/client/requests/ExpenseEndpointRequest.d.ts +17 -0
  76. package/api/resources/accounting/resources/expenses/client/requests/ExpensesListRequest.d.ts +6 -0
  77. package/api/resources/accounting/resources/expenses/client/requests/ExpensesRetrieveRequest.d.ts +6 -0
  78. package/api/resources/accounting/resources/expenses/index.d.ts +1 -0
  79. package/api/resources/accounting/resources/expenses/index.js +1 -0
  80. package/api/resources/accounting/resources/expenses/types/index.d.ts +2 -0
  81. package/api/resources/accounting/resources/expenses/types/index.js +18 -0
  82. package/api/resources/accounting/resources/forceResync/client/Client.d.ts +4 -0
  83. package/api/resources/accounting/resources/forceResync/client/Client.js +5 -1
  84. package/api/resources/accounting/resources/generateKey/client/Client.d.ts +6 -0
  85. package/api/resources/accounting/resources/generateKey/client/Client.js +7 -1
  86. package/api/resources/accounting/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +6 -0
  87. package/api/resources/accounting/resources/incomeStatements/client/Client.d.ts +11 -0
  88. package/api/resources/accounting/resources/incomeStatements/client/Client.js +29 -18
  89. package/api/resources/accounting/resources/incomeStatements/client/requests/IncomeStatementsListRequest.d.ts +6 -0
  90. package/api/resources/accounting/resources/incomeStatements/client/requests/IncomeStatementsRetrieveRequest.d.ts +6 -0
  91. package/api/resources/accounting/resources/index.d.ts +28 -14
  92. package/api/resources/accounting/resources/index.js +29 -15
  93. package/api/resources/accounting/resources/invoices/client/Client.d.ts +34 -0
  94. package/api/resources/accounting/resources/invoices/client/Client.js +67 -31
  95. package/api/resources/accounting/resources/invoices/client/requests/InvoiceEndpointRequest.d.ts +16 -0
  96. package/api/resources/accounting/resources/invoices/client/requests/InvoicesListRequest.d.ts +11 -2
  97. package/api/resources/accounting/resources/invoices/client/requests/InvoicesRetrieveRequest.d.ts +8 -0
  98. package/api/resources/accounting/resources/invoices/index.d.ts +1 -0
  99. package/api/resources/accounting/resources/invoices/index.js +1 -0
  100. package/api/resources/accounting/resources/invoices/types/index.d.ts +3 -0
  101. package/api/resources/accounting/resources/invoices/types/index.js +19 -0
  102. package/api/resources/accounting/resources/issues/client/Client.d.ts +9 -0
  103. package/api/resources/accounting/resources/issues/client/Client.js +26 -17
  104. package/api/resources/accounting/resources/issues/client/requests/IssuesListRequest.d.ts +8 -2
  105. package/api/resources/accounting/resources/issues/index.d.ts +1 -0
  106. package/api/resources/accounting/resources/issues/index.js +1 -0
  107. package/api/resources/accounting/resources/issues/types/index.d.ts +1 -0
  108. package/api/resources/accounting/resources/issues/types/index.js +17 -0
  109. package/api/resources/accounting/resources/items/client/Client.d.ts +15 -0
  110. package/api/resources/accounting/resources/items/client/Client.js +37 -22
  111. package/api/resources/accounting/resources/items/client/requests/ItemsListRequest.d.ts +8 -0
  112. package/api/resources/accounting/resources/items/client/requests/ItemsRetrieveRequest.d.ts +8 -0
  113. package/api/resources/accounting/resources/items/index.d.ts +1 -0
  114. package/api/resources/accounting/resources/items/index.js +1 -0
  115. package/api/resources/accounting/resources/items/types/index.d.ts +2 -0
  116. package/api/resources/accounting/resources/items/types/index.js +18 -0
  117. package/api/resources/accounting/resources/journalEntries/client/Client.d.ts +28 -0
  118. package/api/resources/accounting/resources/journalEntries/client/Client.js +55 -25
  119. package/api/resources/accounting/resources/journalEntries/client/requests/JournalEntriesListRequest.d.ts +6 -0
  120. package/api/resources/accounting/resources/journalEntries/client/requests/JournalEntriesRetrieveRequest.d.ts +6 -0
  121. package/api/resources/accounting/resources/journalEntries/client/requests/JournalEntryEndpointRequest.d.ts +15 -0
  122. package/api/resources/accounting/resources/journalEntries/index.d.ts +1 -0
  123. package/api/resources/accounting/resources/journalEntries/index.js +1 -0
  124. package/api/resources/accounting/resources/journalEntries/types/index.d.ts +2 -0
  125. package/api/resources/accounting/resources/journalEntries/types/index.js +18 -0
  126. package/api/resources/accounting/resources/linkToken/client/Client.d.ts +1 -0
  127. package/api/resources/accounting/resources/linkToken/client/Client.js +2 -1
  128. package/api/resources/accounting/resources/linkedAccounts/client/Client.d.ts +6 -0
  129. package/api/resources/accounting/resources/linkedAccounts/client/Client.js +21 -16
  130. package/api/resources/accounting/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.d.ts +13 -7
  131. package/api/resources/accounting/resources/linkedAccounts/index.d.ts +1 -0
  132. package/api/resources/accounting/resources/linkedAccounts/index.js +1 -0
  133. package/api/resources/accounting/resources/linkedAccounts/types/index.d.ts +1 -0
  134. package/api/resources/accounting/resources/linkedAccounts/types/index.js +17 -0
  135. package/api/resources/accounting/resources/passthrough/client/Client.d.ts +1 -0
  136. package/api/resources/accounting/resources/passthrough/client/Client.js +2 -1
  137. package/api/resources/accounting/resources/payments/client/Client.d.ts +23 -0
  138. package/api/resources/accounting/resources/payments/client/Client.js +52 -27
  139. package/api/resources/accounting/resources/payments/client/requests/PaymentEndpointRequest.d.ts +10 -0
  140. package/api/resources/accounting/resources/payments/client/requests/PaymentsListRequest.d.ts +6 -0
  141. package/api/resources/accounting/resources/payments/client/requests/PaymentsRetrieveRequest.d.ts +6 -0
  142. package/api/resources/accounting/resources/payments/index.d.ts +1 -0
  143. package/api/resources/accounting/resources/payments/index.js +1 -0
  144. package/api/resources/accounting/resources/payments/types/index.d.ts +2 -0
  145. package/api/resources/accounting/resources/payments/types/index.js +18 -0
  146. package/api/resources/accounting/resources/phoneNumbers/client/Client.d.ts +4 -0
  147. package/api/resources/accounting/resources/phoneNumbers/client/Client.js +7 -4
  148. package/api/resources/accounting/resources/phoneNumbers/client/requests/PhoneNumbersRetrieveRequest.d.ts +4 -0
  149. package/api/resources/accounting/resources/purchaseOrders/client/Client.d.ts +34 -0
  150. package/api/resources/accounting/resources/purchaseOrders/client/Client.js +65 -29
  151. package/api/resources/accounting/resources/purchaseOrders/client/requests/PurchaseOrderEndpointRequest.d.ts +17 -0
  152. package/api/resources/accounting/resources/purchaseOrders/client/requests/PurchaseOrdersListRequest.d.ts +8 -0
  153. package/api/resources/accounting/resources/purchaseOrders/client/requests/PurchaseOrdersRetrieveRequest.d.ts +8 -0
  154. package/api/resources/accounting/resources/purchaseOrders/index.d.ts +1 -0
  155. package/api/resources/accounting/resources/purchaseOrders/index.js +1 -0
  156. package/api/resources/accounting/resources/purchaseOrders/types/index.d.ts +2 -0
  157. package/api/resources/accounting/resources/purchaseOrders/types/index.js +18 -0
  158. package/api/resources/accounting/resources/regenerateKey/client/Client.d.ts +6 -0
  159. package/api/resources/accounting/resources/regenerateKey/client/Client.js +7 -1
  160. package/api/resources/accounting/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +6 -0
  161. package/api/resources/accounting/resources/selectiveSync/client/Client.d.ts +14 -0
  162. package/api/resources/accounting/resources/selectiveSync/client/Client.js +23 -8
  163. package/api/resources/accounting/resources/selectiveSync/client/requests/LinkedAccountSelectiveSyncConfigurationListRequest.d.ts +8 -0
  164. package/api/resources/accounting/resources/selectiveSync/client/requests/SelectiveSyncMetaListRequest.d.ts +4 -0
  165. package/api/resources/accounting/resources/syncStatus/client/Client.d.ts +4 -0
  166. package/api/resources/accounting/resources/syncStatus/client/Client.js +8 -5
  167. package/api/resources/accounting/resources/syncStatus/client/requests/SyncStatusListRequest.d.ts +4 -0
  168. package/api/resources/accounting/resources/taxRates/client/Client.d.ts +11 -0
  169. package/api/resources/accounting/resources/taxRates/client/Client.js +29 -18
  170. package/api/resources/accounting/resources/taxRates/client/requests/TaxRatesListRequest.d.ts +6 -0
  171. package/api/resources/accounting/resources/taxRates/client/requests/TaxRatesRetrieveRequest.d.ts +6 -0
  172. package/api/resources/accounting/resources/trackingCategories/client/Client.d.ts +15 -0
  173. package/api/resources/accounting/resources/trackingCategories/client/Client.js +37 -22
  174. package/api/resources/accounting/resources/trackingCategories/client/requests/TrackingCategoriesListRequest.d.ts +8 -0
  175. package/api/resources/accounting/resources/trackingCategories/client/requests/TrackingCategoriesRetrieveRequest.d.ts +8 -0
  176. package/api/resources/accounting/resources/transactions/client/Client.d.ts +11 -0
  177. package/api/resources/accounting/resources/transactions/client/Client.js +31 -20
  178. package/api/resources/accounting/resources/transactions/client/requests/TransactionsListRequest.d.ts +6 -0
  179. package/api/resources/accounting/resources/transactions/client/requests/TransactionsRetrieveRequest.d.ts +6 -0
  180. package/api/resources/accounting/resources/transactions/index.d.ts +1 -0
  181. package/api/resources/accounting/resources/transactions/index.js +1 -0
  182. package/api/resources/accounting/resources/transactions/types/index.d.ts +2 -0
  183. package/api/resources/accounting/resources/transactions/types/index.js +18 -0
  184. package/api/resources/accounting/resources/vendorCredits/client/Client.d.ts +11 -0
  185. package/api/resources/accounting/resources/vendorCredits/client/Client.js +31 -20
  186. package/api/resources/accounting/resources/vendorCredits/client/requests/VendorCreditsListRequest.d.ts +6 -0
  187. package/api/resources/accounting/resources/vendorCredits/client/requests/VendorCreditsRetrieveRequest.d.ts +6 -0
  188. package/api/resources/accounting/resources/vendorCredits/index.d.ts +1 -0
  189. package/api/resources/accounting/resources/vendorCredits/index.js +1 -0
  190. package/api/resources/accounting/resources/vendorCredits/types/index.d.ts +2 -0
  191. package/api/resources/accounting/resources/vendorCredits/types/index.js +18 -0
  192. package/api/resources/accounting/resources/webhookReceivers/client/Client.d.ts +4 -0
  193. package/api/resources/accounting/resources/webhookReceivers/client/Client.js +7 -2
  194. package/api/resources/accounting/types/Account.d.ts +323 -319
  195. package/api/resources/accounting/types/AccountClassification.d.ts +5 -5
  196. package/api/resources/accounting/types/AccountCurrency.d.ts +306 -306
  197. package/api/resources/accounting/types/AccountDetailsAndActions.d.ts +3 -0
  198. package/api/resources/accounting/types/AccountDetailsAndActionsStatusEnum.d.ts +3 -3
  199. package/api/resources/accounting/types/AccountRequest.d.ts +323 -319
  200. package/api/resources/accounting/types/AccountRequestClassification.d.ts +5 -5
  201. package/api/resources/accounting/types/AccountRequestCurrency.d.ts +306 -306
  202. package/api/resources/accounting/types/AccountRequestStatus.d.ts +3 -3
  203. package/api/resources/accounting/types/AccountStatus.d.ts +3 -3
  204. package/api/resources/accounting/types/AccountStatusEnum.d.ts +3 -3
  205. package/api/resources/accounting/types/AccountingAttachment.d.ts +3 -0
  206. package/api/resources/accounting/types/AccountingAttachmentRequest.d.ts +3 -0
  207. package/api/resources/accounting/types/AccountingPeriod.d.ts +3 -0
  208. package/api/resources/accounting/types/AccountingPeriodStatusEnum.d.ts +2 -2
  209. package/api/resources/accounting/types/AccountingPhoneNumber.d.ts +3 -0
  210. package/api/resources/accounting/types/AccountingPhoneNumberRequest.d.ts +3 -0
  211. package/api/resources/accounting/types/Address.d.ts +254 -251
  212. package/api/resources/accounting/types/AddressCountry.d.ts +249 -249
  213. package/api/resources/accounting/types/AddressRequest.d.ts +254 -251
  214. package/api/resources/accounting/types/AddressRequestCountry.d.ts +249 -249
  215. package/api/resources/accounting/types/AddressRequestType.d.ts +2 -2
  216. package/api/resources/accounting/types/AddressType.d.ts +2 -2
  217. package/api/resources/accounting/types/AddressTypeEnum.d.ts +2 -2
  218. package/api/resources/accounting/types/AuditLogEvent.d.ts +36 -36
  219. package/api/resources/accounting/types/AuditLogEventEventType.d.ts +30 -30
  220. package/api/resources/accounting/types/AuditLogEventRole.d.ts +6 -6
  221. package/api/resources/accounting/types/AvailableActions.d.ts +3 -0
  222. package/api/resources/accounting/types/BalanceSheet.d.ts +309 -306
  223. package/api/resources/accounting/types/BalanceSheetCurrency.d.ts +306 -306
  224. package/api/resources/accounting/types/CashFlowStatement.d.ts +309 -306
  225. package/api/resources/accounting/types/CashFlowStatementCurrency.d.ts +306 -306
  226. package/api/resources/accounting/types/CategoriesEnum.d.ts +7 -7
  227. package/api/resources/accounting/types/CategoryEnum.d.ts +7 -7
  228. package/api/resources/accounting/types/CategoryTypeEnum.d.ts +2 -2
  229. package/api/resources/accounting/types/ClassificationEnum.d.ts +5 -5
  230. package/api/resources/accounting/types/CompanyInfo.d.ts +309 -306
  231. package/api/resources/accounting/types/CompanyInfoCurrency.d.ts +306 -306
  232. package/api/resources/accounting/types/ConditionSchema.d.ts +8 -8
  233. package/api/resources/accounting/types/ConditionSchemaConditionType.d.ts +7 -7
  234. package/api/resources/accounting/types/ConditionTypeEnum.d.ts +7 -7
  235. package/api/resources/accounting/types/Contact.d.ts +8 -4
  236. package/api/resources/accounting/types/ContactRequest.d.ts +8 -4
  237. package/api/resources/accounting/types/ContactRequestStatus.d.ts +2 -2
  238. package/api/resources/accounting/types/ContactStatus.d.ts +2 -2
  239. package/api/resources/accounting/types/CountryEnum.d.ts +249 -249
  240. package/api/resources/accounting/types/CreditNote.d.ts +313 -310
  241. package/api/resources/accounting/types/CreditNoteCurrency.d.ts +306 -306
  242. package/api/resources/accounting/types/CreditNoteStatus.d.ts +3 -3
  243. package/api/resources/accounting/types/CreditNoteStatusEnum.d.ts +3 -3
  244. package/api/resources/accounting/types/CurrencyEnum.d.ts +306 -306
  245. package/api/resources/accounting/types/DataPassthroughRequest.d.ts +3 -0
  246. package/api/resources/accounting/types/EnabledActionsEnum.d.ts +2 -2
  247. package/api/resources/accounting/types/EncodingEnum.d.ts +3 -3
  248. package/api/resources/accounting/types/EventTypeEnum.d.ts +30 -30
  249. package/api/resources/accounting/types/Expense.d.ts +309 -306
  250. package/api/resources/accounting/types/ExpenseCurrency.d.ts +306 -306
  251. package/api/resources/accounting/types/ExpenseLine.d.ts +309 -306
  252. package/api/resources/accounting/types/ExpenseLineCurrency.d.ts +306 -306
  253. package/api/resources/accounting/types/ExpenseLineRequest.d.ts +309 -306
  254. package/api/resources/accounting/types/ExpenseLineRequestCurrency.d.ts +306 -306
  255. package/api/resources/accounting/types/ExpenseRequest.d.ts +309 -306
  256. package/api/resources/accounting/types/ExpenseRequestCurrency.d.ts +306 -306
  257. package/api/resources/accounting/types/IncomeStatement.d.ts +309 -306
  258. package/api/resources/accounting/types/IncomeStatementCurrency.d.ts +306 -306
  259. package/api/resources/accounting/types/Invoice.d.ts +317 -314
  260. package/api/resources/accounting/types/InvoiceCurrency.d.ts +306 -306
  261. package/api/resources/accounting/types/InvoiceLineItem.d.ts +309 -306
  262. package/api/resources/accounting/types/InvoiceLineItemCurrency.d.ts +306 -306
  263. package/api/resources/accounting/types/InvoiceLineItemRequest.d.ts +309 -306
  264. package/api/resources/accounting/types/InvoiceLineItemRequestCurrency.d.ts +306 -306
  265. package/api/resources/accounting/types/InvoiceRequest.d.ts +316 -314
  266. package/api/resources/accounting/types/InvoiceRequestCurrency.d.ts +306 -306
  267. package/api/resources/accounting/types/InvoiceRequestStatus.d.ts +6 -6
  268. package/api/resources/accounting/types/InvoiceRequestType.d.ts +2 -2
  269. package/api/resources/accounting/types/InvoiceStatus.d.ts +6 -6
  270. package/api/resources/accounting/types/InvoiceStatusEnum.d.ts +6 -6
  271. package/api/resources/accounting/types/InvoiceType.d.ts +2 -2
  272. package/api/resources/accounting/types/InvoiceTypeEnum.d.ts +2 -2
  273. package/api/resources/accounting/types/Issue.d.ts +2 -2
  274. package/api/resources/accounting/types/IssueStatus.d.ts +2 -2
  275. package/api/resources/accounting/types/IssueStatusEnum.d.ts +2 -2
  276. package/api/resources/accounting/types/Item.d.ts +5 -2
  277. package/api/resources/accounting/types/ItemStatus.d.ts +2 -2
  278. package/api/resources/accounting/types/JournalEntry.d.ts +311 -308
  279. package/api/resources/accounting/types/JournalEntryCurrency.d.ts +306 -306
  280. package/api/resources/accounting/types/JournalEntryPostingStatus.d.ts +2 -2
  281. package/api/resources/accounting/types/JournalEntryRequest.d.ts +311 -308
  282. package/api/resources/accounting/types/JournalEntryRequestCurrency.d.ts +306 -306
  283. package/api/resources/accounting/types/JournalEntryRequestPostingStatus.d.ts +2 -2
  284. package/api/resources/accounting/types/JournalLine.d.ts +309 -306
  285. package/api/resources/accounting/types/JournalLineCurrency.d.ts +306 -306
  286. package/api/resources/accounting/types/JournalLineRequest.d.ts +309 -306
  287. package/api/resources/accounting/types/JournalLineRequestCurrency.d.ts +306 -306
  288. package/api/resources/accounting/types/LinkedAccountCondition.d.ts +1 -1
  289. package/api/resources/accounting/types/MethodEnum.d.ts +7 -7
  290. package/api/resources/accounting/types/ModelOperation.d.ts +3 -0
  291. package/api/resources/accounting/types/MultipartFormFieldRequest.d.ts +6 -3
  292. package/api/resources/accounting/types/MultipartFormFieldRequestEncoding.d.ts +3 -3
  293. package/api/resources/accounting/types/Payment.d.ts +309 -306
  294. package/api/resources/accounting/types/PaymentCurrency.d.ts +306 -306
  295. package/api/resources/accounting/types/PaymentLineItem.d.ts +3 -0
  296. package/api/resources/accounting/types/PaymentLineItemRequest.d.ts +3 -0
  297. package/api/resources/accounting/types/PaymentRequest.d.ts +309 -306
  298. package/api/resources/accounting/types/PaymentRequestCurrency.d.ts +306 -306
  299. package/api/resources/accounting/types/PostingStatusEnum.d.ts +2 -2
  300. package/api/resources/accounting/types/PurchaseOrder.d.ts +315 -312
  301. package/api/resources/accounting/types/PurchaseOrderCurrency.d.ts +306 -306
  302. package/api/resources/accounting/types/PurchaseOrderLineItem.d.ts +309 -306
  303. package/api/resources/accounting/types/PurchaseOrderLineItemCurrency.d.ts +306 -306
  304. package/api/resources/accounting/types/PurchaseOrderLineItemRequest.d.ts +309 -306
  305. package/api/resources/accounting/types/PurchaseOrderLineItemRequestCurrency.d.ts +306 -306
  306. package/api/resources/accounting/types/PurchaseOrderRequest.d.ts +314 -311
  307. package/api/resources/accounting/types/PurchaseOrderRequestCurrency.d.ts +306 -306
  308. package/api/resources/accounting/types/PurchaseOrderRequestStatus.d.ts +5 -5
  309. package/api/resources/accounting/types/PurchaseOrderStatus.d.ts +5 -5
  310. package/api/resources/accounting/types/PurchaseOrderStatusEnum.d.ts +5 -5
  311. package/api/resources/accounting/types/RemoteKey.d.ts +3 -0
  312. package/api/resources/accounting/types/RemoteResponse.d.ts +3 -0
  313. package/api/resources/accounting/types/ReportItem.d.ts +3 -0
  314. package/api/resources/accounting/types/RequestFormatEnum.d.ts +3 -3
  315. package/api/resources/accounting/types/ResponseTypeEnum.d.ts +2 -2
  316. package/api/resources/accounting/types/RoleEnum.d.ts +6 -6
  317. package/api/resources/accounting/types/SelectiveSyncConfigurationsUsageEnum.d.ts +2 -2
  318. package/api/resources/accounting/types/Status7D1Enum.d.ts +2 -2
  319. package/api/resources/accounting/types/SyncStatus.d.ts +3 -0
  320. package/api/resources/accounting/types/SyncStatusStatusEnum.d.ts +6 -6
  321. package/api/resources/accounting/types/TaxRate.d.ts +3 -0
  322. package/api/resources/accounting/types/TrackingCategory.d.ts +7 -4
  323. package/api/resources/accounting/types/TrackingCategoryCategoryType.d.ts +2 -2
  324. package/api/resources/accounting/types/TrackingCategoryStatus.d.ts +2 -2
  325. package/api/resources/accounting/types/Transaction.d.ts +317 -313
  326. package/api/resources/accounting/types/TransactionCurrency.d.ts +306 -306
  327. package/api/resources/accounting/types/TransactionLineItem.d.ts +309 -306
  328. package/api/resources/accounting/types/TransactionLineItemCurrency.d.ts +306 -306
  329. package/api/resources/accounting/types/VendorCredit.d.ts +310 -307
  330. package/api/resources/accounting/types/VendorCreditCurrency.d.ts +306 -306
  331. package/api/resources/accounting/types/VendorCreditLine.d.ts +3 -0
  332. package/api/resources/accounting/types/index.d.ts +43 -76
  333. package/api/resources/accounting/types/index.js +43 -76
  334. package/api/resources/ats/client/Client.d.ts +1 -0
  335. package/api/resources/ats/index.d.ts +1 -1
  336. package/api/resources/ats/index.js +1 -1
  337. package/api/resources/ats/resources/accountDetails/client/Client.d.ts +4 -0
  338. package/api/resources/ats/resources/accountDetails/client/Client.js +5 -1
  339. package/api/resources/ats/resources/accountToken/client/Client.d.ts +1 -0
  340. package/api/resources/ats/resources/accountToken/client/Client.js +2 -1
  341. package/api/resources/ats/resources/activities/client/Client.d.ts +18 -0
  342. package/api/resources/ats/resources/activities/client/Client.js +47 -27
  343. package/api/resources/ats/resources/activities/client/requests/ActivitiesListRequest.d.ts +8 -0
  344. package/api/resources/ats/resources/activities/client/requests/ActivitiesRetrieveRequest.d.ts +8 -0
  345. package/api/resources/ats/resources/activities/index.d.ts +1 -0
  346. package/api/resources/ats/resources/activities/index.js +1 -0
  347. package/api/resources/ats/resources/activities/types/index.d.ts +4 -0
  348. package/api/resources/ats/resources/activities/types/index.js +20 -0
  349. package/api/resources/ats/resources/applications/client/Client.d.ts +17 -0
  350. package/api/resources/ats/resources/applications/client/Client.js +54 -34
  351. package/api/resources/ats/resources/applications/client/requests/ApplicationsListRequest.d.ts +6 -0
  352. package/api/resources/ats/resources/applications/client/requests/ApplicationsMetaPostRetrieveRequest.d.ts +4 -0
  353. package/api/resources/ats/resources/applications/client/requests/ApplicationsRetrieveRequest.d.ts +6 -0
  354. package/api/resources/ats/resources/applications/client/requests/UpdateApplicationStageRequest.d.ts +4 -0
  355. package/api/resources/ats/resources/applications/index.d.ts +1 -0
  356. package/api/resources/ats/resources/applications/index.js +1 -0
  357. package/api/resources/ats/resources/applications/types/index.d.ts +2 -0
  358. package/api/resources/ats/resources/applications/types/index.js +18 -0
  359. package/api/resources/ats/resources/asyncPassthrough/client/Client.d.ts +15 -0
  360. package/api/resources/ats/resources/asyncPassthrough/client/Client.js +18 -2
  361. package/api/resources/ats/resources/attachments/client/Client.d.ts +18 -0
  362. package/api/resources/ats/resources/attachments/client/Client.js +47 -27
  363. package/api/resources/ats/resources/attachments/client/requests/AttachmentsListRequest.d.ts +8 -0
  364. package/api/resources/ats/resources/attachments/client/requests/AttachmentsRetrieveRequest.d.ts +8 -0
  365. package/api/resources/ats/resources/auditTrail/client/Client.d.ts +4 -0
  366. package/api/resources/ats/resources/auditTrail/client/Client.js +12 -9
  367. package/api/resources/ats/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +4 -0
  368. package/api/resources/ats/resources/availableActions/client/Client.d.ts +1 -0
  369. package/api/resources/ats/resources/availableActions/client/Client.js +2 -1
  370. package/api/resources/ats/resources/candidates/client/Client.d.ts +23 -0
  371. package/api/resources/ats/resources/candidates/client/Client.js +60 -32
  372. package/api/resources/ats/resources/candidates/client/requests/CandidatesListRequest.d.ts +6 -0
  373. package/api/resources/ats/resources/candidates/client/requests/CandidatesRetrieveRequest.d.ts +6 -0
  374. package/api/resources/ats/resources/candidates/client/requests/IgnoreCommonModelRequest.d.ts +7 -0
  375. package/api/resources/ats/resources/candidates/index.d.ts +1 -0
  376. package/api/resources/ats/resources/candidates/index.js +1 -0
  377. package/api/resources/ats/resources/candidates/types/index.d.ts +2 -0
  378. package/api/resources/ats/resources/candidates/types/index.js +18 -0
  379. package/api/resources/ats/resources/deleteAccount/client/Client.d.ts +4 -0
  380. package/api/resources/ats/resources/deleteAccount/client/Client.js +5 -1
  381. package/api/resources/ats/resources/departments/client/Client.d.ts +7 -0
  382. package/api/resources/ats/resources/departments/client/Client.js +22 -15
  383. package/api/resources/ats/resources/departments/client/requests/DepartmentsListRequest.d.ts +4 -0
  384. package/api/resources/ats/resources/departments/client/requests/DepartmentsRetrieveRequest.d.ts +4 -0
  385. package/api/resources/ats/resources/eeocs/client/Client.d.ts +15 -0
  386. package/api/resources/ats/resources/eeocs/client/Client.js +37 -22
  387. package/api/resources/ats/resources/eeocs/client/requests/EeocsListRequest.d.ts +8 -0
  388. package/api/resources/ats/resources/eeocs/client/requests/EeocsRetrieveRequest.d.ts +8 -0
  389. package/api/resources/ats/resources/eeocs/index.d.ts +1 -0
  390. package/api/resources/ats/resources/eeocs/index.js +1 -0
  391. package/api/resources/ats/resources/eeocs/types/index.d.ts +4 -0
  392. package/api/resources/ats/resources/eeocs/types/index.js +20 -0
  393. package/api/resources/ats/resources/forceResync/client/Client.d.ts +4 -0
  394. package/api/resources/ats/resources/forceResync/client/Client.js +5 -1
  395. package/api/resources/ats/resources/generateKey/client/Client.d.ts +6 -0
  396. package/api/resources/ats/resources/generateKey/client/Client.js +7 -1
  397. package/api/resources/ats/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +6 -0
  398. package/api/resources/ats/resources/index.d.ts +20 -10
  399. package/api/resources/ats/resources/index.js +21 -11
  400. package/api/resources/ats/resources/interviews/client/Client.d.ts +18 -0
  401. package/api/resources/ats/resources/interviews/client/Client.js +50 -30
  402. package/api/resources/ats/resources/interviews/client/requests/InterviewsListRequest.d.ts +8 -0
  403. package/api/resources/ats/resources/interviews/client/requests/InterviewsRetrieveRequest.d.ts +8 -0
  404. package/api/resources/ats/resources/interviews/index.d.ts +1 -0
  405. package/api/resources/ats/resources/interviews/index.js +1 -0
  406. package/api/resources/ats/resources/interviews/types/index.d.ts +2 -0
  407. package/api/resources/ats/resources/interviews/types/index.js +18 -0
  408. package/api/resources/ats/resources/issues/client/Client.d.ts +9 -0
  409. package/api/resources/ats/resources/issues/client/Client.js +26 -17
  410. package/api/resources/ats/resources/issues/client/requests/IssuesListRequest.d.ts +8 -2
  411. package/api/resources/ats/resources/issues/index.d.ts +1 -0
  412. package/api/resources/ats/resources/issues/index.js +1 -0
  413. package/api/resources/ats/resources/issues/types/index.d.ts +1 -0
  414. package/api/resources/ats/resources/issues/types/index.js +17 -0
  415. package/api/resources/ats/resources/jobInterviewStages/client/Client.d.ts +11 -0
  416. package/api/resources/ats/resources/jobInterviewStages/client/Client.js +29 -18
  417. package/api/resources/ats/resources/jobInterviewStages/client/requests/JobInterviewStagesListRequest.d.ts +6 -0
  418. package/api/resources/ats/resources/jobInterviewStages/client/requests/JobInterviewStagesRetrieveRequest.d.ts +6 -0
  419. package/api/resources/ats/resources/jobs/client/Client.d.ts +21 -0
  420. package/api/resources/ats/resources/jobs/client/Client.js +53 -31
  421. package/api/resources/ats/resources/jobs/client/requests/JobsListRequest.d.ts +14 -5
  422. package/api/resources/ats/resources/jobs/client/requests/JobsRetrieveRequest.d.ts +8 -0
  423. package/api/resources/ats/resources/jobs/client/requests/JobsScreeningQuestionsListRequest.d.ts +6 -0
  424. package/api/resources/ats/resources/jobs/index.d.ts +1 -0
  425. package/api/resources/ats/resources/jobs/index.js +1 -0
  426. package/api/resources/ats/resources/jobs/types/index.d.ts +4 -0
  427. package/api/resources/ats/resources/jobs/types/index.js +20 -0
  428. package/api/resources/ats/resources/linkToken/client/Client.d.ts +1 -0
  429. package/api/resources/ats/resources/linkToken/client/Client.js +2 -1
  430. package/api/resources/ats/resources/linkedAccounts/client/Client.d.ts +6 -0
  431. package/api/resources/ats/resources/linkedAccounts/client/Client.js +21 -16
  432. package/api/resources/ats/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.d.ts +13 -7
  433. package/api/resources/ats/resources/linkedAccounts/index.d.ts +1 -0
  434. package/api/resources/ats/resources/linkedAccounts/index.js +1 -0
  435. package/api/resources/ats/resources/linkedAccounts/types/index.d.ts +1 -0
  436. package/api/resources/ats/resources/linkedAccounts/types/index.js +17 -0
  437. package/api/resources/ats/resources/offers/client/Client.d.ts +15 -0
  438. package/api/resources/ats/resources/offers/client/Client.js +38 -23
  439. package/api/resources/ats/resources/offers/client/requests/OffersListRequest.d.ts +8 -0
  440. package/api/resources/ats/resources/offers/client/requests/OffersRetrieveRequest.d.ts +8 -0
  441. package/api/resources/ats/resources/offers/index.d.ts +1 -0
  442. package/api/resources/ats/resources/offers/index.js +1 -0
  443. package/api/resources/ats/resources/offers/types/index.d.ts +2 -0
  444. package/api/resources/ats/resources/offers/types/index.js +18 -0
  445. package/api/resources/ats/resources/offices/client/Client.d.ts +7 -0
  446. package/api/resources/ats/resources/offices/client/Client.js +22 -15
  447. package/api/resources/ats/resources/offices/client/requests/OfficesListRequest.d.ts +4 -0
  448. package/api/resources/ats/resources/offices/client/requests/OfficesRetrieveRequest.d.ts +4 -0
  449. package/api/resources/ats/resources/passthrough/client/Client.d.ts +1 -0
  450. package/api/resources/ats/resources/passthrough/client/Client.js +2 -1
  451. package/api/resources/ats/resources/regenerateKey/client/Client.d.ts +6 -0
  452. package/api/resources/ats/resources/regenerateKey/client/Client.js +7 -1
  453. package/api/resources/ats/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +6 -0
  454. package/api/resources/ats/resources/rejectReasons/client/Client.d.ts +7 -0
  455. package/api/resources/ats/resources/rejectReasons/client/Client.js +22 -15
  456. package/api/resources/ats/resources/rejectReasons/client/requests/RejectReasonsListRequest.d.ts +4 -0
  457. package/api/resources/ats/resources/rejectReasons/client/requests/RejectReasonsRetrieveRequest.d.ts +4 -0
  458. package/api/resources/ats/resources/scorecards/client/Client.d.ts +15 -0
  459. package/api/resources/ats/resources/scorecards/client/Client.js +39 -24
  460. package/api/resources/ats/resources/scorecards/client/requests/ScorecardsListRequest.d.ts +8 -0
  461. package/api/resources/ats/resources/scorecards/client/requests/ScorecardsRetrieveRequest.d.ts +8 -0
  462. package/api/resources/ats/resources/scorecards/index.d.ts +1 -0
  463. package/api/resources/ats/resources/scorecards/index.js +1 -0
  464. package/api/resources/ats/resources/scorecards/types/index.d.ts +2 -0
  465. package/api/resources/ats/resources/scorecards/types/index.js +18 -0
  466. package/api/resources/ats/resources/selectiveSync/client/Client.d.ts +14 -0
  467. package/api/resources/ats/resources/selectiveSync/client/Client.js +23 -8
  468. package/api/resources/ats/resources/selectiveSync/client/requests/LinkedAccountSelectiveSyncConfigurationListRequest.d.ts +8 -0
  469. package/api/resources/ats/resources/selectiveSync/client/requests/SelectiveSyncMetaListRequest.d.ts +4 -0
  470. package/api/resources/ats/resources/syncStatus/client/Client.d.ts +4 -0
  471. package/api/resources/ats/resources/syncStatus/client/Client.js +8 -5
  472. package/api/resources/ats/resources/syncStatus/client/requests/SyncStatusListRequest.d.ts +4 -0
  473. package/api/resources/ats/resources/tags/client/Client.d.ts +4 -0
  474. package/api/resources/ats/resources/tags/client/Client.js +15 -12
  475. package/api/resources/ats/resources/tags/client/requests/TagsListRequest.d.ts +4 -0
  476. package/api/resources/ats/resources/users/client/Client.d.ts +13 -0
  477. package/api/resources/ats/resources/users/client/Client.js +33 -20
  478. package/api/resources/ats/resources/users/client/requests/UsersListRequest.d.ts +7 -0
  479. package/api/resources/ats/resources/users/client/requests/UsersRetrieveRequest.d.ts +7 -0
  480. package/api/resources/ats/resources/webhookReceivers/client/Client.d.ts +4 -0
  481. package/api/resources/ats/resources/webhookReceivers/client/Client.js +7 -2
  482. package/api/resources/ats/types/AccessRoleEnum.d.ts +5 -5
  483. package/api/resources/ats/types/AccountDetailsAndActions.d.ts +3 -0
  484. package/api/resources/ats/types/AccountDetailsAndActionsStatusEnum.d.ts +3 -3
  485. package/api/resources/ats/types/Activity.d.ts +10 -6
  486. package/api/resources/ats/types/ActivityActivityType.d.ts +3 -3
  487. package/api/resources/ats/types/ActivityRequest.d.ts +10 -6
  488. package/api/resources/ats/types/ActivityRequestActivityType.d.ts +3 -3
  489. package/api/resources/ats/types/ActivityRequestVisibility.d.ts +3 -3
  490. package/api/resources/ats/types/ActivityTypeEnum.d.ts +3 -3
  491. package/api/resources/ats/types/ActivityVisibility.d.ts +3 -3
  492. package/api/resources/ats/types/Application.d.ts +3 -0
  493. package/api/resources/ats/types/ApplicationRequest.d.ts +3 -0
  494. package/api/resources/ats/types/Attachment.d.ts +8 -4
  495. package/api/resources/ats/types/AttachmentAttachmentType.d.ts +4 -4
  496. package/api/resources/ats/types/AttachmentRequest.d.ts +8 -4
  497. package/api/resources/ats/types/AttachmentRequestAttachmentType.d.ts +4 -4
  498. package/api/resources/ats/types/AttachmentTypeEnum.d.ts +4 -4
  499. package/api/resources/ats/types/AuditLogEvent.d.ts +36 -36
  500. package/api/resources/ats/types/AuditLogEventEventType.d.ts +30 -30
  501. package/api/resources/ats/types/AuditLogEventRole.d.ts +6 -6
  502. package/api/resources/ats/types/AvailableActions.d.ts +3 -0
  503. package/api/resources/ats/types/Candidate.d.ts +4 -0
  504. package/api/resources/ats/types/CandidateRequest.d.ts +4 -0
  505. package/api/resources/ats/types/CategoriesEnum.d.ts +7 -7
  506. package/api/resources/ats/types/CategoryEnum.d.ts +7 -7
  507. package/api/resources/ats/types/ConditionSchema.d.ts +8 -8
  508. package/api/resources/ats/types/ConditionSchemaConditionType.d.ts +7 -7
  509. package/api/resources/ats/types/ConditionTypeEnum.d.ts +7 -7
  510. package/api/resources/ats/types/DataPassthroughRequest.d.ts +3 -0
  511. package/api/resources/ats/types/Department.d.ts +4 -0
  512. package/api/resources/ats/types/DisabilityStatusEnum.d.ts +3 -3
  513. package/api/resources/ats/types/Eeoc.d.ts +23 -19
  514. package/api/resources/ats/types/EeocDisabilityStatus.d.ts +3 -3
  515. package/api/resources/ats/types/EeocGender.d.ts +5 -5
  516. package/api/resources/ats/types/EeocRace.d.ts +8 -8
  517. package/api/resources/ats/types/EeocVeteranStatus.d.ts +3 -3
  518. package/api/resources/ats/types/EmailAddress.d.ts +7 -3
  519. package/api/resources/ats/types/EmailAddressEmailAddressType.d.ts +3 -3
  520. package/api/resources/ats/types/EmailAddressRequest.d.ts +7 -3
  521. package/api/resources/ats/types/EmailAddressRequestEmailAddressType.d.ts +3 -3
  522. package/api/resources/ats/types/EmailAddressTypeEnum.d.ts +3 -3
  523. package/api/resources/ats/types/EnabledActionsEnum.d.ts +2 -2
  524. package/api/resources/ats/types/EncodingEnum.d.ts +3 -3
  525. package/api/resources/ats/types/EventTypeEnum.d.ts +30 -30
  526. package/api/resources/ats/types/GenderEnum.d.ts +5 -5
  527. package/api/resources/ats/types/Issue.d.ts +2 -2
  528. package/api/resources/ats/types/IssueStatus.d.ts +2 -2
  529. package/api/resources/ats/types/IssueStatusEnum.d.ts +2 -2
  530. package/api/resources/ats/types/Job.d.ts +9 -5
  531. package/api/resources/ats/types/JobInterviewStage.d.ts +4 -0
  532. package/api/resources/ats/types/JobStatus.d.ts +5 -5
  533. package/api/resources/ats/types/JobStatusEnum.d.ts +5 -5
  534. package/api/resources/ats/types/LinkedAccountCondition.d.ts +1 -1
  535. package/api/resources/ats/types/MethodEnum.d.ts +7 -7
  536. package/api/resources/ats/types/ModelOperation.d.ts +3 -0
  537. package/api/resources/ats/types/MultipartFormFieldRequest.d.ts +6 -3
  538. package/api/resources/ats/types/MultipartFormFieldRequestEncoding.d.ts +3 -3
  539. package/api/resources/ats/types/Offer.d.ts +13 -9
  540. package/api/resources/ats/types/OfferStatus.d.ts +9 -9
  541. package/api/resources/ats/types/OfferStatusEnum.d.ts +9 -9
  542. package/api/resources/ats/types/Office.d.ts +4 -0
  543. package/api/resources/ats/types/OverallRecommendationEnum.d.ts +5 -5
  544. package/api/resources/ats/types/PatchedCandidateRequest.d.ts +4 -0
  545. package/api/resources/ats/types/PhoneNumber.d.ts +9 -5
  546. package/api/resources/ats/types/PhoneNumberPhoneNumberType.d.ts +5 -5
  547. package/api/resources/ats/types/PhoneNumberRequest.d.ts +9 -5
  548. package/api/resources/ats/types/PhoneNumberRequestPhoneNumberType.d.ts +5 -5
  549. package/api/resources/ats/types/PhoneNumberTypeEnum.d.ts +5 -5
  550. package/api/resources/ats/types/RaceEnum.d.ts +8 -8
  551. package/api/resources/ats/types/ReasonEnum.d.ts +3 -3
  552. package/api/resources/ats/types/RejectReason.d.ts +4 -0
  553. package/api/resources/ats/types/RemoteKey.d.ts +3 -0
  554. package/api/resources/ats/types/RemoteResponse.d.ts +3 -0
  555. package/api/resources/ats/types/RemoteUser.d.ts +9 -5
  556. package/api/resources/ats/types/RemoteUserAccessRole.d.ts +5 -5
  557. package/api/resources/ats/types/RequestFormatEnum.d.ts +3 -3
  558. package/api/resources/ats/types/ResponseTypeEnum.d.ts +2 -2
  559. package/api/resources/ats/types/RoleEnum.d.ts +6 -6
  560. package/api/resources/ats/types/ScheduledInterview.d.ts +7 -3
  561. package/api/resources/ats/types/ScheduledInterviewRequest.d.ts +7 -3
  562. package/api/resources/ats/types/ScheduledInterviewRequestStatus.d.ts +3 -3
  563. package/api/resources/ats/types/ScheduledInterviewStatus.d.ts +3 -3
  564. package/api/resources/ats/types/ScheduledInterviewStatusEnum.d.ts +3 -3
  565. package/api/resources/ats/types/Scorecard.d.ts +9 -5
  566. package/api/resources/ats/types/ScorecardOverallRecommendation.d.ts +5 -5
  567. package/api/resources/ats/types/ScreeningQuestion.d.ts +11 -8
  568. package/api/resources/ats/types/ScreeningQuestionOption.d.ts +3 -0
  569. package/api/resources/ats/types/ScreeningQuestionType.d.ts +8 -8
  570. package/api/resources/ats/types/SelectiveSyncConfigurationsUsageEnum.d.ts +2 -2
  571. package/api/resources/ats/types/SyncStatus.d.ts +3 -0
  572. package/api/resources/ats/types/SyncStatusStatusEnum.d.ts +6 -6
  573. package/api/resources/ats/types/Tag.d.ts +4 -0
  574. package/api/resources/ats/types/TypeEnum.d.ts +8 -8
  575. package/api/resources/ats/types/Url.d.ts +11 -7
  576. package/api/resources/ats/types/UrlRequest.d.ts +11 -7
  577. package/api/resources/ats/types/UrlRequestUrlType.d.ts +7 -7
  578. package/api/resources/ats/types/UrlTypeEnum.d.ts +7 -7
  579. package/api/resources/ats/types/UrlUrlType.d.ts +7 -7
  580. package/api/resources/ats/types/VeteranStatusEnum.d.ts +3 -3
  581. package/api/resources/ats/types/VisibilityEnum.d.ts +3 -3
  582. package/api/resources/ats/types/index.d.ts +29 -53
  583. package/api/resources/ats/types/index.js +29 -53
  584. package/api/resources/crm/client/Client.d.ts +1 -0
  585. package/api/resources/crm/index.d.ts +1 -1
  586. package/api/resources/crm/index.js +1 -1
  587. package/api/resources/crm/resources/accountDetails/client/Client.d.ts +4 -0
  588. package/api/resources/crm/resources/accountDetails/client/Client.js +5 -1
  589. package/api/resources/crm/resources/accountToken/client/Client.d.ts +1 -0
  590. package/api/resources/crm/resources/accountToken/client/Client.js +2 -1
  591. package/api/resources/crm/resources/accounts/client/Client.d.ts +45 -0
  592. package/api/resources/crm/resources/accounts/client/Client.js +88 -38
  593. package/api/resources/crm/resources/accounts/client/requests/AccountsListRequest.d.ts +6 -0
  594. package/api/resources/crm/resources/accounts/client/requests/AccountsRemoteFieldClassesListRequest.d.ts +4 -0
  595. package/api/resources/crm/resources/accounts/client/requests/AccountsRetrieveRequest.d.ts +6 -0
  596. package/api/resources/crm/resources/accounts/client/requests/CrmAccountEndpointRequest.d.ts +13 -0
  597. package/api/resources/crm/resources/accounts/client/requests/PatchedCrmAccountEndpointRequest.d.ts +14 -0
  598. package/api/resources/crm/resources/associationTypes/client/Client.d.ts +14 -0
  599. package/api/resources/crm/resources/associationTypes/client/Client.js +38 -22
  600. package/api/resources/crm/resources/associationTypes/client/requests/CustomObjectClassesAssociationTypesListRequest.d.ts +6 -0
  601. package/api/resources/crm/resources/associationTypes/client/requests/CustomObjectClassesAssociationTypesRetrieveRequest.d.ts +6 -0
  602. package/api/resources/crm/resources/associations/client/Client.d.ts +9 -0
  603. package/api/resources/crm/resources/associations/client/Client.js +27 -18
  604. package/api/resources/crm/resources/associations/client/requests/CustomObjectClassesCustomObjectsAssociationsListRequest.d.ts +6 -0
  605. package/api/resources/crm/resources/associations/client/requests/CustomObjectClassesCustomObjectsAssociationsUpdateRequest.d.ts +4 -0
  606. package/api/resources/crm/resources/asyncPassthrough/client/Client.d.ts +15 -0
  607. package/api/resources/crm/resources/asyncPassthrough/client/Client.js +18 -2
  608. package/api/resources/crm/resources/auditTrail/client/Client.d.ts +4 -0
  609. package/api/resources/crm/resources/auditTrail/client/Client.js +12 -9
  610. package/api/resources/crm/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +4 -0
  611. package/api/resources/crm/resources/availableActions/client/Client.d.ts +1 -0
  612. package/api/resources/crm/resources/availableActions/client/Client.js +2 -1
  613. package/api/resources/crm/resources/contacts/client/Client.d.ts +75 -0
  614. package/api/resources/crm/resources/contacts/client/Client.js +121 -40
  615. package/api/resources/crm/resources/contacts/client/requests/ContactsListRequest.d.ts +6 -0
  616. package/api/resources/crm/resources/contacts/client/requests/ContactsRemoteFieldClassesListRequest.d.ts +4 -0
  617. package/api/resources/crm/resources/contacts/client/requests/ContactsRetrieveRequest.d.ts +6 -0
  618. package/api/resources/crm/resources/contacts/client/requests/CrmContactEndpointRequest.d.ts +25 -0
  619. package/api/resources/crm/resources/contacts/client/requests/PatchedCrmContactEndpointRequest.d.ts +26 -0
  620. package/api/resources/crm/resources/contacts/index.d.ts +1 -0
  621. package/api/resources/crm/resources/contacts/index.js +1 -0
  622. package/api/resources/crm/resources/contacts/types/index.d.ts +2 -0
  623. package/api/resources/crm/resources/contacts/types/index.js +18 -0
  624. package/api/resources/crm/resources/customObjectClasses/client/Client.d.ts +11 -0
  625. package/api/resources/crm/resources/customObjectClasses/client/Client.js +28 -17
  626. package/api/resources/crm/resources/customObjectClasses/client/requests/CustomObjectClassesListRequest.d.ts +6 -0
  627. package/api/resources/crm/resources/customObjectClasses/client/requests/CustomObjectClassesRetrieveRequest.d.ts +6 -0
  628. package/api/resources/crm/resources/customObjects/client/Client.d.ts +20 -0
  629. package/api/resources/crm/resources/customObjects/client/Client.js +46 -23
  630. package/api/resources/crm/resources/customObjects/client/requests/CrmCustomObjectEndpointRequest.d.ts +8 -0
  631. package/api/resources/crm/resources/customObjects/client/requests/CustomObjectClassesCustomObjectsListRequest.d.ts +4 -0
  632. package/api/resources/crm/resources/customObjects/client/requests/CustomObjectClassesCustomObjectsRetrieveRequest.d.ts +4 -0
  633. package/api/resources/crm/resources/deleteAccount/client/Client.d.ts +4 -0
  634. package/api/resources/crm/resources/deleteAccount/client/Client.js +5 -1
  635. package/api/resources/crm/resources/engagementTypes/client/Client.d.ts +10 -0
  636. package/api/resources/crm/resources/engagementTypes/client/Client.js +35 -24
  637. package/api/resources/crm/resources/engagementTypes/client/requests/EngagementTypesListRequest.d.ts +4 -0
  638. package/api/resources/crm/resources/engagementTypes/client/requests/EngagementTypesRemoteFieldClassesListRequest.d.ts +4 -0
  639. package/api/resources/crm/resources/engagementTypes/client/requests/EngagementTypesRetrieveRequest.d.ts +4 -0
  640. package/api/resources/crm/resources/engagements/client/Client.d.ts +43 -0
  641. package/api/resources/crm/resources/engagements/client/Client.js +86 -38
  642. package/api/resources/crm/resources/engagements/client/requests/EngagementEndpointRequest.d.ts +11 -0
  643. package/api/resources/crm/resources/engagements/client/requests/EngagementsListRequest.d.ts +6 -0
  644. package/api/resources/crm/resources/engagements/client/requests/EngagementsRemoteFieldClassesListRequest.d.ts +4 -0
  645. package/api/resources/crm/resources/engagements/client/requests/EngagementsRetrieveRequest.d.ts +6 -0
  646. package/api/resources/crm/resources/engagements/client/requests/PatchedEngagementEndpointRequest.d.ts +14 -0
  647. package/api/resources/crm/resources/engagements/index.d.ts +1 -0
  648. package/api/resources/crm/resources/engagements/index.js +1 -0
  649. package/api/resources/crm/resources/engagements/types/index.d.ts +2 -0
  650. package/api/resources/crm/resources/engagements/types/index.js +18 -0
  651. package/api/resources/crm/resources/forceResync/client/Client.d.ts +4 -0
  652. package/api/resources/crm/resources/forceResync/client/Client.js +5 -1
  653. package/api/resources/crm/resources/generateKey/client/Client.d.ts +6 -0
  654. package/api/resources/crm/resources/generateKey/client/Client.js +7 -1
  655. package/api/resources/crm/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +6 -0
  656. package/api/resources/crm/resources/index.d.ts +16 -8
  657. package/api/resources/crm/resources/index.js +17 -9
  658. package/api/resources/crm/resources/issues/client/Client.d.ts +9 -0
  659. package/api/resources/crm/resources/issues/client/Client.js +26 -17
  660. package/api/resources/crm/resources/issues/client/requests/IssuesListRequest.d.ts +8 -2
  661. package/api/resources/crm/resources/issues/index.d.ts +1 -0
  662. package/api/resources/crm/resources/issues/index.js +1 -0
  663. package/api/resources/crm/resources/issues/types/index.d.ts +1 -0
  664. package/api/resources/crm/resources/issues/types/index.js +17 -0
  665. package/api/resources/crm/resources/leads/client/Client.d.ts +44 -0
  666. package/api/resources/crm/resources/leads/client/Client.js +83 -36
  667. package/api/resources/crm/resources/leads/client/requests/LeadEndpointRequest.d.ts +28 -0
  668. package/api/resources/crm/resources/leads/client/requests/LeadsListRequest.d.ts +6 -0
  669. package/api/resources/crm/resources/leads/client/requests/LeadsRemoteFieldClassesListRequest.d.ts +4 -0
  670. package/api/resources/crm/resources/leads/client/requests/LeadsRetrieveRequest.d.ts +6 -0
  671. package/api/resources/crm/resources/leads/index.d.ts +1 -0
  672. package/api/resources/crm/resources/leads/index.js +1 -0
  673. package/api/resources/crm/resources/leads/types/index.d.ts +2 -0
  674. package/api/resources/crm/resources/leads/types/index.js +18 -0
  675. package/api/resources/crm/resources/linkToken/client/Client.d.ts +1 -0
  676. package/api/resources/crm/resources/linkToken/client/Client.js +2 -1
  677. package/api/resources/crm/resources/linkedAccounts/client/Client.d.ts +6 -0
  678. package/api/resources/crm/resources/linkedAccounts/client/Client.js +21 -16
  679. package/api/resources/crm/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.d.ts +13 -7
  680. package/api/resources/crm/resources/linkedAccounts/index.d.ts +1 -0
  681. package/api/resources/crm/resources/linkedAccounts/index.js +1 -0
  682. package/api/resources/crm/resources/linkedAccounts/types/index.d.ts +1 -0
  683. package/api/resources/crm/resources/linkedAccounts/types/index.js +17 -0
  684. package/api/resources/crm/resources/notes/client/Client.d.ts +24 -0
  685. package/api/resources/crm/resources/notes/client/Client.js +62 -35
  686. package/api/resources/crm/resources/notes/client/requests/NoteEndpointRequest.d.ts +8 -0
  687. package/api/resources/crm/resources/notes/client/requests/NotesListRequest.d.ts +6 -0
  688. package/api/resources/crm/resources/notes/client/requests/NotesRemoteFieldClassesListRequest.d.ts +4 -0
  689. package/api/resources/crm/resources/notes/client/requests/NotesRetrieveRequest.d.ts +6 -0
  690. package/api/resources/crm/resources/notes/index.d.ts +1 -0
  691. package/api/resources/crm/resources/notes/index.js +1 -0
  692. package/api/resources/crm/resources/notes/types/index.d.ts +2 -0
  693. package/api/resources/crm/resources/notes/types/index.js +18 -0
  694. package/api/resources/crm/resources/opportunities/client/Client.d.ts +50 -0
  695. package/api/resources/crm/resources/opportunities/client/Client.js +99 -44
  696. package/api/resources/crm/resources/opportunities/client/requests/OpportunitiesListRequest.d.ts +12 -3
  697. package/api/resources/crm/resources/opportunities/client/requests/OpportunitiesRemoteFieldClassesListRequest.d.ts +4 -0
  698. package/api/resources/crm/resources/opportunities/client/requests/OpportunitiesRetrieveRequest.d.ts +8 -0
  699. package/api/resources/crm/resources/opportunities/client/requests/OpportunityEndpointRequest.d.ts +12 -0
  700. package/api/resources/crm/resources/opportunities/client/requests/PatchedOpportunityEndpointRequest.d.ts +15 -0
  701. package/api/resources/crm/resources/opportunities/index.d.ts +1 -0
  702. package/api/resources/crm/resources/opportunities/index.js +1 -0
  703. package/api/resources/crm/resources/opportunities/types/index.d.ts +3 -0
  704. package/api/resources/crm/resources/opportunities/types/index.js +19 -0
  705. package/api/resources/crm/resources/passthrough/client/Client.d.ts +1 -0
  706. package/api/resources/crm/resources/passthrough/client/Client.js +2 -1
  707. package/api/resources/crm/resources/regenerateKey/client/Client.d.ts +6 -0
  708. package/api/resources/crm/resources/regenerateKey/client/Client.js +7 -1
  709. package/api/resources/crm/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +6 -0
  710. package/api/resources/crm/resources/selectiveSync/client/Client.d.ts +14 -0
  711. package/api/resources/crm/resources/selectiveSync/client/Client.js +23 -8
  712. package/api/resources/crm/resources/selectiveSync/client/requests/LinkedAccountSelectiveSyncConfigurationListRequest.d.ts +8 -0
  713. package/api/resources/crm/resources/selectiveSync/client/requests/SelectiveSyncMetaListRequest.d.ts +4 -0
  714. package/api/resources/crm/resources/stages/client/Client.d.ts +10 -0
  715. package/api/resources/crm/resources/stages/client/Client.js +35 -24
  716. package/api/resources/crm/resources/stages/client/requests/StagesListRequest.d.ts +4 -0
  717. package/api/resources/crm/resources/stages/client/requests/StagesRemoteFieldClassesListRequest.d.ts +4 -0
  718. package/api/resources/crm/resources/stages/client/requests/StagesRetrieveRequest.d.ts +4 -0
  719. package/api/resources/crm/resources/syncStatus/client/Client.d.ts +4 -0
  720. package/api/resources/crm/resources/syncStatus/client/Client.js +8 -5
  721. package/api/resources/crm/resources/syncStatus/client/requests/SyncStatusListRequest.d.ts +4 -0
  722. package/api/resources/crm/resources/tasks/client/Client.d.ts +43 -0
  723. package/api/resources/crm/resources/tasks/client/Client.js +84 -36
  724. package/api/resources/crm/resources/tasks/client/requests/PatchedTaskEndpointRequest.d.ts +14 -0
  725. package/api/resources/crm/resources/tasks/client/requests/TaskEndpointRequest.d.ts +11 -0
  726. package/api/resources/crm/resources/tasks/client/requests/TasksListRequest.d.ts +6 -0
  727. package/api/resources/crm/resources/tasks/client/requests/TasksRemoteFieldClassesListRequest.d.ts +4 -0
  728. package/api/resources/crm/resources/tasks/client/requests/TasksRetrieveRequest.d.ts +6 -0
  729. package/api/resources/crm/resources/tasks/index.d.ts +1 -0
  730. package/api/resources/crm/resources/tasks/index.js +1 -0
  731. package/api/resources/crm/resources/tasks/types/index.d.ts +2 -0
  732. package/api/resources/crm/resources/tasks/types/index.js +18 -0
  733. package/api/resources/crm/resources/users/client/Client.d.ts +16 -0
  734. package/api/resources/crm/resources/users/client/Client.js +43 -25
  735. package/api/resources/crm/resources/users/client/requests/UsersListRequest.d.ts +4 -0
  736. package/api/resources/crm/resources/users/client/requests/UsersRemoteFieldClassesListRequest.d.ts +4 -0
  737. package/api/resources/crm/resources/users/client/requests/UsersRetrieveRequest.d.ts +4 -0
  738. package/api/resources/crm/resources/webhookReceivers/client/Client.d.ts +4 -0
  739. package/api/resources/crm/resources/webhookReceivers/client/Client.js +7 -2
  740. package/api/resources/crm/types/Account.d.ts +4 -0
  741. package/api/resources/crm/types/AccountDetailsAndActions.d.ts +3 -0
  742. package/api/resources/crm/types/AccountDetailsAndActionsStatusEnum.d.ts +3 -3
  743. package/api/resources/crm/types/AccountRequest.d.ts +4 -0
  744. package/api/resources/crm/types/ActivityTypeEnum.d.ts +3 -3
  745. package/api/resources/crm/types/Address.d.ts +255 -251
  746. package/api/resources/crm/types/AddressAddressType.d.ts +2 -2
  747. package/api/resources/crm/types/AddressCountry.d.ts +249 -249
  748. package/api/resources/crm/types/AddressRequest.d.ts +255 -251
  749. package/api/resources/crm/types/AddressRequestAddressType.d.ts +2 -2
  750. package/api/resources/crm/types/AddressRequestCountry.d.ts +249 -249
  751. package/api/resources/crm/types/AddressTypeEnum.d.ts +2 -2
  752. package/api/resources/crm/types/Association.d.ts +4 -0
  753. package/api/resources/crm/types/AssociationType.d.ts +4 -0
  754. package/api/resources/crm/types/AuditLogEvent.d.ts +36 -36
  755. package/api/resources/crm/types/AuditLogEventEventType.d.ts +30 -30
  756. package/api/resources/crm/types/AuditLogEventRole.d.ts +6 -6
  757. package/api/resources/crm/types/AvailableActions.d.ts +3 -0
  758. package/api/resources/crm/types/CardinalityEnum.d.ts +4 -4
  759. package/api/resources/crm/types/CategoriesEnum.d.ts +7 -7
  760. package/api/resources/crm/types/CategoryEnum.d.ts +7 -7
  761. package/api/resources/crm/types/ConditionSchema.d.ts +8 -8
  762. package/api/resources/crm/types/ConditionSchemaConditionType.d.ts +7 -7
  763. package/api/resources/crm/types/ConditionTypeEnum.d.ts +7 -7
  764. package/api/resources/crm/types/Contact.d.ts +4 -0
  765. package/api/resources/crm/types/ContactRequest.d.ts +4 -0
  766. package/api/resources/crm/types/CountryEnum.d.ts +249 -249
  767. package/api/resources/crm/types/CustomObject.d.ts +4 -0
  768. package/api/resources/crm/types/CustomObjectClass.d.ts +4 -0
  769. package/api/resources/crm/types/DataPassthroughRequest.d.ts +3 -0
  770. package/api/resources/crm/types/DirectionEnum.d.ts +2 -2
  771. package/api/resources/crm/types/EmailAddress.d.ts +4 -0
  772. package/api/resources/crm/types/EmailAddressRequest.d.ts +4 -0
  773. package/api/resources/crm/types/EnabledActionsEnum.d.ts +2 -2
  774. package/api/resources/crm/types/EncodingEnum.d.ts +3 -3
  775. package/api/resources/crm/types/Engagement.d.ts +6 -2
  776. package/api/resources/crm/types/EngagementDirection.d.ts +2 -2
  777. package/api/resources/crm/types/EngagementRequest.d.ts +6 -2
  778. package/api/resources/crm/types/EngagementRequestDirection.d.ts +2 -2
  779. package/api/resources/crm/types/EngagementType.d.ts +7 -3
  780. package/api/resources/crm/types/EngagementTypeActivityType.d.ts +3 -3
  781. package/api/resources/crm/types/EventTypeEnum.d.ts +30 -30
  782. package/api/resources/crm/types/FieldFormatEnum.d.ts +6 -6
  783. package/api/resources/crm/types/FieldTypeEnum.d.ts +6 -6
  784. package/api/resources/crm/types/Issue.d.ts +2 -2
  785. package/api/resources/crm/types/IssueStatus.d.ts +2 -2
  786. package/api/resources/crm/types/IssueStatusEnum.d.ts +2 -2
  787. package/api/resources/crm/types/ItemFormatEnum.d.ts +6 -6
  788. package/api/resources/crm/types/ItemTypeEnum.d.ts +6 -6
  789. package/api/resources/crm/types/Lead.d.ts +4 -0
  790. package/api/resources/crm/types/LeadRequest.d.ts +4 -0
  791. package/api/resources/crm/types/LinkedAccountCondition.d.ts +1 -1
  792. package/api/resources/crm/types/MethodEnum.d.ts +7 -7
  793. package/api/resources/crm/types/ModelOperation.d.ts +3 -0
  794. package/api/resources/crm/types/MultipartFormFieldRequest.d.ts +6 -3
  795. package/api/resources/crm/types/MultipartFormFieldRequestEncoding.d.ts +3 -3
  796. package/api/resources/crm/types/Note.d.ts +4 -0
  797. package/api/resources/crm/types/NoteRequest.d.ts +4 -0
  798. package/api/resources/crm/types/Opportunity.d.ts +7 -3
  799. package/api/resources/crm/types/OpportunityRequest.d.ts +7 -3
  800. package/api/resources/crm/types/OpportunityRequestStatus.d.ts +3 -3
  801. package/api/resources/crm/types/OpportunityStatus.d.ts +3 -3
  802. package/api/resources/crm/types/OpportunityStatusEnum.d.ts +3 -3
  803. package/api/resources/crm/types/OriginTypeEnum.d.ts +3 -3
  804. package/api/resources/crm/types/PatchedAccountRequest.d.ts +4 -0
  805. package/api/resources/crm/types/PatchedContactRequest.d.ts +4 -0
  806. package/api/resources/crm/types/PatchedEngagementRequest.d.ts +6 -2
  807. package/api/resources/crm/types/PatchedEngagementRequestDirection.d.ts +2 -2
  808. package/api/resources/crm/types/PatchedOpportunityRequest.d.ts +7 -3
  809. package/api/resources/crm/types/PatchedOpportunityRequestStatus.d.ts +3 -3
  810. package/api/resources/crm/types/PatchedTaskRequest.d.ts +6 -2
  811. package/api/resources/crm/types/PatchedTaskRequestStatus.d.ts +2 -2
  812. package/api/resources/crm/types/PhoneNumber.d.ts +4 -0
  813. package/api/resources/crm/types/PhoneNumberRequest.d.ts +4 -0
  814. package/api/resources/crm/types/ReasonEnum.d.ts +3 -3
  815. package/api/resources/crm/types/RemoteKey.d.ts +3 -0
  816. package/api/resources/crm/types/RemoteResponse.d.ts +3 -0
  817. package/api/resources/crm/types/RequestFormatEnum.d.ts +3 -3
  818. package/api/resources/crm/types/ResponseTypeEnum.d.ts +2 -2
  819. package/api/resources/crm/types/RoleEnum.d.ts +6 -6
  820. package/api/resources/crm/types/SelectiveSyncConfigurationsUsageEnum.d.ts +2 -2
  821. package/api/resources/crm/types/Stage.d.ts +4 -0
  822. package/api/resources/crm/types/SyncStatus.d.ts +3 -0
  823. package/api/resources/crm/types/SyncStatusStatusEnum.d.ts +6 -6
  824. package/api/resources/crm/types/Task.d.ts +6 -2
  825. package/api/resources/crm/types/TaskRequest.d.ts +6 -2
  826. package/api/resources/crm/types/TaskRequestStatus.d.ts +2 -2
  827. package/api/resources/crm/types/TaskStatus.d.ts +2 -2
  828. package/api/resources/crm/types/TaskStatusEnum.d.ts +2 -2
  829. package/api/resources/crm/types/User.d.ts +4 -0
  830. package/api/resources/crm/types/index.d.ts +33 -48
  831. package/api/resources/crm/types/index.js +33 -48
  832. package/api/resources/filestorage/client/Client.d.ts +1 -0
  833. package/api/resources/filestorage/index.d.ts +1 -1
  834. package/api/resources/filestorage/index.js +1 -1
  835. package/api/resources/filestorage/resources/accountDetails/client/Client.d.ts +4 -0
  836. package/api/resources/filestorage/resources/accountDetails/client/Client.js +5 -1
  837. package/api/resources/filestorage/resources/accountToken/client/Client.d.ts +1 -0
  838. package/api/resources/filestorage/resources/accountToken/client/Client.js +2 -1
  839. package/api/resources/filestorage/resources/asyncPassthrough/client/Client.d.ts +15 -0
  840. package/api/resources/filestorage/resources/asyncPassthrough/client/Client.js +18 -2
  841. package/api/resources/filestorage/resources/auditTrail/client/Client.d.ts +4 -0
  842. package/api/resources/filestorage/resources/auditTrail/client/Client.js +12 -9
  843. package/api/resources/filestorage/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +4 -0
  844. package/api/resources/filestorage/resources/availableActions/client/Client.d.ts +1 -0
  845. package/api/resources/filestorage/resources/availableActions/client/Client.js +2 -1
  846. package/api/resources/filestorage/resources/deleteAccount/client/Client.d.ts +4 -0
  847. package/api/resources/filestorage/resources/deleteAccount/client/Client.js +5 -1
  848. package/api/resources/filestorage/resources/drives/client/Client.d.ts +7 -0
  849. package/api/resources/filestorage/resources/drives/client/Client.js +23 -16
  850. package/api/resources/filestorage/resources/drives/client/requests/DrivesListRequest.d.ts +4 -0
  851. package/api/resources/filestorage/resources/drives/client/requests/DrivesRetrieveRequest.d.ts +4 -0
  852. package/api/resources/filestorage/resources/files/client/Client.d.ts +26 -0
  853. package/api/resources/filestorage/resources/files/client/Client.js +81 -34
  854. package/api/resources/filestorage/resources/files/client/requests/FileStorageFileEndpointRequest.d.ts +13 -0
  855. package/api/resources/filestorage/resources/files/client/requests/FilesListRequest.d.ts +6 -0
  856. package/api/resources/filestorage/resources/files/client/requests/FilesRetrieveRequest.d.ts +6 -0
  857. package/api/resources/filestorage/resources/files/index.d.ts +1 -0
  858. package/api/resources/filestorage/resources/files/index.js +1 -0
  859. package/api/resources/filestorage/resources/files/types/index.d.ts +2 -0
  860. package/api/resources/filestorage/resources/files/types/index.js +18 -0
  861. package/api/resources/filestorage/resources/folders/client/Client.d.ts +24 -0
  862. package/api/resources/filestorage/resources/folders/client/Client.js +51 -25
  863. package/api/resources/filestorage/resources/folders/client/requests/FileStorageFolderEndpointRequest.d.ts +11 -0
  864. package/api/resources/filestorage/resources/folders/client/requests/FoldersListRequest.d.ts +6 -0
  865. package/api/resources/filestorage/resources/folders/client/requests/FoldersRetrieveRequest.d.ts +6 -0
  866. package/api/resources/filestorage/resources/folders/index.d.ts +1 -0
  867. package/api/resources/filestorage/resources/folders/index.js +1 -0
  868. package/api/resources/filestorage/resources/folders/types/index.d.ts +2 -0
  869. package/api/resources/filestorage/resources/folders/types/index.js +18 -0
  870. package/api/resources/filestorage/resources/forceResync/client/Client.d.ts +4 -0
  871. package/api/resources/filestorage/resources/forceResync/client/Client.js +5 -1
  872. package/api/resources/filestorage/resources/generateKey/client/Client.d.ts +6 -0
  873. package/api/resources/filestorage/resources/generateKey/client/Client.js +7 -1
  874. package/api/resources/filestorage/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +6 -0
  875. package/api/resources/filestorage/resources/groups/client/Client.d.ts +7 -0
  876. package/api/resources/filestorage/resources/groups/client/Client.js +22 -15
  877. package/api/resources/filestorage/resources/groups/client/requests/GroupsListRequest.d.ts +4 -0
  878. package/api/resources/filestorage/resources/groups/client/requests/GroupsRetrieveRequest.d.ts +4 -0
  879. package/api/resources/filestorage/resources/index.d.ts +8 -4
  880. package/api/resources/filestorage/resources/index.js +9 -5
  881. package/api/resources/filestorage/resources/issues/client/Client.d.ts +9 -0
  882. package/api/resources/filestorage/resources/issues/client/Client.js +26 -17
  883. package/api/resources/filestorage/resources/issues/client/requests/IssuesListRequest.d.ts +8 -2
  884. package/api/resources/filestorage/resources/issues/index.d.ts +1 -0
  885. package/api/resources/filestorage/resources/issues/index.js +1 -0
  886. package/api/resources/filestorage/resources/issues/types/index.d.ts +1 -0
  887. package/api/resources/filestorage/resources/issues/types/index.js +17 -0
  888. package/api/resources/filestorage/resources/linkToken/client/Client.d.ts +1 -0
  889. package/api/resources/filestorage/resources/linkToken/client/Client.js +2 -1
  890. package/api/resources/filestorage/resources/linkedAccounts/client/Client.d.ts +6 -0
  891. package/api/resources/filestorage/resources/linkedAccounts/client/Client.js +21 -16
  892. package/api/resources/filestorage/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.d.ts +13 -7
  893. package/api/resources/filestorage/resources/linkedAccounts/index.d.ts +1 -0
  894. package/api/resources/filestorage/resources/linkedAccounts/index.js +1 -0
  895. package/api/resources/filestorage/resources/linkedAccounts/types/index.d.ts +1 -0
  896. package/api/resources/filestorage/resources/linkedAccounts/types/index.js +17 -0
  897. package/api/resources/filestorage/resources/passthrough/client/Client.d.ts +1 -0
  898. package/api/resources/filestorage/resources/passthrough/client/Client.js +2 -1
  899. package/api/resources/filestorage/resources/regenerateKey/client/Client.d.ts +6 -0
  900. package/api/resources/filestorage/resources/regenerateKey/client/Client.js +7 -1
  901. package/api/resources/filestorage/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +6 -0
  902. package/api/resources/filestorage/resources/selectiveSync/client/Client.d.ts +14 -0
  903. package/api/resources/filestorage/resources/selectiveSync/client/Client.js +23 -8
  904. package/api/resources/filestorage/resources/selectiveSync/client/requests/LinkedAccountSelectiveSyncConfigurationListRequest.d.ts +8 -0
  905. package/api/resources/filestorage/resources/selectiveSync/client/requests/SelectiveSyncMetaListRequest.d.ts +4 -0
  906. package/api/resources/filestorage/resources/syncStatus/client/Client.d.ts +4 -0
  907. package/api/resources/filestorage/resources/syncStatus/client/Client.js +8 -5
  908. package/api/resources/filestorage/resources/syncStatus/client/requests/SyncStatusListRequest.d.ts +4 -0
  909. package/api/resources/filestorage/resources/users/client/Client.d.ts +7 -0
  910. package/api/resources/filestorage/resources/users/client/Client.js +23 -16
  911. package/api/resources/filestorage/resources/users/client/requests/UsersListRequest.d.ts +4 -0
  912. package/api/resources/filestorage/resources/users/client/requests/UsersRetrieveRequest.d.ts +4 -0
  913. package/api/resources/filestorage/resources/webhookReceivers/client/Client.d.ts +4 -0
  914. package/api/resources/filestorage/resources/webhookReceivers/client/Client.js +7 -2
  915. package/api/resources/filestorage/types/AccountDetailsAndActions.d.ts +3 -0
  916. package/api/resources/filestorage/types/AccountDetailsAndActionsStatusEnum.d.ts +3 -3
  917. package/api/resources/filestorage/types/AuditLogEvent.d.ts +36 -36
  918. package/api/resources/filestorage/types/AuditLogEventEventType.d.ts +30 -30
  919. package/api/resources/filestorage/types/AuditLogEventRole.d.ts +6 -6
  920. package/api/resources/filestorage/types/AvailableActions.d.ts +3 -0
  921. package/api/resources/filestorage/types/CategoriesEnum.d.ts +7 -7
  922. package/api/resources/filestorage/types/CategoryEnum.d.ts +7 -7
  923. package/api/resources/filestorage/types/ConditionSchema.d.ts +8 -8
  924. package/api/resources/filestorage/types/ConditionSchemaConditionType.d.ts +7 -7
  925. package/api/resources/filestorage/types/ConditionTypeEnum.d.ts +7 -7
  926. package/api/resources/filestorage/types/DataPassthroughRequest.d.ts +3 -0
  927. package/api/resources/filestorage/types/Drive.d.ts +4 -0
  928. package/api/resources/filestorage/types/EnabledActionsEnum.d.ts +2 -2
  929. package/api/resources/filestorage/types/EncodingEnum.d.ts +3 -3
  930. package/api/resources/filestorage/types/EventTypeEnum.d.ts +30 -30
  931. package/api/resources/filestorage/types/FileRequest.d.ts +4 -0
  932. package/api/resources/filestorage/types/File_.d.ts +4 -0
  933. package/api/resources/filestorage/types/Folder.d.ts +4 -0
  934. package/api/resources/filestorage/types/FolderRequest.d.ts +4 -0
  935. package/api/resources/filestorage/types/Group.d.ts +4 -0
  936. package/api/resources/filestorage/types/Issue.d.ts +2 -2
  937. package/api/resources/filestorage/types/IssueStatus.d.ts +2 -2
  938. package/api/resources/filestorage/types/IssueStatusEnum.d.ts +2 -2
  939. package/api/resources/filestorage/types/LinkedAccountCondition.d.ts +1 -1
  940. package/api/resources/filestorage/types/MethodEnum.d.ts +7 -7
  941. package/api/resources/filestorage/types/ModelOperation.d.ts +3 -0
  942. package/api/resources/filestorage/types/MultipartFormFieldRequest.d.ts +6 -3
  943. package/api/resources/filestorage/types/MultipartFormFieldRequestEncoding.d.ts +3 -3
  944. package/api/resources/filestorage/types/Permission.d.ts +7 -4
  945. package/api/resources/filestorage/types/PermissionRequest.d.ts +7 -4
  946. package/api/resources/filestorage/types/PermissionRequestRolesItem.d.ts +3 -3
  947. package/api/resources/filestorage/types/PermissionRequestType.d.ts +4 -4
  948. package/api/resources/filestorage/types/PermissionRolesItem.d.ts +3 -3
  949. package/api/resources/filestorage/types/PermissionType.d.ts +4 -4
  950. package/api/resources/filestorage/types/RemoteKey.d.ts +3 -0
  951. package/api/resources/filestorage/types/RemoteResponse.d.ts +3 -0
  952. package/api/resources/filestorage/types/RequestFormatEnum.d.ts +3 -3
  953. package/api/resources/filestorage/types/ResponseTypeEnum.d.ts +2 -2
  954. package/api/resources/filestorage/types/RoleEnum.d.ts +6 -6
  955. package/api/resources/filestorage/types/RolesEnum.d.ts +3 -3
  956. package/api/resources/filestorage/types/SelectiveSyncConfigurationsUsageEnum.d.ts +2 -2
  957. package/api/resources/filestorage/types/SyncStatus.d.ts +3 -0
  958. package/api/resources/filestorage/types/SyncStatusStatusEnum.d.ts +6 -6
  959. package/api/resources/filestorage/types/TypeEnum.d.ts +4 -4
  960. package/api/resources/filestorage/types/User.d.ts +4 -0
  961. package/api/resources/filestorage/types/index.d.ts +15 -21
  962. package/api/resources/filestorage/types/index.js +15 -21
  963. package/api/resources/hris/client/Client.d.ts +1 -0
  964. package/api/resources/hris/index.d.ts +1 -1
  965. package/api/resources/hris/index.js +1 -1
  966. package/api/resources/hris/resources/accountDetails/client/Client.d.ts +4 -0
  967. package/api/resources/hris/resources/accountDetails/client/Client.js +5 -1
  968. package/api/resources/hris/resources/accountToken/client/Client.d.ts +1 -0
  969. package/api/resources/hris/resources/accountToken/client/Client.js +2 -1
  970. package/api/resources/hris/resources/asyncPassthrough/client/Client.d.ts +15 -0
  971. package/api/resources/hris/resources/asyncPassthrough/client/Client.js +18 -2
  972. package/api/resources/hris/resources/auditTrail/client/Client.d.ts +4 -0
  973. package/api/resources/hris/resources/auditTrail/client/Client.js +12 -9
  974. package/api/resources/hris/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +4 -0
  975. package/api/resources/hris/resources/availableActions/client/Client.d.ts +1 -0
  976. package/api/resources/hris/resources/availableActions/client/Client.js +2 -1
  977. package/api/resources/hris/resources/bankInfo/client/Client.d.ts +17 -0
  978. package/api/resources/hris/resources/bankInfo/client/Client.js +42 -25
  979. package/api/resources/hris/resources/bankInfo/client/requests/BankInfoListRequest.d.ts +12 -2
  980. package/api/resources/hris/resources/bankInfo/client/requests/BankInfoRetrieveRequest.d.ts +8 -0
  981. package/api/resources/hris/resources/bankInfo/index.d.ts +1 -0
  982. package/api/resources/hris/resources/bankInfo/index.js +1 -0
  983. package/api/resources/hris/resources/bankInfo/types/index.d.ts +2 -0
  984. package/api/resources/hris/resources/bankInfo/types/index.js +18 -0
  985. package/api/resources/hris/resources/benefits/client/Client.d.ts +11 -0
  986. package/api/resources/hris/resources/benefits/client/Client.js +29 -18
  987. package/api/resources/hris/resources/benefits/client/requests/BenefitsListRequest.d.ts +6 -0
  988. package/api/resources/hris/resources/benefits/client/requests/BenefitsRetrieveRequest.d.ts +6 -0
  989. package/api/resources/hris/resources/companies/client/Client.d.ts +7 -0
  990. package/api/resources/hris/resources/companies/client/Client.js +22 -15
  991. package/api/resources/hris/resources/companies/client/requests/CompaniesListRequest.d.ts +4 -0
  992. package/api/resources/hris/resources/companies/client/requests/CompaniesRetrieveRequest.d.ts +4 -0
  993. package/api/resources/hris/resources/deleteAccount/client/Client.d.ts +4 -0
  994. package/api/resources/hris/resources/deleteAccount/client/Client.js +5 -1
  995. package/api/resources/hris/resources/dependents/client/Client.d.ts +7 -0
  996. package/api/resources/hris/resources/dependents/client/Client.js +24 -17
  997. package/api/resources/hris/resources/dependents/client/requests/DependentsListRequest.d.ts +4 -0
  998. package/api/resources/hris/resources/dependents/client/requests/DependentsRetrieveRequest.d.ts +4 -0
  999. package/api/resources/hris/resources/employeePayrollRuns/client/Client.d.ts +11 -0
  1000. package/api/resources/hris/resources/employeePayrollRuns/client/Client.js +34 -23
  1001. package/api/resources/hris/resources/employeePayrollRuns/client/requests/EmployeePayrollRunsListRequest.d.ts +6 -0
  1002. package/api/resources/hris/resources/employeePayrollRuns/client/requests/EmployeePayrollRunsRetrieveRequest.d.ts +6 -0
  1003. package/api/resources/hris/resources/employeePayrollRuns/index.d.ts +1 -0
  1004. package/api/resources/hris/resources/employeePayrollRuns/index.js +1 -0
  1005. package/api/resources/hris/resources/employeePayrollRuns/types/index.d.ts +2 -0
  1006. package/api/resources/hris/resources/employeePayrollRuns/types/index.js +18 -0
  1007. package/api/resources/hris/resources/employees/client/Client.d.ts +40 -0
  1008. package/api/resources/hris/resources/employees/client/Client.js +91 -48
  1009. package/api/resources/hris/resources/employees/client/requests/EmployeeEndpointRequest.d.ts +22 -0
  1010. package/api/resources/hris/resources/employees/client/requests/EmployeesListRequest.d.ts +12 -3
  1011. package/api/resources/hris/resources/employees/client/requests/EmployeesRetrieveRequest.d.ts +8 -0
  1012. package/api/resources/hris/resources/employees/index.d.ts +1 -0
  1013. package/api/resources/hris/resources/employees/index.js +1 -0
  1014. package/api/resources/hris/resources/employees/types/IgnoreCommonModelRequestReason.d.ts +5 -0
  1015. package/api/resources/hris/resources/employees/types/index.d.ts +8 -0
  1016. package/api/resources/hris/resources/employees/types/index.js +24 -0
  1017. package/api/resources/hris/resources/employerBenefits/client/Client.d.ts +7 -0
  1018. package/api/resources/hris/resources/employerBenefits/client/Client.js +22 -15
  1019. package/api/resources/hris/resources/employerBenefits/client/requests/EmployerBenefitsListRequest.d.ts +4 -0
  1020. package/api/resources/hris/resources/employerBenefits/client/requests/EmployerBenefitsRetrieveRequest.d.ts +4 -0
  1021. package/api/resources/hris/resources/employments/client/Client.d.ts +16 -0
  1022. package/api/resources/hris/resources/employments/client/Client.js +39 -23
  1023. package/api/resources/hris/resources/employments/client/requests/EmploymentsListRequest.d.ts +9 -0
  1024. package/api/resources/hris/resources/employments/client/requests/EmploymentsRetrieveRequest.d.ts +8 -0
  1025. package/api/resources/hris/resources/employments/index.d.ts +1 -0
  1026. package/api/resources/hris/resources/employments/index.js +1 -0
  1027. package/api/resources/hris/resources/employments/types/index.d.ts +7 -0
  1028. package/api/resources/hris/resources/employments/types/index.js +23 -0
  1029. package/api/resources/hris/resources/forceResync/client/Client.d.ts +4 -0
  1030. package/api/resources/hris/resources/forceResync/client/Client.js +5 -1
  1031. package/api/resources/hris/resources/generateKey/client/Client.d.ts +6 -0
  1032. package/api/resources/hris/resources/generateKey/client/Client.js +7 -1
  1033. package/api/resources/hris/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +6 -0
  1034. package/api/resources/hris/resources/groups/client/Client.d.ts +13 -0
  1035. package/api/resources/hris/resources/groups/client/Client.js +33 -20
  1036. package/api/resources/hris/resources/groups/client/requests/GroupsListRequest.d.ts +7 -0
  1037. package/api/resources/hris/resources/groups/client/requests/GroupsRetrieveRequest.d.ts +7 -0
  1038. package/api/resources/hris/resources/index.d.ts +22 -11
  1039. package/api/resources/hris/resources/index.js +23 -12
  1040. package/api/resources/hris/resources/issues/client/Client.d.ts +9 -0
  1041. package/api/resources/hris/resources/issues/client/Client.js +26 -17
  1042. package/api/resources/hris/resources/issues/client/requests/IssuesListRequest.d.ts +8 -2
  1043. package/api/resources/hris/resources/issues/index.d.ts +1 -0
  1044. package/api/resources/hris/resources/issues/index.js +1 -0
  1045. package/api/resources/hris/resources/issues/types/index.d.ts +1 -0
  1046. package/api/resources/hris/resources/issues/types/index.js +17 -0
  1047. package/api/resources/hris/resources/linkToken/client/Client.d.ts +1 -0
  1048. package/api/resources/hris/resources/linkToken/client/Client.js +2 -1
  1049. package/api/resources/hris/resources/linkedAccounts/client/Client.d.ts +6 -0
  1050. package/api/resources/hris/resources/linkedAccounts/client/Client.js +21 -16
  1051. package/api/resources/hris/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.d.ts +13 -7
  1052. package/api/resources/hris/resources/linkedAccounts/index.d.ts +1 -0
  1053. package/api/resources/hris/resources/linkedAccounts/index.js +1 -0
  1054. package/api/resources/hris/resources/linkedAccounts/types/index.d.ts +1 -0
  1055. package/api/resources/hris/resources/linkedAccounts/types/index.js +17 -0
  1056. package/api/resources/hris/resources/locations/client/Client.d.ts +14 -0
  1057. package/api/resources/hris/resources/locations/client/Client.js +34 -20
  1058. package/api/resources/hris/resources/locations/client/requests/LocationsListRequest.d.ts +10 -2
  1059. package/api/resources/hris/resources/locations/client/requests/LocationsRetrieveRequest.d.ts +7 -0
  1060. package/api/resources/hris/resources/locations/index.d.ts +1 -0
  1061. package/api/resources/hris/resources/locations/index.js +1 -0
  1062. package/api/resources/hris/resources/locations/types/index.d.ts +1 -0
  1063. package/api/resources/hris/resources/locations/types/index.js +17 -0
  1064. package/api/resources/hris/resources/passthrough/client/Client.d.ts +1 -0
  1065. package/api/resources/hris/resources/passthrough/client/Client.js +2 -1
  1066. package/api/resources/hris/resources/payGroups/client/Client.d.ts +7 -0
  1067. package/api/resources/hris/resources/payGroups/client/Client.js +22 -15
  1068. package/api/resources/hris/resources/payGroups/client/requests/PayGroupsListRequest.d.ts +4 -0
  1069. package/api/resources/hris/resources/payGroups/client/requests/PayGroupsRetrieveRequest.d.ts +4 -0
  1070. package/api/resources/hris/resources/payrollRuns/client/Client.d.ts +14 -0
  1071. package/api/resources/hris/resources/payrollRuns/client/Client.js +38 -24
  1072. package/api/resources/hris/resources/payrollRuns/client/requests/PayrollRunsListRequest.d.ts +13 -5
  1073. package/api/resources/hris/resources/payrollRuns/client/requests/PayrollRunsRetrieveRequest.d.ts +7 -0
  1074. package/api/resources/hris/resources/payrollRuns/index.d.ts +1 -0
  1075. package/api/resources/hris/resources/payrollRuns/index.js +1 -0
  1076. package/api/resources/hris/resources/payrollRuns/types/index.d.ts +5 -0
  1077. package/api/resources/hris/resources/payrollRuns/types/index.js +21 -0
  1078. package/api/resources/hris/resources/regenerateKey/client/Client.d.ts +6 -0
  1079. package/api/resources/hris/resources/regenerateKey/client/Client.js +7 -1
  1080. package/api/resources/hris/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +6 -0
  1081. package/api/resources/hris/resources/selectiveSync/client/Client.d.ts +14 -0
  1082. package/api/resources/hris/resources/selectiveSync/client/Client.js +23 -8
  1083. package/api/resources/hris/resources/selectiveSync/client/requests/LinkedAccountSelectiveSyncConfigurationListRequest.d.ts +8 -0
  1084. package/api/resources/hris/resources/selectiveSync/client/requests/SelectiveSyncMetaListRequest.d.ts +4 -0
  1085. package/api/resources/hris/resources/syncStatus/client/Client.d.ts +4 -0
  1086. package/api/resources/hris/resources/syncStatus/client/Client.js +8 -5
  1087. package/api/resources/hris/resources/syncStatus/client/requests/SyncStatusListRequest.d.ts +4 -0
  1088. package/api/resources/hris/resources/teams/client/Client.d.ts +11 -0
  1089. package/api/resources/hris/resources/teams/client/Client.js +29 -18
  1090. package/api/resources/hris/resources/teams/client/requests/TeamsListRequest.d.ts +6 -0
  1091. package/api/resources/hris/resources/teams/client/requests/TeamsRetrieveRequest.d.ts +6 -0
  1092. package/api/resources/hris/resources/timeOff/client/Client.d.ts +30 -0
  1093. package/api/resources/hris/resources/timeOff/client/Client.js +62 -30
  1094. package/api/resources/hris/resources/timeOff/client/requests/TimeOffEndpointRequest.d.ts +11 -0
  1095. package/api/resources/hris/resources/timeOff/client/requests/TimeOffListRequest.d.ts +21 -11
  1096. package/api/resources/hris/resources/timeOff/client/requests/TimeOffRetrieveRequest.d.ts +8 -0
  1097. package/api/resources/hris/resources/timeOff/index.d.ts +1 -0
  1098. package/api/resources/hris/resources/timeOff/index.js +1 -0
  1099. package/api/resources/hris/resources/timeOff/types/index.d.ts +8 -0
  1100. package/api/resources/hris/resources/timeOff/types/index.js +24 -0
  1101. package/api/resources/hris/resources/timeOffBalances/client/Client.d.ts +16 -0
  1102. package/api/resources/hris/resources/timeOffBalances/client/Client.js +39 -23
  1103. package/api/resources/hris/resources/timeOffBalances/client/requests/TimeOffBalancesListRequest.d.ts +15 -6
  1104. package/api/resources/hris/resources/timeOffBalances/client/requests/TimeOffBalancesRetrieveRequest.d.ts +8 -0
  1105. package/api/resources/hris/resources/timeOffBalances/index.d.ts +1 -0
  1106. package/api/resources/hris/resources/timeOffBalances/index.js +1 -0
  1107. package/api/resources/hris/resources/timeOffBalances/types/index.d.ts +1 -0
  1108. package/api/resources/hris/resources/timeOffBalances/types/index.js +17 -0
  1109. package/api/resources/hris/resources/timesheetEntries/client/Client.d.ts +22 -0
  1110. package/api/resources/hris/resources/timesheetEntries/client/Client.js +50 -26
  1111. package/api/resources/hris/resources/timesheetEntries/client/requests/TimesheetEntriesListRequest.d.ts +6 -0
  1112. package/api/resources/hris/resources/timesheetEntries/client/requests/TimesheetEntriesRetrieveRequest.d.ts +4 -0
  1113. package/api/resources/hris/resources/timesheetEntries/client/requests/TimesheetEntryEndpointRequest.d.ts +11 -0
  1114. package/api/resources/hris/resources/timesheetEntries/index.d.ts +1 -0
  1115. package/api/resources/hris/resources/timesheetEntries/index.js +1 -0
  1116. package/api/resources/hris/resources/timesheetEntries/types/index.d.ts +1 -0
  1117. package/api/resources/hris/resources/timesheetEntries/types/index.js +17 -0
  1118. package/api/resources/hris/resources/webhookReceivers/client/Client.d.ts +4 -0
  1119. package/api/resources/hris/resources/webhookReceivers/client/Client.js +7 -2
  1120. package/api/resources/hris/types/AccountDetailsAndActions.d.ts +3 -0
  1121. package/api/resources/hris/types/AccountDetailsAndActionsStatusEnum.d.ts +3 -3
  1122. package/api/resources/hris/types/AccountTypeEnum.d.ts +2 -2
  1123. package/api/resources/hris/types/AuditLogEvent.d.ts +36 -36
  1124. package/api/resources/hris/types/AuditLogEventEventType.d.ts +30 -30
  1125. package/api/resources/hris/types/AuditLogEventRole.d.ts +6 -6
  1126. package/api/resources/hris/types/AvailableActions.d.ts +3 -0
  1127. package/api/resources/hris/types/BankInfo.d.ts +5 -2
  1128. package/api/resources/hris/types/BankInfoAccountType.d.ts +2 -2
  1129. package/api/resources/hris/types/Benefit.d.ts +3 -0
  1130. package/api/resources/hris/types/BenefitPlanTypeEnum.d.ts +5 -5
  1131. package/api/resources/hris/types/CategoriesEnum.d.ts +7 -7
  1132. package/api/resources/hris/types/CategoryEnum.d.ts +7 -7
  1133. package/api/resources/hris/types/Company.d.ts +3 -0
  1134. package/api/resources/hris/types/ConditionSchema.d.ts +8 -8
  1135. package/api/resources/hris/types/ConditionSchemaConditionType.d.ts +7 -7
  1136. package/api/resources/hris/types/ConditionTypeEnum.d.ts +7 -7
  1137. package/api/resources/hris/types/CountryEnum.d.ts +249 -249
  1138. package/api/resources/hris/types/DataPassthroughRequest.d.ts +3 -0
  1139. package/api/resources/hris/types/Deduction.d.ts +3 -0
  1140. package/api/resources/hris/types/Dependent.d.ts +11 -8
  1141. package/api/resources/hris/types/DependentGender.d.ts +5 -5
  1142. package/api/resources/hris/types/DependentRelationship.d.ts +3 -3
  1143. package/api/resources/hris/types/Earning.d.ts +7 -4
  1144. package/api/resources/hris/types/EarningType.d.ts +4 -4
  1145. package/api/resources/hris/types/EarningTypeEnum.d.ts +4 -4
  1146. package/api/resources/hris/types/Employee.d.ts +24 -21
  1147. package/api/resources/hris/types/EmployeeEmploymentStatus.d.ts +3 -3
  1148. package/api/resources/hris/types/EmployeeEthnicity.d.ts +8 -8
  1149. package/api/resources/hris/types/EmployeeGender.d.ts +5 -5
  1150. package/api/resources/hris/types/EmployeeMaritalStatus.d.ts +5 -5
  1151. package/api/resources/hris/types/EmployeePayrollRun.d.ts +3 -0
  1152. package/api/resources/hris/types/EmployeeRequest.d.ts +24 -21
  1153. package/api/resources/hris/types/EmployeeRequestEmploymentStatus.d.ts +3 -3
  1154. package/api/resources/hris/types/EmployeeRequestEthnicity.d.ts +8 -8
  1155. package/api/resources/hris/types/EmployeeRequestGender.d.ts +5 -5
  1156. package/api/resources/hris/types/EmployeeRequestMaritalStatus.d.ts +5 -5
  1157. package/api/resources/hris/types/EmployerBenefit.d.ts +8 -5
  1158. package/api/resources/hris/types/EmployerBenefitBenefitPlanType.d.ts +5 -5
  1159. package/api/resources/hris/types/Employment.d.ts +336 -333
  1160. package/api/resources/hris/types/EmploymentEmploymentType.d.ts +5 -5
  1161. package/api/resources/hris/types/EmploymentFlsaStatus.d.ts +4 -4
  1162. package/api/resources/hris/types/EmploymentPayCurrency.d.ts +306 -306
  1163. package/api/resources/hris/types/EmploymentPayFrequency.d.ts +9 -9
  1164. package/api/resources/hris/types/EmploymentPayPeriod.d.ts +9 -9
  1165. package/api/resources/hris/types/EmploymentStatusEnum.d.ts +3 -3
  1166. package/api/resources/hris/types/EmploymentTypeEnum.d.ts +5 -5
  1167. package/api/resources/hris/types/EnabledActionsEnum.d.ts +2 -2
  1168. package/api/resources/hris/types/EncodingEnum.d.ts +3 -3
  1169. package/api/resources/hris/types/EthnicityEnum.d.ts +8 -8
  1170. package/api/resources/hris/types/EventTypeEnum.d.ts +30 -30
  1171. package/api/resources/hris/types/FlsaStatusEnum.d.ts +4 -4
  1172. package/api/resources/hris/types/GenderEnum.d.ts +5 -5
  1173. package/api/resources/hris/types/Group.d.ts +8 -5
  1174. package/api/resources/hris/types/GroupType.d.ts +5 -5
  1175. package/api/resources/hris/types/GroupTypeEnum.d.ts +5 -5
  1176. package/api/resources/hris/types/Issue.d.ts +2 -2
  1177. package/api/resources/hris/types/IssueStatus.d.ts +2 -2
  1178. package/api/resources/hris/types/IssueStatusEnum.d.ts +2 -2
  1179. package/api/resources/hris/types/LinkedAccountCondition.d.ts +1 -1
  1180. package/api/resources/hris/types/Location.d.ts +254 -251
  1181. package/api/resources/hris/types/LocationCountry.d.ts +249 -249
  1182. package/api/resources/hris/types/LocationLocationType.d.ts +2 -2
  1183. package/api/resources/hris/types/LocationTypeEnum.d.ts +2 -2
  1184. package/api/resources/hris/types/MaritalStatusEnum.d.ts +5 -5
  1185. package/api/resources/hris/types/MethodEnum.d.ts +7 -7
  1186. package/api/resources/hris/types/ModelOperation.d.ts +3 -0
  1187. package/api/resources/hris/types/MultipartFormFieldRequest.d.ts +6 -3
  1188. package/api/resources/hris/types/MultipartFormFieldRequestEncoding.d.ts +3 -3
  1189. package/api/resources/hris/types/PayCurrencyEnum.d.ts +306 -306
  1190. package/api/resources/hris/types/PayFrequencyEnum.d.ts +9 -9
  1191. package/api/resources/hris/types/PayGroup.d.ts +3 -0
  1192. package/api/resources/hris/types/PayPeriodEnum.d.ts +9 -9
  1193. package/api/resources/hris/types/PayrollRun.d.ts +13 -10
  1194. package/api/resources/hris/types/PayrollRunRunState.d.ts +5 -5
  1195. package/api/resources/hris/types/PayrollRunRunType.d.ts +5 -5
  1196. package/api/resources/hris/types/PolicyTypeEnum.d.ts +6 -6
  1197. package/api/resources/hris/types/ReasonEnum.d.ts +3 -3
  1198. package/api/resources/hris/types/RelationshipEnum.d.ts +3 -3
  1199. package/api/resources/hris/types/RemoteKey.d.ts +3 -0
  1200. package/api/resources/hris/types/RemoteResponse.d.ts +3 -0
  1201. package/api/resources/hris/types/RequestFormatEnum.d.ts +3 -3
  1202. package/api/resources/hris/types/RequestTypeEnum.d.ts +6 -6
  1203. package/api/resources/hris/types/ResponseTypeEnum.d.ts +2 -2
  1204. package/api/resources/hris/types/RoleEnum.d.ts +6 -6
  1205. package/api/resources/hris/types/RunStateEnum.d.ts +5 -5
  1206. package/api/resources/hris/types/RunTypeEnum.d.ts +5 -5
  1207. package/api/resources/hris/types/SelectiveSyncConfigurationsUsageEnum.d.ts +2 -2
  1208. package/api/resources/hris/types/SyncStatus.d.ts +3 -0
  1209. package/api/resources/hris/types/SyncStatusStatusEnum.d.ts +6 -6
  1210. package/api/resources/hris/types/Tax.d.ts +3 -0
  1211. package/api/resources/hris/types/Team.d.ts +3 -0
  1212. package/api/resources/hris/types/TimeOff.d.ts +16 -13
  1213. package/api/resources/hris/types/TimeOffBalance.d.ts +9 -6
  1214. package/api/resources/hris/types/TimeOffBalancePolicyType.d.ts +6 -6
  1215. package/api/resources/hris/types/TimeOffRequest.d.ts +16 -13
  1216. package/api/resources/hris/types/TimeOffRequestRequestType.d.ts +6 -6
  1217. package/api/resources/hris/types/TimeOffRequestStatus.d.ts +5 -5
  1218. package/api/resources/hris/types/TimeOffRequestType.d.ts +6 -6
  1219. package/api/resources/hris/types/TimeOffRequestUnits.d.ts +2 -2
  1220. package/api/resources/hris/types/TimeOffStatus.d.ts +5 -5
  1221. package/api/resources/hris/types/TimeOffStatusEnum.d.ts +5 -5
  1222. package/api/resources/hris/types/TimeOffUnits.d.ts +2 -2
  1223. package/api/resources/hris/types/TimesheetEntry.d.ts +3 -1
  1224. package/api/resources/hris/types/TimesheetEntryRequest.d.ts +3 -1
  1225. package/api/resources/hris/types/UnitsEnum.d.ts +2 -2
  1226. package/api/resources/hris/types/index.d.ts +22 -59
  1227. package/api/resources/hris/types/index.js +22 -59
  1228. package/api/resources/ticketing/client/Client.d.ts +1 -0
  1229. package/api/resources/ticketing/index.d.ts +1 -1
  1230. package/api/resources/ticketing/index.js +1 -1
  1231. package/api/resources/ticketing/resources/accountDetails/client/Client.d.ts +4 -0
  1232. package/api/resources/ticketing/resources/accountDetails/client/Client.js +5 -1
  1233. package/api/resources/ticketing/resources/accountToken/client/Client.d.ts +1 -0
  1234. package/api/resources/ticketing/resources/accountToken/client/Client.js +2 -1
  1235. package/api/resources/ticketing/resources/accounts/client/Client.d.ts +7 -0
  1236. package/api/resources/ticketing/resources/accounts/client/Client.js +22 -15
  1237. package/api/resources/ticketing/resources/accounts/client/requests/AccountsListRequest.d.ts +4 -0
  1238. package/api/resources/ticketing/resources/accounts/client/requests/AccountsRetrieveRequest.d.ts +4 -0
  1239. package/api/resources/ticketing/resources/asyncPassthrough/client/Client.d.ts +15 -0
  1240. package/api/resources/ticketing/resources/asyncPassthrough/client/Client.js +18 -2
  1241. package/api/resources/ticketing/resources/attachments/client/Client.d.ts +24 -0
  1242. package/api/resources/ticketing/resources/attachments/client/Client.js +78 -33
  1243. package/api/resources/ticketing/resources/attachments/client/requests/AttachmentsListRequest.d.ts +6 -0
  1244. package/api/resources/ticketing/resources/attachments/client/requests/AttachmentsRetrieveRequest.d.ts +6 -0
  1245. package/api/resources/ticketing/resources/attachments/client/requests/TicketingAttachmentEndpointRequest.d.ts +11 -0
  1246. package/api/resources/ticketing/resources/auditTrail/client/Client.d.ts +4 -0
  1247. package/api/resources/ticketing/resources/auditTrail/client/Client.js +12 -9
  1248. package/api/resources/ticketing/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +4 -0
  1249. package/api/resources/ticketing/resources/availableActions/client/Client.d.ts +1 -0
  1250. package/api/resources/ticketing/resources/availableActions/client/Client.js +2 -1
  1251. package/api/resources/ticketing/resources/collections/client/Client.d.ts +21 -0
  1252. package/api/resources/ticketing/resources/collections/client/Client.js +52 -30
  1253. package/api/resources/ticketing/resources/collections/client/requests/CollectionsListRequest.d.ts +11 -2
  1254. package/api/resources/ticketing/resources/collections/client/requests/CollectionsRetrieveRequest.d.ts +8 -0
  1255. package/api/resources/ticketing/resources/collections/client/requests/CollectionsUsersListRequest.d.ts +6 -0
  1256. package/api/resources/ticketing/resources/collections/index.d.ts +1 -0
  1257. package/api/resources/ticketing/resources/collections/index.js +1 -0
  1258. package/api/resources/ticketing/resources/collections/types/index.d.ts +2 -0
  1259. package/api/resources/ticketing/resources/collections/types/index.js +18 -0
  1260. package/api/resources/ticketing/resources/comments/client/Client.d.ts +22 -0
  1261. package/api/resources/ticketing/resources/comments/client/Client.js +48 -24
  1262. package/api/resources/ticketing/resources/comments/client/requests/CommentEndpointRequest.d.ts +9 -0
  1263. package/api/resources/ticketing/resources/comments/client/requests/CommentsListRequest.d.ts +6 -0
  1264. package/api/resources/ticketing/resources/comments/client/requests/CommentsRetrieveRequest.d.ts +6 -0
  1265. package/api/resources/ticketing/resources/comments/index.d.ts +1 -0
  1266. package/api/resources/ticketing/resources/comments/index.js +1 -0
  1267. package/api/resources/ticketing/resources/comments/types/index.d.ts +2 -0
  1268. package/api/resources/ticketing/resources/comments/types/index.js +18 -0
  1269. package/api/resources/ticketing/resources/contacts/client/Client.d.ts +11 -0
  1270. package/api/resources/ticketing/resources/contacts/client/Client.js +28 -17
  1271. package/api/resources/ticketing/resources/contacts/client/requests/ContactsListRequest.d.ts +6 -0
  1272. package/api/resources/ticketing/resources/contacts/client/requests/ContactsRetrieveRequest.d.ts +6 -0
  1273. package/api/resources/ticketing/resources/deleteAccount/client/Client.d.ts +4 -0
  1274. package/api/resources/ticketing/resources/deleteAccount/client/Client.js +5 -1
  1275. package/api/resources/ticketing/resources/forceResync/client/Client.d.ts +4 -0
  1276. package/api/resources/ticketing/resources/forceResync/client/Client.js +5 -1
  1277. package/api/resources/ticketing/resources/generateKey/client/Client.d.ts +6 -0
  1278. package/api/resources/ticketing/resources/generateKey/client/Client.js +7 -1
  1279. package/api/resources/ticketing/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +6 -0
  1280. package/api/resources/ticketing/resources/index.d.ts +14 -7
  1281. package/api/resources/ticketing/resources/index.js +15 -8
  1282. package/api/resources/ticketing/resources/issues/client/Client.d.ts +9 -0
  1283. package/api/resources/ticketing/resources/issues/client/Client.js +26 -17
  1284. package/api/resources/ticketing/resources/issues/client/requests/IssuesListRequest.d.ts +8 -2
  1285. package/api/resources/ticketing/resources/issues/index.d.ts +1 -0
  1286. package/api/resources/ticketing/resources/issues/index.js +1 -0
  1287. package/api/resources/ticketing/resources/issues/types/index.d.ts +1 -0
  1288. package/api/resources/ticketing/resources/issues/types/index.js +17 -0
  1289. package/api/resources/ticketing/resources/linkToken/client/Client.d.ts +1 -0
  1290. package/api/resources/ticketing/resources/linkToken/client/Client.js +2 -1
  1291. package/api/resources/ticketing/resources/linkedAccounts/client/Client.d.ts +6 -0
  1292. package/api/resources/ticketing/resources/linkedAccounts/client/Client.js +21 -16
  1293. package/api/resources/ticketing/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.d.ts +13 -7
  1294. package/api/resources/ticketing/resources/linkedAccounts/index.d.ts +1 -0
  1295. package/api/resources/ticketing/resources/linkedAccounts/index.js +1 -0
  1296. package/api/resources/ticketing/resources/linkedAccounts/types/index.d.ts +1 -0
  1297. package/api/resources/ticketing/resources/linkedAccounts/types/index.js +17 -0
  1298. package/api/resources/ticketing/resources/passthrough/client/Client.d.ts +1 -0
  1299. package/api/resources/ticketing/resources/passthrough/client/Client.js +2 -1
  1300. package/api/resources/ticketing/resources/projects/client/Client.d.ts +12 -0
  1301. package/api/resources/ticketing/resources/projects/client/Client.js +35 -22
  1302. package/api/resources/ticketing/resources/projects/client/requests/ProjectsListRequest.d.ts +4 -0
  1303. package/api/resources/ticketing/resources/projects/client/requests/ProjectsRetrieveRequest.d.ts +4 -0
  1304. package/api/resources/ticketing/resources/projects/client/requests/ProjectsUsersListRequest.d.ts +6 -0
  1305. package/api/resources/ticketing/resources/projects/index.d.ts +1 -0
  1306. package/api/resources/ticketing/resources/projects/index.js +1 -0
  1307. package/api/resources/ticketing/resources/projects/types/index.d.ts +1 -0
  1308. package/api/resources/ticketing/resources/projects/types/index.js +17 -0
  1309. package/api/resources/ticketing/resources/regenerateKey/client/Client.d.ts +6 -0
  1310. package/api/resources/ticketing/resources/regenerateKey/client/Client.js +7 -1
  1311. package/api/resources/ticketing/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +6 -0
  1312. package/api/resources/ticketing/resources/roles/client/Client.d.ts +7 -0
  1313. package/api/resources/ticketing/resources/roles/client/Client.js +22 -15
  1314. package/api/resources/ticketing/resources/roles/client/requests/RolesListRequest.d.ts +4 -0
  1315. package/api/resources/ticketing/resources/roles/client/requests/RolesRetrieveRequest.d.ts +4 -0
  1316. package/api/resources/ticketing/resources/selectiveSync/client/Client.d.ts +14 -0
  1317. package/api/resources/ticketing/resources/selectiveSync/client/Client.js +23 -8
  1318. package/api/resources/ticketing/resources/selectiveSync/client/requests/LinkedAccountSelectiveSyncConfigurationListRequest.d.ts +8 -0
  1319. package/api/resources/ticketing/resources/selectiveSync/client/requests/SelectiveSyncMetaListRequest.d.ts +4 -0
  1320. package/api/resources/ticketing/resources/syncStatus/client/Client.d.ts +4 -0
  1321. package/api/resources/ticketing/resources/syncStatus/client/Client.js +8 -5
  1322. package/api/resources/ticketing/resources/syncStatus/client/requests/SyncStatusListRequest.d.ts +4 -0
  1323. package/api/resources/ticketing/resources/tags/client/Client.d.ts +7 -0
  1324. package/api/resources/ticketing/resources/tags/client/Client.js +22 -15
  1325. package/api/resources/ticketing/resources/tags/client/requests/TagsListRequest.d.ts +4 -0
  1326. package/api/resources/ticketing/resources/tags/client/requests/TagsRetrieveRequest.d.ts +4 -0
  1327. package/api/resources/ticketing/resources/teams/client/Client.d.ts +7 -0
  1328. package/api/resources/ticketing/resources/teams/client/Client.js +22 -15
  1329. package/api/resources/ticketing/resources/teams/client/requests/TeamsListRequest.d.ts +4 -0
  1330. package/api/resources/ticketing/resources/teams/client/requests/TeamsRetrieveRequest.d.ts +4 -0
  1331. package/api/resources/ticketing/resources/tickets/client/Client.d.ts +58 -0
  1332. package/api/resources/ticketing/resources/tickets/client/Client.js +128 -64
  1333. package/api/resources/ticketing/resources/tickets/client/requests/PatchedTicketEndpointRequest.d.ts +16 -0
  1334. package/api/resources/ticketing/resources/tickets/client/requests/TicketEndpointRequest.d.ts +13 -0
  1335. package/api/resources/ticketing/resources/tickets/client/requests/TicketsCollaboratorsListRequest.d.ts +6 -0
  1336. package/api/resources/ticketing/resources/tickets/client/requests/TicketsListRequest.d.ts +18 -8
  1337. package/api/resources/ticketing/resources/tickets/client/requests/TicketsRemoteFieldClassesListRequest.d.ts +4 -0
  1338. package/api/resources/ticketing/resources/tickets/client/requests/TicketsRetrieveRequest.d.ts +8 -0
  1339. package/api/resources/ticketing/resources/tickets/index.d.ts +1 -0
  1340. package/api/resources/ticketing/resources/tickets/index.js +1 -0
  1341. package/api/resources/ticketing/resources/tickets/types/index.d.ts +9 -0
  1342. package/api/resources/ticketing/resources/tickets/types/index.js +25 -0
  1343. package/api/resources/ticketing/resources/users/client/Client.d.ts +11 -0
  1344. package/api/resources/ticketing/resources/users/client/Client.js +29 -18
  1345. package/api/resources/ticketing/resources/users/client/requests/UsersListRequest.d.ts +6 -0
  1346. package/api/resources/ticketing/resources/users/client/requests/UsersRetrieveRequest.d.ts +6 -0
  1347. package/api/resources/ticketing/resources/users/index.d.ts +1 -0
  1348. package/api/resources/ticketing/resources/users/index.js +1 -0
  1349. package/api/resources/ticketing/resources/users/types/index.d.ts +2 -0
  1350. package/api/resources/ticketing/resources/users/types/index.js +18 -0
  1351. package/api/resources/ticketing/resources/webhookReceivers/client/Client.d.ts +4 -0
  1352. package/api/resources/ticketing/resources/webhookReceivers/client/Client.js +7 -2
  1353. package/api/resources/ticketing/types/AccessLevelEnum.d.ts +3 -3
  1354. package/api/resources/ticketing/types/Account.d.ts +3 -0
  1355. package/api/resources/ticketing/types/AccountDetailsAndActions.d.ts +3 -0
  1356. package/api/resources/ticketing/types/AccountDetailsAndActionsStatusEnum.d.ts +3 -3
  1357. package/api/resources/ticketing/types/Attachment.d.ts +3 -0
  1358. package/api/resources/ticketing/types/AttachmentRequest.d.ts +3 -0
  1359. package/api/resources/ticketing/types/AuditLogEvent.d.ts +36 -36
  1360. package/api/resources/ticketing/types/AuditLogEventEventType.d.ts +30 -30
  1361. package/api/resources/ticketing/types/AuditLogEventRole.d.ts +6 -6
  1362. package/api/resources/ticketing/types/AvailableActions.d.ts +3 -0
  1363. package/api/resources/ticketing/types/CategoriesEnum.d.ts +7 -7
  1364. package/api/resources/ticketing/types/CategoryEnum.d.ts +7 -7
  1365. package/api/resources/ticketing/types/Collection.d.ts +8 -5
  1366. package/api/resources/ticketing/types/CollectionAccessLevel.d.ts +3 -3
  1367. package/api/resources/ticketing/types/CollectionCollectionType.d.ts +2 -2
  1368. package/api/resources/ticketing/types/CollectionTypeEnum.d.ts +2 -2
  1369. package/api/resources/ticketing/types/Comment.d.ts +3 -0
  1370. package/api/resources/ticketing/types/CommentRequest.d.ts +3 -0
  1371. package/api/resources/ticketing/types/ConditionSchema.d.ts +8 -8
  1372. package/api/resources/ticketing/types/ConditionSchemaConditionType.d.ts +7 -7
  1373. package/api/resources/ticketing/types/ConditionTypeEnum.d.ts +7 -7
  1374. package/api/resources/ticketing/types/Contact.d.ts +3 -0
  1375. package/api/resources/ticketing/types/DataPassthroughRequest.d.ts +3 -0
  1376. package/api/resources/ticketing/types/EnabledActionsEnum.d.ts +2 -2
  1377. package/api/resources/ticketing/types/EncodingEnum.d.ts +3 -3
  1378. package/api/resources/ticketing/types/EventTypeEnum.d.ts +30 -30
  1379. package/api/resources/ticketing/types/FieldFormatEnum.d.ts +6 -6
  1380. package/api/resources/ticketing/types/FieldTypeEnum.d.ts +6 -6
  1381. package/api/resources/ticketing/types/Issue.d.ts +2 -2
  1382. package/api/resources/ticketing/types/IssueStatus.d.ts +2 -2
  1383. package/api/resources/ticketing/types/IssueStatusEnum.d.ts +2 -2
  1384. package/api/resources/ticketing/types/ItemFormatEnum.d.ts +6 -6
  1385. package/api/resources/ticketing/types/ItemTypeEnum.d.ts +6 -6
  1386. package/api/resources/ticketing/types/LinkedAccountCondition.d.ts +1 -1
  1387. package/api/resources/ticketing/types/MethodEnum.d.ts +7 -7
  1388. package/api/resources/ticketing/types/ModelOperation.d.ts +3 -0
  1389. package/api/resources/ticketing/types/MultipartFormFieldRequest.d.ts +6 -3
  1390. package/api/resources/ticketing/types/MultipartFormFieldRequestEncoding.d.ts +3 -3
  1391. package/api/resources/ticketing/types/PatchedTicketRequest.d.ts +11 -8
  1392. package/api/resources/ticketing/types/PatchedTicketRequestPriority.d.ts +4 -4
  1393. package/api/resources/ticketing/types/PatchedTicketRequestStatus.d.ts +4 -4
  1394. package/api/resources/ticketing/types/PriorityEnum.d.ts +4 -4
  1395. package/api/resources/ticketing/types/Project.d.ts +3 -0
  1396. package/api/resources/ticketing/types/RemoteKey.d.ts +3 -0
  1397. package/api/resources/ticketing/types/RemoteResponse.d.ts +3 -0
  1398. package/api/resources/ticketing/types/RequestFormatEnum.d.ts +3 -3
  1399. package/api/resources/ticketing/types/ResponseTypeEnum.d.ts +2 -2
  1400. package/api/resources/ticketing/types/Role.d.ts +6 -3
  1401. package/api/resources/ticketing/types/RoleEnum.d.ts +6 -6
  1402. package/api/resources/ticketing/types/RoleTicketAccess.d.ts +3 -3
  1403. package/api/resources/ticketing/types/SelectiveSyncConfigurationsUsageEnum.d.ts +2 -2
  1404. package/api/resources/ticketing/types/SyncStatus.d.ts +3 -0
  1405. package/api/resources/ticketing/types/SyncStatusStatusEnum.d.ts +6 -6
  1406. package/api/resources/ticketing/types/Tag.d.ts +3 -0
  1407. package/api/resources/ticketing/types/Team.d.ts +3 -0
  1408. package/api/resources/ticketing/types/Ticket.d.ts +11 -8
  1409. package/api/resources/ticketing/types/TicketAccessEnum.d.ts +3 -3
  1410. package/api/resources/ticketing/types/TicketActionsEnum.d.ts +6 -6
  1411. package/api/resources/ticketing/types/TicketPriority.d.ts +4 -4
  1412. package/api/resources/ticketing/types/TicketRequest.d.ts +11 -8
  1413. package/api/resources/ticketing/types/TicketRequestPriority.d.ts +4 -4
  1414. package/api/resources/ticketing/types/TicketRequestStatus.d.ts +4 -4
  1415. package/api/resources/ticketing/types/TicketStatus.d.ts +4 -4
  1416. package/api/resources/ticketing/types/TicketStatusEnum.d.ts +4 -4
  1417. package/api/resources/ticketing/types/User.d.ts +3 -0
  1418. package/api/resources/ticketing/types/index.d.ts +19 -37
  1419. package/api/resources/ticketing/types/index.js +19 -37
  1420. package/core/fetcher/APIResponse.d.ts +1 -0
  1421. package/core/fetcher/Fetcher.d.ts +3 -6
  1422. package/core/fetcher/Fetcher.js +80 -35
  1423. package/core/fetcher/getHeader.d.ts +1 -0
  1424. package/core/fetcher/getHeader.js +12 -0
  1425. package/core/fetcher/index.d.ts +1 -0
  1426. package/core/fetcher/index.js +3 -1
  1427. package/core/index.d.ts +0 -1
  1428. package/core/index.js +0 -1
  1429. package/core/schemas/Schema.d.ts +1 -0
  1430. package/core/schemas/Schema.js +1 -0
  1431. package/core/schemas/builders/literals/booleanLiteral.d.ts +2 -0
  1432. package/core/schemas/builders/literals/booleanLiteral.js +29 -0
  1433. package/core/schemas/builders/literals/index.d.ts +1 -0
  1434. package/core/schemas/builders/literals/index.js +3 -1
  1435. package/core/schemas/builders/object/index.d.ts +2 -0
  1436. package/core/schemas/builders/object/index.js +3 -1
  1437. package/core/schemas/builders/object/objectWithoutOptionalProperties.d.ts +6 -0
  1438. package/core/schemas/builders/object/objectWithoutOptionalProperties.js +8 -0
  1439. package/dist/Client.d.ts +1 -0
  1440. package/dist/api/resources/accounting/client/Client.d.ts +1 -0
  1441. package/dist/api/resources/accounting/index.d.ts +1 -1
  1442. package/dist/api/resources/accounting/index.js +1 -1
  1443. package/dist/api/resources/accounting/resources/accountDetails/client/Client.d.ts +4 -0
  1444. package/dist/api/resources/accounting/resources/accountDetails/client/Client.js +5 -1
  1445. package/dist/api/resources/accounting/resources/accountToken/client/Client.d.ts +1 -0
  1446. package/dist/api/resources/accounting/resources/accountToken/client/Client.js +2 -1
  1447. package/dist/api/resources/accounting/resources/accountingPeriods/client/Client.d.ts +7 -0
  1448. package/dist/api/resources/accounting/resources/accountingPeriods/client/Client.js +17 -10
  1449. package/dist/api/resources/accounting/resources/accountingPeriods/client/requests/AccountingPeriodsListRequest.d.ts +4 -0
  1450. package/dist/api/resources/accounting/resources/accountingPeriods/client/requests/AccountingPeriodsRetrieveRequest.d.ts +4 -0
  1451. package/dist/api/resources/accounting/resources/accounts/client/Client.d.ts +30 -0
  1452. package/dist/api/resources/accounting/resources/accounts/client/Client.js +59 -27
  1453. package/dist/api/resources/accounting/resources/accounts/client/requests/AccountEndpointRequest.d.ts +13 -0
  1454. package/dist/api/resources/accounting/resources/accounts/client/requests/AccountsListRequest.d.ts +8 -0
  1455. package/dist/api/resources/accounting/resources/accounts/client/requests/AccountsRetrieveRequest.d.ts +8 -0
  1456. package/dist/api/resources/accounting/resources/accounts/index.d.ts +1 -0
  1457. package/dist/api/resources/accounting/resources/accounts/index.js +1 -0
  1458. package/dist/api/resources/accounting/resources/accounts/types/index.d.ts +4 -0
  1459. package/dist/api/resources/accounting/resources/accounts/types/index.js +20 -0
  1460. package/dist/api/resources/accounting/resources/addresses/client/Client.d.ts +7 -0
  1461. package/dist/api/resources/accounting/resources/addresses/client/Client.js +12 -6
  1462. package/dist/api/resources/accounting/resources/addresses/client/requests/AddressesRetrieveRequest.d.ts +7 -0
  1463. package/dist/api/resources/accounting/resources/asyncPassthrough/client/Client.d.ts +15 -0
  1464. package/dist/api/resources/accounting/resources/asyncPassthrough/client/Client.js +18 -2
  1465. package/dist/api/resources/accounting/resources/attachments/client/Client.d.ts +19 -0
  1466. package/dist/api/resources/accounting/resources/attachments/client/Client.js +42 -21
  1467. package/dist/api/resources/accounting/resources/attachments/client/requests/AccountingAttachmentEndpointRequest.d.ts +10 -0
  1468. package/dist/api/resources/accounting/resources/attachments/client/requests/AttachmentsListRequest.d.ts +4 -0
  1469. package/dist/api/resources/accounting/resources/attachments/client/requests/AttachmentsRetrieveRequest.d.ts +4 -0
  1470. package/dist/api/resources/accounting/resources/auditTrail/client/Client.d.ts +4 -0
  1471. package/dist/api/resources/accounting/resources/auditTrail/client/Client.js +12 -9
  1472. package/dist/api/resources/accounting/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +4 -0
  1473. package/dist/api/resources/accounting/resources/availableActions/client/Client.d.ts +1 -0
  1474. package/dist/api/resources/accounting/resources/availableActions/client/Client.js +2 -1
  1475. package/dist/api/resources/accounting/resources/balanceSheets/client/Client.d.ts +11 -0
  1476. package/dist/api/resources/accounting/resources/balanceSheets/client/Client.js +29 -18
  1477. package/dist/api/resources/accounting/resources/balanceSheets/client/requests/BalanceSheetsListRequest.d.ts +6 -0
  1478. package/dist/api/resources/accounting/resources/balanceSheets/client/requests/BalanceSheetsRetrieveRequest.d.ts +6 -0
  1479. package/dist/api/resources/accounting/resources/cashFlowStatements/client/Client.d.ts +11 -0
  1480. package/dist/api/resources/accounting/resources/cashFlowStatements/client/Client.js +29 -18
  1481. package/dist/api/resources/accounting/resources/cashFlowStatements/client/requests/CashFlowStatementsListRequest.d.ts +6 -0
  1482. package/dist/api/resources/accounting/resources/cashFlowStatements/client/requests/CashFlowStatementsRetrieveRequest.d.ts +6 -0
  1483. package/dist/api/resources/accounting/resources/companyInfo/client/Client.d.ts +11 -0
  1484. package/dist/api/resources/accounting/resources/companyInfo/client/Client.js +28 -17
  1485. package/dist/api/resources/accounting/resources/companyInfo/client/requests/CompanyInfoListRequest.d.ts +6 -0
  1486. package/dist/api/resources/accounting/resources/companyInfo/client/requests/CompanyInfoRetrieveRequest.d.ts +6 -0
  1487. package/dist/api/resources/accounting/resources/companyInfo/index.d.ts +1 -0
  1488. package/dist/api/resources/accounting/resources/companyInfo/index.js +1 -0
  1489. package/dist/api/resources/accounting/resources/companyInfo/types/index.d.ts +2 -0
  1490. package/dist/api/resources/accounting/resources/companyInfo/types/index.js +18 -0
  1491. package/dist/api/resources/accounting/resources/contacts/client/Client.d.ts +34 -0
  1492. package/dist/api/resources/accounting/resources/contacts/client/Client.js +65 -29
  1493. package/dist/api/resources/accounting/resources/contacts/client/requests/ContactEndpointRequest.d.ts +17 -0
  1494. package/dist/api/resources/accounting/resources/contacts/client/requests/ContactsListRequest.d.ts +8 -0
  1495. package/dist/api/resources/accounting/resources/contacts/client/requests/ContactsRetrieveRequest.d.ts +8 -0
  1496. package/dist/api/resources/accounting/resources/contacts/index.d.ts +1 -0
  1497. package/dist/api/resources/accounting/resources/contacts/index.js +1 -0
  1498. package/dist/api/resources/accounting/resources/contacts/types/index.d.ts +2 -0
  1499. package/dist/api/resources/accounting/resources/contacts/types/index.js +18 -0
  1500. package/dist/api/resources/accounting/resources/creditNotes/client/Client.d.ts +15 -0
  1501. package/dist/api/resources/accounting/resources/creditNotes/client/Client.js +39 -24
  1502. package/dist/api/resources/accounting/resources/creditNotes/client/requests/CreditNotesListRequest.d.ts +8 -0
  1503. package/dist/api/resources/accounting/resources/creditNotes/client/requests/CreditNotesRetrieveRequest.d.ts +8 -0
  1504. package/dist/api/resources/accounting/resources/creditNotes/index.d.ts +1 -0
  1505. package/dist/api/resources/accounting/resources/creditNotes/index.js +1 -0
  1506. package/dist/api/resources/accounting/resources/creditNotes/types/index.d.ts +6 -0
  1507. package/dist/api/resources/accounting/resources/creditNotes/types/index.js +22 -0
  1508. package/dist/api/resources/accounting/resources/deleteAccount/client/Client.d.ts +4 -0
  1509. package/dist/api/resources/accounting/resources/deleteAccount/client/Client.js +5 -1
  1510. package/dist/api/resources/accounting/resources/expenses/client/Client.d.ts +30 -0
  1511. package/dist/api/resources/accounting/resources/expenses/client/Client.js +57 -25
  1512. package/dist/api/resources/accounting/resources/expenses/client/requests/ExpenseEndpointRequest.d.ts +17 -0
  1513. package/dist/api/resources/accounting/resources/expenses/client/requests/ExpensesListRequest.d.ts +6 -0
  1514. package/dist/api/resources/accounting/resources/expenses/client/requests/ExpensesRetrieveRequest.d.ts +6 -0
  1515. package/dist/api/resources/accounting/resources/expenses/index.d.ts +1 -0
  1516. package/dist/api/resources/accounting/resources/expenses/index.js +1 -0
  1517. package/dist/api/resources/accounting/resources/expenses/types/index.d.ts +2 -0
  1518. package/dist/api/resources/accounting/resources/expenses/types/index.js +18 -0
  1519. package/dist/api/resources/accounting/resources/forceResync/client/Client.d.ts +4 -0
  1520. package/dist/api/resources/accounting/resources/forceResync/client/Client.js +5 -1
  1521. package/dist/api/resources/accounting/resources/generateKey/client/Client.d.ts +6 -0
  1522. package/dist/api/resources/accounting/resources/generateKey/client/Client.js +7 -1
  1523. package/dist/api/resources/accounting/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +6 -0
  1524. package/dist/api/resources/accounting/resources/incomeStatements/client/Client.d.ts +11 -0
  1525. package/dist/api/resources/accounting/resources/incomeStatements/client/Client.js +29 -18
  1526. package/dist/api/resources/accounting/resources/incomeStatements/client/requests/IncomeStatementsListRequest.d.ts +6 -0
  1527. package/dist/api/resources/accounting/resources/incomeStatements/client/requests/IncomeStatementsRetrieveRequest.d.ts +6 -0
  1528. package/dist/api/resources/accounting/resources/index.d.ts +28 -14
  1529. package/dist/api/resources/accounting/resources/index.js +29 -15
  1530. package/dist/api/resources/accounting/resources/invoices/client/Client.d.ts +34 -0
  1531. package/dist/api/resources/accounting/resources/invoices/client/Client.js +67 -31
  1532. package/dist/api/resources/accounting/resources/invoices/client/requests/InvoiceEndpointRequest.d.ts +16 -0
  1533. package/dist/api/resources/accounting/resources/invoices/client/requests/InvoicesListRequest.d.ts +11 -2
  1534. package/dist/api/resources/accounting/resources/invoices/client/requests/InvoicesRetrieveRequest.d.ts +8 -0
  1535. package/dist/api/resources/accounting/resources/invoices/index.d.ts +1 -0
  1536. package/dist/api/resources/accounting/resources/invoices/index.js +1 -0
  1537. package/dist/api/resources/accounting/resources/invoices/types/index.d.ts +3 -0
  1538. package/dist/api/resources/accounting/resources/invoices/types/index.js +19 -0
  1539. package/dist/api/resources/accounting/resources/issues/client/Client.d.ts +9 -0
  1540. package/dist/api/resources/accounting/resources/issues/client/Client.js +26 -17
  1541. package/dist/api/resources/accounting/resources/issues/client/requests/IssuesListRequest.d.ts +8 -2
  1542. package/dist/api/resources/accounting/resources/issues/index.d.ts +1 -0
  1543. package/dist/api/resources/accounting/resources/issues/index.js +1 -0
  1544. package/dist/api/resources/accounting/resources/issues/types/index.d.ts +1 -0
  1545. package/dist/api/resources/accounting/resources/issues/types/index.js +17 -0
  1546. package/dist/api/resources/accounting/resources/items/client/Client.d.ts +15 -0
  1547. package/dist/api/resources/accounting/resources/items/client/Client.js +37 -22
  1548. package/dist/api/resources/accounting/resources/items/client/requests/ItemsListRequest.d.ts +8 -0
  1549. package/dist/api/resources/accounting/resources/items/client/requests/ItemsRetrieveRequest.d.ts +8 -0
  1550. package/dist/api/resources/accounting/resources/items/index.d.ts +1 -0
  1551. package/dist/api/resources/accounting/resources/items/index.js +1 -0
  1552. package/dist/api/resources/accounting/resources/items/types/index.d.ts +2 -0
  1553. package/dist/api/resources/accounting/resources/items/types/index.js +18 -0
  1554. package/dist/api/resources/accounting/resources/journalEntries/client/Client.d.ts +28 -0
  1555. package/dist/api/resources/accounting/resources/journalEntries/client/Client.js +55 -25
  1556. package/dist/api/resources/accounting/resources/journalEntries/client/requests/JournalEntriesListRequest.d.ts +6 -0
  1557. package/dist/api/resources/accounting/resources/journalEntries/client/requests/JournalEntriesRetrieveRequest.d.ts +6 -0
  1558. package/dist/api/resources/accounting/resources/journalEntries/client/requests/JournalEntryEndpointRequest.d.ts +15 -0
  1559. package/dist/api/resources/accounting/resources/journalEntries/index.d.ts +1 -0
  1560. package/dist/api/resources/accounting/resources/journalEntries/index.js +1 -0
  1561. package/dist/api/resources/accounting/resources/journalEntries/types/index.d.ts +2 -0
  1562. package/dist/api/resources/accounting/resources/journalEntries/types/index.js +18 -0
  1563. package/dist/api/resources/accounting/resources/linkToken/client/Client.d.ts +1 -0
  1564. package/dist/api/resources/accounting/resources/linkToken/client/Client.js +2 -1
  1565. package/dist/api/resources/accounting/resources/linkedAccounts/client/Client.d.ts +6 -0
  1566. package/dist/api/resources/accounting/resources/linkedAccounts/client/Client.js +21 -16
  1567. package/dist/api/resources/accounting/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.d.ts +13 -7
  1568. package/dist/api/resources/accounting/resources/linkedAccounts/index.d.ts +1 -0
  1569. package/dist/api/resources/accounting/resources/linkedAccounts/index.js +1 -0
  1570. package/dist/api/resources/accounting/resources/linkedAccounts/types/index.d.ts +1 -0
  1571. package/dist/api/resources/accounting/resources/linkedAccounts/types/index.js +17 -0
  1572. package/dist/api/resources/accounting/resources/passthrough/client/Client.d.ts +1 -0
  1573. package/dist/api/resources/accounting/resources/passthrough/client/Client.js +2 -1
  1574. package/dist/api/resources/accounting/resources/payments/client/Client.d.ts +23 -0
  1575. package/dist/api/resources/accounting/resources/payments/client/Client.js +52 -27
  1576. package/dist/api/resources/accounting/resources/payments/client/requests/PaymentEndpointRequest.d.ts +10 -0
  1577. package/dist/api/resources/accounting/resources/payments/client/requests/PaymentsListRequest.d.ts +6 -0
  1578. package/dist/api/resources/accounting/resources/payments/client/requests/PaymentsRetrieveRequest.d.ts +6 -0
  1579. package/dist/api/resources/accounting/resources/payments/index.d.ts +1 -0
  1580. package/dist/api/resources/accounting/resources/payments/index.js +1 -0
  1581. package/dist/api/resources/accounting/resources/payments/types/index.d.ts +2 -0
  1582. package/dist/api/resources/accounting/resources/payments/types/index.js +18 -0
  1583. package/dist/api/resources/accounting/resources/phoneNumbers/client/Client.d.ts +4 -0
  1584. package/dist/api/resources/accounting/resources/phoneNumbers/client/Client.js +7 -4
  1585. package/dist/api/resources/accounting/resources/phoneNumbers/client/requests/PhoneNumbersRetrieveRequest.d.ts +4 -0
  1586. package/dist/api/resources/accounting/resources/purchaseOrders/client/Client.d.ts +34 -0
  1587. package/dist/api/resources/accounting/resources/purchaseOrders/client/Client.js +65 -29
  1588. package/dist/api/resources/accounting/resources/purchaseOrders/client/requests/PurchaseOrderEndpointRequest.d.ts +17 -0
  1589. package/dist/api/resources/accounting/resources/purchaseOrders/client/requests/PurchaseOrdersListRequest.d.ts +8 -0
  1590. package/dist/api/resources/accounting/resources/purchaseOrders/client/requests/PurchaseOrdersRetrieveRequest.d.ts +8 -0
  1591. package/dist/api/resources/accounting/resources/purchaseOrders/index.d.ts +1 -0
  1592. package/dist/api/resources/accounting/resources/purchaseOrders/index.js +1 -0
  1593. package/dist/api/resources/accounting/resources/purchaseOrders/types/index.d.ts +2 -0
  1594. package/dist/api/resources/accounting/resources/purchaseOrders/types/index.js +18 -0
  1595. package/dist/api/resources/accounting/resources/regenerateKey/client/Client.d.ts +6 -0
  1596. package/dist/api/resources/accounting/resources/regenerateKey/client/Client.js +7 -1
  1597. package/dist/api/resources/accounting/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +6 -0
  1598. package/dist/api/resources/accounting/resources/selectiveSync/client/Client.d.ts +14 -0
  1599. package/dist/api/resources/accounting/resources/selectiveSync/client/Client.js +23 -8
  1600. package/dist/api/resources/accounting/resources/selectiveSync/client/requests/LinkedAccountSelectiveSyncConfigurationListRequest.d.ts +8 -0
  1601. package/dist/api/resources/accounting/resources/selectiveSync/client/requests/SelectiveSyncMetaListRequest.d.ts +4 -0
  1602. package/dist/api/resources/accounting/resources/syncStatus/client/Client.d.ts +4 -0
  1603. package/dist/api/resources/accounting/resources/syncStatus/client/Client.js +8 -5
  1604. package/dist/api/resources/accounting/resources/syncStatus/client/requests/SyncStatusListRequest.d.ts +4 -0
  1605. package/dist/api/resources/accounting/resources/taxRates/client/Client.d.ts +11 -0
  1606. package/dist/api/resources/accounting/resources/taxRates/client/Client.js +29 -18
  1607. package/dist/api/resources/accounting/resources/taxRates/client/requests/TaxRatesListRequest.d.ts +6 -0
  1608. package/dist/api/resources/accounting/resources/taxRates/client/requests/TaxRatesRetrieveRequest.d.ts +6 -0
  1609. package/dist/api/resources/accounting/resources/trackingCategories/client/Client.d.ts +15 -0
  1610. package/dist/api/resources/accounting/resources/trackingCategories/client/Client.js +37 -22
  1611. package/dist/api/resources/accounting/resources/trackingCategories/client/requests/TrackingCategoriesListRequest.d.ts +8 -0
  1612. package/dist/api/resources/accounting/resources/trackingCategories/client/requests/TrackingCategoriesRetrieveRequest.d.ts +8 -0
  1613. package/dist/api/resources/accounting/resources/transactions/client/Client.d.ts +11 -0
  1614. package/dist/api/resources/accounting/resources/transactions/client/Client.js +31 -20
  1615. package/dist/api/resources/accounting/resources/transactions/client/requests/TransactionsListRequest.d.ts +6 -0
  1616. package/dist/api/resources/accounting/resources/transactions/client/requests/TransactionsRetrieveRequest.d.ts +6 -0
  1617. package/dist/api/resources/accounting/resources/transactions/index.d.ts +1 -0
  1618. package/dist/api/resources/accounting/resources/transactions/index.js +1 -0
  1619. package/dist/api/resources/accounting/resources/transactions/types/index.d.ts +2 -0
  1620. package/dist/api/resources/accounting/resources/transactions/types/index.js +18 -0
  1621. package/dist/api/resources/accounting/resources/vendorCredits/client/Client.d.ts +11 -0
  1622. package/dist/api/resources/accounting/resources/vendorCredits/client/Client.js +31 -20
  1623. package/dist/api/resources/accounting/resources/vendorCredits/client/requests/VendorCreditsListRequest.d.ts +6 -0
  1624. package/dist/api/resources/accounting/resources/vendorCredits/client/requests/VendorCreditsRetrieveRequest.d.ts +6 -0
  1625. package/dist/api/resources/accounting/resources/vendorCredits/index.d.ts +1 -0
  1626. package/dist/api/resources/accounting/resources/vendorCredits/index.js +1 -0
  1627. package/dist/api/resources/accounting/resources/vendorCredits/types/index.d.ts +2 -0
  1628. package/dist/api/resources/accounting/resources/vendorCredits/types/index.js +18 -0
  1629. package/dist/api/resources/accounting/resources/webhookReceivers/client/Client.d.ts +4 -0
  1630. package/dist/api/resources/accounting/resources/webhookReceivers/client/Client.js +7 -2
  1631. package/dist/api/resources/accounting/types/Account.d.ts +323 -319
  1632. package/dist/api/resources/accounting/types/AccountClassification.d.ts +5 -5
  1633. package/dist/api/resources/accounting/types/AccountCurrency.d.ts +306 -306
  1634. package/dist/api/resources/accounting/types/AccountDetailsAndActions.d.ts +3 -0
  1635. package/dist/api/resources/accounting/types/AccountDetailsAndActionsStatusEnum.d.ts +3 -3
  1636. package/dist/api/resources/accounting/types/AccountRequest.d.ts +323 -319
  1637. package/dist/api/resources/accounting/types/AccountRequestClassification.d.ts +5 -5
  1638. package/dist/api/resources/accounting/types/AccountRequestCurrency.d.ts +306 -306
  1639. package/dist/api/resources/accounting/types/AccountRequestStatus.d.ts +3 -3
  1640. package/dist/api/resources/accounting/types/AccountStatus.d.ts +3 -3
  1641. package/dist/api/resources/accounting/types/AccountStatusEnum.d.ts +3 -3
  1642. package/dist/api/resources/accounting/types/AccountingAttachment.d.ts +3 -0
  1643. package/dist/api/resources/accounting/types/AccountingAttachmentRequest.d.ts +3 -0
  1644. package/dist/api/resources/accounting/types/AccountingPeriod.d.ts +3 -0
  1645. package/dist/api/resources/accounting/types/AccountingPeriodStatusEnum.d.ts +2 -2
  1646. package/dist/api/resources/accounting/types/AccountingPhoneNumber.d.ts +3 -0
  1647. package/dist/api/resources/accounting/types/AccountingPhoneNumberRequest.d.ts +3 -0
  1648. package/dist/api/resources/accounting/types/Address.d.ts +254 -251
  1649. package/dist/api/resources/accounting/types/AddressCountry.d.ts +249 -249
  1650. package/dist/api/resources/accounting/types/AddressRequest.d.ts +254 -251
  1651. package/dist/api/resources/accounting/types/AddressRequestCountry.d.ts +249 -249
  1652. package/dist/api/resources/accounting/types/AddressRequestType.d.ts +2 -2
  1653. package/dist/api/resources/accounting/types/AddressType.d.ts +2 -2
  1654. package/dist/api/resources/accounting/types/AddressTypeEnum.d.ts +2 -2
  1655. package/dist/api/resources/accounting/types/AuditLogEvent.d.ts +36 -36
  1656. package/dist/api/resources/accounting/types/AuditLogEventEventType.d.ts +30 -30
  1657. package/dist/api/resources/accounting/types/AuditLogEventRole.d.ts +6 -6
  1658. package/dist/api/resources/accounting/types/AvailableActions.d.ts +3 -0
  1659. package/dist/api/resources/accounting/types/BalanceSheet.d.ts +309 -306
  1660. package/dist/api/resources/accounting/types/BalanceSheetCurrency.d.ts +306 -306
  1661. package/dist/api/resources/accounting/types/CashFlowStatement.d.ts +309 -306
  1662. package/dist/api/resources/accounting/types/CashFlowStatementCurrency.d.ts +306 -306
  1663. package/dist/api/resources/accounting/types/CategoriesEnum.d.ts +7 -7
  1664. package/dist/api/resources/accounting/types/CategoryEnum.d.ts +7 -7
  1665. package/dist/api/resources/accounting/types/CategoryTypeEnum.d.ts +2 -2
  1666. package/dist/api/resources/accounting/types/ClassificationEnum.d.ts +5 -5
  1667. package/dist/api/resources/accounting/types/CompanyInfo.d.ts +309 -306
  1668. package/dist/api/resources/accounting/types/CompanyInfoCurrency.d.ts +306 -306
  1669. package/dist/api/resources/accounting/types/ConditionSchema.d.ts +8 -8
  1670. package/dist/api/resources/accounting/types/ConditionSchemaConditionType.d.ts +7 -7
  1671. package/dist/api/resources/accounting/types/ConditionTypeEnum.d.ts +7 -7
  1672. package/dist/api/resources/accounting/types/Contact.d.ts +8 -4
  1673. package/dist/api/resources/accounting/types/ContactRequest.d.ts +8 -4
  1674. package/dist/api/resources/accounting/types/ContactRequestStatus.d.ts +2 -2
  1675. package/dist/api/resources/accounting/types/ContactStatus.d.ts +2 -2
  1676. package/dist/api/resources/accounting/types/CountryEnum.d.ts +249 -249
  1677. package/dist/api/resources/accounting/types/CreditNote.d.ts +313 -310
  1678. package/dist/api/resources/accounting/types/CreditNoteCurrency.d.ts +306 -306
  1679. package/dist/api/resources/accounting/types/CreditNoteStatus.d.ts +3 -3
  1680. package/dist/api/resources/accounting/types/CreditNoteStatusEnum.d.ts +3 -3
  1681. package/dist/api/resources/accounting/types/CurrencyEnum.d.ts +306 -306
  1682. package/dist/api/resources/accounting/types/DataPassthroughRequest.d.ts +3 -0
  1683. package/dist/api/resources/accounting/types/EnabledActionsEnum.d.ts +2 -2
  1684. package/dist/api/resources/accounting/types/EncodingEnum.d.ts +3 -3
  1685. package/dist/api/resources/accounting/types/EventTypeEnum.d.ts +30 -30
  1686. package/dist/api/resources/accounting/types/Expense.d.ts +309 -306
  1687. package/dist/api/resources/accounting/types/ExpenseCurrency.d.ts +306 -306
  1688. package/dist/api/resources/accounting/types/ExpenseLine.d.ts +309 -306
  1689. package/dist/api/resources/accounting/types/ExpenseLineCurrency.d.ts +306 -306
  1690. package/dist/api/resources/accounting/types/ExpenseLineRequest.d.ts +309 -306
  1691. package/dist/api/resources/accounting/types/ExpenseLineRequestCurrency.d.ts +306 -306
  1692. package/dist/api/resources/accounting/types/ExpenseRequest.d.ts +309 -306
  1693. package/dist/api/resources/accounting/types/ExpenseRequestCurrency.d.ts +306 -306
  1694. package/dist/api/resources/accounting/types/IncomeStatement.d.ts +309 -306
  1695. package/dist/api/resources/accounting/types/IncomeStatementCurrency.d.ts +306 -306
  1696. package/dist/api/resources/accounting/types/Invoice.d.ts +317 -314
  1697. package/dist/api/resources/accounting/types/InvoiceCurrency.d.ts +306 -306
  1698. package/dist/api/resources/accounting/types/InvoiceLineItem.d.ts +309 -306
  1699. package/dist/api/resources/accounting/types/InvoiceLineItemCurrency.d.ts +306 -306
  1700. package/dist/api/resources/accounting/types/InvoiceLineItemRequest.d.ts +309 -306
  1701. package/dist/api/resources/accounting/types/InvoiceLineItemRequestCurrency.d.ts +306 -306
  1702. package/dist/api/resources/accounting/types/InvoiceRequest.d.ts +316 -314
  1703. package/dist/api/resources/accounting/types/InvoiceRequestCurrency.d.ts +306 -306
  1704. package/dist/api/resources/accounting/types/InvoiceRequestStatus.d.ts +6 -6
  1705. package/dist/api/resources/accounting/types/InvoiceRequestType.d.ts +2 -2
  1706. package/dist/api/resources/accounting/types/InvoiceStatus.d.ts +6 -6
  1707. package/dist/api/resources/accounting/types/InvoiceStatusEnum.d.ts +6 -6
  1708. package/dist/api/resources/accounting/types/InvoiceType.d.ts +2 -2
  1709. package/dist/api/resources/accounting/types/InvoiceTypeEnum.d.ts +2 -2
  1710. package/dist/api/resources/accounting/types/Issue.d.ts +2 -2
  1711. package/dist/api/resources/accounting/types/IssueStatus.d.ts +2 -2
  1712. package/dist/api/resources/accounting/types/IssueStatusEnum.d.ts +2 -2
  1713. package/dist/api/resources/accounting/types/Item.d.ts +5 -2
  1714. package/dist/api/resources/accounting/types/ItemStatus.d.ts +2 -2
  1715. package/dist/api/resources/accounting/types/JournalEntry.d.ts +311 -308
  1716. package/dist/api/resources/accounting/types/JournalEntryCurrency.d.ts +306 -306
  1717. package/dist/api/resources/accounting/types/JournalEntryPostingStatus.d.ts +2 -2
  1718. package/dist/api/resources/accounting/types/JournalEntryRequest.d.ts +311 -308
  1719. package/dist/api/resources/accounting/types/JournalEntryRequestCurrency.d.ts +306 -306
  1720. package/dist/api/resources/accounting/types/JournalEntryRequestPostingStatus.d.ts +2 -2
  1721. package/dist/api/resources/accounting/types/JournalLine.d.ts +309 -306
  1722. package/dist/api/resources/accounting/types/JournalLineCurrency.d.ts +306 -306
  1723. package/dist/api/resources/accounting/types/JournalLineRequest.d.ts +309 -306
  1724. package/dist/api/resources/accounting/types/JournalLineRequestCurrency.d.ts +306 -306
  1725. package/dist/api/resources/accounting/types/LinkedAccountCondition.d.ts +1 -1
  1726. package/dist/api/resources/accounting/types/MethodEnum.d.ts +7 -7
  1727. package/dist/api/resources/accounting/types/ModelOperation.d.ts +3 -0
  1728. package/dist/api/resources/accounting/types/MultipartFormFieldRequest.d.ts +6 -3
  1729. package/dist/api/resources/accounting/types/MultipartFormFieldRequestEncoding.d.ts +3 -3
  1730. package/dist/api/resources/accounting/types/Payment.d.ts +309 -306
  1731. package/dist/api/resources/accounting/types/PaymentCurrency.d.ts +306 -306
  1732. package/dist/api/resources/accounting/types/PaymentLineItem.d.ts +3 -0
  1733. package/dist/api/resources/accounting/types/PaymentLineItemRequest.d.ts +3 -0
  1734. package/dist/api/resources/accounting/types/PaymentRequest.d.ts +309 -306
  1735. package/dist/api/resources/accounting/types/PaymentRequestCurrency.d.ts +306 -306
  1736. package/dist/api/resources/accounting/types/PostingStatusEnum.d.ts +2 -2
  1737. package/dist/api/resources/accounting/types/PurchaseOrder.d.ts +315 -312
  1738. package/dist/api/resources/accounting/types/PurchaseOrderCurrency.d.ts +306 -306
  1739. package/dist/api/resources/accounting/types/PurchaseOrderLineItem.d.ts +309 -306
  1740. package/dist/api/resources/accounting/types/PurchaseOrderLineItemCurrency.d.ts +306 -306
  1741. package/dist/api/resources/accounting/types/PurchaseOrderLineItemRequest.d.ts +309 -306
  1742. package/dist/api/resources/accounting/types/PurchaseOrderLineItemRequestCurrency.d.ts +306 -306
  1743. package/dist/api/resources/accounting/types/PurchaseOrderRequest.d.ts +314 -311
  1744. package/dist/api/resources/accounting/types/PurchaseOrderRequestCurrency.d.ts +306 -306
  1745. package/dist/api/resources/accounting/types/PurchaseOrderRequestStatus.d.ts +5 -5
  1746. package/dist/api/resources/accounting/types/PurchaseOrderStatus.d.ts +5 -5
  1747. package/dist/api/resources/accounting/types/PurchaseOrderStatusEnum.d.ts +5 -5
  1748. package/dist/api/resources/accounting/types/RemoteKey.d.ts +3 -0
  1749. package/dist/api/resources/accounting/types/RemoteResponse.d.ts +3 -0
  1750. package/dist/api/resources/accounting/types/ReportItem.d.ts +3 -0
  1751. package/dist/api/resources/accounting/types/RequestFormatEnum.d.ts +3 -3
  1752. package/dist/api/resources/accounting/types/ResponseTypeEnum.d.ts +2 -2
  1753. package/dist/api/resources/accounting/types/RoleEnum.d.ts +6 -6
  1754. package/dist/api/resources/accounting/types/SelectiveSyncConfigurationsUsageEnum.d.ts +2 -2
  1755. package/dist/api/resources/accounting/types/Status7D1Enum.d.ts +2 -2
  1756. package/dist/api/resources/accounting/types/SyncStatus.d.ts +3 -0
  1757. package/dist/api/resources/accounting/types/SyncStatusStatusEnum.d.ts +6 -6
  1758. package/dist/api/resources/accounting/types/TaxRate.d.ts +3 -0
  1759. package/dist/api/resources/accounting/types/TrackingCategory.d.ts +7 -4
  1760. package/dist/api/resources/accounting/types/TrackingCategoryCategoryType.d.ts +2 -2
  1761. package/dist/api/resources/accounting/types/TrackingCategoryStatus.d.ts +2 -2
  1762. package/dist/api/resources/accounting/types/Transaction.d.ts +317 -313
  1763. package/dist/api/resources/accounting/types/TransactionCurrency.d.ts +306 -306
  1764. package/dist/api/resources/accounting/types/TransactionLineItem.d.ts +309 -306
  1765. package/dist/api/resources/accounting/types/TransactionLineItemCurrency.d.ts +306 -306
  1766. package/dist/api/resources/accounting/types/VendorCredit.d.ts +310 -307
  1767. package/dist/api/resources/accounting/types/VendorCreditCurrency.d.ts +306 -306
  1768. package/dist/api/resources/accounting/types/VendorCreditLine.d.ts +3 -0
  1769. package/dist/api/resources/accounting/types/index.d.ts +43 -76
  1770. package/dist/api/resources/accounting/types/index.js +43 -76
  1771. package/dist/api/resources/ats/client/Client.d.ts +1 -0
  1772. package/dist/api/resources/ats/index.d.ts +1 -1
  1773. package/dist/api/resources/ats/index.js +1 -1
  1774. package/dist/api/resources/ats/resources/accountDetails/client/Client.d.ts +4 -0
  1775. package/dist/api/resources/ats/resources/accountDetails/client/Client.js +5 -1
  1776. package/dist/api/resources/ats/resources/accountToken/client/Client.d.ts +1 -0
  1777. package/dist/api/resources/ats/resources/accountToken/client/Client.js +2 -1
  1778. package/dist/api/resources/ats/resources/activities/client/Client.d.ts +18 -0
  1779. package/dist/api/resources/ats/resources/activities/client/Client.js +47 -27
  1780. package/dist/api/resources/ats/resources/activities/client/requests/ActivitiesListRequest.d.ts +8 -0
  1781. package/dist/api/resources/ats/resources/activities/client/requests/ActivitiesRetrieveRequest.d.ts +8 -0
  1782. package/dist/api/resources/ats/resources/activities/index.d.ts +1 -0
  1783. package/dist/api/resources/ats/resources/activities/index.js +1 -0
  1784. package/dist/api/resources/ats/resources/activities/types/index.d.ts +4 -0
  1785. package/dist/api/resources/ats/resources/activities/types/index.js +20 -0
  1786. package/dist/api/resources/ats/resources/applications/client/Client.d.ts +17 -0
  1787. package/dist/api/resources/ats/resources/applications/client/Client.js +54 -34
  1788. package/dist/api/resources/ats/resources/applications/client/requests/ApplicationsListRequest.d.ts +6 -0
  1789. package/dist/api/resources/ats/resources/applications/client/requests/ApplicationsMetaPostRetrieveRequest.d.ts +4 -0
  1790. package/dist/api/resources/ats/resources/applications/client/requests/ApplicationsRetrieveRequest.d.ts +6 -0
  1791. package/dist/api/resources/ats/resources/applications/client/requests/UpdateApplicationStageRequest.d.ts +4 -0
  1792. package/dist/api/resources/ats/resources/applications/index.d.ts +1 -0
  1793. package/dist/api/resources/ats/resources/applications/index.js +1 -0
  1794. package/dist/api/resources/ats/resources/applications/types/index.d.ts +2 -0
  1795. package/dist/api/resources/ats/resources/applications/types/index.js +18 -0
  1796. package/dist/api/resources/ats/resources/asyncPassthrough/client/Client.d.ts +15 -0
  1797. package/dist/api/resources/ats/resources/asyncPassthrough/client/Client.js +18 -2
  1798. package/dist/api/resources/ats/resources/attachments/client/Client.d.ts +18 -0
  1799. package/dist/api/resources/ats/resources/attachments/client/Client.js +47 -27
  1800. package/dist/api/resources/ats/resources/attachments/client/requests/AttachmentsListRequest.d.ts +8 -0
  1801. package/dist/api/resources/ats/resources/attachments/client/requests/AttachmentsRetrieveRequest.d.ts +8 -0
  1802. package/dist/api/resources/ats/resources/auditTrail/client/Client.d.ts +4 -0
  1803. package/dist/api/resources/ats/resources/auditTrail/client/Client.js +12 -9
  1804. package/dist/api/resources/ats/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +4 -0
  1805. package/dist/api/resources/ats/resources/availableActions/client/Client.d.ts +1 -0
  1806. package/dist/api/resources/ats/resources/availableActions/client/Client.js +2 -1
  1807. package/dist/api/resources/ats/resources/candidates/client/Client.d.ts +23 -0
  1808. package/dist/api/resources/ats/resources/candidates/client/Client.js +60 -32
  1809. package/dist/api/resources/ats/resources/candidates/client/requests/CandidatesListRequest.d.ts +6 -0
  1810. package/dist/api/resources/ats/resources/candidates/client/requests/CandidatesRetrieveRequest.d.ts +6 -0
  1811. package/dist/api/resources/ats/resources/candidates/client/requests/IgnoreCommonModelRequest.d.ts +7 -0
  1812. package/dist/api/resources/ats/resources/candidates/index.d.ts +1 -0
  1813. package/dist/api/resources/ats/resources/candidates/index.js +1 -0
  1814. package/dist/api/resources/ats/resources/candidates/types/index.d.ts +2 -0
  1815. package/dist/api/resources/ats/resources/candidates/types/index.js +18 -0
  1816. package/dist/api/resources/ats/resources/deleteAccount/client/Client.d.ts +4 -0
  1817. package/dist/api/resources/ats/resources/deleteAccount/client/Client.js +5 -1
  1818. package/dist/api/resources/ats/resources/departments/client/Client.d.ts +7 -0
  1819. package/dist/api/resources/ats/resources/departments/client/Client.js +22 -15
  1820. package/dist/api/resources/ats/resources/departments/client/requests/DepartmentsListRequest.d.ts +4 -0
  1821. package/dist/api/resources/ats/resources/departments/client/requests/DepartmentsRetrieveRequest.d.ts +4 -0
  1822. package/dist/api/resources/ats/resources/eeocs/client/Client.d.ts +15 -0
  1823. package/dist/api/resources/ats/resources/eeocs/client/Client.js +37 -22
  1824. package/dist/api/resources/ats/resources/eeocs/client/requests/EeocsListRequest.d.ts +8 -0
  1825. package/dist/api/resources/ats/resources/eeocs/client/requests/EeocsRetrieveRequest.d.ts +8 -0
  1826. package/dist/api/resources/ats/resources/eeocs/index.d.ts +1 -0
  1827. package/dist/api/resources/ats/resources/eeocs/index.js +1 -0
  1828. package/dist/api/resources/ats/resources/eeocs/types/index.d.ts +4 -0
  1829. package/dist/api/resources/ats/resources/eeocs/types/index.js +20 -0
  1830. package/dist/api/resources/ats/resources/forceResync/client/Client.d.ts +4 -0
  1831. package/dist/api/resources/ats/resources/forceResync/client/Client.js +5 -1
  1832. package/dist/api/resources/ats/resources/generateKey/client/Client.d.ts +6 -0
  1833. package/dist/api/resources/ats/resources/generateKey/client/Client.js +7 -1
  1834. package/dist/api/resources/ats/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +6 -0
  1835. package/dist/api/resources/ats/resources/index.d.ts +20 -10
  1836. package/dist/api/resources/ats/resources/index.js +21 -11
  1837. package/dist/api/resources/ats/resources/interviews/client/Client.d.ts +18 -0
  1838. package/dist/api/resources/ats/resources/interviews/client/Client.js +50 -30
  1839. package/dist/api/resources/ats/resources/interviews/client/requests/InterviewsListRequest.d.ts +8 -0
  1840. package/dist/api/resources/ats/resources/interviews/client/requests/InterviewsRetrieveRequest.d.ts +8 -0
  1841. package/dist/api/resources/ats/resources/interviews/index.d.ts +1 -0
  1842. package/dist/api/resources/ats/resources/interviews/index.js +1 -0
  1843. package/dist/api/resources/ats/resources/interviews/types/index.d.ts +2 -0
  1844. package/dist/api/resources/ats/resources/interviews/types/index.js +18 -0
  1845. package/dist/api/resources/ats/resources/issues/client/Client.d.ts +9 -0
  1846. package/dist/api/resources/ats/resources/issues/client/Client.js +26 -17
  1847. package/dist/api/resources/ats/resources/issues/client/requests/IssuesListRequest.d.ts +8 -2
  1848. package/dist/api/resources/ats/resources/issues/index.d.ts +1 -0
  1849. package/dist/api/resources/ats/resources/issues/index.js +1 -0
  1850. package/dist/api/resources/ats/resources/issues/types/index.d.ts +1 -0
  1851. package/dist/api/resources/ats/resources/issues/types/index.js +17 -0
  1852. package/dist/api/resources/ats/resources/jobInterviewStages/client/Client.d.ts +11 -0
  1853. package/dist/api/resources/ats/resources/jobInterviewStages/client/Client.js +29 -18
  1854. package/dist/api/resources/ats/resources/jobInterviewStages/client/requests/JobInterviewStagesListRequest.d.ts +6 -0
  1855. package/dist/api/resources/ats/resources/jobInterviewStages/client/requests/JobInterviewStagesRetrieveRequest.d.ts +6 -0
  1856. package/dist/api/resources/ats/resources/jobs/client/Client.d.ts +21 -0
  1857. package/dist/api/resources/ats/resources/jobs/client/Client.js +53 -31
  1858. package/dist/api/resources/ats/resources/jobs/client/requests/JobsListRequest.d.ts +14 -5
  1859. package/dist/api/resources/ats/resources/jobs/client/requests/JobsRetrieveRequest.d.ts +8 -0
  1860. package/dist/api/resources/ats/resources/jobs/client/requests/JobsScreeningQuestionsListRequest.d.ts +6 -0
  1861. package/dist/api/resources/ats/resources/jobs/index.d.ts +1 -0
  1862. package/dist/api/resources/ats/resources/jobs/index.js +1 -0
  1863. package/dist/api/resources/ats/resources/jobs/types/index.d.ts +4 -0
  1864. package/dist/api/resources/ats/resources/jobs/types/index.js +20 -0
  1865. package/dist/api/resources/ats/resources/linkToken/client/Client.d.ts +1 -0
  1866. package/dist/api/resources/ats/resources/linkToken/client/Client.js +2 -1
  1867. package/dist/api/resources/ats/resources/linkedAccounts/client/Client.d.ts +6 -0
  1868. package/dist/api/resources/ats/resources/linkedAccounts/client/Client.js +21 -16
  1869. package/dist/api/resources/ats/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.d.ts +13 -7
  1870. package/dist/api/resources/ats/resources/linkedAccounts/index.d.ts +1 -0
  1871. package/dist/api/resources/ats/resources/linkedAccounts/index.js +1 -0
  1872. package/dist/api/resources/ats/resources/linkedAccounts/types/index.d.ts +1 -0
  1873. package/dist/api/resources/ats/resources/linkedAccounts/types/index.js +17 -0
  1874. package/dist/api/resources/ats/resources/offers/client/Client.d.ts +15 -0
  1875. package/dist/api/resources/ats/resources/offers/client/Client.js +38 -23
  1876. package/dist/api/resources/ats/resources/offers/client/requests/OffersListRequest.d.ts +8 -0
  1877. package/dist/api/resources/ats/resources/offers/client/requests/OffersRetrieveRequest.d.ts +8 -0
  1878. package/dist/api/resources/ats/resources/offers/index.d.ts +1 -0
  1879. package/dist/api/resources/ats/resources/offers/index.js +1 -0
  1880. package/dist/api/resources/ats/resources/offers/types/index.d.ts +2 -0
  1881. package/dist/api/resources/ats/resources/offers/types/index.js +18 -0
  1882. package/dist/api/resources/ats/resources/offices/client/Client.d.ts +7 -0
  1883. package/dist/api/resources/ats/resources/offices/client/Client.js +22 -15
  1884. package/dist/api/resources/ats/resources/offices/client/requests/OfficesListRequest.d.ts +4 -0
  1885. package/dist/api/resources/ats/resources/offices/client/requests/OfficesRetrieveRequest.d.ts +4 -0
  1886. package/dist/api/resources/ats/resources/passthrough/client/Client.d.ts +1 -0
  1887. package/dist/api/resources/ats/resources/passthrough/client/Client.js +2 -1
  1888. package/dist/api/resources/ats/resources/regenerateKey/client/Client.d.ts +6 -0
  1889. package/dist/api/resources/ats/resources/regenerateKey/client/Client.js +7 -1
  1890. package/dist/api/resources/ats/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +6 -0
  1891. package/dist/api/resources/ats/resources/rejectReasons/client/Client.d.ts +7 -0
  1892. package/dist/api/resources/ats/resources/rejectReasons/client/Client.js +22 -15
  1893. package/dist/api/resources/ats/resources/rejectReasons/client/requests/RejectReasonsListRequest.d.ts +4 -0
  1894. package/dist/api/resources/ats/resources/rejectReasons/client/requests/RejectReasonsRetrieveRequest.d.ts +4 -0
  1895. package/dist/api/resources/ats/resources/scorecards/client/Client.d.ts +15 -0
  1896. package/dist/api/resources/ats/resources/scorecards/client/Client.js +39 -24
  1897. package/dist/api/resources/ats/resources/scorecards/client/requests/ScorecardsListRequest.d.ts +8 -0
  1898. package/dist/api/resources/ats/resources/scorecards/client/requests/ScorecardsRetrieveRequest.d.ts +8 -0
  1899. package/dist/api/resources/ats/resources/scorecards/index.d.ts +1 -0
  1900. package/dist/api/resources/ats/resources/scorecards/index.js +1 -0
  1901. package/dist/api/resources/ats/resources/scorecards/types/index.d.ts +2 -0
  1902. package/dist/api/resources/ats/resources/scorecards/types/index.js +18 -0
  1903. package/dist/api/resources/ats/resources/selectiveSync/client/Client.d.ts +14 -0
  1904. package/dist/api/resources/ats/resources/selectiveSync/client/Client.js +23 -8
  1905. package/dist/api/resources/ats/resources/selectiveSync/client/requests/LinkedAccountSelectiveSyncConfigurationListRequest.d.ts +8 -0
  1906. package/dist/api/resources/ats/resources/selectiveSync/client/requests/SelectiveSyncMetaListRequest.d.ts +4 -0
  1907. package/dist/api/resources/ats/resources/syncStatus/client/Client.d.ts +4 -0
  1908. package/dist/api/resources/ats/resources/syncStatus/client/Client.js +8 -5
  1909. package/dist/api/resources/ats/resources/syncStatus/client/requests/SyncStatusListRequest.d.ts +4 -0
  1910. package/dist/api/resources/ats/resources/tags/client/Client.d.ts +4 -0
  1911. package/dist/api/resources/ats/resources/tags/client/Client.js +15 -12
  1912. package/dist/api/resources/ats/resources/tags/client/requests/TagsListRequest.d.ts +4 -0
  1913. package/dist/api/resources/ats/resources/users/client/Client.d.ts +13 -0
  1914. package/dist/api/resources/ats/resources/users/client/Client.js +33 -20
  1915. package/dist/api/resources/ats/resources/users/client/requests/UsersListRequest.d.ts +7 -0
  1916. package/dist/api/resources/ats/resources/users/client/requests/UsersRetrieveRequest.d.ts +7 -0
  1917. package/dist/api/resources/ats/resources/webhookReceivers/client/Client.d.ts +4 -0
  1918. package/dist/api/resources/ats/resources/webhookReceivers/client/Client.js +7 -2
  1919. package/dist/api/resources/ats/types/AccessRoleEnum.d.ts +5 -5
  1920. package/dist/api/resources/ats/types/AccountDetailsAndActions.d.ts +3 -0
  1921. package/dist/api/resources/ats/types/AccountDetailsAndActionsStatusEnum.d.ts +3 -3
  1922. package/dist/api/resources/ats/types/Activity.d.ts +10 -6
  1923. package/dist/api/resources/ats/types/ActivityActivityType.d.ts +3 -3
  1924. package/dist/api/resources/ats/types/ActivityRequest.d.ts +10 -6
  1925. package/dist/api/resources/ats/types/ActivityRequestActivityType.d.ts +3 -3
  1926. package/dist/api/resources/ats/types/ActivityRequestVisibility.d.ts +3 -3
  1927. package/dist/api/resources/ats/types/ActivityTypeEnum.d.ts +3 -3
  1928. package/dist/api/resources/ats/types/ActivityVisibility.d.ts +3 -3
  1929. package/dist/api/resources/ats/types/Application.d.ts +3 -0
  1930. package/dist/api/resources/ats/types/ApplicationRequest.d.ts +3 -0
  1931. package/dist/api/resources/ats/types/Attachment.d.ts +8 -4
  1932. package/dist/api/resources/ats/types/AttachmentAttachmentType.d.ts +4 -4
  1933. package/dist/api/resources/ats/types/AttachmentRequest.d.ts +8 -4
  1934. package/dist/api/resources/ats/types/AttachmentRequestAttachmentType.d.ts +4 -4
  1935. package/dist/api/resources/ats/types/AttachmentTypeEnum.d.ts +4 -4
  1936. package/dist/api/resources/ats/types/AuditLogEvent.d.ts +36 -36
  1937. package/dist/api/resources/ats/types/AuditLogEventEventType.d.ts +30 -30
  1938. package/dist/api/resources/ats/types/AuditLogEventRole.d.ts +6 -6
  1939. package/dist/api/resources/ats/types/AvailableActions.d.ts +3 -0
  1940. package/dist/api/resources/ats/types/Candidate.d.ts +4 -0
  1941. package/dist/api/resources/ats/types/CandidateRequest.d.ts +4 -0
  1942. package/dist/api/resources/ats/types/CategoriesEnum.d.ts +7 -7
  1943. package/dist/api/resources/ats/types/CategoryEnum.d.ts +7 -7
  1944. package/dist/api/resources/ats/types/ConditionSchema.d.ts +8 -8
  1945. package/dist/api/resources/ats/types/ConditionSchemaConditionType.d.ts +7 -7
  1946. package/dist/api/resources/ats/types/ConditionTypeEnum.d.ts +7 -7
  1947. package/dist/api/resources/ats/types/DataPassthroughRequest.d.ts +3 -0
  1948. package/dist/api/resources/ats/types/Department.d.ts +4 -0
  1949. package/dist/api/resources/ats/types/DisabilityStatusEnum.d.ts +3 -3
  1950. package/dist/api/resources/ats/types/Eeoc.d.ts +23 -19
  1951. package/dist/api/resources/ats/types/EeocDisabilityStatus.d.ts +3 -3
  1952. package/dist/api/resources/ats/types/EeocGender.d.ts +5 -5
  1953. package/dist/api/resources/ats/types/EeocRace.d.ts +8 -8
  1954. package/dist/api/resources/ats/types/EeocVeteranStatus.d.ts +3 -3
  1955. package/dist/api/resources/ats/types/EmailAddress.d.ts +7 -3
  1956. package/dist/api/resources/ats/types/EmailAddressEmailAddressType.d.ts +3 -3
  1957. package/dist/api/resources/ats/types/EmailAddressRequest.d.ts +7 -3
  1958. package/dist/api/resources/ats/types/EmailAddressRequestEmailAddressType.d.ts +3 -3
  1959. package/dist/api/resources/ats/types/EmailAddressTypeEnum.d.ts +3 -3
  1960. package/dist/api/resources/ats/types/EnabledActionsEnum.d.ts +2 -2
  1961. package/dist/api/resources/ats/types/EncodingEnum.d.ts +3 -3
  1962. package/dist/api/resources/ats/types/EventTypeEnum.d.ts +30 -30
  1963. package/dist/api/resources/ats/types/GenderEnum.d.ts +5 -5
  1964. package/dist/api/resources/ats/types/Issue.d.ts +2 -2
  1965. package/dist/api/resources/ats/types/IssueStatus.d.ts +2 -2
  1966. package/dist/api/resources/ats/types/IssueStatusEnum.d.ts +2 -2
  1967. package/dist/api/resources/ats/types/Job.d.ts +9 -5
  1968. package/dist/api/resources/ats/types/JobInterviewStage.d.ts +4 -0
  1969. package/dist/api/resources/ats/types/JobStatus.d.ts +5 -5
  1970. package/dist/api/resources/ats/types/JobStatusEnum.d.ts +5 -5
  1971. package/dist/api/resources/ats/types/LinkedAccountCondition.d.ts +1 -1
  1972. package/dist/api/resources/ats/types/MethodEnum.d.ts +7 -7
  1973. package/dist/api/resources/ats/types/ModelOperation.d.ts +3 -0
  1974. package/dist/api/resources/ats/types/MultipartFormFieldRequest.d.ts +6 -3
  1975. package/dist/api/resources/ats/types/MultipartFormFieldRequestEncoding.d.ts +3 -3
  1976. package/dist/api/resources/ats/types/Offer.d.ts +13 -9
  1977. package/dist/api/resources/ats/types/OfferStatus.d.ts +9 -9
  1978. package/dist/api/resources/ats/types/OfferStatusEnum.d.ts +9 -9
  1979. package/dist/api/resources/ats/types/Office.d.ts +4 -0
  1980. package/dist/api/resources/ats/types/OverallRecommendationEnum.d.ts +5 -5
  1981. package/dist/api/resources/ats/types/PatchedCandidateRequest.d.ts +4 -0
  1982. package/dist/api/resources/ats/types/PhoneNumber.d.ts +9 -5
  1983. package/dist/api/resources/ats/types/PhoneNumberPhoneNumberType.d.ts +5 -5
  1984. package/dist/api/resources/ats/types/PhoneNumberRequest.d.ts +9 -5
  1985. package/dist/api/resources/ats/types/PhoneNumberRequestPhoneNumberType.d.ts +5 -5
  1986. package/dist/api/resources/ats/types/PhoneNumberTypeEnum.d.ts +5 -5
  1987. package/dist/api/resources/ats/types/RaceEnum.d.ts +8 -8
  1988. package/dist/api/resources/ats/types/ReasonEnum.d.ts +3 -3
  1989. package/dist/api/resources/ats/types/RejectReason.d.ts +4 -0
  1990. package/dist/api/resources/ats/types/RemoteKey.d.ts +3 -0
  1991. package/dist/api/resources/ats/types/RemoteResponse.d.ts +3 -0
  1992. package/dist/api/resources/ats/types/RemoteUser.d.ts +9 -5
  1993. package/dist/api/resources/ats/types/RemoteUserAccessRole.d.ts +5 -5
  1994. package/dist/api/resources/ats/types/RequestFormatEnum.d.ts +3 -3
  1995. package/dist/api/resources/ats/types/ResponseTypeEnum.d.ts +2 -2
  1996. package/dist/api/resources/ats/types/RoleEnum.d.ts +6 -6
  1997. package/dist/api/resources/ats/types/ScheduledInterview.d.ts +7 -3
  1998. package/dist/api/resources/ats/types/ScheduledInterviewRequest.d.ts +7 -3
  1999. package/dist/api/resources/ats/types/ScheduledInterviewRequestStatus.d.ts +3 -3
  2000. package/dist/api/resources/ats/types/ScheduledInterviewStatus.d.ts +3 -3
  2001. package/dist/api/resources/ats/types/ScheduledInterviewStatusEnum.d.ts +3 -3
  2002. package/dist/api/resources/ats/types/Scorecard.d.ts +9 -5
  2003. package/dist/api/resources/ats/types/ScorecardOverallRecommendation.d.ts +5 -5
  2004. package/dist/api/resources/ats/types/ScreeningQuestion.d.ts +11 -8
  2005. package/dist/api/resources/ats/types/ScreeningQuestionOption.d.ts +3 -0
  2006. package/dist/api/resources/ats/types/ScreeningQuestionType.d.ts +8 -8
  2007. package/dist/api/resources/ats/types/SelectiveSyncConfigurationsUsageEnum.d.ts +2 -2
  2008. package/dist/api/resources/ats/types/SyncStatus.d.ts +3 -0
  2009. package/dist/api/resources/ats/types/SyncStatusStatusEnum.d.ts +6 -6
  2010. package/dist/api/resources/ats/types/Tag.d.ts +4 -0
  2011. package/dist/api/resources/ats/types/TypeEnum.d.ts +8 -8
  2012. package/dist/api/resources/ats/types/Url.d.ts +11 -7
  2013. package/dist/api/resources/ats/types/UrlRequest.d.ts +11 -7
  2014. package/dist/api/resources/ats/types/UrlRequestUrlType.d.ts +7 -7
  2015. package/dist/api/resources/ats/types/UrlTypeEnum.d.ts +7 -7
  2016. package/dist/api/resources/ats/types/UrlUrlType.d.ts +7 -7
  2017. package/dist/api/resources/ats/types/VeteranStatusEnum.d.ts +3 -3
  2018. package/dist/api/resources/ats/types/VisibilityEnum.d.ts +3 -3
  2019. package/dist/api/resources/ats/types/index.d.ts +29 -53
  2020. package/dist/api/resources/ats/types/index.js +29 -53
  2021. package/dist/api/resources/crm/client/Client.d.ts +1 -0
  2022. package/dist/api/resources/crm/index.d.ts +1 -1
  2023. package/dist/api/resources/crm/index.js +1 -1
  2024. package/dist/api/resources/crm/resources/accountDetails/client/Client.d.ts +4 -0
  2025. package/dist/api/resources/crm/resources/accountDetails/client/Client.js +5 -1
  2026. package/dist/api/resources/crm/resources/accountToken/client/Client.d.ts +1 -0
  2027. package/dist/api/resources/crm/resources/accountToken/client/Client.js +2 -1
  2028. package/dist/api/resources/crm/resources/accounts/client/Client.d.ts +45 -0
  2029. package/dist/api/resources/crm/resources/accounts/client/Client.js +88 -38
  2030. package/dist/api/resources/crm/resources/accounts/client/requests/AccountsListRequest.d.ts +6 -0
  2031. package/dist/api/resources/crm/resources/accounts/client/requests/AccountsRemoteFieldClassesListRequest.d.ts +4 -0
  2032. package/dist/api/resources/crm/resources/accounts/client/requests/AccountsRetrieveRequest.d.ts +6 -0
  2033. package/dist/api/resources/crm/resources/accounts/client/requests/CrmAccountEndpointRequest.d.ts +13 -0
  2034. package/dist/api/resources/crm/resources/accounts/client/requests/PatchedCrmAccountEndpointRequest.d.ts +14 -0
  2035. package/dist/api/resources/crm/resources/associationTypes/client/Client.d.ts +14 -0
  2036. package/dist/api/resources/crm/resources/associationTypes/client/Client.js +38 -22
  2037. package/dist/api/resources/crm/resources/associationTypes/client/requests/CustomObjectClassesAssociationTypesListRequest.d.ts +6 -0
  2038. package/dist/api/resources/crm/resources/associationTypes/client/requests/CustomObjectClassesAssociationTypesRetrieveRequest.d.ts +6 -0
  2039. package/dist/api/resources/crm/resources/associations/client/Client.d.ts +9 -0
  2040. package/dist/api/resources/crm/resources/associations/client/Client.js +27 -18
  2041. package/dist/api/resources/crm/resources/associations/client/requests/CustomObjectClassesCustomObjectsAssociationsListRequest.d.ts +6 -0
  2042. package/dist/api/resources/crm/resources/associations/client/requests/CustomObjectClassesCustomObjectsAssociationsUpdateRequest.d.ts +4 -0
  2043. package/dist/api/resources/crm/resources/asyncPassthrough/client/Client.d.ts +15 -0
  2044. package/dist/api/resources/crm/resources/asyncPassthrough/client/Client.js +18 -2
  2045. package/dist/api/resources/crm/resources/auditTrail/client/Client.d.ts +4 -0
  2046. package/dist/api/resources/crm/resources/auditTrail/client/Client.js +12 -9
  2047. package/dist/api/resources/crm/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +4 -0
  2048. package/dist/api/resources/crm/resources/availableActions/client/Client.d.ts +1 -0
  2049. package/dist/api/resources/crm/resources/availableActions/client/Client.js +2 -1
  2050. package/dist/api/resources/crm/resources/contacts/client/Client.d.ts +75 -0
  2051. package/dist/api/resources/crm/resources/contacts/client/Client.js +121 -40
  2052. package/dist/api/resources/crm/resources/contacts/client/requests/ContactsListRequest.d.ts +6 -0
  2053. package/dist/api/resources/crm/resources/contacts/client/requests/ContactsRemoteFieldClassesListRequest.d.ts +4 -0
  2054. package/dist/api/resources/crm/resources/contacts/client/requests/ContactsRetrieveRequest.d.ts +6 -0
  2055. package/dist/api/resources/crm/resources/contacts/client/requests/CrmContactEndpointRequest.d.ts +25 -0
  2056. package/dist/api/resources/crm/resources/contacts/client/requests/PatchedCrmContactEndpointRequest.d.ts +26 -0
  2057. package/dist/api/resources/crm/resources/contacts/index.d.ts +1 -0
  2058. package/dist/api/resources/crm/resources/contacts/index.js +1 -0
  2059. package/dist/api/resources/crm/resources/contacts/types/index.d.ts +2 -0
  2060. package/dist/api/resources/crm/resources/contacts/types/index.js +18 -0
  2061. package/dist/api/resources/crm/resources/customObjectClasses/client/Client.d.ts +11 -0
  2062. package/dist/api/resources/crm/resources/customObjectClasses/client/Client.js +28 -17
  2063. package/dist/api/resources/crm/resources/customObjectClasses/client/requests/CustomObjectClassesListRequest.d.ts +6 -0
  2064. package/dist/api/resources/crm/resources/customObjectClasses/client/requests/CustomObjectClassesRetrieveRequest.d.ts +6 -0
  2065. package/dist/api/resources/crm/resources/customObjects/client/Client.d.ts +20 -0
  2066. package/dist/api/resources/crm/resources/customObjects/client/Client.js +46 -23
  2067. package/dist/api/resources/crm/resources/customObjects/client/requests/CrmCustomObjectEndpointRequest.d.ts +8 -0
  2068. package/dist/api/resources/crm/resources/customObjects/client/requests/CustomObjectClassesCustomObjectsListRequest.d.ts +4 -0
  2069. package/dist/api/resources/crm/resources/customObjects/client/requests/CustomObjectClassesCustomObjectsRetrieveRequest.d.ts +4 -0
  2070. package/dist/api/resources/crm/resources/deleteAccount/client/Client.d.ts +4 -0
  2071. package/dist/api/resources/crm/resources/deleteAccount/client/Client.js +5 -1
  2072. package/dist/api/resources/crm/resources/engagementTypes/client/Client.d.ts +10 -0
  2073. package/dist/api/resources/crm/resources/engagementTypes/client/Client.js +35 -24
  2074. package/dist/api/resources/crm/resources/engagementTypes/client/requests/EngagementTypesListRequest.d.ts +4 -0
  2075. package/dist/api/resources/crm/resources/engagementTypes/client/requests/EngagementTypesRemoteFieldClassesListRequest.d.ts +4 -0
  2076. package/dist/api/resources/crm/resources/engagementTypes/client/requests/EngagementTypesRetrieveRequest.d.ts +4 -0
  2077. package/dist/api/resources/crm/resources/engagements/client/Client.d.ts +43 -0
  2078. package/dist/api/resources/crm/resources/engagements/client/Client.js +86 -38
  2079. package/dist/api/resources/crm/resources/engagements/client/requests/EngagementEndpointRequest.d.ts +11 -0
  2080. package/dist/api/resources/crm/resources/engagements/client/requests/EngagementsListRequest.d.ts +6 -0
  2081. package/dist/api/resources/crm/resources/engagements/client/requests/EngagementsRemoteFieldClassesListRequest.d.ts +4 -0
  2082. package/dist/api/resources/crm/resources/engagements/client/requests/EngagementsRetrieveRequest.d.ts +6 -0
  2083. package/dist/api/resources/crm/resources/engagements/client/requests/PatchedEngagementEndpointRequest.d.ts +14 -0
  2084. package/dist/api/resources/crm/resources/engagements/index.d.ts +1 -0
  2085. package/dist/api/resources/crm/resources/engagements/index.js +1 -0
  2086. package/dist/api/resources/crm/resources/engagements/types/index.d.ts +2 -0
  2087. package/dist/api/resources/crm/resources/engagements/types/index.js +18 -0
  2088. package/dist/api/resources/crm/resources/forceResync/client/Client.d.ts +4 -0
  2089. package/dist/api/resources/crm/resources/forceResync/client/Client.js +5 -1
  2090. package/dist/api/resources/crm/resources/generateKey/client/Client.d.ts +6 -0
  2091. package/dist/api/resources/crm/resources/generateKey/client/Client.js +7 -1
  2092. package/dist/api/resources/crm/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +6 -0
  2093. package/dist/api/resources/crm/resources/index.d.ts +16 -8
  2094. package/dist/api/resources/crm/resources/index.js +17 -9
  2095. package/dist/api/resources/crm/resources/issues/client/Client.d.ts +9 -0
  2096. package/dist/api/resources/crm/resources/issues/client/Client.js +26 -17
  2097. package/dist/api/resources/crm/resources/issues/client/requests/IssuesListRequest.d.ts +8 -2
  2098. package/dist/api/resources/crm/resources/issues/index.d.ts +1 -0
  2099. package/dist/api/resources/crm/resources/issues/index.js +1 -0
  2100. package/dist/api/resources/crm/resources/issues/types/index.d.ts +1 -0
  2101. package/dist/api/resources/crm/resources/issues/types/index.js +17 -0
  2102. package/dist/api/resources/crm/resources/leads/client/Client.d.ts +44 -0
  2103. package/dist/api/resources/crm/resources/leads/client/Client.js +83 -36
  2104. package/dist/api/resources/crm/resources/leads/client/requests/LeadEndpointRequest.d.ts +28 -0
  2105. package/dist/api/resources/crm/resources/leads/client/requests/LeadsListRequest.d.ts +6 -0
  2106. package/dist/api/resources/crm/resources/leads/client/requests/LeadsRemoteFieldClassesListRequest.d.ts +4 -0
  2107. package/dist/api/resources/crm/resources/leads/client/requests/LeadsRetrieveRequest.d.ts +6 -0
  2108. package/dist/api/resources/crm/resources/leads/index.d.ts +1 -0
  2109. package/dist/api/resources/crm/resources/leads/index.js +1 -0
  2110. package/dist/api/resources/crm/resources/leads/types/index.d.ts +2 -0
  2111. package/dist/api/resources/crm/resources/leads/types/index.js +18 -0
  2112. package/dist/api/resources/crm/resources/linkToken/client/Client.d.ts +1 -0
  2113. package/dist/api/resources/crm/resources/linkToken/client/Client.js +2 -1
  2114. package/dist/api/resources/crm/resources/linkedAccounts/client/Client.d.ts +6 -0
  2115. package/dist/api/resources/crm/resources/linkedAccounts/client/Client.js +21 -16
  2116. package/dist/api/resources/crm/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.d.ts +13 -7
  2117. package/dist/api/resources/crm/resources/linkedAccounts/index.d.ts +1 -0
  2118. package/dist/api/resources/crm/resources/linkedAccounts/index.js +1 -0
  2119. package/dist/api/resources/crm/resources/linkedAccounts/types/index.d.ts +1 -0
  2120. package/dist/api/resources/crm/resources/linkedAccounts/types/index.js +17 -0
  2121. package/dist/api/resources/crm/resources/notes/client/Client.d.ts +24 -0
  2122. package/dist/api/resources/crm/resources/notes/client/Client.js +62 -35
  2123. package/dist/api/resources/crm/resources/notes/client/requests/NoteEndpointRequest.d.ts +8 -0
  2124. package/dist/api/resources/crm/resources/notes/client/requests/NotesListRequest.d.ts +6 -0
  2125. package/dist/api/resources/crm/resources/notes/client/requests/NotesRemoteFieldClassesListRequest.d.ts +4 -0
  2126. package/dist/api/resources/crm/resources/notes/client/requests/NotesRetrieveRequest.d.ts +6 -0
  2127. package/dist/api/resources/crm/resources/notes/index.d.ts +1 -0
  2128. package/dist/api/resources/crm/resources/notes/index.js +1 -0
  2129. package/dist/api/resources/crm/resources/notes/types/index.d.ts +2 -0
  2130. package/dist/api/resources/crm/resources/notes/types/index.js +18 -0
  2131. package/dist/api/resources/crm/resources/opportunities/client/Client.d.ts +50 -0
  2132. package/dist/api/resources/crm/resources/opportunities/client/Client.js +99 -44
  2133. package/dist/api/resources/crm/resources/opportunities/client/requests/OpportunitiesListRequest.d.ts +12 -3
  2134. package/dist/api/resources/crm/resources/opportunities/client/requests/OpportunitiesRemoteFieldClassesListRequest.d.ts +4 -0
  2135. package/dist/api/resources/crm/resources/opportunities/client/requests/OpportunitiesRetrieveRequest.d.ts +8 -0
  2136. package/dist/api/resources/crm/resources/opportunities/client/requests/OpportunityEndpointRequest.d.ts +12 -0
  2137. package/dist/api/resources/crm/resources/opportunities/client/requests/PatchedOpportunityEndpointRequest.d.ts +15 -0
  2138. package/dist/api/resources/crm/resources/opportunities/index.d.ts +1 -0
  2139. package/dist/api/resources/crm/resources/opportunities/index.js +1 -0
  2140. package/dist/api/resources/crm/resources/opportunities/types/index.d.ts +3 -0
  2141. package/dist/api/resources/crm/resources/opportunities/types/index.js +19 -0
  2142. package/dist/api/resources/crm/resources/passthrough/client/Client.d.ts +1 -0
  2143. package/dist/api/resources/crm/resources/passthrough/client/Client.js +2 -1
  2144. package/dist/api/resources/crm/resources/regenerateKey/client/Client.d.ts +6 -0
  2145. package/dist/api/resources/crm/resources/regenerateKey/client/Client.js +7 -1
  2146. package/dist/api/resources/crm/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +6 -0
  2147. package/dist/api/resources/crm/resources/selectiveSync/client/Client.d.ts +14 -0
  2148. package/dist/api/resources/crm/resources/selectiveSync/client/Client.js +23 -8
  2149. package/dist/api/resources/crm/resources/selectiveSync/client/requests/LinkedAccountSelectiveSyncConfigurationListRequest.d.ts +8 -0
  2150. package/dist/api/resources/crm/resources/selectiveSync/client/requests/SelectiveSyncMetaListRequest.d.ts +4 -0
  2151. package/dist/api/resources/crm/resources/stages/client/Client.d.ts +10 -0
  2152. package/dist/api/resources/crm/resources/stages/client/Client.js +35 -24
  2153. package/dist/api/resources/crm/resources/stages/client/requests/StagesListRequest.d.ts +4 -0
  2154. package/dist/api/resources/crm/resources/stages/client/requests/StagesRemoteFieldClassesListRequest.d.ts +4 -0
  2155. package/dist/api/resources/crm/resources/stages/client/requests/StagesRetrieveRequest.d.ts +4 -0
  2156. package/dist/api/resources/crm/resources/syncStatus/client/Client.d.ts +4 -0
  2157. package/dist/api/resources/crm/resources/syncStatus/client/Client.js +8 -5
  2158. package/dist/api/resources/crm/resources/syncStatus/client/requests/SyncStatusListRequest.d.ts +4 -0
  2159. package/dist/api/resources/crm/resources/tasks/client/Client.d.ts +43 -0
  2160. package/dist/api/resources/crm/resources/tasks/client/Client.js +84 -36
  2161. package/dist/api/resources/crm/resources/tasks/client/requests/PatchedTaskEndpointRequest.d.ts +14 -0
  2162. package/dist/api/resources/crm/resources/tasks/client/requests/TaskEndpointRequest.d.ts +11 -0
  2163. package/dist/api/resources/crm/resources/tasks/client/requests/TasksListRequest.d.ts +6 -0
  2164. package/dist/api/resources/crm/resources/tasks/client/requests/TasksRemoteFieldClassesListRequest.d.ts +4 -0
  2165. package/dist/api/resources/crm/resources/tasks/client/requests/TasksRetrieveRequest.d.ts +6 -0
  2166. package/dist/api/resources/crm/resources/tasks/index.d.ts +1 -0
  2167. package/dist/api/resources/crm/resources/tasks/index.js +1 -0
  2168. package/dist/api/resources/crm/resources/tasks/types/index.d.ts +2 -0
  2169. package/dist/api/resources/crm/resources/tasks/types/index.js +18 -0
  2170. package/dist/api/resources/crm/resources/users/client/Client.d.ts +16 -0
  2171. package/dist/api/resources/crm/resources/users/client/Client.js +43 -25
  2172. package/dist/api/resources/crm/resources/users/client/requests/UsersListRequest.d.ts +4 -0
  2173. package/dist/api/resources/crm/resources/users/client/requests/UsersRemoteFieldClassesListRequest.d.ts +4 -0
  2174. package/dist/api/resources/crm/resources/users/client/requests/UsersRetrieveRequest.d.ts +4 -0
  2175. package/dist/api/resources/crm/resources/webhookReceivers/client/Client.d.ts +4 -0
  2176. package/dist/api/resources/crm/resources/webhookReceivers/client/Client.js +7 -2
  2177. package/dist/api/resources/crm/types/Account.d.ts +4 -0
  2178. package/dist/api/resources/crm/types/AccountDetailsAndActions.d.ts +3 -0
  2179. package/dist/api/resources/crm/types/AccountDetailsAndActionsStatusEnum.d.ts +3 -3
  2180. package/dist/api/resources/crm/types/AccountRequest.d.ts +4 -0
  2181. package/dist/api/resources/crm/types/ActivityTypeEnum.d.ts +3 -3
  2182. package/dist/api/resources/crm/types/Address.d.ts +255 -251
  2183. package/dist/api/resources/crm/types/AddressAddressType.d.ts +2 -2
  2184. package/dist/api/resources/crm/types/AddressCountry.d.ts +249 -249
  2185. package/dist/api/resources/crm/types/AddressRequest.d.ts +255 -251
  2186. package/dist/api/resources/crm/types/AddressRequestAddressType.d.ts +2 -2
  2187. package/dist/api/resources/crm/types/AddressRequestCountry.d.ts +249 -249
  2188. package/dist/api/resources/crm/types/AddressTypeEnum.d.ts +2 -2
  2189. package/dist/api/resources/crm/types/Association.d.ts +4 -0
  2190. package/dist/api/resources/crm/types/AssociationType.d.ts +4 -0
  2191. package/dist/api/resources/crm/types/AuditLogEvent.d.ts +36 -36
  2192. package/dist/api/resources/crm/types/AuditLogEventEventType.d.ts +30 -30
  2193. package/dist/api/resources/crm/types/AuditLogEventRole.d.ts +6 -6
  2194. package/dist/api/resources/crm/types/AvailableActions.d.ts +3 -0
  2195. package/dist/api/resources/crm/types/CardinalityEnum.d.ts +4 -4
  2196. package/dist/api/resources/crm/types/CategoriesEnum.d.ts +7 -7
  2197. package/dist/api/resources/crm/types/CategoryEnum.d.ts +7 -7
  2198. package/dist/api/resources/crm/types/ConditionSchema.d.ts +8 -8
  2199. package/dist/api/resources/crm/types/ConditionSchemaConditionType.d.ts +7 -7
  2200. package/dist/api/resources/crm/types/ConditionTypeEnum.d.ts +7 -7
  2201. package/dist/api/resources/crm/types/Contact.d.ts +4 -0
  2202. package/dist/api/resources/crm/types/ContactRequest.d.ts +4 -0
  2203. package/dist/api/resources/crm/types/CountryEnum.d.ts +249 -249
  2204. package/dist/api/resources/crm/types/CustomObject.d.ts +4 -0
  2205. package/dist/api/resources/crm/types/CustomObjectClass.d.ts +4 -0
  2206. package/dist/api/resources/crm/types/DataPassthroughRequest.d.ts +3 -0
  2207. package/dist/api/resources/crm/types/DirectionEnum.d.ts +2 -2
  2208. package/dist/api/resources/crm/types/EmailAddress.d.ts +4 -0
  2209. package/dist/api/resources/crm/types/EmailAddressRequest.d.ts +4 -0
  2210. package/dist/api/resources/crm/types/EnabledActionsEnum.d.ts +2 -2
  2211. package/dist/api/resources/crm/types/EncodingEnum.d.ts +3 -3
  2212. package/dist/api/resources/crm/types/Engagement.d.ts +6 -2
  2213. package/dist/api/resources/crm/types/EngagementDirection.d.ts +2 -2
  2214. package/dist/api/resources/crm/types/EngagementRequest.d.ts +6 -2
  2215. package/dist/api/resources/crm/types/EngagementRequestDirection.d.ts +2 -2
  2216. package/dist/api/resources/crm/types/EngagementType.d.ts +7 -3
  2217. package/dist/api/resources/crm/types/EngagementTypeActivityType.d.ts +3 -3
  2218. package/dist/api/resources/crm/types/EventTypeEnum.d.ts +30 -30
  2219. package/dist/api/resources/crm/types/FieldFormatEnum.d.ts +6 -6
  2220. package/dist/api/resources/crm/types/FieldTypeEnum.d.ts +6 -6
  2221. package/dist/api/resources/crm/types/Issue.d.ts +2 -2
  2222. package/dist/api/resources/crm/types/IssueStatus.d.ts +2 -2
  2223. package/dist/api/resources/crm/types/IssueStatusEnum.d.ts +2 -2
  2224. package/dist/api/resources/crm/types/ItemFormatEnum.d.ts +6 -6
  2225. package/dist/api/resources/crm/types/ItemTypeEnum.d.ts +6 -6
  2226. package/dist/api/resources/crm/types/Lead.d.ts +4 -0
  2227. package/dist/api/resources/crm/types/LeadRequest.d.ts +4 -0
  2228. package/dist/api/resources/crm/types/LinkedAccountCondition.d.ts +1 -1
  2229. package/dist/api/resources/crm/types/MethodEnum.d.ts +7 -7
  2230. package/dist/api/resources/crm/types/ModelOperation.d.ts +3 -0
  2231. package/dist/api/resources/crm/types/MultipartFormFieldRequest.d.ts +6 -3
  2232. package/dist/api/resources/crm/types/MultipartFormFieldRequestEncoding.d.ts +3 -3
  2233. package/dist/api/resources/crm/types/Note.d.ts +4 -0
  2234. package/dist/api/resources/crm/types/NoteRequest.d.ts +4 -0
  2235. package/dist/api/resources/crm/types/Opportunity.d.ts +7 -3
  2236. package/dist/api/resources/crm/types/OpportunityRequest.d.ts +7 -3
  2237. package/dist/api/resources/crm/types/OpportunityRequestStatus.d.ts +3 -3
  2238. package/dist/api/resources/crm/types/OpportunityStatus.d.ts +3 -3
  2239. package/dist/api/resources/crm/types/OpportunityStatusEnum.d.ts +3 -3
  2240. package/dist/api/resources/crm/types/OriginTypeEnum.d.ts +3 -3
  2241. package/dist/api/resources/crm/types/PatchedAccountRequest.d.ts +4 -0
  2242. package/dist/api/resources/crm/types/PatchedContactRequest.d.ts +4 -0
  2243. package/dist/api/resources/crm/types/PatchedEngagementRequest.d.ts +6 -2
  2244. package/dist/api/resources/crm/types/PatchedEngagementRequestDirection.d.ts +2 -2
  2245. package/dist/api/resources/crm/types/PatchedOpportunityRequest.d.ts +7 -3
  2246. package/dist/api/resources/crm/types/PatchedOpportunityRequestStatus.d.ts +3 -3
  2247. package/dist/api/resources/crm/types/PatchedTaskRequest.d.ts +6 -2
  2248. package/dist/api/resources/crm/types/PatchedTaskRequestStatus.d.ts +2 -2
  2249. package/dist/api/resources/crm/types/PhoneNumber.d.ts +4 -0
  2250. package/dist/api/resources/crm/types/PhoneNumberRequest.d.ts +4 -0
  2251. package/dist/api/resources/crm/types/ReasonEnum.d.ts +3 -3
  2252. package/dist/api/resources/crm/types/RemoteKey.d.ts +3 -0
  2253. package/dist/api/resources/crm/types/RemoteResponse.d.ts +3 -0
  2254. package/dist/api/resources/crm/types/RequestFormatEnum.d.ts +3 -3
  2255. package/dist/api/resources/crm/types/ResponseTypeEnum.d.ts +2 -2
  2256. package/dist/api/resources/crm/types/RoleEnum.d.ts +6 -6
  2257. package/dist/api/resources/crm/types/SelectiveSyncConfigurationsUsageEnum.d.ts +2 -2
  2258. package/dist/api/resources/crm/types/Stage.d.ts +4 -0
  2259. package/dist/api/resources/crm/types/SyncStatus.d.ts +3 -0
  2260. package/dist/api/resources/crm/types/SyncStatusStatusEnum.d.ts +6 -6
  2261. package/dist/api/resources/crm/types/Task.d.ts +6 -2
  2262. package/dist/api/resources/crm/types/TaskRequest.d.ts +6 -2
  2263. package/dist/api/resources/crm/types/TaskRequestStatus.d.ts +2 -2
  2264. package/dist/api/resources/crm/types/TaskStatus.d.ts +2 -2
  2265. package/dist/api/resources/crm/types/TaskStatusEnum.d.ts +2 -2
  2266. package/dist/api/resources/crm/types/User.d.ts +4 -0
  2267. package/dist/api/resources/crm/types/index.d.ts +33 -48
  2268. package/dist/api/resources/crm/types/index.js +33 -48
  2269. package/dist/api/resources/filestorage/client/Client.d.ts +1 -0
  2270. package/dist/api/resources/filestorage/index.d.ts +1 -1
  2271. package/dist/api/resources/filestorage/index.js +1 -1
  2272. package/dist/api/resources/filestorage/resources/accountDetails/client/Client.d.ts +4 -0
  2273. package/dist/api/resources/filestorage/resources/accountDetails/client/Client.js +5 -1
  2274. package/dist/api/resources/filestorage/resources/accountToken/client/Client.d.ts +1 -0
  2275. package/dist/api/resources/filestorage/resources/accountToken/client/Client.js +2 -1
  2276. package/dist/api/resources/filestorage/resources/asyncPassthrough/client/Client.d.ts +15 -0
  2277. package/dist/api/resources/filestorage/resources/asyncPassthrough/client/Client.js +18 -2
  2278. package/dist/api/resources/filestorage/resources/auditTrail/client/Client.d.ts +4 -0
  2279. package/dist/api/resources/filestorage/resources/auditTrail/client/Client.js +12 -9
  2280. package/dist/api/resources/filestorage/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +4 -0
  2281. package/dist/api/resources/filestorage/resources/availableActions/client/Client.d.ts +1 -0
  2282. package/dist/api/resources/filestorage/resources/availableActions/client/Client.js +2 -1
  2283. package/dist/api/resources/filestorage/resources/deleteAccount/client/Client.d.ts +4 -0
  2284. package/dist/api/resources/filestorage/resources/deleteAccount/client/Client.js +5 -1
  2285. package/dist/api/resources/filestorage/resources/drives/client/Client.d.ts +7 -0
  2286. package/dist/api/resources/filestorage/resources/drives/client/Client.js +23 -16
  2287. package/dist/api/resources/filestorage/resources/drives/client/requests/DrivesListRequest.d.ts +4 -0
  2288. package/dist/api/resources/filestorage/resources/drives/client/requests/DrivesRetrieveRequest.d.ts +4 -0
  2289. package/dist/api/resources/filestorage/resources/files/client/Client.d.ts +26 -0
  2290. package/dist/api/resources/filestorage/resources/files/client/Client.js +81 -34
  2291. package/dist/api/resources/filestorage/resources/files/client/requests/FileStorageFileEndpointRequest.d.ts +13 -0
  2292. package/dist/api/resources/filestorage/resources/files/client/requests/FilesListRequest.d.ts +6 -0
  2293. package/dist/api/resources/filestorage/resources/files/client/requests/FilesRetrieveRequest.d.ts +6 -0
  2294. package/dist/api/resources/filestorage/resources/files/index.d.ts +1 -0
  2295. package/dist/api/resources/filestorage/resources/files/index.js +1 -0
  2296. package/dist/api/resources/filestorage/resources/files/types/index.d.ts +2 -0
  2297. package/dist/api/resources/filestorage/resources/files/types/index.js +18 -0
  2298. package/dist/api/resources/filestorage/resources/folders/client/Client.d.ts +24 -0
  2299. package/dist/api/resources/filestorage/resources/folders/client/Client.js +51 -25
  2300. package/dist/api/resources/filestorage/resources/folders/client/requests/FileStorageFolderEndpointRequest.d.ts +11 -0
  2301. package/dist/api/resources/filestorage/resources/folders/client/requests/FoldersListRequest.d.ts +6 -0
  2302. package/dist/api/resources/filestorage/resources/folders/client/requests/FoldersRetrieveRequest.d.ts +6 -0
  2303. package/dist/api/resources/filestorage/resources/folders/index.d.ts +1 -0
  2304. package/dist/api/resources/filestorage/resources/folders/index.js +1 -0
  2305. package/dist/api/resources/filestorage/resources/folders/types/index.d.ts +2 -0
  2306. package/dist/api/resources/filestorage/resources/folders/types/index.js +18 -0
  2307. package/dist/api/resources/filestorage/resources/forceResync/client/Client.d.ts +4 -0
  2308. package/dist/api/resources/filestorage/resources/forceResync/client/Client.js +5 -1
  2309. package/dist/api/resources/filestorage/resources/generateKey/client/Client.d.ts +6 -0
  2310. package/dist/api/resources/filestorage/resources/generateKey/client/Client.js +7 -1
  2311. package/dist/api/resources/filestorage/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +6 -0
  2312. package/dist/api/resources/filestorage/resources/groups/client/Client.d.ts +7 -0
  2313. package/dist/api/resources/filestorage/resources/groups/client/Client.js +22 -15
  2314. package/dist/api/resources/filestorage/resources/groups/client/requests/GroupsListRequest.d.ts +4 -0
  2315. package/dist/api/resources/filestorage/resources/groups/client/requests/GroupsRetrieveRequest.d.ts +4 -0
  2316. package/dist/api/resources/filestorage/resources/index.d.ts +8 -4
  2317. package/dist/api/resources/filestorage/resources/index.js +9 -5
  2318. package/dist/api/resources/filestorage/resources/issues/client/Client.d.ts +9 -0
  2319. package/dist/api/resources/filestorage/resources/issues/client/Client.js +26 -17
  2320. package/dist/api/resources/filestorage/resources/issues/client/requests/IssuesListRequest.d.ts +8 -2
  2321. package/dist/api/resources/filestorage/resources/issues/index.d.ts +1 -0
  2322. package/dist/api/resources/filestorage/resources/issues/index.js +1 -0
  2323. package/dist/api/resources/filestorage/resources/issues/types/index.d.ts +1 -0
  2324. package/dist/api/resources/filestorage/resources/issues/types/index.js +17 -0
  2325. package/dist/api/resources/filestorage/resources/linkToken/client/Client.d.ts +1 -0
  2326. package/dist/api/resources/filestorage/resources/linkToken/client/Client.js +2 -1
  2327. package/dist/api/resources/filestorage/resources/linkedAccounts/client/Client.d.ts +6 -0
  2328. package/dist/api/resources/filestorage/resources/linkedAccounts/client/Client.js +21 -16
  2329. package/dist/api/resources/filestorage/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.d.ts +13 -7
  2330. package/dist/api/resources/filestorage/resources/linkedAccounts/index.d.ts +1 -0
  2331. package/dist/api/resources/filestorage/resources/linkedAccounts/index.js +1 -0
  2332. package/dist/api/resources/filestorage/resources/linkedAccounts/types/index.d.ts +1 -0
  2333. package/dist/api/resources/filestorage/resources/linkedAccounts/types/index.js +17 -0
  2334. package/dist/api/resources/filestorage/resources/passthrough/client/Client.d.ts +1 -0
  2335. package/dist/api/resources/filestorage/resources/passthrough/client/Client.js +2 -1
  2336. package/dist/api/resources/filestorage/resources/regenerateKey/client/Client.d.ts +6 -0
  2337. package/dist/api/resources/filestorage/resources/regenerateKey/client/Client.js +7 -1
  2338. package/dist/api/resources/filestorage/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +6 -0
  2339. package/dist/api/resources/filestorage/resources/selectiveSync/client/Client.d.ts +14 -0
  2340. package/dist/api/resources/filestorage/resources/selectiveSync/client/Client.js +23 -8
  2341. package/dist/api/resources/filestorage/resources/selectiveSync/client/requests/LinkedAccountSelectiveSyncConfigurationListRequest.d.ts +8 -0
  2342. package/dist/api/resources/filestorage/resources/selectiveSync/client/requests/SelectiveSyncMetaListRequest.d.ts +4 -0
  2343. package/dist/api/resources/filestorage/resources/syncStatus/client/Client.d.ts +4 -0
  2344. package/dist/api/resources/filestorage/resources/syncStatus/client/Client.js +8 -5
  2345. package/dist/api/resources/filestorage/resources/syncStatus/client/requests/SyncStatusListRequest.d.ts +4 -0
  2346. package/dist/api/resources/filestorage/resources/users/client/Client.d.ts +7 -0
  2347. package/dist/api/resources/filestorage/resources/users/client/Client.js +23 -16
  2348. package/dist/api/resources/filestorage/resources/users/client/requests/UsersListRequest.d.ts +4 -0
  2349. package/dist/api/resources/filestorage/resources/users/client/requests/UsersRetrieveRequest.d.ts +4 -0
  2350. package/dist/api/resources/filestorage/resources/webhookReceivers/client/Client.d.ts +4 -0
  2351. package/dist/api/resources/filestorage/resources/webhookReceivers/client/Client.js +7 -2
  2352. package/dist/api/resources/filestorage/types/AccountDetailsAndActions.d.ts +3 -0
  2353. package/dist/api/resources/filestorage/types/AccountDetailsAndActionsStatusEnum.d.ts +3 -3
  2354. package/dist/api/resources/filestorage/types/AuditLogEvent.d.ts +36 -36
  2355. package/dist/api/resources/filestorage/types/AuditLogEventEventType.d.ts +30 -30
  2356. package/dist/api/resources/filestorage/types/AuditLogEventRole.d.ts +6 -6
  2357. package/dist/api/resources/filestorage/types/AvailableActions.d.ts +3 -0
  2358. package/dist/api/resources/filestorage/types/CategoriesEnum.d.ts +7 -7
  2359. package/dist/api/resources/filestorage/types/CategoryEnum.d.ts +7 -7
  2360. package/dist/api/resources/filestorage/types/ConditionSchema.d.ts +8 -8
  2361. package/dist/api/resources/filestorage/types/ConditionSchemaConditionType.d.ts +7 -7
  2362. package/dist/api/resources/filestorage/types/ConditionTypeEnum.d.ts +7 -7
  2363. package/dist/api/resources/filestorage/types/DataPassthroughRequest.d.ts +3 -0
  2364. package/dist/api/resources/filestorage/types/Drive.d.ts +4 -0
  2365. package/dist/api/resources/filestorage/types/EnabledActionsEnum.d.ts +2 -2
  2366. package/dist/api/resources/filestorage/types/EncodingEnum.d.ts +3 -3
  2367. package/dist/api/resources/filestorage/types/EventTypeEnum.d.ts +30 -30
  2368. package/dist/api/resources/filestorage/types/FileRequest.d.ts +4 -0
  2369. package/dist/api/resources/filestorage/types/File_.d.ts +4 -0
  2370. package/dist/api/resources/filestorage/types/Folder.d.ts +4 -0
  2371. package/dist/api/resources/filestorage/types/FolderRequest.d.ts +4 -0
  2372. package/dist/api/resources/filestorage/types/Group.d.ts +4 -0
  2373. package/dist/api/resources/filestorage/types/Issue.d.ts +2 -2
  2374. package/dist/api/resources/filestorage/types/IssueStatus.d.ts +2 -2
  2375. package/dist/api/resources/filestorage/types/IssueStatusEnum.d.ts +2 -2
  2376. package/dist/api/resources/filestorage/types/LinkedAccountCondition.d.ts +1 -1
  2377. package/dist/api/resources/filestorage/types/MethodEnum.d.ts +7 -7
  2378. package/dist/api/resources/filestorage/types/ModelOperation.d.ts +3 -0
  2379. package/dist/api/resources/filestorage/types/MultipartFormFieldRequest.d.ts +6 -3
  2380. package/dist/api/resources/filestorage/types/MultipartFormFieldRequestEncoding.d.ts +3 -3
  2381. package/dist/api/resources/filestorage/types/Permission.d.ts +7 -4
  2382. package/dist/api/resources/filestorage/types/PermissionRequest.d.ts +7 -4
  2383. package/dist/api/resources/filestorage/types/PermissionRequestRolesItem.d.ts +3 -3
  2384. package/dist/api/resources/filestorage/types/PermissionRequestType.d.ts +4 -4
  2385. package/dist/api/resources/filestorage/types/PermissionRolesItem.d.ts +3 -3
  2386. package/dist/api/resources/filestorage/types/PermissionType.d.ts +4 -4
  2387. package/dist/api/resources/filestorage/types/RemoteKey.d.ts +3 -0
  2388. package/dist/api/resources/filestorage/types/RemoteResponse.d.ts +3 -0
  2389. package/dist/api/resources/filestorage/types/RequestFormatEnum.d.ts +3 -3
  2390. package/dist/api/resources/filestorage/types/ResponseTypeEnum.d.ts +2 -2
  2391. package/dist/api/resources/filestorage/types/RoleEnum.d.ts +6 -6
  2392. package/dist/api/resources/filestorage/types/RolesEnum.d.ts +3 -3
  2393. package/dist/api/resources/filestorage/types/SelectiveSyncConfigurationsUsageEnum.d.ts +2 -2
  2394. package/dist/api/resources/filestorage/types/SyncStatus.d.ts +3 -0
  2395. package/dist/api/resources/filestorage/types/SyncStatusStatusEnum.d.ts +6 -6
  2396. package/dist/api/resources/filestorage/types/TypeEnum.d.ts +4 -4
  2397. package/dist/api/resources/filestorage/types/User.d.ts +4 -0
  2398. package/dist/api/resources/filestorage/types/index.d.ts +15 -21
  2399. package/dist/api/resources/filestorage/types/index.js +15 -21
  2400. package/dist/api/resources/hris/client/Client.d.ts +1 -0
  2401. package/dist/api/resources/hris/index.d.ts +1 -1
  2402. package/dist/api/resources/hris/index.js +1 -1
  2403. package/dist/api/resources/hris/resources/accountDetails/client/Client.d.ts +4 -0
  2404. package/dist/api/resources/hris/resources/accountDetails/client/Client.js +5 -1
  2405. package/dist/api/resources/hris/resources/accountToken/client/Client.d.ts +1 -0
  2406. package/dist/api/resources/hris/resources/accountToken/client/Client.js +2 -1
  2407. package/dist/api/resources/hris/resources/asyncPassthrough/client/Client.d.ts +15 -0
  2408. package/dist/api/resources/hris/resources/asyncPassthrough/client/Client.js +18 -2
  2409. package/dist/api/resources/hris/resources/auditTrail/client/Client.d.ts +4 -0
  2410. package/dist/api/resources/hris/resources/auditTrail/client/Client.js +12 -9
  2411. package/dist/api/resources/hris/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +4 -0
  2412. package/dist/api/resources/hris/resources/availableActions/client/Client.d.ts +1 -0
  2413. package/dist/api/resources/hris/resources/availableActions/client/Client.js +2 -1
  2414. package/dist/api/resources/hris/resources/bankInfo/client/Client.d.ts +17 -0
  2415. package/dist/api/resources/hris/resources/bankInfo/client/Client.js +42 -25
  2416. package/dist/api/resources/hris/resources/bankInfo/client/requests/BankInfoListRequest.d.ts +12 -2
  2417. package/dist/api/resources/hris/resources/bankInfo/client/requests/BankInfoRetrieveRequest.d.ts +8 -0
  2418. package/dist/api/resources/hris/resources/bankInfo/index.d.ts +1 -0
  2419. package/dist/api/resources/hris/resources/bankInfo/index.js +1 -0
  2420. package/dist/api/resources/hris/resources/bankInfo/types/index.d.ts +2 -0
  2421. package/dist/api/resources/hris/resources/bankInfo/types/index.js +18 -0
  2422. package/dist/api/resources/hris/resources/benefits/client/Client.d.ts +11 -0
  2423. package/dist/api/resources/hris/resources/benefits/client/Client.js +29 -18
  2424. package/dist/api/resources/hris/resources/benefits/client/requests/BenefitsListRequest.d.ts +6 -0
  2425. package/dist/api/resources/hris/resources/benefits/client/requests/BenefitsRetrieveRequest.d.ts +6 -0
  2426. package/dist/api/resources/hris/resources/companies/client/Client.d.ts +7 -0
  2427. package/dist/api/resources/hris/resources/companies/client/Client.js +22 -15
  2428. package/dist/api/resources/hris/resources/companies/client/requests/CompaniesListRequest.d.ts +4 -0
  2429. package/dist/api/resources/hris/resources/companies/client/requests/CompaniesRetrieveRequest.d.ts +4 -0
  2430. package/dist/api/resources/hris/resources/deleteAccount/client/Client.d.ts +4 -0
  2431. package/dist/api/resources/hris/resources/deleteAccount/client/Client.js +5 -1
  2432. package/dist/api/resources/hris/resources/dependents/client/Client.d.ts +7 -0
  2433. package/dist/api/resources/hris/resources/dependents/client/Client.js +24 -17
  2434. package/dist/api/resources/hris/resources/dependents/client/requests/DependentsListRequest.d.ts +4 -0
  2435. package/dist/api/resources/hris/resources/dependents/client/requests/DependentsRetrieveRequest.d.ts +4 -0
  2436. package/dist/api/resources/hris/resources/employeePayrollRuns/client/Client.d.ts +11 -0
  2437. package/dist/api/resources/hris/resources/employeePayrollRuns/client/Client.js +34 -23
  2438. package/dist/api/resources/hris/resources/employeePayrollRuns/client/requests/EmployeePayrollRunsListRequest.d.ts +6 -0
  2439. package/dist/api/resources/hris/resources/employeePayrollRuns/client/requests/EmployeePayrollRunsRetrieveRequest.d.ts +6 -0
  2440. package/dist/api/resources/hris/resources/employeePayrollRuns/index.d.ts +1 -0
  2441. package/dist/api/resources/hris/resources/employeePayrollRuns/index.js +1 -0
  2442. package/dist/api/resources/hris/resources/employeePayrollRuns/types/index.d.ts +2 -0
  2443. package/dist/api/resources/hris/resources/employeePayrollRuns/types/index.js +18 -0
  2444. package/dist/api/resources/hris/resources/employees/client/Client.d.ts +40 -0
  2445. package/dist/api/resources/hris/resources/employees/client/Client.js +91 -48
  2446. package/dist/api/resources/hris/resources/employees/client/requests/EmployeeEndpointRequest.d.ts +22 -0
  2447. package/dist/api/resources/hris/resources/employees/client/requests/EmployeesListRequest.d.ts +12 -3
  2448. package/dist/api/resources/hris/resources/employees/client/requests/EmployeesRetrieveRequest.d.ts +8 -0
  2449. package/dist/api/resources/hris/resources/employees/index.d.ts +1 -0
  2450. package/dist/api/resources/hris/resources/employees/index.js +1 -0
  2451. package/dist/api/resources/hris/resources/employees/types/IgnoreCommonModelRequestReason.d.ts +5 -0
  2452. package/dist/api/resources/hris/resources/employees/types/index.d.ts +8 -0
  2453. package/dist/api/resources/hris/resources/employees/types/index.js +24 -0
  2454. package/dist/api/resources/hris/resources/employerBenefits/client/Client.d.ts +7 -0
  2455. package/dist/api/resources/hris/resources/employerBenefits/client/Client.js +22 -15
  2456. package/dist/api/resources/hris/resources/employerBenefits/client/requests/EmployerBenefitsListRequest.d.ts +4 -0
  2457. package/dist/api/resources/hris/resources/employerBenefits/client/requests/EmployerBenefitsRetrieveRequest.d.ts +4 -0
  2458. package/dist/api/resources/hris/resources/employments/client/Client.d.ts +16 -0
  2459. package/dist/api/resources/hris/resources/employments/client/Client.js +39 -23
  2460. package/dist/api/resources/hris/resources/employments/client/requests/EmploymentsListRequest.d.ts +9 -0
  2461. package/dist/api/resources/hris/resources/employments/client/requests/EmploymentsRetrieveRequest.d.ts +8 -0
  2462. package/dist/api/resources/hris/resources/employments/index.d.ts +1 -0
  2463. package/dist/api/resources/hris/resources/employments/index.js +1 -0
  2464. package/dist/api/resources/hris/resources/employments/types/index.d.ts +7 -0
  2465. package/dist/api/resources/hris/resources/employments/types/index.js +23 -0
  2466. package/dist/api/resources/hris/resources/forceResync/client/Client.d.ts +4 -0
  2467. package/dist/api/resources/hris/resources/forceResync/client/Client.js +5 -1
  2468. package/dist/api/resources/hris/resources/generateKey/client/Client.d.ts +6 -0
  2469. package/dist/api/resources/hris/resources/generateKey/client/Client.js +7 -1
  2470. package/dist/api/resources/hris/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +6 -0
  2471. package/dist/api/resources/hris/resources/groups/client/Client.d.ts +13 -0
  2472. package/dist/api/resources/hris/resources/groups/client/Client.js +33 -20
  2473. package/dist/api/resources/hris/resources/groups/client/requests/GroupsListRequest.d.ts +7 -0
  2474. package/dist/api/resources/hris/resources/groups/client/requests/GroupsRetrieveRequest.d.ts +7 -0
  2475. package/dist/api/resources/hris/resources/index.d.ts +22 -11
  2476. package/dist/api/resources/hris/resources/index.js +23 -12
  2477. package/dist/api/resources/hris/resources/issues/client/Client.d.ts +9 -0
  2478. package/dist/api/resources/hris/resources/issues/client/Client.js +26 -17
  2479. package/dist/api/resources/hris/resources/issues/client/requests/IssuesListRequest.d.ts +8 -2
  2480. package/dist/api/resources/hris/resources/issues/index.d.ts +1 -0
  2481. package/dist/api/resources/hris/resources/issues/index.js +1 -0
  2482. package/dist/api/resources/hris/resources/issues/types/index.d.ts +1 -0
  2483. package/dist/api/resources/hris/resources/issues/types/index.js +17 -0
  2484. package/dist/api/resources/hris/resources/linkToken/client/Client.d.ts +1 -0
  2485. package/dist/api/resources/hris/resources/linkToken/client/Client.js +2 -1
  2486. package/dist/api/resources/hris/resources/linkedAccounts/client/Client.d.ts +6 -0
  2487. package/dist/api/resources/hris/resources/linkedAccounts/client/Client.js +21 -16
  2488. package/dist/api/resources/hris/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.d.ts +13 -7
  2489. package/dist/api/resources/hris/resources/linkedAccounts/index.d.ts +1 -0
  2490. package/dist/api/resources/hris/resources/linkedAccounts/index.js +1 -0
  2491. package/dist/api/resources/hris/resources/linkedAccounts/types/index.d.ts +1 -0
  2492. package/dist/api/resources/hris/resources/linkedAccounts/types/index.js +17 -0
  2493. package/dist/api/resources/hris/resources/locations/client/Client.d.ts +14 -0
  2494. package/dist/api/resources/hris/resources/locations/client/Client.js +34 -20
  2495. package/dist/api/resources/hris/resources/locations/client/requests/LocationsListRequest.d.ts +10 -2
  2496. package/dist/api/resources/hris/resources/locations/client/requests/LocationsRetrieveRequest.d.ts +7 -0
  2497. package/dist/api/resources/hris/resources/locations/index.d.ts +1 -0
  2498. package/dist/api/resources/hris/resources/locations/index.js +1 -0
  2499. package/dist/api/resources/hris/resources/locations/types/index.d.ts +1 -0
  2500. package/dist/api/resources/hris/resources/locations/types/index.js +17 -0
  2501. package/dist/api/resources/hris/resources/passthrough/client/Client.d.ts +1 -0
  2502. package/dist/api/resources/hris/resources/passthrough/client/Client.js +2 -1
  2503. package/dist/api/resources/hris/resources/payGroups/client/Client.d.ts +7 -0
  2504. package/dist/api/resources/hris/resources/payGroups/client/Client.js +22 -15
  2505. package/dist/api/resources/hris/resources/payGroups/client/requests/PayGroupsListRequest.d.ts +4 -0
  2506. package/dist/api/resources/hris/resources/payGroups/client/requests/PayGroupsRetrieveRequest.d.ts +4 -0
  2507. package/dist/api/resources/hris/resources/payrollRuns/client/Client.d.ts +14 -0
  2508. package/dist/api/resources/hris/resources/payrollRuns/client/Client.js +38 -24
  2509. package/dist/api/resources/hris/resources/payrollRuns/client/requests/PayrollRunsListRequest.d.ts +13 -5
  2510. package/dist/api/resources/hris/resources/payrollRuns/client/requests/PayrollRunsRetrieveRequest.d.ts +7 -0
  2511. package/dist/api/resources/hris/resources/payrollRuns/index.d.ts +1 -0
  2512. package/dist/api/resources/hris/resources/payrollRuns/index.js +1 -0
  2513. package/dist/api/resources/hris/resources/payrollRuns/types/index.d.ts +5 -0
  2514. package/dist/api/resources/hris/resources/payrollRuns/types/index.js +21 -0
  2515. package/dist/api/resources/hris/resources/regenerateKey/client/Client.d.ts +6 -0
  2516. package/dist/api/resources/hris/resources/regenerateKey/client/Client.js +7 -1
  2517. package/dist/api/resources/hris/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +6 -0
  2518. package/dist/api/resources/hris/resources/selectiveSync/client/Client.d.ts +14 -0
  2519. package/dist/api/resources/hris/resources/selectiveSync/client/Client.js +23 -8
  2520. package/dist/api/resources/hris/resources/selectiveSync/client/requests/LinkedAccountSelectiveSyncConfigurationListRequest.d.ts +8 -0
  2521. package/dist/api/resources/hris/resources/selectiveSync/client/requests/SelectiveSyncMetaListRequest.d.ts +4 -0
  2522. package/dist/api/resources/hris/resources/syncStatus/client/Client.d.ts +4 -0
  2523. package/dist/api/resources/hris/resources/syncStatus/client/Client.js +8 -5
  2524. package/dist/api/resources/hris/resources/syncStatus/client/requests/SyncStatusListRequest.d.ts +4 -0
  2525. package/dist/api/resources/hris/resources/teams/client/Client.d.ts +11 -0
  2526. package/dist/api/resources/hris/resources/teams/client/Client.js +29 -18
  2527. package/dist/api/resources/hris/resources/teams/client/requests/TeamsListRequest.d.ts +6 -0
  2528. package/dist/api/resources/hris/resources/teams/client/requests/TeamsRetrieveRequest.d.ts +6 -0
  2529. package/dist/api/resources/hris/resources/timeOff/client/Client.d.ts +30 -0
  2530. package/dist/api/resources/hris/resources/timeOff/client/Client.js +62 -30
  2531. package/dist/api/resources/hris/resources/timeOff/client/requests/TimeOffEndpointRequest.d.ts +11 -0
  2532. package/dist/api/resources/hris/resources/timeOff/client/requests/TimeOffListRequest.d.ts +21 -11
  2533. package/dist/api/resources/hris/resources/timeOff/client/requests/TimeOffRetrieveRequest.d.ts +8 -0
  2534. package/dist/api/resources/hris/resources/timeOff/index.d.ts +1 -0
  2535. package/dist/api/resources/hris/resources/timeOff/index.js +1 -0
  2536. package/dist/api/resources/hris/resources/timeOff/types/index.d.ts +8 -0
  2537. package/dist/api/resources/hris/resources/timeOff/types/index.js +24 -0
  2538. package/dist/api/resources/hris/resources/timeOffBalances/client/Client.d.ts +16 -0
  2539. package/dist/api/resources/hris/resources/timeOffBalances/client/Client.js +39 -23
  2540. package/dist/api/resources/hris/resources/timeOffBalances/client/requests/TimeOffBalancesListRequest.d.ts +15 -6
  2541. package/dist/api/resources/hris/resources/timeOffBalances/client/requests/TimeOffBalancesRetrieveRequest.d.ts +8 -0
  2542. package/dist/api/resources/hris/resources/timeOffBalances/index.d.ts +1 -0
  2543. package/dist/api/resources/hris/resources/timeOffBalances/index.js +1 -0
  2544. package/dist/api/resources/hris/resources/timeOffBalances/types/index.d.ts +1 -0
  2545. package/dist/api/resources/hris/resources/timeOffBalances/types/index.js +17 -0
  2546. package/dist/api/resources/hris/resources/timesheetEntries/client/Client.d.ts +22 -0
  2547. package/dist/api/resources/hris/resources/timesheetEntries/client/Client.js +50 -26
  2548. package/dist/api/resources/hris/resources/timesheetEntries/client/requests/TimesheetEntriesListRequest.d.ts +6 -0
  2549. package/dist/api/resources/hris/resources/timesheetEntries/client/requests/TimesheetEntriesRetrieveRequest.d.ts +4 -0
  2550. package/dist/api/resources/hris/resources/timesheetEntries/client/requests/TimesheetEntryEndpointRequest.d.ts +11 -0
  2551. package/dist/api/resources/hris/resources/timesheetEntries/index.d.ts +1 -0
  2552. package/dist/api/resources/hris/resources/timesheetEntries/index.js +1 -0
  2553. package/dist/api/resources/hris/resources/timesheetEntries/types/index.d.ts +1 -0
  2554. package/dist/api/resources/hris/resources/timesheetEntries/types/index.js +17 -0
  2555. package/dist/api/resources/hris/resources/webhookReceivers/client/Client.d.ts +4 -0
  2556. package/dist/api/resources/hris/resources/webhookReceivers/client/Client.js +7 -2
  2557. package/dist/api/resources/hris/types/AccountDetailsAndActions.d.ts +3 -0
  2558. package/dist/api/resources/hris/types/AccountDetailsAndActionsStatusEnum.d.ts +3 -3
  2559. package/dist/api/resources/hris/types/AccountTypeEnum.d.ts +2 -2
  2560. package/dist/api/resources/hris/types/AuditLogEvent.d.ts +36 -36
  2561. package/dist/api/resources/hris/types/AuditLogEventEventType.d.ts +30 -30
  2562. package/dist/api/resources/hris/types/AuditLogEventRole.d.ts +6 -6
  2563. package/dist/api/resources/hris/types/AvailableActions.d.ts +3 -0
  2564. package/dist/api/resources/hris/types/BankInfo.d.ts +5 -2
  2565. package/dist/api/resources/hris/types/BankInfoAccountType.d.ts +2 -2
  2566. package/dist/api/resources/hris/types/Benefit.d.ts +3 -0
  2567. package/dist/api/resources/hris/types/BenefitPlanTypeEnum.d.ts +5 -5
  2568. package/dist/api/resources/hris/types/CategoriesEnum.d.ts +7 -7
  2569. package/dist/api/resources/hris/types/CategoryEnum.d.ts +7 -7
  2570. package/dist/api/resources/hris/types/Company.d.ts +3 -0
  2571. package/dist/api/resources/hris/types/ConditionSchema.d.ts +8 -8
  2572. package/dist/api/resources/hris/types/ConditionSchemaConditionType.d.ts +7 -7
  2573. package/dist/api/resources/hris/types/ConditionTypeEnum.d.ts +7 -7
  2574. package/dist/api/resources/hris/types/CountryEnum.d.ts +249 -249
  2575. package/dist/api/resources/hris/types/DataPassthroughRequest.d.ts +3 -0
  2576. package/dist/api/resources/hris/types/Deduction.d.ts +3 -0
  2577. package/dist/api/resources/hris/types/Dependent.d.ts +11 -8
  2578. package/dist/api/resources/hris/types/DependentGender.d.ts +5 -5
  2579. package/dist/api/resources/hris/types/DependentRelationship.d.ts +3 -3
  2580. package/dist/api/resources/hris/types/Earning.d.ts +7 -4
  2581. package/dist/api/resources/hris/types/EarningType.d.ts +4 -4
  2582. package/dist/api/resources/hris/types/EarningTypeEnum.d.ts +4 -4
  2583. package/dist/api/resources/hris/types/Employee.d.ts +24 -21
  2584. package/dist/api/resources/hris/types/EmployeeEmploymentStatus.d.ts +3 -3
  2585. package/dist/api/resources/hris/types/EmployeeEthnicity.d.ts +8 -8
  2586. package/dist/api/resources/hris/types/EmployeeGender.d.ts +5 -5
  2587. package/dist/api/resources/hris/types/EmployeeMaritalStatus.d.ts +5 -5
  2588. package/dist/api/resources/hris/types/EmployeePayrollRun.d.ts +3 -0
  2589. package/dist/api/resources/hris/types/EmployeeRequest.d.ts +24 -21
  2590. package/dist/api/resources/hris/types/EmployeeRequestEmploymentStatus.d.ts +3 -3
  2591. package/dist/api/resources/hris/types/EmployeeRequestEthnicity.d.ts +8 -8
  2592. package/dist/api/resources/hris/types/EmployeeRequestGender.d.ts +5 -5
  2593. package/dist/api/resources/hris/types/EmployeeRequestMaritalStatus.d.ts +5 -5
  2594. package/dist/api/resources/hris/types/EmployerBenefit.d.ts +8 -5
  2595. package/dist/api/resources/hris/types/EmployerBenefitBenefitPlanType.d.ts +5 -5
  2596. package/dist/api/resources/hris/types/Employment.d.ts +336 -333
  2597. package/dist/api/resources/hris/types/EmploymentEmploymentType.d.ts +5 -5
  2598. package/dist/api/resources/hris/types/EmploymentFlsaStatus.d.ts +4 -4
  2599. package/dist/api/resources/hris/types/EmploymentPayCurrency.d.ts +306 -306
  2600. package/dist/api/resources/hris/types/EmploymentPayFrequency.d.ts +9 -9
  2601. package/dist/api/resources/hris/types/EmploymentPayPeriod.d.ts +9 -9
  2602. package/dist/api/resources/hris/types/EmploymentStatusEnum.d.ts +3 -3
  2603. package/dist/api/resources/hris/types/EmploymentTypeEnum.d.ts +5 -5
  2604. package/dist/api/resources/hris/types/EnabledActionsEnum.d.ts +2 -2
  2605. package/dist/api/resources/hris/types/EncodingEnum.d.ts +3 -3
  2606. package/dist/api/resources/hris/types/EthnicityEnum.d.ts +8 -8
  2607. package/dist/api/resources/hris/types/EventTypeEnum.d.ts +30 -30
  2608. package/dist/api/resources/hris/types/FlsaStatusEnum.d.ts +4 -4
  2609. package/dist/api/resources/hris/types/GenderEnum.d.ts +5 -5
  2610. package/dist/api/resources/hris/types/Group.d.ts +8 -5
  2611. package/dist/api/resources/hris/types/GroupType.d.ts +5 -5
  2612. package/dist/api/resources/hris/types/GroupTypeEnum.d.ts +5 -5
  2613. package/dist/api/resources/hris/types/Issue.d.ts +2 -2
  2614. package/dist/api/resources/hris/types/IssueStatus.d.ts +2 -2
  2615. package/dist/api/resources/hris/types/IssueStatusEnum.d.ts +2 -2
  2616. package/dist/api/resources/hris/types/LinkedAccountCondition.d.ts +1 -1
  2617. package/dist/api/resources/hris/types/Location.d.ts +254 -251
  2618. package/dist/api/resources/hris/types/LocationCountry.d.ts +249 -249
  2619. package/dist/api/resources/hris/types/LocationLocationType.d.ts +2 -2
  2620. package/dist/api/resources/hris/types/LocationTypeEnum.d.ts +2 -2
  2621. package/dist/api/resources/hris/types/MaritalStatusEnum.d.ts +5 -5
  2622. package/dist/api/resources/hris/types/MethodEnum.d.ts +7 -7
  2623. package/dist/api/resources/hris/types/ModelOperation.d.ts +3 -0
  2624. package/dist/api/resources/hris/types/MultipartFormFieldRequest.d.ts +6 -3
  2625. package/dist/api/resources/hris/types/MultipartFormFieldRequestEncoding.d.ts +3 -3
  2626. package/dist/api/resources/hris/types/PayCurrencyEnum.d.ts +306 -306
  2627. package/dist/api/resources/hris/types/PayFrequencyEnum.d.ts +9 -9
  2628. package/dist/api/resources/hris/types/PayGroup.d.ts +3 -0
  2629. package/dist/api/resources/hris/types/PayPeriodEnum.d.ts +9 -9
  2630. package/dist/api/resources/hris/types/PayrollRun.d.ts +13 -10
  2631. package/dist/api/resources/hris/types/PayrollRunRunState.d.ts +5 -5
  2632. package/dist/api/resources/hris/types/PayrollRunRunType.d.ts +5 -5
  2633. package/dist/api/resources/hris/types/PolicyTypeEnum.d.ts +6 -6
  2634. package/dist/api/resources/hris/types/ReasonEnum.d.ts +3 -3
  2635. package/dist/api/resources/hris/types/RelationshipEnum.d.ts +3 -3
  2636. package/dist/api/resources/hris/types/RemoteKey.d.ts +3 -0
  2637. package/dist/api/resources/hris/types/RemoteResponse.d.ts +3 -0
  2638. package/dist/api/resources/hris/types/RequestFormatEnum.d.ts +3 -3
  2639. package/dist/api/resources/hris/types/RequestTypeEnum.d.ts +6 -6
  2640. package/dist/api/resources/hris/types/ResponseTypeEnum.d.ts +2 -2
  2641. package/dist/api/resources/hris/types/RoleEnum.d.ts +6 -6
  2642. package/dist/api/resources/hris/types/RunStateEnum.d.ts +5 -5
  2643. package/dist/api/resources/hris/types/RunTypeEnum.d.ts +5 -5
  2644. package/dist/api/resources/hris/types/SelectiveSyncConfigurationsUsageEnum.d.ts +2 -2
  2645. package/dist/api/resources/hris/types/SyncStatus.d.ts +3 -0
  2646. package/dist/api/resources/hris/types/SyncStatusStatusEnum.d.ts +6 -6
  2647. package/dist/api/resources/hris/types/Tax.d.ts +3 -0
  2648. package/dist/api/resources/hris/types/Team.d.ts +3 -0
  2649. package/dist/api/resources/hris/types/TimeOff.d.ts +16 -13
  2650. package/dist/api/resources/hris/types/TimeOffBalance.d.ts +9 -6
  2651. package/dist/api/resources/hris/types/TimeOffBalancePolicyType.d.ts +6 -6
  2652. package/dist/api/resources/hris/types/TimeOffRequest.d.ts +16 -13
  2653. package/dist/api/resources/hris/types/TimeOffRequestRequestType.d.ts +6 -6
  2654. package/dist/api/resources/hris/types/TimeOffRequestStatus.d.ts +5 -5
  2655. package/dist/api/resources/hris/types/TimeOffRequestType.d.ts +6 -6
  2656. package/dist/api/resources/hris/types/TimeOffRequestUnits.d.ts +2 -2
  2657. package/dist/api/resources/hris/types/TimeOffStatus.d.ts +5 -5
  2658. package/dist/api/resources/hris/types/TimeOffStatusEnum.d.ts +5 -5
  2659. package/dist/api/resources/hris/types/TimeOffUnits.d.ts +2 -2
  2660. package/dist/api/resources/hris/types/TimesheetEntry.d.ts +3 -1
  2661. package/dist/api/resources/hris/types/TimesheetEntryRequest.d.ts +3 -1
  2662. package/dist/api/resources/hris/types/UnitsEnum.d.ts +2 -2
  2663. package/dist/api/resources/hris/types/index.d.ts +22 -59
  2664. package/dist/api/resources/hris/types/index.js +22 -59
  2665. package/dist/api/resources/ticketing/client/Client.d.ts +1 -0
  2666. package/dist/api/resources/ticketing/index.d.ts +1 -1
  2667. package/dist/api/resources/ticketing/index.js +1 -1
  2668. package/dist/api/resources/ticketing/resources/accountDetails/client/Client.d.ts +4 -0
  2669. package/dist/api/resources/ticketing/resources/accountDetails/client/Client.js +5 -1
  2670. package/dist/api/resources/ticketing/resources/accountToken/client/Client.d.ts +1 -0
  2671. package/dist/api/resources/ticketing/resources/accountToken/client/Client.js +2 -1
  2672. package/dist/api/resources/ticketing/resources/accounts/client/Client.d.ts +7 -0
  2673. package/dist/api/resources/ticketing/resources/accounts/client/Client.js +22 -15
  2674. package/dist/api/resources/ticketing/resources/accounts/client/requests/AccountsListRequest.d.ts +4 -0
  2675. package/dist/api/resources/ticketing/resources/accounts/client/requests/AccountsRetrieveRequest.d.ts +4 -0
  2676. package/dist/api/resources/ticketing/resources/asyncPassthrough/client/Client.d.ts +15 -0
  2677. package/dist/api/resources/ticketing/resources/asyncPassthrough/client/Client.js +18 -2
  2678. package/dist/api/resources/ticketing/resources/attachments/client/Client.d.ts +24 -0
  2679. package/dist/api/resources/ticketing/resources/attachments/client/Client.js +78 -33
  2680. package/dist/api/resources/ticketing/resources/attachments/client/requests/AttachmentsListRequest.d.ts +6 -0
  2681. package/dist/api/resources/ticketing/resources/attachments/client/requests/AttachmentsRetrieveRequest.d.ts +6 -0
  2682. package/dist/api/resources/ticketing/resources/attachments/client/requests/TicketingAttachmentEndpointRequest.d.ts +11 -0
  2683. package/dist/api/resources/ticketing/resources/auditTrail/client/Client.d.ts +4 -0
  2684. package/dist/api/resources/ticketing/resources/auditTrail/client/Client.js +12 -9
  2685. package/dist/api/resources/ticketing/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +4 -0
  2686. package/dist/api/resources/ticketing/resources/availableActions/client/Client.d.ts +1 -0
  2687. package/dist/api/resources/ticketing/resources/availableActions/client/Client.js +2 -1
  2688. package/dist/api/resources/ticketing/resources/collections/client/Client.d.ts +21 -0
  2689. package/dist/api/resources/ticketing/resources/collections/client/Client.js +52 -30
  2690. package/dist/api/resources/ticketing/resources/collections/client/requests/CollectionsListRequest.d.ts +11 -2
  2691. package/dist/api/resources/ticketing/resources/collections/client/requests/CollectionsRetrieveRequest.d.ts +8 -0
  2692. package/dist/api/resources/ticketing/resources/collections/client/requests/CollectionsUsersListRequest.d.ts +6 -0
  2693. package/dist/api/resources/ticketing/resources/collections/index.d.ts +1 -0
  2694. package/dist/api/resources/ticketing/resources/collections/index.js +1 -0
  2695. package/dist/api/resources/ticketing/resources/collections/types/index.d.ts +2 -0
  2696. package/dist/api/resources/ticketing/resources/collections/types/index.js +18 -0
  2697. package/dist/api/resources/ticketing/resources/comments/client/Client.d.ts +22 -0
  2698. package/dist/api/resources/ticketing/resources/comments/client/Client.js +48 -24
  2699. package/dist/api/resources/ticketing/resources/comments/client/requests/CommentEndpointRequest.d.ts +9 -0
  2700. package/dist/api/resources/ticketing/resources/comments/client/requests/CommentsListRequest.d.ts +6 -0
  2701. package/dist/api/resources/ticketing/resources/comments/client/requests/CommentsRetrieveRequest.d.ts +6 -0
  2702. package/dist/api/resources/ticketing/resources/comments/index.d.ts +1 -0
  2703. package/dist/api/resources/ticketing/resources/comments/index.js +1 -0
  2704. package/dist/api/resources/ticketing/resources/comments/types/index.d.ts +2 -0
  2705. package/dist/api/resources/ticketing/resources/comments/types/index.js +18 -0
  2706. package/dist/api/resources/ticketing/resources/contacts/client/Client.d.ts +11 -0
  2707. package/dist/api/resources/ticketing/resources/contacts/client/Client.js +28 -17
  2708. package/dist/api/resources/ticketing/resources/contacts/client/requests/ContactsListRequest.d.ts +6 -0
  2709. package/dist/api/resources/ticketing/resources/contacts/client/requests/ContactsRetrieveRequest.d.ts +6 -0
  2710. package/dist/api/resources/ticketing/resources/deleteAccount/client/Client.d.ts +4 -0
  2711. package/dist/api/resources/ticketing/resources/deleteAccount/client/Client.js +5 -1
  2712. package/dist/api/resources/ticketing/resources/forceResync/client/Client.d.ts +4 -0
  2713. package/dist/api/resources/ticketing/resources/forceResync/client/Client.js +5 -1
  2714. package/dist/api/resources/ticketing/resources/generateKey/client/Client.d.ts +6 -0
  2715. package/dist/api/resources/ticketing/resources/generateKey/client/Client.js +7 -1
  2716. package/dist/api/resources/ticketing/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +6 -0
  2717. package/dist/api/resources/ticketing/resources/index.d.ts +14 -7
  2718. package/dist/api/resources/ticketing/resources/index.js +15 -8
  2719. package/dist/api/resources/ticketing/resources/issues/client/Client.d.ts +9 -0
  2720. package/dist/api/resources/ticketing/resources/issues/client/Client.js +26 -17
  2721. package/dist/api/resources/ticketing/resources/issues/client/requests/IssuesListRequest.d.ts +8 -2
  2722. package/dist/api/resources/ticketing/resources/issues/index.d.ts +1 -0
  2723. package/dist/api/resources/ticketing/resources/issues/index.js +1 -0
  2724. package/dist/api/resources/ticketing/resources/issues/types/index.d.ts +1 -0
  2725. package/dist/api/resources/ticketing/resources/issues/types/index.js +17 -0
  2726. package/dist/api/resources/ticketing/resources/linkToken/client/Client.d.ts +1 -0
  2727. package/dist/api/resources/ticketing/resources/linkToken/client/Client.js +2 -1
  2728. package/dist/api/resources/ticketing/resources/linkedAccounts/client/Client.d.ts +6 -0
  2729. package/dist/api/resources/ticketing/resources/linkedAccounts/client/Client.js +21 -16
  2730. package/dist/api/resources/ticketing/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.d.ts +13 -7
  2731. package/dist/api/resources/ticketing/resources/linkedAccounts/index.d.ts +1 -0
  2732. package/dist/api/resources/ticketing/resources/linkedAccounts/index.js +1 -0
  2733. package/dist/api/resources/ticketing/resources/linkedAccounts/types/index.d.ts +1 -0
  2734. package/dist/api/resources/ticketing/resources/linkedAccounts/types/index.js +17 -0
  2735. package/dist/api/resources/ticketing/resources/passthrough/client/Client.d.ts +1 -0
  2736. package/dist/api/resources/ticketing/resources/passthrough/client/Client.js +2 -1
  2737. package/dist/api/resources/ticketing/resources/projects/client/Client.d.ts +12 -0
  2738. package/dist/api/resources/ticketing/resources/projects/client/Client.js +35 -22
  2739. package/dist/api/resources/ticketing/resources/projects/client/requests/ProjectsListRequest.d.ts +4 -0
  2740. package/dist/api/resources/ticketing/resources/projects/client/requests/ProjectsRetrieveRequest.d.ts +4 -0
  2741. package/dist/api/resources/ticketing/resources/projects/client/requests/ProjectsUsersListRequest.d.ts +6 -0
  2742. package/dist/api/resources/ticketing/resources/projects/index.d.ts +1 -0
  2743. package/dist/api/resources/ticketing/resources/projects/index.js +1 -0
  2744. package/dist/api/resources/ticketing/resources/projects/types/index.d.ts +1 -0
  2745. package/dist/api/resources/ticketing/resources/projects/types/index.js +17 -0
  2746. package/dist/api/resources/ticketing/resources/regenerateKey/client/Client.d.ts +6 -0
  2747. package/dist/api/resources/ticketing/resources/regenerateKey/client/Client.js +7 -1
  2748. package/dist/api/resources/ticketing/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +6 -0
  2749. package/dist/api/resources/ticketing/resources/roles/client/Client.d.ts +7 -0
  2750. package/dist/api/resources/ticketing/resources/roles/client/Client.js +22 -15
  2751. package/dist/api/resources/ticketing/resources/roles/client/requests/RolesListRequest.d.ts +4 -0
  2752. package/dist/api/resources/ticketing/resources/roles/client/requests/RolesRetrieveRequest.d.ts +4 -0
  2753. package/dist/api/resources/ticketing/resources/selectiveSync/client/Client.d.ts +14 -0
  2754. package/dist/api/resources/ticketing/resources/selectiveSync/client/Client.js +23 -8
  2755. package/dist/api/resources/ticketing/resources/selectiveSync/client/requests/LinkedAccountSelectiveSyncConfigurationListRequest.d.ts +8 -0
  2756. package/dist/api/resources/ticketing/resources/selectiveSync/client/requests/SelectiveSyncMetaListRequest.d.ts +4 -0
  2757. package/dist/api/resources/ticketing/resources/syncStatus/client/Client.d.ts +4 -0
  2758. package/dist/api/resources/ticketing/resources/syncStatus/client/Client.js +8 -5
  2759. package/dist/api/resources/ticketing/resources/syncStatus/client/requests/SyncStatusListRequest.d.ts +4 -0
  2760. package/dist/api/resources/ticketing/resources/tags/client/Client.d.ts +7 -0
  2761. package/dist/api/resources/ticketing/resources/tags/client/Client.js +22 -15
  2762. package/dist/api/resources/ticketing/resources/tags/client/requests/TagsListRequest.d.ts +4 -0
  2763. package/dist/api/resources/ticketing/resources/tags/client/requests/TagsRetrieveRequest.d.ts +4 -0
  2764. package/dist/api/resources/ticketing/resources/teams/client/Client.d.ts +7 -0
  2765. package/dist/api/resources/ticketing/resources/teams/client/Client.js +22 -15
  2766. package/dist/api/resources/ticketing/resources/teams/client/requests/TeamsListRequest.d.ts +4 -0
  2767. package/dist/api/resources/ticketing/resources/teams/client/requests/TeamsRetrieveRequest.d.ts +4 -0
  2768. package/dist/api/resources/ticketing/resources/tickets/client/Client.d.ts +58 -0
  2769. package/dist/api/resources/ticketing/resources/tickets/client/Client.js +128 -64
  2770. package/dist/api/resources/ticketing/resources/tickets/client/requests/PatchedTicketEndpointRequest.d.ts +16 -0
  2771. package/dist/api/resources/ticketing/resources/tickets/client/requests/TicketEndpointRequest.d.ts +13 -0
  2772. package/dist/api/resources/ticketing/resources/tickets/client/requests/TicketsCollaboratorsListRequest.d.ts +6 -0
  2773. package/dist/api/resources/ticketing/resources/tickets/client/requests/TicketsListRequest.d.ts +18 -8
  2774. package/dist/api/resources/ticketing/resources/tickets/client/requests/TicketsRemoteFieldClassesListRequest.d.ts +4 -0
  2775. package/dist/api/resources/ticketing/resources/tickets/client/requests/TicketsRetrieveRequest.d.ts +8 -0
  2776. package/dist/api/resources/ticketing/resources/tickets/index.d.ts +1 -0
  2777. package/dist/api/resources/ticketing/resources/tickets/index.js +1 -0
  2778. package/dist/api/resources/ticketing/resources/tickets/types/index.d.ts +9 -0
  2779. package/dist/api/resources/ticketing/resources/tickets/types/index.js +25 -0
  2780. package/dist/api/resources/ticketing/resources/users/client/Client.d.ts +11 -0
  2781. package/dist/api/resources/ticketing/resources/users/client/Client.js +29 -18
  2782. package/dist/api/resources/ticketing/resources/users/client/requests/UsersListRequest.d.ts +6 -0
  2783. package/dist/api/resources/ticketing/resources/users/client/requests/UsersRetrieveRequest.d.ts +6 -0
  2784. package/dist/api/resources/ticketing/resources/users/index.d.ts +1 -0
  2785. package/dist/api/resources/ticketing/resources/users/index.js +1 -0
  2786. package/dist/api/resources/ticketing/resources/users/types/index.d.ts +2 -0
  2787. package/dist/api/resources/ticketing/resources/users/types/index.js +18 -0
  2788. package/dist/api/resources/ticketing/resources/webhookReceivers/client/Client.d.ts +4 -0
  2789. package/dist/api/resources/ticketing/resources/webhookReceivers/client/Client.js +7 -2
  2790. package/dist/api/resources/ticketing/types/AccessLevelEnum.d.ts +3 -3
  2791. package/dist/api/resources/ticketing/types/Account.d.ts +3 -0
  2792. package/dist/api/resources/ticketing/types/AccountDetailsAndActions.d.ts +3 -0
  2793. package/dist/api/resources/ticketing/types/AccountDetailsAndActionsStatusEnum.d.ts +3 -3
  2794. package/dist/api/resources/ticketing/types/Attachment.d.ts +3 -0
  2795. package/dist/api/resources/ticketing/types/AttachmentRequest.d.ts +3 -0
  2796. package/dist/api/resources/ticketing/types/AuditLogEvent.d.ts +36 -36
  2797. package/dist/api/resources/ticketing/types/AuditLogEventEventType.d.ts +30 -30
  2798. package/dist/api/resources/ticketing/types/AuditLogEventRole.d.ts +6 -6
  2799. package/dist/api/resources/ticketing/types/AvailableActions.d.ts +3 -0
  2800. package/dist/api/resources/ticketing/types/CategoriesEnum.d.ts +7 -7
  2801. package/dist/api/resources/ticketing/types/CategoryEnum.d.ts +7 -7
  2802. package/dist/api/resources/ticketing/types/Collection.d.ts +8 -5
  2803. package/dist/api/resources/ticketing/types/CollectionAccessLevel.d.ts +3 -3
  2804. package/dist/api/resources/ticketing/types/CollectionCollectionType.d.ts +2 -2
  2805. package/dist/api/resources/ticketing/types/CollectionTypeEnum.d.ts +2 -2
  2806. package/dist/api/resources/ticketing/types/Comment.d.ts +3 -0
  2807. package/dist/api/resources/ticketing/types/CommentRequest.d.ts +3 -0
  2808. package/dist/api/resources/ticketing/types/ConditionSchema.d.ts +8 -8
  2809. package/dist/api/resources/ticketing/types/ConditionSchemaConditionType.d.ts +7 -7
  2810. package/dist/api/resources/ticketing/types/ConditionTypeEnum.d.ts +7 -7
  2811. package/dist/api/resources/ticketing/types/Contact.d.ts +3 -0
  2812. package/dist/api/resources/ticketing/types/DataPassthroughRequest.d.ts +3 -0
  2813. package/dist/api/resources/ticketing/types/EnabledActionsEnum.d.ts +2 -2
  2814. package/dist/api/resources/ticketing/types/EncodingEnum.d.ts +3 -3
  2815. package/dist/api/resources/ticketing/types/EventTypeEnum.d.ts +30 -30
  2816. package/dist/api/resources/ticketing/types/FieldFormatEnum.d.ts +6 -6
  2817. package/dist/api/resources/ticketing/types/FieldTypeEnum.d.ts +6 -6
  2818. package/dist/api/resources/ticketing/types/Issue.d.ts +2 -2
  2819. package/dist/api/resources/ticketing/types/IssueStatus.d.ts +2 -2
  2820. package/dist/api/resources/ticketing/types/IssueStatusEnum.d.ts +2 -2
  2821. package/dist/api/resources/ticketing/types/ItemFormatEnum.d.ts +6 -6
  2822. package/dist/api/resources/ticketing/types/ItemTypeEnum.d.ts +6 -6
  2823. package/dist/api/resources/ticketing/types/LinkedAccountCondition.d.ts +1 -1
  2824. package/dist/api/resources/ticketing/types/MethodEnum.d.ts +7 -7
  2825. package/dist/api/resources/ticketing/types/ModelOperation.d.ts +3 -0
  2826. package/dist/api/resources/ticketing/types/MultipartFormFieldRequest.d.ts +6 -3
  2827. package/dist/api/resources/ticketing/types/MultipartFormFieldRequestEncoding.d.ts +3 -3
  2828. package/dist/api/resources/ticketing/types/PatchedTicketRequest.d.ts +11 -8
  2829. package/dist/api/resources/ticketing/types/PatchedTicketRequestPriority.d.ts +4 -4
  2830. package/dist/api/resources/ticketing/types/PatchedTicketRequestStatus.d.ts +4 -4
  2831. package/dist/api/resources/ticketing/types/PriorityEnum.d.ts +4 -4
  2832. package/dist/api/resources/ticketing/types/Project.d.ts +3 -0
  2833. package/dist/api/resources/ticketing/types/RemoteKey.d.ts +3 -0
  2834. package/dist/api/resources/ticketing/types/RemoteResponse.d.ts +3 -0
  2835. package/dist/api/resources/ticketing/types/RequestFormatEnum.d.ts +3 -3
  2836. package/dist/api/resources/ticketing/types/ResponseTypeEnum.d.ts +2 -2
  2837. package/dist/api/resources/ticketing/types/Role.d.ts +6 -3
  2838. package/dist/api/resources/ticketing/types/RoleEnum.d.ts +6 -6
  2839. package/dist/api/resources/ticketing/types/RoleTicketAccess.d.ts +3 -3
  2840. package/dist/api/resources/ticketing/types/SelectiveSyncConfigurationsUsageEnum.d.ts +2 -2
  2841. package/dist/api/resources/ticketing/types/SyncStatus.d.ts +3 -0
  2842. package/dist/api/resources/ticketing/types/SyncStatusStatusEnum.d.ts +6 -6
  2843. package/dist/api/resources/ticketing/types/Tag.d.ts +3 -0
  2844. package/dist/api/resources/ticketing/types/Team.d.ts +3 -0
  2845. package/dist/api/resources/ticketing/types/Ticket.d.ts +11 -8
  2846. package/dist/api/resources/ticketing/types/TicketAccessEnum.d.ts +3 -3
  2847. package/dist/api/resources/ticketing/types/TicketActionsEnum.d.ts +6 -6
  2848. package/dist/api/resources/ticketing/types/TicketPriority.d.ts +4 -4
  2849. package/dist/api/resources/ticketing/types/TicketRequest.d.ts +11 -8
  2850. package/dist/api/resources/ticketing/types/TicketRequestPriority.d.ts +4 -4
  2851. package/dist/api/resources/ticketing/types/TicketRequestStatus.d.ts +4 -4
  2852. package/dist/api/resources/ticketing/types/TicketStatus.d.ts +4 -4
  2853. package/dist/api/resources/ticketing/types/TicketStatusEnum.d.ts +4 -4
  2854. package/dist/api/resources/ticketing/types/User.d.ts +3 -0
  2855. package/dist/api/resources/ticketing/types/index.d.ts +19 -37
  2856. package/dist/api/resources/ticketing/types/index.js +19 -37
  2857. package/dist/core/fetcher/APIResponse.d.ts +1 -0
  2858. package/dist/core/fetcher/Fetcher.d.ts +3 -6
  2859. package/dist/core/fetcher/Fetcher.js +80 -35
  2860. package/dist/core/fetcher/getHeader.d.ts +1 -0
  2861. package/dist/core/fetcher/getHeader.js +12 -0
  2862. package/dist/core/fetcher/index.d.ts +1 -0
  2863. package/dist/core/fetcher/index.js +3 -1
  2864. package/dist/core/index.d.ts +0 -1
  2865. package/dist/core/index.js +0 -1
  2866. package/dist/core/schemas/Schema.d.ts +1 -0
  2867. package/dist/core/schemas/Schema.js +1 -0
  2868. package/dist/core/schemas/builders/literals/booleanLiteral.d.ts +2 -0
  2869. package/dist/core/schemas/builders/literals/booleanLiteral.js +29 -0
  2870. package/dist/core/schemas/builders/literals/index.d.ts +1 -0
  2871. package/dist/core/schemas/builders/literals/index.js +3 -1
  2872. package/dist/core/schemas/builders/object/index.d.ts +2 -0
  2873. package/dist/core/schemas/builders/object/index.js +3 -1
  2874. package/dist/core/schemas/builders/object/objectWithoutOptionalProperties.d.ts +6 -0
  2875. package/dist/core/schemas/builders/object/objectWithoutOptionalProperties.js +8 -0
  2876. package/dist/serialization/resources/accounting/index.d.ts +1 -1
  2877. package/dist/serialization/resources/accounting/index.js +1 -1
  2878. package/dist/serialization/resources/accounting/resources/accounts/index.d.ts +1 -0
  2879. package/dist/serialization/resources/accounting/resources/accounts/index.js +1 -0
  2880. package/dist/serialization/resources/accounting/resources/accounts/types/AccountsListRequestRemoteFields.d.ts +10 -0
  2881. package/dist/serialization/resources/accounting/resources/accounts/types/AccountsListRequestRemoteFields.js +31 -0
  2882. package/dist/serialization/resources/accounting/resources/accounts/types/AccountsListRequestShowEnumOrigins.d.ts +10 -0
  2883. package/dist/serialization/resources/accounting/resources/accounts/types/AccountsListRequestShowEnumOrigins.js +31 -0
  2884. package/dist/serialization/resources/accounting/resources/accounts/types/AccountsRetrieveRequestRemoteFields.d.ts +10 -0
  2885. package/dist/serialization/resources/accounting/resources/accounts/types/AccountsRetrieveRequestRemoteFields.js +31 -0
  2886. package/dist/serialization/resources/accounting/resources/accounts/types/AccountsRetrieveRequestShowEnumOrigins.d.ts +10 -0
  2887. package/dist/serialization/resources/accounting/resources/accounts/types/AccountsRetrieveRequestShowEnumOrigins.js +31 -0
  2888. package/dist/serialization/resources/accounting/resources/accounts/types/index.d.ts +4 -0
  2889. package/dist/serialization/resources/accounting/resources/accounts/types/index.js +20 -0
  2890. package/dist/serialization/resources/accounting/resources/companyInfo/index.d.ts +1 -0
  2891. package/dist/serialization/resources/accounting/resources/companyInfo/index.js +17 -0
  2892. package/dist/serialization/resources/accounting/resources/companyInfo/types/CompanyInfoListRequestExpand.d.ts +10 -0
  2893. package/dist/serialization/resources/accounting/resources/companyInfo/types/CompanyInfoListRequestExpand.js +31 -0
  2894. package/dist/serialization/resources/accounting/resources/companyInfo/types/CompanyInfoRetrieveRequestExpand.d.ts +10 -0
  2895. package/dist/serialization/resources/accounting/resources/companyInfo/types/CompanyInfoRetrieveRequestExpand.js +31 -0
  2896. package/dist/serialization/resources/accounting/resources/companyInfo/types/index.d.ts +2 -0
  2897. package/dist/serialization/resources/accounting/resources/companyInfo/types/index.js +18 -0
  2898. package/dist/serialization/resources/accounting/resources/contacts/index.d.ts +1 -0
  2899. package/dist/serialization/resources/accounting/resources/contacts/index.js +1 -0
  2900. package/dist/serialization/resources/accounting/resources/contacts/types/ContactsListRequestExpand.d.ts +10 -0
  2901. package/dist/serialization/resources/accounting/resources/contacts/types/ContactsListRequestExpand.js +39 -0
  2902. package/dist/serialization/resources/accounting/resources/contacts/types/ContactsRetrieveRequestExpand.d.ts +10 -0
  2903. package/dist/serialization/resources/accounting/resources/contacts/types/ContactsRetrieveRequestExpand.js +39 -0
  2904. package/dist/serialization/resources/accounting/resources/contacts/types/index.d.ts +2 -0
  2905. package/dist/serialization/resources/accounting/resources/contacts/types/index.js +18 -0
  2906. package/dist/serialization/resources/accounting/resources/creditNotes/index.d.ts +1 -0
  2907. package/dist/serialization/resources/accounting/resources/creditNotes/index.js +17 -0
  2908. package/dist/serialization/resources/accounting/resources/creditNotes/types/CreditNotesListRequestExpand.d.ts +10 -0
  2909. package/dist/serialization/resources/accounting/resources/creditNotes/types/CreditNotesListRequestExpand.js +159 -0
  2910. package/dist/serialization/resources/accounting/resources/creditNotes/types/CreditNotesListRequestRemoteFields.d.ts +10 -0
  2911. package/dist/serialization/resources/accounting/resources/creditNotes/types/CreditNotesListRequestRemoteFields.js +31 -0
  2912. package/dist/serialization/resources/accounting/resources/creditNotes/types/CreditNotesListRequestShowEnumOrigins.d.ts +10 -0
  2913. package/dist/serialization/resources/accounting/resources/creditNotes/types/CreditNotesListRequestShowEnumOrigins.js +31 -0
  2914. package/dist/serialization/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestExpand.d.ts +10 -0
  2915. package/dist/serialization/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestExpand.js +159 -0
  2916. package/dist/serialization/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestRemoteFields.d.ts +10 -0
  2917. package/dist/serialization/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestRemoteFields.js +31 -0
  2918. package/dist/serialization/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestShowEnumOrigins.d.ts +10 -0
  2919. package/dist/serialization/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestShowEnumOrigins.js +31 -0
  2920. package/dist/serialization/resources/accounting/resources/creditNotes/types/index.d.ts +6 -0
  2921. package/dist/serialization/resources/accounting/resources/creditNotes/types/index.js +22 -0
  2922. package/dist/serialization/resources/accounting/resources/expenses/index.d.ts +1 -0
  2923. package/dist/serialization/resources/accounting/resources/expenses/index.js +1 -0
  2924. package/dist/serialization/resources/accounting/resources/expenses/types/ExpensesListRequestExpand.d.ts +10 -0
  2925. package/dist/serialization/resources/accounting/resources/expenses/types/ExpensesListRequestExpand.js +63 -0
  2926. package/dist/serialization/resources/accounting/resources/expenses/types/ExpensesRetrieveRequestExpand.d.ts +10 -0
  2927. package/dist/serialization/resources/accounting/resources/expenses/types/ExpensesRetrieveRequestExpand.js +63 -0
  2928. package/dist/serialization/resources/accounting/resources/expenses/types/index.d.ts +2 -0
  2929. package/dist/serialization/resources/accounting/resources/expenses/types/index.js +18 -0
  2930. package/dist/serialization/resources/accounting/resources/index.d.ts +28 -7
  2931. package/dist/serialization/resources/accounting/resources/index.js +29 -8
  2932. package/dist/serialization/resources/accounting/resources/invoices/index.d.ts +1 -0
  2933. package/dist/serialization/resources/accounting/resources/invoices/index.js +1 -0
  2934. package/dist/serialization/resources/accounting/resources/invoices/types/InvoicesListRequestExpand.d.ts +10 -0
  2935. package/dist/serialization/resources/accounting/resources/invoices/types/InvoicesListRequestExpand.js +287 -0
  2936. package/dist/serialization/resources/accounting/resources/invoices/types/InvoicesListRequestType.d.ts +10 -0
  2937. package/dist/serialization/resources/accounting/resources/invoices/types/InvoicesListRequestType.js +31 -0
  2938. package/dist/serialization/resources/accounting/resources/invoices/types/InvoicesRetrieveRequestExpand.d.ts +10 -0
  2939. package/dist/serialization/resources/accounting/resources/invoices/types/InvoicesRetrieveRequestExpand.js +287 -0
  2940. package/dist/serialization/resources/accounting/resources/invoices/types/index.d.ts +3 -0
  2941. package/dist/serialization/resources/accounting/resources/invoices/types/index.js +19 -0
  2942. package/dist/serialization/resources/accounting/resources/issues/index.d.ts +1 -0
  2943. package/dist/serialization/resources/accounting/resources/issues/index.js +17 -0
  2944. package/dist/serialization/resources/accounting/resources/issues/types/IssuesListRequestStatus.d.ts +10 -0
  2945. package/dist/serialization/resources/accounting/resources/issues/types/IssuesListRequestStatus.js +31 -0
  2946. package/dist/serialization/resources/accounting/resources/issues/types/index.d.ts +1 -0
  2947. package/dist/serialization/resources/accounting/resources/issues/types/index.js +17 -0
  2948. package/dist/serialization/resources/accounting/resources/items/index.d.ts +1 -0
  2949. package/dist/serialization/resources/accounting/resources/items/index.js +17 -0
  2950. package/dist/serialization/resources/accounting/resources/items/types/ItemsListRequestExpand.d.ts +10 -0
  2951. package/dist/serialization/resources/accounting/resources/items/types/ItemsListRequestExpand.js +39 -0
  2952. package/dist/serialization/resources/accounting/resources/items/types/ItemsRetrieveRequestExpand.d.ts +10 -0
  2953. package/dist/serialization/resources/accounting/resources/items/types/ItemsRetrieveRequestExpand.js +39 -0
  2954. package/dist/serialization/resources/accounting/resources/items/types/index.d.ts +2 -0
  2955. package/dist/serialization/resources/accounting/resources/items/types/index.js +18 -0
  2956. package/dist/serialization/resources/accounting/resources/journalEntries/index.d.ts +1 -0
  2957. package/dist/serialization/resources/accounting/resources/journalEntries/index.js +1 -0
  2958. package/dist/serialization/resources/accounting/resources/journalEntries/types/JournalEntriesListRequestExpand.d.ts +10 -0
  2959. package/dist/serialization/resources/accounting/resources/journalEntries/types/JournalEntriesListRequestExpand.js +95 -0
  2960. package/dist/serialization/resources/accounting/resources/journalEntries/types/JournalEntriesRetrieveRequestExpand.d.ts +10 -0
  2961. package/dist/serialization/resources/accounting/resources/journalEntries/types/JournalEntriesRetrieveRequestExpand.js +95 -0
  2962. package/dist/serialization/resources/accounting/resources/journalEntries/types/index.d.ts +2 -0
  2963. package/dist/serialization/resources/accounting/resources/journalEntries/types/index.js +18 -0
  2964. package/dist/serialization/resources/accounting/resources/linkedAccounts/index.d.ts +1 -0
  2965. package/dist/serialization/resources/accounting/resources/linkedAccounts/index.js +17 -0
  2966. package/dist/serialization/resources/accounting/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.d.ts +10 -0
  2967. package/dist/serialization/resources/accounting/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.js +31 -0
  2968. package/dist/serialization/resources/accounting/resources/linkedAccounts/types/index.d.ts +1 -0
  2969. package/dist/serialization/resources/accounting/resources/linkedAccounts/types/index.js +17 -0
  2970. package/dist/serialization/resources/accounting/resources/payments/index.d.ts +1 -0
  2971. package/dist/serialization/resources/accounting/resources/payments/index.js +1 -0
  2972. package/dist/serialization/resources/accounting/resources/payments/types/PaymentsListRequestExpand.d.ts +10 -0
  2973. package/dist/serialization/resources/accounting/resources/payments/types/PaymentsListRequestExpand.js +95 -0
  2974. package/dist/serialization/resources/accounting/resources/payments/types/PaymentsRetrieveRequestExpand.d.ts +10 -0
  2975. package/dist/serialization/resources/accounting/resources/payments/types/PaymentsRetrieveRequestExpand.js +95 -0
  2976. package/dist/serialization/resources/accounting/resources/payments/types/index.d.ts +2 -0
  2977. package/dist/serialization/resources/accounting/resources/payments/types/index.js +18 -0
  2978. package/dist/serialization/resources/accounting/resources/purchaseOrders/index.d.ts +1 -0
  2979. package/dist/serialization/resources/accounting/resources/purchaseOrders/index.js +1 -0
  2980. package/dist/serialization/resources/accounting/resources/purchaseOrders/types/PurchaseOrdersListRequestExpand.d.ts +10 -0
  2981. package/dist/serialization/resources/accounting/resources/purchaseOrders/types/PurchaseOrdersListRequestExpand.js +95 -0
  2982. package/dist/serialization/resources/accounting/resources/purchaseOrders/types/PurchaseOrdersRetrieveRequestExpand.d.ts +10 -0
  2983. package/dist/serialization/resources/accounting/resources/purchaseOrders/types/PurchaseOrdersRetrieveRequestExpand.js +95 -0
  2984. package/dist/serialization/resources/accounting/resources/purchaseOrders/types/index.d.ts +2 -0
  2985. package/dist/serialization/resources/accounting/resources/purchaseOrders/types/index.js +18 -0
  2986. package/dist/serialization/resources/accounting/resources/transactions/index.d.ts +1 -0
  2987. package/dist/serialization/resources/accounting/resources/transactions/index.js +17 -0
  2988. package/dist/serialization/resources/accounting/resources/transactions/types/TransactionsListRequestExpand.d.ts +10 -0
  2989. package/dist/serialization/resources/accounting/resources/transactions/types/TransactionsListRequestExpand.js +63 -0
  2990. package/dist/serialization/resources/accounting/resources/transactions/types/TransactionsRetrieveRequestExpand.d.ts +10 -0
  2991. package/dist/serialization/resources/accounting/resources/transactions/types/TransactionsRetrieveRequestExpand.js +63 -0
  2992. package/dist/serialization/resources/accounting/resources/transactions/types/index.d.ts +2 -0
  2993. package/dist/serialization/resources/accounting/resources/transactions/types/index.js +18 -0
  2994. package/dist/serialization/resources/accounting/resources/vendorCredits/index.d.ts +1 -0
  2995. package/dist/serialization/resources/accounting/resources/vendorCredits/index.js +17 -0
  2996. package/dist/serialization/resources/accounting/resources/vendorCredits/types/VendorCreditsListRequestExpand.d.ts +10 -0
  2997. package/dist/serialization/resources/accounting/resources/vendorCredits/types/VendorCreditsListRequestExpand.js +63 -0
  2998. package/dist/serialization/resources/accounting/resources/vendorCredits/types/VendorCreditsRetrieveRequestExpand.d.ts +10 -0
  2999. package/dist/serialization/resources/accounting/resources/vendorCredits/types/VendorCreditsRetrieveRequestExpand.js +63 -0
  3000. package/dist/serialization/resources/accounting/resources/vendorCredits/types/index.d.ts +2 -0
  3001. package/dist/serialization/resources/accounting/resources/vendorCredits/types/index.js +18 -0
  3002. package/dist/serialization/resources/accounting/types/index.d.ts +43 -76
  3003. package/dist/serialization/resources/accounting/types/index.js +43 -76
  3004. package/dist/serialization/resources/ats/index.d.ts +1 -1
  3005. package/dist/serialization/resources/ats/index.js +1 -1
  3006. package/dist/serialization/resources/ats/resources/activities/index.d.ts +1 -0
  3007. package/dist/serialization/resources/ats/resources/activities/index.js +1 -0
  3008. package/dist/serialization/resources/ats/resources/activities/types/ActivitiesListRequestRemoteFields.d.ts +10 -0
  3009. package/dist/serialization/resources/ats/resources/activities/types/ActivitiesListRequestRemoteFields.js +31 -0
  3010. package/dist/serialization/resources/ats/resources/activities/types/ActivitiesListRequestShowEnumOrigins.d.ts +10 -0
  3011. package/dist/serialization/resources/ats/resources/activities/types/ActivitiesListRequestShowEnumOrigins.js +31 -0
  3012. package/dist/serialization/resources/ats/resources/activities/types/ActivitiesRetrieveRequestRemoteFields.d.ts +10 -0
  3013. package/dist/serialization/resources/ats/resources/activities/types/ActivitiesRetrieveRequestRemoteFields.js +31 -0
  3014. package/dist/serialization/resources/ats/resources/activities/types/ActivitiesRetrieveRequestShowEnumOrigins.d.ts +10 -0
  3015. package/dist/serialization/resources/ats/resources/activities/types/ActivitiesRetrieveRequestShowEnumOrigins.js +31 -0
  3016. package/dist/serialization/resources/ats/resources/activities/types/index.d.ts +4 -0
  3017. package/dist/serialization/resources/ats/resources/activities/types/index.js +20 -0
  3018. package/dist/serialization/resources/ats/resources/applications/index.d.ts +1 -0
  3019. package/dist/serialization/resources/ats/resources/applications/index.js +1 -0
  3020. package/dist/serialization/resources/ats/resources/applications/types/ApplicationsListRequestExpand.d.ts +10 -0
  3021. package/dist/serialization/resources/ats/resources/applications/types/ApplicationsListRequestExpand.js +63 -0
  3022. package/dist/serialization/resources/ats/resources/applications/types/ApplicationsRetrieveRequestExpand.d.ts +10 -0
  3023. package/dist/serialization/resources/ats/resources/applications/types/ApplicationsRetrieveRequestExpand.js +63 -0
  3024. package/dist/serialization/resources/ats/resources/applications/types/index.d.ts +2 -0
  3025. package/dist/serialization/resources/ats/resources/applications/types/index.js +18 -0
  3026. package/dist/serialization/resources/ats/resources/candidates/index.d.ts +1 -0
  3027. package/dist/serialization/resources/ats/resources/candidates/index.js +1 -0
  3028. package/dist/serialization/resources/ats/resources/candidates/types/CandidatesListRequestExpand.d.ts +10 -0
  3029. package/dist/serialization/resources/ats/resources/candidates/types/CandidatesListRequestExpand.js +31 -0
  3030. package/dist/serialization/resources/ats/resources/candidates/types/CandidatesRetrieveRequestExpand.d.ts +10 -0
  3031. package/dist/serialization/resources/ats/resources/candidates/types/CandidatesRetrieveRequestExpand.js +31 -0
  3032. package/dist/serialization/resources/ats/resources/candidates/types/index.d.ts +2 -0
  3033. package/dist/serialization/resources/ats/resources/candidates/types/index.js +18 -0
  3034. package/dist/serialization/resources/ats/resources/eeocs/index.d.ts +1 -0
  3035. package/dist/serialization/resources/ats/resources/eeocs/index.js +17 -0
  3036. package/dist/serialization/resources/ats/resources/eeocs/types/EeocsListRequestRemoteFields.d.ts +10 -0
  3037. package/dist/serialization/resources/ats/resources/eeocs/types/EeocsListRequestRemoteFields.js +47 -0
  3038. package/dist/serialization/resources/ats/resources/eeocs/types/EeocsListRequestShowEnumOrigins.d.ts +10 -0
  3039. package/dist/serialization/resources/ats/resources/eeocs/types/EeocsListRequestShowEnumOrigins.js +47 -0
  3040. package/dist/serialization/resources/ats/resources/eeocs/types/EeocsRetrieveRequestRemoteFields.d.ts +10 -0
  3041. package/dist/serialization/resources/ats/resources/eeocs/types/EeocsRetrieveRequestRemoteFields.js +47 -0
  3042. package/dist/serialization/resources/ats/resources/eeocs/types/EeocsRetrieveRequestShowEnumOrigins.d.ts +10 -0
  3043. package/dist/serialization/resources/ats/resources/eeocs/types/EeocsRetrieveRequestShowEnumOrigins.js +47 -0
  3044. package/dist/serialization/resources/ats/resources/eeocs/types/index.d.ts +4 -0
  3045. package/dist/serialization/resources/ats/resources/eeocs/types/index.js +20 -0
  3046. package/dist/serialization/resources/ats/resources/index.d.ts +20 -4
  3047. package/dist/serialization/resources/ats/resources/index.js +21 -5
  3048. package/dist/serialization/resources/ats/resources/interviews/index.d.ts +1 -0
  3049. package/dist/serialization/resources/ats/resources/interviews/index.js +1 -0
  3050. package/dist/serialization/resources/ats/resources/interviews/types/InterviewsListRequestExpand.d.ts +10 -0
  3051. package/dist/serialization/resources/ats/resources/interviews/types/InterviewsListRequestExpand.js +47 -0
  3052. package/dist/serialization/resources/ats/resources/interviews/types/InterviewsRetrieveRequestExpand.d.ts +10 -0
  3053. package/dist/serialization/resources/ats/resources/interviews/types/InterviewsRetrieveRequestExpand.js +47 -0
  3054. package/dist/serialization/resources/ats/resources/interviews/types/index.d.ts +2 -0
  3055. package/dist/serialization/resources/ats/resources/interviews/types/index.js +18 -0
  3056. package/dist/serialization/resources/ats/resources/issues/index.d.ts +1 -0
  3057. package/dist/serialization/resources/ats/resources/issues/index.js +17 -0
  3058. package/dist/serialization/resources/ats/resources/issues/types/IssuesListRequestStatus.d.ts +10 -0
  3059. package/dist/serialization/resources/ats/resources/issues/types/IssuesListRequestStatus.js +31 -0
  3060. package/dist/serialization/resources/ats/resources/issues/types/index.d.ts +1 -0
  3061. package/dist/serialization/resources/ats/resources/issues/types/index.js +17 -0
  3062. package/dist/serialization/resources/ats/resources/jobs/index.d.ts +1 -0
  3063. package/dist/serialization/resources/ats/resources/jobs/index.js +17 -0
  3064. package/dist/serialization/resources/ats/resources/jobs/types/JobsListRequestExpand.d.ts +10 -0
  3065. package/dist/serialization/resources/ats/resources/jobs/types/JobsListRequestExpand.js +47 -0
  3066. package/dist/serialization/resources/ats/resources/jobs/types/JobsListRequestStatus.d.ts +10 -0
  3067. package/dist/serialization/resources/ats/resources/jobs/types/JobsListRequestStatus.js +31 -0
  3068. package/dist/serialization/resources/ats/resources/jobs/types/JobsRetrieveRequestExpand.d.ts +10 -0
  3069. package/dist/serialization/resources/ats/resources/jobs/types/JobsRetrieveRequestExpand.js +47 -0
  3070. package/dist/serialization/resources/ats/resources/jobs/types/JobsScreeningQuestionsListRequestExpand.d.ts +10 -0
  3071. package/dist/serialization/resources/ats/resources/jobs/types/JobsScreeningQuestionsListRequestExpand.js +31 -0
  3072. package/dist/serialization/resources/ats/resources/jobs/types/index.d.ts +4 -0
  3073. package/dist/serialization/resources/ats/resources/jobs/types/index.js +20 -0
  3074. package/dist/serialization/resources/ats/resources/linkedAccounts/index.d.ts +1 -0
  3075. package/dist/serialization/resources/ats/resources/linkedAccounts/index.js +17 -0
  3076. package/dist/serialization/resources/ats/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.d.ts +10 -0
  3077. package/dist/serialization/resources/ats/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.js +31 -0
  3078. package/dist/serialization/resources/ats/resources/linkedAccounts/types/index.d.ts +1 -0
  3079. package/dist/serialization/resources/ats/resources/linkedAccounts/types/index.js +17 -0
  3080. package/dist/serialization/resources/ats/resources/offers/index.d.ts +1 -0
  3081. package/dist/serialization/resources/ats/resources/offers/index.js +17 -0
  3082. package/dist/serialization/resources/ats/resources/offers/types/OffersListRequestExpand.d.ts +10 -0
  3083. package/dist/serialization/resources/ats/resources/offers/types/OffersListRequestExpand.js +31 -0
  3084. package/dist/serialization/resources/ats/resources/offers/types/OffersRetrieveRequestExpand.d.ts +10 -0
  3085. package/dist/serialization/resources/ats/resources/offers/types/OffersRetrieveRequestExpand.js +31 -0
  3086. package/dist/serialization/resources/ats/resources/offers/types/index.d.ts +2 -0
  3087. package/dist/serialization/resources/ats/resources/offers/types/index.js +18 -0
  3088. package/dist/serialization/resources/ats/resources/scorecards/index.d.ts +1 -0
  3089. package/dist/serialization/resources/ats/resources/scorecards/index.js +17 -0
  3090. package/dist/serialization/resources/ats/resources/scorecards/types/ScorecardsListRequestExpand.d.ts +10 -0
  3091. package/dist/serialization/resources/ats/resources/scorecards/types/ScorecardsListRequestExpand.js +39 -0
  3092. package/dist/serialization/resources/ats/resources/scorecards/types/ScorecardsRetrieveRequestExpand.d.ts +10 -0
  3093. package/dist/serialization/resources/ats/resources/scorecards/types/ScorecardsRetrieveRequestExpand.js +39 -0
  3094. package/dist/serialization/resources/ats/resources/scorecards/types/index.d.ts +2 -0
  3095. package/dist/serialization/resources/ats/resources/scorecards/types/index.js +18 -0
  3096. package/dist/serialization/resources/ats/types/index.d.ts +29 -53
  3097. package/dist/serialization/resources/ats/types/index.js +29 -53
  3098. package/dist/serialization/resources/crm/index.d.ts +1 -1
  3099. package/dist/serialization/resources/crm/index.js +1 -1
  3100. package/dist/serialization/resources/crm/resources/contacts/index.d.ts +1 -0
  3101. package/dist/serialization/resources/crm/resources/contacts/index.js +1 -0
  3102. package/dist/serialization/resources/crm/resources/contacts/types/ContactsListRequestExpand.d.ts +10 -0
  3103. package/dist/serialization/resources/crm/resources/contacts/types/ContactsListRequestExpand.js +31 -0
  3104. package/dist/serialization/resources/crm/resources/contacts/types/ContactsRetrieveRequestExpand.d.ts +10 -0
  3105. package/dist/serialization/resources/crm/resources/contacts/types/ContactsRetrieveRequestExpand.js +31 -0
  3106. package/dist/serialization/resources/crm/resources/contacts/types/index.d.ts +2 -0
  3107. package/dist/serialization/resources/crm/resources/contacts/types/index.js +18 -0
  3108. package/dist/serialization/resources/crm/resources/engagements/index.d.ts +1 -0
  3109. package/dist/serialization/resources/crm/resources/engagements/index.js +1 -0
  3110. package/dist/serialization/resources/crm/resources/engagements/types/EngagementsListRequestExpand.d.ts +10 -0
  3111. package/dist/serialization/resources/crm/resources/engagements/types/EngagementsListRequestExpand.js +47 -0
  3112. package/dist/serialization/resources/crm/resources/engagements/types/EngagementsRetrieveRequestExpand.d.ts +10 -0
  3113. package/dist/serialization/resources/crm/resources/engagements/types/EngagementsRetrieveRequestExpand.js +47 -0
  3114. package/dist/serialization/resources/crm/resources/engagements/types/index.d.ts +2 -0
  3115. package/dist/serialization/resources/crm/resources/engagements/types/index.js +18 -0
  3116. package/dist/serialization/resources/crm/resources/index.d.ts +16 -6
  3117. package/dist/serialization/resources/crm/resources/index.js +17 -7
  3118. package/dist/serialization/resources/crm/resources/issues/index.d.ts +1 -0
  3119. package/dist/serialization/resources/crm/resources/issues/index.js +17 -0
  3120. package/dist/serialization/resources/crm/resources/issues/types/IssuesListRequestStatus.d.ts +10 -0
  3121. package/dist/serialization/resources/crm/resources/issues/types/IssuesListRequestStatus.js +31 -0
  3122. package/dist/serialization/resources/crm/resources/issues/types/index.d.ts +1 -0
  3123. package/dist/serialization/resources/crm/resources/issues/types/index.js +17 -0
  3124. package/dist/serialization/resources/crm/resources/leads/index.d.ts +1 -0
  3125. package/dist/serialization/resources/crm/resources/leads/index.js +1 -0
  3126. package/dist/serialization/resources/crm/resources/leads/types/LeadsListRequestExpand.d.ts +10 -0
  3127. package/dist/serialization/resources/crm/resources/leads/types/LeadsListRequestExpand.js +39 -0
  3128. package/dist/serialization/resources/crm/resources/leads/types/LeadsRetrieveRequestExpand.d.ts +10 -0
  3129. package/dist/serialization/resources/crm/resources/leads/types/LeadsRetrieveRequestExpand.js +39 -0
  3130. package/dist/serialization/resources/crm/resources/leads/types/index.d.ts +2 -0
  3131. package/dist/serialization/resources/crm/resources/leads/types/index.js +18 -0
  3132. package/dist/serialization/resources/crm/resources/linkedAccounts/index.d.ts +1 -0
  3133. package/dist/serialization/resources/crm/resources/linkedAccounts/index.js +17 -0
  3134. package/dist/serialization/resources/crm/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.d.ts +10 -0
  3135. package/dist/serialization/resources/crm/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.js +31 -0
  3136. package/dist/serialization/resources/crm/resources/linkedAccounts/types/index.d.ts +1 -0
  3137. package/dist/serialization/resources/crm/resources/linkedAccounts/types/index.js +17 -0
  3138. package/dist/serialization/resources/crm/resources/notes/index.d.ts +1 -0
  3139. package/dist/serialization/resources/crm/resources/notes/index.js +1 -0
  3140. package/dist/serialization/resources/crm/resources/notes/types/NotesListRequestExpand.d.ts +10 -0
  3141. package/dist/serialization/resources/crm/resources/notes/types/NotesListRequestExpand.js +47 -0
  3142. package/dist/serialization/resources/crm/resources/notes/types/NotesRetrieveRequestExpand.d.ts +10 -0
  3143. package/dist/serialization/resources/crm/resources/notes/types/NotesRetrieveRequestExpand.js +47 -0
  3144. package/dist/serialization/resources/crm/resources/notes/types/index.d.ts +2 -0
  3145. package/dist/serialization/resources/crm/resources/notes/types/index.js +18 -0
  3146. package/dist/serialization/resources/crm/resources/opportunities/index.d.ts +1 -0
  3147. package/dist/serialization/resources/crm/resources/opportunities/index.js +1 -0
  3148. package/dist/serialization/resources/crm/resources/opportunities/types/OpportunitiesListRequestExpand.d.ts +10 -0
  3149. package/dist/serialization/resources/crm/resources/opportunities/types/OpportunitiesListRequestExpand.js +39 -0
  3150. package/dist/serialization/resources/crm/resources/opportunities/types/OpportunitiesListRequestStatus.d.ts +10 -0
  3151. package/dist/serialization/resources/crm/resources/opportunities/types/OpportunitiesListRequestStatus.js +31 -0
  3152. package/dist/serialization/resources/crm/resources/opportunities/types/OpportunitiesRetrieveRequestExpand.d.ts +10 -0
  3153. package/dist/serialization/resources/crm/resources/opportunities/types/OpportunitiesRetrieveRequestExpand.js +39 -0
  3154. package/dist/serialization/resources/crm/resources/opportunities/types/index.d.ts +3 -0
  3155. package/dist/serialization/resources/crm/resources/opportunities/types/index.js +19 -0
  3156. package/dist/serialization/resources/crm/resources/tasks/index.d.ts +1 -0
  3157. package/dist/serialization/resources/crm/resources/tasks/index.js +1 -0
  3158. package/dist/serialization/resources/crm/resources/tasks/types/TasksListRequestExpand.d.ts +10 -0
  3159. package/dist/serialization/resources/crm/resources/tasks/types/TasksListRequestExpand.js +39 -0
  3160. package/dist/serialization/resources/crm/resources/tasks/types/TasksRetrieveRequestExpand.d.ts +10 -0
  3161. package/dist/serialization/resources/crm/resources/tasks/types/TasksRetrieveRequestExpand.js +39 -0
  3162. package/dist/serialization/resources/crm/resources/tasks/types/index.d.ts +2 -0
  3163. package/dist/serialization/resources/crm/resources/tasks/types/index.js +18 -0
  3164. package/dist/serialization/resources/crm/types/index.d.ts +33 -48
  3165. package/dist/serialization/resources/crm/types/index.js +33 -48
  3166. package/dist/serialization/resources/filestorage/index.d.ts +1 -1
  3167. package/dist/serialization/resources/filestorage/index.js +1 -1
  3168. package/dist/serialization/resources/filestorage/resources/files/index.d.ts +1 -0
  3169. package/dist/serialization/resources/filestorage/resources/files/index.js +1 -0
  3170. package/dist/serialization/resources/filestorage/resources/files/types/FilesListRequestExpand.d.ts +10 -0
  3171. package/dist/serialization/resources/filestorage/resources/files/types/FilesListRequestExpand.js +39 -0
  3172. package/dist/serialization/resources/filestorage/resources/files/types/FilesRetrieveRequestExpand.d.ts +10 -0
  3173. package/dist/serialization/resources/filestorage/resources/files/types/FilesRetrieveRequestExpand.js +39 -0
  3174. package/dist/serialization/resources/filestorage/resources/files/types/index.d.ts +2 -0
  3175. package/dist/serialization/resources/filestorage/resources/files/types/index.js +18 -0
  3176. package/dist/serialization/resources/filestorage/resources/folders/index.d.ts +1 -0
  3177. package/dist/serialization/resources/filestorage/resources/folders/index.js +1 -0
  3178. package/dist/serialization/resources/filestorage/resources/folders/types/FoldersListRequestExpand.d.ts +10 -0
  3179. package/dist/serialization/resources/filestorage/resources/folders/types/FoldersListRequestExpand.js +39 -0
  3180. package/dist/serialization/resources/filestorage/resources/folders/types/FoldersRetrieveRequestExpand.d.ts +10 -0
  3181. package/dist/serialization/resources/filestorage/resources/folders/types/FoldersRetrieveRequestExpand.js +39 -0
  3182. package/dist/serialization/resources/filestorage/resources/folders/types/index.d.ts +2 -0
  3183. package/dist/serialization/resources/filestorage/resources/folders/types/index.js +18 -0
  3184. package/dist/serialization/resources/filestorage/resources/index.d.ts +8 -2
  3185. package/dist/serialization/resources/filestorage/resources/index.js +9 -3
  3186. package/dist/serialization/resources/filestorage/resources/issues/index.d.ts +1 -0
  3187. package/dist/serialization/resources/filestorage/resources/issues/index.js +17 -0
  3188. package/dist/serialization/resources/filestorage/resources/issues/types/IssuesListRequestStatus.d.ts +10 -0
  3189. package/dist/serialization/resources/filestorage/resources/issues/types/IssuesListRequestStatus.js +31 -0
  3190. package/dist/serialization/resources/filestorage/resources/issues/types/index.d.ts +1 -0
  3191. package/dist/serialization/resources/filestorage/resources/issues/types/index.js +17 -0
  3192. package/dist/serialization/resources/filestorage/resources/linkedAccounts/index.d.ts +1 -0
  3193. package/dist/serialization/resources/filestorage/resources/linkedAccounts/index.js +17 -0
  3194. package/dist/serialization/resources/filestorage/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.d.ts +10 -0
  3195. package/dist/serialization/resources/filestorage/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.js +31 -0
  3196. package/dist/serialization/resources/filestorage/resources/linkedAccounts/types/index.d.ts +1 -0
  3197. package/dist/serialization/resources/filestorage/resources/linkedAccounts/types/index.js +17 -0
  3198. package/dist/serialization/resources/filestorage/types/index.d.ts +15 -21
  3199. package/dist/serialization/resources/filestorage/types/index.js +15 -21
  3200. package/dist/serialization/resources/hris/index.d.ts +1 -1
  3201. package/dist/serialization/resources/hris/index.js +1 -1
  3202. package/dist/serialization/resources/hris/resources/bankInfo/index.d.ts +1 -0
  3203. package/dist/serialization/resources/hris/resources/bankInfo/index.js +17 -0
  3204. package/dist/serialization/resources/hris/resources/bankInfo/types/BankInfoListRequestAccountType.d.ts +10 -0
  3205. package/dist/serialization/resources/hris/resources/bankInfo/types/BankInfoListRequestAccountType.js +31 -0
  3206. package/dist/serialization/resources/hris/resources/bankInfo/types/BankInfoListRequestOrderBy.d.ts +10 -0
  3207. package/dist/serialization/resources/hris/resources/bankInfo/types/BankInfoListRequestOrderBy.js +31 -0
  3208. package/dist/serialization/resources/hris/resources/bankInfo/types/index.d.ts +2 -0
  3209. package/dist/serialization/resources/hris/resources/bankInfo/types/index.js +18 -0
  3210. package/dist/serialization/resources/hris/resources/employeePayrollRuns/index.d.ts +1 -0
  3211. package/dist/serialization/resources/hris/resources/employeePayrollRuns/index.js +17 -0
  3212. package/dist/serialization/resources/hris/resources/employeePayrollRuns/types/EmployeePayrollRunsListRequestExpand.d.ts +10 -0
  3213. package/dist/serialization/resources/hris/resources/employeePayrollRuns/types/EmployeePayrollRunsListRequestExpand.js +31 -0
  3214. package/dist/serialization/resources/hris/resources/employeePayrollRuns/types/EmployeePayrollRunsRetrieveRequestExpand.d.ts +10 -0
  3215. package/dist/serialization/resources/hris/resources/employeePayrollRuns/types/EmployeePayrollRunsRetrieveRequestExpand.js +31 -0
  3216. package/dist/serialization/resources/hris/resources/employeePayrollRuns/types/index.d.ts +2 -0
  3217. package/dist/serialization/resources/hris/resources/employeePayrollRuns/types/index.js +18 -0
  3218. package/dist/serialization/resources/hris/resources/employees/index.d.ts +1 -0
  3219. package/dist/serialization/resources/hris/resources/employees/index.js +1 -0
  3220. package/dist/serialization/resources/hris/resources/employees/types/EmployeesListRequestEmploymentStatus.d.ts +10 -0
  3221. package/dist/serialization/resources/hris/resources/employees/types/EmployeesListRequestEmploymentStatus.js +31 -0
  3222. package/dist/serialization/resources/hris/resources/employees/types/EmployeesListRequestExpand.d.ts +10 -0
  3223. package/dist/serialization/resources/hris/resources/employees/types/EmployeesListRequestExpand.js +287 -0
  3224. package/dist/serialization/resources/hris/resources/employees/types/EmployeesListRequestRemoteFields.d.ts +10 -0
  3225. package/dist/serialization/resources/hris/resources/employees/types/EmployeesListRequestRemoteFields.js +47 -0
  3226. package/dist/serialization/resources/hris/resources/employees/types/EmployeesListRequestShowEnumOrigins.d.ts +10 -0
  3227. package/dist/serialization/resources/hris/resources/employees/types/EmployeesListRequestShowEnumOrigins.js +47 -0
  3228. package/dist/serialization/resources/hris/resources/employees/types/EmployeesRetrieveRequestExpand.d.ts +10 -0
  3229. package/dist/serialization/resources/hris/resources/employees/types/EmployeesRetrieveRequestExpand.js +287 -0
  3230. package/dist/serialization/resources/hris/resources/employees/types/EmployeesRetrieveRequestRemoteFields.d.ts +10 -0
  3231. package/dist/serialization/resources/hris/resources/employees/types/EmployeesRetrieveRequestRemoteFields.js +47 -0
  3232. package/dist/serialization/resources/hris/resources/employees/types/EmployeesRetrieveRequestShowEnumOrigins.d.ts +10 -0
  3233. package/dist/serialization/resources/hris/resources/employees/types/EmployeesRetrieveRequestShowEnumOrigins.js +47 -0
  3234. package/dist/serialization/resources/hris/resources/employees/types/IgnoreCommonModelRequestReason.d.ts +10 -0
  3235. package/dist/serialization/resources/hris/resources/employees/types/IgnoreCommonModelRequestReason.js +43 -0
  3236. package/dist/serialization/resources/hris/resources/employees/types/index.d.ts +8 -0
  3237. package/dist/serialization/resources/hris/resources/employees/types/index.js +24 -0
  3238. package/dist/serialization/resources/hris/resources/employments/index.d.ts +1 -0
  3239. package/dist/serialization/resources/hris/resources/employments/index.js +17 -0
  3240. package/dist/serialization/resources/hris/resources/employments/types/EmploymentsListRequestExpand.d.ts +10 -0
  3241. package/dist/serialization/resources/hris/resources/employments/types/EmploymentsListRequestExpand.js +31 -0
  3242. package/dist/serialization/resources/hris/resources/employments/types/EmploymentsListRequestOrderBy.d.ts +10 -0
  3243. package/dist/serialization/resources/hris/resources/employments/types/EmploymentsListRequestOrderBy.js +31 -0
  3244. package/dist/serialization/resources/hris/resources/employments/types/EmploymentsListRequestRemoteFields.d.ts +10 -0
  3245. package/dist/serialization/resources/hris/resources/employments/types/EmploymentsListRequestRemoteFields.js +47 -0
  3246. package/dist/serialization/resources/hris/resources/employments/types/EmploymentsListRequestShowEnumOrigins.d.ts +10 -0
  3247. package/dist/serialization/resources/hris/resources/employments/types/EmploymentsListRequestShowEnumOrigins.js +47 -0
  3248. package/dist/serialization/resources/hris/resources/employments/types/EmploymentsRetrieveRequestExpand.d.ts +10 -0
  3249. package/dist/serialization/resources/hris/resources/employments/types/EmploymentsRetrieveRequestExpand.js +31 -0
  3250. package/dist/serialization/resources/hris/resources/employments/types/EmploymentsRetrieveRequestRemoteFields.d.ts +10 -0
  3251. package/dist/serialization/resources/hris/resources/employments/types/EmploymentsRetrieveRequestRemoteFields.js +47 -0
  3252. package/dist/serialization/resources/hris/resources/employments/types/EmploymentsRetrieveRequestShowEnumOrigins.d.ts +10 -0
  3253. package/dist/serialization/resources/hris/resources/employments/types/EmploymentsRetrieveRequestShowEnumOrigins.js +47 -0
  3254. package/dist/serialization/resources/hris/resources/employments/types/index.d.ts +7 -0
  3255. package/dist/serialization/resources/hris/resources/employments/types/index.js +23 -0
  3256. package/dist/serialization/resources/hris/resources/index.d.ts +22 -3
  3257. package/dist/serialization/resources/hris/resources/index.js +23 -4
  3258. package/dist/serialization/resources/hris/resources/issues/index.d.ts +1 -0
  3259. package/dist/serialization/resources/hris/resources/issues/index.js +17 -0
  3260. package/dist/serialization/resources/hris/resources/issues/types/IssuesListRequestStatus.d.ts +10 -0
  3261. package/dist/serialization/resources/hris/resources/issues/types/IssuesListRequestStatus.js +31 -0
  3262. package/dist/serialization/resources/hris/resources/issues/types/index.d.ts +1 -0
  3263. package/dist/serialization/resources/hris/resources/issues/types/index.js +17 -0
  3264. package/dist/serialization/resources/hris/resources/linkedAccounts/index.d.ts +1 -0
  3265. package/dist/serialization/resources/hris/resources/linkedAccounts/index.js +17 -0
  3266. package/dist/serialization/resources/hris/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.d.ts +10 -0
  3267. package/dist/serialization/resources/hris/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.js +31 -0
  3268. package/dist/serialization/resources/hris/resources/linkedAccounts/types/index.d.ts +1 -0
  3269. package/dist/serialization/resources/hris/resources/linkedAccounts/types/index.js +17 -0
  3270. package/dist/serialization/resources/hris/resources/locations/index.d.ts +1 -0
  3271. package/dist/serialization/resources/hris/resources/locations/index.js +17 -0
  3272. package/dist/serialization/resources/hris/resources/locations/types/LocationsListRequestLocationType.d.ts +10 -0
  3273. package/dist/serialization/resources/hris/resources/locations/types/LocationsListRequestLocationType.js +31 -0
  3274. package/dist/serialization/resources/hris/resources/locations/types/index.d.ts +1 -0
  3275. package/dist/serialization/resources/hris/resources/locations/types/index.js +17 -0
  3276. package/dist/serialization/resources/hris/resources/payrollRuns/index.d.ts +1 -0
  3277. package/dist/serialization/resources/hris/resources/payrollRuns/index.js +17 -0
  3278. package/dist/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsListRequestRemoteFields.d.ts +10 -0
  3279. package/dist/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsListRequestRemoteFields.js +31 -0
  3280. package/dist/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsListRequestRunType.d.ts +10 -0
  3281. package/dist/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsListRequestRunType.js +31 -0
  3282. package/dist/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsListRequestShowEnumOrigins.d.ts +10 -0
  3283. package/dist/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsListRequestShowEnumOrigins.js +31 -0
  3284. package/dist/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsRetrieveRequestRemoteFields.d.ts +10 -0
  3285. package/dist/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsRetrieveRequestRemoteFields.js +31 -0
  3286. package/dist/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsRetrieveRequestShowEnumOrigins.d.ts +10 -0
  3287. package/dist/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsRetrieveRequestShowEnumOrigins.js +31 -0
  3288. package/dist/serialization/resources/hris/resources/payrollRuns/types/index.d.ts +5 -0
  3289. package/dist/serialization/resources/hris/resources/payrollRuns/types/index.js +21 -0
  3290. package/dist/serialization/resources/hris/resources/timeOff/index.d.ts +1 -0
  3291. package/dist/serialization/resources/hris/resources/timeOff/index.js +1 -0
  3292. package/dist/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestExpand.d.ts +10 -0
  3293. package/dist/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestExpand.js +31 -0
  3294. package/dist/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestRemoteFields.d.ts +10 -0
  3295. package/dist/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestRemoteFields.js +39 -0
  3296. package/dist/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestRequestType.d.ts +10 -0
  3297. package/dist/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestRequestType.js +31 -0
  3298. package/dist/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestShowEnumOrigins.d.ts +10 -0
  3299. package/dist/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestShowEnumOrigins.js +39 -0
  3300. package/dist/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestStatus.d.ts +10 -0
  3301. package/dist/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestStatus.js +31 -0
  3302. package/dist/serialization/resources/hris/resources/timeOff/types/TimeOffRetrieveRequestExpand.d.ts +10 -0
  3303. package/dist/serialization/resources/hris/resources/timeOff/types/TimeOffRetrieveRequestExpand.js +31 -0
  3304. package/dist/serialization/resources/hris/resources/timeOff/types/TimeOffRetrieveRequestRemoteFields.d.ts +10 -0
  3305. package/dist/serialization/resources/hris/resources/timeOff/types/TimeOffRetrieveRequestRemoteFields.js +39 -0
  3306. package/dist/serialization/resources/hris/resources/timeOff/types/TimeOffRetrieveRequestShowEnumOrigins.d.ts +10 -0
  3307. package/dist/serialization/resources/hris/resources/timeOff/types/TimeOffRetrieveRequestShowEnumOrigins.js +39 -0
  3308. package/dist/serialization/resources/hris/resources/timeOff/types/index.d.ts +8 -0
  3309. package/dist/serialization/resources/hris/resources/timeOff/types/index.js +24 -0
  3310. package/dist/serialization/resources/hris/resources/timeOffBalances/index.d.ts +1 -0
  3311. package/dist/serialization/resources/hris/resources/timeOffBalances/index.js +17 -0
  3312. package/dist/serialization/resources/hris/resources/timeOffBalances/types/TimeOffBalancesListRequestPolicyType.d.ts +10 -0
  3313. package/dist/serialization/resources/hris/resources/timeOffBalances/types/TimeOffBalancesListRequestPolicyType.js +31 -0
  3314. package/dist/serialization/resources/hris/resources/timeOffBalances/types/index.d.ts +1 -0
  3315. package/dist/serialization/resources/hris/resources/timeOffBalances/types/index.js +17 -0
  3316. package/dist/serialization/resources/hris/resources/timesheetEntries/index.d.ts +1 -0
  3317. package/dist/serialization/resources/hris/resources/timesheetEntries/index.js +1 -0
  3318. package/dist/serialization/resources/hris/resources/timesheetEntries/types/TimesheetEntriesListRequestOrderBy.d.ts +10 -0
  3319. package/dist/serialization/resources/hris/resources/timesheetEntries/types/TimesheetEntriesListRequestOrderBy.js +31 -0
  3320. package/dist/serialization/resources/hris/resources/timesheetEntries/types/index.d.ts +1 -0
  3321. package/dist/serialization/resources/hris/resources/timesheetEntries/types/index.js +17 -0
  3322. package/dist/serialization/resources/hris/types/index.d.ts +22 -59
  3323. package/dist/serialization/resources/hris/types/index.js +22 -59
  3324. package/dist/serialization/resources/ticketing/index.d.ts +1 -1
  3325. package/dist/serialization/resources/ticketing/index.js +1 -1
  3326. package/dist/serialization/resources/ticketing/resources/collections/index.d.ts +1 -0
  3327. package/dist/serialization/resources/ticketing/resources/collections/index.js +17 -0
  3328. package/dist/serialization/resources/ticketing/resources/collections/types/CollectionsListRequestCollectionType.d.ts +10 -0
  3329. package/dist/serialization/resources/ticketing/resources/collections/types/CollectionsListRequestCollectionType.js +31 -0
  3330. package/dist/serialization/resources/ticketing/resources/collections/types/CollectionsUsersListRequestExpand.d.ts +10 -0
  3331. package/dist/serialization/resources/ticketing/resources/collections/types/CollectionsUsersListRequestExpand.js +31 -0
  3332. package/dist/serialization/resources/ticketing/resources/collections/types/index.d.ts +2 -0
  3333. package/dist/serialization/resources/ticketing/resources/collections/types/index.js +18 -0
  3334. package/dist/serialization/resources/ticketing/resources/comments/index.d.ts +1 -0
  3335. package/dist/serialization/resources/ticketing/resources/comments/index.js +1 -0
  3336. package/dist/serialization/resources/ticketing/resources/comments/types/CommentsListRequestExpand.d.ts +10 -0
  3337. package/dist/serialization/resources/ticketing/resources/comments/types/CommentsListRequestExpand.js +39 -0
  3338. package/dist/serialization/resources/ticketing/resources/comments/types/CommentsRetrieveRequestExpand.d.ts +10 -0
  3339. package/dist/serialization/resources/ticketing/resources/comments/types/CommentsRetrieveRequestExpand.js +39 -0
  3340. package/dist/serialization/resources/ticketing/resources/comments/types/index.d.ts +2 -0
  3341. package/dist/serialization/resources/ticketing/resources/comments/types/index.js +18 -0
  3342. package/dist/serialization/resources/ticketing/resources/index.d.ts +14 -2
  3343. package/dist/serialization/resources/ticketing/resources/index.js +15 -3
  3344. package/dist/serialization/resources/ticketing/resources/issues/index.d.ts +1 -0
  3345. package/dist/serialization/resources/ticketing/resources/issues/index.js +17 -0
  3346. package/dist/serialization/resources/ticketing/resources/issues/types/IssuesListRequestStatus.d.ts +10 -0
  3347. package/dist/serialization/resources/ticketing/resources/issues/types/IssuesListRequestStatus.js +31 -0
  3348. package/dist/serialization/resources/ticketing/resources/issues/types/index.d.ts +1 -0
  3349. package/dist/serialization/resources/ticketing/resources/issues/types/index.js +17 -0
  3350. package/dist/serialization/resources/ticketing/resources/linkedAccounts/index.d.ts +1 -0
  3351. package/dist/serialization/resources/ticketing/resources/linkedAccounts/index.js +17 -0
  3352. package/dist/serialization/resources/ticketing/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.d.ts +10 -0
  3353. package/dist/serialization/resources/ticketing/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.js +31 -0
  3354. package/dist/serialization/resources/ticketing/resources/linkedAccounts/types/index.d.ts +1 -0
  3355. package/dist/serialization/resources/ticketing/resources/linkedAccounts/types/index.js +17 -0
  3356. package/dist/serialization/resources/ticketing/resources/projects/index.d.ts +1 -0
  3357. package/dist/serialization/resources/ticketing/resources/projects/index.js +17 -0
  3358. package/dist/serialization/resources/ticketing/resources/projects/types/ProjectsUsersListRequestExpand.d.ts +10 -0
  3359. package/dist/serialization/resources/ticketing/resources/projects/types/ProjectsUsersListRequestExpand.js +31 -0
  3360. package/dist/serialization/resources/ticketing/resources/projects/types/index.d.ts +1 -0
  3361. package/dist/serialization/resources/ticketing/resources/projects/types/index.js +17 -0
  3362. package/dist/serialization/resources/ticketing/resources/tickets/index.d.ts +1 -0
  3363. package/dist/serialization/resources/ticketing/resources/tickets/index.js +1 -0
  3364. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsCollaboratorsListRequestExpand.d.ts +10 -0
  3365. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsCollaboratorsListRequestExpand.js +31 -0
  3366. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestExpand.d.ts +10 -0
  3367. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestExpand.js +159 -0
  3368. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestPriority.d.ts +10 -0
  3369. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestPriority.js +31 -0
  3370. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestRemoteFields.d.ts +10 -0
  3371. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestRemoteFields.js +39 -0
  3372. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestShowEnumOrigins.d.ts +10 -0
  3373. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestShowEnumOrigins.js +39 -0
  3374. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestStatus.d.ts +10 -0
  3375. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestStatus.js +31 -0
  3376. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsRetrieveRequestExpand.d.ts +10 -0
  3377. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsRetrieveRequestExpand.js +159 -0
  3378. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsRetrieveRequestRemoteFields.d.ts +10 -0
  3379. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsRetrieveRequestRemoteFields.js +39 -0
  3380. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsRetrieveRequestShowEnumOrigins.d.ts +10 -0
  3381. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsRetrieveRequestShowEnumOrigins.js +39 -0
  3382. package/dist/serialization/resources/ticketing/resources/tickets/types/index.d.ts +9 -0
  3383. package/dist/serialization/resources/ticketing/resources/tickets/types/index.js +25 -0
  3384. package/dist/serialization/resources/ticketing/resources/users/index.d.ts +1 -0
  3385. package/dist/serialization/resources/ticketing/resources/users/index.js +17 -0
  3386. package/dist/serialization/resources/ticketing/resources/users/types/UsersListRequestExpand.d.ts +10 -0
  3387. package/dist/serialization/resources/ticketing/resources/users/types/UsersListRequestExpand.js +31 -0
  3388. package/dist/serialization/resources/ticketing/resources/users/types/UsersRetrieveRequestExpand.d.ts +10 -0
  3389. package/dist/serialization/resources/ticketing/resources/users/types/UsersRetrieveRequestExpand.js +31 -0
  3390. package/dist/serialization/resources/ticketing/resources/users/types/index.d.ts +2 -0
  3391. package/dist/serialization/resources/ticketing/resources/users/types/index.js +18 -0
  3392. package/dist/serialization/resources/ticketing/types/index.d.ts +19 -37
  3393. package/dist/serialization/resources/ticketing/types/index.js +19 -37
  3394. package/package.json +7 -4
  3395. package/serialization/resources/accounting/index.d.ts +1 -1
  3396. package/serialization/resources/accounting/index.js +1 -1
  3397. package/serialization/resources/accounting/resources/accounts/index.d.ts +1 -0
  3398. package/serialization/resources/accounting/resources/accounts/index.js +1 -0
  3399. package/serialization/resources/accounting/resources/accounts/types/AccountsListRequestRemoteFields.d.ts +10 -0
  3400. package/serialization/resources/accounting/resources/accounts/types/AccountsListRequestRemoteFields.js +31 -0
  3401. package/serialization/resources/accounting/resources/accounts/types/AccountsListRequestShowEnumOrigins.d.ts +10 -0
  3402. package/serialization/resources/accounting/resources/accounts/types/AccountsListRequestShowEnumOrigins.js +31 -0
  3403. package/serialization/resources/accounting/resources/accounts/types/AccountsRetrieveRequestRemoteFields.d.ts +10 -0
  3404. package/serialization/resources/accounting/resources/accounts/types/AccountsRetrieveRequestRemoteFields.js +31 -0
  3405. package/serialization/resources/accounting/resources/accounts/types/AccountsRetrieveRequestShowEnumOrigins.d.ts +10 -0
  3406. package/serialization/resources/accounting/resources/accounts/types/AccountsRetrieveRequestShowEnumOrigins.js +31 -0
  3407. package/serialization/resources/accounting/resources/accounts/types/index.d.ts +4 -0
  3408. package/serialization/resources/accounting/resources/accounts/types/index.js +20 -0
  3409. package/serialization/resources/accounting/resources/companyInfo/index.d.ts +1 -0
  3410. package/serialization/resources/accounting/resources/companyInfo/index.js +17 -0
  3411. package/serialization/resources/accounting/resources/companyInfo/types/CompanyInfoListRequestExpand.d.ts +10 -0
  3412. package/serialization/resources/accounting/resources/companyInfo/types/CompanyInfoListRequestExpand.js +31 -0
  3413. package/serialization/resources/accounting/resources/companyInfo/types/CompanyInfoRetrieveRequestExpand.d.ts +10 -0
  3414. package/serialization/resources/accounting/resources/companyInfo/types/CompanyInfoRetrieveRequestExpand.js +31 -0
  3415. package/serialization/resources/accounting/resources/companyInfo/types/index.d.ts +2 -0
  3416. package/serialization/resources/accounting/resources/companyInfo/types/index.js +18 -0
  3417. package/serialization/resources/accounting/resources/contacts/index.d.ts +1 -0
  3418. package/serialization/resources/accounting/resources/contacts/index.js +1 -0
  3419. package/serialization/resources/accounting/resources/contacts/types/ContactsListRequestExpand.d.ts +10 -0
  3420. package/serialization/resources/accounting/resources/contacts/types/ContactsListRequestExpand.js +39 -0
  3421. package/serialization/resources/accounting/resources/contacts/types/ContactsRetrieveRequestExpand.d.ts +10 -0
  3422. package/serialization/resources/accounting/resources/contacts/types/ContactsRetrieveRequestExpand.js +39 -0
  3423. package/serialization/resources/accounting/resources/contacts/types/index.d.ts +2 -0
  3424. package/serialization/resources/accounting/resources/contacts/types/index.js +18 -0
  3425. package/serialization/resources/accounting/resources/creditNotes/index.d.ts +1 -0
  3426. package/serialization/resources/accounting/resources/creditNotes/index.js +17 -0
  3427. package/serialization/resources/accounting/resources/creditNotes/types/CreditNotesListRequestExpand.d.ts +10 -0
  3428. package/serialization/resources/accounting/resources/creditNotes/types/CreditNotesListRequestExpand.js +159 -0
  3429. package/serialization/resources/accounting/resources/creditNotes/types/CreditNotesListRequestRemoteFields.d.ts +10 -0
  3430. package/serialization/resources/accounting/resources/creditNotes/types/CreditNotesListRequestRemoteFields.js +31 -0
  3431. package/serialization/resources/accounting/resources/creditNotes/types/CreditNotesListRequestShowEnumOrigins.d.ts +10 -0
  3432. package/serialization/resources/accounting/resources/creditNotes/types/CreditNotesListRequestShowEnumOrigins.js +31 -0
  3433. package/serialization/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestExpand.d.ts +10 -0
  3434. package/serialization/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestExpand.js +159 -0
  3435. package/serialization/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestRemoteFields.d.ts +10 -0
  3436. package/serialization/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestRemoteFields.js +31 -0
  3437. package/serialization/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestShowEnumOrigins.d.ts +10 -0
  3438. package/serialization/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestShowEnumOrigins.js +31 -0
  3439. package/serialization/resources/accounting/resources/creditNotes/types/index.d.ts +6 -0
  3440. package/serialization/resources/accounting/resources/creditNotes/types/index.js +22 -0
  3441. package/serialization/resources/accounting/resources/expenses/index.d.ts +1 -0
  3442. package/serialization/resources/accounting/resources/expenses/index.js +1 -0
  3443. package/serialization/resources/accounting/resources/expenses/types/ExpensesListRequestExpand.d.ts +10 -0
  3444. package/serialization/resources/accounting/resources/expenses/types/ExpensesListRequestExpand.js +63 -0
  3445. package/serialization/resources/accounting/resources/expenses/types/ExpensesRetrieveRequestExpand.d.ts +10 -0
  3446. package/serialization/resources/accounting/resources/expenses/types/ExpensesRetrieveRequestExpand.js +63 -0
  3447. package/serialization/resources/accounting/resources/expenses/types/index.d.ts +2 -0
  3448. package/serialization/resources/accounting/resources/expenses/types/index.js +18 -0
  3449. package/serialization/resources/accounting/resources/index.d.ts +28 -7
  3450. package/serialization/resources/accounting/resources/index.js +29 -8
  3451. package/serialization/resources/accounting/resources/invoices/index.d.ts +1 -0
  3452. package/serialization/resources/accounting/resources/invoices/index.js +1 -0
  3453. package/serialization/resources/accounting/resources/invoices/types/InvoicesListRequestExpand.d.ts +10 -0
  3454. package/serialization/resources/accounting/resources/invoices/types/InvoicesListRequestExpand.js +287 -0
  3455. package/serialization/resources/accounting/resources/invoices/types/InvoicesListRequestType.d.ts +10 -0
  3456. package/serialization/resources/accounting/resources/invoices/types/InvoicesListRequestType.js +31 -0
  3457. package/serialization/resources/accounting/resources/invoices/types/InvoicesRetrieveRequestExpand.d.ts +10 -0
  3458. package/serialization/resources/accounting/resources/invoices/types/InvoicesRetrieveRequestExpand.js +287 -0
  3459. package/serialization/resources/accounting/resources/invoices/types/index.d.ts +3 -0
  3460. package/serialization/resources/accounting/resources/invoices/types/index.js +19 -0
  3461. package/serialization/resources/accounting/resources/issues/index.d.ts +1 -0
  3462. package/serialization/resources/accounting/resources/issues/index.js +17 -0
  3463. package/serialization/resources/accounting/resources/issues/types/IssuesListRequestStatus.d.ts +10 -0
  3464. package/serialization/resources/accounting/resources/issues/types/IssuesListRequestStatus.js +31 -0
  3465. package/serialization/resources/accounting/resources/issues/types/index.d.ts +1 -0
  3466. package/serialization/resources/accounting/resources/issues/types/index.js +17 -0
  3467. package/serialization/resources/accounting/resources/items/index.d.ts +1 -0
  3468. package/serialization/resources/accounting/resources/items/index.js +17 -0
  3469. package/serialization/resources/accounting/resources/items/types/ItemsListRequestExpand.d.ts +10 -0
  3470. package/serialization/resources/accounting/resources/items/types/ItemsListRequestExpand.js +39 -0
  3471. package/serialization/resources/accounting/resources/items/types/ItemsRetrieveRequestExpand.d.ts +10 -0
  3472. package/serialization/resources/accounting/resources/items/types/ItemsRetrieveRequestExpand.js +39 -0
  3473. package/serialization/resources/accounting/resources/items/types/index.d.ts +2 -0
  3474. package/serialization/resources/accounting/resources/items/types/index.js +18 -0
  3475. package/serialization/resources/accounting/resources/journalEntries/index.d.ts +1 -0
  3476. package/serialization/resources/accounting/resources/journalEntries/index.js +1 -0
  3477. package/serialization/resources/accounting/resources/journalEntries/types/JournalEntriesListRequestExpand.d.ts +10 -0
  3478. package/serialization/resources/accounting/resources/journalEntries/types/JournalEntriesListRequestExpand.js +95 -0
  3479. package/serialization/resources/accounting/resources/journalEntries/types/JournalEntriesRetrieveRequestExpand.d.ts +10 -0
  3480. package/serialization/resources/accounting/resources/journalEntries/types/JournalEntriesRetrieveRequestExpand.js +95 -0
  3481. package/serialization/resources/accounting/resources/journalEntries/types/index.d.ts +2 -0
  3482. package/serialization/resources/accounting/resources/journalEntries/types/index.js +18 -0
  3483. package/serialization/resources/accounting/resources/linkedAccounts/index.d.ts +1 -0
  3484. package/serialization/resources/accounting/resources/linkedAccounts/index.js +17 -0
  3485. package/serialization/resources/accounting/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.d.ts +10 -0
  3486. package/serialization/resources/accounting/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.js +31 -0
  3487. package/serialization/resources/accounting/resources/linkedAccounts/types/index.d.ts +1 -0
  3488. package/serialization/resources/accounting/resources/linkedAccounts/types/index.js +17 -0
  3489. package/serialization/resources/accounting/resources/payments/index.d.ts +1 -0
  3490. package/serialization/resources/accounting/resources/payments/index.js +1 -0
  3491. package/serialization/resources/accounting/resources/payments/types/PaymentsListRequestExpand.d.ts +10 -0
  3492. package/serialization/resources/accounting/resources/payments/types/PaymentsListRequestExpand.js +95 -0
  3493. package/serialization/resources/accounting/resources/payments/types/PaymentsRetrieveRequestExpand.d.ts +10 -0
  3494. package/serialization/resources/accounting/resources/payments/types/PaymentsRetrieveRequestExpand.js +95 -0
  3495. package/serialization/resources/accounting/resources/payments/types/index.d.ts +2 -0
  3496. package/serialization/resources/accounting/resources/payments/types/index.js +18 -0
  3497. package/serialization/resources/accounting/resources/purchaseOrders/index.d.ts +1 -0
  3498. package/serialization/resources/accounting/resources/purchaseOrders/index.js +1 -0
  3499. package/serialization/resources/accounting/resources/purchaseOrders/types/PurchaseOrdersListRequestExpand.d.ts +10 -0
  3500. package/serialization/resources/accounting/resources/purchaseOrders/types/PurchaseOrdersListRequestExpand.js +95 -0
  3501. package/serialization/resources/accounting/resources/purchaseOrders/types/PurchaseOrdersRetrieveRequestExpand.d.ts +10 -0
  3502. package/serialization/resources/accounting/resources/purchaseOrders/types/PurchaseOrdersRetrieveRequestExpand.js +95 -0
  3503. package/serialization/resources/accounting/resources/purchaseOrders/types/index.d.ts +2 -0
  3504. package/serialization/resources/accounting/resources/purchaseOrders/types/index.js +18 -0
  3505. package/serialization/resources/accounting/resources/transactions/index.d.ts +1 -0
  3506. package/serialization/resources/accounting/resources/transactions/index.js +17 -0
  3507. package/serialization/resources/accounting/resources/transactions/types/TransactionsListRequestExpand.d.ts +10 -0
  3508. package/serialization/resources/accounting/resources/transactions/types/TransactionsListRequestExpand.js +63 -0
  3509. package/serialization/resources/accounting/resources/transactions/types/TransactionsRetrieveRequestExpand.d.ts +10 -0
  3510. package/serialization/resources/accounting/resources/transactions/types/TransactionsRetrieveRequestExpand.js +63 -0
  3511. package/serialization/resources/accounting/resources/transactions/types/index.d.ts +2 -0
  3512. package/serialization/resources/accounting/resources/transactions/types/index.js +18 -0
  3513. package/serialization/resources/accounting/resources/vendorCredits/index.d.ts +1 -0
  3514. package/serialization/resources/accounting/resources/vendorCredits/index.js +17 -0
  3515. package/serialization/resources/accounting/resources/vendorCredits/types/VendorCreditsListRequestExpand.d.ts +10 -0
  3516. package/serialization/resources/accounting/resources/vendorCredits/types/VendorCreditsListRequestExpand.js +63 -0
  3517. package/serialization/resources/accounting/resources/vendorCredits/types/VendorCreditsRetrieveRequestExpand.d.ts +10 -0
  3518. package/serialization/resources/accounting/resources/vendorCredits/types/VendorCreditsRetrieveRequestExpand.js +63 -0
  3519. package/serialization/resources/accounting/resources/vendorCredits/types/index.d.ts +2 -0
  3520. package/serialization/resources/accounting/resources/vendorCredits/types/index.js +18 -0
  3521. package/serialization/resources/accounting/types/index.d.ts +43 -76
  3522. package/serialization/resources/accounting/types/index.js +43 -76
  3523. package/serialization/resources/ats/index.d.ts +1 -1
  3524. package/serialization/resources/ats/index.js +1 -1
  3525. package/serialization/resources/ats/resources/activities/index.d.ts +1 -0
  3526. package/serialization/resources/ats/resources/activities/index.js +1 -0
  3527. package/serialization/resources/ats/resources/activities/types/ActivitiesListRequestRemoteFields.d.ts +10 -0
  3528. package/serialization/resources/ats/resources/activities/types/ActivitiesListRequestRemoteFields.js +31 -0
  3529. package/serialization/resources/ats/resources/activities/types/ActivitiesListRequestShowEnumOrigins.d.ts +10 -0
  3530. package/serialization/resources/ats/resources/activities/types/ActivitiesListRequestShowEnumOrigins.js +31 -0
  3531. package/serialization/resources/ats/resources/activities/types/ActivitiesRetrieveRequestRemoteFields.d.ts +10 -0
  3532. package/serialization/resources/ats/resources/activities/types/ActivitiesRetrieveRequestRemoteFields.js +31 -0
  3533. package/serialization/resources/ats/resources/activities/types/ActivitiesRetrieveRequestShowEnumOrigins.d.ts +10 -0
  3534. package/serialization/resources/ats/resources/activities/types/ActivitiesRetrieveRequestShowEnumOrigins.js +31 -0
  3535. package/serialization/resources/ats/resources/activities/types/index.d.ts +4 -0
  3536. package/serialization/resources/ats/resources/activities/types/index.js +20 -0
  3537. package/serialization/resources/ats/resources/applications/index.d.ts +1 -0
  3538. package/serialization/resources/ats/resources/applications/index.js +1 -0
  3539. package/serialization/resources/ats/resources/applications/types/ApplicationsListRequestExpand.d.ts +10 -0
  3540. package/serialization/resources/ats/resources/applications/types/ApplicationsListRequestExpand.js +63 -0
  3541. package/serialization/resources/ats/resources/applications/types/ApplicationsRetrieveRequestExpand.d.ts +10 -0
  3542. package/serialization/resources/ats/resources/applications/types/ApplicationsRetrieveRequestExpand.js +63 -0
  3543. package/serialization/resources/ats/resources/applications/types/index.d.ts +2 -0
  3544. package/serialization/resources/ats/resources/applications/types/index.js +18 -0
  3545. package/serialization/resources/ats/resources/candidates/index.d.ts +1 -0
  3546. package/serialization/resources/ats/resources/candidates/index.js +1 -0
  3547. package/serialization/resources/ats/resources/candidates/types/CandidatesListRequestExpand.d.ts +10 -0
  3548. package/serialization/resources/ats/resources/candidates/types/CandidatesListRequestExpand.js +31 -0
  3549. package/serialization/resources/ats/resources/candidates/types/CandidatesRetrieveRequestExpand.d.ts +10 -0
  3550. package/serialization/resources/ats/resources/candidates/types/CandidatesRetrieveRequestExpand.js +31 -0
  3551. package/serialization/resources/ats/resources/candidates/types/index.d.ts +2 -0
  3552. package/serialization/resources/ats/resources/candidates/types/index.js +18 -0
  3553. package/serialization/resources/ats/resources/eeocs/index.d.ts +1 -0
  3554. package/serialization/resources/ats/resources/eeocs/index.js +17 -0
  3555. package/serialization/resources/ats/resources/eeocs/types/EeocsListRequestRemoteFields.d.ts +10 -0
  3556. package/serialization/resources/ats/resources/eeocs/types/EeocsListRequestRemoteFields.js +47 -0
  3557. package/serialization/resources/ats/resources/eeocs/types/EeocsListRequestShowEnumOrigins.d.ts +10 -0
  3558. package/serialization/resources/ats/resources/eeocs/types/EeocsListRequestShowEnumOrigins.js +47 -0
  3559. package/serialization/resources/ats/resources/eeocs/types/EeocsRetrieveRequestRemoteFields.d.ts +10 -0
  3560. package/serialization/resources/ats/resources/eeocs/types/EeocsRetrieveRequestRemoteFields.js +47 -0
  3561. package/serialization/resources/ats/resources/eeocs/types/EeocsRetrieveRequestShowEnumOrigins.d.ts +10 -0
  3562. package/serialization/resources/ats/resources/eeocs/types/EeocsRetrieveRequestShowEnumOrigins.js +47 -0
  3563. package/serialization/resources/ats/resources/eeocs/types/index.d.ts +4 -0
  3564. package/serialization/resources/ats/resources/eeocs/types/index.js +20 -0
  3565. package/serialization/resources/ats/resources/index.d.ts +20 -4
  3566. package/serialization/resources/ats/resources/index.js +21 -5
  3567. package/serialization/resources/ats/resources/interviews/index.d.ts +1 -0
  3568. package/serialization/resources/ats/resources/interviews/index.js +1 -0
  3569. package/serialization/resources/ats/resources/interviews/types/InterviewsListRequestExpand.d.ts +10 -0
  3570. package/serialization/resources/ats/resources/interviews/types/InterviewsListRequestExpand.js +47 -0
  3571. package/serialization/resources/ats/resources/interviews/types/InterviewsRetrieveRequestExpand.d.ts +10 -0
  3572. package/serialization/resources/ats/resources/interviews/types/InterviewsRetrieveRequestExpand.js +47 -0
  3573. package/serialization/resources/ats/resources/interviews/types/index.d.ts +2 -0
  3574. package/serialization/resources/ats/resources/interviews/types/index.js +18 -0
  3575. package/serialization/resources/ats/resources/issues/index.d.ts +1 -0
  3576. package/serialization/resources/ats/resources/issues/index.js +17 -0
  3577. package/serialization/resources/ats/resources/issues/types/IssuesListRequestStatus.d.ts +10 -0
  3578. package/serialization/resources/ats/resources/issues/types/IssuesListRequestStatus.js +31 -0
  3579. package/serialization/resources/ats/resources/issues/types/index.d.ts +1 -0
  3580. package/serialization/resources/ats/resources/issues/types/index.js +17 -0
  3581. package/serialization/resources/ats/resources/jobs/index.d.ts +1 -0
  3582. package/serialization/resources/ats/resources/jobs/index.js +17 -0
  3583. package/serialization/resources/ats/resources/jobs/types/JobsListRequestExpand.d.ts +10 -0
  3584. package/serialization/resources/ats/resources/jobs/types/JobsListRequestExpand.js +47 -0
  3585. package/serialization/resources/ats/resources/jobs/types/JobsListRequestStatus.d.ts +10 -0
  3586. package/serialization/resources/ats/resources/jobs/types/JobsListRequestStatus.js +31 -0
  3587. package/serialization/resources/ats/resources/jobs/types/JobsRetrieveRequestExpand.d.ts +10 -0
  3588. package/serialization/resources/ats/resources/jobs/types/JobsRetrieveRequestExpand.js +47 -0
  3589. package/serialization/resources/ats/resources/jobs/types/JobsScreeningQuestionsListRequestExpand.d.ts +10 -0
  3590. package/serialization/resources/ats/resources/jobs/types/JobsScreeningQuestionsListRequestExpand.js +31 -0
  3591. package/serialization/resources/ats/resources/jobs/types/index.d.ts +4 -0
  3592. package/serialization/resources/ats/resources/jobs/types/index.js +20 -0
  3593. package/serialization/resources/ats/resources/linkedAccounts/index.d.ts +1 -0
  3594. package/serialization/resources/ats/resources/linkedAccounts/index.js +17 -0
  3595. package/serialization/resources/ats/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.d.ts +10 -0
  3596. package/serialization/resources/ats/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.js +31 -0
  3597. package/serialization/resources/ats/resources/linkedAccounts/types/index.d.ts +1 -0
  3598. package/serialization/resources/ats/resources/linkedAccounts/types/index.js +17 -0
  3599. package/serialization/resources/ats/resources/offers/index.d.ts +1 -0
  3600. package/serialization/resources/ats/resources/offers/index.js +17 -0
  3601. package/serialization/resources/ats/resources/offers/types/OffersListRequestExpand.d.ts +10 -0
  3602. package/serialization/resources/ats/resources/offers/types/OffersListRequestExpand.js +31 -0
  3603. package/serialization/resources/ats/resources/offers/types/OffersRetrieveRequestExpand.d.ts +10 -0
  3604. package/serialization/resources/ats/resources/offers/types/OffersRetrieveRequestExpand.js +31 -0
  3605. package/serialization/resources/ats/resources/offers/types/index.d.ts +2 -0
  3606. package/serialization/resources/ats/resources/offers/types/index.js +18 -0
  3607. package/serialization/resources/ats/resources/scorecards/index.d.ts +1 -0
  3608. package/serialization/resources/ats/resources/scorecards/index.js +17 -0
  3609. package/serialization/resources/ats/resources/scorecards/types/ScorecardsListRequestExpand.d.ts +10 -0
  3610. package/serialization/resources/ats/resources/scorecards/types/ScorecardsListRequestExpand.js +39 -0
  3611. package/serialization/resources/ats/resources/scorecards/types/ScorecardsRetrieveRequestExpand.d.ts +10 -0
  3612. package/serialization/resources/ats/resources/scorecards/types/ScorecardsRetrieveRequestExpand.js +39 -0
  3613. package/serialization/resources/ats/resources/scorecards/types/index.d.ts +2 -0
  3614. package/serialization/resources/ats/resources/scorecards/types/index.js +18 -0
  3615. package/serialization/resources/ats/types/index.d.ts +29 -53
  3616. package/serialization/resources/ats/types/index.js +29 -53
  3617. package/serialization/resources/crm/index.d.ts +1 -1
  3618. package/serialization/resources/crm/index.js +1 -1
  3619. package/serialization/resources/crm/resources/contacts/index.d.ts +1 -0
  3620. package/serialization/resources/crm/resources/contacts/index.js +1 -0
  3621. package/serialization/resources/crm/resources/contacts/types/ContactsListRequestExpand.d.ts +10 -0
  3622. package/serialization/resources/crm/resources/contacts/types/ContactsListRequestExpand.js +31 -0
  3623. package/serialization/resources/crm/resources/contacts/types/ContactsRetrieveRequestExpand.d.ts +10 -0
  3624. package/serialization/resources/crm/resources/contacts/types/ContactsRetrieveRequestExpand.js +31 -0
  3625. package/serialization/resources/crm/resources/contacts/types/index.d.ts +2 -0
  3626. package/serialization/resources/crm/resources/contacts/types/index.js +18 -0
  3627. package/serialization/resources/crm/resources/engagements/index.d.ts +1 -0
  3628. package/serialization/resources/crm/resources/engagements/index.js +1 -0
  3629. package/serialization/resources/crm/resources/engagements/types/EngagementsListRequestExpand.d.ts +10 -0
  3630. package/serialization/resources/crm/resources/engagements/types/EngagementsListRequestExpand.js +47 -0
  3631. package/serialization/resources/crm/resources/engagements/types/EngagementsRetrieveRequestExpand.d.ts +10 -0
  3632. package/serialization/resources/crm/resources/engagements/types/EngagementsRetrieveRequestExpand.js +47 -0
  3633. package/serialization/resources/crm/resources/engagements/types/index.d.ts +2 -0
  3634. package/serialization/resources/crm/resources/engagements/types/index.js +18 -0
  3635. package/serialization/resources/crm/resources/index.d.ts +16 -6
  3636. package/serialization/resources/crm/resources/index.js +17 -7
  3637. package/serialization/resources/crm/resources/issues/index.d.ts +1 -0
  3638. package/serialization/resources/crm/resources/issues/index.js +17 -0
  3639. package/serialization/resources/crm/resources/issues/types/IssuesListRequestStatus.d.ts +10 -0
  3640. package/serialization/resources/crm/resources/issues/types/IssuesListRequestStatus.js +31 -0
  3641. package/serialization/resources/crm/resources/issues/types/index.d.ts +1 -0
  3642. package/serialization/resources/crm/resources/issues/types/index.js +17 -0
  3643. package/serialization/resources/crm/resources/leads/index.d.ts +1 -0
  3644. package/serialization/resources/crm/resources/leads/index.js +1 -0
  3645. package/serialization/resources/crm/resources/leads/types/LeadsListRequestExpand.d.ts +10 -0
  3646. package/serialization/resources/crm/resources/leads/types/LeadsListRequestExpand.js +39 -0
  3647. package/serialization/resources/crm/resources/leads/types/LeadsRetrieveRequestExpand.d.ts +10 -0
  3648. package/serialization/resources/crm/resources/leads/types/LeadsRetrieveRequestExpand.js +39 -0
  3649. package/serialization/resources/crm/resources/leads/types/index.d.ts +2 -0
  3650. package/serialization/resources/crm/resources/leads/types/index.js +18 -0
  3651. package/serialization/resources/crm/resources/linkedAccounts/index.d.ts +1 -0
  3652. package/serialization/resources/crm/resources/linkedAccounts/index.js +17 -0
  3653. package/serialization/resources/crm/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.d.ts +10 -0
  3654. package/serialization/resources/crm/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.js +31 -0
  3655. package/serialization/resources/crm/resources/linkedAccounts/types/index.d.ts +1 -0
  3656. package/serialization/resources/crm/resources/linkedAccounts/types/index.js +17 -0
  3657. package/serialization/resources/crm/resources/notes/index.d.ts +1 -0
  3658. package/serialization/resources/crm/resources/notes/index.js +1 -0
  3659. package/serialization/resources/crm/resources/notes/types/NotesListRequestExpand.d.ts +10 -0
  3660. package/serialization/resources/crm/resources/notes/types/NotesListRequestExpand.js +47 -0
  3661. package/serialization/resources/crm/resources/notes/types/NotesRetrieveRequestExpand.d.ts +10 -0
  3662. package/serialization/resources/crm/resources/notes/types/NotesRetrieveRequestExpand.js +47 -0
  3663. package/serialization/resources/crm/resources/notes/types/index.d.ts +2 -0
  3664. package/serialization/resources/crm/resources/notes/types/index.js +18 -0
  3665. package/serialization/resources/crm/resources/opportunities/index.d.ts +1 -0
  3666. package/serialization/resources/crm/resources/opportunities/index.js +1 -0
  3667. package/serialization/resources/crm/resources/opportunities/types/OpportunitiesListRequestExpand.d.ts +10 -0
  3668. package/serialization/resources/crm/resources/opportunities/types/OpportunitiesListRequestExpand.js +39 -0
  3669. package/serialization/resources/crm/resources/opportunities/types/OpportunitiesListRequestStatus.d.ts +10 -0
  3670. package/serialization/resources/crm/resources/opportunities/types/OpportunitiesListRequestStatus.js +31 -0
  3671. package/serialization/resources/crm/resources/opportunities/types/OpportunitiesRetrieveRequestExpand.d.ts +10 -0
  3672. package/serialization/resources/crm/resources/opportunities/types/OpportunitiesRetrieveRequestExpand.js +39 -0
  3673. package/serialization/resources/crm/resources/opportunities/types/index.d.ts +3 -0
  3674. package/serialization/resources/crm/resources/opportunities/types/index.js +19 -0
  3675. package/serialization/resources/crm/resources/tasks/index.d.ts +1 -0
  3676. package/serialization/resources/crm/resources/tasks/index.js +1 -0
  3677. package/serialization/resources/crm/resources/tasks/types/TasksListRequestExpand.d.ts +10 -0
  3678. package/serialization/resources/crm/resources/tasks/types/TasksListRequestExpand.js +39 -0
  3679. package/serialization/resources/crm/resources/tasks/types/TasksRetrieveRequestExpand.d.ts +10 -0
  3680. package/serialization/resources/crm/resources/tasks/types/TasksRetrieveRequestExpand.js +39 -0
  3681. package/serialization/resources/crm/resources/tasks/types/index.d.ts +2 -0
  3682. package/serialization/resources/crm/resources/tasks/types/index.js +18 -0
  3683. package/serialization/resources/crm/types/index.d.ts +33 -48
  3684. package/serialization/resources/crm/types/index.js +33 -48
  3685. package/serialization/resources/filestorage/index.d.ts +1 -1
  3686. package/serialization/resources/filestorage/index.js +1 -1
  3687. package/serialization/resources/filestorage/resources/files/index.d.ts +1 -0
  3688. package/serialization/resources/filestorage/resources/files/index.js +1 -0
  3689. package/serialization/resources/filestorage/resources/files/types/FilesListRequestExpand.d.ts +10 -0
  3690. package/serialization/resources/filestorage/resources/files/types/FilesListRequestExpand.js +39 -0
  3691. package/serialization/resources/filestorage/resources/files/types/FilesRetrieveRequestExpand.d.ts +10 -0
  3692. package/serialization/resources/filestorage/resources/files/types/FilesRetrieveRequestExpand.js +39 -0
  3693. package/serialization/resources/filestorage/resources/files/types/index.d.ts +2 -0
  3694. package/serialization/resources/filestorage/resources/files/types/index.js +18 -0
  3695. package/serialization/resources/filestorage/resources/folders/index.d.ts +1 -0
  3696. package/serialization/resources/filestorage/resources/folders/index.js +1 -0
  3697. package/serialization/resources/filestorage/resources/folders/types/FoldersListRequestExpand.d.ts +10 -0
  3698. package/serialization/resources/filestorage/resources/folders/types/FoldersListRequestExpand.js +39 -0
  3699. package/serialization/resources/filestorage/resources/folders/types/FoldersRetrieveRequestExpand.d.ts +10 -0
  3700. package/serialization/resources/filestorage/resources/folders/types/FoldersRetrieveRequestExpand.js +39 -0
  3701. package/serialization/resources/filestorage/resources/folders/types/index.d.ts +2 -0
  3702. package/serialization/resources/filestorage/resources/folders/types/index.js +18 -0
  3703. package/serialization/resources/filestorage/resources/index.d.ts +8 -2
  3704. package/serialization/resources/filestorage/resources/index.js +9 -3
  3705. package/serialization/resources/filestorage/resources/issues/index.d.ts +1 -0
  3706. package/serialization/resources/filestorage/resources/issues/index.js +17 -0
  3707. package/serialization/resources/filestorage/resources/issues/types/IssuesListRequestStatus.d.ts +10 -0
  3708. package/serialization/resources/filestorage/resources/issues/types/IssuesListRequestStatus.js +31 -0
  3709. package/serialization/resources/filestorage/resources/issues/types/index.d.ts +1 -0
  3710. package/serialization/resources/filestorage/resources/issues/types/index.js +17 -0
  3711. package/serialization/resources/filestorage/resources/linkedAccounts/index.d.ts +1 -0
  3712. package/serialization/resources/filestorage/resources/linkedAccounts/index.js +17 -0
  3713. package/serialization/resources/filestorage/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.d.ts +10 -0
  3714. package/serialization/resources/filestorage/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.js +31 -0
  3715. package/serialization/resources/filestorage/resources/linkedAccounts/types/index.d.ts +1 -0
  3716. package/serialization/resources/filestorage/resources/linkedAccounts/types/index.js +17 -0
  3717. package/serialization/resources/filestorage/types/index.d.ts +15 -21
  3718. package/serialization/resources/filestorage/types/index.js +15 -21
  3719. package/serialization/resources/hris/index.d.ts +1 -1
  3720. package/serialization/resources/hris/index.js +1 -1
  3721. package/serialization/resources/hris/resources/bankInfo/index.d.ts +1 -0
  3722. package/serialization/resources/hris/resources/bankInfo/index.js +17 -0
  3723. package/serialization/resources/hris/resources/bankInfo/types/BankInfoListRequestAccountType.d.ts +10 -0
  3724. package/serialization/resources/hris/resources/bankInfo/types/BankInfoListRequestAccountType.js +31 -0
  3725. package/serialization/resources/hris/resources/bankInfo/types/BankInfoListRequestOrderBy.d.ts +10 -0
  3726. package/serialization/resources/hris/resources/bankInfo/types/BankInfoListRequestOrderBy.js +31 -0
  3727. package/serialization/resources/hris/resources/bankInfo/types/index.d.ts +2 -0
  3728. package/serialization/resources/hris/resources/bankInfo/types/index.js +18 -0
  3729. package/serialization/resources/hris/resources/employeePayrollRuns/index.d.ts +1 -0
  3730. package/serialization/resources/hris/resources/employeePayrollRuns/index.js +17 -0
  3731. package/serialization/resources/hris/resources/employeePayrollRuns/types/EmployeePayrollRunsListRequestExpand.d.ts +10 -0
  3732. package/serialization/resources/hris/resources/employeePayrollRuns/types/EmployeePayrollRunsListRequestExpand.js +31 -0
  3733. package/serialization/resources/hris/resources/employeePayrollRuns/types/EmployeePayrollRunsRetrieveRequestExpand.d.ts +10 -0
  3734. package/serialization/resources/hris/resources/employeePayrollRuns/types/EmployeePayrollRunsRetrieveRequestExpand.js +31 -0
  3735. package/serialization/resources/hris/resources/employeePayrollRuns/types/index.d.ts +2 -0
  3736. package/serialization/resources/hris/resources/employeePayrollRuns/types/index.js +18 -0
  3737. package/serialization/resources/hris/resources/employees/index.d.ts +1 -0
  3738. package/serialization/resources/hris/resources/employees/index.js +1 -0
  3739. package/serialization/resources/hris/resources/employees/types/EmployeesListRequestEmploymentStatus.d.ts +10 -0
  3740. package/serialization/resources/hris/resources/employees/types/EmployeesListRequestEmploymentStatus.js +31 -0
  3741. package/serialization/resources/hris/resources/employees/types/EmployeesListRequestExpand.d.ts +10 -0
  3742. package/serialization/resources/hris/resources/employees/types/EmployeesListRequestExpand.js +287 -0
  3743. package/serialization/resources/hris/resources/employees/types/EmployeesListRequestRemoteFields.d.ts +10 -0
  3744. package/serialization/resources/hris/resources/employees/types/EmployeesListRequestRemoteFields.js +47 -0
  3745. package/serialization/resources/hris/resources/employees/types/EmployeesListRequestShowEnumOrigins.d.ts +10 -0
  3746. package/serialization/resources/hris/resources/employees/types/EmployeesListRequestShowEnumOrigins.js +47 -0
  3747. package/serialization/resources/hris/resources/employees/types/EmployeesRetrieveRequestExpand.d.ts +10 -0
  3748. package/serialization/resources/hris/resources/employees/types/EmployeesRetrieveRequestExpand.js +287 -0
  3749. package/serialization/resources/hris/resources/employees/types/EmployeesRetrieveRequestRemoteFields.d.ts +10 -0
  3750. package/serialization/resources/hris/resources/employees/types/EmployeesRetrieveRequestRemoteFields.js +47 -0
  3751. package/serialization/resources/hris/resources/employees/types/EmployeesRetrieveRequestShowEnumOrigins.d.ts +10 -0
  3752. package/serialization/resources/hris/resources/employees/types/EmployeesRetrieveRequestShowEnumOrigins.js +47 -0
  3753. package/serialization/resources/hris/resources/employees/types/IgnoreCommonModelRequestReason.d.ts +10 -0
  3754. package/serialization/resources/hris/resources/employees/types/IgnoreCommonModelRequestReason.js +43 -0
  3755. package/serialization/resources/hris/resources/employees/types/index.d.ts +8 -0
  3756. package/serialization/resources/hris/resources/employees/types/index.js +24 -0
  3757. package/serialization/resources/hris/resources/employments/index.d.ts +1 -0
  3758. package/serialization/resources/hris/resources/employments/index.js +17 -0
  3759. package/serialization/resources/hris/resources/employments/types/EmploymentsListRequestExpand.d.ts +10 -0
  3760. package/serialization/resources/hris/resources/employments/types/EmploymentsListRequestExpand.js +31 -0
  3761. package/serialization/resources/hris/resources/employments/types/EmploymentsListRequestOrderBy.d.ts +10 -0
  3762. package/serialization/resources/hris/resources/employments/types/EmploymentsListRequestOrderBy.js +31 -0
  3763. package/serialization/resources/hris/resources/employments/types/EmploymentsListRequestRemoteFields.d.ts +10 -0
  3764. package/serialization/resources/hris/resources/employments/types/EmploymentsListRequestRemoteFields.js +47 -0
  3765. package/serialization/resources/hris/resources/employments/types/EmploymentsListRequestShowEnumOrigins.d.ts +10 -0
  3766. package/serialization/resources/hris/resources/employments/types/EmploymentsListRequestShowEnumOrigins.js +47 -0
  3767. package/serialization/resources/hris/resources/employments/types/EmploymentsRetrieveRequestExpand.d.ts +10 -0
  3768. package/serialization/resources/hris/resources/employments/types/EmploymentsRetrieveRequestExpand.js +31 -0
  3769. package/serialization/resources/hris/resources/employments/types/EmploymentsRetrieveRequestRemoteFields.d.ts +10 -0
  3770. package/serialization/resources/hris/resources/employments/types/EmploymentsRetrieveRequestRemoteFields.js +47 -0
  3771. package/serialization/resources/hris/resources/employments/types/EmploymentsRetrieveRequestShowEnumOrigins.d.ts +10 -0
  3772. package/serialization/resources/hris/resources/employments/types/EmploymentsRetrieveRequestShowEnumOrigins.js +47 -0
  3773. package/serialization/resources/hris/resources/employments/types/index.d.ts +7 -0
  3774. package/serialization/resources/hris/resources/employments/types/index.js +23 -0
  3775. package/serialization/resources/hris/resources/index.d.ts +22 -3
  3776. package/serialization/resources/hris/resources/index.js +23 -4
  3777. package/serialization/resources/hris/resources/issues/index.d.ts +1 -0
  3778. package/serialization/resources/hris/resources/issues/index.js +17 -0
  3779. package/serialization/resources/hris/resources/issues/types/IssuesListRequestStatus.d.ts +10 -0
  3780. package/serialization/resources/hris/resources/issues/types/IssuesListRequestStatus.js +31 -0
  3781. package/serialization/resources/hris/resources/issues/types/index.d.ts +1 -0
  3782. package/serialization/resources/hris/resources/issues/types/index.js +17 -0
  3783. package/serialization/resources/hris/resources/linkedAccounts/index.d.ts +1 -0
  3784. package/serialization/resources/hris/resources/linkedAccounts/index.js +17 -0
  3785. package/serialization/resources/hris/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.d.ts +10 -0
  3786. package/serialization/resources/hris/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.js +31 -0
  3787. package/serialization/resources/hris/resources/linkedAccounts/types/index.d.ts +1 -0
  3788. package/serialization/resources/hris/resources/linkedAccounts/types/index.js +17 -0
  3789. package/serialization/resources/hris/resources/locations/index.d.ts +1 -0
  3790. package/serialization/resources/hris/resources/locations/index.js +17 -0
  3791. package/serialization/resources/hris/resources/locations/types/LocationsListRequestLocationType.d.ts +10 -0
  3792. package/serialization/resources/hris/resources/locations/types/LocationsListRequestLocationType.js +31 -0
  3793. package/serialization/resources/hris/resources/locations/types/index.d.ts +1 -0
  3794. package/serialization/resources/hris/resources/locations/types/index.js +17 -0
  3795. package/serialization/resources/hris/resources/payrollRuns/index.d.ts +1 -0
  3796. package/serialization/resources/hris/resources/payrollRuns/index.js +17 -0
  3797. package/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsListRequestRemoteFields.d.ts +10 -0
  3798. package/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsListRequestRemoteFields.js +31 -0
  3799. package/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsListRequestRunType.d.ts +10 -0
  3800. package/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsListRequestRunType.js +31 -0
  3801. package/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsListRequestShowEnumOrigins.d.ts +10 -0
  3802. package/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsListRequestShowEnumOrigins.js +31 -0
  3803. package/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsRetrieveRequestRemoteFields.d.ts +10 -0
  3804. package/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsRetrieveRequestRemoteFields.js +31 -0
  3805. package/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsRetrieveRequestShowEnumOrigins.d.ts +10 -0
  3806. package/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsRetrieveRequestShowEnumOrigins.js +31 -0
  3807. package/serialization/resources/hris/resources/payrollRuns/types/index.d.ts +5 -0
  3808. package/serialization/resources/hris/resources/payrollRuns/types/index.js +21 -0
  3809. package/serialization/resources/hris/resources/timeOff/index.d.ts +1 -0
  3810. package/serialization/resources/hris/resources/timeOff/index.js +1 -0
  3811. package/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestExpand.d.ts +10 -0
  3812. package/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestExpand.js +31 -0
  3813. package/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestRemoteFields.d.ts +10 -0
  3814. package/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestRemoteFields.js +39 -0
  3815. package/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestRequestType.d.ts +10 -0
  3816. package/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestRequestType.js +31 -0
  3817. package/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestShowEnumOrigins.d.ts +10 -0
  3818. package/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestShowEnumOrigins.js +39 -0
  3819. package/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestStatus.d.ts +10 -0
  3820. package/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestStatus.js +31 -0
  3821. package/serialization/resources/hris/resources/timeOff/types/TimeOffRetrieveRequestExpand.d.ts +10 -0
  3822. package/serialization/resources/hris/resources/timeOff/types/TimeOffRetrieveRequestExpand.js +31 -0
  3823. package/serialization/resources/hris/resources/timeOff/types/TimeOffRetrieveRequestRemoteFields.d.ts +10 -0
  3824. package/serialization/resources/hris/resources/timeOff/types/TimeOffRetrieveRequestRemoteFields.js +39 -0
  3825. package/serialization/resources/hris/resources/timeOff/types/TimeOffRetrieveRequestShowEnumOrigins.d.ts +10 -0
  3826. package/serialization/resources/hris/resources/timeOff/types/TimeOffRetrieveRequestShowEnumOrigins.js +39 -0
  3827. package/serialization/resources/hris/resources/timeOff/types/index.d.ts +8 -0
  3828. package/serialization/resources/hris/resources/timeOff/types/index.js +24 -0
  3829. package/serialization/resources/hris/resources/timeOffBalances/index.d.ts +1 -0
  3830. package/serialization/resources/hris/resources/timeOffBalances/index.js +17 -0
  3831. package/serialization/resources/hris/resources/timeOffBalances/types/TimeOffBalancesListRequestPolicyType.d.ts +10 -0
  3832. package/serialization/resources/hris/resources/timeOffBalances/types/TimeOffBalancesListRequestPolicyType.js +31 -0
  3833. package/serialization/resources/hris/resources/timeOffBalances/types/index.d.ts +1 -0
  3834. package/serialization/resources/hris/resources/timeOffBalances/types/index.js +17 -0
  3835. package/serialization/resources/hris/resources/timesheetEntries/index.d.ts +1 -0
  3836. package/serialization/resources/hris/resources/timesheetEntries/index.js +1 -0
  3837. package/serialization/resources/hris/resources/timesheetEntries/types/TimesheetEntriesListRequestOrderBy.d.ts +10 -0
  3838. package/serialization/resources/hris/resources/timesheetEntries/types/TimesheetEntriesListRequestOrderBy.js +31 -0
  3839. package/serialization/resources/hris/resources/timesheetEntries/types/index.d.ts +1 -0
  3840. package/serialization/resources/hris/resources/timesheetEntries/types/index.js +17 -0
  3841. package/serialization/resources/hris/types/index.d.ts +22 -59
  3842. package/serialization/resources/hris/types/index.js +22 -59
  3843. package/serialization/resources/ticketing/index.d.ts +1 -1
  3844. package/serialization/resources/ticketing/index.js +1 -1
  3845. package/serialization/resources/ticketing/resources/collections/index.d.ts +1 -0
  3846. package/serialization/resources/ticketing/resources/collections/index.js +17 -0
  3847. package/serialization/resources/ticketing/resources/collections/types/CollectionsListRequestCollectionType.d.ts +10 -0
  3848. package/serialization/resources/ticketing/resources/collections/types/CollectionsListRequestCollectionType.js +31 -0
  3849. package/serialization/resources/ticketing/resources/collections/types/CollectionsUsersListRequestExpand.d.ts +10 -0
  3850. package/serialization/resources/ticketing/resources/collections/types/CollectionsUsersListRequestExpand.js +31 -0
  3851. package/serialization/resources/ticketing/resources/collections/types/index.d.ts +2 -0
  3852. package/serialization/resources/ticketing/resources/collections/types/index.js +18 -0
  3853. package/serialization/resources/ticketing/resources/comments/index.d.ts +1 -0
  3854. package/serialization/resources/ticketing/resources/comments/index.js +1 -0
  3855. package/serialization/resources/ticketing/resources/comments/types/CommentsListRequestExpand.d.ts +10 -0
  3856. package/serialization/resources/ticketing/resources/comments/types/CommentsListRequestExpand.js +39 -0
  3857. package/serialization/resources/ticketing/resources/comments/types/CommentsRetrieveRequestExpand.d.ts +10 -0
  3858. package/serialization/resources/ticketing/resources/comments/types/CommentsRetrieveRequestExpand.js +39 -0
  3859. package/serialization/resources/ticketing/resources/comments/types/index.d.ts +2 -0
  3860. package/serialization/resources/ticketing/resources/comments/types/index.js +18 -0
  3861. package/serialization/resources/ticketing/resources/index.d.ts +14 -2
  3862. package/serialization/resources/ticketing/resources/index.js +15 -3
  3863. package/serialization/resources/ticketing/resources/issues/index.d.ts +1 -0
  3864. package/serialization/resources/ticketing/resources/issues/index.js +17 -0
  3865. package/serialization/resources/ticketing/resources/issues/types/IssuesListRequestStatus.d.ts +10 -0
  3866. package/serialization/resources/ticketing/resources/issues/types/IssuesListRequestStatus.js +31 -0
  3867. package/serialization/resources/ticketing/resources/issues/types/index.d.ts +1 -0
  3868. package/serialization/resources/ticketing/resources/issues/types/index.js +17 -0
  3869. package/serialization/resources/ticketing/resources/linkedAccounts/index.d.ts +1 -0
  3870. package/serialization/resources/ticketing/resources/linkedAccounts/index.js +17 -0
  3871. package/serialization/resources/ticketing/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.d.ts +10 -0
  3872. package/serialization/resources/ticketing/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.js +31 -0
  3873. package/serialization/resources/ticketing/resources/linkedAccounts/types/index.d.ts +1 -0
  3874. package/serialization/resources/ticketing/resources/linkedAccounts/types/index.js +17 -0
  3875. package/serialization/resources/ticketing/resources/projects/index.d.ts +1 -0
  3876. package/serialization/resources/ticketing/resources/projects/index.js +17 -0
  3877. package/serialization/resources/ticketing/resources/projects/types/ProjectsUsersListRequestExpand.d.ts +10 -0
  3878. package/serialization/resources/ticketing/resources/projects/types/ProjectsUsersListRequestExpand.js +31 -0
  3879. package/serialization/resources/ticketing/resources/projects/types/index.d.ts +1 -0
  3880. package/serialization/resources/ticketing/resources/projects/types/index.js +17 -0
  3881. package/serialization/resources/ticketing/resources/tickets/index.d.ts +1 -0
  3882. package/serialization/resources/ticketing/resources/tickets/index.js +1 -0
  3883. package/serialization/resources/ticketing/resources/tickets/types/TicketsCollaboratorsListRequestExpand.d.ts +10 -0
  3884. package/serialization/resources/ticketing/resources/tickets/types/TicketsCollaboratorsListRequestExpand.js +31 -0
  3885. package/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestExpand.d.ts +10 -0
  3886. package/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestExpand.js +159 -0
  3887. package/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestPriority.d.ts +10 -0
  3888. package/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestPriority.js +31 -0
  3889. package/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestRemoteFields.d.ts +10 -0
  3890. package/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestRemoteFields.js +39 -0
  3891. package/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestShowEnumOrigins.d.ts +10 -0
  3892. package/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestShowEnumOrigins.js +39 -0
  3893. package/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestStatus.d.ts +10 -0
  3894. package/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestStatus.js +31 -0
  3895. package/serialization/resources/ticketing/resources/tickets/types/TicketsRetrieveRequestExpand.d.ts +10 -0
  3896. package/serialization/resources/ticketing/resources/tickets/types/TicketsRetrieveRequestExpand.js +159 -0
  3897. package/serialization/resources/ticketing/resources/tickets/types/TicketsRetrieveRequestRemoteFields.d.ts +10 -0
  3898. package/serialization/resources/ticketing/resources/tickets/types/TicketsRetrieveRequestRemoteFields.js +39 -0
  3899. package/serialization/resources/ticketing/resources/tickets/types/TicketsRetrieveRequestShowEnumOrigins.d.ts +10 -0
  3900. package/serialization/resources/ticketing/resources/tickets/types/TicketsRetrieveRequestShowEnumOrigins.js +39 -0
  3901. package/serialization/resources/ticketing/resources/tickets/types/index.d.ts +9 -0
  3902. package/serialization/resources/ticketing/resources/tickets/types/index.js +25 -0
  3903. package/serialization/resources/ticketing/resources/users/index.d.ts +1 -0
  3904. package/serialization/resources/ticketing/resources/users/index.js +17 -0
  3905. package/serialization/resources/ticketing/resources/users/types/UsersListRequestExpand.d.ts +10 -0
  3906. package/serialization/resources/ticketing/resources/users/types/UsersListRequestExpand.js +31 -0
  3907. package/serialization/resources/ticketing/resources/users/types/UsersRetrieveRequestExpand.d.ts +10 -0
  3908. package/serialization/resources/ticketing/resources/users/types/UsersRetrieveRequestExpand.js +31 -0
  3909. package/serialization/resources/ticketing/resources/users/types/index.d.ts +2 -0
  3910. package/serialization/resources/ticketing/resources/users/types/index.js +18 -0
  3911. package/serialization/resources/ticketing/types/index.d.ts +19 -37
  3912. package/serialization/resources/ticketing/types/index.js +19 -37
  3913. package/api/resources/hris/types/IgnoreCommonModelRequestReason.d.ts +0 -5
  3914. package/core/streaming-fetcher/StreamingFetcher.d.ts +0 -30
  3915. package/core/streaming-fetcher/StreamingFetcher.js +0 -79
  3916. package/core/streaming-fetcher/getHeader.d.ts +0 -2
  3917. package/core/streaming-fetcher/getHeader.js +0 -12
  3918. package/core/streaming-fetcher/index.d.ts +0 -3
  3919. package/core/streaming-fetcher/index.js +0 -7
  3920. package/dist/api/resources/hris/types/IgnoreCommonModelRequestReason.d.ts +0 -5
  3921. package/dist/core/streaming-fetcher/StreamingFetcher.d.ts +0 -30
  3922. package/dist/core/streaming-fetcher/StreamingFetcher.js +0 -79
  3923. package/dist/core/streaming-fetcher/getHeader.d.ts +0 -2
  3924. package/dist/core/streaming-fetcher/getHeader.js +0 -12
  3925. package/dist/core/streaming-fetcher/index.d.ts +0 -3
  3926. package/dist/core/streaming-fetcher/index.js +0 -7
  3927. package/dist/serialization/resources/accounting/types/AccountsListRequestRemoteFields.d.ts +0 -10
  3928. package/dist/serialization/resources/accounting/types/AccountsListRequestRemoteFields.js +0 -31
  3929. package/dist/serialization/resources/accounting/types/AccountsListRequestShowEnumOrigins.d.ts +0 -10
  3930. package/dist/serialization/resources/accounting/types/AccountsListRequestShowEnumOrigins.js +0 -31
  3931. package/dist/serialization/resources/accounting/types/AccountsRetrieveRequestRemoteFields.d.ts +0 -10
  3932. package/dist/serialization/resources/accounting/types/AccountsRetrieveRequestRemoteFields.js +0 -31
  3933. package/dist/serialization/resources/accounting/types/AccountsRetrieveRequestShowEnumOrigins.d.ts +0 -10
  3934. package/dist/serialization/resources/accounting/types/AccountsRetrieveRequestShowEnumOrigins.js +0 -31
  3935. package/dist/serialization/resources/accounting/types/CompanyInfoListRequestExpand.d.ts +0 -10
  3936. package/dist/serialization/resources/accounting/types/CompanyInfoListRequestExpand.js +0 -31
  3937. package/dist/serialization/resources/accounting/types/CompanyInfoRetrieveRequestExpand.d.ts +0 -10
  3938. package/dist/serialization/resources/accounting/types/CompanyInfoRetrieveRequestExpand.js +0 -31
  3939. package/dist/serialization/resources/accounting/types/ContactsListRequestExpand.d.ts +0 -10
  3940. package/dist/serialization/resources/accounting/types/ContactsListRequestExpand.js +0 -39
  3941. package/dist/serialization/resources/accounting/types/ContactsRetrieveRequestExpand.d.ts +0 -10
  3942. package/dist/serialization/resources/accounting/types/ContactsRetrieveRequestExpand.js +0 -39
  3943. package/dist/serialization/resources/accounting/types/CreditNotesListRequestExpand.d.ts +0 -10
  3944. package/dist/serialization/resources/accounting/types/CreditNotesListRequestExpand.js +0 -159
  3945. package/dist/serialization/resources/accounting/types/CreditNotesListRequestRemoteFields.d.ts +0 -10
  3946. package/dist/serialization/resources/accounting/types/CreditNotesListRequestRemoteFields.js +0 -31
  3947. package/dist/serialization/resources/accounting/types/CreditNotesListRequestShowEnumOrigins.d.ts +0 -10
  3948. package/dist/serialization/resources/accounting/types/CreditNotesListRequestShowEnumOrigins.js +0 -31
  3949. package/dist/serialization/resources/accounting/types/CreditNotesRetrieveRequestExpand.d.ts +0 -10
  3950. package/dist/serialization/resources/accounting/types/CreditNotesRetrieveRequestExpand.js +0 -159
  3951. package/dist/serialization/resources/accounting/types/CreditNotesRetrieveRequestRemoteFields.d.ts +0 -10
  3952. package/dist/serialization/resources/accounting/types/CreditNotesRetrieveRequestRemoteFields.js +0 -31
  3953. package/dist/serialization/resources/accounting/types/CreditNotesRetrieveRequestShowEnumOrigins.d.ts +0 -10
  3954. package/dist/serialization/resources/accounting/types/CreditNotesRetrieveRequestShowEnumOrigins.js +0 -31
  3955. package/dist/serialization/resources/accounting/types/ExpensesListRequestExpand.d.ts +0 -10
  3956. package/dist/serialization/resources/accounting/types/ExpensesListRequestExpand.js +0 -63
  3957. package/dist/serialization/resources/accounting/types/ExpensesRetrieveRequestExpand.d.ts +0 -10
  3958. package/dist/serialization/resources/accounting/types/ExpensesRetrieveRequestExpand.js +0 -63
  3959. package/dist/serialization/resources/accounting/types/InvoicesListRequestExpand.d.ts +0 -10
  3960. package/dist/serialization/resources/accounting/types/InvoicesListRequestExpand.js +0 -287
  3961. package/dist/serialization/resources/accounting/types/InvoicesListRequestType.d.ts +0 -10
  3962. package/dist/serialization/resources/accounting/types/InvoicesListRequestType.js +0 -31
  3963. package/dist/serialization/resources/accounting/types/InvoicesRetrieveRequestExpand.d.ts +0 -10
  3964. package/dist/serialization/resources/accounting/types/InvoicesRetrieveRequestExpand.js +0 -287
  3965. package/dist/serialization/resources/accounting/types/IssuesListRequestStatus.d.ts +0 -10
  3966. package/dist/serialization/resources/accounting/types/IssuesListRequestStatus.js +0 -31
  3967. package/dist/serialization/resources/accounting/types/ItemsListRequestExpand.d.ts +0 -10
  3968. package/dist/serialization/resources/accounting/types/ItemsListRequestExpand.js +0 -39
  3969. package/dist/serialization/resources/accounting/types/ItemsRetrieveRequestExpand.d.ts +0 -10
  3970. package/dist/serialization/resources/accounting/types/ItemsRetrieveRequestExpand.js +0 -39
  3971. package/dist/serialization/resources/accounting/types/JournalEntriesListRequestExpand.d.ts +0 -10
  3972. package/dist/serialization/resources/accounting/types/JournalEntriesListRequestExpand.js +0 -95
  3973. package/dist/serialization/resources/accounting/types/JournalEntriesRetrieveRequestExpand.d.ts +0 -10
  3974. package/dist/serialization/resources/accounting/types/JournalEntriesRetrieveRequestExpand.js +0 -95
  3975. package/dist/serialization/resources/accounting/types/LinkedAccountsListRequestCategory.d.ts +0 -10
  3976. package/dist/serialization/resources/accounting/types/LinkedAccountsListRequestCategory.js +0 -31
  3977. package/dist/serialization/resources/accounting/types/PaymentsListRequestExpand.d.ts +0 -10
  3978. package/dist/serialization/resources/accounting/types/PaymentsListRequestExpand.js +0 -95
  3979. package/dist/serialization/resources/accounting/types/PaymentsRetrieveRequestExpand.d.ts +0 -10
  3980. package/dist/serialization/resources/accounting/types/PaymentsRetrieveRequestExpand.js +0 -95
  3981. package/dist/serialization/resources/accounting/types/PurchaseOrdersListRequestExpand.d.ts +0 -10
  3982. package/dist/serialization/resources/accounting/types/PurchaseOrdersListRequestExpand.js +0 -95
  3983. package/dist/serialization/resources/accounting/types/PurchaseOrdersRetrieveRequestExpand.d.ts +0 -10
  3984. package/dist/serialization/resources/accounting/types/PurchaseOrdersRetrieveRequestExpand.js +0 -95
  3985. package/dist/serialization/resources/accounting/types/TransactionsListRequestExpand.d.ts +0 -10
  3986. package/dist/serialization/resources/accounting/types/TransactionsListRequestExpand.js +0 -63
  3987. package/dist/serialization/resources/accounting/types/TransactionsRetrieveRequestExpand.d.ts +0 -10
  3988. package/dist/serialization/resources/accounting/types/TransactionsRetrieveRequestExpand.js +0 -63
  3989. package/dist/serialization/resources/accounting/types/VendorCreditsListRequestExpand.d.ts +0 -10
  3990. package/dist/serialization/resources/accounting/types/VendorCreditsListRequestExpand.js +0 -63
  3991. package/dist/serialization/resources/accounting/types/VendorCreditsRetrieveRequestExpand.d.ts +0 -10
  3992. package/dist/serialization/resources/accounting/types/VendorCreditsRetrieveRequestExpand.js +0 -63
  3993. package/dist/serialization/resources/ats/types/ActivitiesListRequestRemoteFields.d.ts +0 -10
  3994. package/dist/serialization/resources/ats/types/ActivitiesListRequestRemoteFields.js +0 -31
  3995. package/dist/serialization/resources/ats/types/ActivitiesListRequestShowEnumOrigins.d.ts +0 -10
  3996. package/dist/serialization/resources/ats/types/ActivitiesListRequestShowEnumOrigins.js +0 -31
  3997. package/dist/serialization/resources/ats/types/ActivitiesRetrieveRequestRemoteFields.d.ts +0 -10
  3998. package/dist/serialization/resources/ats/types/ActivitiesRetrieveRequestRemoteFields.js +0 -31
  3999. package/dist/serialization/resources/ats/types/ActivitiesRetrieveRequestShowEnumOrigins.d.ts +0 -10
  4000. package/dist/serialization/resources/ats/types/ActivitiesRetrieveRequestShowEnumOrigins.js +0 -31
  4001. package/dist/serialization/resources/ats/types/ApplicationsListRequestExpand.d.ts +0 -10
  4002. package/dist/serialization/resources/ats/types/ApplicationsListRequestExpand.js +0 -63
  4003. package/dist/serialization/resources/ats/types/ApplicationsRetrieveRequestExpand.d.ts +0 -10
  4004. package/dist/serialization/resources/ats/types/ApplicationsRetrieveRequestExpand.js +0 -63
  4005. package/dist/serialization/resources/ats/types/CandidatesListRequestExpand.d.ts +0 -10
  4006. package/dist/serialization/resources/ats/types/CandidatesListRequestExpand.js +0 -31
  4007. package/dist/serialization/resources/ats/types/CandidatesRetrieveRequestExpand.d.ts +0 -10
  4008. package/dist/serialization/resources/ats/types/CandidatesRetrieveRequestExpand.js +0 -31
  4009. package/dist/serialization/resources/ats/types/EeocsListRequestRemoteFields.d.ts +0 -10
  4010. package/dist/serialization/resources/ats/types/EeocsListRequestRemoteFields.js +0 -47
  4011. package/dist/serialization/resources/ats/types/EeocsListRequestShowEnumOrigins.d.ts +0 -10
  4012. package/dist/serialization/resources/ats/types/EeocsListRequestShowEnumOrigins.js +0 -47
  4013. package/dist/serialization/resources/ats/types/EeocsRetrieveRequestRemoteFields.d.ts +0 -10
  4014. package/dist/serialization/resources/ats/types/EeocsRetrieveRequestRemoteFields.js +0 -47
  4015. package/dist/serialization/resources/ats/types/EeocsRetrieveRequestShowEnumOrigins.d.ts +0 -10
  4016. package/dist/serialization/resources/ats/types/EeocsRetrieveRequestShowEnumOrigins.js +0 -47
  4017. package/dist/serialization/resources/ats/types/InterviewsListRequestExpand.d.ts +0 -10
  4018. package/dist/serialization/resources/ats/types/InterviewsListRequestExpand.js +0 -47
  4019. package/dist/serialization/resources/ats/types/InterviewsRetrieveRequestExpand.d.ts +0 -10
  4020. package/dist/serialization/resources/ats/types/InterviewsRetrieveRequestExpand.js +0 -47
  4021. package/dist/serialization/resources/ats/types/IssuesListRequestStatus.d.ts +0 -10
  4022. package/dist/serialization/resources/ats/types/IssuesListRequestStatus.js +0 -31
  4023. package/dist/serialization/resources/ats/types/JobsListRequestExpand.d.ts +0 -10
  4024. package/dist/serialization/resources/ats/types/JobsListRequestExpand.js +0 -47
  4025. package/dist/serialization/resources/ats/types/JobsListRequestStatus.d.ts +0 -10
  4026. package/dist/serialization/resources/ats/types/JobsListRequestStatus.js +0 -31
  4027. package/dist/serialization/resources/ats/types/JobsRetrieveRequestExpand.d.ts +0 -10
  4028. package/dist/serialization/resources/ats/types/JobsRetrieveRequestExpand.js +0 -47
  4029. package/dist/serialization/resources/ats/types/JobsScreeningQuestionsListRequestExpand.d.ts +0 -10
  4030. package/dist/serialization/resources/ats/types/JobsScreeningQuestionsListRequestExpand.js +0 -31
  4031. package/dist/serialization/resources/ats/types/LinkedAccountsListRequestCategory.d.ts +0 -10
  4032. package/dist/serialization/resources/ats/types/LinkedAccountsListRequestCategory.js +0 -31
  4033. package/dist/serialization/resources/ats/types/OffersListRequestExpand.d.ts +0 -10
  4034. package/dist/serialization/resources/ats/types/OffersListRequestExpand.js +0 -31
  4035. package/dist/serialization/resources/ats/types/OffersRetrieveRequestExpand.d.ts +0 -10
  4036. package/dist/serialization/resources/ats/types/OffersRetrieveRequestExpand.js +0 -31
  4037. package/dist/serialization/resources/ats/types/ScorecardsListRequestExpand.d.ts +0 -10
  4038. package/dist/serialization/resources/ats/types/ScorecardsListRequestExpand.js +0 -39
  4039. package/dist/serialization/resources/ats/types/ScorecardsRetrieveRequestExpand.d.ts +0 -10
  4040. package/dist/serialization/resources/ats/types/ScorecardsRetrieveRequestExpand.js +0 -39
  4041. package/dist/serialization/resources/crm/types/ContactsListRequestExpand.d.ts +0 -10
  4042. package/dist/serialization/resources/crm/types/ContactsListRequestExpand.js +0 -31
  4043. package/dist/serialization/resources/crm/types/ContactsRetrieveRequestExpand.d.ts +0 -10
  4044. package/dist/serialization/resources/crm/types/ContactsRetrieveRequestExpand.js +0 -31
  4045. package/dist/serialization/resources/crm/types/EngagementsListRequestExpand.d.ts +0 -10
  4046. package/dist/serialization/resources/crm/types/EngagementsListRequestExpand.js +0 -47
  4047. package/dist/serialization/resources/crm/types/EngagementsRetrieveRequestExpand.d.ts +0 -10
  4048. package/dist/serialization/resources/crm/types/EngagementsRetrieveRequestExpand.js +0 -47
  4049. package/dist/serialization/resources/crm/types/IssuesListRequestStatus.d.ts +0 -10
  4050. package/dist/serialization/resources/crm/types/IssuesListRequestStatus.js +0 -31
  4051. package/dist/serialization/resources/crm/types/LeadsListRequestExpand.d.ts +0 -10
  4052. package/dist/serialization/resources/crm/types/LeadsListRequestExpand.js +0 -39
  4053. package/dist/serialization/resources/crm/types/LeadsRetrieveRequestExpand.d.ts +0 -10
  4054. package/dist/serialization/resources/crm/types/LeadsRetrieveRequestExpand.js +0 -39
  4055. package/dist/serialization/resources/crm/types/LinkedAccountsListRequestCategory.d.ts +0 -10
  4056. package/dist/serialization/resources/crm/types/LinkedAccountsListRequestCategory.js +0 -31
  4057. package/dist/serialization/resources/crm/types/NotesListRequestExpand.d.ts +0 -10
  4058. package/dist/serialization/resources/crm/types/NotesListRequestExpand.js +0 -47
  4059. package/dist/serialization/resources/crm/types/NotesRetrieveRequestExpand.d.ts +0 -10
  4060. package/dist/serialization/resources/crm/types/NotesRetrieveRequestExpand.js +0 -47
  4061. package/dist/serialization/resources/crm/types/OpportunitiesListRequestExpand.d.ts +0 -10
  4062. package/dist/serialization/resources/crm/types/OpportunitiesListRequestExpand.js +0 -39
  4063. package/dist/serialization/resources/crm/types/OpportunitiesListRequestStatus.d.ts +0 -10
  4064. package/dist/serialization/resources/crm/types/OpportunitiesListRequestStatus.js +0 -31
  4065. package/dist/serialization/resources/crm/types/OpportunitiesRetrieveRequestExpand.d.ts +0 -10
  4066. package/dist/serialization/resources/crm/types/OpportunitiesRetrieveRequestExpand.js +0 -39
  4067. package/dist/serialization/resources/crm/types/TasksListRequestExpand.d.ts +0 -10
  4068. package/dist/serialization/resources/crm/types/TasksListRequestExpand.js +0 -39
  4069. package/dist/serialization/resources/crm/types/TasksRetrieveRequestExpand.d.ts +0 -10
  4070. package/dist/serialization/resources/crm/types/TasksRetrieveRequestExpand.js +0 -39
  4071. package/dist/serialization/resources/filestorage/types/FilesListRequestExpand.d.ts +0 -10
  4072. package/dist/serialization/resources/filestorage/types/FilesListRequestExpand.js +0 -39
  4073. package/dist/serialization/resources/filestorage/types/FilesRetrieveRequestExpand.d.ts +0 -10
  4074. package/dist/serialization/resources/filestorage/types/FilesRetrieveRequestExpand.js +0 -39
  4075. package/dist/serialization/resources/filestorage/types/FoldersListRequestExpand.d.ts +0 -10
  4076. package/dist/serialization/resources/filestorage/types/FoldersListRequestExpand.js +0 -39
  4077. package/dist/serialization/resources/filestorage/types/FoldersRetrieveRequestExpand.d.ts +0 -10
  4078. package/dist/serialization/resources/filestorage/types/FoldersRetrieveRequestExpand.js +0 -39
  4079. package/dist/serialization/resources/filestorage/types/IssuesListRequestStatus.d.ts +0 -10
  4080. package/dist/serialization/resources/filestorage/types/IssuesListRequestStatus.js +0 -31
  4081. package/dist/serialization/resources/filestorage/types/LinkedAccountsListRequestCategory.d.ts +0 -10
  4082. package/dist/serialization/resources/filestorage/types/LinkedAccountsListRequestCategory.js +0 -31
  4083. package/dist/serialization/resources/hris/types/BankInfoListRequestAccountType.d.ts +0 -10
  4084. package/dist/serialization/resources/hris/types/BankInfoListRequestAccountType.js +0 -31
  4085. package/dist/serialization/resources/hris/types/BankInfoListRequestOrderBy.d.ts +0 -10
  4086. package/dist/serialization/resources/hris/types/BankInfoListRequestOrderBy.js +0 -31
  4087. package/dist/serialization/resources/hris/types/EmployeePayrollRunsListRequestExpand.d.ts +0 -10
  4088. package/dist/serialization/resources/hris/types/EmployeePayrollRunsListRequestExpand.js +0 -31
  4089. package/dist/serialization/resources/hris/types/EmployeePayrollRunsRetrieveRequestExpand.d.ts +0 -10
  4090. package/dist/serialization/resources/hris/types/EmployeePayrollRunsRetrieveRequestExpand.js +0 -31
  4091. package/dist/serialization/resources/hris/types/EmployeesListRequestEmploymentStatus.d.ts +0 -10
  4092. package/dist/serialization/resources/hris/types/EmployeesListRequestEmploymentStatus.js +0 -31
  4093. package/dist/serialization/resources/hris/types/EmployeesListRequestExpand.d.ts +0 -10
  4094. package/dist/serialization/resources/hris/types/EmployeesListRequestExpand.js +0 -287
  4095. package/dist/serialization/resources/hris/types/EmployeesListRequestRemoteFields.d.ts +0 -10
  4096. package/dist/serialization/resources/hris/types/EmployeesListRequestRemoteFields.js +0 -47
  4097. package/dist/serialization/resources/hris/types/EmployeesListRequestShowEnumOrigins.d.ts +0 -10
  4098. package/dist/serialization/resources/hris/types/EmployeesListRequestShowEnumOrigins.js +0 -47
  4099. package/dist/serialization/resources/hris/types/EmployeesRetrieveRequestExpand.d.ts +0 -10
  4100. package/dist/serialization/resources/hris/types/EmployeesRetrieveRequestExpand.js +0 -287
  4101. package/dist/serialization/resources/hris/types/EmployeesRetrieveRequestRemoteFields.d.ts +0 -10
  4102. package/dist/serialization/resources/hris/types/EmployeesRetrieveRequestRemoteFields.js +0 -47
  4103. package/dist/serialization/resources/hris/types/EmployeesRetrieveRequestShowEnumOrigins.d.ts +0 -10
  4104. package/dist/serialization/resources/hris/types/EmployeesRetrieveRequestShowEnumOrigins.js +0 -47
  4105. package/dist/serialization/resources/hris/types/EmploymentsListRequestExpand.d.ts +0 -10
  4106. package/dist/serialization/resources/hris/types/EmploymentsListRequestExpand.js +0 -31
  4107. package/dist/serialization/resources/hris/types/EmploymentsListRequestOrderBy.d.ts +0 -10
  4108. package/dist/serialization/resources/hris/types/EmploymentsListRequestOrderBy.js +0 -31
  4109. package/dist/serialization/resources/hris/types/EmploymentsListRequestRemoteFields.d.ts +0 -10
  4110. package/dist/serialization/resources/hris/types/EmploymentsListRequestRemoteFields.js +0 -47
  4111. package/dist/serialization/resources/hris/types/EmploymentsListRequestShowEnumOrigins.d.ts +0 -10
  4112. package/dist/serialization/resources/hris/types/EmploymentsListRequestShowEnumOrigins.js +0 -47
  4113. package/dist/serialization/resources/hris/types/EmploymentsRetrieveRequestExpand.d.ts +0 -10
  4114. package/dist/serialization/resources/hris/types/EmploymentsRetrieveRequestExpand.js +0 -31
  4115. package/dist/serialization/resources/hris/types/EmploymentsRetrieveRequestRemoteFields.d.ts +0 -10
  4116. package/dist/serialization/resources/hris/types/EmploymentsRetrieveRequestRemoteFields.js +0 -47
  4117. package/dist/serialization/resources/hris/types/EmploymentsRetrieveRequestShowEnumOrigins.d.ts +0 -10
  4118. package/dist/serialization/resources/hris/types/EmploymentsRetrieveRequestShowEnumOrigins.js +0 -47
  4119. package/dist/serialization/resources/hris/types/IgnoreCommonModelRequestReason.d.ts +0 -10
  4120. package/dist/serialization/resources/hris/types/IgnoreCommonModelRequestReason.js +0 -43
  4121. package/dist/serialization/resources/hris/types/IssuesListRequestStatus.d.ts +0 -10
  4122. package/dist/serialization/resources/hris/types/IssuesListRequestStatus.js +0 -31
  4123. package/dist/serialization/resources/hris/types/LinkedAccountsListRequestCategory.d.ts +0 -10
  4124. package/dist/serialization/resources/hris/types/LinkedAccountsListRequestCategory.js +0 -31
  4125. package/dist/serialization/resources/hris/types/LocationsListRequestLocationType.d.ts +0 -10
  4126. package/dist/serialization/resources/hris/types/LocationsListRequestLocationType.js +0 -31
  4127. package/dist/serialization/resources/hris/types/PayrollRunsListRequestRemoteFields.d.ts +0 -10
  4128. package/dist/serialization/resources/hris/types/PayrollRunsListRequestRemoteFields.js +0 -31
  4129. package/dist/serialization/resources/hris/types/PayrollRunsListRequestRunType.d.ts +0 -10
  4130. package/dist/serialization/resources/hris/types/PayrollRunsListRequestRunType.js +0 -31
  4131. package/dist/serialization/resources/hris/types/PayrollRunsListRequestShowEnumOrigins.d.ts +0 -10
  4132. package/dist/serialization/resources/hris/types/PayrollRunsListRequestShowEnumOrigins.js +0 -31
  4133. package/dist/serialization/resources/hris/types/PayrollRunsRetrieveRequestRemoteFields.d.ts +0 -10
  4134. package/dist/serialization/resources/hris/types/PayrollRunsRetrieveRequestRemoteFields.js +0 -31
  4135. package/dist/serialization/resources/hris/types/PayrollRunsRetrieveRequestShowEnumOrigins.d.ts +0 -10
  4136. package/dist/serialization/resources/hris/types/PayrollRunsRetrieveRequestShowEnumOrigins.js +0 -31
  4137. package/dist/serialization/resources/hris/types/TimeOffBalancesListRequestPolicyType.d.ts +0 -10
  4138. package/dist/serialization/resources/hris/types/TimeOffBalancesListRequestPolicyType.js +0 -31
  4139. package/dist/serialization/resources/hris/types/TimeOffListRequestExpand.d.ts +0 -10
  4140. package/dist/serialization/resources/hris/types/TimeOffListRequestExpand.js +0 -31
  4141. package/dist/serialization/resources/hris/types/TimeOffListRequestRemoteFields.d.ts +0 -10
  4142. package/dist/serialization/resources/hris/types/TimeOffListRequestRemoteFields.js +0 -39
  4143. package/dist/serialization/resources/hris/types/TimeOffListRequestRequestType.d.ts +0 -10
  4144. package/dist/serialization/resources/hris/types/TimeOffListRequestRequestType.js +0 -31
  4145. package/dist/serialization/resources/hris/types/TimeOffListRequestShowEnumOrigins.d.ts +0 -10
  4146. package/dist/serialization/resources/hris/types/TimeOffListRequestShowEnumOrigins.js +0 -39
  4147. package/dist/serialization/resources/hris/types/TimeOffListRequestStatus.d.ts +0 -10
  4148. package/dist/serialization/resources/hris/types/TimeOffListRequestStatus.js +0 -31
  4149. package/dist/serialization/resources/hris/types/TimeOffRetrieveRequestExpand.d.ts +0 -10
  4150. package/dist/serialization/resources/hris/types/TimeOffRetrieveRequestExpand.js +0 -31
  4151. package/dist/serialization/resources/hris/types/TimeOffRetrieveRequestRemoteFields.d.ts +0 -10
  4152. package/dist/serialization/resources/hris/types/TimeOffRetrieveRequestRemoteFields.js +0 -39
  4153. package/dist/serialization/resources/hris/types/TimeOffRetrieveRequestShowEnumOrigins.d.ts +0 -10
  4154. package/dist/serialization/resources/hris/types/TimeOffRetrieveRequestShowEnumOrigins.js +0 -39
  4155. package/dist/serialization/resources/hris/types/TimesheetEntriesListRequestOrderBy.d.ts +0 -10
  4156. package/dist/serialization/resources/hris/types/TimesheetEntriesListRequestOrderBy.js +0 -31
  4157. package/dist/serialization/resources/ticketing/types/CollectionsListRequestCollectionType.d.ts +0 -10
  4158. package/dist/serialization/resources/ticketing/types/CollectionsListRequestCollectionType.js +0 -31
  4159. package/dist/serialization/resources/ticketing/types/CollectionsUsersListRequestExpand.d.ts +0 -10
  4160. package/dist/serialization/resources/ticketing/types/CollectionsUsersListRequestExpand.js +0 -31
  4161. package/dist/serialization/resources/ticketing/types/CommentsListRequestExpand.d.ts +0 -10
  4162. package/dist/serialization/resources/ticketing/types/CommentsListRequestExpand.js +0 -39
  4163. package/dist/serialization/resources/ticketing/types/CommentsRetrieveRequestExpand.d.ts +0 -10
  4164. package/dist/serialization/resources/ticketing/types/CommentsRetrieveRequestExpand.js +0 -39
  4165. package/dist/serialization/resources/ticketing/types/IssuesListRequestStatus.d.ts +0 -10
  4166. package/dist/serialization/resources/ticketing/types/IssuesListRequestStatus.js +0 -31
  4167. package/dist/serialization/resources/ticketing/types/LinkedAccountsListRequestCategory.d.ts +0 -10
  4168. package/dist/serialization/resources/ticketing/types/LinkedAccountsListRequestCategory.js +0 -31
  4169. package/dist/serialization/resources/ticketing/types/ProjectsUsersListRequestExpand.d.ts +0 -10
  4170. package/dist/serialization/resources/ticketing/types/ProjectsUsersListRequestExpand.js +0 -31
  4171. package/dist/serialization/resources/ticketing/types/TicketsCollaboratorsListRequestExpand.d.ts +0 -10
  4172. package/dist/serialization/resources/ticketing/types/TicketsCollaboratorsListRequestExpand.js +0 -31
  4173. package/dist/serialization/resources/ticketing/types/TicketsListRequestExpand.d.ts +0 -10
  4174. package/dist/serialization/resources/ticketing/types/TicketsListRequestExpand.js +0 -159
  4175. package/dist/serialization/resources/ticketing/types/TicketsListRequestPriority.d.ts +0 -10
  4176. package/dist/serialization/resources/ticketing/types/TicketsListRequestPriority.js +0 -31
  4177. package/dist/serialization/resources/ticketing/types/TicketsListRequestRemoteFields.d.ts +0 -10
  4178. package/dist/serialization/resources/ticketing/types/TicketsListRequestRemoteFields.js +0 -39
  4179. package/dist/serialization/resources/ticketing/types/TicketsListRequestShowEnumOrigins.d.ts +0 -10
  4180. package/dist/serialization/resources/ticketing/types/TicketsListRequestShowEnumOrigins.js +0 -39
  4181. package/dist/serialization/resources/ticketing/types/TicketsListRequestStatus.d.ts +0 -10
  4182. package/dist/serialization/resources/ticketing/types/TicketsListRequestStatus.js +0 -31
  4183. package/dist/serialization/resources/ticketing/types/TicketsRetrieveRequestExpand.d.ts +0 -10
  4184. package/dist/serialization/resources/ticketing/types/TicketsRetrieveRequestExpand.js +0 -159
  4185. package/dist/serialization/resources/ticketing/types/TicketsRetrieveRequestRemoteFields.d.ts +0 -10
  4186. package/dist/serialization/resources/ticketing/types/TicketsRetrieveRequestRemoteFields.js +0 -39
  4187. package/dist/serialization/resources/ticketing/types/TicketsRetrieveRequestShowEnumOrigins.d.ts +0 -10
  4188. package/dist/serialization/resources/ticketing/types/TicketsRetrieveRequestShowEnumOrigins.js +0 -39
  4189. package/dist/serialization/resources/ticketing/types/UsersListRequestExpand.d.ts +0 -10
  4190. package/dist/serialization/resources/ticketing/types/UsersListRequestExpand.js +0 -31
  4191. package/dist/serialization/resources/ticketing/types/UsersRetrieveRequestExpand.d.ts +0 -10
  4192. package/dist/serialization/resources/ticketing/types/UsersRetrieveRequestExpand.js +0 -31
  4193. package/serialization/resources/accounting/types/AccountsListRequestRemoteFields.d.ts +0 -10
  4194. package/serialization/resources/accounting/types/AccountsListRequestRemoteFields.js +0 -31
  4195. package/serialization/resources/accounting/types/AccountsListRequestShowEnumOrigins.d.ts +0 -10
  4196. package/serialization/resources/accounting/types/AccountsListRequestShowEnumOrigins.js +0 -31
  4197. package/serialization/resources/accounting/types/AccountsRetrieveRequestRemoteFields.d.ts +0 -10
  4198. package/serialization/resources/accounting/types/AccountsRetrieveRequestRemoteFields.js +0 -31
  4199. package/serialization/resources/accounting/types/AccountsRetrieveRequestShowEnumOrigins.d.ts +0 -10
  4200. package/serialization/resources/accounting/types/AccountsRetrieveRequestShowEnumOrigins.js +0 -31
  4201. package/serialization/resources/accounting/types/CompanyInfoListRequestExpand.d.ts +0 -10
  4202. package/serialization/resources/accounting/types/CompanyInfoListRequestExpand.js +0 -31
  4203. package/serialization/resources/accounting/types/CompanyInfoRetrieveRequestExpand.d.ts +0 -10
  4204. package/serialization/resources/accounting/types/CompanyInfoRetrieveRequestExpand.js +0 -31
  4205. package/serialization/resources/accounting/types/ContactsListRequestExpand.d.ts +0 -10
  4206. package/serialization/resources/accounting/types/ContactsListRequestExpand.js +0 -39
  4207. package/serialization/resources/accounting/types/ContactsRetrieveRequestExpand.d.ts +0 -10
  4208. package/serialization/resources/accounting/types/ContactsRetrieveRequestExpand.js +0 -39
  4209. package/serialization/resources/accounting/types/CreditNotesListRequestExpand.d.ts +0 -10
  4210. package/serialization/resources/accounting/types/CreditNotesListRequestExpand.js +0 -159
  4211. package/serialization/resources/accounting/types/CreditNotesListRequestRemoteFields.d.ts +0 -10
  4212. package/serialization/resources/accounting/types/CreditNotesListRequestRemoteFields.js +0 -31
  4213. package/serialization/resources/accounting/types/CreditNotesListRequestShowEnumOrigins.d.ts +0 -10
  4214. package/serialization/resources/accounting/types/CreditNotesListRequestShowEnumOrigins.js +0 -31
  4215. package/serialization/resources/accounting/types/CreditNotesRetrieveRequestExpand.d.ts +0 -10
  4216. package/serialization/resources/accounting/types/CreditNotesRetrieveRequestExpand.js +0 -159
  4217. package/serialization/resources/accounting/types/CreditNotesRetrieveRequestRemoteFields.d.ts +0 -10
  4218. package/serialization/resources/accounting/types/CreditNotesRetrieveRequestRemoteFields.js +0 -31
  4219. package/serialization/resources/accounting/types/CreditNotesRetrieveRequestShowEnumOrigins.d.ts +0 -10
  4220. package/serialization/resources/accounting/types/CreditNotesRetrieveRequestShowEnumOrigins.js +0 -31
  4221. package/serialization/resources/accounting/types/ExpensesListRequestExpand.d.ts +0 -10
  4222. package/serialization/resources/accounting/types/ExpensesListRequestExpand.js +0 -63
  4223. package/serialization/resources/accounting/types/ExpensesRetrieveRequestExpand.d.ts +0 -10
  4224. package/serialization/resources/accounting/types/ExpensesRetrieveRequestExpand.js +0 -63
  4225. package/serialization/resources/accounting/types/InvoicesListRequestExpand.d.ts +0 -10
  4226. package/serialization/resources/accounting/types/InvoicesListRequestExpand.js +0 -287
  4227. package/serialization/resources/accounting/types/InvoicesListRequestType.d.ts +0 -10
  4228. package/serialization/resources/accounting/types/InvoicesListRequestType.js +0 -31
  4229. package/serialization/resources/accounting/types/InvoicesRetrieveRequestExpand.d.ts +0 -10
  4230. package/serialization/resources/accounting/types/InvoicesRetrieveRequestExpand.js +0 -287
  4231. package/serialization/resources/accounting/types/IssuesListRequestStatus.d.ts +0 -10
  4232. package/serialization/resources/accounting/types/IssuesListRequestStatus.js +0 -31
  4233. package/serialization/resources/accounting/types/ItemsListRequestExpand.d.ts +0 -10
  4234. package/serialization/resources/accounting/types/ItemsListRequestExpand.js +0 -39
  4235. package/serialization/resources/accounting/types/ItemsRetrieveRequestExpand.d.ts +0 -10
  4236. package/serialization/resources/accounting/types/ItemsRetrieveRequestExpand.js +0 -39
  4237. package/serialization/resources/accounting/types/JournalEntriesListRequestExpand.d.ts +0 -10
  4238. package/serialization/resources/accounting/types/JournalEntriesListRequestExpand.js +0 -95
  4239. package/serialization/resources/accounting/types/JournalEntriesRetrieveRequestExpand.d.ts +0 -10
  4240. package/serialization/resources/accounting/types/JournalEntriesRetrieveRequestExpand.js +0 -95
  4241. package/serialization/resources/accounting/types/LinkedAccountsListRequestCategory.d.ts +0 -10
  4242. package/serialization/resources/accounting/types/LinkedAccountsListRequestCategory.js +0 -31
  4243. package/serialization/resources/accounting/types/PaymentsListRequestExpand.d.ts +0 -10
  4244. package/serialization/resources/accounting/types/PaymentsListRequestExpand.js +0 -95
  4245. package/serialization/resources/accounting/types/PaymentsRetrieveRequestExpand.d.ts +0 -10
  4246. package/serialization/resources/accounting/types/PaymentsRetrieveRequestExpand.js +0 -95
  4247. package/serialization/resources/accounting/types/PurchaseOrdersListRequestExpand.d.ts +0 -10
  4248. package/serialization/resources/accounting/types/PurchaseOrdersListRequestExpand.js +0 -95
  4249. package/serialization/resources/accounting/types/PurchaseOrdersRetrieveRequestExpand.d.ts +0 -10
  4250. package/serialization/resources/accounting/types/PurchaseOrdersRetrieveRequestExpand.js +0 -95
  4251. package/serialization/resources/accounting/types/TransactionsListRequestExpand.d.ts +0 -10
  4252. package/serialization/resources/accounting/types/TransactionsListRequestExpand.js +0 -63
  4253. package/serialization/resources/accounting/types/TransactionsRetrieveRequestExpand.d.ts +0 -10
  4254. package/serialization/resources/accounting/types/TransactionsRetrieveRequestExpand.js +0 -63
  4255. package/serialization/resources/accounting/types/VendorCreditsListRequestExpand.d.ts +0 -10
  4256. package/serialization/resources/accounting/types/VendorCreditsListRequestExpand.js +0 -63
  4257. package/serialization/resources/accounting/types/VendorCreditsRetrieveRequestExpand.d.ts +0 -10
  4258. package/serialization/resources/accounting/types/VendorCreditsRetrieveRequestExpand.js +0 -63
  4259. package/serialization/resources/ats/types/ActivitiesListRequestRemoteFields.d.ts +0 -10
  4260. package/serialization/resources/ats/types/ActivitiesListRequestRemoteFields.js +0 -31
  4261. package/serialization/resources/ats/types/ActivitiesListRequestShowEnumOrigins.d.ts +0 -10
  4262. package/serialization/resources/ats/types/ActivitiesListRequestShowEnumOrigins.js +0 -31
  4263. package/serialization/resources/ats/types/ActivitiesRetrieveRequestRemoteFields.d.ts +0 -10
  4264. package/serialization/resources/ats/types/ActivitiesRetrieveRequestRemoteFields.js +0 -31
  4265. package/serialization/resources/ats/types/ActivitiesRetrieveRequestShowEnumOrigins.d.ts +0 -10
  4266. package/serialization/resources/ats/types/ActivitiesRetrieveRequestShowEnumOrigins.js +0 -31
  4267. package/serialization/resources/ats/types/ApplicationsListRequestExpand.d.ts +0 -10
  4268. package/serialization/resources/ats/types/ApplicationsListRequestExpand.js +0 -63
  4269. package/serialization/resources/ats/types/ApplicationsRetrieveRequestExpand.d.ts +0 -10
  4270. package/serialization/resources/ats/types/ApplicationsRetrieveRequestExpand.js +0 -63
  4271. package/serialization/resources/ats/types/CandidatesListRequestExpand.d.ts +0 -10
  4272. package/serialization/resources/ats/types/CandidatesListRequestExpand.js +0 -31
  4273. package/serialization/resources/ats/types/CandidatesRetrieveRequestExpand.d.ts +0 -10
  4274. package/serialization/resources/ats/types/CandidatesRetrieveRequestExpand.js +0 -31
  4275. package/serialization/resources/ats/types/EeocsListRequestRemoteFields.d.ts +0 -10
  4276. package/serialization/resources/ats/types/EeocsListRequestRemoteFields.js +0 -47
  4277. package/serialization/resources/ats/types/EeocsListRequestShowEnumOrigins.d.ts +0 -10
  4278. package/serialization/resources/ats/types/EeocsListRequestShowEnumOrigins.js +0 -47
  4279. package/serialization/resources/ats/types/EeocsRetrieveRequestRemoteFields.d.ts +0 -10
  4280. package/serialization/resources/ats/types/EeocsRetrieveRequestRemoteFields.js +0 -47
  4281. package/serialization/resources/ats/types/EeocsRetrieveRequestShowEnumOrigins.d.ts +0 -10
  4282. package/serialization/resources/ats/types/EeocsRetrieveRequestShowEnumOrigins.js +0 -47
  4283. package/serialization/resources/ats/types/InterviewsListRequestExpand.d.ts +0 -10
  4284. package/serialization/resources/ats/types/InterviewsListRequestExpand.js +0 -47
  4285. package/serialization/resources/ats/types/InterviewsRetrieveRequestExpand.d.ts +0 -10
  4286. package/serialization/resources/ats/types/InterviewsRetrieveRequestExpand.js +0 -47
  4287. package/serialization/resources/ats/types/IssuesListRequestStatus.d.ts +0 -10
  4288. package/serialization/resources/ats/types/IssuesListRequestStatus.js +0 -31
  4289. package/serialization/resources/ats/types/JobsListRequestExpand.d.ts +0 -10
  4290. package/serialization/resources/ats/types/JobsListRequestExpand.js +0 -47
  4291. package/serialization/resources/ats/types/JobsListRequestStatus.d.ts +0 -10
  4292. package/serialization/resources/ats/types/JobsListRequestStatus.js +0 -31
  4293. package/serialization/resources/ats/types/JobsRetrieveRequestExpand.d.ts +0 -10
  4294. package/serialization/resources/ats/types/JobsRetrieveRequestExpand.js +0 -47
  4295. package/serialization/resources/ats/types/JobsScreeningQuestionsListRequestExpand.d.ts +0 -10
  4296. package/serialization/resources/ats/types/JobsScreeningQuestionsListRequestExpand.js +0 -31
  4297. package/serialization/resources/ats/types/LinkedAccountsListRequestCategory.d.ts +0 -10
  4298. package/serialization/resources/ats/types/LinkedAccountsListRequestCategory.js +0 -31
  4299. package/serialization/resources/ats/types/OffersListRequestExpand.d.ts +0 -10
  4300. package/serialization/resources/ats/types/OffersListRequestExpand.js +0 -31
  4301. package/serialization/resources/ats/types/OffersRetrieveRequestExpand.d.ts +0 -10
  4302. package/serialization/resources/ats/types/OffersRetrieveRequestExpand.js +0 -31
  4303. package/serialization/resources/ats/types/ScorecardsListRequestExpand.d.ts +0 -10
  4304. package/serialization/resources/ats/types/ScorecardsListRequestExpand.js +0 -39
  4305. package/serialization/resources/ats/types/ScorecardsRetrieveRequestExpand.d.ts +0 -10
  4306. package/serialization/resources/ats/types/ScorecardsRetrieveRequestExpand.js +0 -39
  4307. package/serialization/resources/crm/types/ContactsListRequestExpand.d.ts +0 -10
  4308. package/serialization/resources/crm/types/ContactsListRequestExpand.js +0 -31
  4309. package/serialization/resources/crm/types/ContactsRetrieveRequestExpand.d.ts +0 -10
  4310. package/serialization/resources/crm/types/ContactsRetrieveRequestExpand.js +0 -31
  4311. package/serialization/resources/crm/types/EngagementsListRequestExpand.d.ts +0 -10
  4312. package/serialization/resources/crm/types/EngagementsListRequestExpand.js +0 -47
  4313. package/serialization/resources/crm/types/EngagementsRetrieveRequestExpand.d.ts +0 -10
  4314. package/serialization/resources/crm/types/EngagementsRetrieveRequestExpand.js +0 -47
  4315. package/serialization/resources/crm/types/IssuesListRequestStatus.d.ts +0 -10
  4316. package/serialization/resources/crm/types/IssuesListRequestStatus.js +0 -31
  4317. package/serialization/resources/crm/types/LeadsListRequestExpand.d.ts +0 -10
  4318. package/serialization/resources/crm/types/LeadsListRequestExpand.js +0 -39
  4319. package/serialization/resources/crm/types/LeadsRetrieveRequestExpand.d.ts +0 -10
  4320. package/serialization/resources/crm/types/LeadsRetrieveRequestExpand.js +0 -39
  4321. package/serialization/resources/crm/types/LinkedAccountsListRequestCategory.d.ts +0 -10
  4322. package/serialization/resources/crm/types/LinkedAccountsListRequestCategory.js +0 -31
  4323. package/serialization/resources/crm/types/NotesListRequestExpand.d.ts +0 -10
  4324. package/serialization/resources/crm/types/NotesListRequestExpand.js +0 -47
  4325. package/serialization/resources/crm/types/NotesRetrieveRequestExpand.d.ts +0 -10
  4326. package/serialization/resources/crm/types/NotesRetrieveRequestExpand.js +0 -47
  4327. package/serialization/resources/crm/types/OpportunitiesListRequestExpand.d.ts +0 -10
  4328. package/serialization/resources/crm/types/OpportunitiesListRequestExpand.js +0 -39
  4329. package/serialization/resources/crm/types/OpportunitiesListRequestStatus.d.ts +0 -10
  4330. package/serialization/resources/crm/types/OpportunitiesListRequestStatus.js +0 -31
  4331. package/serialization/resources/crm/types/OpportunitiesRetrieveRequestExpand.d.ts +0 -10
  4332. package/serialization/resources/crm/types/OpportunitiesRetrieveRequestExpand.js +0 -39
  4333. package/serialization/resources/crm/types/TasksListRequestExpand.d.ts +0 -10
  4334. package/serialization/resources/crm/types/TasksListRequestExpand.js +0 -39
  4335. package/serialization/resources/crm/types/TasksRetrieveRequestExpand.d.ts +0 -10
  4336. package/serialization/resources/crm/types/TasksRetrieveRequestExpand.js +0 -39
  4337. package/serialization/resources/filestorage/types/FilesListRequestExpand.d.ts +0 -10
  4338. package/serialization/resources/filestorage/types/FilesListRequestExpand.js +0 -39
  4339. package/serialization/resources/filestorage/types/FilesRetrieveRequestExpand.d.ts +0 -10
  4340. package/serialization/resources/filestorage/types/FilesRetrieveRequestExpand.js +0 -39
  4341. package/serialization/resources/filestorage/types/FoldersListRequestExpand.d.ts +0 -10
  4342. package/serialization/resources/filestorage/types/FoldersListRequestExpand.js +0 -39
  4343. package/serialization/resources/filestorage/types/FoldersRetrieveRequestExpand.d.ts +0 -10
  4344. package/serialization/resources/filestorage/types/FoldersRetrieveRequestExpand.js +0 -39
  4345. package/serialization/resources/filestorage/types/IssuesListRequestStatus.d.ts +0 -10
  4346. package/serialization/resources/filestorage/types/IssuesListRequestStatus.js +0 -31
  4347. package/serialization/resources/filestorage/types/LinkedAccountsListRequestCategory.d.ts +0 -10
  4348. package/serialization/resources/filestorage/types/LinkedAccountsListRequestCategory.js +0 -31
  4349. package/serialization/resources/hris/types/BankInfoListRequestAccountType.d.ts +0 -10
  4350. package/serialization/resources/hris/types/BankInfoListRequestAccountType.js +0 -31
  4351. package/serialization/resources/hris/types/BankInfoListRequestOrderBy.d.ts +0 -10
  4352. package/serialization/resources/hris/types/BankInfoListRequestOrderBy.js +0 -31
  4353. package/serialization/resources/hris/types/EmployeePayrollRunsListRequestExpand.d.ts +0 -10
  4354. package/serialization/resources/hris/types/EmployeePayrollRunsListRequestExpand.js +0 -31
  4355. package/serialization/resources/hris/types/EmployeePayrollRunsRetrieveRequestExpand.d.ts +0 -10
  4356. package/serialization/resources/hris/types/EmployeePayrollRunsRetrieveRequestExpand.js +0 -31
  4357. package/serialization/resources/hris/types/EmployeesListRequestEmploymentStatus.d.ts +0 -10
  4358. package/serialization/resources/hris/types/EmployeesListRequestEmploymentStatus.js +0 -31
  4359. package/serialization/resources/hris/types/EmployeesListRequestExpand.d.ts +0 -10
  4360. package/serialization/resources/hris/types/EmployeesListRequestExpand.js +0 -287
  4361. package/serialization/resources/hris/types/EmployeesListRequestRemoteFields.d.ts +0 -10
  4362. package/serialization/resources/hris/types/EmployeesListRequestRemoteFields.js +0 -47
  4363. package/serialization/resources/hris/types/EmployeesListRequestShowEnumOrigins.d.ts +0 -10
  4364. package/serialization/resources/hris/types/EmployeesListRequestShowEnumOrigins.js +0 -47
  4365. package/serialization/resources/hris/types/EmployeesRetrieveRequestExpand.d.ts +0 -10
  4366. package/serialization/resources/hris/types/EmployeesRetrieveRequestExpand.js +0 -287
  4367. package/serialization/resources/hris/types/EmployeesRetrieveRequestRemoteFields.d.ts +0 -10
  4368. package/serialization/resources/hris/types/EmployeesRetrieveRequestRemoteFields.js +0 -47
  4369. package/serialization/resources/hris/types/EmployeesRetrieveRequestShowEnumOrigins.d.ts +0 -10
  4370. package/serialization/resources/hris/types/EmployeesRetrieveRequestShowEnumOrigins.js +0 -47
  4371. package/serialization/resources/hris/types/EmploymentsListRequestExpand.d.ts +0 -10
  4372. package/serialization/resources/hris/types/EmploymentsListRequestExpand.js +0 -31
  4373. package/serialization/resources/hris/types/EmploymentsListRequestOrderBy.d.ts +0 -10
  4374. package/serialization/resources/hris/types/EmploymentsListRequestOrderBy.js +0 -31
  4375. package/serialization/resources/hris/types/EmploymentsListRequestRemoteFields.d.ts +0 -10
  4376. package/serialization/resources/hris/types/EmploymentsListRequestRemoteFields.js +0 -47
  4377. package/serialization/resources/hris/types/EmploymentsListRequestShowEnumOrigins.d.ts +0 -10
  4378. package/serialization/resources/hris/types/EmploymentsListRequestShowEnumOrigins.js +0 -47
  4379. package/serialization/resources/hris/types/EmploymentsRetrieveRequestExpand.d.ts +0 -10
  4380. package/serialization/resources/hris/types/EmploymentsRetrieveRequestExpand.js +0 -31
  4381. package/serialization/resources/hris/types/EmploymentsRetrieveRequestRemoteFields.d.ts +0 -10
  4382. package/serialization/resources/hris/types/EmploymentsRetrieveRequestRemoteFields.js +0 -47
  4383. package/serialization/resources/hris/types/EmploymentsRetrieveRequestShowEnumOrigins.d.ts +0 -10
  4384. package/serialization/resources/hris/types/EmploymentsRetrieveRequestShowEnumOrigins.js +0 -47
  4385. package/serialization/resources/hris/types/IgnoreCommonModelRequestReason.d.ts +0 -10
  4386. package/serialization/resources/hris/types/IgnoreCommonModelRequestReason.js +0 -43
  4387. package/serialization/resources/hris/types/IssuesListRequestStatus.d.ts +0 -10
  4388. package/serialization/resources/hris/types/IssuesListRequestStatus.js +0 -31
  4389. package/serialization/resources/hris/types/LinkedAccountsListRequestCategory.d.ts +0 -10
  4390. package/serialization/resources/hris/types/LinkedAccountsListRequestCategory.js +0 -31
  4391. package/serialization/resources/hris/types/LocationsListRequestLocationType.d.ts +0 -10
  4392. package/serialization/resources/hris/types/LocationsListRequestLocationType.js +0 -31
  4393. package/serialization/resources/hris/types/PayrollRunsListRequestRemoteFields.d.ts +0 -10
  4394. package/serialization/resources/hris/types/PayrollRunsListRequestRemoteFields.js +0 -31
  4395. package/serialization/resources/hris/types/PayrollRunsListRequestRunType.d.ts +0 -10
  4396. package/serialization/resources/hris/types/PayrollRunsListRequestRunType.js +0 -31
  4397. package/serialization/resources/hris/types/PayrollRunsListRequestShowEnumOrigins.d.ts +0 -10
  4398. package/serialization/resources/hris/types/PayrollRunsListRequestShowEnumOrigins.js +0 -31
  4399. package/serialization/resources/hris/types/PayrollRunsRetrieveRequestRemoteFields.d.ts +0 -10
  4400. package/serialization/resources/hris/types/PayrollRunsRetrieveRequestRemoteFields.js +0 -31
  4401. package/serialization/resources/hris/types/PayrollRunsRetrieveRequestShowEnumOrigins.d.ts +0 -10
  4402. package/serialization/resources/hris/types/PayrollRunsRetrieveRequestShowEnumOrigins.js +0 -31
  4403. package/serialization/resources/hris/types/TimeOffBalancesListRequestPolicyType.d.ts +0 -10
  4404. package/serialization/resources/hris/types/TimeOffBalancesListRequestPolicyType.js +0 -31
  4405. package/serialization/resources/hris/types/TimeOffListRequestExpand.d.ts +0 -10
  4406. package/serialization/resources/hris/types/TimeOffListRequestExpand.js +0 -31
  4407. package/serialization/resources/hris/types/TimeOffListRequestRemoteFields.d.ts +0 -10
  4408. package/serialization/resources/hris/types/TimeOffListRequestRemoteFields.js +0 -39
  4409. package/serialization/resources/hris/types/TimeOffListRequestRequestType.d.ts +0 -10
  4410. package/serialization/resources/hris/types/TimeOffListRequestRequestType.js +0 -31
  4411. package/serialization/resources/hris/types/TimeOffListRequestShowEnumOrigins.d.ts +0 -10
  4412. package/serialization/resources/hris/types/TimeOffListRequestShowEnumOrigins.js +0 -39
  4413. package/serialization/resources/hris/types/TimeOffListRequestStatus.d.ts +0 -10
  4414. package/serialization/resources/hris/types/TimeOffListRequestStatus.js +0 -31
  4415. package/serialization/resources/hris/types/TimeOffRetrieveRequestExpand.d.ts +0 -10
  4416. package/serialization/resources/hris/types/TimeOffRetrieveRequestExpand.js +0 -31
  4417. package/serialization/resources/hris/types/TimeOffRetrieveRequestRemoteFields.d.ts +0 -10
  4418. package/serialization/resources/hris/types/TimeOffRetrieveRequestRemoteFields.js +0 -39
  4419. package/serialization/resources/hris/types/TimeOffRetrieveRequestShowEnumOrigins.d.ts +0 -10
  4420. package/serialization/resources/hris/types/TimeOffRetrieveRequestShowEnumOrigins.js +0 -39
  4421. package/serialization/resources/hris/types/TimesheetEntriesListRequestOrderBy.d.ts +0 -10
  4422. package/serialization/resources/hris/types/TimesheetEntriesListRequestOrderBy.js +0 -31
  4423. package/serialization/resources/ticketing/types/CollectionsListRequestCollectionType.d.ts +0 -10
  4424. package/serialization/resources/ticketing/types/CollectionsListRequestCollectionType.js +0 -31
  4425. package/serialization/resources/ticketing/types/CollectionsUsersListRequestExpand.d.ts +0 -10
  4426. package/serialization/resources/ticketing/types/CollectionsUsersListRequestExpand.js +0 -31
  4427. package/serialization/resources/ticketing/types/CommentsListRequestExpand.d.ts +0 -10
  4428. package/serialization/resources/ticketing/types/CommentsListRequestExpand.js +0 -39
  4429. package/serialization/resources/ticketing/types/CommentsRetrieveRequestExpand.d.ts +0 -10
  4430. package/serialization/resources/ticketing/types/CommentsRetrieveRequestExpand.js +0 -39
  4431. package/serialization/resources/ticketing/types/IssuesListRequestStatus.d.ts +0 -10
  4432. package/serialization/resources/ticketing/types/IssuesListRequestStatus.js +0 -31
  4433. package/serialization/resources/ticketing/types/LinkedAccountsListRequestCategory.d.ts +0 -10
  4434. package/serialization/resources/ticketing/types/LinkedAccountsListRequestCategory.js +0 -31
  4435. package/serialization/resources/ticketing/types/ProjectsUsersListRequestExpand.d.ts +0 -10
  4436. package/serialization/resources/ticketing/types/ProjectsUsersListRequestExpand.js +0 -31
  4437. package/serialization/resources/ticketing/types/TicketsCollaboratorsListRequestExpand.d.ts +0 -10
  4438. package/serialization/resources/ticketing/types/TicketsCollaboratorsListRequestExpand.js +0 -31
  4439. package/serialization/resources/ticketing/types/TicketsListRequestExpand.d.ts +0 -10
  4440. package/serialization/resources/ticketing/types/TicketsListRequestExpand.js +0 -159
  4441. package/serialization/resources/ticketing/types/TicketsListRequestPriority.d.ts +0 -10
  4442. package/serialization/resources/ticketing/types/TicketsListRequestPriority.js +0 -31
  4443. package/serialization/resources/ticketing/types/TicketsListRequestRemoteFields.d.ts +0 -10
  4444. package/serialization/resources/ticketing/types/TicketsListRequestRemoteFields.js +0 -39
  4445. package/serialization/resources/ticketing/types/TicketsListRequestShowEnumOrigins.d.ts +0 -10
  4446. package/serialization/resources/ticketing/types/TicketsListRequestShowEnumOrigins.js +0 -39
  4447. package/serialization/resources/ticketing/types/TicketsListRequestStatus.d.ts +0 -10
  4448. package/serialization/resources/ticketing/types/TicketsListRequestStatus.js +0 -31
  4449. package/serialization/resources/ticketing/types/TicketsRetrieveRequestExpand.d.ts +0 -10
  4450. package/serialization/resources/ticketing/types/TicketsRetrieveRequestExpand.js +0 -159
  4451. package/serialization/resources/ticketing/types/TicketsRetrieveRequestRemoteFields.d.ts +0 -10
  4452. package/serialization/resources/ticketing/types/TicketsRetrieveRequestRemoteFields.js +0 -39
  4453. package/serialization/resources/ticketing/types/TicketsRetrieveRequestShowEnumOrigins.d.ts +0 -10
  4454. package/serialization/resources/ticketing/types/TicketsRetrieveRequestShowEnumOrigins.js +0 -39
  4455. package/serialization/resources/ticketing/types/UsersListRequestExpand.d.ts +0 -10
  4456. package/serialization/resources/ticketing/types/UsersListRequestExpand.js +0 -31
  4457. package/serialization/resources/ticketing/types/UsersRetrieveRequestExpand.d.ts +0 -10
  4458. package/serialization/resources/ticketing/types/UsersRetrieveRequestExpand.js +0 -31
  4459. /package/api/resources/accounting/{types → resources/accounts/types}/AccountsListRequestRemoteFields.d.ts +0 -0
  4460. /package/api/resources/accounting/{types → resources/accounts/types}/AccountsListRequestRemoteFields.js +0 -0
  4461. /package/api/resources/accounting/{types → resources/accounts/types}/AccountsListRequestShowEnumOrigins.d.ts +0 -0
  4462. /package/api/resources/accounting/{types → resources/accounts/types}/AccountsListRequestShowEnumOrigins.js +0 -0
  4463. /package/api/resources/accounting/{types → resources/accounts/types}/AccountsRetrieveRequestRemoteFields.d.ts +0 -0
  4464. /package/api/resources/accounting/{types → resources/accounts/types}/AccountsRetrieveRequestRemoteFields.js +0 -0
  4465. /package/api/resources/accounting/{types → resources/accounts/types}/AccountsRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4466. /package/api/resources/accounting/{types → resources/accounts/types}/AccountsRetrieveRequestShowEnumOrigins.js +0 -0
  4467. /package/api/resources/accounting/{types → resources/companyInfo/types}/CompanyInfoListRequestExpand.d.ts +0 -0
  4468. /package/api/resources/accounting/{types → resources/companyInfo/types}/CompanyInfoListRequestExpand.js +0 -0
  4469. /package/api/resources/accounting/{types → resources/companyInfo/types}/CompanyInfoRetrieveRequestExpand.d.ts +0 -0
  4470. /package/api/resources/accounting/{types → resources/companyInfo/types}/CompanyInfoRetrieveRequestExpand.js +0 -0
  4471. /package/api/resources/accounting/{types → resources/contacts/types}/ContactsListRequestExpand.d.ts +0 -0
  4472. /package/api/resources/accounting/{types → resources/contacts/types}/ContactsListRequestExpand.js +0 -0
  4473. /package/api/resources/accounting/{types → resources/contacts/types}/ContactsRetrieveRequestExpand.d.ts +0 -0
  4474. /package/api/resources/accounting/{types → resources/contacts/types}/ContactsRetrieveRequestExpand.js +0 -0
  4475. /package/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesListRequestExpand.d.ts +0 -0
  4476. /package/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesListRequestExpand.js +0 -0
  4477. /package/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesListRequestRemoteFields.d.ts +0 -0
  4478. /package/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesListRequestRemoteFields.js +0 -0
  4479. /package/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesListRequestShowEnumOrigins.d.ts +0 -0
  4480. /package/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesListRequestShowEnumOrigins.js +0 -0
  4481. /package/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesRetrieveRequestExpand.d.ts +0 -0
  4482. /package/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesRetrieveRequestExpand.js +0 -0
  4483. /package/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesRetrieveRequestRemoteFields.d.ts +0 -0
  4484. /package/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesRetrieveRequestRemoteFields.js +0 -0
  4485. /package/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4486. /package/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesRetrieveRequestShowEnumOrigins.js +0 -0
  4487. /package/api/resources/accounting/{types → resources/expenses/types}/ExpensesListRequestExpand.d.ts +0 -0
  4488. /package/api/resources/accounting/{types → resources/expenses/types}/ExpensesListRequestExpand.js +0 -0
  4489. /package/api/resources/accounting/{types → resources/expenses/types}/ExpensesRetrieveRequestExpand.d.ts +0 -0
  4490. /package/api/resources/accounting/{types → resources/expenses/types}/ExpensesRetrieveRequestExpand.js +0 -0
  4491. /package/api/resources/accounting/{types → resources/invoices/types}/InvoicesListRequestExpand.d.ts +0 -0
  4492. /package/api/resources/accounting/{types → resources/invoices/types}/InvoicesListRequestExpand.js +0 -0
  4493. /package/api/resources/accounting/{types → resources/invoices/types}/InvoicesListRequestType.d.ts +0 -0
  4494. /package/api/resources/accounting/{types → resources/invoices/types}/InvoicesListRequestType.js +0 -0
  4495. /package/api/resources/accounting/{types → resources/invoices/types}/InvoicesRetrieveRequestExpand.d.ts +0 -0
  4496. /package/api/resources/accounting/{types → resources/invoices/types}/InvoicesRetrieveRequestExpand.js +0 -0
  4497. /package/api/resources/accounting/{types → resources/issues/types}/IssuesListRequestStatus.d.ts +0 -0
  4498. /package/api/resources/accounting/{types → resources/issues/types}/IssuesListRequestStatus.js +0 -0
  4499. /package/api/resources/accounting/{types → resources/items/types}/ItemsListRequestExpand.d.ts +0 -0
  4500. /package/api/resources/accounting/{types → resources/items/types}/ItemsListRequestExpand.js +0 -0
  4501. /package/api/resources/accounting/{types → resources/items/types}/ItemsRetrieveRequestExpand.d.ts +0 -0
  4502. /package/api/resources/accounting/{types → resources/items/types}/ItemsRetrieveRequestExpand.js +0 -0
  4503. /package/api/resources/accounting/{types → resources/journalEntries/types}/JournalEntriesListRequestExpand.d.ts +0 -0
  4504. /package/api/resources/accounting/{types → resources/journalEntries/types}/JournalEntriesListRequestExpand.js +0 -0
  4505. /package/api/resources/accounting/{types → resources/journalEntries/types}/JournalEntriesRetrieveRequestExpand.d.ts +0 -0
  4506. /package/api/resources/accounting/{types → resources/journalEntries/types}/JournalEntriesRetrieveRequestExpand.js +0 -0
  4507. /package/api/resources/accounting/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.d.ts +0 -0
  4508. /package/api/resources/accounting/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.js +0 -0
  4509. /package/api/resources/accounting/{types → resources/payments/types}/PaymentsListRequestExpand.d.ts +0 -0
  4510. /package/api/resources/accounting/{types → resources/payments/types}/PaymentsListRequestExpand.js +0 -0
  4511. /package/api/resources/accounting/{types → resources/payments/types}/PaymentsRetrieveRequestExpand.d.ts +0 -0
  4512. /package/api/resources/accounting/{types → resources/payments/types}/PaymentsRetrieveRequestExpand.js +0 -0
  4513. /package/api/resources/accounting/{types → resources/purchaseOrders/types}/PurchaseOrdersListRequestExpand.d.ts +0 -0
  4514. /package/api/resources/accounting/{types → resources/purchaseOrders/types}/PurchaseOrdersListRequestExpand.js +0 -0
  4515. /package/api/resources/accounting/{types → resources/purchaseOrders/types}/PurchaseOrdersRetrieveRequestExpand.d.ts +0 -0
  4516. /package/api/resources/accounting/{types → resources/purchaseOrders/types}/PurchaseOrdersRetrieveRequestExpand.js +0 -0
  4517. /package/api/resources/accounting/{types → resources/transactions/types}/TransactionsListRequestExpand.d.ts +0 -0
  4518. /package/api/resources/accounting/{types → resources/transactions/types}/TransactionsListRequestExpand.js +0 -0
  4519. /package/api/resources/accounting/{types → resources/transactions/types}/TransactionsRetrieveRequestExpand.d.ts +0 -0
  4520. /package/api/resources/accounting/{types → resources/transactions/types}/TransactionsRetrieveRequestExpand.js +0 -0
  4521. /package/api/resources/accounting/{types → resources/vendorCredits/types}/VendorCreditsListRequestExpand.d.ts +0 -0
  4522. /package/api/resources/accounting/{types → resources/vendorCredits/types}/VendorCreditsListRequestExpand.js +0 -0
  4523. /package/api/resources/accounting/{types → resources/vendorCredits/types}/VendorCreditsRetrieveRequestExpand.d.ts +0 -0
  4524. /package/api/resources/accounting/{types → resources/vendorCredits/types}/VendorCreditsRetrieveRequestExpand.js +0 -0
  4525. /package/api/resources/ats/{types → resources/activities/types}/ActivitiesListRequestRemoteFields.d.ts +0 -0
  4526. /package/api/resources/ats/{types → resources/activities/types}/ActivitiesListRequestRemoteFields.js +0 -0
  4527. /package/api/resources/ats/{types → resources/activities/types}/ActivitiesListRequestShowEnumOrigins.d.ts +0 -0
  4528. /package/api/resources/ats/{types → resources/activities/types}/ActivitiesListRequestShowEnumOrigins.js +0 -0
  4529. /package/api/resources/ats/{types → resources/activities/types}/ActivitiesRetrieveRequestRemoteFields.d.ts +0 -0
  4530. /package/api/resources/ats/{types → resources/activities/types}/ActivitiesRetrieveRequestRemoteFields.js +0 -0
  4531. /package/api/resources/ats/{types → resources/activities/types}/ActivitiesRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4532. /package/api/resources/ats/{types → resources/activities/types}/ActivitiesRetrieveRequestShowEnumOrigins.js +0 -0
  4533. /package/api/resources/ats/{types → resources/applications/types}/ApplicationsListRequestExpand.d.ts +0 -0
  4534. /package/api/resources/ats/{types → resources/applications/types}/ApplicationsListRequestExpand.js +0 -0
  4535. /package/api/resources/ats/{types → resources/applications/types}/ApplicationsRetrieveRequestExpand.d.ts +0 -0
  4536. /package/api/resources/ats/{types → resources/applications/types}/ApplicationsRetrieveRequestExpand.js +0 -0
  4537. /package/api/resources/ats/{types → resources/candidates/types}/CandidatesListRequestExpand.d.ts +0 -0
  4538. /package/api/resources/ats/{types → resources/candidates/types}/CandidatesListRequestExpand.js +0 -0
  4539. /package/api/resources/ats/{types → resources/candidates/types}/CandidatesRetrieveRequestExpand.d.ts +0 -0
  4540. /package/api/resources/ats/{types → resources/candidates/types}/CandidatesRetrieveRequestExpand.js +0 -0
  4541. /package/api/resources/ats/{types → resources/eeocs/types}/EeocsListRequestRemoteFields.d.ts +0 -0
  4542. /package/api/resources/ats/{types → resources/eeocs/types}/EeocsListRequestRemoteFields.js +0 -0
  4543. /package/api/resources/ats/{types → resources/eeocs/types}/EeocsListRequestShowEnumOrigins.d.ts +0 -0
  4544. /package/api/resources/ats/{types → resources/eeocs/types}/EeocsListRequestShowEnumOrigins.js +0 -0
  4545. /package/api/resources/ats/{types → resources/eeocs/types}/EeocsRetrieveRequestRemoteFields.d.ts +0 -0
  4546. /package/api/resources/ats/{types → resources/eeocs/types}/EeocsRetrieveRequestRemoteFields.js +0 -0
  4547. /package/api/resources/ats/{types → resources/eeocs/types}/EeocsRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4548. /package/api/resources/ats/{types → resources/eeocs/types}/EeocsRetrieveRequestShowEnumOrigins.js +0 -0
  4549. /package/api/resources/ats/{types → resources/interviews/types}/InterviewsListRequestExpand.d.ts +0 -0
  4550. /package/api/resources/ats/{types → resources/interviews/types}/InterviewsListRequestExpand.js +0 -0
  4551. /package/api/resources/ats/{types → resources/interviews/types}/InterviewsRetrieveRequestExpand.d.ts +0 -0
  4552. /package/api/resources/ats/{types → resources/interviews/types}/InterviewsRetrieveRequestExpand.js +0 -0
  4553. /package/api/resources/ats/{types → resources/issues/types}/IssuesListRequestStatus.d.ts +0 -0
  4554. /package/api/resources/ats/{types → resources/issues/types}/IssuesListRequestStatus.js +0 -0
  4555. /package/api/resources/ats/{types → resources/jobs/types}/JobsListRequestExpand.d.ts +0 -0
  4556. /package/api/resources/ats/{types → resources/jobs/types}/JobsListRequestExpand.js +0 -0
  4557. /package/api/resources/ats/{types → resources/jobs/types}/JobsListRequestStatus.d.ts +0 -0
  4558. /package/api/resources/ats/{types → resources/jobs/types}/JobsListRequestStatus.js +0 -0
  4559. /package/api/resources/ats/{types → resources/jobs/types}/JobsRetrieveRequestExpand.d.ts +0 -0
  4560. /package/api/resources/ats/{types → resources/jobs/types}/JobsRetrieveRequestExpand.js +0 -0
  4561. /package/api/resources/ats/{types → resources/jobs/types}/JobsScreeningQuestionsListRequestExpand.d.ts +0 -0
  4562. /package/api/resources/ats/{types → resources/jobs/types}/JobsScreeningQuestionsListRequestExpand.js +0 -0
  4563. /package/api/resources/ats/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.d.ts +0 -0
  4564. /package/api/resources/ats/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.js +0 -0
  4565. /package/api/resources/ats/{types → resources/offers/types}/OffersListRequestExpand.d.ts +0 -0
  4566. /package/api/resources/ats/{types → resources/offers/types}/OffersListRequestExpand.js +0 -0
  4567. /package/api/resources/ats/{types → resources/offers/types}/OffersRetrieveRequestExpand.d.ts +0 -0
  4568. /package/api/resources/ats/{types → resources/offers/types}/OffersRetrieveRequestExpand.js +0 -0
  4569. /package/api/resources/ats/{types → resources/scorecards/types}/ScorecardsListRequestExpand.d.ts +0 -0
  4570. /package/api/resources/ats/{types → resources/scorecards/types}/ScorecardsListRequestExpand.js +0 -0
  4571. /package/api/resources/ats/{types → resources/scorecards/types}/ScorecardsRetrieveRequestExpand.d.ts +0 -0
  4572. /package/api/resources/ats/{types → resources/scorecards/types}/ScorecardsRetrieveRequestExpand.js +0 -0
  4573. /package/api/resources/crm/{types → resources/contacts/types}/ContactsListRequestExpand.d.ts +0 -0
  4574. /package/api/resources/crm/{types → resources/contacts/types}/ContactsListRequestExpand.js +0 -0
  4575. /package/api/resources/crm/{types → resources/contacts/types}/ContactsRetrieveRequestExpand.d.ts +0 -0
  4576. /package/api/resources/crm/{types → resources/contacts/types}/ContactsRetrieveRequestExpand.js +0 -0
  4577. /package/api/resources/crm/{types → resources/engagements/types}/EngagementsListRequestExpand.d.ts +0 -0
  4578. /package/api/resources/crm/{types → resources/engagements/types}/EngagementsListRequestExpand.js +0 -0
  4579. /package/api/resources/crm/{types → resources/engagements/types}/EngagementsRetrieveRequestExpand.d.ts +0 -0
  4580. /package/api/resources/crm/{types → resources/engagements/types}/EngagementsRetrieveRequestExpand.js +0 -0
  4581. /package/api/resources/crm/{types → resources/issues/types}/IssuesListRequestStatus.d.ts +0 -0
  4582. /package/api/resources/crm/{types → resources/issues/types}/IssuesListRequestStatus.js +0 -0
  4583. /package/api/resources/crm/{types → resources/leads/types}/LeadsListRequestExpand.d.ts +0 -0
  4584. /package/api/resources/crm/{types → resources/leads/types}/LeadsListRequestExpand.js +0 -0
  4585. /package/api/resources/crm/{types → resources/leads/types}/LeadsRetrieveRequestExpand.d.ts +0 -0
  4586. /package/api/resources/crm/{types → resources/leads/types}/LeadsRetrieveRequestExpand.js +0 -0
  4587. /package/api/resources/crm/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.d.ts +0 -0
  4588. /package/api/resources/crm/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.js +0 -0
  4589. /package/api/resources/crm/{types → resources/notes/types}/NotesListRequestExpand.d.ts +0 -0
  4590. /package/api/resources/crm/{types → resources/notes/types}/NotesListRequestExpand.js +0 -0
  4591. /package/api/resources/crm/{types → resources/notes/types}/NotesRetrieveRequestExpand.d.ts +0 -0
  4592. /package/api/resources/crm/{types → resources/notes/types}/NotesRetrieveRequestExpand.js +0 -0
  4593. /package/api/resources/crm/{types → resources/opportunities/types}/OpportunitiesListRequestExpand.d.ts +0 -0
  4594. /package/api/resources/crm/{types → resources/opportunities/types}/OpportunitiesListRequestExpand.js +0 -0
  4595. /package/api/resources/crm/{types → resources/opportunities/types}/OpportunitiesListRequestStatus.d.ts +0 -0
  4596. /package/api/resources/crm/{types → resources/opportunities/types}/OpportunitiesListRequestStatus.js +0 -0
  4597. /package/api/resources/crm/{types → resources/opportunities/types}/OpportunitiesRetrieveRequestExpand.d.ts +0 -0
  4598. /package/api/resources/crm/{types → resources/opportunities/types}/OpportunitiesRetrieveRequestExpand.js +0 -0
  4599. /package/api/resources/crm/{types → resources/tasks/types}/TasksListRequestExpand.d.ts +0 -0
  4600. /package/api/resources/crm/{types → resources/tasks/types}/TasksListRequestExpand.js +0 -0
  4601. /package/api/resources/crm/{types → resources/tasks/types}/TasksRetrieveRequestExpand.d.ts +0 -0
  4602. /package/api/resources/crm/{types → resources/tasks/types}/TasksRetrieveRequestExpand.js +0 -0
  4603. /package/api/resources/filestorage/{types → resources/files/types}/FilesListRequestExpand.d.ts +0 -0
  4604. /package/api/resources/filestorage/{types → resources/files/types}/FilesListRequestExpand.js +0 -0
  4605. /package/api/resources/filestorage/{types → resources/files/types}/FilesRetrieveRequestExpand.d.ts +0 -0
  4606. /package/api/resources/filestorage/{types → resources/files/types}/FilesRetrieveRequestExpand.js +0 -0
  4607. /package/api/resources/filestorage/{types → resources/folders/types}/FoldersListRequestExpand.d.ts +0 -0
  4608. /package/api/resources/filestorage/{types → resources/folders/types}/FoldersListRequestExpand.js +0 -0
  4609. /package/api/resources/filestorage/{types → resources/folders/types}/FoldersRetrieveRequestExpand.d.ts +0 -0
  4610. /package/api/resources/filestorage/{types → resources/folders/types}/FoldersRetrieveRequestExpand.js +0 -0
  4611. /package/api/resources/filestorage/{types → resources/issues/types}/IssuesListRequestStatus.d.ts +0 -0
  4612. /package/api/resources/filestorage/{types → resources/issues/types}/IssuesListRequestStatus.js +0 -0
  4613. /package/api/resources/filestorage/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.d.ts +0 -0
  4614. /package/api/resources/filestorage/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.js +0 -0
  4615. /package/api/resources/hris/{types → resources/bankInfo/types}/BankInfoListRequestAccountType.d.ts +0 -0
  4616. /package/api/resources/hris/{types → resources/bankInfo/types}/BankInfoListRequestAccountType.js +0 -0
  4617. /package/api/resources/hris/{types → resources/bankInfo/types}/BankInfoListRequestOrderBy.d.ts +0 -0
  4618. /package/api/resources/hris/{types → resources/bankInfo/types}/BankInfoListRequestOrderBy.js +0 -0
  4619. /package/api/resources/hris/{types → resources/employeePayrollRuns/types}/EmployeePayrollRunsListRequestExpand.d.ts +0 -0
  4620. /package/api/resources/hris/{types → resources/employeePayrollRuns/types}/EmployeePayrollRunsListRequestExpand.js +0 -0
  4621. /package/api/resources/hris/{types → resources/employeePayrollRuns/types}/EmployeePayrollRunsRetrieveRequestExpand.d.ts +0 -0
  4622. /package/api/resources/hris/{types → resources/employeePayrollRuns/types}/EmployeePayrollRunsRetrieveRequestExpand.js +0 -0
  4623. /package/api/resources/hris/{types → resources/employees/types}/EmployeesListRequestEmploymentStatus.d.ts +0 -0
  4624. /package/api/resources/hris/{types → resources/employees/types}/EmployeesListRequestEmploymentStatus.js +0 -0
  4625. /package/api/resources/hris/{types → resources/employees/types}/EmployeesListRequestExpand.d.ts +0 -0
  4626. /package/api/resources/hris/{types → resources/employees/types}/EmployeesListRequestExpand.js +0 -0
  4627. /package/api/resources/hris/{types → resources/employees/types}/EmployeesListRequestRemoteFields.d.ts +0 -0
  4628. /package/api/resources/hris/{types → resources/employees/types}/EmployeesListRequestRemoteFields.js +0 -0
  4629. /package/api/resources/hris/{types → resources/employees/types}/EmployeesListRequestShowEnumOrigins.d.ts +0 -0
  4630. /package/api/resources/hris/{types → resources/employees/types}/EmployeesListRequestShowEnumOrigins.js +0 -0
  4631. /package/api/resources/hris/{types → resources/employees/types}/EmployeesRetrieveRequestExpand.d.ts +0 -0
  4632. /package/api/resources/hris/{types → resources/employees/types}/EmployeesRetrieveRequestExpand.js +0 -0
  4633. /package/api/resources/hris/{types → resources/employees/types}/EmployeesRetrieveRequestRemoteFields.d.ts +0 -0
  4634. /package/api/resources/hris/{types → resources/employees/types}/EmployeesRetrieveRequestRemoteFields.js +0 -0
  4635. /package/api/resources/hris/{types → resources/employees/types}/EmployeesRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4636. /package/api/resources/hris/{types → resources/employees/types}/EmployeesRetrieveRequestShowEnumOrigins.js +0 -0
  4637. /package/api/resources/hris/{types → resources/employees/types}/IgnoreCommonModelRequestReason.js +0 -0
  4638. /package/api/resources/hris/{types → resources/employments/types}/EmploymentsListRequestExpand.d.ts +0 -0
  4639. /package/api/resources/hris/{types → resources/employments/types}/EmploymentsListRequestExpand.js +0 -0
  4640. /package/api/resources/hris/{types → resources/employments/types}/EmploymentsListRequestOrderBy.d.ts +0 -0
  4641. /package/api/resources/hris/{types → resources/employments/types}/EmploymentsListRequestOrderBy.js +0 -0
  4642. /package/api/resources/hris/{types → resources/employments/types}/EmploymentsListRequestRemoteFields.d.ts +0 -0
  4643. /package/api/resources/hris/{types → resources/employments/types}/EmploymentsListRequestRemoteFields.js +0 -0
  4644. /package/api/resources/hris/{types → resources/employments/types}/EmploymentsListRequestShowEnumOrigins.d.ts +0 -0
  4645. /package/api/resources/hris/{types → resources/employments/types}/EmploymentsListRequestShowEnumOrigins.js +0 -0
  4646. /package/api/resources/hris/{types → resources/employments/types}/EmploymentsRetrieveRequestExpand.d.ts +0 -0
  4647. /package/api/resources/hris/{types → resources/employments/types}/EmploymentsRetrieveRequestExpand.js +0 -0
  4648. /package/api/resources/hris/{types → resources/employments/types}/EmploymentsRetrieveRequestRemoteFields.d.ts +0 -0
  4649. /package/api/resources/hris/{types → resources/employments/types}/EmploymentsRetrieveRequestRemoteFields.js +0 -0
  4650. /package/api/resources/hris/{types → resources/employments/types}/EmploymentsRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4651. /package/api/resources/hris/{types → resources/employments/types}/EmploymentsRetrieveRequestShowEnumOrigins.js +0 -0
  4652. /package/api/resources/hris/{types → resources/issues/types}/IssuesListRequestStatus.d.ts +0 -0
  4653. /package/api/resources/hris/{types → resources/issues/types}/IssuesListRequestStatus.js +0 -0
  4654. /package/api/resources/hris/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.d.ts +0 -0
  4655. /package/api/resources/hris/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.js +0 -0
  4656. /package/api/resources/hris/{types → resources/locations/types}/LocationsListRequestLocationType.d.ts +0 -0
  4657. /package/api/resources/hris/{types → resources/locations/types}/LocationsListRequestLocationType.js +0 -0
  4658. /package/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsListRequestRemoteFields.d.ts +0 -0
  4659. /package/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsListRequestRemoteFields.js +0 -0
  4660. /package/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsListRequestRunType.d.ts +0 -0
  4661. /package/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsListRequestRunType.js +0 -0
  4662. /package/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsListRequestShowEnumOrigins.d.ts +0 -0
  4663. /package/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsListRequestShowEnumOrigins.js +0 -0
  4664. /package/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsRetrieveRequestRemoteFields.d.ts +0 -0
  4665. /package/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsRetrieveRequestRemoteFields.js +0 -0
  4666. /package/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4667. /package/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsRetrieveRequestShowEnumOrigins.js +0 -0
  4668. /package/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestExpand.d.ts +0 -0
  4669. /package/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestExpand.js +0 -0
  4670. /package/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestRemoteFields.d.ts +0 -0
  4671. /package/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestRemoteFields.js +0 -0
  4672. /package/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestRequestType.d.ts +0 -0
  4673. /package/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestRequestType.js +0 -0
  4674. /package/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestShowEnumOrigins.d.ts +0 -0
  4675. /package/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestShowEnumOrigins.js +0 -0
  4676. /package/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestStatus.d.ts +0 -0
  4677. /package/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestStatus.js +0 -0
  4678. /package/api/resources/hris/{types → resources/timeOff/types}/TimeOffRetrieveRequestExpand.d.ts +0 -0
  4679. /package/api/resources/hris/{types → resources/timeOff/types}/TimeOffRetrieveRequestExpand.js +0 -0
  4680. /package/api/resources/hris/{types → resources/timeOff/types}/TimeOffRetrieveRequestRemoteFields.d.ts +0 -0
  4681. /package/api/resources/hris/{types → resources/timeOff/types}/TimeOffRetrieveRequestRemoteFields.js +0 -0
  4682. /package/api/resources/hris/{types → resources/timeOff/types}/TimeOffRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4683. /package/api/resources/hris/{types → resources/timeOff/types}/TimeOffRetrieveRequestShowEnumOrigins.js +0 -0
  4684. /package/api/resources/hris/{types → resources/timeOffBalances/types}/TimeOffBalancesListRequestPolicyType.d.ts +0 -0
  4685. /package/api/resources/hris/{types → resources/timeOffBalances/types}/TimeOffBalancesListRequestPolicyType.js +0 -0
  4686. /package/api/resources/hris/{types → resources/timesheetEntries/types}/TimesheetEntriesListRequestOrderBy.d.ts +0 -0
  4687. /package/api/resources/hris/{types → resources/timesheetEntries/types}/TimesheetEntriesListRequestOrderBy.js +0 -0
  4688. /package/api/resources/ticketing/{types → resources/collections/types}/CollectionsListRequestCollectionType.d.ts +0 -0
  4689. /package/api/resources/ticketing/{types → resources/collections/types}/CollectionsListRequestCollectionType.js +0 -0
  4690. /package/api/resources/ticketing/{types → resources/collections/types}/CollectionsUsersListRequestExpand.d.ts +0 -0
  4691. /package/api/resources/ticketing/{types → resources/collections/types}/CollectionsUsersListRequestExpand.js +0 -0
  4692. /package/api/resources/ticketing/{types → resources/comments/types}/CommentsListRequestExpand.d.ts +0 -0
  4693. /package/api/resources/ticketing/{types → resources/comments/types}/CommentsListRequestExpand.js +0 -0
  4694. /package/api/resources/ticketing/{types → resources/comments/types}/CommentsRetrieveRequestExpand.d.ts +0 -0
  4695. /package/api/resources/ticketing/{types → resources/comments/types}/CommentsRetrieveRequestExpand.js +0 -0
  4696. /package/api/resources/ticketing/{types → resources/issues/types}/IssuesListRequestStatus.d.ts +0 -0
  4697. /package/api/resources/ticketing/{types → resources/issues/types}/IssuesListRequestStatus.js +0 -0
  4698. /package/api/resources/ticketing/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.d.ts +0 -0
  4699. /package/api/resources/ticketing/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.js +0 -0
  4700. /package/api/resources/ticketing/{types → resources/projects/types}/ProjectsUsersListRequestExpand.d.ts +0 -0
  4701. /package/api/resources/ticketing/{types → resources/projects/types}/ProjectsUsersListRequestExpand.js +0 -0
  4702. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsCollaboratorsListRequestExpand.d.ts +0 -0
  4703. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsCollaboratorsListRequestExpand.js +0 -0
  4704. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestExpand.d.ts +0 -0
  4705. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestExpand.js +0 -0
  4706. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestPriority.d.ts +0 -0
  4707. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestPriority.js +0 -0
  4708. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestRemoteFields.d.ts +0 -0
  4709. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestRemoteFields.js +0 -0
  4710. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestShowEnumOrigins.d.ts +0 -0
  4711. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestShowEnumOrigins.js +0 -0
  4712. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestStatus.d.ts +0 -0
  4713. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestStatus.js +0 -0
  4714. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsRetrieveRequestExpand.d.ts +0 -0
  4715. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsRetrieveRequestExpand.js +0 -0
  4716. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsRetrieveRequestRemoteFields.d.ts +0 -0
  4717. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsRetrieveRequestRemoteFields.js +0 -0
  4718. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4719. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsRetrieveRequestShowEnumOrigins.js +0 -0
  4720. /package/api/resources/ticketing/{types → resources/users/types}/UsersListRequestExpand.d.ts +0 -0
  4721. /package/api/resources/ticketing/{types → resources/users/types}/UsersListRequestExpand.js +0 -0
  4722. /package/api/resources/ticketing/{types → resources/users/types}/UsersRetrieveRequestExpand.d.ts +0 -0
  4723. /package/api/resources/ticketing/{types → resources/users/types}/UsersRetrieveRequestExpand.js +0 -0
  4724. /package/dist/api/resources/accounting/{types → resources/accounts/types}/AccountsListRequestRemoteFields.d.ts +0 -0
  4725. /package/dist/api/resources/accounting/{types → resources/accounts/types}/AccountsListRequestRemoteFields.js +0 -0
  4726. /package/dist/api/resources/accounting/{types → resources/accounts/types}/AccountsListRequestShowEnumOrigins.d.ts +0 -0
  4727. /package/dist/api/resources/accounting/{types → resources/accounts/types}/AccountsListRequestShowEnumOrigins.js +0 -0
  4728. /package/dist/api/resources/accounting/{types → resources/accounts/types}/AccountsRetrieveRequestRemoteFields.d.ts +0 -0
  4729. /package/dist/api/resources/accounting/{types → resources/accounts/types}/AccountsRetrieveRequestRemoteFields.js +0 -0
  4730. /package/dist/api/resources/accounting/{types → resources/accounts/types}/AccountsRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4731. /package/dist/api/resources/accounting/{types → resources/accounts/types}/AccountsRetrieveRequestShowEnumOrigins.js +0 -0
  4732. /package/dist/api/resources/accounting/{types → resources/companyInfo/types}/CompanyInfoListRequestExpand.d.ts +0 -0
  4733. /package/dist/api/resources/accounting/{types → resources/companyInfo/types}/CompanyInfoListRequestExpand.js +0 -0
  4734. /package/dist/api/resources/accounting/{types → resources/companyInfo/types}/CompanyInfoRetrieveRequestExpand.d.ts +0 -0
  4735. /package/dist/api/resources/accounting/{types → resources/companyInfo/types}/CompanyInfoRetrieveRequestExpand.js +0 -0
  4736. /package/dist/api/resources/accounting/{types → resources/contacts/types}/ContactsListRequestExpand.d.ts +0 -0
  4737. /package/dist/api/resources/accounting/{types → resources/contacts/types}/ContactsListRequestExpand.js +0 -0
  4738. /package/dist/api/resources/accounting/{types → resources/contacts/types}/ContactsRetrieveRequestExpand.d.ts +0 -0
  4739. /package/dist/api/resources/accounting/{types → resources/contacts/types}/ContactsRetrieveRequestExpand.js +0 -0
  4740. /package/dist/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesListRequestExpand.d.ts +0 -0
  4741. /package/dist/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesListRequestExpand.js +0 -0
  4742. /package/dist/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesListRequestRemoteFields.d.ts +0 -0
  4743. /package/dist/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesListRequestRemoteFields.js +0 -0
  4744. /package/dist/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesListRequestShowEnumOrigins.d.ts +0 -0
  4745. /package/dist/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesListRequestShowEnumOrigins.js +0 -0
  4746. /package/dist/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesRetrieveRequestExpand.d.ts +0 -0
  4747. /package/dist/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesRetrieveRequestExpand.js +0 -0
  4748. /package/dist/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesRetrieveRequestRemoteFields.d.ts +0 -0
  4749. /package/dist/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesRetrieveRequestRemoteFields.js +0 -0
  4750. /package/dist/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4751. /package/dist/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesRetrieveRequestShowEnumOrigins.js +0 -0
  4752. /package/dist/api/resources/accounting/{types → resources/expenses/types}/ExpensesListRequestExpand.d.ts +0 -0
  4753. /package/dist/api/resources/accounting/{types → resources/expenses/types}/ExpensesListRequestExpand.js +0 -0
  4754. /package/dist/api/resources/accounting/{types → resources/expenses/types}/ExpensesRetrieveRequestExpand.d.ts +0 -0
  4755. /package/dist/api/resources/accounting/{types → resources/expenses/types}/ExpensesRetrieveRequestExpand.js +0 -0
  4756. /package/dist/api/resources/accounting/{types → resources/invoices/types}/InvoicesListRequestExpand.d.ts +0 -0
  4757. /package/dist/api/resources/accounting/{types → resources/invoices/types}/InvoicesListRequestExpand.js +0 -0
  4758. /package/dist/api/resources/accounting/{types → resources/invoices/types}/InvoicesListRequestType.d.ts +0 -0
  4759. /package/dist/api/resources/accounting/{types → resources/invoices/types}/InvoicesListRequestType.js +0 -0
  4760. /package/dist/api/resources/accounting/{types → resources/invoices/types}/InvoicesRetrieveRequestExpand.d.ts +0 -0
  4761. /package/dist/api/resources/accounting/{types → resources/invoices/types}/InvoicesRetrieveRequestExpand.js +0 -0
  4762. /package/dist/api/resources/accounting/{types → resources/issues/types}/IssuesListRequestStatus.d.ts +0 -0
  4763. /package/dist/api/resources/accounting/{types → resources/issues/types}/IssuesListRequestStatus.js +0 -0
  4764. /package/dist/api/resources/accounting/{types → resources/items/types}/ItemsListRequestExpand.d.ts +0 -0
  4765. /package/dist/api/resources/accounting/{types → resources/items/types}/ItemsListRequestExpand.js +0 -0
  4766. /package/dist/api/resources/accounting/{types → resources/items/types}/ItemsRetrieveRequestExpand.d.ts +0 -0
  4767. /package/dist/api/resources/accounting/{types → resources/items/types}/ItemsRetrieveRequestExpand.js +0 -0
  4768. /package/dist/api/resources/accounting/{types → resources/journalEntries/types}/JournalEntriesListRequestExpand.d.ts +0 -0
  4769. /package/dist/api/resources/accounting/{types → resources/journalEntries/types}/JournalEntriesListRequestExpand.js +0 -0
  4770. /package/dist/api/resources/accounting/{types → resources/journalEntries/types}/JournalEntriesRetrieveRequestExpand.d.ts +0 -0
  4771. /package/dist/api/resources/accounting/{types → resources/journalEntries/types}/JournalEntriesRetrieveRequestExpand.js +0 -0
  4772. /package/dist/api/resources/accounting/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.d.ts +0 -0
  4773. /package/dist/api/resources/accounting/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.js +0 -0
  4774. /package/dist/api/resources/accounting/{types → resources/payments/types}/PaymentsListRequestExpand.d.ts +0 -0
  4775. /package/dist/api/resources/accounting/{types → resources/payments/types}/PaymentsListRequestExpand.js +0 -0
  4776. /package/dist/api/resources/accounting/{types → resources/payments/types}/PaymentsRetrieveRequestExpand.d.ts +0 -0
  4777. /package/dist/api/resources/accounting/{types → resources/payments/types}/PaymentsRetrieveRequestExpand.js +0 -0
  4778. /package/dist/api/resources/accounting/{types → resources/purchaseOrders/types}/PurchaseOrdersListRequestExpand.d.ts +0 -0
  4779. /package/dist/api/resources/accounting/{types → resources/purchaseOrders/types}/PurchaseOrdersListRequestExpand.js +0 -0
  4780. /package/dist/api/resources/accounting/{types → resources/purchaseOrders/types}/PurchaseOrdersRetrieveRequestExpand.d.ts +0 -0
  4781. /package/dist/api/resources/accounting/{types → resources/purchaseOrders/types}/PurchaseOrdersRetrieveRequestExpand.js +0 -0
  4782. /package/dist/api/resources/accounting/{types → resources/transactions/types}/TransactionsListRequestExpand.d.ts +0 -0
  4783. /package/dist/api/resources/accounting/{types → resources/transactions/types}/TransactionsListRequestExpand.js +0 -0
  4784. /package/dist/api/resources/accounting/{types → resources/transactions/types}/TransactionsRetrieveRequestExpand.d.ts +0 -0
  4785. /package/dist/api/resources/accounting/{types → resources/transactions/types}/TransactionsRetrieveRequestExpand.js +0 -0
  4786. /package/dist/api/resources/accounting/{types → resources/vendorCredits/types}/VendorCreditsListRequestExpand.d.ts +0 -0
  4787. /package/dist/api/resources/accounting/{types → resources/vendorCredits/types}/VendorCreditsListRequestExpand.js +0 -0
  4788. /package/dist/api/resources/accounting/{types → resources/vendorCredits/types}/VendorCreditsRetrieveRequestExpand.d.ts +0 -0
  4789. /package/dist/api/resources/accounting/{types → resources/vendorCredits/types}/VendorCreditsRetrieveRequestExpand.js +0 -0
  4790. /package/dist/api/resources/ats/{types → resources/activities/types}/ActivitiesListRequestRemoteFields.d.ts +0 -0
  4791. /package/dist/api/resources/ats/{types → resources/activities/types}/ActivitiesListRequestRemoteFields.js +0 -0
  4792. /package/dist/api/resources/ats/{types → resources/activities/types}/ActivitiesListRequestShowEnumOrigins.d.ts +0 -0
  4793. /package/dist/api/resources/ats/{types → resources/activities/types}/ActivitiesListRequestShowEnumOrigins.js +0 -0
  4794. /package/dist/api/resources/ats/{types → resources/activities/types}/ActivitiesRetrieveRequestRemoteFields.d.ts +0 -0
  4795. /package/dist/api/resources/ats/{types → resources/activities/types}/ActivitiesRetrieveRequestRemoteFields.js +0 -0
  4796. /package/dist/api/resources/ats/{types → resources/activities/types}/ActivitiesRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4797. /package/dist/api/resources/ats/{types → resources/activities/types}/ActivitiesRetrieveRequestShowEnumOrigins.js +0 -0
  4798. /package/dist/api/resources/ats/{types → resources/applications/types}/ApplicationsListRequestExpand.d.ts +0 -0
  4799. /package/dist/api/resources/ats/{types → resources/applications/types}/ApplicationsListRequestExpand.js +0 -0
  4800. /package/dist/api/resources/ats/{types → resources/applications/types}/ApplicationsRetrieveRequestExpand.d.ts +0 -0
  4801. /package/dist/api/resources/ats/{types → resources/applications/types}/ApplicationsRetrieveRequestExpand.js +0 -0
  4802. /package/dist/api/resources/ats/{types → resources/candidates/types}/CandidatesListRequestExpand.d.ts +0 -0
  4803. /package/dist/api/resources/ats/{types → resources/candidates/types}/CandidatesListRequestExpand.js +0 -0
  4804. /package/dist/api/resources/ats/{types → resources/candidates/types}/CandidatesRetrieveRequestExpand.d.ts +0 -0
  4805. /package/dist/api/resources/ats/{types → resources/candidates/types}/CandidatesRetrieveRequestExpand.js +0 -0
  4806. /package/dist/api/resources/ats/{types → resources/eeocs/types}/EeocsListRequestRemoteFields.d.ts +0 -0
  4807. /package/dist/api/resources/ats/{types → resources/eeocs/types}/EeocsListRequestRemoteFields.js +0 -0
  4808. /package/dist/api/resources/ats/{types → resources/eeocs/types}/EeocsListRequestShowEnumOrigins.d.ts +0 -0
  4809. /package/dist/api/resources/ats/{types → resources/eeocs/types}/EeocsListRequestShowEnumOrigins.js +0 -0
  4810. /package/dist/api/resources/ats/{types → resources/eeocs/types}/EeocsRetrieveRequestRemoteFields.d.ts +0 -0
  4811. /package/dist/api/resources/ats/{types → resources/eeocs/types}/EeocsRetrieveRequestRemoteFields.js +0 -0
  4812. /package/dist/api/resources/ats/{types → resources/eeocs/types}/EeocsRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4813. /package/dist/api/resources/ats/{types → resources/eeocs/types}/EeocsRetrieveRequestShowEnumOrigins.js +0 -0
  4814. /package/dist/api/resources/ats/{types → resources/interviews/types}/InterviewsListRequestExpand.d.ts +0 -0
  4815. /package/dist/api/resources/ats/{types → resources/interviews/types}/InterviewsListRequestExpand.js +0 -0
  4816. /package/dist/api/resources/ats/{types → resources/interviews/types}/InterviewsRetrieveRequestExpand.d.ts +0 -0
  4817. /package/dist/api/resources/ats/{types → resources/interviews/types}/InterviewsRetrieveRequestExpand.js +0 -0
  4818. /package/dist/api/resources/ats/{types → resources/issues/types}/IssuesListRequestStatus.d.ts +0 -0
  4819. /package/dist/api/resources/ats/{types → resources/issues/types}/IssuesListRequestStatus.js +0 -0
  4820. /package/dist/api/resources/ats/{types → resources/jobs/types}/JobsListRequestExpand.d.ts +0 -0
  4821. /package/dist/api/resources/ats/{types → resources/jobs/types}/JobsListRequestExpand.js +0 -0
  4822. /package/dist/api/resources/ats/{types → resources/jobs/types}/JobsListRequestStatus.d.ts +0 -0
  4823. /package/dist/api/resources/ats/{types → resources/jobs/types}/JobsListRequestStatus.js +0 -0
  4824. /package/dist/api/resources/ats/{types → resources/jobs/types}/JobsRetrieveRequestExpand.d.ts +0 -0
  4825. /package/dist/api/resources/ats/{types → resources/jobs/types}/JobsRetrieveRequestExpand.js +0 -0
  4826. /package/dist/api/resources/ats/{types → resources/jobs/types}/JobsScreeningQuestionsListRequestExpand.d.ts +0 -0
  4827. /package/dist/api/resources/ats/{types → resources/jobs/types}/JobsScreeningQuestionsListRequestExpand.js +0 -0
  4828. /package/dist/api/resources/ats/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.d.ts +0 -0
  4829. /package/dist/api/resources/ats/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.js +0 -0
  4830. /package/dist/api/resources/ats/{types → resources/offers/types}/OffersListRequestExpand.d.ts +0 -0
  4831. /package/dist/api/resources/ats/{types → resources/offers/types}/OffersListRequestExpand.js +0 -0
  4832. /package/dist/api/resources/ats/{types → resources/offers/types}/OffersRetrieveRequestExpand.d.ts +0 -0
  4833. /package/dist/api/resources/ats/{types → resources/offers/types}/OffersRetrieveRequestExpand.js +0 -0
  4834. /package/dist/api/resources/ats/{types → resources/scorecards/types}/ScorecardsListRequestExpand.d.ts +0 -0
  4835. /package/dist/api/resources/ats/{types → resources/scorecards/types}/ScorecardsListRequestExpand.js +0 -0
  4836. /package/dist/api/resources/ats/{types → resources/scorecards/types}/ScorecardsRetrieveRequestExpand.d.ts +0 -0
  4837. /package/dist/api/resources/ats/{types → resources/scorecards/types}/ScorecardsRetrieveRequestExpand.js +0 -0
  4838. /package/dist/api/resources/crm/{types → resources/contacts/types}/ContactsListRequestExpand.d.ts +0 -0
  4839. /package/dist/api/resources/crm/{types → resources/contacts/types}/ContactsListRequestExpand.js +0 -0
  4840. /package/dist/api/resources/crm/{types → resources/contacts/types}/ContactsRetrieveRequestExpand.d.ts +0 -0
  4841. /package/dist/api/resources/crm/{types → resources/contacts/types}/ContactsRetrieveRequestExpand.js +0 -0
  4842. /package/dist/api/resources/crm/{types → resources/engagements/types}/EngagementsListRequestExpand.d.ts +0 -0
  4843. /package/dist/api/resources/crm/{types → resources/engagements/types}/EngagementsListRequestExpand.js +0 -0
  4844. /package/dist/api/resources/crm/{types → resources/engagements/types}/EngagementsRetrieveRequestExpand.d.ts +0 -0
  4845. /package/dist/api/resources/crm/{types → resources/engagements/types}/EngagementsRetrieveRequestExpand.js +0 -0
  4846. /package/dist/api/resources/crm/{types → resources/issues/types}/IssuesListRequestStatus.d.ts +0 -0
  4847. /package/dist/api/resources/crm/{types → resources/issues/types}/IssuesListRequestStatus.js +0 -0
  4848. /package/dist/api/resources/crm/{types → resources/leads/types}/LeadsListRequestExpand.d.ts +0 -0
  4849. /package/dist/api/resources/crm/{types → resources/leads/types}/LeadsListRequestExpand.js +0 -0
  4850. /package/dist/api/resources/crm/{types → resources/leads/types}/LeadsRetrieveRequestExpand.d.ts +0 -0
  4851. /package/dist/api/resources/crm/{types → resources/leads/types}/LeadsRetrieveRequestExpand.js +0 -0
  4852. /package/dist/api/resources/crm/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.d.ts +0 -0
  4853. /package/dist/api/resources/crm/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.js +0 -0
  4854. /package/dist/api/resources/crm/{types → resources/notes/types}/NotesListRequestExpand.d.ts +0 -0
  4855. /package/dist/api/resources/crm/{types → resources/notes/types}/NotesListRequestExpand.js +0 -0
  4856. /package/dist/api/resources/crm/{types → resources/notes/types}/NotesRetrieveRequestExpand.d.ts +0 -0
  4857. /package/dist/api/resources/crm/{types → resources/notes/types}/NotesRetrieveRequestExpand.js +0 -0
  4858. /package/dist/api/resources/crm/{types → resources/opportunities/types}/OpportunitiesListRequestExpand.d.ts +0 -0
  4859. /package/dist/api/resources/crm/{types → resources/opportunities/types}/OpportunitiesListRequestExpand.js +0 -0
  4860. /package/dist/api/resources/crm/{types → resources/opportunities/types}/OpportunitiesListRequestStatus.d.ts +0 -0
  4861. /package/dist/api/resources/crm/{types → resources/opportunities/types}/OpportunitiesListRequestStatus.js +0 -0
  4862. /package/dist/api/resources/crm/{types → resources/opportunities/types}/OpportunitiesRetrieveRequestExpand.d.ts +0 -0
  4863. /package/dist/api/resources/crm/{types → resources/opportunities/types}/OpportunitiesRetrieveRequestExpand.js +0 -0
  4864. /package/dist/api/resources/crm/{types → resources/tasks/types}/TasksListRequestExpand.d.ts +0 -0
  4865. /package/dist/api/resources/crm/{types → resources/tasks/types}/TasksListRequestExpand.js +0 -0
  4866. /package/dist/api/resources/crm/{types → resources/tasks/types}/TasksRetrieveRequestExpand.d.ts +0 -0
  4867. /package/dist/api/resources/crm/{types → resources/tasks/types}/TasksRetrieveRequestExpand.js +0 -0
  4868. /package/dist/api/resources/filestorage/{types → resources/files/types}/FilesListRequestExpand.d.ts +0 -0
  4869. /package/dist/api/resources/filestorage/{types → resources/files/types}/FilesListRequestExpand.js +0 -0
  4870. /package/dist/api/resources/filestorage/{types → resources/files/types}/FilesRetrieveRequestExpand.d.ts +0 -0
  4871. /package/dist/api/resources/filestorage/{types → resources/files/types}/FilesRetrieveRequestExpand.js +0 -0
  4872. /package/dist/api/resources/filestorage/{types → resources/folders/types}/FoldersListRequestExpand.d.ts +0 -0
  4873. /package/dist/api/resources/filestorage/{types → resources/folders/types}/FoldersListRequestExpand.js +0 -0
  4874. /package/dist/api/resources/filestorage/{types → resources/folders/types}/FoldersRetrieveRequestExpand.d.ts +0 -0
  4875. /package/dist/api/resources/filestorage/{types → resources/folders/types}/FoldersRetrieveRequestExpand.js +0 -0
  4876. /package/dist/api/resources/filestorage/{types → resources/issues/types}/IssuesListRequestStatus.d.ts +0 -0
  4877. /package/dist/api/resources/filestorage/{types → resources/issues/types}/IssuesListRequestStatus.js +0 -0
  4878. /package/dist/api/resources/filestorage/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.d.ts +0 -0
  4879. /package/dist/api/resources/filestorage/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.js +0 -0
  4880. /package/dist/api/resources/hris/{types → resources/bankInfo/types}/BankInfoListRequestAccountType.d.ts +0 -0
  4881. /package/dist/api/resources/hris/{types → resources/bankInfo/types}/BankInfoListRequestAccountType.js +0 -0
  4882. /package/dist/api/resources/hris/{types → resources/bankInfo/types}/BankInfoListRequestOrderBy.d.ts +0 -0
  4883. /package/dist/api/resources/hris/{types → resources/bankInfo/types}/BankInfoListRequestOrderBy.js +0 -0
  4884. /package/dist/api/resources/hris/{types → resources/employeePayrollRuns/types}/EmployeePayrollRunsListRequestExpand.d.ts +0 -0
  4885. /package/dist/api/resources/hris/{types → resources/employeePayrollRuns/types}/EmployeePayrollRunsListRequestExpand.js +0 -0
  4886. /package/dist/api/resources/hris/{types → resources/employeePayrollRuns/types}/EmployeePayrollRunsRetrieveRequestExpand.d.ts +0 -0
  4887. /package/dist/api/resources/hris/{types → resources/employeePayrollRuns/types}/EmployeePayrollRunsRetrieveRequestExpand.js +0 -0
  4888. /package/dist/api/resources/hris/{types → resources/employees/types}/EmployeesListRequestEmploymentStatus.d.ts +0 -0
  4889. /package/dist/api/resources/hris/{types → resources/employees/types}/EmployeesListRequestEmploymentStatus.js +0 -0
  4890. /package/dist/api/resources/hris/{types → resources/employees/types}/EmployeesListRequestExpand.d.ts +0 -0
  4891. /package/dist/api/resources/hris/{types → resources/employees/types}/EmployeesListRequestExpand.js +0 -0
  4892. /package/dist/api/resources/hris/{types → resources/employees/types}/EmployeesListRequestRemoteFields.d.ts +0 -0
  4893. /package/dist/api/resources/hris/{types → resources/employees/types}/EmployeesListRequestRemoteFields.js +0 -0
  4894. /package/dist/api/resources/hris/{types → resources/employees/types}/EmployeesListRequestShowEnumOrigins.d.ts +0 -0
  4895. /package/dist/api/resources/hris/{types → resources/employees/types}/EmployeesListRequestShowEnumOrigins.js +0 -0
  4896. /package/dist/api/resources/hris/{types → resources/employees/types}/EmployeesRetrieveRequestExpand.d.ts +0 -0
  4897. /package/dist/api/resources/hris/{types → resources/employees/types}/EmployeesRetrieveRequestExpand.js +0 -0
  4898. /package/dist/api/resources/hris/{types → resources/employees/types}/EmployeesRetrieveRequestRemoteFields.d.ts +0 -0
  4899. /package/dist/api/resources/hris/{types → resources/employees/types}/EmployeesRetrieveRequestRemoteFields.js +0 -0
  4900. /package/dist/api/resources/hris/{types → resources/employees/types}/EmployeesRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4901. /package/dist/api/resources/hris/{types → resources/employees/types}/EmployeesRetrieveRequestShowEnumOrigins.js +0 -0
  4902. /package/dist/api/resources/hris/{types → resources/employees/types}/IgnoreCommonModelRequestReason.js +0 -0
  4903. /package/dist/api/resources/hris/{types → resources/employments/types}/EmploymentsListRequestExpand.d.ts +0 -0
  4904. /package/dist/api/resources/hris/{types → resources/employments/types}/EmploymentsListRequestExpand.js +0 -0
  4905. /package/dist/api/resources/hris/{types → resources/employments/types}/EmploymentsListRequestOrderBy.d.ts +0 -0
  4906. /package/dist/api/resources/hris/{types → resources/employments/types}/EmploymentsListRequestOrderBy.js +0 -0
  4907. /package/dist/api/resources/hris/{types → resources/employments/types}/EmploymentsListRequestRemoteFields.d.ts +0 -0
  4908. /package/dist/api/resources/hris/{types → resources/employments/types}/EmploymentsListRequestRemoteFields.js +0 -0
  4909. /package/dist/api/resources/hris/{types → resources/employments/types}/EmploymentsListRequestShowEnumOrigins.d.ts +0 -0
  4910. /package/dist/api/resources/hris/{types → resources/employments/types}/EmploymentsListRequestShowEnumOrigins.js +0 -0
  4911. /package/dist/api/resources/hris/{types → resources/employments/types}/EmploymentsRetrieveRequestExpand.d.ts +0 -0
  4912. /package/dist/api/resources/hris/{types → resources/employments/types}/EmploymentsRetrieveRequestExpand.js +0 -0
  4913. /package/dist/api/resources/hris/{types → resources/employments/types}/EmploymentsRetrieveRequestRemoteFields.d.ts +0 -0
  4914. /package/dist/api/resources/hris/{types → resources/employments/types}/EmploymentsRetrieveRequestRemoteFields.js +0 -0
  4915. /package/dist/api/resources/hris/{types → resources/employments/types}/EmploymentsRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4916. /package/dist/api/resources/hris/{types → resources/employments/types}/EmploymentsRetrieveRequestShowEnumOrigins.js +0 -0
  4917. /package/dist/api/resources/hris/{types → resources/issues/types}/IssuesListRequestStatus.d.ts +0 -0
  4918. /package/dist/api/resources/hris/{types → resources/issues/types}/IssuesListRequestStatus.js +0 -0
  4919. /package/dist/api/resources/hris/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.d.ts +0 -0
  4920. /package/dist/api/resources/hris/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.js +0 -0
  4921. /package/dist/api/resources/hris/{types → resources/locations/types}/LocationsListRequestLocationType.d.ts +0 -0
  4922. /package/dist/api/resources/hris/{types → resources/locations/types}/LocationsListRequestLocationType.js +0 -0
  4923. /package/dist/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsListRequestRemoteFields.d.ts +0 -0
  4924. /package/dist/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsListRequestRemoteFields.js +0 -0
  4925. /package/dist/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsListRequestRunType.d.ts +0 -0
  4926. /package/dist/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsListRequestRunType.js +0 -0
  4927. /package/dist/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsListRequestShowEnumOrigins.d.ts +0 -0
  4928. /package/dist/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsListRequestShowEnumOrigins.js +0 -0
  4929. /package/dist/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsRetrieveRequestRemoteFields.d.ts +0 -0
  4930. /package/dist/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsRetrieveRequestRemoteFields.js +0 -0
  4931. /package/dist/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4932. /package/dist/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsRetrieveRequestShowEnumOrigins.js +0 -0
  4933. /package/dist/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestExpand.d.ts +0 -0
  4934. /package/dist/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestExpand.js +0 -0
  4935. /package/dist/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestRemoteFields.d.ts +0 -0
  4936. /package/dist/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestRemoteFields.js +0 -0
  4937. /package/dist/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestRequestType.d.ts +0 -0
  4938. /package/dist/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestRequestType.js +0 -0
  4939. /package/dist/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestShowEnumOrigins.d.ts +0 -0
  4940. /package/dist/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestShowEnumOrigins.js +0 -0
  4941. /package/dist/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestStatus.d.ts +0 -0
  4942. /package/dist/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestStatus.js +0 -0
  4943. /package/dist/api/resources/hris/{types → resources/timeOff/types}/TimeOffRetrieveRequestExpand.d.ts +0 -0
  4944. /package/dist/api/resources/hris/{types → resources/timeOff/types}/TimeOffRetrieveRequestExpand.js +0 -0
  4945. /package/dist/api/resources/hris/{types → resources/timeOff/types}/TimeOffRetrieveRequestRemoteFields.d.ts +0 -0
  4946. /package/dist/api/resources/hris/{types → resources/timeOff/types}/TimeOffRetrieveRequestRemoteFields.js +0 -0
  4947. /package/dist/api/resources/hris/{types → resources/timeOff/types}/TimeOffRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4948. /package/dist/api/resources/hris/{types → resources/timeOff/types}/TimeOffRetrieveRequestShowEnumOrigins.js +0 -0
  4949. /package/dist/api/resources/hris/{types → resources/timeOffBalances/types}/TimeOffBalancesListRequestPolicyType.d.ts +0 -0
  4950. /package/dist/api/resources/hris/{types → resources/timeOffBalances/types}/TimeOffBalancesListRequestPolicyType.js +0 -0
  4951. /package/dist/api/resources/hris/{types → resources/timesheetEntries/types}/TimesheetEntriesListRequestOrderBy.d.ts +0 -0
  4952. /package/dist/api/resources/hris/{types → resources/timesheetEntries/types}/TimesheetEntriesListRequestOrderBy.js +0 -0
  4953. /package/dist/api/resources/ticketing/{types → resources/collections/types}/CollectionsListRequestCollectionType.d.ts +0 -0
  4954. /package/dist/api/resources/ticketing/{types → resources/collections/types}/CollectionsListRequestCollectionType.js +0 -0
  4955. /package/dist/api/resources/ticketing/{types → resources/collections/types}/CollectionsUsersListRequestExpand.d.ts +0 -0
  4956. /package/dist/api/resources/ticketing/{types → resources/collections/types}/CollectionsUsersListRequestExpand.js +0 -0
  4957. /package/dist/api/resources/ticketing/{types → resources/comments/types}/CommentsListRequestExpand.d.ts +0 -0
  4958. /package/dist/api/resources/ticketing/{types → resources/comments/types}/CommentsListRequestExpand.js +0 -0
  4959. /package/dist/api/resources/ticketing/{types → resources/comments/types}/CommentsRetrieveRequestExpand.d.ts +0 -0
  4960. /package/dist/api/resources/ticketing/{types → resources/comments/types}/CommentsRetrieveRequestExpand.js +0 -0
  4961. /package/dist/api/resources/ticketing/{types → resources/issues/types}/IssuesListRequestStatus.d.ts +0 -0
  4962. /package/dist/api/resources/ticketing/{types → resources/issues/types}/IssuesListRequestStatus.js +0 -0
  4963. /package/dist/api/resources/ticketing/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.d.ts +0 -0
  4964. /package/dist/api/resources/ticketing/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.js +0 -0
  4965. /package/dist/api/resources/ticketing/{types → resources/projects/types}/ProjectsUsersListRequestExpand.d.ts +0 -0
  4966. /package/dist/api/resources/ticketing/{types → resources/projects/types}/ProjectsUsersListRequestExpand.js +0 -0
  4967. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsCollaboratorsListRequestExpand.d.ts +0 -0
  4968. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsCollaboratorsListRequestExpand.js +0 -0
  4969. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestExpand.d.ts +0 -0
  4970. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestExpand.js +0 -0
  4971. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestPriority.d.ts +0 -0
  4972. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestPriority.js +0 -0
  4973. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestRemoteFields.d.ts +0 -0
  4974. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestRemoteFields.js +0 -0
  4975. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestShowEnumOrigins.d.ts +0 -0
  4976. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestShowEnumOrigins.js +0 -0
  4977. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestStatus.d.ts +0 -0
  4978. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestStatus.js +0 -0
  4979. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsRetrieveRequestExpand.d.ts +0 -0
  4980. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsRetrieveRequestExpand.js +0 -0
  4981. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsRetrieveRequestRemoteFields.d.ts +0 -0
  4982. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsRetrieveRequestRemoteFields.js +0 -0
  4983. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4984. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsRetrieveRequestShowEnumOrigins.js +0 -0
  4985. /package/dist/api/resources/ticketing/{types → resources/users/types}/UsersListRequestExpand.d.ts +0 -0
  4986. /package/dist/api/resources/ticketing/{types → resources/users/types}/UsersListRequestExpand.js +0 -0
  4987. /package/dist/api/resources/ticketing/{types → resources/users/types}/UsersRetrieveRequestExpand.d.ts +0 -0
  4988. /package/dist/api/resources/ticketing/{types → resources/users/types}/UsersRetrieveRequestExpand.js +0 -0
@@ -4,10 +4,13 @@
4
4
  import * as Merge from "../../..";
5
5
  /**
6
6
  * # The JournalLine Object
7
+ *
7
8
  * ### Description
9
+ *
8
10
  * The `JournalLine` object is used to represent a journal entry's line items.
9
11
  *
10
12
  * ### Usage Example
13
+ *
11
14
  * Fetch from the `GET JournalEntry` endpoint and view the journal entry's line items.
12
15
  */
13
16
  export interface JournalLineRequest {
@@ -21,312 +24,312 @@ export interface JournalLineRequest {
21
24
  /**
22
25
  * The journal line item's currency.
23
26
  *
24
- * * `XUA` - ADB Unit of Account
25
- * * `AFN` - Afghan Afghani
26
- * * `AFA` - Afghan Afghani (1927–2002)
27
- * * `ALL` - Albanian Lek
28
- * * `ALK` - Albanian Lek (1946–1965)
29
- * * `DZD` - Algerian Dinar
30
- * * `ADP` - Andorran Peseta
31
- * * `AOA` - Angolan Kwanza
32
- * * `AOK` - Angolan Kwanza (1977–1991)
33
- * * `AON` - Angolan New Kwanza (1990–2000)
34
- * * `AOR` - Angolan Readjusted Kwanza (1995–1999)
35
- * * `ARA` - Argentine Austral
36
- * * `ARS` - Argentine Peso
37
- * * `ARM` - Argentine Peso (1881–1970)
38
- * * `ARP` - Argentine Peso (1983–1985)
39
- * * `ARL` - Argentine Peso Ley (1970–1983)
40
- * * `AMD` - Armenian Dram
41
- * * `AWG` - Aruban Florin
42
- * * `AUD` - Australian Dollar
43
- * * `ATS` - Austrian Schilling
44
- * * `AZN` - Azerbaijani Manat
45
- * * `AZM` - Azerbaijani Manat (1993–2006)
46
- * * `BSD` - Bahamian Dollar
47
- * * `BHD` - Bahraini Dinar
48
- * * `BDT` - Bangladeshi Taka
49
- * * `BBD` - Barbadian Dollar
50
- * * `BYN` - Belarusian Ruble
51
- * * `BYB` - Belarusian Ruble (1994–1999)
52
- * * `BYR` - Belarusian Ruble (2000–2016)
53
- * * `BEF` - Belgian Franc
54
- * * `BEC` - Belgian Franc (convertible)
55
- * * `BEL` - Belgian Franc (financial)
56
- * * `BZD` - Belize Dollar
57
- * * `BMD` - Bermudan Dollar
58
- * * `BTN` - Bhutanese Ngultrum
59
- * * `BOB` - Bolivian Boliviano
60
- * * `BOL` - Bolivian Boliviano (1863–1963)
61
- * * `BOV` - Bolivian Mvdol
62
- * * `BOP` - Bolivian Peso
63
- * * `BAM` - Bosnia-Herzegovina Convertible Mark
64
- * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994)
65
- * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997)
66
- * * `BWP` - Botswanan Pula
67
- * * `BRC` - Brazilian Cruzado (1986–1989)
68
- * * `BRZ` - Brazilian Cruzeiro (1942–1967)
69
- * * `BRE` - Brazilian Cruzeiro (1990–1993)
70
- * * `BRR` - Brazilian Cruzeiro (1993–1994)
71
- * * `BRN` - Brazilian New Cruzado (1989–1990)
72
- * * `BRB` - Brazilian New Cruzeiro (1967–1986)
73
- * * `BRL` - Brazilian Real
74
- * * `GBP` - British Pound
75
- * * `BND` - Brunei Dollar
76
- * * `BGL` - Bulgarian Hard Lev
77
- * * `BGN` - Bulgarian Lev
78
- * * `BGO` - Bulgarian Lev (1879–1952)
79
- * * `BGM` - Bulgarian Socialist Lev
80
- * * `BUK` - Burmese Kyat
81
- * * `BIF` - Burundian Franc
82
- * * `XPF` - CFP Franc
83
- * * `KHR` - Cambodian Riel
84
- * * `CAD` - Canadian Dollar
85
- * * `CVE` - Cape Verdean Escudo
86
- * * `KYD` - Cayman Islands Dollar
87
- * * `XAF` - Central African CFA Franc
88
- * * `CLE` - Chilean Escudo
89
- * * `CLP` - Chilean Peso
90
- * * `CLF` - Chilean Unit of Account (UF)
91
- * * `CNX` - Chinese People’s Bank Dollar
92
- * * `CNY` - Chinese Yuan
93
- * * `CNH` - Chinese Yuan (offshore)
94
- * * `COP` - Colombian Peso
95
- * * `COU` - Colombian Real Value Unit
96
- * * `KMF` - Comorian Franc
97
- * * `CDF` - Congolese Franc
98
- * * `CRC` - Costa Rican Colón
99
- * * `HRD` - Croatian Dinar
100
- * * `HRK` - Croatian Kuna
101
- * * `CUC` - Cuban Convertible Peso
102
- * * `CUP` - Cuban Peso
103
- * * `CYP` - Cypriot Pound
104
- * * `CZK` - Czech Koruna
105
- * * `CSK` - Czechoslovak Hard Koruna
106
- * * `DKK` - Danish Krone
107
- * * `DJF` - Djiboutian Franc
108
- * * `DOP` - Dominican Peso
109
- * * `NLG` - Dutch Guilder
110
- * * `XCD` - East Caribbean Dollar
111
- * * `DDM` - East German Mark
112
- * * `ECS` - Ecuadorian Sucre
113
- * * `ECV` - Ecuadorian Unit of Constant Value
114
- * * `EGP` - Egyptian Pound
115
- * * `GQE` - Equatorial Guinean Ekwele
116
- * * `ERN` - Eritrean Nakfa
117
- * * `EEK` - Estonian Kroon
118
- * * `ETB` - Ethiopian Birr
119
- * * `EUR` - Euro
120
- * * `XBA` - European Composite Unit
121
- * * `XEU` - European Currency Unit
122
- * * `XBB` - European Monetary Unit
123
- * * `XBC` - European Unit of Account (XBC)
124
- * * `XBD` - European Unit of Account (XBD)
125
- * * `FKP` - Falkland Islands Pound
126
- * * `FJD` - Fijian Dollar
127
- * * `FIM` - Finnish Markka
128
- * * `FRF` - French Franc
129
- * * `XFO` - French Gold Franc
130
- * * `XFU` - French UIC-Franc
131
- * * `GMD` - Gambian Dalasi
132
- * * `GEK` - Georgian Kupon Larit
133
- * * `GEL` - Georgian Lari
134
- * * `DEM` - German Mark
135
- * * `GHS` - Ghanaian Cedi
136
- * * `GHC` - Ghanaian Cedi (1979–2007)
137
- * * `GIP` - Gibraltar Pound
138
- * * `XAU` - Gold
139
- * * `GRD` - Greek Drachma
140
- * * `GTQ` - Guatemalan Quetzal
141
- * * `GWP` - Guinea-Bissau Peso
142
- * * `GNF` - Guinean Franc
143
- * * `GNS` - Guinean Syli
144
- * * `GYD` - Guyanaese Dollar
145
- * * `HTG` - Haitian Gourde
146
- * * `HNL` - Honduran Lempira
147
- * * `HKD` - Hong Kong Dollar
148
- * * `HUF` - Hungarian Forint
149
- * * `IMP` - IMP
150
- * * `ISK` - Icelandic Króna
151
- * * `ISJ` - Icelandic Króna (1918–1981)
152
- * * `INR` - Indian Rupee
153
- * * `IDR` - Indonesian Rupiah
154
- * * `IRR` - Iranian Rial
155
- * * `IQD` - Iraqi Dinar
156
- * * `IEP` - Irish Pound
157
- * * `ILS` - Israeli New Shekel
158
- * * `ILP` - Israeli Pound
159
- * * `ILR` - Israeli Shekel (1980–1985)
160
- * * `ITL` - Italian Lira
161
- * * `JMD` - Jamaican Dollar
162
- * * `JPY` - Japanese Yen
163
- * * `JOD` - Jordanian Dinar
164
- * * `KZT` - Kazakhstani Tenge
165
- * * `KES` - Kenyan Shilling
166
- * * `KWD` - Kuwaiti Dinar
167
- * * `KGS` - Kyrgystani Som
168
- * * `LAK` - Laotian Kip
169
- * * `LVL` - Latvian Lats
170
- * * `LVR` - Latvian Ruble
171
- * * `LBP` - Lebanese Pound
172
- * * `LSL` - Lesotho Loti
173
- * * `LRD` - Liberian Dollar
174
- * * `LYD` - Libyan Dinar
175
- * * `LTL` - Lithuanian Litas
176
- * * `LTT` - Lithuanian Talonas
177
- * * `LUL` - Luxembourg Financial Franc
178
- * * `LUC` - Luxembourgian Convertible Franc
179
- * * `LUF` - Luxembourgian Franc
180
- * * `MOP` - Macanese Pataca
181
- * * `MKD` - Macedonian Denar
182
- * * `MKN` - Macedonian Denar (1992–1993)
183
- * * `MGA` - Malagasy Ariary
184
- * * `MGF` - Malagasy Franc
185
- * * `MWK` - Malawian Kwacha
186
- * * `MYR` - Malaysian Ringgit
187
- * * `MVR` - Maldivian Rufiyaa
188
- * * `MVP` - Maldivian Rupee (1947–1981)
189
- * * `MLF` - Malian Franc
190
- * * `MTL` - Maltese Lira
191
- * * `MTP` - Maltese Pound
192
- * * `MRU` - Mauritanian Ouguiya
193
- * * `MRO` - Mauritanian Ouguiya (1973–2017)
194
- * * `MUR` - Mauritian Rupee
195
- * * `MXV` - Mexican Investment Unit
196
- * * `MXN` - Mexican Peso
197
- * * `MXP` - Mexican Silver Peso (1861–1992)
198
- * * `MDC` - Moldovan Cupon
199
- * * `MDL` - Moldovan Leu
200
- * * `MCF` - Monegasque Franc
201
- * * `MNT` - Mongolian Tugrik
202
- * * `MAD` - Moroccan Dirham
203
- * * `MAF` - Moroccan Franc
204
- * * `MZE` - Mozambican Escudo
205
- * * `MZN` - Mozambican Metical
206
- * * `MZM` - Mozambican Metical (1980–2006)
207
- * * `MMK` - Myanmar Kyat
208
- * * `NAD` - Namibian Dollar
209
- * * `NPR` - Nepalese Rupee
210
- * * `ANG` - Netherlands Antillean Guilder
211
- * * `TWD` - New Taiwan Dollar
212
- * * `NZD` - New Zealand Dollar
213
- * * `NIO` - Nicaraguan Córdoba
214
- * * `NIC` - Nicaraguan Córdoba (1988–1991)
215
- * * `NGN` - Nigerian Naira
216
- * * `KPW` - North Korean Won
217
- * * `NOK` - Norwegian Krone
218
- * * `OMR` - Omani Rial
219
- * * `PKR` - Pakistani Rupee
220
- * * `XPD` - Palladium
221
- * * `PAB` - Panamanian Balboa
222
- * * `PGK` - Papua New Guinean Kina
223
- * * `PYG` - Paraguayan Guarani
224
- * * `PEI` - Peruvian Inti
225
- * * `PEN` - Peruvian Sol
226
- * * `PES` - Peruvian Sol (1863–1965)
227
- * * `PHP` - Philippine Peso
228
- * * `XPT` - Platinum
229
- * * `PLN` - Polish Zloty
230
- * * `PLZ` - Polish Zloty (1950–1995)
231
- * * `PTE` - Portuguese Escudo
232
- * * `GWE` - Portuguese Guinea Escudo
233
- * * `QAR` - Qatari Rial
234
- * * `XRE` - RINET Funds
235
- * * `RHD` - Rhodesian Dollar
236
- * * `RON` - Romanian Leu
237
- * * `ROL` - Romanian Leu (1952–2006)
238
- * * `RUB` - Russian Ruble
239
- * * `RUR` - Russian Ruble (1991–1998)
240
- * * `RWF` - Rwandan Franc
241
- * * `SVC` - Salvadoran Colón
242
- * * `WST` - Samoan Tala
243
- * * `SAR` - Saudi Riyal
244
- * * `RSD` - Serbian Dinar
245
- * * `CSD` - Serbian Dinar (2002–2006)
246
- * * `SCR` - Seychellois Rupee
247
- * * `SLL` - Sierra Leonean Leone
248
- * * `XAG` - Silver
249
- * * `SGD` - Singapore Dollar
250
- * * `SKK` - Slovak Koruna
251
- * * `SIT` - Slovenian Tolar
252
- * * `SBD` - Solomon Islands Dollar
253
- * * `SOS` - Somali Shilling
254
- * * `ZAR` - South African Rand
255
- * * `ZAL` - South African Rand (financial)
256
- * * `KRH` - South Korean Hwan (1953–1962)
257
- * * `KRW` - South Korean Won
258
- * * `KRO` - South Korean Won (1945–1953)
259
- * * `SSP` - South Sudanese Pound
260
- * * `SUR` - Soviet Rouble
261
- * * `ESP` - Spanish Peseta
262
- * * `ESA` - Spanish Peseta (A account)
263
- * * `ESB` - Spanish Peseta (convertible account)
264
- * * `XDR` - Special Drawing Rights
265
- * * `LKR` - Sri Lankan Rupee
266
- * * `SHP` - St. Helena Pound
267
- * * `XSU` - Sucre
268
- * * `SDD` - Sudanese Dinar (1992–2007)
269
- * * `SDG` - Sudanese Pound
270
- * * `SDP` - Sudanese Pound (1957–1998)
271
- * * `SRD` - Surinamese Dollar
272
- * * `SRG` - Surinamese Guilder
273
- * * `SZL` - Swazi Lilangeni
274
- * * `SEK` - Swedish Krona
275
- * * `CHF` - Swiss Franc
276
- * * `SYP` - Syrian Pound
277
- * * `STN` - São Tomé & Príncipe Dobra
278
- * * `STD` - São Tomé & Príncipe Dobra (1977–2017)
279
- * * `TVD` - TVD
280
- * * `TJR` - Tajikistani Ruble
281
- * * `TJS` - Tajikistani Somoni
282
- * * `TZS` - Tanzanian Shilling
283
- * * `XTS` - Testing Currency Code
284
- * * `THB` - Thai Baht
285
- * * `XXX` - The codes assigned for transactions where no currency is involved
286
- * * `TPE` - Timorese Escudo
287
- * * `TOP` - Tongan Paʻanga
288
- * * `TTD` - Trinidad & Tobago Dollar
289
- * * `TND` - Tunisian Dinar
290
- * * `TRY` - Turkish Lira
291
- * * `TRL` - Turkish Lira (1922–2005)
292
- * * `TMT` - Turkmenistani Manat
293
- * * `TMM` - Turkmenistani Manat (1993–2009)
294
- * * `USD` - US Dollar
295
- * * `USN` - US Dollar (Next day)
296
- * * `USS` - US Dollar (Same day)
297
- * * `UGX` - Ugandan Shilling
298
- * * `UGS` - Ugandan Shilling (1966–1987)
299
- * * `UAH` - Ukrainian Hryvnia
300
- * * `UAK` - Ukrainian Karbovanets
301
- * * `AED` - United Arab Emirates Dirham
302
- * * `UYW` - Uruguayan Nominal Wage Index Unit
303
- * * `UYU` - Uruguayan Peso
304
- * * `UYP` - Uruguayan Peso (1975–1993)
305
- * * `UYI` - Uruguayan Peso (Indexed Units)
306
- * * `UZS` - Uzbekistani Som
307
- * * `VUV` - Vanuatu Vatu
308
- * * `VES` - Venezuelan Bolívar
309
- * * `VEB` - Venezuelan Bolívar (1871–2008)
310
- * * `VEF` - Venezuelan Bolívar (2008–2018)
311
- * * `VND` - Vietnamese Dong
312
- * * `VNN` - Vietnamese Dong (1978–1985)
313
- * * `CHE` - WIR Euro
314
- * * `CHW` - WIR Franc
315
- * * `XOF` - West African CFA Franc
316
- * * `YDD` - Yemeni Dinar
317
- * * `YER` - Yemeni Rial
318
- * * `YUN` - Yugoslavian Convertible Dinar (1990–1992)
319
- * * `YUD` - Yugoslavian Hard Dinar (1966–1990)
320
- * * `YUM` - Yugoslavian New Dinar (1994–2002)
321
- * * `YUR` - Yugoslavian Reformed Dinar (1992–1993)
322
- * * `ZWN` - ZWN
323
- * * `ZRN` - Zairean New Zaire (1993–1998)
324
- * * `ZRZ` - Zairean Zaire (1971–1993)
325
- * * `ZMW` - Zambian Kwacha
326
- * * `ZMK` - Zambian Kwacha (1968–2012)
327
- * * `ZWD` - Zimbabwean Dollar (1980–2008)
328
- * * `ZWR` - Zimbabwean Dollar (2008)
329
- * * `ZWL` - Zimbabwean Dollar (2009)
27
+ * - `XUA` - ADB Unit of Account
28
+ * - `AFN` - Afghan Afghani
29
+ * - `AFA` - Afghan Afghani (1927–2002)
30
+ * - `ALL` - Albanian Lek
31
+ * - `ALK` - Albanian Lek (1946–1965)
32
+ * - `DZD` - Algerian Dinar
33
+ * - `ADP` - Andorran Peseta
34
+ * - `AOA` - Angolan Kwanza
35
+ * - `AOK` - Angolan Kwanza (1977–1991)
36
+ * - `AON` - Angolan New Kwanza (1990–2000)
37
+ * - `AOR` - Angolan Readjusted Kwanza (1995–1999)
38
+ * - `ARA` - Argentine Austral
39
+ * - `ARS` - Argentine Peso
40
+ * - `ARM` - Argentine Peso (1881–1970)
41
+ * - `ARP` - Argentine Peso (1983–1985)
42
+ * - `ARL` - Argentine Peso Ley (1970–1983)
43
+ * - `AMD` - Armenian Dram
44
+ * - `AWG` - Aruban Florin
45
+ * - `AUD` - Australian Dollar
46
+ * - `ATS` - Austrian Schilling
47
+ * - `AZN` - Azerbaijani Manat
48
+ * - `AZM` - Azerbaijani Manat (1993–2006)
49
+ * - `BSD` - Bahamian Dollar
50
+ * - `BHD` - Bahraini Dinar
51
+ * - `BDT` - Bangladeshi Taka
52
+ * - `BBD` - Barbadian Dollar
53
+ * - `BYN` - Belarusian Ruble
54
+ * - `BYB` - Belarusian Ruble (1994–1999)
55
+ * - `BYR` - Belarusian Ruble (2000–2016)
56
+ * - `BEF` - Belgian Franc
57
+ * - `BEC` - Belgian Franc (convertible)
58
+ * - `BEL` - Belgian Franc (financial)
59
+ * - `BZD` - Belize Dollar
60
+ * - `BMD` - Bermudan Dollar
61
+ * - `BTN` - Bhutanese Ngultrum
62
+ * - `BOB` - Bolivian Boliviano
63
+ * - `BOL` - Bolivian Boliviano (1863–1963)
64
+ * - `BOV` - Bolivian Mvdol
65
+ * - `BOP` - Bolivian Peso
66
+ * - `BAM` - Bosnia-Herzegovina Convertible Mark
67
+ * - `BAD` - Bosnia-Herzegovina Dinar (1992–1994)
68
+ * - `BAN` - Bosnia-Herzegovina New Dinar (1994–1997)
69
+ * - `BWP` - Botswanan Pula
70
+ * - `BRC` - Brazilian Cruzado (1986–1989)
71
+ * - `BRZ` - Brazilian Cruzeiro (1942–1967)
72
+ * - `BRE` - Brazilian Cruzeiro (1990–1993)
73
+ * - `BRR` - Brazilian Cruzeiro (1993–1994)
74
+ * - `BRN` - Brazilian New Cruzado (1989–1990)
75
+ * - `BRB` - Brazilian New Cruzeiro (1967–1986)
76
+ * - `BRL` - Brazilian Real
77
+ * - `GBP` - British Pound
78
+ * - `BND` - Brunei Dollar
79
+ * - `BGL` - Bulgarian Hard Lev
80
+ * - `BGN` - Bulgarian Lev
81
+ * - `BGO` - Bulgarian Lev (1879–1952)
82
+ * - `BGM` - Bulgarian Socialist Lev
83
+ * - `BUK` - Burmese Kyat
84
+ * - `BIF` - Burundian Franc
85
+ * - `XPF` - CFP Franc
86
+ * - `KHR` - Cambodian Riel
87
+ * - `CAD` - Canadian Dollar
88
+ * - `CVE` - Cape Verdean Escudo
89
+ * - `KYD` - Cayman Islands Dollar
90
+ * - `XAF` - Central African CFA Franc
91
+ * - `CLE` - Chilean Escudo
92
+ * - `CLP` - Chilean Peso
93
+ * - `CLF` - Chilean Unit of Account (UF)
94
+ * - `CNX` - Chinese People’s Bank Dollar
95
+ * - `CNY` - Chinese Yuan
96
+ * - `CNH` - Chinese Yuan (offshore)
97
+ * - `COP` - Colombian Peso
98
+ * - `COU` - Colombian Real Value Unit
99
+ * - `KMF` - Comorian Franc
100
+ * - `CDF` - Congolese Franc
101
+ * - `CRC` - Costa Rican Colón
102
+ * - `HRD` - Croatian Dinar
103
+ * - `HRK` - Croatian Kuna
104
+ * - `CUC` - Cuban Convertible Peso
105
+ * - `CUP` - Cuban Peso
106
+ * - `CYP` - Cypriot Pound
107
+ * - `CZK` - Czech Koruna
108
+ * - `CSK` - Czechoslovak Hard Koruna
109
+ * - `DKK` - Danish Krone
110
+ * - `DJF` - Djiboutian Franc
111
+ * - `DOP` - Dominican Peso
112
+ * - `NLG` - Dutch Guilder
113
+ * - `XCD` - East Caribbean Dollar
114
+ * - `DDM` - East German Mark
115
+ * - `ECS` - Ecuadorian Sucre
116
+ * - `ECV` - Ecuadorian Unit of Constant Value
117
+ * - `EGP` - Egyptian Pound
118
+ * - `GQE` - Equatorial Guinean Ekwele
119
+ * - `ERN` - Eritrean Nakfa
120
+ * - `EEK` - Estonian Kroon
121
+ * - `ETB` - Ethiopian Birr
122
+ * - `EUR` - Euro
123
+ * - `XBA` - European Composite Unit
124
+ * - `XEU` - European Currency Unit
125
+ * - `XBB` - European Monetary Unit
126
+ * - `XBC` - European Unit of Account (XBC)
127
+ * - `XBD` - European Unit of Account (XBD)
128
+ * - `FKP` - Falkland Islands Pound
129
+ * - `FJD` - Fijian Dollar
130
+ * - `FIM` - Finnish Markka
131
+ * - `FRF` - French Franc
132
+ * - `XFO` - French Gold Franc
133
+ * - `XFU` - French UIC-Franc
134
+ * - `GMD` - Gambian Dalasi
135
+ * - `GEK` - Georgian Kupon Larit
136
+ * - `GEL` - Georgian Lari
137
+ * - `DEM` - German Mark
138
+ * - `GHS` - Ghanaian Cedi
139
+ * - `GHC` - Ghanaian Cedi (1979–2007)
140
+ * - `GIP` - Gibraltar Pound
141
+ * - `XAU` - Gold
142
+ * - `GRD` - Greek Drachma
143
+ * - `GTQ` - Guatemalan Quetzal
144
+ * - `GWP` - Guinea-Bissau Peso
145
+ * - `GNF` - Guinean Franc
146
+ * - `GNS` - Guinean Syli
147
+ * - `GYD` - Guyanaese Dollar
148
+ * - `HTG` - Haitian Gourde
149
+ * - `HNL` - Honduran Lempira
150
+ * - `HKD` - Hong Kong Dollar
151
+ * - `HUF` - Hungarian Forint
152
+ * - `IMP` - IMP
153
+ * - `ISK` - Icelandic Króna
154
+ * - `ISJ` - Icelandic Króna (1918–1981)
155
+ * - `INR` - Indian Rupee
156
+ * - `IDR` - Indonesian Rupiah
157
+ * - `IRR` - Iranian Rial
158
+ * - `IQD` - Iraqi Dinar
159
+ * - `IEP` - Irish Pound
160
+ * - `ILS` - Israeli New Shekel
161
+ * - `ILP` - Israeli Pound
162
+ * - `ILR` - Israeli Shekel (1980–1985)
163
+ * - `ITL` - Italian Lira
164
+ * - `JMD` - Jamaican Dollar
165
+ * - `JPY` - Japanese Yen
166
+ * - `JOD` - Jordanian Dinar
167
+ * - `KZT` - Kazakhstani Tenge
168
+ * - `KES` - Kenyan Shilling
169
+ * - `KWD` - Kuwaiti Dinar
170
+ * - `KGS` - Kyrgystani Som
171
+ * - `LAK` - Laotian Kip
172
+ * - `LVL` - Latvian Lats
173
+ * - `LVR` - Latvian Ruble
174
+ * - `LBP` - Lebanese Pound
175
+ * - `LSL` - Lesotho Loti
176
+ * - `LRD` - Liberian Dollar
177
+ * - `LYD` - Libyan Dinar
178
+ * - `LTL` - Lithuanian Litas
179
+ * - `LTT` - Lithuanian Talonas
180
+ * - `LUL` - Luxembourg Financial Franc
181
+ * - `LUC` - Luxembourgian Convertible Franc
182
+ * - `LUF` - Luxembourgian Franc
183
+ * - `MOP` - Macanese Pataca
184
+ * - `MKD` - Macedonian Denar
185
+ * - `MKN` - Macedonian Denar (1992–1993)
186
+ * - `MGA` - Malagasy Ariary
187
+ * - `MGF` - Malagasy Franc
188
+ * - `MWK` - Malawian Kwacha
189
+ * - `MYR` - Malaysian Ringgit
190
+ * - `MVR` - Maldivian Rufiyaa
191
+ * - `MVP` - Maldivian Rupee (1947–1981)
192
+ * - `MLF` - Malian Franc
193
+ * - `MTL` - Maltese Lira
194
+ * - `MTP` - Maltese Pound
195
+ * - `MRU` - Mauritanian Ouguiya
196
+ * - `MRO` - Mauritanian Ouguiya (1973–2017)
197
+ * - `MUR` - Mauritian Rupee
198
+ * - `MXV` - Mexican Investment Unit
199
+ * - `MXN` - Mexican Peso
200
+ * - `MXP` - Mexican Silver Peso (1861–1992)
201
+ * - `MDC` - Moldovan Cupon
202
+ * - `MDL` - Moldovan Leu
203
+ * - `MCF` - Monegasque Franc
204
+ * - `MNT` - Mongolian Tugrik
205
+ * - `MAD` - Moroccan Dirham
206
+ * - `MAF` - Moroccan Franc
207
+ * - `MZE` - Mozambican Escudo
208
+ * - `MZN` - Mozambican Metical
209
+ * - `MZM` - Mozambican Metical (1980–2006)
210
+ * - `MMK` - Myanmar Kyat
211
+ * - `NAD` - Namibian Dollar
212
+ * - `NPR` - Nepalese Rupee
213
+ * - `ANG` - Netherlands Antillean Guilder
214
+ * - `TWD` - New Taiwan Dollar
215
+ * - `NZD` - New Zealand Dollar
216
+ * - `NIO` - Nicaraguan Córdoba
217
+ * - `NIC` - Nicaraguan Córdoba (1988–1991)
218
+ * - `NGN` - Nigerian Naira
219
+ * - `KPW` - North Korean Won
220
+ * - `NOK` - Norwegian Krone
221
+ * - `OMR` - Omani Rial
222
+ * - `PKR` - Pakistani Rupee
223
+ * - `XPD` - Palladium
224
+ * - `PAB` - Panamanian Balboa
225
+ * - `PGK` - Papua New Guinean Kina
226
+ * - `PYG` - Paraguayan Guarani
227
+ * - `PEI` - Peruvian Inti
228
+ * - `PEN` - Peruvian Sol
229
+ * - `PES` - Peruvian Sol (1863–1965)
230
+ * - `PHP` - Philippine Peso
231
+ * - `XPT` - Platinum
232
+ * - `PLN` - Polish Zloty
233
+ * - `PLZ` - Polish Zloty (1950–1995)
234
+ * - `PTE` - Portuguese Escudo
235
+ * - `GWE` - Portuguese Guinea Escudo
236
+ * - `QAR` - Qatari Rial
237
+ * - `XRE` - RINET Funds
238
+ * - `RHD` - Rhodesian Dollar
239
+ * - `RON` - Romanian Leu
240
+ * - `ROL` - Romanian Leu (1952–2006)
241
+ * - `RUB` - Russian Ruble
242
+ * - `RUR` - Russian Ruble (1991–1998)
243
+ * - `RWF` - Rwandan Franc
244
+ * - `SVC` - Salvadoran Colón
245
+ * - `WST` - Samoan Tala
246
+ * - `SAR` - Saudi Riyal
247
+ * - `RSD` - Serbian Dinar
248
+ * - `CSD` - Serbian Dinar (2002–2006)
249
+ * - `SCR` - Seychellois Rupee
250
+ * - `SLL` - Sierra Leonean Leone
251
+ * - `XAG` - Silver
252
+ * - `SGD` - Singapore Dollar
253
+ * - `SKK` - Slovak Koruna
254
+ * - `SIT` - Slovenian Tolar
255
+ * - `SBD` - Solomon Islands Dollar
256
+ * - `SOS` - Somali Shilling
257
+ * - `ZAR` - South African Rand
258
+ * - `ZAL` - South African Rand (financial)
259
+ * - `KRH` - South Korean Hwan (1953–1962)
260
+ * - `KRW` - South Korean Won
261
+ * - `KRO` - South Korean Won (1945–1953)
262
+ * - `SSP` - South Sudanese Pound
263
+ * - `SUR` - Soviet Rouble
264
+ * - `ESP` - Spanish Peseta
265
+ * - `ESA` - Spanish Peseta (A account)
266
+ * - `ESB` - Spanish Peseta (convertible account)
267
+ * - `XDR` - Special Drawing Rights
268
+ * - `LKR` - Sri Lankan Rupee
269
+ * - `SHP` - St. Helena Pound
270
+ * - `XSU` - Sucre
271
+ * - `SDD` - Sudanese Dinar (1992–2007)
272
+ * - `SDG` - Sudanese Pound
273
+ * - `SDP` - Sudanese Pound (1957–1998)
274
+ * - `SRD` - Surinamese Dollar
275
+ * - `SRG` - Surinamese Guilder
276
+ * - `SZL` - Swazi Lilangeni
277
+ * - `SEK` - Swedish Krona
278
+ * - `CHF` - Swiss Franc
279
+ * - `SYP` - Syrian Pound
280
+ * - `STN` - São Tomé & Príncipe Dobra
281
+ * - `STD` - São Tomé & Príncipe Dobra (1977–2017)
282
+ * - `TVD` - TVD
283
+ * - `TJR` - Tajikistani Ruble
284
+ * - `TJS` - Tajikistani Somoni
285
+ * - `TZS` - Tanzanian Shilling
286
+ * - `XTS` - Testing Currency Code
287
+ * - `THB` - Thai Baht
288
+ * - `XXX` - The codes assigned for transactions where no currency is involved
289
+ * - `TPE` - Timorese Escudo
290
+ * - `TOP` - Tongan Paʻanga
291
+ * - `TTD` - Trinidad & Tobago Dollar
292
+ * - `TND` - Tunisian Dinar
293
+ * - `TRY` - Turkish Lira
294
+ * - `TRL` - Turkish Lira (1922–2005)
295
+ * - `TMT` - Turkmenistani Manat
296
+ * - `TMM` - Turkmenistani Manat (1993–2009)
297
+ * - `USD` - US Dollar
298
+ * - `USN` - US Dollar (Next day)
299
+ * - `USS` - US Dollar (Same day)
300
+ * - `UGX` - Ugandan Shilling
301
+ * - `UGS` - Ugandan Shilling (1966–1987)
302
+ * - `UAH` - Ukrainian Hryvnia
303
+ * - `UAK` - Ukrainian Karbovanets
304
+ * - `AED` - United Arab Emirates Dirham
305
+ * - `UYW` - Uruguayan Nominal Wage Index Unit
306
+ * - `UYU` - Uruguayan Peso
307
+ * - `UYP` - Uruguayan Peso (1975–1993)
308
+ * - `UYI` - Uruguayan Peso (Indexed Units)
309
+ * - `UZS` - Uzbekistani Som
310
+ * - `VUV` - Vanuatu Vatu
311
+ * - `VES` - Venezuelan Bolívar
312
+ * - `VEB` - Venezuelan Bolívar (1871–2008)
313
+ * - `VEF` - Venezuelan Bolívar (2008–2018)
314
+ * - `VND` - Vietnamese Dong
315
+ * - `VNN` - Vietnamese Dong (1978–1985)
316
+ * - `CHE` - WIR Euro
317
+ * - `CHW` - WIR Franc
318
+ * - `XOF` - West African CFA Franc
319
+ * - `YDD` - Yemeni Dinar
320
+ * - `YER` - Yemeni Rial
321
+ * - `YUN` - Yugoslavian Convertible Dinar (1990–1992)
322
+ * - `YUD` - Yugoslavian Hard Dinar (1966–1990)
323
+ * - `YUM` - Yugoslavian New Dinar (1994–2002)
324
+ * - `YUR` - Yugoslavian Reformed Dinar (1992–1993)
325
+ * - `ZWN` - ZWN
326
+ * - `ZRN` - Zairean New Zaire (1993–1998)
327
+ * - `ZRZ` - Zairean Zaire (1971–1993)
328
+ * - `ZMW` - Zambian Kwacha
329
+ * - `ZMK` - Zambian Kwacha (1968–2012)
330
+ * - `ZWD` - Zimbabwean Dollar (1980–2008)
331
+ * - `ZWR` - Zimbabwean Dollar (2008)
332
+ * - `ZWL` - Zimbabwean Dollar (2009)
330
333
  */
331
334
  currency?: Merge.accounting.JournalLineRequestCurrency;
332
335
  /** The company the journal entry belongs to. */