@mergeapi/merge-node-client 1.0.3 → 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 (5012) 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/RemoteData.d.ts +1 -1
  312. package/api/resources/accounting/types/RemoteKey.d.ts +3 -0
  313. package/api/resources/accounting/types/RemoteResponse.d.ts +3 -0
  314. package/api/resources/accounting/types/ReportItem.d.ts +3 -0
  315. package/api/resources/accounting/types/RequestFormatEnum.d.ts +3 -3
  316. package/api/resources/accounting/types/ResponseTypeEnum.d.ts +2 -2
  317. package/api/resources/accounting/types/RoleEnum.d.ts +6 -6
  318. package/api/resources/accounting/types/SelectiveSyncConfigurationsUsageEnum.d.ts +2 -2
  319. package/api/resources/accounting/types/Status7D1Enum.d.ts +2 -2
  320. package/api/resources/accounting/types/SyncStatus.d.ts +3 -0
  321. package/api/resources/accounting/types/SyncStatusStatusEnum.d.ts +6 -6
  322. package/api/resources/accounting/types/TaxRate.d.ts +3 -0
  323. package/api/resources/accounting/types/TrackingCategory.d.ts +7 -4
  324. package/api/resources/accounting/types/TrackingCategoryCategoryType.d.ts +2 -2
  325. package/api/resources/accounting/types/TrackingCategoryStatus.d.ts +2 -2
  326. package/api/resources/accounting/types/Transaction.d.ts +317 -313
  327. package/api/resources/accounting/types/TransactionCurrency.d.ts +306 -306
  328. package/api/resources/accounting/types/TransactionLineItem.d.ts +309 -306
  329. package/api/resources/accounting/types/TransactionLineItemCurrency.d.ts +306 -306
  330. package/api/resources/accounting/types/VendorCredit.d.ts +310 -307
  331. package/api/resources/accounting/types/VendorCreditCurrency.d.ts +306 -306
  332. package/api/resources/accounting/types/VendorCreditLine.d.ts +3 -0
  333. package/api/resources/accounting/types/index.d.ts +43 -76
  334. package/api/resources/accounting/types/index.js +43 -76
  335. package/api/resources/ats/client/Client.d.ts +1 -0
  336. package/api/resources/ats/index.d.ts +1 -1
  337. package/api/resources/ats/index.js +1 -1
  338. package/api/resources/ats/resources/accountDetails/client/Client.d.ts +4 -0
  339. package/api/resources/ats/resources/accountDetails/client/Client.js +5 -1
  340. package/api/resources/ats/resources/accountToken/client/Client.d.ts +1 -0
  341. package/api/resources/ats/resources/accountToken/client/Client.js +2 -1
  342. package/api/resources/ats/resources/activities/client/Client.d.ts +18 -0
  343. package/api/resources/ats/resources/activities/client/Client.js +47 -27
  344. package/api/resources/ats/resources/activities/client/requests/ActivitiesListRequest.d.ts +8 -0
  345. package/api/resources/ats/resources/activities/client/requests/ActivitiesRetrieveRequest.d.ts +8 -0
  346. package/api/resources/ats/resources/activities/index.d.ts +1 -0
  347. package/api/resources/ats/resources/activities/index.js +1 -0
  348. package/api/resources/ats/resources/activities/types/index.d.ts +4 -0
  349. package/api/resources/ats/resources/activities/types/index.js +20 -0
  350. package/api/resources/ats/resources/applications/client/Client.d.ts +17 -0
  351. package/api/resources/ats/resources/applications/client/Client.js +54 -34
  352. package/api/resources/ats/resources/applications/client/requests/ApplicationsListRequest.d.ts +6 -0
  353. package/api/resources/ats/resources/applications/client/requests/ApplicationsMetaPostRetrieveRequest.d.ts +4 -0
  354. package/api/resources/ats/resources/applications/client/requests/ApplicationsRetrieveRequest.d.ts +6 -0
  355. package/api/resources/ats/resources/applications/client/requests/UpdateApplicationStageRequest.d.ts +4 -0
  356. package/api/resources/ats/resources/applications/index.d.ts +1 -0
  357. package/api/resources/ats/resources/applications/index.js +1 -0
  358. package/api/resources/ats/resources/applications/types/index.d.ts +2 -0
  359. package/api/resources/ats/resources/applications/types/index.js +18 -0
  360. package/api/resources/ats/resources/asyncPassthrough/client/Client.d.ts +15 -0
  361. package/api/resources/ats/resources/asyncPassthrough/client/Client.js +18 -2
  362. package/api/resources/ats/resources/attachments/client/Client.d.ts +18 -0
  363. package/api/resources/ats/resources/attachments/client/Client.js +47 -27
  364. package/api/resources/ats/resources/attachments/client/requests/AttachmentsListRequest.d.ts +8 -0
  365. package/api/resources/ats/resources/attachments/client/requests/AttachmentsRetrieveRequest.d.ts +8 -0
  366. package/api/resources/ats/resources/auditTrail/client/Client.d.ts +4 -0
  367. package/api/resources/ats/resources/auditTrail/client/Client.js +12 -9
  368. package/api/resources/ats/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +4 -0
  369. package/api/resources/ats/resources/availableActions/client/Client.d.ts +1 -0
  370. package/api/resources/ats/resources/availableActions/client/Client.js +2 -1
  371. package/api/resources/ats/resources/candidates/client/Client.d.ts +23 -0
  372. package/api/resources/ats/resources/candidates/client/Client.js +60 -32
  373. package/api/resources/ats/resources/candidates/client/requests/CandidatesListRequest.d.ts +6 -0
  374. package/api/resources/ats/resources/candidates/client/requests/CandidatesRetrieveRequest.d.ts +6 -0
  375. package/api/resources/ats/resources/candidates/client/requests/IgnoreCommonModelRequest.d.ts +7 -0
  376. package/api/resources/ats/resources/candidates/index.d.ts +1 -0
  377. package/api/resources/ats/resources/candidates/index.js +1 -0
  378. package/api/resources/ats/resources/candidates/types/index.d.ts +2 -0
  379. package/api/resources/ats/resources/candidates/types/index.js +18 -0
  380. package/api/resources/ats/resources/deleteAccount/client/Client.d.ts +4 -0
  381. package/api/resources/ats/resources/deleteAccount/client/Client.js +5 -1
  382. package/api/resources/ats/resources/departments/client/Client.d.ts +7 -0
  383. package/api/resources/ats/resources/departments/client/Client.js +22 -15
  384. package/api/resources/ats/resources/departments/client/requests/DepartmentsListRequest.d.ts +4 -0
  385. package/api/resources/ats/resources/departments/client/requests/DepartmentsRetrieveRequest.d.ts +4 -0
  386. package/api/resources/ats/resources/eeocs/client/Client.d.ts +15 -0
  387. package/api/resources/ats/resources/eeocs/client/Client.js +37 -22
  388. package/api/resources/ats/resources/eeocs/client/requests/EeocsListRequest.d.ts +8 -0
  389. package/api/resources/ats/resources/eeocs/client/requests/EeocsRetrieveRequest.d.ts +8 -0
  390. package/api/resources/ats/resources/eeocs/index.d.ts +1 -0
  391. package/api/resources/ats/resources/eeocs/index.js +1 -0
  392. package/api/resources/ats/resources/eeocs/types/index.d.ts +4 -0
  393. package/api/resources/ats/resources/eeocs/types/index.js +20 -0
  394. package/api/resources/ats/resources/forceResync/client/Client.d.ts +4 -0
  395. package/api/resources/ats/resources/forceResync/client/Client.js +5 -1
  396. package/api/resources/ats/resources/generateKey/client/Client.d.ts +6 -0
  397. package/api/resources/ats/resources/generateKey/client/Client.js +7 -1
  398. package/api/resources/ats/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +6 -0
  399. package/api/resources/ats/resources/index.d.ts +20 -10
  400. package/api/resources/ats/resources/index.js +21 -11
  401. package/api/resources/ats/resources/interviews/client/Client.d.ts +18 -0
  402. package/api/resources/ats/resources/interviews/client/Client.js +50 -30
  403. package/api/resources/ats/resources/interviews/client/requests/InterviewsListRequest.d.ts +8 -0
  404. package/api/resources/ats/resources/interviews/client/requests/InterviewsRetrieveRequest.d.ts +8 -0
  405. package/api/resources/ats/resources/interviews/index.d.ts +1 -0
  406. package/api/resources/ats/resources/interviews/index.js +1 -0
  407. package/api/resources/ats/resources/interviews/types/index.d.ts +2 -0
  408. package/api/resources/ats/resources/interviews/types/index.js +18 -0
  409. package/api/resources/ats/resources/issues/client/Client.d.ts +9 -0
  410. package/api/resources/ats/resources/issues/client/Client.js +26 -17
  411. package/api/resources/ats/resources/issues/client/requests/IssuesListRequest.d.ts +8 -2
  412. package/api/resources/ats/resources/issues/index.d.ts +1 -0
  413. package/api/resources/ats/resources/issues/index.js +1 -0
  414. package/api/resources/ats/resources/issues/types/index.d.ts +1 -0
  415. package/api/resources/ats/resources/issues/types/index.js +17 -0
  416. package/api/resources/ats/resources/jobInterviewStages/client/Client.d.ts +11 -0
  417. package/api/resources/ats/resources/jobInterviewStages/client/Client.js +29 -18
  418. package/api/resources/ats/resources/jobInterviewStages/client/requests/JobInterviewStagesListRequest.d.ts +6 -0
  419. package/api/resources/ats/resources/jobInterviewStages/client/requests/JobInterviewStagesRetrieveRequest.d.ts +6 -0
  420. package/api/resources/ats/resources/jobs/client/Client.d.ts +21 -0
  421. package/api/resources/ats/resources/jobs/client/Client.js +53 -31
  422. package/api/resources/ats/resources/jobs/client/requests/JobsListRequest.d.ts +14 -5
  423. package/api/resources/ats/resources/jobs/client/requests/JobsRetrieveRequest.d.ts +8 -0
  424. package/api/resources/ats/resources/jobs/client/requests/JobsScreeningQuestionsListRequest.d.ts +6 -0
  425. package/api/resources/ats/resources/jobs/index.d.ts +1 -0
  426. package/api/resources/ats/resources/jobs/index.js +1 -0
  427. package/api/resources/ats/resources/jobs/types/index.d.ts +4 -0
  428. package/api/resources/ats/resources/jobs/types/index.js +20 -0
  429. package/api/resources/ats/resources/linkToken/client/Client.d.ts +1 -0
  430. package/api/resources/ats/resources/linkToken/client/Client.js +2 -1
  431. package/api/resources/ats/resources/linkedAccounts/client/Client.d.ts +6 -0
  432. package/api/resources/ats/resources/linkedAccounts/client/Client.js +21 -16
  433. package/api/resources/ats/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.d.ts +13 -7
  434. package/api/resources/ats/resources/linkedAccounts/index.d.ts +1 -0
  435. package/api/resources/ats/resources/linkedAccounts/index.js +1 -0
  436. package/api/resources/ats/resources/linkedAccounts/types/index.d.ts +1 -0
  437. package/api/resources/ats/resources/linkedAccounts/types/index.js +17 -0
  438. package/api/resources/ats/resources/offers/client/Client.d.ts +15 -0
  439. package/api/resources/ats/resources/offers/client/Client.js +38 -23
  440. package/api/resources/ats/resources/offers/client/requests/OffersListRequest.d.ts +8 -0
  441. package/api/resources/ats/resources/offers/client/requests/OffersRetrieveRequest.d.ts +8 -0
  442. package/api/resources/ats/resources/offers/index.d.ts +1 -0
  443. package/api/resources/ats/resources/offers/index.js +1 -0
  444. package/api/resources/ats/resources/offers/types/index.d.ts +2 -0
  445. package/api/resources/ats/resources/offers/types/index.js +18 -0
  446. package/api/resources/ats/resources/offices/client/Client.d.ts +7 -0
  447. package/api/resources/ats/resources/offices/client/Client.js +22 -15
  448. package/api/resources/ats/resources/offices/client/requests/OfficesListRequest.d.ts +4 -0
  449. package/api/resources/ats/resources/offices/client/requests/OfficesRetrieveRequest.d.ts +4 -0
  450. package/api/resources/ats/resources/passthrough/client/Client.d.ts +1 -0
  451. package/api/resources/ats/resources/passthrough/client/Client.js +2 -1
  452. package/api/resources/ats/resources/regenerateKey/client/Client.d.ts +6 -0
  453. package/api/resources/ats/resources/regenerateKey/client/Client.js +7 -1
  454. package/api/resources/ats/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +6 -0
  455. package/api/resources/ats/resources/rejectReasons/client/Client.d.ts +7 -0
  456. package/api/resources/ats/resources/rejectReasons/client/Client.js +22 -15
  457. package/api/resources/ats/resources/rejectReasons/client/requests/RejectReasonsListRequest.d.ts +4 -0
  458. package/api/resources/ats/resources/rejectReasons/client/requests/RejectReasonsRetrieveRequest.d.ts +4 -0
  459. package/api/resources/ats/resources/scorecards/client/Client.d.ts +15 -0
  460. package/api/resources/ats/resources/scorecards/client/Client.js +39 -24
  461. package/api/resources/ats/resources/scorecards/client/requests/ScorecardsListRequest.d.ts +8 -0
  462. package/api/resources/ats/resources/scorecards/client/requests/ScorecardsRetrieveRequest.d.ts +8 -0
  463. package/api/resources/ats/resources/scorecards/index.d.ts +1 -0
  464. package/api/resources/ats/resources/scorecards/index.js +1 -0
  465. package/api/resources/ats/resources/scorecards/types/index.d.ts +2 -0
  466. package/api/resources/ats/resources/scorecards/types/index.js +18 -0
  467. package/api/resources/ats/resources/selectiveSync/client/Client.d.ts +14 -0
  468. package/api/resources/ats/resources/selectiveSync/client/Client.js +23 -8
  469. package/api/resources/ats/resources/selectiveSync/client/requests/LinkedAccountSelectiveSyncConfigurationListRequest.d.ts +8 -0
  470. package/api/resources/ats/resources/selectiveSync/client/requests/SelectiveSyncMetaListRequest.d.ts +4 -0
  471. package/api/resources/ats/resources/syncStatus/client/Client.d.ts +4 -0
  472. package/api/resources/ats/resources/syncStatus/client/Client.js +8 -5
  473. package/api/resources/ats/resources/syncStatus/client/requests/SyncStatusListRequest.d.ts +4 -0
  474. package/api/resources/ats/resources/tags/client/Client.d.ts +4 -0
  475. package/api/resources/ats/resources/tags/client/Client.js +15 -12
  476. package/api/resources/ats/resources/tags/client/requests/TagsListRequest.d.ts +4 -0
  477. package/api/resources/ats/resources/users/client/Client.d.ts +13 -0
  478. package/api/resources/ats/resources/users/client/Client.js +33 -20
  479. package/api/resources/ats/resources/users/client/requests/UsersListRequest.d.ts +7 -0
  480. package/api/resources/ats/resources/users/client/requests/UsersRetrieveRequest.d.ts +7 -0
  481. package/api/resources/ats/resources/webhookReceivers/client/Client.d.ts +4 -0
  482. package/api/resources/ats/resources/webhookReceivers/client/Client.js +7 -2
  483. package/api/resources/ats/types/AccessRoleEnum.d.ts +5 -5
  484. package/api/resources/ats/types/AccountDetailsAndActions.d.ts +3 -0
  485. package/api/resources/ats/types/AccountDetailsAndActionsStatusEnum.d.ts +3 -3
  486. package/api/resources/ats/types/Activity.d.ts +10 -6
  487. package/api/resources/ats/types/ActivityActivityType.d.ts +3 -3
  488. package/api/resources/ats/types/ActivityRequest.d.ts +10 -6
  489. package/api/resources/ats/types/ActivityRequestActivityType.d.ts +3 -3
  490. package/api/resources/ats/types/ActivityRequestVisibility.d.ts +3 -3
  491. package/api/resources/ats/types/ActivityTypeEnum.d.ts +3 -3
  492. package/api/resources/ats/types/ActivityVisibility.d.ts +3 -3
  493. package/api/resources/ats/types/Application.d.ts +3 -0
  494. package/api/resources/ats/types/ApplicationRequest.d.ts +3 -0
  495. package/api/resources/ats/types/Attachment.d.ts +8 -4
  496. package/api/resources/ats/types/AttachmentAttachmentType.d.ts +4 -4
  497. package/api/resources/ats/types/AttachmentRequest.d.ts +8 -4
  498. package/api/resources/ats/types/AttachmentRequestAttachmentType.d.ts +4 -4
  499. package/api/resources/ats/types/AttachmentTypeEnum.d.ts +4 -4
  500. package/api/resources/ats/types/AuditLogEvent.d.ts +36 -36
  501. package/api/resources/ats/types/AuditLogEventEventType.d.ts +30 -30
  502. package/api/resources/ats/types/AuditLogEventRole.d.ts +6 -6
  503. package/api/resources/ats/types/AvailableActions.d.ts +3 -0
  504. package/api/resources/ats/types/Candidate.d.ts +4 -0
  505. package/api/resources/ats/types/CandidateRequest.d.ts +4 -0
  506. package/api/resources/ats/types/CategoriesEnum.d.ts +7 -7
  507. package/api/resources/ats/types/CategoryEnum.d.ts +7 -7
  508. package/api/resources/ats/types/ConditionSchema.d.ts +8 -8
  509. package/api/resources/ats/types/ConditionSchemaConditionType.d.ts +7 -7
  510. package/api/resources/ats/types/ConditionTypeEnum.d.ts +7 -7
  511. package/api/resources/ats/types/DataPassthroughRequest.d.ts +3 -0
  512. package/api/resources/ats/types/Department.d.ts +4 -0
  513. package/api/resources/ats/types/DisabilityStatusEnum.d.ts +3 -3
  514. package/api/resources/ats/types/Eeoc.d.ts +23 -19
  515. package/api/resources/ats/types/EeocDisabilityStatus.d.ts +3 -3
  516. package/api/resources/ats/types/EeocGender.d.ts +5 -5
  517. package/api/resources/ats/types/EeocRace.d.ts +8 -8
  518. package/api/resources/ats/types/EeocVeteranStatus.d.ts +3 -3
  519. package/api/resources/ats/types/EmailAddress.d.ts +7 -3
  520. package/api/resources/ats/types/EmailAddressEmailAddressType.d.ts +3 -3
  521. package/api/resources/ats/types/EmailAddressRequest.d.ts +7 -3
  522. package/api/resources/ats/types/EmailAddressRequestEmailAddressType.d.ts +3 -3
  523. package/api/resources/ats/types/EmailAddressTypeEnum.d.ts +3 -3
  524. package/api/resources/ats/types/EnabledActionsEnum.d.ts +2 -2
  525. package/api/resources/ats/types/EncodingEnum.d.ts +3 -3
  526. package/api/resources/ats/types/EventTypeEnum.d.ts +30 -30
  527. package/api/resources/ats/types/GenderEnum.d.ts +5 -5
  528. package/api/resources/ats/types/Issue.d.ts +2 -2
  529. package/api/resources/ats/types/IssueStatus.d.ts +2 -2
  530. package/api/resources/ats/types/IssueStatusEnum.d.ts +2 -2
  531. package/api/resources/ats/types/Job.d.ts +9 -5
  532. package/api/resources/ats/types/JobInterviewStage.d.ts +4 -0
  533. package/api/resources/ats/types/JobStatus.d.ts +5 -5
  534. package/api/resources/ats/types/JobStatusEnum.d.ts +5 -5
  535. package/api/resources/ats/types/LinkedAccountCondition.d.ts +1 -1
  536. package/api/resources/ats/types/MethodEnum.d.ts +7 -7
  537. package/api/resources/ats/types/ModelOperation.d.ts +3 -0
  538. package/api/resources/ats/types/MultipartFormFieldRequest.d.ts +6 -3
  539. package/api/resources/ats/types/MultipartFormFieldRequestEncoding.d.ts +3 -3
  540. package/api/resources/ats/types/Offer.d.ts +13 -9
  541. package/api/resources/ats/types/OfferStatus.d.ts +9 -9
  542. package/api/resources/ats/types/OfferStatusEnum.d.ts +9 -9
  543. package/api/resources/ats/types/Office.d.ts +4 -0
  544. package/api/resources/ats/types/OverallRecommendationEnum.d.ts +5 -5
  545. package/api/resources/ats/types/PatchedCandidateRequest.d.ts +4 -0
  546. package/api/resources/ats/types/PhoneNumber.d.ts +9 -5
  547. package/api/resources/ats/types/PhoneNumberPhoneNumberType.d.ts +5 -5
  548. package/api/resources/ats/types/PhoneNumberRequest.d.ts +9 -5
  549. package/api/resources/ats/types/PhoneNumberRequestPhoneNumberType.d.ts +5 -5
  550. package/api/resources/ats/types/PhoneNumberTypeEnum.d.ts +5 -5
  551. package/api/resources/ats/types/RaceEnum.d.ts +8 -8
  552. package/api/resources/ats/types/ReasonEnum.d.ts +3 -3
  553. package/api/resources/ats/types/RejectReason.d.ts +4 -0
  554. package/api/resources/ats/types/RemoteData.d.ts +1 -1
  555. package/api/resources/ats/types/RemoteKey.d.ts +3 -0
  556. package/api/resources/ats/types/RemoteResponse.d.ts +3 -0
  557. package/api/resources/ats/types/RemoteUser.d.ts +9 -5
  558. package/api/resources/ats/types/RemoteUserAccessRole.d.ts +5 -5
  559. package/api/resources/ats/types/RequestFormatEnum.d.ts +3 -3
  560. package/api/resources/ats/types/ResponseTypeEnum.d.ts +2 -2
  561. package/api/resources/ats/types/RoleEnum.d.ts +6 -6
  562. package/api/resources/ats/types/ScheduledInterview.d.ts +7 -3
  563. package/api/resources/ats/types/ScheduledInterviewRequest.d.ts +7 -3
  564. package/api/resources/ats/types/ScheduledInterviewRequestStatus.d.ts +3 -3
  565. package/api/resources/ats/types/ScheduledInterviewStatus.d.ts +3 -3
  566. package/api/resources/ats/types/ScheduledInterviewStatusEnum.d.ts +3 -3
  567. package/api/resources/ats/types/Scorecard.d.ts +9 -5
  568. package/api/resources/ats/types/ScorecardOverallRecommendation.d.ts +5 -5
  569. package/api/resources/ats/types/ScreeningQuestion.d.ts +11 -8
  570. package/api/resources/ats/types/ScreeningQuestionOption.d.ts +3 -0
  571. package/api/resources/ats/types/ScreeningQuestionType.d.ts +8 -8
  572. package/api/resources/ats/types/SelectiveSyncConfigurationsUsageEnum.d.ts +2 -2
  573. package/api/resources/ats/types/SyncStatus.d.ts +3 -0
  574. package/api/resources/ats/types/SyncStatusStatusEnum.d.ts +6 -6
  575. package/api/resources/ats/types/Tag.d.ts +4 -0
  576. package/api/resources/ats/types/TypeEnum.d.ts +8 -8
  577. package/api/resources/ats/types/Url.d.ts +11 -7
  578. package/api/resources/ats/types/UrlRequest.d.ts +11 -7
  579. package/api/resources/ats/types/UrlRequestUrlType.d.ts +7 -7
  580. package/api/resources/ats/types/UrlTypeEnum.d.ts +7 -7
  581. package/api/resources/ats/types/UrlUrlType.d.ts +7 -7
  582. package/api/resources/ats/types/VeteranStatusEnum.d.ts +3 -3
  583. package/api/resources/ats/types/VisibilityEnum.d.ts +3 -3
  584. package/api/resources/ats/types/index.d.ts +29 -53
  585. package/api/resources/ats/types/index.js +29 -53
  586. package/api/resources/crm/client/Client.d.ts +1 -0
  587. package/api/resources/crm/index.d.ts +1 -1
  588. package/api/resources/crm/index.js +1 -1
  589. package/api/resources/crm/resources/accountDetails/client/Client.d.ts +4 -0
  590. package/api/resources/crm/resources/accountDetails/client/Client.js +5 -1
  591. package/api/resources/crm/resources/accountToken/client/Client.d.ts +1 -0
  592. package/api/resources/crm/resources/accountToken/client/Client.js +2 -1
  593. package/api/resources/crm/resources/accounts/client/Client.d.ts +45 -0
  594. package/api/resources/crm/resources/accounts/client/Client.js +88 -38
  595. package/api/resources/crm/resources/accounts/client/requests/AccountsListRequest.d.ts +6 -0
  596. package/api/resources/crm/resources/accounts/client/requests/AccountsRemoteFieldClassesListRequest.d.ts +4 -0
  597. package/api/resources/crm/resources/accounts/client/requests/AccountsRetrieveRequest.d.ts +6 -0
  598. package/api/resources/crm/resources/accounts/client/requests/CrmAccountEndpointRequest.d.ts +13 -0
  599. package/api/resources/crm/resources/accounts/client/requests/PatchedCrmAccountEndpointRequest.d.ts +14 -0
  600. package/api/resources/crm/resources/associationTypes/client/Client.d.ts +14 -0
  601. package/api/resources/crm/resources/associationTypes/client/Client.js +38 -22
  602. package/api/resources/crm/resources/associationTypes/client/requests/CustomObjectClassesAssociationTypesListRequest.d.ts +6 -0
  603. package/api/resources/crm/resources/associationTypes/client/requests/CustomObjectClassesAssociationTypesRetrieveRequest.d.ts +6 -0
  604. package/api/resources/crm/resources/associations/client/Client.d.ts +9 -0
  605. package/api/resources/crm/resources/associations/client/Client.js +27 -18
  606. package/api/resources/crm/resources/associations/client/requests/CustomObjectClassesCustomObjectsAssociationsListRequest.d.ts +6 -0
  607. package/api/resources/crm/resources/associations/client/requests/CustomObjectClassesCustomObjectsAssociationsUpdateRequest.d.ts +4 -0
  608. package/api/resources/crm/resources/asyncPassthrough/client/Client.d.ts +15 -0
  609. package/api/resources/crm/resources/asyncPassthrough/client/Client.js +18 -2
  610. package/api/resources/crm/resources/auditTrail/client/Client.d.ts +4 -0
  611. package/api/resources/crm/resources/auditTrail/client/Client.js +12 -9
  612. package/api/resources/crm/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +4 -0
  613. package/api/resources/crm/resources/availableActions/client/Client.d.ts +1 -0
  614. package/api/resources/crm/resources/availableActions/client/Client.js +2 -1
  615. package/api/resources/crm/resources/contacts/client/Client.d.ts +75 -0
  616. package/api/resources/crm/resources/contacts/client/Client.js +121 -40
  617. package/api/resources/crm/resources/contacts/client/requests/ContactsListRequest.d.ts +6 -0
  618. package/api/resources/crm/resources/contacts/client/requests/ContactsRemoteFieldClassesListRequest.d.ts +4 -0
  619. package/api/resources/crm/resources/contacts/client/requests/ContactsRetrieveRequest.d.ts +6 -0
  620. package/api/resources/crm/resources/contacts/client/requests/CrmContactEndpointRequest.d.ts +25 -0
  621. package/api/resources/crm/resources/contacts/client/requests/PatchedCrmContactEndpointRequest.d.ts +26 -0
  622. package/api/resources/crm/resources/contacts/index.d.ts +1 -0
  623. package/api/resources/crm/resources/contacts/index.js +1 -0
  624. package/api/resources/crm/resources/contacts/types/index.d.ts +2 -0
  625. package/api/resources/crm/resources/contacts/types/index.js +18 -0
  626. package/api/resources/crm/resources/customObjectClasses/client/Client.d.ts +11 -0
  627. package/api/resources/crm/resources/customObjectClasses/client/Client.js +28 -17
  628. package/api/resources/crm/resources/customObjectClasses/client/requests/CustomObjectClassesListRequest.d.ts +6 -0
  629. package/api/resources/crm/resources/customObjectClasses/client/requests/CustomObjectClassesRetrieveRequest.d.ts +6 -0
  630. package/api/resources/crm/resources/customObjects/client/Client.d.ts +20 -0
  631. package/api/resources/crm/resources/customObjects/client/Client.js +46 -23
  632. package/api/resources/crm/resources/customObjects/client/requests/CrmCustomObjectEndpointRequest.d.ts +8 -0
  633. package/api/resources/crm/resources/customObjects/client/requests/CustomObjectClassesCustomObjectsListRequest.d.ts +4 -0
  634. package/api/resources/crm/resources/customObjects/client/requests/CustomObjectClassesCustomObjectsRetrieveRequest.d.ts +4 -0
  635. package/api/resources/crm/resources/deleteAccount/client/Client.d.ts +4 -0
  636. package/api/resources/crm/resources/deleteAccount/client/Client.js +5 -1
  637. package/api/resources/crm/resources/engagementTypes/client/Client.d.ts +10 -0
  638. package/api/resources/crm/resources/engagementTypes/client/Client.js +35 -24
  639. package/api/resources/crm/resources/engagementTypes/client/requests/EngagementTypesListRequest.d.ts +4 -0
  640. package/api/resources/crm/resources/engagementTypes/client/requests/EngagementTypesRemoteFieldClassesListRequest.d.ts +4 -0
  641. package/api/resources/crm/resources/engagementTypes/client/requests/EngagementTypesRetrieveRequest.d.ts +4 -0
  642. package/api/resources/crm/resources/engagements/client/Client.d.ts +43 -0
  643. package/api/resources/crm/resources/engagements/client/Client.js +86 -38
  644. package/api/resources/crm/resources/engagements/client/requests/EngagementEndpointRequest.d.ts +11 -0
  645. package/api/resources/crm/resources/engagements/client/requests/EngagementsListRequest.d.ts +6 -0
  646. package/api/resources/crm/resources/engagements/client/requests/EngagementsRemoteFieldClassesListRequest.d.ts +4 -0
  647. package/api/resources/crm/resources/engagements/client/requests/EngagementsRetrieveRequest.d.ts +6 -0
  648. package/api/resources/crm/resources/engagements/client/requests/PatchedEngagementEndpointRequest.d.ts +14 -0
  649. package/api/resources/crm/resources/engagements/index.d.ts +1 -0
  650. package/api/resources/crm/resources/engagements/index.js +1 -0
  651. package/api/resources/crm/resources/engagements/types/index.d.ts +2 -0
  652. package/api/resources/crm/resources/engagements/types/index.js +18 -0
  653. package/api/resources/crm/resources/forceResync/client/Client.d.ts +4 -0
  654. package/api/resources/crm/resources/forceResync/client/Client.js +5 -1
  655. package/api/resources/crm/resources/generateKey/client/Client.d.ts +6 -0
  656. package/api/resources/crm/resources/generateKey/client/Client.js +7 -1
  657. package/api/resources/crm/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +6 -0
  658. package/api/resources/crm/resources/index.d.ts +16 -8
  659. package/api/resources/crm/resources/index.js +17 -9
  660. package/api/resources/crm/resources/issues/client/Client.d.ts +9 -0
  661. package/api/resources/crm/resources/issues/client/Client.js +26 -17
  662. package/api/resources/crm/resources/issues/client/requests/IssuesListRequest.d.ts +8 -2
  663. package/api/resources/crm/resources/issues/index.d.ts +1 -0
  664. package/api/resources/crm/resources/issues/index.js +1 -0
  665. package/api/resources/crm/resources/issues/types/index.d.ts +1 -0
  666. package/api/resources/crm/resources/issues/types/index.js +17 -0
  667. package/api/resources/crm/resources/leads/client/Client.d.ts +44 -0
  668. package/api/resources/crm/resources/leads/client/Client.js +83 -36
  669. package/api/resources/crm/resources/leads/client/requests/LeadEndpointRequest.d.ts +28 -0
  670. package/api/resources/crm/resources/leads/client/requests/LeadsListRequest.d.ts +6 -0
  671. package/api/resources/crm/resources/leads/client/requests/LeadsRemoteFieldClassesListRequest.d.ts +4 -0
  672. package/api/resources/crm/resources/leads/client/requests/LeadsRetrieveRequest.d.ts +6 -0
  673. package/api/resources/crm/resources/leads/index.d.ts +1 -0
  674. package/api/resources/crm/resources/leads/index.js +1 -0
  675. package/api/resources/crm/resources/leads/types/index.d.ts +2 -0
  676. package/api/resources/crm/resources/leads/types/index.js +18 -0
  677. package/api/resources/crm/resources/linkToken/client/Client.d.ts +1 -0
  678. package/api/resources/crm/resources/linkToken/client/Client.js +2 -1
  679. package/api/resources/crm/resources/linkedAccounts/client/Client.d.ts +6 -0
  680. package/api/resources/crm/resources/linkedAccounts/client/Client.js +21 -16
  681. package/api/resources/crm/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.d.ts +13 -7
  682. package/api/resources/crm/resources/linkedAccounts/index.d.ts +1 -0
  683. package/api/resources/crm/resources/linkedAccounts/index.js +1 -0
  684. package/api/resources/crm/resources/linkedAccounts/types/index.d.ts +1 -0
  685. package/api/resources/crm/resources/linkedAccounts/types/index.js +17 -0
  686. package/api/resources/crm/resources/notes/client/Client.d.ts +24 -0
  687. package/api/resources/crm/resources/notes/client/Client.js +62 -35
  688. package/api/resources/crm/resources/notes/client/requests/NoteEndpointRequest.d.ts +8 -0
  689. package/api/resources/crm/resources/notes/client/requests/NotesListRequest.d.ts +6 -0
  690. package/api/resources/crm/resources/notes/client/requests/NotesRemoteFieldClassesListRequest.d.ts +4 -0
  691. package/api/resources/crm/resources/notes/client/requests/NotesRetrieveRequest.d.ts +6 -0
  692. package/api/resources/crm/resources/notes/index.d.ts +1 -0
  693. package/api/resources/crm/resources/notes/index.js +1 -0
  694. package/api/resources/crm/resources/notes/types/index.d.ts +2 -0
  695. package/api/resources/crm/resources/notes/types/index.js +18 -0
  696. package/api/resources/crm/resources/opportunities/client/Client.d.ts +50 -0
  697. package/api/resources/crm/resources/opportunities/client/Client.js +99 -44
  698. package/api/resources/crm/resources/opportunities/client/requests/OpportunitiesListRequest.d.ts +12 -3
  699. package/api/resources/crm/resources/opportunities/client/requests/OpportunitiesRemoteFieldClassesListRequest.d.ts +4 -0
  700. package/api/resources/crm/resources/opportunities/client/requests/OpportunitiesRetrieveRequest.d.ts +8 -0
  701. package/api/resources/crm/resources/opportunities/client/requests/OpportunityEndpointRequest.d.ts +12 -0
  702. package/api/resources/crm/resources/opportunities/client/requests/PatchedOpportunityEndpointRequest.d.ts +15 -0
  703. package/api/resources/crm/resources/opportunities/index.d.ts +1 -0
  704. package/api/resources/crm/resources/opportunities/index.js +1 -0
  705. package/api/resources/crm/resources/opportunities/types/index.d.ts +3 -0
  706. package/api/resources/crm/resources/opportunities/types/index.js +19 -0
  707. package/api/resources/crm/resources/passthrough/client/Client.d.ts +1 -0
  708. package/api/resources/crm/resources/passthrough/client/Client.js +2 -1
  709. package/api/resources/crm/resources/regenerateKey/client/Client.d.ts +6 -0
  710. package/api/resources/crm/resources/regenerateKey/client/Client.js +7 -1
  711. package/api/resources/crm/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +6 -0
  712. package/api/resources/crm/resources/selectiveSync/client/Client.d.ts +14 -0
  713. package/api/resources/crm/resources/selectiveSync/client/Client.js +23 -8
  714. package/api/resources/crm/resources/selectiveSync/client/requests/LinkedAccountSelectiveSyncConfigurationListRequest.d.ts +8 -0
  715. package/api/resources/crm/resources/selectiveSync/client/requests/SelectiveSyncMetaListRequest.d.ts +4 -0
  716. package/api/resources/crm/resources/stages/client/Client.d.ts +10 -0
  717. package/api/resources/crm/resources/stages/client/Client.js +35 -24
  718. package/api/resources/crm/resources/stages/client/requests/StagesListRequest.d.ts +4 -0
  719. package/api/resources/crm/resources/stages/client/requests/StagesRemoteFieldClassesListRequest.d.ts +4 -0
  720. package/api/resources/crm/resources/stages/client/requests/StagesRetrieveRequest.d.ts +4 -0
  721. package/api/resources/crm/resources/syncStatus/client/Client.d.ts +4 -0
  722. package/api/resources/crm/resources/syncStatus/client/Client.js +8 -5
  723. package/api/resources/crm/resources/syncStatus/client/requests/SyncStatusListRequest.d.ts +4 -0
  724. package/api/resources/crm/resources/tasks/client/Client.d.ts +43 -0
  725. package/api/resources/crm/resources/tasks/client/Client.js +84 -36
  726. package/api/resources/crm/resources/tasks/client/requests/PatchedTaskEndpointRequest.d.ts +14 -0
  727. package/api/resources/crm/resources/tasks/client/requests/TaskEndpointRequest.d.ts +11 -0
  728. package/api/resources/crm/resources/tasks/client/requests/TasksListRequest.d.ts +6 -0
  729. package/api/resources/crm/resources/tasks/client/requests/TasksRemoteFieldClassesListRequest.d.ts +4 -0
  730. package/api/resources/crm/resources/tasks/client/requests/TasksRetrieveRequest.d.ts +6 -0
  731. package/api/resources/crm/resources/tasks/index.d.ts +1 -0
  732. package/api/resources/crm/resources/tasks/index.js +1 -0
  733. package/api/resources/crm/resources/tasks/types/index.d.ts +2 -0
  734. package/api/resources/crm/resources/tasks/types/index.js +18 -0
  735. package/api/resources/crm/resources/users/client/Client.d.ts +16 -0
  736. package/api/resources/crm/resources/users/client/Client.js +43 -25
  737. package/api/resources/crm/resources/users/client/requests/UsersListRequest.d.ts +4 -0
  738. package/api/resources/crm/resources/users/client/requests/UsersRemoteFieldClassesListRequest.d.ts +4 -0
  739. package/api/resources/crm/resources/users/client/requests/UsersRetrieveRequest.d.ts +4 -0
  740. package/api/resources/crm/resources/webhookReceivers/client/Client.d.ts +4 -0
  741. package/api/resources/crm/resources/webhookReceivers/client/Client.js +7 -2
  742. package/api/resources/crm/types/Account.d.ts +4 -0
  743. package/api/resources/crm/types/AccountDetailsAndActions.d.ts +3 -0
  744. package/api/resources/crm/types/AccountDetailsAndActionsStatusEnum.d.ts +3 -3
  745. package/api/resources/crm/types/AccountRequest.d.ts +4 -0
  746. package/api/resources/crm/types/ActivityTypeEnum.d.ts +3 -3
  747. package/api/resources/crm/types/Address.d.ts +255 -251
  748. package/api/resources/crm/types/AddressAddressType.d.ts +2 -2
  749. package/api/resources/crm/types/AddressCountry.d.ts +249 -249
  750. package/api/resources/crm/types/AddressRequest.d.ts +255 -251
  751. package/api/resources/crm/types/AddressRequestAddressType.d.ts +2 -2
  752. package/api/resources/crm/types/AddressRequestCountry.d.ts +249 -249
  753. package/api/resources/crm/types/AddressTypeEnum.d.ts +2 -2
  754. package/api/resources/crm/types/Association.d.ts +4 -0
  755. package/api/resources/crm/types/AssociationType.d.ts +4 -0
  756. package/api/resources/crm/types/AuditLogEvent.d.ts +36 -36
  757. package/api/resources/crm/types/AuditLogEventEventType.d.ts +30 -30
  758. package/api/resources/crm/types/AuditLogEventRole.d.ts +6 -6
  759. package/api/resources/crm/types/AvailableActions.d.ts +3 -0
  760. package/api/resources/crm/types/CardinalityEnum.d.ts +4 -4
  761. package/api/resources/crm/types/CategoriesEnum.d.ts +7 -7
  762. package/api/resources/crm/types/CategoryEnum.d.ts +7 -7
  763. package/api/resources/crm/types/ConditionSchema.d.ts +8 -8
  764. package/api/resources/crm/types/ConditionSchemaConditionType.d.ts +7 -7
  765. package/api/resources/crm/types/ConditionTypeEnum.d.ts +7 -7
  766. package/api/resources/crm/types/Contact.d.ts +4 -0
  767. package/api/resources/crm/types/ContactRequest.d.ts +4 -0
  768. package/api/resources/crm/types/CountryEnum.d.ts +249 -249
  769. package/api/resources/crm/types/CustomObject.d.ts +4 -0
  770. package/api/resources/crm/types/CustomObjectClass.d.ts +4 -0
  771. package/api/resources/crm/types/DataPassthroughRequest.d.ts +3 -0
  772. package/api/resources/crm/types/DirectionEnum.d.ts +2 -2
  773. package/api/resources/crm/types/EmailAddress.d.ts +4 -0
  774. package/api/resources/crm/types/EmailAddressRequest.d.ts +4 -0
  775. package/api/resources/crm/types/EnabledActionsEnum.d.ts +2 -2
  776. package/api/resources/crm/types/EncodingEnum.d.ts +3 -3
  777. package/api/resources/crm/types/Engagement.d.ts +6 -2
  778. package/api/resources/crm/types/EngagementDirection.d.ts +2 -2
  779. package/api/resources/crm/types/EngagementRequest.d.ts +6 -2
  780. package/api/resources/crm/types/EngagementRequestDirection.d.ts +2 -2
  781. package/api/resources/crm/types/EngagementType.d.ts +7 -3
  782. package/api/resources/crm/types/EngagementTypeActivityType.d.ts +3 -3
  783. package/api/resources/crm/types/EventTypeEnum.d.ts +30 -30
  784. package/api/resources/crm/types/FieldFormatEnum.d.ts +6 -6
  785. package/api/resources/crm/types/FieldTypeEnum.d.ts +6 -6
  786. package/api/resources/crm/types/Issue.d.ts +2 -2
  787. package/api/resources/crm/types/IssueStatus.d.ts +2 -2
  788. package/api/resources/crm/types/IssueStatusEnum.d.ts +2 -2
  789. package/api/resources/crm/types/ItemFormatEnum.d.ts +6 -6
  790. package/api/resources/crm/types/ItemTypeEnum.d.ts +6 -6
  791. package/api/resources/crm/types/Lead.d.ts +4 -0
  792. package/api/resources/crm/types/LeadRequest.d.ts +4 -0
  793. package/api/resources/crm/types/LinkedAccountCondition.d.ts +1 -1
  794. package/api/resources/crm/types/MethodEnum.d.ts +7 -7
  795. package/api/resources/crm/types/ModelOperation.d.ts +3 -0
  796. package/api/resources/crm/types/MultipartFormFieldRequest.d.ts +6 -3
  797. package/api/resources/crm/types/MultipartFormFieldRequestEncoding.d.ts +3 -3
  798. package/api/resources/crm/types/Note.d.ts +4 -0
  799. package/api/resources/crm/types/NoteRequest.d.ts +4 -0
  800. package/api/resources/crm/types/Opportunity.d.ts +7 -3
  801. package/api/resources/crm/types/OpportunityRequest.d.ts +7 -3
  802. package/api/resources/crm/types/OpportunityRequestStatus.d.ts +3 -3
  803. package/api/resources/crm/types/OpportunityStatus.d.ts +3 -3
  804. package/api/resources/crm/types/OpportunityStatusEnum.d.ts +3 -3
  805. package/api/resources/crm/types/OriginTypeEnum.d.ts +3 -3
  806. package/api/resources/crm/types/PatchedAccountRequest.d.ts +4 -0
  807. package/api/resources/crm/types/PatchedContactRequest.d.ts +4 -0
  808. package/api/resources/crm/types/PatchedEngagementRequest.d.ts +6 -2
  809. package/api/resources/crm/types/PatchedEngagementRequestDirection.d.ts +2 -2
  810. package/api/resources/crm/types/PatchedOpportunityRequest.d.ts +7 -3
  811. package/api/resources/crm/types/PatchedOpportunityRequestStatus.d.ts +3 -3
  812. package/api/resources/crm/types/PatchedTaskRequest.d.ts +6 -2
  813. package/api/resources/crm/types/PatchedTaskRequestStatus.d.ts +2 -2
  814. package/api/resources/crm/types/PhoneNumber.d.ts +4 -0
  815. package/api/resources/crm/types/PhoneNumberRequest.d.ts +4 -0
  816. package/api/resources/crm/types/ReasonEnum.d.ts +3 -3
  817. package/api/resources/crm/types/RemoteData.d.ts +1 -1
  818. package/api/resources/crm/types/RemoteKey.d.ts +3 -0
  819. package/api/resources/crm/types/RemoteResponse.d.ts +3 -0
  820. package/api/resources/crm/types/RequestFormatEnum.d.ts +3 -3
  821. package/api/resources/crm/types/ResponseTypeEnum.d.ts +2 -2
  822. package/api/resources/crm/types/RoleEnum.d.ts +6 -6
  823. package/api/resources/crm/types/SelectiveSyncConfigurationsUsageEnum.d.ts +2 -2
  824. package/api/resources/crm/types/Stage.d.ts +4 -0
  825. package/api/resources/crm/types/SyncStatus.d.ts +3 -0
  826. package/api/resources/crm/types/SyncStatusStatusEnum.d.ts +6 -6
  827. package/api/resources/crm/types/Task.d.ts +6 -2
  828. package/api/resources/crm/types/TaskRequest.d.ts +6 -2
  829. package/api/resources/crm/types/TaskRequestStatus.d.ts +2 -2
  830. package/api/resources/crm/types/TaskStatus.d.ts +2 -2
  831. package/api/resources/crm/types/TaskStatusEnum.d.ts +2 -2
  832. package/api/resources/crm/types/User.d.ts +4 -0
  833. package/api/resources/crm/types/index.d.ts +33 -48
  834. package/api/resources/crm/types/index.js +33 -48
  835. package/api/resources/filestorage/client/Client.d.ts +1 -0
  836. package/api/resources/filestorage/index.d.ts +1 -1
  837. package/api/resources/filestorage/index.js +1 -1
  838. package/api/resources/filestorage/resources/accountDetails/client/Client.d.ts +4 -0
  839. package/api/resources/filestorage/resources/accountDetails/client/Client.js +5 -1
  840. package/api/resources/filestorage/resources/accountToken/client/Client.d.ts +1 -0
  841. package/api/resources/filestorage/resources/accountToken/client/Client.js +2 -1
  842. package/api/resources/filestorage/resources/asyncPassthrough/client/Client.d.ts +15 -0
  843. package/api/resources/filestorage/resources/asyncPassthrough/client/Client.js +18 -2
  844. package/api/resources/filestorage/resources/auditTrail/client/Client.d.ts +4 -0
  845. package/api/resources/filestorage/resources/auditTrail/client/Client.js +12 -9
  846. package/api/resources/filestorage/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +4 -0
  847. package/api/resources/filestorage/resources/availableActions/client/Client.d.ts +1 -0
  848. package/api/resources/filestorage/resources/availableActions/client/Client.js +2 -1
  849. package/api/resources/filestorage/resources/deleteAccount/client/Client.d.ts +4 -0
  850. package/api/resources/filestorage/resources/deleteAccount/client/Client.js +5 -1
  851. package/api/resources/filestorage/resources/drives/client/Client.d.ts +7 -0
  852. package/api/resources/filestorage/resources/drives/client/Client.js +23 -16
  853. package/api/resources/filestorage/resources/drives/client/requests/DrivesListRequest.d.ts +4 -0
  854. package/api/resources/filestorage/resources/drives/client/requests/DrivesRetrieveRequest.d.ts +4 -0
  855. package/api/resources/filestorage/resources/files/client/Client.d.ts +26 -0
  856. package/api/resources/filestorage/resources/files/client/Client.js +81 -34
  857. package/api/resources/filestorage/resources/files/client/requests/FileStorageFileEndpointRequest.d.ts +13 -0
  858. package/api/resources/filestorage/resources/files/client/requests/FilesListRequest.d.ts +6 -0
  859. package/api/resources/filestorage/resources/files/client/requests/FilesRetrieveRequest.d.ts +6 -0
  860. package/api/resources/filestorage/resources/files/index.d.ts +1 -0
  861. package/api/resources/filestorage/resources/files/index.js +1 -0
  862. package/api/resources/filestorage/resources/files/types/index.d.ts +2 -0
  863. package/api/resources/filestorage/resources/files/types/index.js +18 -0
  864. package/api/resources/filestorage/resources/folders/client/Client.d.ts +24 -0
  865. package/api/resources/filestorage/resources/folders/client/Client.js +51 -25
  866. package/api/resources/filestorage/resources/folders/client/requests/FileStorageFolderEndpointRequest.d.ts +11 -0
  867. package/api/resources/filestorage/resources/folders/client/requests/FoldersListRequest.d.ts +6 -0
  868. package/api/resources/filestorage/resources/folders/client/requests/FoldersRetrieveRequest.d.ts +6 -0
  869. package/api/resources/filestorage/resources/folders/index.d.ts +1 -0
  870. package/api/resources/filestorage/resources/folders/index.js +1 -0
  871. package/api/resources/filestorage/resources/folders/types/index.d.ts +2 -0
  872. package/api/resources/filestorage/resources/folders/types/index.js +18 -0
  873. package/api/resources/filestorage/resources/forceResync/client/Client.d.ts +4 -0
  874. package/api/resources/filestorage/resources/forceResync/client/Client.js +5 -1
  875. package/api/resources/filestorage/resources/generateKey/client/Client.d.ts +6 -0
  876. package/api/resources/filestorage/resources/generateKey/client/Client.js +7 -1
  877. package/api/resources/filestorage/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +6 -0
  878. package/api/resources/filestorage/resources/groups/client/Client.d.ts +7 -0
  879. package/api/resources/filestorage/resources/groups/client/Client.js +22 -15
  880. package/api/resources/filestorage/resources/groups/client/requests/GroupsListRequest.d.ts +4 -0
  881. package/api/resources/filestorage/resources/groups/client/requests/GroupsRetrieveRequest.d.ts +4 -0
  882. package/api/resources/filestorage/resources/index.d.ts +8 -4
  883. package/api/resources/filestorage/resources/index.js +9 -5
  884. package/api/resources/filestorage/resources/issues/client/Client.d.ts +9 -0
  885. package/api/resources/filestorage/resources/issues/client/Client.js +26 -17
  886. package/api/resources/filestorage/resources/issues/client/requests/IssuesListRequest.d.ts +8 -2
  887. package/api/resources/filestorage/resources/issues/index.d.ts +1 -0
  888. package/api/resources/filestorage/resources/issues/index.js +1 -0
  889. package/api/resources/filestorage/resources/issues/types/index.d.ts +1 -0
  890. package/api/resources/filestorage/resources/issues/types/index.js +17 -0
  891. package/api/resources/filestorage/resources/linkToken/client/Client.d.ts +1 -0
  892. package/api/resources/filestorage/resources/linkToken/client/Client.js +2 -1
  893. package/api/resources/filestorage/resources/linkedAccounts/client/Client.d.ts +6 -0
  894. package/api/resources/filestorage/resources/linkedAccounts/client/Client.js +21 -16
  895. package/api/resources/filestorage/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.d.ts +13 -7
  896. package/api/resources/filestorage/resources/linkedAccounts/index.d.ts +1 -0
  897. package/api/resources/filestorage/resources/linkedAccounts/index.js +1 -0
  898. package/api/resources/filestorage/resources/linkedAccounts/types/index.d.ts +1 -0
  899. package/api/resources/filestorage/resources/linkedAccounts/types/index.js +17 -0
  900. package/api/resources/filestorage/resources/passthrough/client/Client.d.ts +1 -0
  901. package/api/resources/filestorage/resources/passthrough/client/Client.js +2 -1
  902. package/api/resources/filestorage/resources/regenerateKey/client/Client.d.ts +6 -0
  903. package/api/resources/filestorage/resources/regenerateKey/client/Client.js +7 -1
  904. package/api/resources/filestorage/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +6 -0
  905. package/api/resources/filestorage/resources/selectiveSync/client/Client.d.ts +14 -0
  906. package/api/resources/filestorage/resources/selectiveSync/client/Client.js +23 -8
  907. package/api/resources/filestorage/resources/selectiveSync/client/requests/LinkedAccountSelectiveSyncConfigurationListRequest.d.ts +8 -0
  908. package/api/resources/filestorage/resources/selectiveSync/client/requests/SelectiveSyncMetaListRequest.d.ts +4 -0
  909. package/api/resources/filestorage/resources/syncStatus/client/Client.d.ts +4 -0
  910. package/api/resources/filestorage/resources/syncStatus/client/Client.js +8 -5
  911. package/api/resources/filestorage/resources/syncStatus/client/requests/SyncStatusListRequest.d.ts +4 -0
  912. package/api/resources/filestorage/resources/users/client/Client.d.ts +7 -0
  913. package/api/resources/filestorage/resources/users/client/Client.js +23 -16
  914. package/api/resources/filestorage/resources/users/client/requests/UsersListRequest.d.ts +4 -0
  915. package/api/resources/filestorage/resources/users/client/requests/UsersRetrieveRequest.d.ts +4 -0
  916. package/api/resources/filestorage/resources/webhookReceivers/client/Client.d.ts +4 -0
  917. package/api/resources/filestorage/resources/webhookReceivers/client/Client.js +7 -2
  918. package/api/resources/filestorage/types/AccountDetailsAndActions.d.ts +3 -0
  919. package/api/resources/filestorage/types/AccountDetailsAndActionsStatusEnum.d.ts +3 -3
  920. package/api/resources/filestorage/types/AuditLogEvent.d.ts +36 -36
  921. package/api/resources/filestorage/types/AuditLogEventEventType.d.ts +30 -30
  922. package/api/resources/filestorage/types/AuditLogEventRole.d.ts +6 -6
  923. package/api/resources/filestorage/types/AvailableActions.d.ts +3 -0
  924. package/api/resources/filestorage/types/CategoriesEnum.d.ts +7 -7
  925. package/api/resources/filestorage/types/CategoryEnum.d.ts +7 -7
  926. package/api/resources/filestorage/types/ConditionSchema.d.ts +8 -8
  927. package/api/resources/filestorage/types/ConditionSchemaConditionType.d.ts +7 -7
  928. package/api/resources/filestorage/types/ConditionTypeEnum.d.ts +7 -7
  929. package/api/resources/filestorage/types/DataPassthroughRequest.d.ts +3 -0
  930. package/api/resources/filestorage/types/Drive.d.ts +4 -0
  931. package/api/resources/filestorage/types/EnabledActionsEnum.d.ts +2 -2
  932. package/api/resources/filestorage/types/EncodingEnum.d.ts +3 -3
  933. package/api/resources/filestorage/types/EventTypeEnum.d.ts +30 -30
  934. package/api/resources/filestorage/types/FileRequest.d.ts +4 -0
  935. package/api/resources/filestorage/types/File_.d.ts +4 -0
  936. package/api/resources/filestorage/types/Folder.d.ts +4 -0
  937. package/api/resources/filestorage/types/FolderRequest.d.ts +4 -0
  938. package/api/resources/filestorage/types/Group.d.ts +4 -0
  939. package/api/resources/filestorage/types/Issue.d.ts +2 -2
  940. package/api/resources/filestorage/types/IssueStatus.d.ts +2 -2
  941. package/api/resources/filestorage/types/IssueStatusEnum.d.ts +2 -2
  942. package/api/resources/filestorage/types/LinkedAccountCondition.d.ts +1 -1
  943. package/api/resources/filestorage/types/MethodEnum.d.ts +7 -7
  944. package/api/resources/filestorage/types/ModelOperation.d.ts +3 -0
  945. package/api/resources/filestorage/types/MultipartFormFieldRequest.d.ts +6 -3
  946. package/api/resources/filestorage/types/MultipartFormFieldRequestEncoding.d.ts +3 -3
  947. package/api/resources/filestorage/types/Permission.d.ts +7 -4
  948. package/api/resources/filestorage/types/PermissionRequest.d.ts +7 -4
  949. package/api/resources/filestorage/types/PermissionRequestRolesItem.d.ts +3 -3
  950. package/api/resources/filestorage/types/PermissionRequestType.d.ts +4 -4
  951. package/api/resources/filestorage/types/PermissionRolesItem.d.ts +3 -3
  952. package/api/resources/filestorage/types/PermissionType.d.ts +4 -4
  953. package/api/resources/filestorage/types/RemoteKey.d.ts +3 -0
  954. package/api/resources/filestorage/types/RemoteResponse.d.ts +3 -0
  955. package/api/resources/filestorage/types/RequestFormatEnum.d.ts +3 -3
  956. package/api/resources/filestorage/types/ResponseTypeEnum.d.ts +2 -2
  957. package/api/resources/filestorage/types/RoleEnum.d.ts +6 -6
  958. package/api/resources/filestorage/types/RolesEnum.d.ts +3 -3
  959. package/api/resources/filestorage/types/SelectiveSyncConfigurationsUsageEnum.d.ts +2 -2
  960. package/api/resources/filestorage/types/SyncStatus.d.ts +3 -0
  961. package/api/resources/filestorage/types/SyncStatusStatusEnum.d.ts +6 -6
  962. package/api/resources/filestorage/types/TypeEnum.d.ts +4 -4
  963. package/api/resources/filestorage/types/User.d.ts +4 -0
  964. package/api/resources/filestorage/types/index.d.ts +15 -21
  965. package/api/resources/filestorage/types/index.js +15 -21
  966. package/api/resources/hris/client/Client.d.ts +1 -0
  967. package/api/resources/hris/index.d.ts +1 -1
  968. package/api/resources/hris/index.js +1 -1
  969. package/api/resources/hris/resources/accountDetails/client/Client.d.ts +4 -0
  970. package/api/resources/hris/resources/accountDetails/client/Client.js +5 -1
  971. package/api/resources/hris/resources/accountToken/client/Client.d.ts +1 -0
  972. package/api/resources/hris/resources/accountToken/client/Client.js +2 -1
  973. package/api/resources/hris/resources/asyncPassthrough/client/Client.d.ts +15 -0
  974. package/api/resources/hris/resources/asyncPassthrough/client/Client.js +18 -2
  975. package/api/resources/hris/resources/auditTrail/client/Client.d.ts +4 -0
  976. package/api/resources/hris/resources/auditTrail/client/Client.js +12 -9
  977. package/api/resources/hris/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +4 -0
  978. package/api/resources/hris/resources/availableActions/client/Client.d.ts +1 -0
  979. package/api/resources/hris/resources/availableActions/client/Client.js +2 -1
  980. package/api/resources/hris/resources/bankInfo/client/Client.d.ts +17 -0
  981. package/api/resources/hris/resources/bankInfo/client/Client.js +42 -25
  982. package/api/resources/hris/resources/bankInfo/client/requests/BankInfoListRequest.d.ts +12 -2
  983. package/api/resources/hris/resources/bankInfo/client/requests/BankInfoRetrieveRequest.d.ts +8 -0
  984. package/api/resources/hris/resources/bankInfo/index.d.ts +1 -0
  985. package/api/resources/hris/resources/bankInfo/index.js +1 -0
  986. package/api/resources/hris/resources/bankInfo/types/index.d.ts +2 -0
  987. package/api/resources/hris/resources/bankInfo/types/index.js +18 -0
  988. package/api/resources/hris/resources/benefits/client/Client.d.ts +11 -0
  989. package/api/resources/hris/resources/benefits/client/Client.js +29 -18
  990. package/api/resources/hris/resources/benefits/client/requests/BenefitsListRequest.d.ts +6 -0
  991. package/api/resources/hris/resources/benefits/client/requests/BenefitsRetrieveRequest.d.ts +6 -0
  992. package/api/resources/hris/resources/companies/client/Client.d.ts +7 -0
  993. package/api/resources/hris/resources/companies/client/Client.js +22 -15
  994. package/api/resources/hris/resources/companies/client/requests/CompaniesListRequest.d.ts +4 -0
  995. package/api/resources/hris/resources/companies/client/requests/CompaniesRetrieveRequest.d.ts +4 -0
  996. package/api/resources/hris/resources/deleteAccount/client/Client.d.ts +4 -0
  997. package/api/resources/hris/resources/deleteAccount/client/Client.js +5 -1
  998. package/api/resources/hris/resources/dependents/client/Client.d.ts +7 -0
  999. package/api/resources/hris/resources/dependents/client/Client.js +24 -17
  1000. package/api/resources/hris/resources/dependents/client/requests/DependentsListRequest.d.ts +4 -0
  1001. package/api/resources/hris/resources/dependents/client/requests/DependentsRetrieveRequest.d.ts +4 -0
  1002. package/api/resources/hris/resources/employeePayrollRuns/client/Client.d.ts +11 -0
  1003. package/api/resources/hris/resources/employeePayrollRuns/client/Client.js +34 -23
  1004. package/api/resources/hris/resources/employeePayrollRuns/client/requests/EmployeePayrollRunsListRequest.d.ts +6 -0
  1005. package/api/resources/hris/resources/employeePayrollRuns/client/requests/EmployeePayrollRunsRetrieveRequest.d.ts +6 -0
  1006. package/api/resources/hris/resources/employeePayrollRuns/index.d.ts +1 -0
  1007. package/api/resources/hris/resources/employeePayrollRuns/index.js +1 -0
  1008. package/api/resources/hris/resources/employeePayrollRuns/types/index.d.ts +2 -0
  1009. package/api/resources/hris/resources/employeePayrollRuns/types/index.js +18 -0
  1010. package/api/resources/hris/resources/employees/client/Client.d.ts +40 -0
  1011. package/api/resources/hris/resources/employees/client/Client.js +91 -48
  1012. package/api/resources/hris/resources/employees/client/requests/EmployeeEndpointRequest.d.ts +22 -0
  1013. package/api/resources/hris/resources/employees/client/requests/EmployeesListRequest.d.ts +12 -3
  1014. package/api/resources/hris/resources/employees/client/requests/EmployeesRetrieveRequest.d.ts +8 -0
  1015. package/api/resources/hris/resources/employees/index.d.ts +1 -0
  1016. package/api/resources/hris/resources/employees/index.js +1 -0
  1017. package/api/resources/hris/resources/employees/types/IgnoreCommonModelRequestReason.d.ts +5 -0
  1018. package/api/resources/hris/resources/employees/types/index.d.ts +8 -0
  1019. package/api/resources/hris/resources/employees/types/index.js +24 -0
  1020. package/api/resources/hris/resources/employerBenefits/client/Client.d.ts +7 -0
  1021. package/api/resources/hris/resources/employerBenefits/client/Client.js +22 -15
  1022. package/api/resources/hris/resources/employerBenefits/client/requests/EmployerBenefitsListRequest.d.ts +4 -0
  1023. package/api/resources/hris/resources/employerBenefits/client/requests/EmployerBenefitsRetrieveRequest.d.ts +4 -0
  1024. package/api/resources/hris/resources/employments/client/Client.d.ts +16 -0
  1025. package/api/resources/hris/resources/employments/client/Client.js +39 -23
  1026. package/api/resources/hris/resources/employments/client/requests/EmploymentsListRequest.d.ts +9 -0
  1027. package/api/resources/hris/resources/employments/client/requests/EmploymentsRetrieveRequest.d.ts +8 -0
  1028. package/api/resources/hris/resources/employments/index.d.ts +1 -0
  1029. package/api/resources/hris/resources/employments/index.js +1 -0
  1030. package/api/resources/hris/resources/employments/types/index.d.ts +7 -0
  1031. package/api/resources/hris/resources/employments/types/index.js +23 -0
  1032. package/api/resources/hris/resources/forceResync/client/Client.d.ts +4 -0
  1033. package/api/resources/hris/resources/forceResync/client/Client.js +5 -1
  1034. package/api/resources/hris/resources/generateKey/client/Client.d.ts +6 -0
  1035. package/api/resources/hris/resources/generateKey/client/Client.js +7 -1
  1036. package/api/resources/hris/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +6 -0
  1037. package/api/resources/hris/resources/groups/client/Client.d.ts +13 -0
  1038. package/api/resources/hris/resources/groups/client/Client.js +33 -20
  1039. package/api/resources/hris/resources/groups/client/requests/GroupsListRequest.d.ts +7 -0
  1040. package/api/resources/hris/resources/groups/client/requests/GroupsRetrieveRequest.d.ts +7 -0
  1041. package/api/resources/hris/resources/index.d.ts +22 -11
  1042. package/api/resources/hris/resources/index.js +23 -12
  1043. package/api/resources/hris/resources/issues/client/Client.d.ts +9 -0
  1044. package/api/resources/hris/resources/issues/client/Client.js +26 -17
  1045. package/api/resources/hris/resources/issues/client/requests/IssuesListRequest.d.ts +8 -2
  1046. package/api/resources/hris/resources/issues/index.d.ts +1 -0
  1047. package/api/resources/hris/resources/issues/index.js +1 -0
  1048. package/api/resources/hris/resources/issues/types/index.d.ts +1 -0
  1049. package/api/resources/hris/resources/issues/types/index.js +17 -0
  1050. package/api/resources/hris/resources/linkToken/client/Client.d.ts +1 -0
  1051. package/api/resources/hris/resources/linkToken/client/Client.js +2 -1
  1052. package/api/resources/hris/resources/linkedAccounts/client/Client.d.ts +6 -0
  1053. package/api/resources/hris/resources/linkedAccounts/client/Client.js +21 -16
  1054. package/api/resources/hris/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.d.ts +13 -7
  1055. package/api/resources/hris/resources/linkedAccounts/index.d.ts +1 -0
  1056. package/api/resources/hris/resources/linkedAccounts/index.js +1 -0
  1057. package/api/resources/hris/resources/linkedAccounts/types/index.d.ts +1 -0
  1058. package/api/resources/hris/resources/linkedAccounts/types/index.js +17 -0
  1059. package/api/resources/hris/resources/locations/client/Client.d.ts +14 -0
  1060. package/api/resources/hris/resources/locations/client/Client.js +34 -20
  1061. package/api/resources/hris/resources/locations/client/requests/LocationsListRequest.d.ts +10 -2
  1062. package/api/resources/hris/resources/locations/client/requests/LocationsRetrieveRequest.d.ts +7 -0
  1063. package/api/resources/hris/resources/locations/index.d.ts +1 -0
  1064. package/api/resources/hris/resources/locations/index.js +1 -0
  1065. package/api/resources/hris/resources/locations/types/index.d.ts +1 -0
  1066. package/api/resources/hris/resources/locations/types/index.js +17 -0
  1067. package/api/resources/hris/resources/passthrough/client/Client.d.ts +1 -0
  1068. package/api/resources/hris/resources/passthrough/client/Client.js +2 -1
  1069. package/api/resources/hris/resources/payGroups/client/Client.d.ts +7 -0
  1070. package/api/resources/hris/resources/payGroups/client/Client.js +22 -15
  1071. package/api/resources/hris/resources/payGroups/client/requests/PayGroupsListRequest.d.ts +4 -0
  1072. package/api/resources/hris/resources/payGroups/client/requests/PayGroupsRetrieveRequest.d.ts +4 -0
  1073. package/api/resources/hris/resources/payrollRuns/client/Client.d.ts +14 -0
  1074. package/api/resources/hris/resources/payrollRuns/client/Client.js +38 -24
  1075. package/api/resources/hris/resources/payrollRuns/client/requests/PayrollRunsListRequest.d.ts +13 -5
  1076. package/api/resources/hris/resources/payrollRuns/client/requests/PayrollRunsRetrieveRequest.d.ts +7 -0
  1077. package/api/resources/hris/resources/payrollRuns/index.d.ts +1 -0
  1078. package/api/resources/hris/resources/payrollRuns/index.js +1 -0
  1079. package/api/resources/hris/resources/payrollRuns/types/index.d.ts +5 -0
  1080. package/api/resources/hris/resources/payrollRuns/types/index.js +21 -0
  1081. package/api/resources/hris/resources/regenerateKey/client/Client.d.ts +6 -0
  1082. package/api/resources/hris/resources/regenerateKey/client/Client.js +7 -1
  1083. package/api/resources/hris/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +6 -0
  1084. package/api/resources/hris/resources/selectiveSync/client/Client.d.ts +14 -0
  1085. package/api/resources/hris/resources/selectiveSync/client/Client.js +23 -8
  1086. package/api/resources/hris/resources/selectiveSync/client/requests/LinkedAccountSelectiveSyncConfigurationListRequest.d.ts +8 -0
  1087. package/api/resources/hris/resources/selectiveSync/client/requests/SelectiveSyncMetaListRequest.d.ts +4 -0
  1088. package/api/resources/hris/resources/syncStatus/client/Client.d.ts +4 -0
  1089. package/api/resources/hris/resources/syncStatus/client/Client.js +8 -5
  1090. package/api/resources/hris/resources/syncStatus/client/requests/SyncStatusListRequest.d.ts +4 -0
  1091. package/api/resources/hris/resources/teams/client/Client.d.ts +11 -0
  1092. package/api/resources/hris/resources/teams/client/Client.js +29 -18
  1093. package/api/resources/hris/resources/teams/client/requests/TeamsListRequest.d.ts +6 -0
  1094. package/api/resources/hris/resources/teams/client/requests/TeamsRetrieveRequest.d.ts +6 -0
  1095. package/api/resources/hris/resources/timeOff/client/Client.d.ts +30 -0
  1096. package/api/resources/hris/resources/timeOff/client/Client.js +62 -30
  1097. package/api/resources/hris/resources/timeOff/client/requests/TimeOffEndpointRequest.d.ts +11 -0
  1098. package/api/resources/hris/resources/timeOff/client/requests/TimeOffListRequest.d.ts +21 -11
  1099. package/api/resources/hris/resources/timeOff/client/requests/TimeOffRetrieveRequest.d.ts +8 -0
  1100. package/api/resources/hris/resources/timeOff/index.d.ts +1 -0
  1101. package/api/resources/hris/resources/timeOff/index.js +1 -0
  1102. package/api/resources/hris/resources/timeOff/types/index.d.ts +8 -0
  1103. package/api/resources/hris/resources/timeOff/types/index.js +24 -0
  1104. package/api/resources/hris/resources/timeOffBalances/client/Client.d.ts +16 -0
  1105. package/api/resources/hris/resources/timeOffBalances/client/Client.js +39 -23
  1106. package/api/resources/hris/resources/timeOffBalances/client/requests/TimeOffBalancesListRequest.d.ts +15 -6
  1107. package/api/resources/hris/resources/timeOffBalances/client/requests/TimeOffBalancesRetrieveRequest.d.ts +8 -0
  1108. package/api/resources/hris/resources/timeOffBalances/index.d.ts +1 -0
  1109. package/api/resources/hris/resources/timeOffBalances/index.js +1 -0
  1110. package/api/resources/hris/resources/timeOffBalances/types/index.d.ts +1 -0
  1111. package/api/resources/hris/resources/timeOffBalances/types/index.js +17 -0
  1112. package/api/resources/hris/resources/timesheetEntries/client/Client.d.ts +22 -0
  1113. package/api/resources/hris/resources/timesheetEntries/client/Client.js +50 -26
  1114. package/api/resources/hris/resources/timesheetEntries/client/requests/TimesheetEntriesListRequest.d.ts +6 -0
  1115. package/api/resources/hris/resources/timesheetEntries/client/requests/TimesheetEntriesRetrieveRequest.d.ts +4 -0
  1116. package/api/resources/hris/resources/timesheetEntries/client/requests/TimesheetEntryEndpointRequest.d.ts +11 -0
  1117. package/api/resources/hris/resources/timesheetEntries/index.d.ts +1 -0
  1118. package/api/resources/hris/resources/timesheetEntries/index.js +1 -0
  1119. package/api/resources/hris/resources/timesheetEntries/types/index.d.ts +1 -0
  1120. package/api/resources/hris/resources/timesheetEntries/types/index.js +17 -0
  1121. package/api/resources/hris/resources/webhookReceivers/client/Client.d.ts +4 -0
  1122. package/api/resources/hris/resources/webhookReceivers/client/Client.js +7 -2
  1123. package/api/resources/hris/types/AccountDetailsAndActions.d.ts +3 -0
  1124. package/api/resources/hris/types/AccountDetailsAndActionsStatusEnum.d.ts +3 -3
  1125. package/api/resources/hris/types/AccountTypeEnum.d.ts +2 -2
  1126. package/api/resources/hris/types/AuditLogEvent.d.ts +36 -36
  1127. package/api/resources/hris/types/AuditLogEventEventType.d.ts +30 -30
  1128. package/api/resources/hris/types/AuditLogEventRole.d.ts +6 -6
  1129. package/api/resources/hris/types/AvailableActions.d.ts +3 -0
  1130. package/api/resources/hris/types/BankInfo.d.ts +5 -2
  1131. package/api/resources/hris/types/BankInfoAccountType.d.ts +2 -2
  1132. package/api/resources/hris/types/Benefit.d.ts +3 -0
  1133. package/api/resources/hris/types/BenefitPlanTypeEnum.d.ts +5 -5
  1134. package/api/resources/hris/types/CategoriesEnum.d.ts +7 -7
  1135. package/api/resources/hris/types/CategoryEnum.d.ts +7 -7
  1136. package/api/resources/hris/types/Company.d.ts +3 -0
  1137. package/api/resources/hris/types/ConditionSchema.d.ts +8 -8
  1138. package/api/resources/hris/types/ConditionSchemaConditionType.d.ts +7 -7
  1139. package/api/resources/hris/types/ConditionTypeEnum.d.ts +7 -7
  1140. package/api/resources/hris/types/CountryEnum.d.ts +249 -249
  1141. package/api/resources/hris/types/DataPassthroughRequest.d.ts +3 -0
  1142. package/api/resources/hris/types/Deduction.d.ts +3 -0
  1143. package/api/resources/hris/types/Dependent.d.ts +11 -8
  1144. package/api/resources/hris/types/DependentGender.d.ts +5 -5
  1145. package/api/resources/hris/types/DependentRelationship.d.ts +3 -3
  1146. package/api/resources/hris/types/Earning.d.ts +7 -4
  1147. package/api/resources/hris/types/EarningType.d.ts +4 -4
  1148. package/api/resources/hris/types/EarningTypeEnum.d.ts +4 -4
  1149. package/api/resources/hris/types/Employee.d.ts +24 -21
  1150. package/api/resources/hris/types/EmployeeEmploymentStatus.d.ts +3 -3
  1151. package/api/resources/hris/types/EmployeeEthnicity.d.ts +8 -8
  1152. package/api/resources/hris/types/EmployeeGender.d.ts +5 -5
  1153. package/api/resources/hris/types/EmployeeMaritalStatus.d.ts +5 -5
  1154. package/api/resources/hris/types/EmployeePayrollRun.d.ts +3 -0
  1155. package/api/resources/hris/types/EmployeeRequest.d.ts +24 -21
  1156. package/api/resources/hris/types/EmployeeRequestEmploymentStatus.d.ts +3 -3
  1157. package/api/resources/hris/types/EmployeeRequestEthnicity.d.ts +8 -8
  1158. package/api/resources/hris/types/EmployeeRequestGender.d.ts +5 -5
  1159. package/api/resources/hris/types/EmployeeRequestMaritalStatus.d.ts +5 -5
  1160. package/api/resources/hris/types/EmployerBenefit.d.ts +8 -5
  1161. package/api/resources/hris/types/EmployerBenefitBenefitPlanType.d.ts +5 -5
  1162. package/api/resources/hris/types/Employment.d.ts +336 -333
  1163. package/api/resources/hris/types/EmploymentEmploymentType.d.ts +5 -5
  1164. package/api/resources/hris/types/EmploymentFlsaStatus.d.ts +4 -4
  1165. package/api/resources/hris/types/EmploymentPayCurrency.d.ts +306 -306
  1166. package/api/resources/hris/types/EmploymentPayFrequency.d.ts +9 -9
  1167. package/api/resources/hris/types/EmploymentPayPeriod.d.ts +9 -9
  1168. package/api/resources/hris/types/EmploymentStatusEnum.d.ts +3 -3
  1169. package/api/resources/hris/types/EmploymentTypeEnum.d.ts +5 -5
  1170. package/api/resources/hris/types/EnabledActionsEnum.d.ts +2 -2
  1171. package/api/resources/hris/types/EncodingEnum.d.ts +3 -3
  1172. package/api/resources/hris/types/EthnicityEnum.d.ts +8 -8
  1173. package/api/resources/hris/types/EventTypeEnum.d.ts +30 -30
  1174. package/api/resources/hris/types/FlsaStatusEnum.d.ts +4 -4
  1175. package/api/resources/hris/types/GenderEnum.d.ts +5 -5
  1176. package/api/resources/hris/types/Group.d.ts +8 -5
  1177. package/api/resources/hris/types/GroupType.d.ts +5 -5
  1178. package/api/resources/hris/types/GroupTypeEnum.d.ts +5 -5
  1179. package/api/resources/hris/types/Issue.d.ts +2 -2
  1180. package/api/resources/hris/types/IssueStatus.d.ts +2 -2
  1181. package/api/resources/hris/types/IssueStatusEnum.d.ts +2 -2
  1182. package/api/resources/hris/types/LinkedAccountCondition.d.ts +1 -1
  1183. package/api/resources/hris/types/Location.d.ts +254 -251
  1184. package/api/resources/hris/types/LocationCountry.d.ts +249 -249
  1185. package/api/resources/hris/types/LocationLocationType.d.ts +2 -2
  1186. package/api/resources/hris/types/LocationTypeEnum.d.ts +2 -2
  1187. package/api/resources/hris/types/MaritalStatusEnum.d.ts +5 -5
  1188. package/api/resources/hris/types/MethodEnum.d.ts +7 -7
  1189. package/api/resources/hris/types/ModelOperation.d.ts +3 -0
  1190. package/api/resources/hris/types/MultipartFormFieldRequest.d.ts +6 -3
  1191. package/api/resources/hris/types/MultipartFormFieldRequestEncoding.d.ts +3 -3
  1192. package/api/resources/hris/types/PayCurrencyEnum.d.ts +306 -306
  1193. package/api/resources/hris/types/PayFrequencyEnum.d.ts +9 -9
  1194. package/api/resources/hris/types/PayGroup.d.ts +3 -0
  1195. package/api/resources/hris/types/PayPeriodEnum.d.ts +9 -9
  1196. package/api/resources/hris/types/PayrollRun.d.ts +13 -10
  1197. package/api/resources/hris/types/PayrollRunRunState.d.ts +5 -5
  1198. package/api/resources/hris/types/PayrollRunRunType.d.ts +5 -5
  1199. package/api/resources/hris/types/PolicyTypeEnum.d.ts +6 -6
  1200. package/api/resources/hris/types/ReasonEnum.d.ts +3 -3
  1201. package/api/resources/hris/types/RelationshipEnum.d.ts +3 -3
  1202. package/api/resources/hris/types/RemoteKey.d.ts +3 -0
  1203. package/api/resources/hris/types/RemoteResponse.d.ts +3 -0
  1204. package/api/resources/hris/types/RequestFormatEnum.d.ts +3 -3
  1205. package/api/resources/hris/types/RequestTypeEnum.d.ts +6 -6
  1206. package/api/resources/hris/types/ResponseTypeEnum.d.ts +2 -2
  1207. package/api/resources/hris/types/RoleEnum.d.ts +6 -6
  1208. package/api/resources/hris/types/RunStateEnum.d.ts +5 -5
  1209. package/api/resources/hris/types/RunTypeEnum.d.ts +5 -5
  1210. package/api/resources/hris/types/SelectiveSyncConfigurationsUsageEnum.d.ts +2 -2
  1211. package/api/resources/hris/types/SyncStatus.d.ts +3 -0
  1212. package/api/resources/hris/types/SyncStatusStatusEnum.d.ts +6 -6
  1213. package/api/resources/hris/types/Tax.d.ts +3 -0
  1214. package/api/resources/hris/types/Team.d.ts +3 -0
  1215. package/api/resources/hris/types/TimeOff.d.ts +16 -13
  1216. package/api/resources/hris/types/TimeOffBalance.d.ts +9 -6
  1217. package/api/resources/hris/types/TimeOffBalancePolicyType.d.ts +6 -6
  1218. package/api/resources/hris/types/TimeOffRequest.d.ts +16 -13
  1219. package/api/resources/hris/types/TimeOffRequestRequestType.d.ts +6 -6
  1220. package/api/resources/hris/types/TimeOffRequestStatus.d.ts +5 -5
  1221. package/api/resources/hris/types/TimeOffRequestType.d.ts +6 -6
  1222. package/api/resources/hris/types/TimeOffRequestUnits.d.ts +2 -2
  1223. package/api/resources/hris/types/TimeOffStatus.d.ts +5 -5
  1224. package/api/resources/hris/types/TimeOffStatusEnum.d.ts +5 -5
  1225. package/api/resources/hris/types/TimeOffUnits.d.ts +2 -2
  1226. package/api/resources/hris/types/TimesheetEntry.d.ts +3 -1
  1227. package/api/resources/hris/types/TimesheetEntryRequest.d.ts +3 -1
  1228. package/api/resources/hris/types/UnitsEnum.d.ts +2 -2
  1229. package/api/resources/hris/types/index.d.ts +22 -59
  1230. package/api/resources/hris/types/index.js +22 -59
  1231. package/api/resources/ticketing/client/Client.d.ts +1 -0
  1232. package/api/resources/ticketing/index.d.ts +1 -1
  1233. package/api/resources/ticketing/index.js +1 -1
  1234. package/api/resources/ticketing/resources/accountDetails/client/Client.d.ts +4 -0
  1235. package/api/resources/ticketing/resources/accountDetails/client/Client.js +5 -1
  1236. package/api/resources/ticketing/resources/accountToken/client/Client.d.ts +1 -0
  1237. package/api/resources/ticketing/resources/accountToken/client/Client.js +2 -1
  1238. package/api/resources/ticketing/resources/accounts/client/Client.d.ts +7 -0
  1239. package/api/resources/ticketing/resources/accounts/client/Client.js +22 -15
  1240. package/api/resources/ticketing/resources/accounts/client/requests/AccountsListRequest.d.ts +4 -0
  1241. package/api/resources/ticketing/resources/accounts/client/requests/AccountsRetrieveRequest.d.ts +4 -0
  1242. package/api/resources/ticketing/resources/asyncPassthrough/client/Client.d.ts +15 -0
  1243. package/api/resources/ticketing/resources/asyncPassthrough/client/Client.js +18 -2
  1244. package/api/resources/ticketing/resources/attachments/client/Client.d.ts +24 -0
  1245. package/api/resources/ticketing/resources/attachments/client/Client.js +78 -33
  1246. package/api/resources/ticketing/resources/attachments/client/requests/AttachmentsListRequest.d.ts +6 -0
  1247. package/api/resources/ticketing/resources/attachments/client/requests/AttachmentsRetrieveRequest.d.ts +6 -0
  1248. package/api/resources/ticketing/resources/attachments/client/requests/TicketingAttachmentEndpointRequest.d.ts +11 -0
  1249. package/api/resources/ticketing/resources/auditTrail/client/Client.d.ts +4 -0
  1250. package/api/resources/ticketing/resources/auditTrail/client/Client.js +12 -9
  1251. package/api/resources/ticketing/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +4 -0
  1252. package/api/resources/ticketing/resources/availableActions/client/Client.d.ts +1 -0
  1253. package/api/resources/ticketing/resources/availableActions/client/Client.js +2 -1
  1254. package/api/resources/ticketing/resources/collections/client/Client.d.ts +21 -0
  1255. package/api/resources/ticketing/resources/collections/client/Client.js +52 -30
  1256. package/api/resources/ticketing/resources/collections/client/requests/CollectionsListRequest.d.ts +11 -2
  1257. package/api/resources/ticketing/resources/collections/client/requests/CollectionsRetrieveRequest.d.ts +8 -0
  1258. package/api/resources/ticketing/resources/collections/client/requests/CollectionsUsersListRequest.d.ts +6 -0
  1259. package/api/resources/ticketing/resources/collections/index.d.ts +1 -0
  1260. package/api/resources/ticketing/resources/collections/index.js +1 -0
  1261. package/api/resources/ticketing/resources/collections/types/index.d.ts +2 -0
  1262. package/api/resources/ticketing/resources/collections/types/index.js +18 -0
  1263. package/api/resources/ticketing/resources/comments/client/Client.d.ts +22 -0
  1264. package/api/resources/ticketing/resources/comments/client/Client.js +48 -24
  1265. package/api/resources/ticketing/resources/comments/client/requests/CommentEndpointRequest.d.ts +9 -0
  1266. package/api/resources/ticketing/resources/comments/client/requests/CommentsListRequest.d.ts +6 -0
  1267. package/api/resources/ticketing/resources/comments/client/requests/CommentsRetrieveRequest.d.ts +6 -0
  1268. package/api/resources/ticketing/resources/comments/index.d.ts +1 -0
  1269. package/api/resources/ticketing/resources/comments/index.js +1 -0
  1270. package/api/resources/ticketing/resources/comments/types/index.d.ts +2 -0
  1271. package/api/resources/ticketing/resources/comments/types/index.js +18 -0
  1272. package/api/resources/ticketing/resources/contacts/client/Client.d.ts +11 -0
  1273. package/api/resources/ticketing/resources/contacts/client/Client.js +28 -17
  1274. package/api/resources/ticketing/resources/contacts/client/requests/ContactsListRequest.d.ts +6 -0
  1275. package/api/resources/ticketing/resources/contacts/client/requests/ContactsRetrieveRequest.d.ts +6 -0
  1276. package/api/resources/ticketing/resources/deleteAccount/client/Client.d.ts +4 -0
  1277. package/api/resources/ticketing/resources/deleteAccount/client/Client.js +5 -1
  1278. package/api/resources/ticketing/resources/forceResync/client/Client.d.ts +4 -0
  1279. package/api/resources/ticketing/resources/forceResync/client/Client.js +5 -1
  1280. package/api/resources/ticketing/resources/generateKey/client/Client.d.ts +6 -0
  1281. package/api/resources/ticketing/resources/generateKey/client/Client.js +7 -1
  1282. package/api/resources/ticketing/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +6 -0
  1283. package/api/resources/ticketing/resources/index.d.ts +14 -7
  1284. package/api/resources/ticketing/resources/index.js +15 -8
  1285. package/api/resources/ticketing/resources/issues/client/Client.d.ts +9 -0
  1286. package/api/resources/ticketing/resources/issues/client/Client.js +26 -17
  1287. package/api/resources/ticketing/resources/issues/client/requests/IssuesListRequest.d.ts +8 -2
  1288. package/api/resources/ticketing/resources/issues/index.d.ts +1 -0
  1289. package/api/resources/ticketing/resources/issues/index.js +1 -0
  1290. package/api/resources/ticketing/resources/issues/types/index.d.ts +1 -0
  1291. package/api/resources/ticketing/resources/issues/types/index.js +17 -0
  1292. package/api/resources/ticketing/resources/linkToken/client/Client.d.ts +1 -0
  1293. package/api/resources/ticketing/resources/linkToken/client/Client.js +2 -1
  1294. package/api/resources/ticketing/resources/linkedAccounts/client/Client.d.ts +6 -0
  1295. package/api/resources/ticketing/resources/linkedAccounts/client/Client.js +21 -16
  1296. package/api/resources/ticketing/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.d.ts +13 -7
  1297. package/api/resources/ticketing/resources/linkedAccounts/index.d.ts +1 -0
  1298. package/api/resources/ticketing/resources/linkedAccounts/index.js +1 -0
  1299. package/api/resources/ticketing/resources/linkedAccounts/types/index.d.ts +1 -0
  1300. package/api/resources/ticketing/resources/linkedAccounts/types/index.js +17 -0
  1301. package/api/resources/ticketing/resources/passthrough/client/Client.d.ts +1 -0
  1302. package/api/resources/ticketing/resources/passthrough/client/Client.js +2 -1
  1303. package/api/resources/ticketing/resources/projects/client/Client.d.ts +12 -0
  1304. package/api/resources/ticketing/resources/projects/client/Client.js +35 -22
  1305. package/api/resources/ticketing/resources/projects/client/requests/ProjectsListRequest.d.ts +4 -0
  1306. package/api/resources/ticketing/resources/projects/client/requests/ProjectsRetrieveRequest.d.ts +4 -0
  1307. package/api/resources/ticketing/resources/projects/client/requests/ProjectsUsersListRequest.d.ts +6 -0
  1308. package/api/resources/ticketing/resources/projects/index.d.ts +1 -0
  1309. package/api/resources/ticketing/resources/projects/index.js +1 -0
  1310. package/api/resources/ticketing/resources/projects/types/index.d.ts +1 -0
  1311. package/api/resources/ticketing/resources/projects/types/index.js +17 -0
  1312. package/api/resources/ticketing/resources/regenerateKey/client/Client.d.ts +6 -0
  1313. package/api/resources/ticketing/resources/regenerateKey/client/Client.js +7 -1
  1314. package/api/resources/ticketing/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +6 -0
  1315. package/api/resources/ticketing/resources/roles/client/Client.d.ts +7 -0
  1316. package/api/resources/ticketing/resources/roles/client/Client.js +22 -15
  1317. package/api/resources/ticketing/resources/roles/client/requests/RolesListRequest.d.ts +4 -0
  1318. package/api/resources/ticketing/resources/roles/client/requests/RolesRetrieveRequest.d.ts +4 -0
  1319. package/api/resources/ticketing/resources/selectiveSync/client/Client.d.ts +14 -0
  1320. package/api/resources/ticketing/resources/selectiveSync/client/Client.js +23 -8
  1321. package/api/resources/ticketing/resources/selectiveSync/client/requests/LinkedAccountSelectiveSyncConfigurationListRequest.d.ts +8 -0
  1322. package/api/resources/ticketing/resources/selectiveSync/client/requests/SelectiveSyncMetaListRequest.d.ts +4 -0
  1323. package/api/resources/ticketing/resources/syncStatus/client/Client.d.ts +4 -0
  1324. package/api/resources/ticketing/resources/syncStatus/client/Client.js +8 -5
  1325. package/api/resources/ticketing/resources/syncStatus/client/requests/SyncStatusListRequest.d.ts +4 -0
  1326. package/api/resources/ticketing/resources/tags/client/Client.d.ts +7 -0
  1327. package/api/resources/ticketing/resources/tags/client/Client.js +22 -15
  1328. package/api/resources/ticketing/resources/tags/client/requests/TagsListRequest.d.ts +4 -0
  1329. package/api/resources/ticketing/resources/tags/client/requests/TagsRetrieveRequest.d.ts +4 -0
  1330. package/api/resources/ticketing/resources/teams/client/Client.d.ts +7 -0
  1331. package/api/resources/ticketing/resources/teams/client/Client.js +22 -15
  1332. package/api/resources/ticketing/resources/teams/client/requests/TeamsListRequest.d.ts +4 -0
  1333. package/api/resources/ticketing/resources/teams/client/requests/TeamsRetrieveRequest.d.ts +4 -0
  1334. package/api/resources/ticketing/resources/tickets/client/Client.d.ts +58 -0
  1335. package/api/resources/ticketing/resources/tickets/client/Client.js +128 -64
  1336. package/api/resources/ticketing/resources/tickets/client/requests/PatchedTicketEndpointRequest.d.ts +16 -0
  1337. package/api/resources/ticketing/resources/tickets/client/requests/TicketEndpointRequest.d.ts +13 -0
  1338. package/api/resources/ticketing/resources/tickets/client/requests/TicketsCollaboratorsListRequest.d.ts +6 -0
  1339. package/api/resources/ticketing/resources/tickets/client/requests/TicketsListRequest.d.ts +18 -8
  1340. package/api/resources/ticketing/resources/tickets/client/requests/TicketsRemoteFieldClassesListRequest.d.ts +4 -0
  1341. package/api/resources/ticketing/resources/tickets/client/requests/TicketsRetrieveRequest.d.ts +8 -0
  1342. package/api/resources/ticketing/resources/tickets/index.d.ts +1 -0
  1343. package/api/resources/ticketing/resources/tickets/index.js +1 -0
  1344. package/api/resources/ticketing/resources/tickets/types/index.d.ts +9 -0
  1345. package/api/resources/ticketing/resources/tickets/types/index.js +25 -0
  1346. package/api/resources/ticketing/resources/users/client/Client.d.ts +11 -0
  1347. package/api/resources/ticketing/resources/users/client/Client.js +29 -18
  1348. package/api/resources/ticketing/resources/users/client/requests/UsersListRequest.d.ts +6 -0
  1349. package/api/resources/ticketing/resources/users/client/requests/UsersRetrieveRequest.d.ts +6 -0
  1350. package/api/resources/ticketing/resources/users/index.d.ts +1 -0
  1351. package/api/resources/ticketing/resources/users/index.js +1 -0
  1352. package/api/resources/ticketing/resources/users/types/index.d.ts +2 -0
  1353. package/api/resources/ticketing/resources/users/types/index.js +18 -0
  1354. package/api/resources/ticketing/resources/webhookReceivers/client/Client.d.ts +4 -0
  1355. package/api/resources/ticketing/resources/webhookReceivers/client/Client.js +7 -2
  1356. package/api/resources/ticketing/types/AccessLevelEnum.d.ts +3 -3
  1357. package/api/resources/ticketing/types/Account.d.ts +3 -0
  1358. package/api/resources/ticketing/types/AccountDetailsAndActions.d.ts +3 -0
  1359. package/api/resources/ticketing/types/AccountDetailsAndActionsStatusEnum.d.ts +3 -3
  1360. package/api/resources/ticketing/types/Attachment.d.ts +3 -0
  1361. package/api/resources/ticketing/types/AttachmentRequest.d.ts +3 -0
  1362. package/api/resources/ticketing/types/AuditLogEvent.d.ts +36 -36
  1363. package/api/resources/ticketing/types/AuditLogEventEventType.d.ts +30 -30
  1364. package/api/resources/ticketing/types/AuditLogEventRole.d.ts +6 -6
  1365. package/api/resources/ticketing/types/AvailableActions.d.ts +3 -0
  1366. package/api/resources/ticketing/types/CategoriesEnum.d.ts +7 -7
  1367. package/api/resources/ticketing/types/CategoryEnum.d.ts +7 -7
  1368. package/api/resources/ticketing/types/Collection.d.ts +8 -5
  1369. package/api/resources/ticketing/types/CollectionAccessLevel.d.ts +3 -3
  1370. package/api/resources/ticketing/types/CollectionCollectionType.d.ts +2 -2
  1371. package/api/resources/ticketing/types/CollectionTypeEnum.d.ts +2 -2
  1372. package/api/resources/ticketing/types/Comment.d.ts +3 -0
  1373. package/api/resources/ticketing/types/CommentRequest.d.ts +3 -0
  1374. package/api/resources/ticketing/types/ConditionSchema.d.ts +8 -8
  1375. package/api/resources/ticketing/types/ConditionSchemaConditionType.d.ts +7 -7
  1376. package/api/resources/ticketing/types/ConditionTypeEnum.d.ts +7 -7
  1377. package/api/resources/ticketing/types/Contact.d.ts +3 -0
  1378. package/api/resources/ticketing/types/DataPassthroughRequest.d.ts +3 -0
  1379. package/api/resources/ticketing/types/EnabledActionsEnum.d.ts +2 -2
  1380. package/api/resources/ticketing/types/EncodingEnum.d.ts +3 -3
  1381. package/api/resources/ticketing/types/EventTypeEnum.d.ts +30 -30
  1382. package/api/resources/ticketing/types/FieldFormatEnum.d.ts +6 -6
  1383. package/api/resources/ticketing/types/FieldTypeEnum.d.ts +6 -6
  1384. package/api/resources/ticketing/types/Issue.d.ts +2 -2
  1385. package/api/resources/ticketing/types/IssueStatus.d.ts +2 -2
  1386. package/api/resources/ticketing/types/IssueStatusEnum.d.ts +2 -2
  1387. package/api/resources/ticketing/types/ItemFormatEnum.d.ts +6 -6
  1388. package/api/resources/ticketing/types/ItemTypeEnum.d.ts +6 -6
  1389. package/api/resources/ticketing/types/LinkedAccountCondition.d.ts +1 -1
  1390. package/api/resources/ticketing/types/MethodEnum.d.ts +7 -7
  1391. package/api/resources/ticketing/types/ModelOperation.d.ts +3 -0
  1392. package/api/resources/ticketing/types/MultipartFormFieldRequest.d.ts +6 -3
  1393. package/api/resources/ticketing/types/MultipartFormFieldRequestEncoding.d.ts +3 -3
  1394. package/api/resources/ticketing/types/PatchedTicketRequest.d.ts +11 -8
  1395. package/api/resources/ticketing/types/PatchedTicketRequestPriority.d.ts +4 -4
  1396. package/api/resources/ticketing/types/PatchedTicketRequestStatus.d.ts +4 -4
  1397. package/api/resources/ticketing/types/PriorityEnum.d.ts +4 -4
  1398. package/api/resources/ticketing/types/Project.d.ts +3 -0
  1399. package/api/resources/ticketing/types/RemoteData.d.ts +1 -1
  1400. package/api/resources/ticketing/types/RemoteKey.d.ts +3 -0
  1401. package/api/resources/ticketing/types/RemoteResponse.d.ts +3 -0
  1402. package/api/resources/ticketing/types/RequestFormatEnum.d.ts +3 -3
  1403. package/api/resources/ticketing/types/ResponseTypeEnum.d.ts +2 -2
  1404. package/api/resources/ticketing/types/Role.d.ts +6 -3
  1405. package/api/resources/ticketing/types/RoleEnum.d.ts +6 -6
  1406. package/api/resources/ticketing/types/RoleTicketAccess.d.ts +3 -3
  1407. package/api/resources/ticketing/types/SelectiveSyncConfigurationsUsageEnum.d.ts +2 -2
  1408. package/api/resources/ticketing/types/SyncStatus.d.ts +3 -0
  1409. package/api/resources/ticketing/types/SyncStatusStatusEnum.d.ts +6 -6
  1410. package/api/resources/ticketing/types/Tag.d.ts +3 -0
  1411. package/api/resources/ticketing/types/Team.d.ts +3 -0
  1412. package/api/resources/ticketing/types/Ticket.d.ts +11 -8
  1413. package/api/resources/ticketing/types/TicketAccessEnum.d.ts +3 -3
  1414. package/api/resources/ticketing/types/TicketActionsEnum.d.ts +6 -6
  1415. package/api/resources/ticketing/types/TicketPriority.d.ts +4 -4
  1416. package/api/resources/ticketing/types/TicketRequest.d.ts +11 -8
  1417. package/api/resources/ticketing/types/TicketRequestPriority.d.ts +4 -4
  1418. package/api/resources/ticketing/types/TicketRequestStatus.d.ts +4 -4
  1419. package/api/resources/ticketing/types/TicketStatus.d.ts +4 -4
  1420. package/api/resources/ticketing/types/TicketStatusEnum.d.ts +4 -4
  1421. package/api/resources/ticketing/types/User.d.ts +3 -0
  1422. package/api/resources/ticketing/types/index.d.ts +19 -37
  1423. package/api/resources/ticketing/types/index.js +19 -37
  1424. package/core/fetcher/APIResponse.d.ts +1 -0
  1425. package/core/fetcher/Fetcher.d.ts +3 -6
  1426. package/core/fetcher/Fetcher.js +80 -35
  1427. package/core/fetcher/getHeader.d.ts +1 -0
  1428. package/core/fetcher/getHeader.js +12 -0
  1429. package/core/fetcher/index.d.ts +1 -0
  1430. package/core/fetcher/index.js +3 -1
  1431. package/core/index.d.ts +0 -1
  1432. package/core/index.js +0 -1
  1433. package/core/schemas/Schema.d.ts +1 -0
  1434. package/core/schemas/Schema.js +1 -0
  1435. package/core/schemas/builders/literals/booleanLiteral.d.ts +2 -0
  1436. package/core/schemas/builders/literals/booleanLiteral.js +29 -0
  1437. package/core/schemas/builders/literals/index.d.ts +1 -0
  1438. package/core/schemas/builders/literals/index.js +3 -1
  1439. package/core/schemas/builders/object/index.d.ts +2 -0
  1440. package/core/schemas/builders/object/index.js +3 -1
  1441. package/core/schemas/builders/object/objectWithoutOptionalProperties.d.ts +6 -0
  1442. package/core/schemas/builders/object/objectWithoutOptionalProperties.js +8 -0
  1443. package/dist/Client.d.ts +1 -0
  1444. package/dist/api/resources/accounting/client/Client.d.ts +1 -0
  1445. package/dist/api/resources/accounting/index.d.ts +1 -1
  1446. package/dist/api/resources/accounting/index.js +1 -1
  1447. package/dist/api/resources/accounting/resources/accountDetails/client/Client.d.ts +4 -0
  1448. package/dist/api/resources/accounting/resources/accountDetails/client/Client.js +5 -1
  1449. package/dist/api/resources/accounting/resources/accountToken/client/Client.d.ts +1 -0
  1450. package/dist/api/resources/accounting/resources/accountToken/client/Client.js +2 -1
  1451. package/dist/api/resources/accounting/resources/accountingPeriods/client/Client.d.ts +7 -0
  1452. package/dist/api/resources/accounting/resources/accountingPeriods/client/Client.js +17 -10
  1453. package/dist/api/resources/accounting/resources/accountingPeriods/client/requests/AccountingPeriodsListRequest.d.ts +4 -0
  1454. package/dist/api/resources/accounting/resources/accountingPeriods/client/requests/AccountingPeriodsRetrieveRequest.d.ts +4 -0
  1455. package/dist/api/resources/accounting/resources/accounts/client/Client.d.ts +30 -0
  1456. package/dist/api/resources/accounting/resources/accounts/client/Client.js +59 -27
  1457. package/dist/api/resources/accounting/resources/accounts/client/requests/AccountEndpointRequest.d.ts +13 -0
  1458. package/dist/api/resources/accounting/resources/accounts/client/requests/AccountsListRequest.d.ts +8 -0
  1459. package/dist/api/resources/accounting/resources/accounts/client/requests/AccountsRetrieveRequest.d.ts +8 -0
  1460. package/dist/api/resources/accounting/resources/accounts/index.d.ts +1 -0
  1461. package/dist/api/resources/accounting/resources/accounts/index.js +1 -0
  1462. package/dist/api/resources/accounting/resources/accounts/types/index.d.ts +4 -0
  1463. package/dist/api/resources/accounting/resources/accounts/types/index.js +20 -0
  1464. package/dist/api/resources/accounting/resources/addresses/client/Client.d.ts +7 -0
  1465. package/dist/api/resources/accounting/resources/addresses/client/Client.js +12 -6
  1466. package/dist/api/resources/accounting/resources/addresses/client/requests/AddressesRetrieveRequest.d.ts +7 -0
  1467. package/dist/api/resources/accounting/resources/asyncPassthrough/client/Client.d.ts +15 -0
  1468. package/dist/api/resources/accounting/resources/asyncPassthrough/client/Client.js +18 -2
  1469. package/dist/api/resources/accounting/resources/attachments/client/Client.d.ts +19 -0
  1470. package/dist/api/resources/accounting/resources/attachments/client/Client.js +42 -21
  1471. package/dist/api/resources/accounting/resources/attachments/client/requests/AccountingAttachmentEndpointRequest.d.ts +10 -0
  1472. package/dist/api/resources/accounting/resources/attachments/client/requests/AttachmentsListRequest.d.ts +4 -0
  1473. package/dist/api/resources/accounting/resources/attachments/client/requests/AttachmentsRetrieveRequest.d.ts +4 -0
  1474. package/dist/api/resources/accounting/resources/auditTrail/client/Client.d.ts +4 -0
  1475. package/dist/api/resources/accounting/resources/auditTrail/client/Client.js +12 -9
  1476. package/dist/api/resources/accounting/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +4 -0
  1477. package/dist/api/resources/accounting/resources/availableActions/client/Client.d.ts +1 -0
  1478. package/dist/api/resources/accounting/resources/availableActions/client/Client.js +2 -1
  1479. package/dist/api/resources/accounting/resources/balanceSheets/client/Client.d.ts +11 -0
  1480. package/dist/api/resources/accounting/resources/balanceSheets/client/Client.js +29 -18
  1481. package/dist/api/resources/accounting/resources/balanceSheets/client/requests/BalanceSheetsListRequest.d.ts +6 -0
  1482. package/dist/api/resources/accounting/resources/balanceSheets/client/requests/BalanceSheetsRetrieveRequest.d.ts +6 -0
  1483. package/dist/api/resources/accounting/resources/cashFlowStatements/client/Client.d.ts +11 -0
  1484. package/dist/api/resources/accounting/resources/cashFlowStatements/client/Client.js +29 -18
  1485. package/dist/api/resources/accounting/resources/cashFlowStatements/client/requests/CashFlowStatementsListRequest.d.ts +6 -0
  1486. package/dist/api/resources/accounting/resources/cashFlowStatements/client/requests/CashFlowStatementsRetrieveRequest.d.ts +6 -0
  1487. package/dist/api/resources/accounting/resources/companyInfo/client/Client.d.ts +11 -0
  1488. package/dist/api/resources/accounting/resources/companyInfo/client/Client.js +28 -17
  1489. package/dist/api/resources/accounting/resources/companyInfo/client/requests/CompanyInfoListRequest.d.ts +6 -0
  1490. package/dist/api/resources/accounting/resources/companyInfo/client/requests/CompanyInfoRetrieveRequest.d.ts +6 -0
  1491. package/dist/api/resources/accounting/resources/companyInfo/index.d.ts +1 -0
  1492. package/dist/api/resources/accounting/resources/companyInfo/index.js +1 -0
  1493. package/dist/api/resources/accounting/resources/companyInfo/types/index.d.ts +2 -0
  1494. package/dist/api/resources/accounting/resources/companyInfo/types/index.js +18 -0
  1495. package/dist/api/resources/accounting/resources/contacts/client/Client.d.ts +34 -0
  1496. package/dist/api/resources/accounting/resources/contacts/client/Client.js +65 -29
  1497. package/dist/api/resources/accounting/resources/contacts/client/requests/ContactEndpointRequest.d.ts +17 -0
  1498. package/dist/api/resources/accounting/resources/contacts/client/requests/ContactsListRequest.d.ts +8 -0
  1499. package/dist/api/resources/accounting/resources/contacts/client/requests/ContactsRetrieveRequest.d.ts +8 -0
  1500. package/dist/api/resources/accounting/resources/contacts/index.d.ts +1 -0
  1501. package/dist/api/resources/accounting/resources/contacts/index.js +1 -0
  1502. package/dist/api/resources/accounting/resources/contacts/types/index.d.ts +2 -0
  1503. package/dist/api/resources/accounting/resources/contacts/types/index.js +18 -0
  1504. package/dist/api/resources/accounting/resources/creditNotes/client/Client.d.ts +15 -0
  1505. package/dist/api/resources/accounting/resources/creditNotes/client/Client.js +39 -24
  1506. package/dist/api/resources/accounting/resources/creditNotes/client/requests/CreditNotesListRequest.d.ts +8 -0
  1507. package/dist/api/resources/accounting/resources/creditNotes/client/requests/CreditNotesRetrieveRequest.d.ts +8 -0
  1508. package/dist/api/resources/accounting/resources/creditNotes/index.d.ts +1 -0
  1509. package/dist/api/resources/accounting/resources/creditNotes/index.js +1 -0
  1510. package/dist/api/resources/accounting/resources/creditNotes/types/index.d.ts +6 -0
  1511. package/dist/api/resources/accounting/resources/creditNotes/types/index.js +22 -0
  1512. package/dist/api/resources/accounting/resources/deleteAccount/client/Client.d.ts +4 -0
  1513. package/dist/api/resources/accounting/resources/deleteAccount/client/Client.js +5 -1
  1514. package/dist/api/resources/accounting/resources/expenses/client/Client.d.ts +30 -0
  1515. package/dist/api/resources/accounting/resources/expenses/client/Client.js +57 -25
  1516. package/dist/api/resources/accounting/resources/expenses/client/requests/ExpenseEndpointRequest.d.ts +17 -0
  1517. package/dist/api/resources/accounting/resources/expenses/client/requests/ExpensesListRequest.d.ts +6 -0
  1518. package/dist/api/resources/accounting/resources/expenses/client/requests/ExpensesRetrieveRequest.d.ts +6 -0
  1519. package/dist/api/resources/accounting/resources/expenses/index.d.ts +1 -0
  1520. package/dist/api/resources/accounting/resources/expenses/index.js +1 -0
  1521. package/dist/api/resources/accounting/resources/expenses/types/index.d.ts +2 -0
  1522. package/dist/api/resources/accounting/resources/expenses/types/index.js +18 -0
  1523. package/dist/api/resources/accounting/resources/forceResync/client/Client.d.ts +4 -0
  1524. package/dist/api/resources/accounting/resources/forceResync/client/Client.js +5 -1
  1525. package/dist/api/resources/accounting/resources/generateKey/client/Client.d.ts +6 -0
  1526. package/dist/api/resources/accounting/resources/generateKey/client/Client.js +7 -1
  1527. package/dist/api/resources/accounting/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +6 -0
  1528. package/dist/api/resources/accounting/resources/incomeStatements/client/Client.d.ts +11 -0
  1529. package/dist/api/resources/accounting/resources/incomeStatements/client/Client.js +29 -18
  1530. package/dist/api/resources/accounting/resources/incomeStatements/client/requests/IncomeStatementsListRequest.d.ts +6 -0
  1531. package/dist/api/resources/accounting/resources/incomeStatements/client/requests/IncomeStatementsRetrieveRequest.d.ts +6 -0
  1532. package/dist/api/resources/accounting/resources/index.d.ts +28 -14
  1533. package/dist/api/resources/accounting/resources/index.js +29 -15
  1534. package/dist/api/resources/accounting/resources/invoices/client/Client.d.ts +34 -0
  1535. package/dist/api/resources/accounting/resources/invoices/client/Client.js +67 -31
  1536. package/dist/api/resources/accounting/resources/invoices/client/requests/InvoiceEndpointRequest.d.ts +16 -0
  1537. package/dist/api/resources/accounting/resources/invoices/client/requests/InvoicesListRequest.d.ts +11 -2
  1538. package/dist/api/resources/accounting/resources/invoices/client/requests/InvoicesRetrieveRequest.d.ts +8 -0
  1539. package/dist/api/resources/accounting/resources/invoices/index.d.ts +1 -0
  1540. package/dist/api/resources/accounting/resources/invoices/index.js +1 -0
  1541. package/dist/api/resources/accounting/resources/invoices/types/index.d.ts +3 -0
  1542. package/dist/api/resources/accounting/resources/invoices/types/index.js +19 -0
  1543. package/dist/api/resources/accounting/resources/issues/client/Client.d.ts +9 -0
  1544. package/dist/api/resources/accounting/resources/issues/client/Client.js +26 -17
  1545. package/dist/api/resources/accounting/resources/issues/client/requests/IssuesListRequest.d.ts +8 -2
  1546. package/dist/api/resources/accounting/resources/issues/index.d.ts +1 -0
  1547. package/dist/api/resources/accounting/resources/issues/index.js +1 -0
  1548. package/dist/api/resources/accounting/resources/issues/types/index.d.ts +1 -0
  1549. package/dist/api/resources/accounting/resources/issues/types/index.js +17 -0
  1550. package/dist/api/resources/accounting/resources/items/client/Client.d.ts +15 -0
  1551. package/dist/api/resources/accounting/resources/items/client/Client.js +37 -22
  1552. package/dist/api/resources/accounting/resources/items/client/requests/ItemsListRequest.d.ts +8 -0
  1553. package/dist/api/resources/accounting/resources/items/client/requests/ItemsRetrieveRequest.d.ts +8 -0
  1554. package/dist/api/resources/accounting/resources/items/index.d.ts +1 -0
  1555. package/dist/api/resources/accounting/resources/items/index.js +1 -0
  1556. package/dist/api/resources/accounting/resources/items/types/index.d.ts +2 -0
  1557. package/dist/api/resources/accounting/resources/items/types/index.js +18 -0
  1558. package/dist/api/resources/accounting/resources/journalEntries/client/Client.d.ts +28 -0
  1559. package/dist/api/resources/accounting/resources/journalEntries/client/Client.js +55 -25
  1560. package/dist/api/resources/accounting/resources/journalEntries/client/requests/JournalEntriesListRequest.d.ts +6 -0
  1561. package/dist/api/resources/accounting/resources/journalEntries/client/requests/JournalEntriesRetrieveRequest.d.ts +6 -0
  1562. package/dist/api/resources/accounting/resources/journalEntries/client/requests/JournalEntryEndpointRequest.d.ts +15 -0
  1563. package/dist/api/resources/accounting/resources/journalEntries/index.d.ts +1 -0
  1564. package/dist/api/resources/accounting/resources/journalEntries/index.js +1 -0
  1565. package/dist/api/resources/accounting/resources/journalEntries/types/index.d.ts +2 -0
  1566. package/dist/api/resources/accounting/resources/journalEntries/types/index.js +18 -0
  1567. package/dist/api/resources/accounting/resources/linkToken/client/Client.d.ts +1 -0
  1568. package/dist/api/resources/accounting/resources/linkToken/client/Client.js +2 -1
  1569. package/dist/api/resources/accounting/resources/linkedAccounts/client/Client.d.ts +6 -0
  1570. package/dist/api/resources/accounting/resources/linkedAccounts/client/Client.js +21 -16
  1571. package/dist/api/resources/accounting/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.d.ts +13 -7
  1572. package/dist/api/resources/accounting/resources/linkedAccounts/index.d.ts +1 -0
  1573. package/dist/api/resources/accounting/resources/linkedAccounts/index.js +1 -0
  1574. package/dist/api/resources/accounting/resources/linkedAccounts/types/index.d.ts +1 -0
  1575. package/dist/api/resources/accounting/resources/linkedAccounts/types/index.js +17 -0
  1576. package/dist/api/resources/accounting/resources/passthrough/client/Client.d.ts +1 -0
  1577. package/dist/api/resources/accounting/resources/passthrough/client/Client.js +2 -1
  1578. package/dist/api/resources/accounting/resources/payments/client/Client.d.ts +23 -0
  1579. package/dist/api/resources/accounting/resources/payments/client/Client.js +52 -27
  1580. package/dist/api/resources/accounting/resources/payments/client/requests/PaymentEndpointRequest.d.ts +10 -0
  1581. package/dist/api/resources/accounting/resources/payments/client/requests/PaymentsListRequest.d.ts +6 -0
  1582. package/dist/api/resources/accounting/resources/payments/client/requests/PaymentsRetrieveRequest.d.ts +6 -0
  1583. package/dist/api/resources/accounting/resources/payments/index.d.ts +1 -0
  1584. package/dist/api/resources/accounting/resources/payments/index.js +1 -0
  1585. package/dist/api/resources/accounting/resources/payments/types/index.d.ts +2 -0
  1586. package/dist/api/resources/accounting/resources/payments/types/index.js +18 -0
  1587. package/dist/api/resources/accounting/resources/phoneNumbers/client/Client.d.ts +4 -0
  1588. package/dist/api/resources/accounting/resources/phoneNumbers/client/Client.js +7 -4
  1589. package/dist/api/resources/accounting/resources/phoneNumbers/client/requests/PhoneNumbersRetrieveRequest.d.ts +4 -0
  1590. package/dist/api/resources/accounting/resources/purchaseOrders/client/Client.d.ts +34 -0
  1591. package/dist/api/resources/accounting/resources/purchaseOrders/client/Client.js +65 -29
  1592. package/dist/api/resources/accounting/resources/purchaseOrders/client/requests/PurchaseOrderEndpointRequest.d.ts +17 -0
  1593. package/dist/api/resources/accounting/resources/purchaseOrders/client/requests/PurchaseOrdersListRequest.d.ts +8 -0
  1594. package/dist/api/resources/accounting/resources/purchaseOrders/client/requests/PurchaseOrdersRetrieveRequest.d.ts +8 -0
  1595. package/dist/api/resources/accounting/resources/purchaseOrders/index.d.ts +1 -0
  1596. package/dist/api/resources/accounting/resources/purchaseOrders/index.js +1 -0
  1597. package/dist/api/resources/accounting/resources/purchaseOrders/types/index.d.ts +2 -0
  1598. package/dist/api/resources/accounting/resources/purchaseOrders/types/index.js +18 -0
  1599. package/dist/api/resources/accounting/resources/regenerateKey/client/Client.d.ts +6 -0
  1600. package/dist/api/resources/accounting/resources/regenerateKey/client/Client.js +7 -1
  1601. package/dist/api/resources/accounting/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +6 -0
  1602. package/dist/api/resources/accounting/resources/selectiveSync/client/Client.d.ts +14 -0
  1603. package/dist/api/resources/accounting/resources/selectiveSync/client/Client.js +23 -8
  1604. package/dist/api/resources/accounting/resources/selectiveSync/client/requests/LinkedAccountSelectiveSyncConfigurationListRequest.d.ts +8 -0
  1605. package/dist/api/resources/accounting/resources/selectiveSync/client/requests/SelectiveSyncMetaListRequest.d.ts +4 -0
  1606. package/dist/api/resources/accounting/resources/syncStatus/client/Client.d.ts +4 -0
  1607. package/dist/api/resources/accounting/resources/syncStatus/client/Client.js +8 -5
  1608. package/dist/api/resources/accounting/resources/syncStatus/client/requests/SyncStatusListRequest.d.ts +4 -0
  1609. package/dist/api/resources/accounting/resources/taxRates/client/Client.d.ts +11 -0
  1610. package/dist/api/resources/accounting/resources/taxRates/client/Client.js +29 -18
  1611. package/dist/api/resources/accounting/resources/taxRates/client/requests/TaxRatesListRequest.d.ts +6 -0
  1612. package/dist/api/resources/accounting/resources/taxRates/client/requests/TaxRatesRetrieveRequest.d.ts +6 -0
  1613. package/dist/api/resources/accounting/resources/trackingCategories/client/Client.d.ts +15 -0
  1614. package/dist/api/resources/accounting/resources/trackingCategories/client/Client.js +37 -22
  1615. package/dist/api/resources/accounting/resources/trackingCategories/client/requests/TrackingCategoriesListRequest.d.ts +8 -0
  1616. package/dist/api/resources/accounting/resources/trackingCategories/client/requests/TrackingCategoriesRetrieveRequest.d.ts +8 -0
  1617. package/dist/api/resources/accounting/resources/transactions/client/Client.d.ts +11 -0
  1618. package/dist/api/resources/accounting/resources/transactions/client/Client.js +31 -20
  1619. package/dist/api/resources/accounting/resources/transactions/client/requests/TransactionsListRequest.d.ts +6 -0
  1620. package/dist/api/resources/accounting/resources/transactions/client/requests/TransactionsRetrieveRequest.d.ts +6 -0
  1621. package/dist/api/resources/accounting/resources/transactions/index.d.ts +1 -0
  1622. package/dist/api/resources/accounting/resources/transactions/index.js +1 -0
  1623. package/dist/api/resources/accounting/resources/transactions/types/index.d.ts +2 -0
  1624. package/dist/api/resources/accounting/resources/transactions/types/index.js +18 -0
  1625. package/dist/api/resources/accounting/resources/vendorCredits/client/Client.d.ts +11 -0
  1626. package/dist/api/resources/accounting/resources/vendorCredits/client/Client.js +31 -20
  1627. package/dist/api/resources/accounting/resources/vendorCredits/client/requests/VendorCreditsListRequest.d.ts +6 -0
  1628. package/dist/api/resources/accounting/resources/vendorCredits/client/requests/VendorCreditsRetrieveRequest.d.ts +6 -0
  1629. package/dist/api/resources/accounting/resources/vendorCredits/index.d.ts +1 -0
  1630. package/dist/api/resources/accounting/resources/vendorCredits/index.js +1 -0
  1631. package/dist/api/resources/accounting/resources/vendorCredits/types/index.d.ts +2 -0
  1632. package/dist/api/resources/accounting/resources/vendorCredits/types/index.js +18 -0
  1633. package/dist/api/resources/accounting/resources/webhookReceivers/client/Client.d.ts +4 -0
  1634. package/dist/api/resources/accounting/resources/webhookReceivers/client/Client.js +7 -2
  1635. package/dist/api/resources/accounting/types/Account.d.ts +323 -319
  1636. package/dist/api/resources/accounting/types/AccountClassification.d.ts +5 -5
  1637. package/dist/api/resources/accounting/types/AccountCurrency.d.ts +306 -306
  1638. package/dist/api/resources/accounting/types/AccountDetailsAndActions.d.ts +3 -0
  1639. package/dist/api/resources/accounting/types/AccountDetailsAndActionsStatusEnum.d.ts +3 -3
  1640. package/dist/api/resources/accounting/types/AccountRequest.d.ts +323 -319
  1641. package/dist/api/resources/accounting/types/AccountRequestClassification.d.ts +5 -5
  1642. package/dist/api/resources/accounting/types/AccountRequestCurrency.d.ts +306 -306
  1643. package/dist/api/resources/accounting/types/AccountRequestStatus.d.ts +3 -3
  1644. package/dist/api/resources/accounting/types/AccountStatus.d.ts +3 -3
  1645. package/dist/api/resources/accounting/types/AccountStatusEnum.d.ts +3 -3
  1646. package/dist/api/resources/accounting/types/AccountingAttachment.d.ts +3 -0
  1647. package/dist/api/resources/accounting/types/AccountingAttachmentRequest.d.ts +3 -0
  1648. package/dist/api/resources/accounting/types/AccountingPeriod.d.ts +3 -0
  1649. package/dist/api/resources/accounting/types/AccountingPeriodStatusEnum.d.ts +2 -2
  1650. package/dist/api/resources/accounting/types/AccountingPhoneNumber.d.ts +3 -0
  1651. package/dist/api/resources/accounting/types/AccountingPhoneNumberRequest.d.ts +3 -0
  1652. package/dist/api/resources/accounting/types/Address.d.ts +254 -251
  1653. package/dist/api/resources/accounting/types/AddressCountry.d.ts +249 -249
  1654. package/dist/api/resources/accounting/types/AddressRequest.d.ts +254 -251
  1655. package/dist/api/resources/accounting/types/AddressRequestCountry.d.ts +249 -249
  1656. package/dist/api/resources/accounting/types/AddressRequestType.d.ts +2 -2
  1657. package/dist/api/resources/accounting/types/AddressType.d.ts +2 -2
  1658. package/dist/api/resources/accounting/types/AddressTypeEnum.d.ts +2 -2
  1659. package/dist/api/resources/accounting/types/AuditLogEvent.d.ts +36 -36
  1660. package/dist/api/resources/accounting/types/AuditLogEventEventType.d.ts +30 -30
  1661. package/dist/api/resources/accounting/types/AuditLogEventRole.d.ts +6 -6
  1662. package/dist/api/resources/accounting/types/AvailableActions.d.ts +3 -0
  1663. package/dist/api/resources/accounting/types/BalanceSheet.d.ts +309 -306
  1664. package/dist/api/resources/accounting/types/BalanceSheetCurrency.d.ts +306 -306
  1665. package/dist/api/resources/accounting/types/CashFlowStatement.d.ts +309 -306
  1666. package/dist/api/resources/accounting/types/CashFlowStatementCurrency.d.ts +306 -306
  1667. package/dist/api/resources/accounting/types/CategoriesEnum.d.ts +7 -7
  1668. package/dist/api/resources/accounting/types/CategoryEnum.d.ts +7 -7
  1669. package/dist/api/resources/accounting/types/CategoryTypeEnum.d.ts +2 -2
  1670. package/dist/api/resources/accounting/types/ClassificationEnum.d.ts +5 -5
  1671. package/dist/api/resources/accounting/types/CompanyInfo.d.ts +309 -306
  1672. package/dist/api/resources/accounting/types/CompanyInfoCurrency.d.ts +306 -306
  1673. package/dist/api/resources/accounting/types/ConditionSchema.d.ts +8 -8
  1674. package/dist/api/resources/accounting/types/ConditionSchemaConditionType.d.ts +7 -7
  1675. package/dist/api/resources/accounting/types/ConditionTypeEnum.d.ts +7 -7
  1676. package/dist/api/resources/accounting/types/Contact.d.ts +8 -4
  1677. package/dist/api/resources/accounting/types/ContactRequest.d.ts +8 -4
  1678. package/dist/api/resources/accounting/types/ContactRequestStatus.d.ts +2 -2
  1679. package/dist/api/resources/accounting/types/ContactStatus.d.ts +2 -2
  1680. package/dist/api/resources/accounting/types/CountryEnum.d.ts +249 -249
  1681. package/dist/api/resources/accounting/types/CreditNote.d.ts +313 -310
  1682. package/dist/api/resources/accounting/types/CreditNoteCurrency.d.ts +306 -306
  1683. package/dist/api/resources/accounting/types/CreditNoteStatus.d.ts +3 -3
  1684. package/dist/api/resources/accounting/types/CreditNoteStatusEnum.d.ts +3 -3
  1685. package/dist/api/resources/accounting/types/CurrencyEnum.d.ts +306 -306
  1686. package/dist/api/resources/accounting/types/DataPassthroughRequest.d.ts +3 -0
  1687. package/dist/api/resources/accounting/types/EnabledActionsEnum.d.ts +2 -2
  1688. package/dist/api/resources/accounting/types/EncodingEnum.d.ts +3 -3
  1689. package/dist/api/resources/accounting/types/EventTypeEnum.d.ts +30 -30
  1690. package/dist/api/resources/accounting/types/Expense.d.ts +309 -306
  1691. package/dist/api/resources/accounting/types/ExpenseCurrency.d.ts +306 -306
  1692. package/dist/api/resources/accounting/types/ExpenseLine.d.ts +309 -306
  1693. package/dist/api/resources/accounting/types/ExpenseLineCurrency.d.ts +306 -306
  1694. package/dist/api/resources/accounting/types/ExpenseLineRequest.d.ts +309 -306
  1695. package/dist/api/resources/accounting/types/ExpenseLineRequestCurrency.d.ts +306 -306
  1696. package/dist/api/resources/accounting/types/ExpenseRequest.d.ts +309 -306
  1697. package/dist/api/resources/accounting/types/ExpenseRequestCurrency.d.ts +306 -306
  1698. package/dist/api/resources/accounting/types/IncomeStatement.d.ts +309 -306
  1699. package/dist/api/resources/accounting/types/IncomeStatementCurrency.d.ts +306 -306
  1700. package/dist/api/resources/accounting/types/Invoice.d.ts +317 -314
  1701. package/dist/api/resources/accounting/types/InvoiceCurrency.d.ts +306 -306
  1702. package/dist/api/resources/accounting/types/InvoiceLineItem.d.ts +309 -306
  1703. package/dist/api/resources/accounting/types/InvoiceLineItemCurrency.d.ts +306 -306
  1704. package/dist/api/resources/accounting/types/InvoiceLineItemRequest.d.ts +309 -306
  1705. package/dist/api/resources/accounting/types/InvoiceLineItemRequestCurrency.d.ts +306 -306
  1706. package/dist/api/resources/accounting/types/InvoiceRequest.d.ts +316 -314
  1707. package/dist/api/resources/accounting/types/InvoiceRequestCurrency.d.ts +306 -306
  1708. package/dist/api/resources/accounting/types/InvoiceRequestStatus.d.ts +6 -6
  1709. package/dist/api/resources/accounting/types/InvoiceRequestType.d.ts +2 -2
  1710. package/dist/api/resources/accounting/types/InvoiceStatus.d.ts +6 -6
  1711. package/dist/api/resources/accounting/types/InvoiceStatusEnum.d.ts +6 -6
  1712. package/dist/api/resources/accounting/types/InvoiceType.d.ts +2 -2
  1713. package/dist/api/resources/accounting/types/InvoiceTypeEnum.d.ts +2 -2
  1714. package/dist/api/resources/accounting/types/Issue.d.ts +2 -2
  1715. package/dist/api/resources/accounting/types/IssueStatus.d.ts +2 -2
  1716. package/dist/api/resources/accounting/types/IssueStatusEnum.d.ts +2 -2
  1717. package/dist/api/resources/accounting/types/Item.d.ts +5 -2
  1718. package/dist/api/resources/accounting/types/ItemStatus.d.ts +2 -2
  1719. package/dist/api/resources/accounting/types/JournalEntry.d.ts +311 -308
  1720. package/dist/api/resources/accounting/types/JournalEntryCurrency.d.ts +306 -306
  1721. package/dist/api/resources/accounting/types/JournalEntryPostingStatus.d.ts +2 -2
  1722. package/dist/api/resources/accounting/types/JournalEntryRequest.d.ts +311 -308
  1723. package/dist/api/resources/accounting/types/JournalEntryRequestCurrency.d.ts +306 -306
  1724. package/dist/api/resources/accounting/types/JournalEntryRequestPostingStatus.d.ts +2 -2
  1725. package/dist/api/resources/accounting/types/JournalLine.d.ts +309 -306
  1726. package/dist/api/resources/accounting/types/JournalLineCurrency.d.ts +306 -306
  1727. package/dist/api/resources/accounting/types/JournalLineRequest.d.ts +309 -306
  1728. package/dist/api/resources/accounting/types/JournalLineRequestCurrency.d.ts +306 -306
  1729. package/dist/api/resources/accounting/types/LinkedAccountCondition.d.ts +1 -1
  1730. package/dist/api/resources/accounting/types/MethodEnum.d.ts +7 -7
  1731. package/dist/api/resources/accounting/types/ModelOperation.d.ts +3 -0
  1732. package/dist/api/resources/accounting/types/MultipartFormFieldRequest.d.ts +6 -3
  1733. package/dist/api/resources/accounting/types/MultipartFormFieldRequestEncoding.d.ts +3 -3
  1734. package/dist/api/resources/accounting/types/Payment.d.ts +309 -306
  1735. package/dist/api/resources/accounting/types/PaymentCurrency.d.ts +306 -306
  1736. package/dist/api/resources/accounting/types/PaymentLineItem.d.ts +3 -0
  1737. package/dist/api/resources/accounting/types/PaymentLineItemRequest.d.ts +3 -0
  1738. package/dist/api/resources/accounting/types/PaymentRequest.d.ts +309 -306
  1739. package/dist/api/resources/accounting/types/PaymentRequestCurrency.d.ts +306 -306
  1740. package/dist/api/resources/accounting/types/PostingStatusEnum.d.ts +2 -2
  1741. package/dist/api/resources/accounting/types/PurchaseOrder.d.ts +315 -312
  1742. package/dist/api/resources/accounting/types/PurchaseOrderCurrency.d.ts +306 -306
  1743. package/dist/api/resources/accounting/types/PurchaseOrderLineItem.d.ts +309 -306
  1744. package/dist/api/resources/accounting/types/PurchaseOrderLineItemCurrency.d.ts +306 -306
  1745. package/dist/api/resources/accounting/types/PurchaseOrderLineItemRequest.d.ts +309 -306
  1746. package/dist/api/resources/accounting/types/PurchaseOrderLineItemRequestCurrency.d.ts +306 -306
  1747. package/dist/api/resources/accounting/types/PurchaseOrderRequest.d.ts +314 -311
  1748. package/dist/api/resources/accounting/types/PurchaseOrderRequestCurrency.d.ts +306 -306
  1749. package/dist/api/resources/accounting/types/PurchaseOrderRequestStatus.d.ts +5 -5
  1750. package/dist/api/resources/accounting/types/PurchaseOrderStatus.d.ts +5 -5
  1751. package/dist/api/resources/accounting/types/PurchaseOrderStatusEnum.d.ts +5 -5
  1752. package/dist/api/resources/accounting/types/RemoteData.d.ts +1 -1
  1753. package/dist/api/resources/accounting/types/RemoteKey.d.ts +3 -0
  1754. package/dist/api/resources/accounting/types/RemoteResponse.d.ts +3 -0
  1755. package/dist/api/resources/accounting/types/ReportItem.d.ts +3 -0
  1756. package/dist/api/resources/accounting/types/RequestFormatEnum.d.ts +3 -3
  1757. package/dist/api/resources/accounting/types/ResponseTypeEnum.d.ts +2 -2
  1758. package/dist/api/resources/accounting/types/RoleEnum.d.ts +6 -6
  1759. package/dist/api/resources/accounting/types/SelectiveSyncConfigurationsUsageEnum.d.ts +2 -2
  1760. package/dist/api/resources/accounting/types/Status7D1Enum.d.ts +2 -2
  1761. package/dist/api/resources/accounting/types/SyncStatus.d.ts +3 -0
  1762. package/dist/api/resources/accounting/types/SyncStatusStatusEnum.d.ts +6 -6
  1763. package/dist/api/resources/accounting/types/TaxRate.d.ts +3 -0
  1764. package/dist/api/resources/accounting/types/TrackingCategory.d.ts +7 -4
  1765. package/dist/api/resources/accounting/types/TrackingCategoryCategoryType.d.ts +2 -2
  1766. package/dist/api/resources/accounting/types/TrackingCategoryStatus.d.ts +2 -2
  1767. package/dist/api/resources/accounting/types/Transaction.d.ts +317 -313
  1768. package/dist/api/resources/accounting/types/TransactionCurrency.d.ts +306 -306
  1769. package/dist/api/resources/accounting/types/TransactionLineItem.d.ts +309 -306
  1770. package/dist/api/resources/accounting/types/TransactionLineItemCurrency.d.ts +306 -306
  1771. package/dist/api/resources/accounting/types/VendorCredit.d.ts +310 -307
  1772. package/dist/api/resources/accounting/types/VendorCreditCurrency.d.ts +306 -306
  1773. package/dist/api/resources/accounting/types/VendorCreditLine.d.ts +3 -0
  1774. package/dist/api/resources/accounting/types/index.d.ts +43 -76
  1775. package/dist/api/resources/accounting/types/index.js +43 -76
  1776. package/dist/api/resources/ats/client/Client.d.ts +1 -0
  1777. package/dist/api/resources/ats/index.d.ts +1 -1
  1778. package/dist/api/resources/ats/index.js +1 -1
  1779. package/dist/api/resources/ats/resources/accountDetails/client/Client.d.ts +4 -0
  1780. package/dist/api/resources/ats/resources/accountDetails/client/Client.js +5 -1
  1781. package/dist/api/resources/ats/resources/accountToken/client/Client.d.ts +1 -0
  1782. package/dist/api/resources/ats/resources/accountToken/client/Client.js +2 -1
  1783. package/dist/api/resources/ats/resources/activities/client/Client.d.ts +18 -0
  1784. package/dist/api/resources/ats/resources/activities/client/Client.js +47 -27
  1785. package/dist/api/resources/ats/resources/activities/client/requests/ActivitiesListRequest.d.ts +8 -0
  1786. package/dist/api/resources/ats/resources/activities/client/requests/ActivitiesRetrieveRequest.d.ts +8 -0
  1787. package/dist/api/resources/ats/resources/activities/index.d.ts +1 -0
  1788. package/dist/api/resources/ats/resources/activities/index.js +1 -0
  1789. package/dist/api/resources/ats/resources/activities/types/index.d.ts +4 -0
  1790. package/dist/api/resources/ats/resources/activities/types/index.js +20 -0
  1791. package/dist/api/resources/ats/resources/applications/client/Client.d.ts +17 -0
  1792. package/dist/api/resources/ats/resources/applications/client/Client.js +54 -34
  1793. package/dist/api/resources/ats/resources/applications/client/requests/ApplicationsListRequest.d.ts +6 -0
  1794. package/dist/api/resources/ats/resources/applications/client/requests/ApplicationsMetaPostRetrieveRequest.d.ts +4 -0
  1795. package/dist/api/resources/ats/resources/applications/client/requests/ApplicationsRetrieveRequest.d.ts +6 -0
  1796. package/dist/api/resources/ats/resources/applications/client/requests/UpdateApplicationStageRequest.d.ts +4 -0
  1797. package/dist/api/resources/ats/resources/applications/index.d.ts +1 -0
  1798. package/dist/api/resources/ats/resources/applications/index.js +1 -0
  1799. package/dist/api/resources/ats/resources/applications/types/index.d.ts +2 -0
  1800. package/dist/api/resources/ats/resources/applications/types/index.js +18 -0
  1801. package/dist/api/resources/ats/resources/asyncPassthrough/client/Client.d.ts +15 -0
  1802. package/dist/api/resources/ats/resources/asyncPassthrough/client/Client.js +18 -2
  1803. package/dist/api/resources/ats/resources/attachments/client/Client.d.ts +18 -0
  1804. package/dist/api/resources/ats/resources/attachments/client/Client.js +47 -27
  1805. package/dist/api/resources/ats/resources/attachments/client/requests/AttachmentsListRequest.d.ts +8 -0
  1806. package/dist/api/resources/ats/resources/attachments/client/requests/AttachmentsRetrieveRequest.d.ts +8 -0
  1807. package/dist/api/resources/ats/resources/auditTrail/client/Client.d.ts +4 -0
  1808. package/dist/api/resources/ats/resources/auditTrail/client/Client.js +12 -9
  1809. package/dist/api/resources/ats/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +4 -0
  1810. package/dist/api/resources/ats/resources/availableActions/client/Client.d.ts +1 -0
  1811. package/dist/api/resources/ats/resources/availableActions/client/Client.js +2 -1
  1812. package/dist/api/resources/ats/resources/candidates/client/Client.d.ts +23 -0
  1813. package/dist/api/resources/ats/resources/candidates/client/Client.js +60 -32
  1814. package/dist/api/resources/ats/resources/candidates/client/requests/CandidatesListRequest.d.ts +6 -0
  1815. package/dist/api/resources/ats/resources/candidates/client/requests/CandidatesRetrieveRequest.d.ts +6 -0
  1816. package/dist/api/resources/ats/resources/candidates/client/requests/IgnoreCommonModelRequest.d.ts +7 -0
  1817. package/dist/api/resources/ats/resources/candidates/index.d.ts +1 -0
  1818. package/dist/api/resources/ats/resources/candidates/index.js +1 -0
  1819. package/dist/api/resources/ats/resources/candidates/types/index.d.ts +2 -0
  1820. package/dist/api/resources/ats/resources/candidates/types/index.js +18 -0
  1821. package/dist/api/resources/ats/resources/deleteAccount/client/Client.d.ts +4 -0
  1822. package/dist/api/resources/ats/resources/deleteAccount/client/Client.js +5 -1
  1823. package/dist/api/resources/ats/resources/departments/client/Client.d.ts +7 -0
  1824. package/dist/api/resources/ats/resources/departments/client/Client.js +22 -15
  1825. package/dist/api/resources/ats/resources/departments/client/requests/DepartmentsListRequest.d.ts +4 -0
  1826. package/dist/api/resources/ats/resources/departments/client/requests/DepartmentsRetrieveRequest.d.ts +4 -0
  1827. package/dist/api/resources/ats/resources/eeocs/client/Client.d.ts +15 -0
  1828. package/dist/api/resources/ats/resources/eeocs/client/Client.js +37 -22
  1829. package/dist/api/resources/ats/resources/eeocs/client/requests/EeocsListRequest.d.ts +8 -0
  1830. package/dist/api/resources/ats/resources/eeocs/client/requests/EeocsRetrieveRequest.d.ts +8 -0
  1831. package/dist/api/resources/ats/resources/eeocs/index.d.ts +1 -0
  1832. package/dist/api/resources/ats/resources/eeocs/index.js +1 -0
  1833. package/dist/api/resources/ats/resources/eeocs/types/index.d.ts +4 -0
  1834. package/dist/api/resources/ats/resources/eeocs/types/index.js +20 -0
  1835. package/dist/api/resources/ats/resources/forceResync/client/Client.d.ts +4 -0
  1836. package/dist/api/resources/ats/resources/forceResync/client/Client.js +5 -1
  1837. package/dist/api/resources/ats/resources/generateKey/client/Client.d.ts +6 -0
  1838. package/dist/api/resources/ats/resources/generateKey/client/Client.js +7 -1
  1839. package/dist/api/resources/ats/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +6 -0
  1840. package/dist/api/resources/ats/resources/index.d.ts +20 -10
  1841. package/dist/api/resources/ats/resources/index.js +21 -11
  1842. package/dist/api/resources/ats/resources/interviews/client/Client.d.ts +18 -0
  1843. package/dist/api/resources/ats/resources/interviews/client/Client.js +50 -30
  1844. package/dist/api/resources/ats/resources/interviews/client/requests/InterviewsListRequest.d.ts +8 -0
  1845. package/dist/api/resources/ats/resources/interviews/client/requests/InterviewsRetrieveRequest.d.ts +8 -0
  1846. package/dist/api/resources/ats/resources/interviews/index.d.ts +1 -0
  1847. package/dist/api/resources/ats/resources/interviews/index.js +1 -0
  1848. package/dist/api/resources/ats/resources/interviews/types/index.d.ts +2 -0
  1849. package/dist/api/resources/ats/resources/interviews/types/index.js +18 -0
  1850. package/dist/api/resources/ats/resources/issues/client/Client.d.ts +9 -0
  1851. package/dist/api/resources/ats/resources/issues/client/Client.js +26 -17
  1852. package/dist/api/resources/ats/resources/issues/client/requests/IssuesListRequest.d.ts +8 -2
  1853. package/dist/api/resources/ats/resources/issues/index.d.ts +1 -0
  1854. package/dist/api/resources/ats/resources/issues/index.js +1 -0
  1855. package/dist/api/resources/ats/resources/issues/types/index.d.ts +1 -0
  1856. package/dist/api/resources/ats/resources/issues/types/index.js +17 -0
  1857. package/dist/api/resources/ats/resources/jobInterviewStages/client/Client.d.ts +11 -0
  1858. package/dist/api/resources/ats/resources/jobInterviewStages/client/Client.js +29 -18
  1859. package/dist/api/resources/ats/resources/jobInterviewStages/client/requests/JobInterviewStagesListRequest.d.ts +6 -0
  1860. package/dist/api/resources/ats/resources/jobInterviewStages/client/requests/JobInterviewStagesRetrieveRequest.d.ts +6 -0
  1861. package/dist/api/resources/ats/resources/jobs/client/Client.d.ts +21 -0
  1862. package/dist/api/resources/ats/resources/jobs/client/Client.js +53 -31
  1863. package/dist/api/resources/ats/resources/jobs/client/requests/JobsListRequest.d.ts +14 -5
  1864. package/dist/api/resources/ats/resources/jobs/client/requests/JobsRetrieveRequest.d.ts +8 -0
  1865. package/dist/api/resources/ats/resources/jobs/client/requests/JobsScreeningQuestionsListRequest.d.ts +6 -0
  1866. package/dist/api/resources/ats/resources/jobs/index.d.ts +1 -0
  1867. package/dist/api/resources/ats/resources/jobs/index.js +1 -0
  1868. package/dist/api/resources/ats/resources/jobs/types/index.d.ts +4 -0
  1869. package/dist/api/resources/ats/resources/jobs/types/index.js +20 -0
  1870. package/dist/api/resources/ats/resources/linkToken/client/Client.d.ts +1 -0
  1871. package/dist/api/resources/ats/resources/linkToken/client/Client.js +2 -1
  1872. package/dist/api/resources/ats/resources/linkedAccounts/client/Client.d.ts +6 -0
  1873. package/dist/api/resources/ats/resources/linkedAccounts/client/Client.js +21 -16
  1874. package/dist/api/resources/ats/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.d.ts +13 -7
  1875. package/dist/api/resources/ats/resources/linkedAccounts/index.d.ts +1 -0
  1876. package/dist/api/resources/ats/resources/linkedAccounts/index.js +1 -0
  1877. package/dist/api/resources/ats/resources/linkedAccounts/types/index.d.ts +1 -0
  1878. package/dist/api/resources/ats/resources/linkedAccounts/types/index.js +17 -0
  1879. package/dist/api/resources/ats/resources/offers/client/Client.d.ts +15 -0
  1880. package/dist/api/resources/ats/resources/offers/client/Client.js +38 -23
  1881. package/dist/api/resources/ats/resources/offers/client/requests/OffersListRequest.d.ts +8 -0
  1882. package/dist/api/resources/ats/resources/offers/client/requests/OffersRetrieveRequest.d.ts +8 -0
  1883. package/dist/api/resources/ats/resources/offers/index.d.ts +1 -0
  1884. package/dist/api/resources/ats/resources/offers/index.js +1 -0
  1885. package/dist/api/resources/ats/resources/offers/types/index.d.ts +2 -0
  1886. package/dist/api/resources/ats/resources/offers/types/index.js +18 -0
  1887. package/dist/api/resources/ats/resources/offices/client/Client.d.ts +7 -0
  1888. package/dist/api/resources/ats/resources/offices/client/Client.js +22 -15
  1889. package/dist/api/resources/ats/resources/offices/client/requests/OfficesListRequest.d.ts +4 -0
  1890. package/dist/api/resources/ats/resources/offices/client/requests/OfficesRetrieveRequest.d.ts +4 -0
  1891. package/dist/api/resources/ats/resources/passthrough/client/Client.d.ts +1 -0
  1892. package/dist/api/resources/ats/resources/passthrough/client/Client.js +2 -1
  1893. package/dist/api/resources/ats/resources/regenerateKey/client/Client.d.ts +6 -0
  1894. package/dist/api/resources/ats/resources/regenerateKey/client/Client.js +7 -1
  1895. package/dist/api/resources/ats/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +6 -0
  1896. package/dist/api/resources/ats/resources/rejectReasons/client/Client.d.ts +7 -0
  1897. package/dist/api/resources/ats/resources/rejectReasons/client/Client.js +22 -15
  1898. package/dist/api/resources/ats/resources/rejectReasons/client/requests/RejectReasonsListRequest.d.ts +4 -0
  1899. package/dist/api/resources/ats/resources/rejectReasons/client/requests/RejectReasonsRetrieveRequest.d.ts +4 -0
  1900. package/dist/api/resources/ats/resources/scorecards/client/Client.d.ts +15 -0
  1901. package/dist/api/resources/ats/resources/scorecards/client/Client.js +39 -24
  1902. package/dist/api/resources/ats/resources/scorecards/client/requests/ScorecardsListRequest.d.ts +8 -0
  1903. package/dist/api/resources/ats/resources/scorecards/client/requests/ScorecardsRetrieveRequest.d.ts +8 -0
  1904. package/dist/api/resources/ats/resources/scorecards/index.d.ts +1 -0
  1905. package/dist/api/resources/ats/resources/scorecards/index.js +1 -0
  1906. package/dist/api/resources/ats/resources/scorecards/types/index.d.ts +2 -0
  1907. package/dist/api/resources/ats/resources/scorecards/types/index.js +18 -0
  1908. package/dist/api/resources/ats/resources/selectiveSync/client/Client.d.ts +14 -0
  1909. package/dist/api/resources/ats/resources/selectiveSync/client/Client.js +23 -8
  1910. package/dist/api/resources/ats/resources/selectiveSync/client/requests/LinkedAccountSelectiveSyncConfigurationListRequest.d.ts +8 -0
  1911. package/dist/api/resources/ats/resources/selectiveSync/client/requests/SelectiveSyncMetaListRequest.d.ts +4 -0
  1912. package/dist/api/resources/ats/resources/syncStatus/client/Client.d.ts +4 -0
  1913. package/dist/api/resources/ats/resources/syncStatus/client/Client.js +8 -5
  1914. package/dist/api/resources/ats/resources/syncStatus/client/requests/SyncStatusListRequest.d.ts +4 -0
  1915. package/dist/api/resources/ats/resources/tags/client/Client.d.ts +4 -0
  1916. package/dist/api/resources/ats/resources/tags/client/Client.js +15 -12
  1917. package/dist/api/resources/ats/resources/tags/client/requests/TagsListRequest.d.ts +4 -0
  1918. package/dist/api/resources/ats/resources/users/client/Client.d.ts +13 -0
  1919. package/dist/api/resources/ats/resources/users/client/Client.js +33 -20
  1920. package/dist/api/resources/ats/resources/users/client/requests/UsersListRequest.d.ts +7 -0
  1921. package/dist/api/resources/ats/resources/users/client/requests/UsersRetrieveRequest.d.ts +7 -0
  1922. package/dist/api/resources/ats/resources/webhookReceivers/client/Client.d.ts +4 -0
  1923. package/dist/api/resources/ats/resources/webhookReceivers/client/Client.js +7 -2
  1924. package/dist/api/resources/ats/types/AccessRoleEnum.d.ts +5 -5
  1925. package/dist/api/resources/ats/types/AccountDetailsAndActions.d.ts +3 -0
  1926. package/dist/api/resources/ats/types/AccountDetailsAndActionsStatusEnum.d.ts +3 -3
  1927. package/dist/api/resources/ats/types/Activity.d.ts +10 -6
  1928. package/dist/api/resources/ats/types/ActivityActivityType.d.ts +3 -3
  1929. package/dist/api/resources/ats/types/ActivityRequest.d.ts +10 -6
  1930. package/dist/api/resources/ats/types/ActivityRequestActivityType.d.ts +3 -3
  1931. package/dist/api/resources/ats/types/ActivityRequestVisibility.d.ts +3 -3
  1932. package/dist/api/resources/ats/types/ActivityTypeEnum.d.ts +3 -3
  1933. package/dist/api/resources/ats/types/ActivityVisibility.d.ts +3 -3
  1934. package/dist/api/resources/ats/types/Application.d.ts +3 -0
  1935. package/dist/api/resources/ats/types/ApplicationRequest.d.ts +3 -0
  1936. package/dist/api/resources/ats/types/Attachment.d.ts +8 -4
  1937. package/dist/api/resources/ats/types/AttachmentAttachmentType.d.ts +4 -4
  1938. package/dist/api/resources/ats/types/AttachmentRequest.d.ts +8 -4
  1939. package/dist/api/resources/ats/types/AttachmentRequestAttachmentType.d.ts +4 -4
  1940. package/dist/api/resources/ats/types/AttachmentTypeEnum.d.ts +4 -4
  1941. package/dist/api/resources/ats/types/AuditLogEvent.d.ts +36 -36
  1942. package/dist/api/resources/ats/types/AuditLogEventEventType.d.ts +30 -30
  1943. package/dist/api/resources/ats/types/AuditLogEventRole.d.ts +6 -6
  1944. package/dist/api/resources/ats/types/AvailableActions.d.ts +3 -0
  1945. package/dist/api/resources/ats/types/Candidate.d.ts +4 -0
  1946. package/dist/api/resources/ats/types/CandidateRequest.d.ts +4 -0
  1947. package/dist/api/resources/ats/types/CategoriesEnum.d.ts +7 -7
  1948. package/dist/api/resources/ats/types/CategoryEnum.d.ts +7 -7
  1949. package/dist/api/resources/ats/types/ConditionSchema.d.ts +8 -8
  1950. package/dist/api/resources/ats/types/ConditionSchemaConditionType.d.ts +7 -7
  1951. package/dist/api/resources/ats/types/ConditionTypeEnum.d.ts +7 -7
  1952. package/dist/api/resources/ats/types/DataPassthroughRequest.d.ts +3 -0
  1953. package/dist/api/resources/ats/types/Department.d.ts +4 -0
  1954. package/dist/api/resources/ats/types/DisabilityStatusEnum.d.ts +3 -3
  1955. package/dist/api/resources/ats/types/Eeoc.d.ts +23 -19
  1956. package/dist/api/resources/ats/types/EeocDisabilityStatus.d.ts +3 -3
  1957. package/dist/api/resources/ats/types/EeocGender.d.ts +5 -5
  1958. package/dist/api/resources/ats/types/EeocRace.d.ts +8 -8
  1959. package/dist/api/resources/ats/types/EeocVeteranStatus.d.ts +3 -3
  1960. package/dist/api/resources/ats/types/EmailAddress.d.ts +7 -3
  1961. package/dist/api/resources/ats/types/EmailAddressEmailAddressType.d.ts +3 -3
  1962. package/dist/api/resources/ats/types/EmailAddressRequest.d.ts +7 -3
  1963. package/dist/api/resources/ats/types/EmailAddressRequestEmailAddressType.d.ts +3 -3
  1964. package/dist/api/resources/ats/types/EmailAddressTypeEnum.d.ts +3 -3
  1965. package/dist/api/resources/ats/types/EnabledActionsEnum.d.ts +2 -2
  1966. package/dist/api/resources/ats/types/EncodingEnum.d.ts +3 -3
  1967. package/dist/api/resources/ats/types/EventTypeEnum.d.ts +30 -30
  1968. package/dist/api/resources/ats/types/GenderEnum.d.ts +5 -5
  1969. package/dist/api/resources/ats/types/Issue.d.ts +2 -2
  1970. package/dist/api/resources/ats/types/IssueStatus.d.ts +2 -2
  1971. package/dist/api/resources/ats/types/IssueStatusEnum.d.ts +2 -2
  1972. package/dist/api/resources/ats/types/Job.d.ts +9 -5
  1973. package/dist/api/resources/ats/types/JobInterviewStage.d.ts +4 -0
  1974. package/dist/api/resources/ats/types/JobStatus.d.ts +5 -5
  1975. package/dist/api/resources/ats/types/JobStatusEnum.d.ts +5 -5
  1976. package/dist/api/resources/ats/types/LinkedAccountCondition.d.ts +1 -1
  1977. package/dist/api/resources/ats/types/MethodEnum.d.ts +7 -7
  1978. package/dist/api/resources/ats/types/ModelOperation.d.ts +3 -0
  1979. package/dist/api/resources/ats/types/MultipartFormFieldRequest.d.ts +6 -3
  1980. package/dist/api/resources/ats/types/MultipartFormFieldRequestEncoding.d.ts +3 -3
  1981. package/dist/api/resources/ats/types/Offer.d.ts +13 -9
  1982. package/dist/api/resources/ats/types/OfferStatus.d.ts +9 -9
  1983. package/dist/api/resources/ats/types/OfferStatusEnum.d.ts +9 -9
  1984. package/dist/api/resources/ats/types/Office.d.ts +4 -0
  1985. package/dist/api/resources/ats/types/OverallRecommendationEnum.d.ts +5 -5
  1986. package/dist/api/resources/ats/types/PatchedCandidateRequest.d.ts +4 -0
  1987. package/dist/api/resources/ats/types/PhoneNumber.d.ts +9 -5
  1988. package/dist/api/resources/ats/types/PhoneNumberPhoneNumberType.d.ts +5 -5
  1989. package/dist/api/resources/ats/types/PhoneNumberRequest.d.ts +9 -5
  1990. package/dist/api/resources/ats/types/PhoneNumberRequestPhoneNumberType.d.ts +5 -5
  1991. package/dist/api/resources/ats/types/PhoneNumberTypeEnum.d.ts +5 -5
  1992. package/dist/api/resources/ats/types/RaceEnum.d.ts +8 -8
  1993. package/dist/api/resources/ats/types/ReasonEnum.d.ts +3 -3
  1994. package/dist/api/resources/ats/types/RejectReason.d.ts +4 -0
  1995. package/dist/api/resources/ats/types/RemoteData.d.ts +1 -1
  1996. package/dist/api/resources/ats/types/RemoteKey.d.ts +3 -0
  1997. package/dist/api/resources/ats/types/RemoteResponse.d.ts +3 -0
  1998. package/dist/api/resources/ats/types/RemoteUser.d.ts +9 -5
  1999. package/dist/api/resources/ats/types/RemoteUserAccessRole.d.ts +5 -5
  2000. package/dist/api/resources/ats/types/RequestFormatEnum.d.ts +3 -3
  2001. package/dist/api/resources/ats/types/ResponseTypeEnum.d.ts +2 -2
  2002. package/dist/api/resources/ats/types/RoleEnum.d.ts +6 -6
  2003. package/dist/api/resources/ats/types/ScheduledInterview.d.ts +7 -3
  2004. package/dist/api/resources/ats/types/ScheduledInterviewRequest.d.ts +7 -3
  2005. package/dist/api/resources/ats/types/ScheduledInterviewRequestStatus.d.ts +3 -3
  2006. package/dist/api/resources/ats/types/ScheduledInterviewStatus.d.ts +3 -3
  2007. package/dist/api/resources/ats/types/ScheduledInterviewStatusEnum.d.ts +3 -3
  2008. package/dist/api/resources/ats/types/Scorecard.d.ts +9 -5
  2009. package/dist/api/resources/ats/types/ScorecardOverallRecommendation.d.ts +5 -5
  2010. package/dist/api/resources/ats/types/ScreeningQuestion.d.ts +11 -8
  2011. package/dist/api/resources/ats/types/ScreeningQuestionOption.d.ts +3 -0
  2012. package/dist/api/resources/ats/types/ScreeningQuestionType.d.ts +8 -8
  2013. package/dist/api/resources/ats/types/SelectiveSyncConfigurationsUsageEnum.d.ts +2 -2
  2014. package/dist/api/resources/ats/types/SyncStatus.d.ts +3 -0
  2015. package/dist/api/resources/ats/types/SyncStatusStatusEnum.d.ts +6 -6
  2016. package/dist/api/resources/ats/types/Tag.d.ts +4 -0
  2017. package/dist/api/resources/ats/types/TypeEnum.d.ts +8 -8
  2018. package/dist/api/resources/ats/types/Url.d.ts +11 -7
  2019. package/dist/api/resources/ats/types/UrlRequest.d.ts +11 -7
  2020. package/dist/api/resources/ats/types/UrlRequestUrlType.d.ts +7 -7
  2021. package/dist/api/resources/ats/types/UrlTypeEnum.d.ts +7 -7
  2022. package/dist/api/resources/ats/types/UrlUrlType.d.ts +7 -7
  2023. package/dist/api/resources/ats/types/VeteranStatusEnum.d.ts +3 -3
  2024. package/dist/api/resources/ats/types/VisibilityEnum.d.ts +3 -3
  2025. package/dist/api/resources/ats/types/index.d.ts +29 -53
  2026. package/dist/api/resources/ats/types/index.js +29 -53
  2027. package/dist/api/resources/crm/client/Client.d.ts +1 -0
  2028. package/dist/api/resources/crm/index.d.ts +1 -1
  2029. package/dist/api/resources/crm/index.js +1 -1
  2030. package/dist/api/resources/crm/resources/accountDetails/client/Client.d.ts +4 -0
  2031. package/dist/api/resources/crm/resources/accountDetails/client/Client.js +5 -1
  2032. package/dist/api/resources/crm/resources/accountToken/client/Client.d.ts +1 -0
  2033. package/dist/api/resources/crm/resources/accountToken/client/Client.js +2 -1
  2034. package/dist/api/resources/crm/resources/accounts/client/Client.d.ts +45 -0
  2035. package/dist/api/resources/crm/resources/accounts/client/Client.js +88 -38
  2036. package/dist/api/resources/crm/resources/accounts/client/requests/AccountsListRequest.d.ts +6 -0
  2037. package/dist/api/resources/crm/resources/accounts/client/requests/AccountsRemoteFieldClassesListRequest.d.ts +4 -0
  2038. package/dist/api/resources/crm/resources/accounts/client/requests/AccountsRetrieveRequest.d.ts +6 -0
  2039. package/dist/api/resources/crm/resources/accounts/client/requests/CrmAccountEndpointRequest.d.ts +13 -0
  2040. package/dist/api/resources/crm/resources/accounts/client/requests/PatchedCrmAccountEndpointRequest.d.ts +14 -0
  2041. package/dist/api/resources/crm/resources/associationTypes/client/Client.d.ts +14 -0
  2042. package/dist/api/resources/crm/resources/associationTypes/client/Client.js +38 -22
  2043. package/dist/api/resources/crm/resources/associationTypes/client/requests/CustomObjectClassesAssociationTypesListRequest.d.ts +6 -0
  2044. package/dist/api/resources/crm/resources/associationTypes/client/requests/CustomObjectClassesAssociationTypesRetrieveRequest.d.ts +6 -0
  2045. package/dist/api/resources/crm/resources/associations/client/Client.d.ts +9 -0
  2046. package/dist/api/resources/crm/resources/associations/client/Client.js +27 -18
  2047. package/dist/api/resources/crm/resources/associations/client/requests/CustomObjectClassesCustomObjectsAssociationsListRequest.d.ts +6 -0
  2048. package/dist/api/resources/crm/resources/associations/client/requests/CustomObjectClassesCustomObjectsAssociationsUpdateRequest.d.ts +4 -0
  2049. package/dist/api/resources/crm/resources/asyncPassthrough/client/Client.d.ts +15 -0
  2050. package/dist/api/resources/crm/resources/asyncPassthrough/client/Client.js +18 -2
  2051. package/dist/api/resources/crm/resources/auditTrail/client/Client.d.ts +4 -0
  2052. package/dist/api/resources/crm/resources/auditTrail/client/Client.js +12 -9
  2053. package/dist/api/resources/crm/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +4 -0
  2054. package/dist/api/resources/crm/resources/availableActions/client/Client.d.ts +1 -0
  2055. package/dist/api/resources/crm/resources/availableActions/client/Client.js +2 -1
  2056. package/dist/api/resources/crm/resources/contacts/client/Client.d.ts +75 -0
  2057. package/dist/api/resources/crm/resources/contacts/client/Client.js +121 -40
  2058. package/dist/api/resources/crm/resources/contacts/client/requests/ContactsListRequest.d.ts +6 -0
  2059. package/dist/api/resources/crm/resources/contacts/client/requests/ContactsRemoteFieldClassesListRequest.d.ts +4 -0
  2060. package/dist/api/resources/crm/resources/contacts/client/requests/ContactsRetrieveRequest.d.ts +6 -0
  2061. package/dist/api/resources/crm/resources/contacts/client/requests/CrmContactEndpointRequest.d.ts +25 -0
  2062. package/dist/api/resources/crm/resources/contacts/client/requests/PatchedCrmContactEndpointRequest.d.ts +26 -0
  2063. package/dist/api/resources/crm/resources/contacts/index.d.ts +1 -0
  2064. package/dist/api/resources/crm/resources/contacts/index.js +1 -0
  2065. package/dist/api/resources/crm/resources/contacts/types/index.d.ts +2 -0
  2066. package/dist/api/resources/crm/resources/contacts/types/index.js +18 -0
  2067. package/dist/api/resources/crm/resources/customObjectClasses/client/Client.d.ts +11 -0
  2068. package/dist/api/resources/crm/resources/customObjectClasses/client/Client.js +28 -17
  2069. package/dist/api/resources/crm/resources/customObjectClasses/client/requests/CustomObjectClassesListRequest.d.ts +6 -0
  2070. package/dist/api/resources/crm/resources/customObjectClasses/client/requests/CustomObjectClassesRetrieveRequest.d.ts +6 -0
  2071. package/dist/api/resources/crm/resources/customObjects/client/Client.d.ts +20 -0
  2072. package/dist/api/resources/crm/resources/customObjects/client/Client.js +46 -23
  2073. package/dist/api/resources/crm/resources/customObjects/client/requests/CrmCustomObjectEndpointRequest.d.ts +8 -0
  2074. package/dist/api/resources/crm/resources/customObjects/client/requests/CustomObjectClassesCustomObjectsListRequest.d.ts +4 -0
  2075. package/dist/api/resources/crm/resources/customObjects/client/requests/CustomObjectClassesCustomObjectsRetrieveRequest.d.ts +4 -0
  2076. package/dist/api/resources/crm/resources/deleteAccount/client/Client.d.ts +4 -0
  2077. package/dist/api/resources/crm/resources/deleteAccount/client/Client.js +5 -1
  2078. package/dist/api/resources/crm/resources/engagementTypes/client/Client.d.ts +10 -0
  2079. package/dist/api/resources/crm/resources/engagementTypes/client/Client.js +35 -24
  2080. package/dist/api/resources/crm/resources/engagementTypes/client/requests/EngagementTypesListRequest.d.ts +4 -0
  2081. package/dist/api/resources/crm/resources/engagementTypes/client/requests/EngagementTypesRemoteFieldClassesListRequest.d.ts +4 -0
  2082. package/dist/api/resources/crm/resources/engagementTypes/client/requests/EngagementTypesRetrieveRequest.d.ts +4 -0
  2083. package/dist/api/resources/crm/resources/engagements/client/Client.d.ts +43 -0
  2084. package/dist/api/resources/crm/resources/engagements/client/Client.js +86 -38
  2085. package/dist/api/resources/crm/resources/engagements/client/requests/EngagementEndpointRequest.d.ts +11 -0
  2086. package/dist/api/resources/crm/resources/engagements/client/requests/EngagementsListRequest.d.ts +6 -0
  2087. package/dist/api/resources/crm/resources/engagements/client/requests/EngagementsRemoteFieldClassesListRequest.d.ts +4 -0
  2088. package/dist/api/resources/crm/resources/engagements/client/requests/EngagementsRetrieveRequest.d.ts +6 -0
  2089. package/dist/api/resources/crm/resources/engagements/client/requests/PatchedEngagementEndpointRequest.d.ts +14 -0
  2090. package/dist/api/resources/crm/resources/engagements/index.d.ts +1 -0
  2091. package/dist/api/resources/crm/resources/engagements/index.js +1 -0
  2092. package/dist/api/resources/crm/resources/engagements/types/index.d.ts +2 -0
  2093. package/dist/api/resources/crm/resources/engagements/types/index.js +18 -0
  2094. package/dist/api/resources/crm/resources/forceResync/client/Client.d.ts +4 -0
  2095. package/dist/api/resources/crm/resources/forceResync/client/Client.js +5 -1
  2096. package/dist/api/resources/crm/resources/generateKey/client/Client.d.ts +6 -0
  2097. package/dist/api/resources/crm/resources/generateKey/client/Client.js +7 -1
  2098. package/dist/api/resources/crm/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +6 -0
  2099. package/dist/api/resources/crm/resources/index.d.ts +16 -8
  2100. package/dist/api/resources/crm/resources/index.js +17 -9
  2101. package/dist/api/resources/crm/resources/issues/client/Client.d.ts +9 -0
  2102. package/dist/api/resources/crm/resources/issues/client/Client.js +26 -17
  2103. package/dist/api/resources/crm/resources/issues/client/requests/IssuesListRequest.d.ts +8 -2
  2104. package/dist/api/resources/crm/resources/issues/index.d.ts +1 -0
  2105. package/dist/api/resources/crm/resources/issues/index.js +1 -0
  2106. package/dist/api/resources/crm/resources/issues/types/index.d.ts +1 -0
  2107. package/dist/api/resources/crm/resources/issues/types/index.js +17 -0
  2108. package/dist/api/resources/crm/resources/leads/client/Client.d.ts +44 -0
  2109. package/dist/api/resources/crm/resources/leads/client/Client.js +83 -36
  2110. package/dist/api/resources/crm/resources/leads/client/requests/LeadEndpointRequest.d.ts +28 -0
  2111. package/dist/api/resources/crm/resources/leads/client/requests/LeadsListRequest.d.ts +6 -0
  2112. package/dist/api/resources/crm/resources/leads/client/requests/LeadsRemoteFieldClassesListRequest.d.ts +4 -0
  2113. package/dist/api/resources/crm/resources/leads/client/requests/LeadsRetrieveRequest.d.ts +6 -0
  2114. package/dist/api/resources/crm/resources/leads/index.d.ts +1 -0
  2115. package/dist/api/resources/crm/resources/leads/index.js +1 -0
  2116. package/dist/api/resources/crm/resources/leads/types/index.d.ts +2 -0
  2117. package/dist/api/resources/crm/resources/leads/types/index.js +18 -0
  2118. package/dist/api/resources/crm/resources/linkToken/client/Client.d.ts +1 -0
  2119. package/dist/api/resources/crm/resources/linkToken/client/Client.js +2 -1
  2120. package/dist/api/resources/crm/resources/linkedAccounts/client/Client.d.ts +6 -0
  2121. package/dist/api/resources/crm/resources/linkedAccounts/client/Client.js +21 -16
  2122. package/dist/api/resources/crm/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.d.ts +13 -7
  2123. package/dist/api/resources/crm/resources/linkedAccounts/index.d.ts +1 -0
  2124. package/dist/api/resources/crm/resources/linkedAccounts/index.js +1 -0
  2125. package/dist/api/resources/crm/resources/linkedAccounts/types/index.d.ts +1 -0
  2126. package/dist/api/resources/crm/resources/linkedAccounts/types/index.js +17 -0
  2127. package/dist/api/resources/crm/resources/notes/client/Client.d.ts +24 -0
  2128. package/dist/api/resources/crm/resources/notes/client/Client.js +62 -35
  2129. package/dist/api/resources/crm/resources/notes/client/requests/NoteEndpointRequest.d.ts +8 -0
  2130. package/dist/api/resources/crm/resources/notes/client/requests/NotesListRequest.d.ts +6 -0
  2131. package/dist/api/resources/crm/resources/notes/client/requests/NotesRemoteFieldClassesListRequest.d.ts +4 -0
  2132. package/dist/api/resources/crm/resources/notes/client/requests/NotesRetrieveRequest.d.ts +6 -0
  2133. package/dist/api/resources/crm/resources/notes/index.d.ts +1 -0
  2134. package/dist/api/resources/crm/resources/notes/index.js +1 -0
  2135. package/dist/api/resources/crm/resources/notes/types/index.d.ts +2 -0
  2136. package/dist/api/resources/crm/resources/notes/types/index.js +18 -0
  2137. package/dist/api/resources/crm/resources/opportunities/client/Client.d.ts +50 -0
  2138. package/dist/api/resources/crm/resources/opportunities/client/Client.js +99 -44
  2139. package/dist/api/resources/crm/resources/opportunities/client/requests/OpportunitiesListRequest.d.ts +12 -3
  2140. package/dist/api/resources/crm/resources/opportunities/client/requests/OpportunitiesRemoteFieldClassesListRequest.d.ts +4 -0
  2141. package/dist/api/resources/crm/resources/opportunities/client/requests/OpportunitiesRetrieveRequest.d.ts +8 -0
  2142. package/dist/api/resources/crm/resources/opportunities/client/requests/OpportunityEndpointRequest.d.ts +12 -0
  2143. package/dist/api/resources/crm/resources/opportunities/client/requests/PatchedOpportunityEndpointRequest.d.ts +15 -0
  2144. package/dist/api/resources/crm/resources/opportunities/index.d.ts +1 -0
  2145. package/dist/api/resources/crm/resources/opportunities/index.js +1 -0
  2146. package/dist/api/resources/crm/resources/opportunities/types/index.d.ts +3 -0
  2147. package/dist/api/resources/crm/resources/opportunities/types/index.js +19 -0
  2148. package/dist/api/resources/crm/resources/passthrough/client/Client.d.ts +1 -0
  2149. package/dist/api/resources/crm/resources/passthrough/client/Client.js +2 -1
  2150. package/dist/api/resources/crm/resources/regenerateKey/client/Client.d.ts +6 -0
  2151. package/dist/api/resources/crm/resources/regenerateKey/client/Client.js +7 -1
  2152. package/dist/api/resources/crm/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +6 -0
  2153. package/dist/api/resources/crm/resources/selectiveSync/client/Client.d.ts +14 -0
  2154. package/dist/api/resources/crm/resources/selectiveSync/client/Client.js +23 -8
  2155. package/dist/api/resources/crm/resources/selectiveSync/client/requests/LinkedAccountSelectiveSyncConfigurationListRequest.d.ts +8 -0
  2156. package/dist/api/resources/crm/resources/selectiveSync/client/requests/SelectiveSyncMetaListRequest.d.ts +4 -0
  2157. package/dist/api/resources/crm/resources/stages/client/Client.d.ts +10 -0
  2158. package/dist/api/resources/crm/resources/stages/client/Client.js +35 -24
  2159. package/dist/api/resources/crm/resources/stages/client/requests/StagesListRequest.d.ts +4 -0
  2160. package/dist/api/resources/crm/resources/stages/client/requests/StagesRemoteFieldClassesListRequest.d.ts +4 -0
  2161. package/dist/api/resources/crm/resources/stages/client/requests/StagesRetrieveRequest.d.ts +4 -0
  2162. package/dist/api/resources/crm/resources/syncStatus/client/Client.d.ts +4 -0
  2163. package/dist/api/resources/crm/resources/syncStatus/client/Client.js +8 -5
  2164. package/dist/api/resources/crm/resources/syncStatus/client/requests/SyncStatusListRequest.d.ts +4 -0
  2165. package/dist/api/resources/crm/resources/tasks/client/Client.d.ts +43 -0
  2166. package/dist/api/resources/crm/resources/tasks/client/Client.js +84 -36
  2167. package/dist/api/resources/crm/resources/tasks/client/requests/PatchedTaskEndpointRequest.d.ts +14 -0
  2168. package/dist/api/resources/crm/resources/tasks/client/requests/TaskEndpointRequest.d.ts +11 -0
  2169. package/dist/api/resources/crm/resources/tasks/client/requests/TasksListRequest.d.ts +6 -0
  2170. package/dist/api/resources/crm/resources/tasks/client/requests/TasksRemoteFieldClassesListRequest.d.ts +4 -0
  2171. package/dist/api/resources/crm/resources/tasks/client/requests/TasksRetrieveRequest.d.ts +6 -0
  2172. package/dist/api/resources/crm/resources/tasks/index.d.ts +1 -0
  2173. package/dist/api/resources/crm/resources/tasks/index.js +1 -0
  2174. package/dist/api/resources/crm/resources/tasks/types/index.d.ts +2 -0
  2175. package/dist/api/resources/crm/resources/tasks/types/index.js +18 -0
  2176. package/dist/api/resources/crm/resources/users/client/Client.d.ts +16 -0
  2177. package/dist/api/resources/crm/resources/users/client/Client.js +43 -25
  2178. package/dist/api/resources/crm/resources/users/client/requests/UsersListRequest.d.ts +4 -0
  2179. package/dist/api/resources/crm/resources/users/client/requests/UsersRemoteFieldClassesListRequest.d.ts +4 -0
  2180. package/dist/api/resources/crm/resources/users/client/requests/UsersRetrieveRequest.d.ts +4 -0
  2181. package/dist/api/resources/crm/resources/webhookReceivers/client/Client.d.ts +4 -0
  2182. package/dist/api/resources/crm/resources/webhookReceivers/client/Client.js +7 -2
  2183. package/dist/api/resources/crm/types/Account.d.ts +4 -0
  2184. package/dist/api/resources/crm/types/AccountDetailsAndActions.d.ts +3 -0
  2185. package/dist/api/resources/crm/types/AccountDetailsAndActionsStatusEnum.d.ts +3 -3
  2186. package/dist/api/resources/crm/types/AccountRequest.d.ts +4 -0
  2187. package/dist/api/resources/crm/types/ActivityTypeEnum.d.ts +3 -3
  2188. package/dist/api/resources/crm/types/Address.d.ts +255 -251
  2189. package/dist/api/resources/crm/types/AddressAddressType.d.ts +2 -2
  2190. package/dist/api/resources/crm/types/AddressCountry.d.ts +249 -249
  2191. package/dist/api/resources/crm/types/AddressRequest.d.ts +255 -251
  2192. package/dist/api/resources/crm/types/AddressRequestAddressType.d.ts +2 -2
  2193. package/dist/api/resources/crm/types/AddressRequestCountry.d.ts +249 -249
  2194. package/dist/api/resources/crm/types/AddressTypeEnum.d.ts +2 -2
  2195. package/dist/api/resources/crm/types/Association.d.ts +4 -0
  2196. package/dist/api/resources/crm/types/AssociationType.d.ts +4 -0
  2197. package/dist/api/resources/crm/types/AuditLogEvent.d.ts +36 -36
  2198. package/dist/api/resources/crm/types/AuditLogEventEventType.d.ts +30 -30
  2199. package/dist/api/resources/crm/types/AuditLogEventRole.d.ts +6 -6
  2200. package/dist/api/resources/crm/types/AvailableActions.d.ts +3 -0
  2201. package/dist/api/resources/crm/types/CardinalityEnum.d.ts +4 -4
  2202. package/dist/api/resources/crm/types/CategoriesEnum.d.ts +7 -7
  2203. package/dist/api/resources/crm/types/CategoryEnum.d.ts +7 -7
  2204. package/dist/api/resources/crm/types/ConditionSchema.d.ts +8 -8
  2205. package/dist/api/resources/crm/types/ConditionSchemaConditionType.d.ts +7 -7
  2206. package/dist/api/resources/crm/types/ConditionTypeEnum.d.ts +7 -7
  2207. package/dist/api/resources/crm/types/Contact.d.ts +4 -0
  2208. package/dist/api/resources/crm/types/ContactRequest.d.ts +4 -0
  2209. package/dist/api/resources/crm/types/CountryEnum.d.ts +249 -249
  2210. package/dist/api/resources/crm/types/CustomObject.d.ts +4 -0
  2211. package/dist/api/resources/crm/types/CustomObjectClass.d.ts +4 -0
  2212. package/dist/api/resources/crm/types/DataPassthroughRequest.d.ts +3 -0
  2213. package/dist/api/resources/crm/types/DirectionEnum.d.ts +2 -2
  2214. package/dist/api/resources/crm/types/EmailAddress.d.ts +4 -0
  2215. package/dist/api/resources/crm/types/EmailAddressRequest.d.ts +4 -0
  2216. package/dist/api/resources/crm/types/EnabledActionsEnum.d.ts +2 -2
  2217. package/dist/api/resources/crm/types/EncodingEnum.d.ts +3 -3
  2218. package/dist/api/resources/crm/types/Engagement.d.ts +6 -2
  2219. package/dist/api/resources/crm/types/EngagementDirection.d.ts +2 -2
  2220. package/dist/api/resources/crm/types/EngagementRequest.d.ts +6 -2
  2221. package/dist/api/resources/crm/types/EngagementRequestDirection.d.ts +2 -2
  2222. package/dist/api/resources/crm/types/EngagementType.d.ts +7 -3
  2223. package/dist/api/resources/crm/types/EngagementTypeActivityType.d.ts +3 -3
  2224. package/dist/api/resources/crm/types/EventTypeEnum.d.ts +30 -30
  2225. package/dist/api/resources/crm/types/FieldFormatEnum.d.ts +6 -6
  2226. package/dist/api/resources/crm/types/FieldTypeEnum.d.ts +6 -6
  2227. package/dist/api/resources/crm/types/Issue.d.ts +2 -2
  2228. package/dist/api/resources/crm/types/IssueStatus.d.ts +2 -2
  2229. package/dist/api/resources/crm/types/IssueStatusEnum.d.ts +2 -2
  2230. package/dist/api/resources/crm/types/ItemFormatEnum.d.ts +6 -6
  2231. package/dist/api/resources/crm/types/ItemTypeEnum.d.ts +6 -6
  2232. package/dist/api/resources/crm/types/Lead.d.ts +4 -0
  2233. package/dist/api/resources/crm/types/LeadRequest.d.ts +4 -0
  2234. package/dist/api/resources/crm/types/LinkedAccountCondition.d.ts +1 -1
  2235. package/dist/api/resources/crm/types/MethodEnum.d.ts +7 -7
  2236. package/dist/api/resources/crm/types/ModelOperation.d.ts +3 -0
  2237. package/dist/api/resources/crm/types/MultipartFormFieldRequest.d.ts +6 -3
  2238. package/dist/api/resources/crm/types/MultipartFormFieldRequestEncoding.d.ts +3 -3
  2239. package/dist/api/resources/crm/types/Note.d.ts +4 -0
  2240. package/dist/api/resources/crm/types/NoteRequest.d.ts +4 -0
  2241. package/dist/api/resources/crm/types/Opportunity.d.ts +7 -3
  2242. package/dist/api/resources/crm/types/OpportunityRequest.d.ts +7 -3
  2243. package/dist/api/resources/crm/types/OpportunityRequestStatus.d.ts +3 -3
  2244. package/dist/api/resources/crm/types/OpportunityStatus.d.ts +3 -3
  2245. package/dist/api/resources/crm/types/OpportunityStatusEnum.d.ts +3 -3
  2246. package/dist/api/resources/crm/types/OriginTypeEnum.d.ts +3 -3
  2247. package/dist/api/resources/crm/types/PatchedAccountRequest.d.ts +4 -0
  2248. package/dist/api/resources/crm/types/PatchedContactRequest.d.ts +4 -0
  2249. package/dist/api/resources/crm/types/PatchedEngagementRequest.d.ts +6 -2
  2250. package/dist/api/resources/crm/types/PatchedEngagementRequestDirection.d.ts +2 -2
  2251. package/dist/api/resources/crm/types/PatchedOpportunityRequest.d.ts +7 -3
  2252. package/dist/api/resources/crm/types/PatchedOpportunityRequestStatus.d.ts +3 -3
  2253. package/dist/api/resources/crm/types/PatchedTaskRequest.d.ts +6 -2
  2254. package/dist/api/resources/crm/types/PatchedTaskRequestStatus.d.ts +2 -2
  2255. package/dist/api/resources/crm/types/PhoneNumber.d.ts +4 -0
  2256. package/dist/api/resources/crm/types/PhoneNumberRequest.d.ts +4 -0
  2257. package/dist/api/resources/crm/types/ReasonEnum.d.ts +3 -3
  2258. package/dist/api/resources/crm/types/RemoteData.d.ts +1 -1
  2259. package/dist/api/resources/crm/types/RemoteKey.d.ts +3 -0
  2260. package/dist/api/resources/crm/types/RemoteResponse.d.ts +3 -0
  2261. package/dist/api/resources/crm/types/RequestFormatEnum.d.ts +3 -3
  2262. package/dist/api/resources/crm/types/ResponseTypeEnum.d.ts +2 -2
  2263. package/dist/api/resources/crm/types/RoleEnum.d.ts +6 -6
  2264. package/dist/api/resources/crm/types/SelectiveSyncConfigurationsUsageEnum.d.ts +2 -2
  2265. package/dist/api/resources/crm/types/Stage.d.ts +4 -0
  2266. package/dist/api/resources/crm/types/SyncStatus.d.ts +3 -0
  2267. package/dist/api/resources/crm/types/SyncStatusStatusEnum.d.ts +6 -6
  2268. package/dist/api/resources/crm/types/Task.d.ts +6 -2
  2269. package/dist/api/resources/crm/types/TaskRequest.d.ts +6 -2
  2270. package/dist/api/resources/crm/types/TaskRequestStatus.d.ts +2 -2
  2271. package/dist/api/resources/crm/types/TaskStatus.d.ts +2 -2
  2272. package/dist/api/resources/crm/types/TaskStatusEnum.d.ts +2 -2
  2273. package/dist/api/resources/crm/types/User.d.ts +4 -0
  2274. package/dist/api/resources/crm/types/index.d.ts +33 -48
  2275. package/dist/api/resources/crm/types/index.js +33 -48
  2276. package/dist/api/resources/filestorage/client/Client.d.ts +1 -0
  2277. package/dist/api/resources/filestorage/index.d.ts +1 -1
  2278. package/dist/api/resources/filestorage/index.js +1 -1
  2279. package/dist/api/resources/filestorage/resources/accountDetails/client/Client.d.ts +4 -0
  2280. package/dist/api/resources/filestorage/resources/accountDetails/client/Client.js +5 -1
  2281. package/dist/api/resources/filestorage/resources/accountToken/client/Client.d.ts +1 -0
  2282. package/dist/api/resources/filestorage/resources/accountToken/client/Client.js +2 -1
  2283. package/dist/api/resources/filestorage/resources/asyncPassthrough/client/Client.d.ts +15 -0
  2284. package/dist/api/resources/filestorage/resources/asyncPassthrough/client/Client.js +18 -2
  2285. package/dist/api/resources/filestorage/resources/auditTrail/client/Client.d.ts +4 -0
  2286. package/dist/api/resources/filestorage/resources/auditTrail/client/Client.js +12 -9
  2287. package/dist/api/resources/filestorage/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +4 -0
  2288. package/dist/api/resources/filestorage/resources/availableActions/client/Client.d.ts +1 -0
  2289. package/dist/api/resources/filestorage/resources/availableActions/client/Client.js +2 -1
  2290. package/dist/api/resources/filestorage/resources/deleteAccount/client/Client.d.ts +4 -0
  2291. package/dist/api/resources/filestorage/resources/deleteAccount/client/Client.js +5 -1
  2292. package/dist/api/resources/filestorage/resources/drives/client/Client.d.ts +7 -0
  2293. package/dist/api/resources/filestorage/resources/drives/client/Client.js +23 -16
  2294. package/dist/api/resources/filestorage/resources/drives/client/requests/DrivesListRequest.d.ts +4 -0
  2295. package/dist/api/resources/filestorage/resources/drives/client/requests/DrivesRetrieveRequest.d.ts +4 -0
  2296. package/dist/api/resources/filestorage/resources/files/client/Client.d.ts +26 -0
  2297. package/dist/api/resources/filestorage/resources/files/client/Client.js +81 -34
  2298. package/dist/api/resources/filestorage/resources/files/client/requests/FileStorageFileEndpointRequest.d.ts +13 -0
  2299. package/dist/api/resources/filestorage/resources/files/client/requests/FilesListRequest.d.ts +6 -0
  2300. package/dist/api/resources/filestorage/resources/files/client/requests/FilesRetrieveRequest.d.ts +6 -0
  2301. package/dist/api/resources/filestorage/resources/files/index.d.ts +1 -0
  2302. package/dist/api/resources/filestorage/resources/files/index.js +1 -0
  2303. package/dist/api/resources/filestorage/resources/files/types/index.d.ts +2 -0
  2304. package/dist/api/resources/filestorage/resources/files/types/index.js +18 -0
  2305. package/dist/api/resources/filestorage/resources/folders/client/Client.d.ts +24 -0
  2306. package/dist/api/resources/filestorage/resources/folders/client/Client.js +51 -25
  2307. package/dist/api/resources/filestorage/resources/folders/client/requests/FileStorageFolderEndpointRequest.d.ts +11 -0
  2308. package/dist/api/resources/filestorage/resources/folders/client/requests/FoldersListRequest.d.ts +6 -0
  2309. package/dist/api/resources/filestorage/resources/folders/client/requests/FoldersRetrieveRequest.d.ts +6 -0
  2310. package/dist/api/resources/filestorage/resources/folders/index.d.ts +1 -0
  2311. package/dist/api/resources/filestorage/resources/folders/index.js +1 -0
  2312. package/dist/api/resources/filestorage/resources/folders/types/index.d.ts +2 -0
  2313. package/dist/api/resources/filestorage/resources/folders/types/index.js +18 -0
  2314. package/dist/api/resources/filestorage/resources/forceResync/client/Client.d.ts +4 -0
  2315. package/dist/api/resources/filestorage/resources/forceResync/client/Client.js +5 -1
  2316. package/dist/api/resources/filestorage/resources/generateKey/client/Client.d.ts +6 -0
  2317. package/dist/api/resources/filestorage/resources/generateKey/client/Client.js +7 -1
  2318. package/dist/api/resources/filestorage/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +6 -0
  2319. package/dist/api/resources/filestorage/resources/groups/client/Client.d.ts +7 -0
  2320. package/dist/api/resources/filestorage/resources/groups/client/Client.js +22 -15
  2321. package/dist/api/resources/filestorage/resources/groups/client/requests/GroupsListRequest.d.ts +4 -0
  2322. package/dist/api/resources/filestorage/resources/groups/client/requests/GroupsRetrieveRequest.d.ts +4 -0
  2323. package/dist/api/resources/filestorage/resources/index.d.ts +8 -4
  2324. package/dist/api/resources/filestorage/resources/index.js +9 -5
  2325. package/dist/api/resources/filestorage/resources/issues/client/Client.d.ts +9 -0
  2326. package/dist/api/resources/filestorage/resources/issues/client/Client.js +26 -17
  2327. package/dist/api/resources/filestorage/resources/issues/client/requests/IssuesListRequest.d.ts +8 -2
  2328. package/dist/api/resources/filestorage/resources/issues/index.d.ts +1 -0
  2329. package/dist/api/resources/filestorage/resources/issues/index.js +1 -0
  2330. package/dist/api/resources/filestorage/resources/issues/types/index.d.ts +1 -0
  2331. package/dist/api/resources/filestorage/resources/issues/types/index.js +17 -0
  2332. package/dist/api/resources/filestorage/resources/linkToken/client/Client.d.ts +1 -0
  2333. package/dist/api/resources/filestorage/resources/linkToken/client/Client.js +2 -1
  2334. package/dist/api/resources/filestorage/resources/linkedAccounts/client/Client.d.ts +6 -0
  2335. package/dist/api/resources/filestorage/resources/linkedAccounts/client/Client.js +21 -16
  2336. package/dist/api/resources/filestorage/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.d.ts +13 -7
  2337. package/dist/api/resources/filestorage/resources/linkedAccounts/index.d.ts +1 -0
  2338. package/dist/api/resources/filestorage/resources/linkedAccounts/index.js +1 -0
  2339. package/dist/api/resources/filestorage/resources/linkedAccounts/types/index.d.ts +1 -0
  2340. package/dist/api/resources/filestorage/resources/linkedAccounts/types/index.js +17 -0
  2341. package/dist/api/resources/filestorage/resources/passthrough/client/Client.d.ts +1 -0
  2342. package/dist/api/resources/filestorage/resources/passthrough/client/Client.js +2 -1
  2343. package/dist/api/resources/filestorage/resources/regenerateKey/client/Client.d.ts +6 -0
  2344. package/dist/api/resources/filestorage/resources/regenerateKey/client/Client.js +7 -1
  2345. package/dist/api/resources/filestorage/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +6 -0
  2346. package/dist/api/resources/filestorage/resources/selectiveSync/client/Client.d.ts +14 -0
  2347. package/dist/api/resources/filestorage/resources/selectiveSync/client/Client.js +23 -8
  2348. package/dist/api/resources/filestorage/resources/selectiveSync/client/requests/LinkedAccountSelectiveSyncConfigurationListRequest.d.ts +8 -0
  2349. package/dist/api/resources/filestorage/resources/selectiveSync/client/requests/SelectiveSyncMetaListRequest.d.ts +4 -0
  2350. package/dist/api/resources/filestorage/resources/syncStatus/client/Client.d.ts +4 -0
  2351. package/dist/api/resources/filestorage/resources/syncStatus/client/Client.js +8 -5
  2352. package/dist/api/resources/filestorage/resources/syncStatus/client/requests/SyncStatusListRequest.d.ts +4 -0
  2353. package/dist/api/resources/filestorage/resources/users/client/Client.d.ts +7 -0
  2354. package/dist/api/resources/filestorage/resources/users/client/Client.js +23 -16
  2355. package/dist/api/resources/filestorage/resources/users/client/requests/UsersListRequest.d.ts +4 -0
  2356. package/dist/api/resources/filestorage/resources/users/client/requests/UsersRetrieveRequest.d.ts +4 -0
  2357. package/dist/api/resources/filestorage/resources/webhookReceivers/client/Client.d.ts +4 -0
  2358. package/dist/api/resources/filestorage/resources/webhookReceivers/client/Client.js +7 -2
  2359. package/dist/api/resources/filestorage/types/AccountDetailsAndActions.d.ts +3 -0
  2360. package/dist/api/resources/filestorage/types/AccountDetailsAndActionsStatusEnum.d.ts +3 -3
  2361. package/dist/api/resources/filestorage/types/AuditLogEvent.d.ts +36 -36
  2362. package/dist/api/resources/filestorage/types/AuditLogEventEventType.d.ts +30 -30
  2363. package/dist/api/resources/filestorage/types/AuditLogEventRole.d.ts +6 -6
  2364. package/dist/api/resources/filestorage/types/AvailableActions.d.ts +3 -0
  2365. package/dist/api/resources/filestorage/types/CategoriesEnum.d.ts +7 -7
  2366. package/dist/api/resources/filestorage/types/CategoryEnum.d.ts +7 -7
  2367. package/dist/api/resources/filestorage/types/ConditionSchema.d.ts +8 -8
  2368. package/dist/api/resources/filestorage/types/ConditionSchemaConditionType.d.ts +7 -7
  2369. package/dist/api/resources/filestorage/types/ConditionTypeEnum.d.ts +7 -7
  2370. package/dist/api/resources/filestorage/types/DataPassthroughRequest.d.ts +3 -0
  2371. package/dist/api/resources/filestorage/types/Drive.d.ts +4 -0
  2372. package/dist/api/resources/filestorage/types/EnabledActionsEnum.d.ts +2 -2
  2373. package/dist/api/resources/filestorage/types/EncodingEnum.d.ts +3 -3
  2374. package/dist/api/resources/filestorage/types/EventTypeEnum.d.ts +30 -30
  2375. package/dist/api/resources/filestorage/types/FileRequest.d.ts +4 -0
  2376. package/dist/api/resources/filestorage/types/File_.d.ts +4 -0
  2377. package/dist/api/resources/filestorage/types/Folder.d.ts +4 -0
  2378. package/dist/api/resources/filestorage/types/FolderRequest.d.ts +4 -0
  2379. package/dist/api/resources/filestorage/types/Group.d.ts +4 -0
  2380. package/dist/api/resources/filestorage/types/Issue.d.ts +2 -2
  2381. package/dist/api/resources/filestorage/types/IssueStatus.d.ts +2 -2
  2382. package/dist/api/resources/filestorage/types/IssueStatusEnum.d.ts +2 -2
  2383. package/dist/api/resources/filestorage/types/LinkedAccountCondition.d.ts +1 -1
  2384. package/dist/api/resources/filestorage/types/MethodEnum.d.ts +7 -7
  2385. package/dist/api/resources/filestorage/types/ModelOperation.d.ts +3 -0
  2386. package/dist/api/resources/filestorage/types/MultipartFormFieldRequest.d.ts +6 -3
  2387. package/dist/api/resources/filestorage/types/MultipartFormFieldRequestEncoding.d.ts +3 -3
  2388. package/dist/api/resources/filestorage/types/Permission.d.ts +7 -4
  2389. package/dist/api/resources/filestorage/types/PermissionRequest.d.ts +7 -4
  2390. package/dist/api/resources/filestorage/types/PermissionRequestRolesItem.d.ts +3 -3
  2391. package/dist/api/resources/filestorage/types/PermissionRequestType.d.ts +4 -4
  2392. package/dist/api/resources/filestorage/types/PermissionRolesItem.d.ts +3 -3
  2393. package/dist/api/resources/filestorage/types/PermissionType.d.ts +4 -4
  2394. package/dist/api/resources/filestorage/types/RemoteKey.d.ts +3 -0
  2395. package/dist/api/resources/filestorage/types/RemoteResponse.d.ts +3 -0
  2396. package/dist/api/resources/filestorage/types/RequestFormatEnum.d.ts +3 -3
  2397. package/dist/api/resources/filestorage/types/ResponseTypeEnum.d.ts +2 -2
  2398. package/dist/api/resources/filestorage/types/RoleEnum.d.ts +6 -6
  2399. package/dist/api/resources/filestorage/types/RolesEnum.d.ts +3 -3
  2400. package/dist/api/resources/filestorage/types/SelectiveSyncConfigurationsUsageEnum.d.ts +2 -2
  2401. package/dist/api/resources/filestorage/types/SyncStatus.d.ts +3 -0
  2402. package/dist/api/resources/filestorage/types/SyncStatusStatusEnum.d.ts +6 -6
  2403. package/dist/api/resources/filestorage/types/TypeEnum.d.ts +4 -4
  2404. package/dist/api/resources/filestorage/types/User.d.ts +4 -0
  2405. package/dist/api/resources/filestorage/types/index.d.ts +15 -21
  2406. package/dist/api/resources/filestorage/types/index.js +15 -21
  2407. package/dist/api/resources/hris/client/Client.d.ts +1 -0
  2408. package/dist/api/resources/hris/index.d.ts +1 -1
  2409. package/dist/api/resources/hris/index.js +1 -1
  2410. package/dist/api/resources/hris/resources/accountDetails/client/Client.d.ts +4 -0
  2411. package/dist/api/resources/hris/resources/accountDetails/client/Client.js +5 -1
  2412. package/dist/api/resources/hris/resources/accountToken/client/Client.d.ts +1 -0
  2413. package/dist/api/resources/hris/resources/accountToken/client/Client.js +2 -1
  2414. package/dist/api/resources/hris/resources/asyncPassthrough/client/Client.d.ts +15 -0
  2415. package/dist/api/resources/hris/resources/asyncPassthrough/client/Client.js +18 -2
  2416. package/dist/api/resources/hris/resources/auditTrail/client/Client.d.ts +4 -0
  2417. package/dist/api/resources/hris/resources/auditTrail/client/Client.js +12 -9
  2418. package/dist/api/resources/hris/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +4 -0
  2419. package/dist/api/resources/hris/resources/availableActions/client/Client.d.ts +1 -0
  2420. package/dist/api/resources/hris/resources/availableActions/client/Client.js +2 -1
  2421. package/dist/api/resources/hris/resources/bankInfo/client/Client.d.ts +17 -0
  2422. package/dist/api/resources/hris/resources/bankInfo/client/Client.js +42 -25
  2423. package/dist/api/resources/hris/resources/bankInfo/client/requests/BankInfoListRequest.d.ts +12 -2
  2424. package/dist/api/resources/hris/resources/bankInfo/client/requests/BankInfoRetrieveRequest.d.ts +8 -0
  2425. package/dist/api/resources/hris/resources/bankInfo/index.d.ts +1 -0
  2426. package/dist/api/resources/hris/resources/bankInfo/index.js +1 -0
  2427. package/dist/api/resources/hris/resources/bankInfo/types/index.d.ts +2 -0
  2428. package/dist/api/resources/hris/resources/bankInfo/types/index.js +18 -0
  2429. package/dist/api/resources/hris/resources/benefits/client/Client.d.ts +11 -0
  2430. package/dist/api/resources/hris/resources/benefits/client/Client.js +29 -18
  2431. package/dist/api/resources/hris/resources/benefits/client/requests/BenefitsListRequest.d.ts +6 -0
  2432. package/dist/api/resources/hris/resources/benefits/client/requests/BenefitsRetrieveRequest.d.ts +6 -0
  2433. package/dist/api/resources/hris/resources/companies/client/Client.d.ts +7 -0
  2434. package/dist/api/resources/hris/resources/companies/client/Client.js +22 -15
  2435. package/dist/api/resources/hris/resources/companies/client/requests/CompaniesListRequest.d.ts +4 -0
  2436. package/dist/api/resources/hris/resources/companies/client/requests/CompaniesRetrieveRequest.d.ts +4 -0
  2437. package/dist/api/resources/hris/resources/deleteAccount/client/Client.d.ts +4 -0
  2438. package/dist/api/resources/hris/resources/deleteAccount/client/Client.js +5 -1
  2439. package/dist/api/resources/hris/resources/dependents/client/Client.d.ts +7 -0
  2440. package/dist/api/resources/hris/resources/dependents/client/Client.js +24 -17
  2441. package/dist/api/resources/hris/resources/dependents/client/requests/DependentsListRequest.d.ts +4 -0
  2442. package/dist/api/resources/hris/resources/dependents/client/requests/DependentsRetrieveRequest.d.ts +4 -0
  2443. package/dist/api/resources/hris/resources/employeePayrollRuns/client/Client.d.ts +11 -0
  2444. package/dist/api/resources/hris/resources/employeePayrollRuns/client/Client.js +34 -23
  2445. package/dist/api/resources/hris/resources/employeePayrollRuns/client/requests/EmployeePayrollRunsListRequest.d.ts +6 -0
  2446. package/dist/api/resources/hris/resources/employeePayrollRuns/client/requests/EmployeePayrollRunsRetrieveRequest.d.ts +6 -0
  2447. package/dist/api/resources/hris/resources/employeePayrollRuns/index.d.ts +1 -0
  2448. package/dist/api/resources/hris/resources/employeePayrollRuns/index.js +1 -0
  2449. package/dist/api/resources/hris/resources/employeePayrollRuns/types/index.d.ts +2 -0
  2450. package/dist/api/resources/hris/resources/employeePayrollRuns/types/index.js +18 -0
  2451. package/dist/api/resources/hris/resources/employees/client/Client.d.ts +40 -0
  2452. package/dist/api/resources/hris/resources/employees/client/Client.js +91 -48
  2453. package/dist/api/resources/hris/resources/employees/client/requests/EmployeeEndpointRequest.d.ts +22 -0
  2454. package/dist/api/resources/hris/resources/employees/client/requests/EmployeesListRequest.d.ts +12 -3
  2455. package/dist/api/resources/hris/resources/employees/client/requests/EmployeesRetrieveRequest.d.ts +8 -0
  2456. package/dist/api/resources/hris/resources/employees/index.d.ts +1 -0
  2457. package/dist/api/resources/hris/resources/employees/index.js +1 -0
  2458. package/dist/api/resources/hris/resources/employees/types/IgnoreCommonModelRequestReason.d.ts +5 -0
  2459. package/dist/api/resources/hris/resources/employees/types/index.d.ts +8 -0
  2460. package/dist/api/resources/hris/resources/employees/types/index.js +24 -0
  2461. package/dist/api/resources/hris/resources/employerBenefits/client/Client.d.ts +7 -0
  2462. package/dist/api/resources/hris/resources/employerBenefits/client/Client.js +22 -15
  2463. package/dist/api/resources/hris/resources/employerBenefits/client/requests/EmployerBenefitsListRequest.d.ts +4 -0
  2464. package/dist/api/resources/hris/resources/employerBenefits/client/requests/EmployerBenefitsRetrieveRequest.d.ts +4 -0
  2465. package/dist/api/resources/hris/resources/employments/client/Client.d.ts +16 -0
  2466. package/dist/api/resources/hris/resources/employments/client/Client.js +39 -23
  2467. package/dist/api/resources/hris/resources/employments/client/requests/EmploymentsListRequest.d.ts +9 -0
  2468. package/dist/api/resources/hris/resources/employments/client/requests/EmploymentsRetrieveRequest.d.ts +8 -0
  2469. package/dist/api/resources/hris/resources/employments/index.d.ts +1 -0
  2470. package/dist/api/resources/hris/resources/employments/index.js +1 -0
  2471. package/dist/api/resources/hris/resources/employments/types/index.d.ts +7 -0
  2472. package/dist/api/resources/hris/resources/employments/types/index.js +23 -0
  2473. package/dist/api/resources/hris/resources/forceResync/client/Client.d.ts +4 -0
  2474. package/dist/api/resources/hris/resources/forceResync/client/Client.js +5 -1
  2475. package/dist/api/resources/hris/resources/generateKey/client/Client.d.ts +6 -0
  2476. package/dist/api/resources/hris/resources/generateKey/client/Client.js +7 -1
  2477. package/dist/api/resources/hris/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +6 -0
  2478. package/dist/api/resources/hris/resources/groups/client/Client.d.ts +13 -0
  2479. package/dist/api/resources/hris/resources/groups/client/Client.js +33 -20
  2480. package/dist/api/resources/hris/resources/groups/client/requests/GroupsListRequest.d.ts +7 -0
  2481. package/dist/api/resources/hris/resources/groups/client/requests/GroupsRetrieveRequest.d.ts +7 -0
  2482. package/dist/api/resources/hris/resources/index.d.ts +22 -11
  2483. package/dist/api/resources/hris/resources/index.js +23 -12
  2484. package/dist/api/resources/hris/resources/issues/client/Client.d.ts +9 -0
  2485. package/dist/api/resources/hris/resources/issues/client/Client.js +26 -17
  2486. package/dist/api/resources/hris/resources/issues/client/requests/IssuesListRequest.d.ts +8 -2
  2487. package/dist/api/resources/hris/resources/issues/index.d.ts +1 -0
  2488. package/dist/api/resources/hris/resources/issues/index.js +1 -0
  2489. package/dist/api/resources/hris/resources/issues/types/index.d.ts +1 -0
  2490. package/dist/api/resources/hris/resources/issues/types/index.js +17 -0
  2491. package/dist/api/resources/hris/resources/linkToken/client/Client.d.ts +1 -0
  2492. package/dist/api/resources/hris/resources/linkToken/client/Client.js +2 -1
  2493. package/dist/api/resources/hris/resources/linkedAccounts/client/Client.d.ts +6 -0
  2494. package/dist/api/resources/hris/resources/linkedAccounts/client/Client.js +21 -16
  2495. package/dist/api/resources/hris/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.d.ts +13 -7
  2496. package/dist/api/resources/hris/resources/linkedAccounts/index.d.ts +1 -0
  2497. package/dist/api/resources/hris/resources/linkedAccounts/index.js +1 -0
  2498. package/dist/api/resources/hris/resources/linkedAccounts/types/index.d.ts +1 -0
  2499. package/dist/api/resources/hris/resources/linkedAccounts/types/index.js +17 -0
  2500. package/dist/api/resources/hris/resources/locations/client/Client.d.ts +14 -0
  2501. package/dist/api/resources/hris/resources/locations/client/Client.js +34 -20
  2502. package/dist/api/resources/hris/resources/locations/client/requests/LocationsListRequest.d.ts +10 -2
  2503. package/dist/api/resources/hris/resources/locations/client/requests/LocationsRetrieveRequest.d.ts +7 -0
  2504. package/dist/api/resources/hris/resources/locations/index.d.ts +1 -0
  2505. package/dist/api/resources/hris/resources/locations/index.js +1 -0
  2506. package/dist/api/resources/hris/resources/locations/types/index.d.ts +1 -0
  2507. package/dist/api/resources/hris/resources/locations/types/index.js +17 -0
  2508. package/dist/api/resources/hris/resources/passthrough/client/Client.d.ts +1 -0
  2509. package/dist/api/resources/hris/resources/passthrough/client/Client.js +2 -1
  2510. package/dist/api/resources/hris/resources/payGroups/client/Client.d.ts +7 -0
  2511. package/dist/api/resources/hris/resources/payGroups/client/Client.js +22 -15
  2512. package/dist/api/resources/hris/resources/payGroups/client/requests/PayGroupsListRequest.d.ts +4 -0
  2513. package/dist/api/resources/hris/resources/payGroups/client/requests/PayGroupsRetrieveRequest.d.ts +4 -0
  2514. package/dist/api/resources/hris/resources/payrollRuns/client/Client.d.ts +14 -0
  2515. package/dist/api/resources/hris/resources/payrollRuns/client/Client.js +38 -24
  2516. package/dist/api/resources/hris/resources/payrollRuns/client/requests/PayrollRunsListRequest.d.ts +13 -5
  2517. package/dist/api/resources/hris/resources/payrollRuns/client/requests/PayrollRunsRetrieveRequest.d.ts +7 -0
  2518. package/dist/api/resources/hris/resources/payrollRuns/index.d.ts +1 -0
  2519. package/dist/api/resources/hris/resources/payrollRuns/index.js +1 -0
  2520. package/dist/api/resources/hris/resources/payrollRuns/types/index.d.ts +5 -0
  2521. package/dist/api/resources/hris/resources/payrollRuns/types/index.js +21 -0
  2522. package/dist/api/resources/hris/resources/regenerateKey/client/Client.d.ts +6 -0
  2523. package/dist/api/resources/hris/resources/regenerateKey/client/Client.js +7 -1
  2524. package/dist/api/resources/hris/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +6 -0
  2525. package/dist/api/resources/hris/resources/selectiveSync/client/Client.d.ts +14 -0
  2526. package/dist/api/resources/hris/resources/selectiveSync/client/Client.js +23 -8
  2527. package/dist/api/resources/hris/resources/selectiveSync/client/requests/LinkedAccountSelectiveSyncConfigurationListRequest.d.ts +8 -0
  2528. package/dist/api/resources/hris/resources/selectiveSync/client/requests/SelectiveSyncMetaListRequest.d.ts +4 -0
  2529. package/dist/api/resources/hris/resources/syncStatus/client/Client.d.ts +4 -0
  2530. package/dist/api/resources/hris/resources/syncStatus/client/Client.js +8 -5
  2531. package/dist/api/resources/hris/resources/syncStatus/client/requests/SyncStatusListRequest.d.ts +4 -0
  2532. package/dist/api/resources/hris/resources/teams/client/Client.d.ts +11 -0
  2533. package/dist/api/resources/hris/resources/teams/client/Client.js +29 -18
  2534. package/dist/api/resources/hris/resources/teams/client/requests/TeamsListRequest.d.ts +6 -0
  2535. package/dist/api/resources/hris/resources/teams/client/requests/TeamsRetrieveRequest.d.ts +6 -0
  2536. package/dist/api/resources/hris/resources/timeOff/client/Client.d.ts +30 -0
  2537. package/dist/api/resources/hris/resources/timeOff/client/Client.js +62 -30
  2538. package/dist/api/resources/hris/resources/timeOff/client/requests/TimeOffEndpointRequest.d.ts +11 -0
  2539. package/dist/api/resources/hris/resources/timeOff/client/requests/TimeOffListRequest.d.ts +21 -11
  2540. package/dist/api/resources/hris/resources/timeOff/client/requests/TimeOffRetrieveRequest.d.ts +8 -0
  2541. package/dist/api/resources/hris/resources/timeOff/index.d.ts +1 -0
  2542. package/dist/api/resources/hris/resources/timeOff/index.js +1 -0
  2543. package/dist/api/resources/hris/resources/timeOff/types/index.d.ts +8 -0
  2544. package/dist/api/resources/hris/resources/timeOff/types/index.js +24 -0
  2545. package/dist/api/resources/hris/resources/timeOffBalances/client/Client.d.ts +16 -0
  2546. package/dist/api/resources/hris/resources/timeOffBalances/client/Client.js +39 -23
  2547. package/dist/api/resources/hris/resources/timeOffBalances/client/requests/TimeOffBalancesListRequest.d.ts +15 -6
  2548. package/dist/api/resources/hris/resources/timeOffBalances/client/requests/TimeOffBalancesRetrieveRequest.d.ts +8 -0
  2549. package/dist/api/resources/hris/resources/timeOffBalances/index.d.ts +1 -0
  2550. package/dist/api/resources/hris/resources/timeOffBalances/index.js +1 -0
  2551. package/dist/api/resources/hris/resources/timeOffBalances/types/index.d.ts +1 -0
  2552. package/dist/api/resources/hris/resources/timeOffBalances/types/index.js +17 -0
  2553. package/dist/api/resources/hris/resources/timesheetEntries/client/Client.d.ts +22 -0
  2554. package/dist/api/resources/hris/resources/timesheetEntries/client/Client.js +50 -26
  2555. package/dist/api/resources/hris/resources/timesheetEntries/client/requests/TimesheetEntriesListRequest.d.ts +6 -0
  2556. package/dist/api/resources/hris/resources/timesheetEntries/client/requests/TimesheetEntriesRetrieveRequest.d.ts +4 -0
  2557. package/dist/api/resources/hris/resources/timesheetEntries/client/requests/TimesheetEntryEndpointRequest.d.ts +11 -0
  2558. package/dist/api/resources/hris/resources/timesheetEntries/index.d.ts +1 -0
  2559. package/dist/api/resources/hris/resources/timesheetEntries/index.js +1 -0
  2560. package/dist/api/resources/hris/resources/timesheetEntries/types/index.d.ts +1 -0
  2561. package/dist/api/resources/hris/resources/timesheetEntries/types/index.js +17 -0
  2562. package/dist/api/resources/hris/resources/webhookReceivers/client/Client.d.ts +4 -0
  2563. package/dist/api/resources/hris/resources/webhookReceivers/client/Client.js +7 -2
  2564. package/dist/api/resources/hris/types/AccountDetailsAndActions.d.ts +3 -0
  2565. package/dist/api/resources/hris/types/AccountDetailsAndActionsStatusEnum.d.ts +3 -3
  2566. package/dist/api/resources/hris/types/AccountTypeEnum.d.ts +2 -2
  2567. package/dist/api/resources/hris/types/AuditLogEvent.d.ts +36 -36
  2568. package/dist/api/resources/hris/types/AuditLogEventEventType.d.ts +30 -30
  2569. package/dist/api/resources/hris/types/AuditLogEventRole.d.ts +6 -6
  2570. package/dist/api/resources/hris/types/AvailableActions.d.ts +3 -0
  2571. package/dist/api/resources/hris/types/BankInfo.d.ts +5 -2
  2572. package/dist/api/resources/hris/types/BankInfoAccountType.d.ts +2 -2
  2573. package/dist/api/resources/hris/types/Benefit.d.ts +3 -0
  2574. package/dist/api/resources/hris/types/BenefitPlanTypeEnum.d.ts +5 -5
  2575. package/dist/api/resources/hris/types/CategoriesEnum.d.ts +7 -7
  2576. package/dist/api/resources/hris/types/CategoryEnum.d.ts +7 -7
  2577. package/dist/api/resources/hris/types/Company.d.ts +3 -0
  2578. package/dist/api/resources/hris/types/ConditionSchema.d.ts +8 -8
  2579. package/dist/api/resources/hris/types/ConditionSchemaConditionType.d.ts +7 -7
  2580. package/dist/api/resources/hris/types/ConditionTypeEnum.d.ts +7 -7
  2581. package/dist/api/resources/hris/types/CountryEnum.d.ts +249 -249
  2582. package/dist/api/resources/hris/types/DataPassthroughRequest.d.ts +3 -0
  2583. package/dist/api/resources/hris/types/Deduction.d.ts +3 -0
  2584. package/dist/api/resources/hris/types/Dependent.d.ts +11 -8
  2585. package/dist/api/resources/hris/types/DependentGender.d.ts +5 -5
  2586. package/dist/api/resources/hris/types/DependentRelationship.d.ts +3 -3
  2587. package/dist/api/resources/hris/types/Earning.d.ts +7 -4
  2588. package/dist/api/resources/hris/types/EarningType.d.ts +4 -4
  2589. package/dist/api/resources/hris/types/EarningTypeEnum.d.ts +4 -4
  2590. package/dist/api/resources/hris/types/Employee.d.ts +24 -21
  2591. package/dist/api/resources/hris/types/EmployeeEmploymentStatus.d.ts +3 -3
  2592. package/dist/api/resources/hris/types/EmployeeEthnicity.d.ts +8 -8
  2593. package/dist/api/resources/hris/types/EmployeeGender.d.ts +5 -5
  2594. package/dist/api/resources/hris/types/EmployeeMaritalStatus.d.ts +5 -5
  2595. package/dist/api/resources/hris/types/EmployeePayrollRun.d.ts +3 -0
  2596. package/dist/api/resources/hris/types/EmployeeRequest.d.ts +24 -21
  2597. package/dist/api/resources/hris/types/EmployeeRequestEmploymentStatus.d.ts +3 -3
  2598. package/dist/api/resources/hris/types/EmployeeRequestEthnicity.d.ts +8 -8
  2599. package/dist/api/resources/hris/types/EmployeeRequestGender.d.ts +5 -5
  2600. package/dist/api/resources/hris/types/EmployeeRequestMaritalStatus.d.ts +5 -5
  2601. package/dist/api/resources/hris/types/EmployerBenefit.d.ts +8 -5
  2602. package/dist/api/resources/hris/types/EmployerBenefitBenefitPlanType.d.ts +5 -5
  2603. package/dist/api/resources/hris/types/Employment.d.ts +336 -333
  2604. package/dist/api/resources/hris/types/EmploymentEmploymentType.d.ts +5 -5
  2605. package/dist/api/resources/hris/types/EmploymentFlsaStatus.d.ts +4 -4
  2606. package/dist/api/resources/hris/types/EmploymentPayCurrency.d.ts +306 -306
  2607. package/dist/api/resources/hris/types/EmploymentPayFrequency.d.ts +9 -9
  2608. package/dist/api/resources/hris/types/EmploymentPayPeriod.d.ts +9 -9
  2609. package/dist/api/resources/hris/types/EmploymentStatusEnum.d.ts +3 -3
  2610. package/dist/api/resources/hris/types/EmploymentTypeEnum.d.ts +5 -5
  2611. package/dist/api/resources/hris/types/EnabledActionsEnum.d.ts +2 -2
  2612. package/dist/api/resources/hris/types/EncodingEnum.d.ts +3 -3
  2613. package/dist/api/resources/hris/types/EthnicityEnum.d.ts +8 -8
  2614. package/dist/api/resources/hris/types/EventTypeEnum.d.ts +30 -30
  2615. package/dist/api/resources/hris/types/FlsaStatusEnum.d.ts +4 -4
  2616. package/dist/api/resources/hris/types/GenderEnum.d.ts +5 -5
  2617. package/dist/api/resources/hris/types/Group.d.ts +8 -5
  2618. package/dist/api/resources/hris/types/GroupType.d.ts +5 -5
  2619. package/dist/api/resources/hris/types/GroupTypeEnum.d.ts +5 -5
  2620. package/dist/api/resources/hris/types/Issue.d.ts +2 -2
  2621. package/dist/api/resources/hris/types/IssueStatus.d.ts +2 -2
  2622. package/dist/api/resources/hris/types/IssueStatusEnum.d.ts +2 -2
  2623. package/dist/api/resources/hris/types/LinkedAccountCondition.d.ts +1 -1
  2624. package/dist/api/resources/hris/types/Location.d.ts +254 -251
  2625. package/dist/api/resources/hris/types/LocationCountry.d.ts +249 -249
  2626. package/dist/api/resources/hris/types/LocationLocationType.d.ts +2 -2
  2627. package/dist/api/resources/hris/types/LocationTypeEnum.d.ts +2 -2
  2628. package/dist/api/resources/hris/types/MaritalStatusEnum.d.ts +5 -5
  2629. package/dist/api/resources/hris/types/MethodEnum.d.ts +7 -7
  2630. package/dist/api/resources/hris/types/ModelOperation.d.ts +3 -0
  2631. package/dist/api/resources/hris/types/MultipartFormFieldRequest.d.ts +6 -3
  2632. package/dist/api/resources/hris/types/MultipartFormFieldRequestEncoding.d.ts +3 -3
  2633. package/dist/api/resources/hris/types/PayCurrencyEnum.d.ts +306 -306
  2634. package/dist/api/resources/hris/types/PayFrequencyEnum.d.ts +9 -9
  2635. package/dist/api/resources/hris/types/PayGroup.d.ts +3 -0
  2636. package/dist/api/resources/hris/types/PayPeriodEnum.d.ts +9 -9
  2637. package/dist/api/resources/hris/types/PayrollRun.d.ts +13 -10
  2638. package/dist/api/resources/hris/types/PayrollRunRunState.d.ts +5 -5
  2639. package/dist/api/resources/hris/types/PayrollRunRunType.d.ts +5 -5
  2640. package/dist/api/resources/hris/types/PolicyTypeEnum.d.ts +6 -6
  2641. package/dist/api/resources/hris/types/ReasonEnum.d.ts +3 -3
  2642. package/dist/api/resources/hris/types/RelationshipEnum.d.ts +3 -3
  2643. package/dist/api/resources/hris/types/RemoteKey.d.ts +3 -0
  2644. package/dist/api/resources/hris/types/RemoteResponse.d.ts +3 -0
  2645. package/dist/api/resources/hris/types/RequestFormatEnum.d.ts +3 -3
  2646. package/dist/api/resources/hris/types/RequestTypeEnum.d.ts +6 -6
  2647. package/dist/api/resources/hris/types/ResponseTypeEnum.d.ts +2 -2
  2648. package/dist/api/resources/hris/types/RoleEnum.d.ts +6 -6
  2649. package/dist/api/resources/hris/types/RunStateEnum.d.ts +5 -5
  2650. package/dist/api/resources/hris/types/RunTypeEnum.d.ts +5 -5
  2651. package/dist/api/resources/hris/types/SelectiveSyncConfigurationsUsageEnum.d.ts +2 -2
  2652. package/dist/api/resources/hris/types/SyncStatus.d.ts +3 -0
  2653. package/dist/api/resources/hris/types/SyncStatusStatusEnum.d.ts +6 -6
  2654. package/dist/api/resources/hris/types/Tax.d.ts +3 -0
  2655. package/dist/api/resources/hris/types/Team.d.ts +3 -0
  2656. package/dist/api/resources/hris/types/TimeOff.d.ts +16 -13
  2657. package/dist/api/resources/hris/types/TimeOffBalance.d.ts +9 -6
  2658. package/dist/api/resources/hris/types/TimeOffBalancePolicyType.d.ts +6 -6
  2659. package/dist/api/resources/hris/types/TimeOffRequest.d.ts +16 -13
  2660. package/dist/api/resources/hris/types/TimeOffRequestRequestType.d.ts +6 -6
  2661. package/dist/api/resources/hris/types/TimeOffRequestStatus.d.ts +5 -5
  2662. package/dist/api/resources/hris/types/TimeOffRequestType.d.ts +6 -6
  2663. package/dist/api/resources/hris/types/TimeOffRequestUnits.d.ts +2 -2
  2664. package/dist/api/resources/hris/types/TimeOffStatus.d.ts +5 -5
  2665. package/dist/api/resources/hris/types/TimeOffStatusEnum.d.ts +5 -5
  2666. package/dist/api/resources/hris/types/TimeOffUnits.d.ts +2 -2
  2667. package/dist/api/resources/hris/types/TimesheetEntry.d.ts +3 -1
  2668. package/dist/api/resources/hris/types/TimesheetEntryRequest.d.ts +3 -1
  2669. package/dist/api/resources/hris/types/UnitsEnum.d.ts +2 -2
  2670. package/dist/api/resources/hris/types/index.d.ts +22 -59
  2671. package/dist/api/resources/hris/types/index.js +22 -59
  2672. package/dist/api/resources/ticketing/client/Client.d.ts +1 -0
  2673. package/dist/api/resources/ticketing/index.d.ts +1 -1
  2674. package/dist/api/resources/ticketing/index.js +1 -1
  2675. package/dist/api/resources/ticketing/resources/accountDetails/client/Client.d.ts +4 -0
  2676. package/dist/api/resources/ticketing/resources/accountDetails/client/Client.js +5 -1
  2677. package/dist/api/resources/ticketing/resources/accountToken/client/Client.d.ts +1 -0
  2678. package/dist/api/resources/ticketing/resources/accountToken/client/Client.js +2 -1
  2679. package/dist/api/resources/ticketing/resources/accounts/client/Client.d.ts +7 -0
  2680. package/dist/api/resources/ticketing/resources/accounts/client/Client.js +22 -15
  2681. package/dist/api/resources/ticketing/resources/accounts/client/requests/AccountsListRequest.d.ts +4 -0
  2682. package/dist/api/resources/ticketing/resources/accounts/client/requests/AccountsRetrieveRequest.d.ts +4 -0
  2683. package/dist/api/resources/ticketing/resources/asyncPassthrough/client/Client.d.ts +15 -0
  2684. package/dist/api/resources/ticketing/resources/asyncPassthrough/client/Client.js +18 -2
  2685. package/dist/api/resources/ticketing/resources/attachments/client/Client.d.ts +24 -0
  2686. package/dist/api/resources/ticketing/resources/attachments/client/Client.js +78 -33
  2687. package/dist/api/resources/ticketing/resources/attachments/client/requests/AttachmentsListRequest.d.ts +6 -0
  2688. package/dist/api/resources/ticketing/resources/attachments/client/requests/AttachmentsRetrieveRequest.d.ts +6 -0
  2689. package/dist/api/resources/ticketing/resources/attachments/client/requests/TicketingAttachmentEndpointRequest.d.ts +11 -0
  2690. package/dist/api/resources/ticketing/resources/auditTrail/client/Client.d.ts +4 -0
  2691. package/dist/api/resources/ticketing/resources/auditTrail/client/Client.js +12 -9
  2692. package/dist/api/resources/ticketing/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +4 -0
  2693. package/dist/api/resources/ticketing/resources/availableActions/client/Client.d.ts +1 -0
  2694. package/dist/api/resources/ticketing/resources/availableActions/client/Client.js +2 -1
  2695. package/dist/api/resources/ticketing/resources/collections/client/Client.d.ts +21 -0
  2696. package/dist/api/resources/ticketing/resources/collections/client/Client.js +52 -30
  2697. package/dist/api/resources/ticketing/resources/collections/client/requests/CollectionsListRequest.d.ts +11 -2
  2698. package/dist/api/resources/ticketing/resources/collections/client/requests/CollectionsRetrieveRequest.d.ts +8 -0
  2699. package/dist/api/resources/ticketing/resources/collections/client/requests/CollectionsUsersListRequest.d.ts +6 -0
  2700. package/dist/api/resources/ticketing/resources/collections/index.d.ts +1 -0
  2701. package/dist/api/resources/ticketing/resources/collections/index.js +1 -0
  2702. package/dist/api/resources/ticketing/resources/collections/types/index.d.ts +2 -0
  2703. package/dist/api/resources/ticketing/resources/collections/types/index.js +18 -0
  2704. package/dist/api/resources/ticketing/resources/comments/client/Client.d.ts +22 -0
  2705. package/dist/api/resources/ticketing/resources/comments/client/Client.js +48 -24
  2706. package/dist/api/resources/ticketing/resources/comments/client/requests/CommentEndpointRequest.d.ts +9 -0
  2707. package/dist/api/resources/ticketing/resources/comments/client/requests/CommentsListRequest.d.ts +6 -0
  2708. package/dist/api/resources/ticketing/resources/comments/client/requests/CommentsRetrieveRequest.d.ts +6 -0
  2709. package/dist/api/resources/ticketing/resources/comments/index.d.ts +1 -0
  2710. package/dist/api/resources/ticketing/resources/comments/index.js +1 -0
  2711. package/dist/api/resources/ticketing/resources/comments/types/index.d.ts +2 -0
  2712. package/dist/api/resources/ticketing/resources/comments/types/index.js +18 -0
  2713. package/dist/api/resources/ticketing/resources/contacts/client/Client.d.ts +11 -0
  2714. package/dist/api/resources/ticketing/resources/contacts/client/Client.js +28 -17
  2715. package/dist/api/resources/ticketing/resources/contacts/client/requests/ContactsListRequest.d.ts +6 -0
  2716. package/dist/api/resources/ticketing/resources/contacts/client/requests/ContactsRetrieveRequest.d.ts +6 -0
  2717. package/dist/api/resources/ticketing/resources/deleteAccount/client/Client.d.ts +4 -0
  2718. package/dist/api/resources/ticketing/resources/deleteAccount/client/Client.js +5 -1
  2719. package/dist/api/resources/ticketing/resources/forceResync/client/Client.d.ts +4 -0
  2720. package/dist/api/resources/ticketing/resources/forceResync/client/Client.js +5 -1
  2721. package/dist/api/resources/ticketing/resources/generateKey/client/Client.d.ts +6 -0
  2722. package/dist/api/resources/ticketing/resources/generateKey/client/Client.js +7 -1
  2723. package/dist/api/resources/ticketing/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +6 -0
  2724. package/dist/api/resources/ticketing/resources/index.d.ts +14 -7
  2725. package/dist/api/resources/ticketing/resources/index.js +15 -8
  2726. package/dist/api/resources/ticketing/resources/issues/client/Client.d.ts +9 -0
  2727. package/dist/api/resources/ticketing/resources/issues/client/Client.js +26 -17
  2728. package/dist/api/resources/ticketing/resources/issues/client/requests/IssuesListRequest.d.ts +8 -2
  2729. package/dist/api/resources/ticketing/resources/issues/index.d.ts +1 -0
  2730. package/dist/api/resources/ticketing/resources/issues/index.js +1 -0
  2731. package/dist/api/resources/ticketing/resources/issues/types/index.d.ts +1 -0
  2732. package/dist/api/resources/ticketing/resources/issues/types/index.js +17 -0
  2733. package/dist/api/resources/ticketing/resources/linkToken/client/Client.d.ts +1 -0
  2734. package/dist/api/resources/ticketing/resources/linkToken/client/Client.js +2 -1
  2735. package/dist/api/resources/ticketing/resources/linkedAccounts/client/Client.d.ts +6 -0
  2736. package/dist/api/resources/ticketing/resources/linkedAccounts/client/Client.js +21 -16
  2737. package/dist/api/resources/ticketing/resources/linkedAccounts/client/requests/LinkedAccountsListRequest.d.ts +13 -7
  2738. package/dist/api/resources/ticketing/resources/linkedAccounts/index.d.ts +1 -0
  2739. package/dist/api/resources/ticketing/resources/linkedAccounts/index.js +1 -0
  2740. package/dist/api/resources/ticketing/resources/linkedAccounts/types/index.d.ts +1 -0
  2741. package/dist/api/resources/ticketing/resources/linkedAccounts/types/index.js +17 -0
  2742. package/dist/api/resources/ticketing/resources/passthrough/client/Client.d.ts +1 -0
  2743. package/dist/api/resources/ticketing/resources/passthrough/client/Client.js +2 -1
  2744. package/dist/api/resources/ticketing/resources/projects/client/Client.d.ts +12 -0
  2745. package/dist/api/resources/ticketing/resources/projects/client/Client.js +35 -22
  2746. package/dist/api/resources/ticketing/resources/projects/client/requests/ProjectsListRequest.d.ts +4 -0
  2747. package/dist/api/resources/ticketing/resources/projects/client/requests/ProjectsRetrieveRequest.d.ts +4 -0
  2748. package/dist/api/resources/ticketing/resources/projects/client/requests/ProjectsUsersListRequest.d.ts +6 -0
  2749. package/dist/api/resources/ticketing/resources/projects/index.d.ts +1 -0
  2750. package/dist/api/resources/ticketing/resources/projects/index.js +1 -0
  2751. package/dist/api/resources/ticketing/resources/projects/types/index.d.ts +1 -0
  2752. package/dist/api/resources/ticketing/resources/projects/types/index.js +17 -0
  2753. package/dist/api/resources/ticketing/resources/regenerateKey/client/Client.d.ts +6 -0
  2754. package/dist/api/resources/ticketing/resources/regenerateKey/client/Client.js +7 -1
  2755. package/dist/api/resources/ticketing/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +6 -0
  2756. package/dist/api/resources/ticketing/resources/roles/client/Client.d.ts +7 -0
  2757. package/dist/api/resources/ticketing/resources/roles/client/Client.js +22 -15
  2758. package/dist/api/resources/ticketing/resources/roles/client/requests/RolesListRequest.d.ts +4 -0
  2759. package/dist/api/resources/ticketing/resources/roles/client/requests/RolesRetrieveRequest.d.ts +4 -0
  2760. package/dist/api/resources/ticketing/resources/selectiveSync/client/Client.d.ts +14 -0
  2761. package/dist/api/resources/ticketing/resources/selectiveSync/client/Client.js +23 -8
  2762. package/dist/api/resources/ticketing/resources/selectiveSync/client/requests/LinkedAccountSelectiveSyncConfigurationListRequest.d.ts +8 -0
  2763. package/dist/api/resources/ticketing/resources/selectiveSync/client/requests/SelectiveSyncMetaListRequest.d.ts +4 -0
  2764. package/dist/api/resources/ticketing/resources/syncStatus/client/Client.d.ts +4 -0
  2765. package/dist/api/resources/ticketing/resources/syncStatus/client/Client.js +8 -5
  2766. package/dist/api/resources/ticketing/resources/syncStatus/client/requests/SyncStatusListRequest.d.ts +4 -0
  2767. package/dist/api/resources/ticketing/resources/tags/client/Client.d.ts +7 -0
  2768. package/dist/api/resources/ticketing/resources/tags/client/Client.js +22 -15
  2769. package/dist/api/resources/ticketing/resources/tags/client/requests/TagsListRequest.d.ts +4 -0
  2770. package/dist/api/resources/ticketing/resources/tags/client/requests/TagsRetrieveRequest.d.ts +4 -0
  2771. package/dist/api/resources/ticketing/resources/teams/client/Client.d.ts +7 -0
  2772. package/dist/api/resources/ticketing/resources/teams/client/Client.js +22 -15
  2773. package/dist/api/resources/ticketing/resources/teams/client/requests/TeamsListRequest.d.ts +4 -0
  2774. package/dist/api/resources/ticketing/resources/teams/client/requests/TeamsRetrieveRequest.d.ts +4 -0
  2775. package/dist/api/resources/ticketing/resources/tickets/client/Client.d.ts +58 -0
  2776. package/dist/api/resources/ticketing/resources/tickets/client/Client.js +128 -64
  2777. package/dist/api/resources/ticketing/resources/tickets/client/requests/PatchedTicketEndpointRequest.d.ts +16 -0
  2778. package/dist/api/resources/ticketing/resources/tickets/client/requests/TicketEndpointRequest.d.ts +13 -0
  2779. package/dist/api/resources/ticketing/resources/tickets/client/requests/TicketsCollaboratorsListRequest.d.ts +6 -0
  2780. package/dist/api/resources/ticketing/resources/tickets/client/requests/TicketsListRequest.d.ts +18 -8
  2781. package/dist/api/resources/ticketing/resources/tickets/client/requests/TicketsRemoteFieldClassesListRequest.d.ts +4 -0
  2782. package/dist/api/resources/ticketing/resources/tickets/client/requests/TicketsRetrieveRequest.d.ts +8 -0
  2783. package/dist/api/resources/ticketing/resources/tickets/index.d.ts +1 -0
  2784. package/dist/api/resources/ticketing/resources/tickets/index.js +1 -0
  2785. package/dist/api/resources/ticketing/resources/tickets/types/index.d.ts +9 -0
  2786. package/dist/api/resources/ticketing/resources/tickets/types/index.js +25 -0
  2787. package/dist/api/resources/ticketing/resources/users/client/Client.d.ts +11 -0
  2788. package/dist/api/resources/ticketing/resources/users/client/Client.js +29 -18
  2789. package/dist/api/resources/ticketing/resources/users/client/requests/UsersListRequest.d.ts +6 -0
  2790. package/dist/api/resources/ticketing/resources/users/client/requests/UsersRetrieveRequest.d.ts +6 -0
  2791. package/dist/api/resources/ticketing/resources/users/index.d.ts +1 -0
  2792. package/dist/api/resources/ticketing/resources/users/index.js +1 -0
  2793. package/dist/api/resources/ticketing/resources/users/types/index.d.ts +2 -0
  2794. package/dist/api/resources/ticketing/resources/users/types/index.js +18 -0
  2795. package/dist/api/resources/ticketing/resources/webhookReceivers/client/Client.d.ts +4 -0
  2796. package/dist/api/resources/ticketing/resources/webhookReceivers/client/Client.js +7 -2
  2797. package/dist/api/resources/ticketing/types/AccessLevelEnum.d.ts +3 -3
  2798. package/dist/api/resources/ticketing/types/Account.d.ts +3 -0
  2799. package/dist/api/resources/ticketing/types/AccountDetailsAndActions.d.ts +3 -0
  2800. package/dist/api/resources/ticketing/types/AccountDetailsAndActionsStatusEnum.d.ts +3 -3
  2801. package/dist/api/resources/ticketing/types/Attachment.d.ts +3 -0
  2802. package/dist/api/resources/ticketing/types/AttachmentRequest.d.ts +3 -0
  2803. package/dist/api/resources/ticketing/types/AuditLogEvent.d.ts +36 -36
  2804. package/dist/api/resources/ticketing/types/AuditLogEventEventType.d.ts +30 -30
  2805. package/dist/api/resources/ticketing/types/AuditLogEventRole.d.ts +6 -6
  2806. package/dist/api/resources/ticketing/types/AvailableActions.d.ts +3 -0
  2807. package/dist/api/resources/ticketing/types/CategoriesEnum.d.ts +7 -7
  2808. package/dist/api/resources/ticketing/types/CategoryEnum.d.ts +7 -7
  2809. package/dist/api/resources/ticketing/types/Collection.d.ts +8 -5
  2810. package/dist/api/resources/ticketing/types/CollectionAccessLevel.d.ts +3 -3
  2811. package/dist/api/resources/ticketing/types/CollectionCollectionType.d.ts +2 -2
  2812. package/dist/api/resources/ticketing/types/CollectionTypeEnum.d.ts +2 -2
  2813. package/dist/api/resources/ticketing/types/Comment.d.ts +3 -0
  2814. package/dist/api/resources/ticketing/types/CommentRequest.d.ts +3 -0
  2815. package/dist/api/resources/ticketing/types/ConditionSchema.d.ts +8 -8
  2816. package/dist/api/resources/ticketing/types/ConditionSchemaConditionType.d.ts +7 -7
  2817. package/dist/api/resources/ticketing/types/ConditionTypeEnum.d.ts +7 -7
  2818. package/dist/api/resources/ticketing/types/Contact.d.ts +3 -0
  2819. package/dist/api/resources/ticketing/types/DataPassthroughRequest.d.ts +3 -0
  2820. package/dist/api/resources/ticketing/types/EnabledActionsEnum.d.ts +2 -2
  2821. package/dist/api/resources/ticketing/types/EncodingEnum.d.ts +3 -3
  2822. package/dist/api/resources/ticketing/types/EventTypeEnum.d.ts +30 -30
  2823. package/dist/api/resources/ticketing/types/FieldFormatEnum.d.ts +6 -6
  2824. package/dist/api/resources/ticketing/types/FieldTypeEnum.d.ts +6 -6
  2825. package/dist/api/resources/ticketing/types/Issue.d.ts +2 -2
  2826. package/dist/api/resources/ticketing/types/IssueStatus.d.ts +2 -2
  2827. package/dist/api/resources/ticketing/types/IssueStatusEnum.d.ts +2 -2
  2828. package/dist/api/resources/ticketing/types/ItemFormatEnum.d.ts +6 -6
  2829. package/dist/api/resources/ticketing/types/ItemTypeEnum.d.ts +6 -6
  2830. package/dist/api/resources/ticketing/types/LinkedAccountCondition.d.ts +1 -1
  2831. package/dist/api/resources/ticketing/types/MethodEnum.d.ts +7 -7
  2832. package/dist/api/resources/ticketing/types/ModelOperation.d.ts +3 -0
  2833. package/dist/api/resources/ticketing/types/MultipartFormFieldRequest.d.ts +6 -3
  2834. package/dist/api/resources/ticketing/types/MultipartFormFieldRequestEncoding.d.ts +3 -3
  2835. package/dist/api/resources/ticketing/types/PatchedTicketRequest.d.ts +11 -8
  2836. package/dist/api/resources/ticketing/types/PatchedTicketRequestPriority.d.ts +4 -4
  2837. package/dist/api/resources/ticketing/types/PatchedTicketRequestStatus.d.ts +4 -4
  2838. package/dist/api/resources/ticketing/types/PriorityEnum.d.ts +4 -4
  2839. package/dist/api/resources/ticketing/types/Project.d.ts +3 -0
  2840. package/dist/api/resources/ticketing/types/RemoteData.d.ts +1 -1
  2841. package/dist/api/resources/ticketing/types/RemoteKey.d.ts +3 -0
  2842. package/dist/api/resources/ticketing/types/RemoteResponse.d.ts +3 -0
  2843. package/dist/api/resources/ticketing/types/RequestFormatEnum.d.ts +3 -3
  2844. package/dist/api/resources/ticketing/types/ResponseTypeEnum.d.ts +2 -2
  2845. package/dist/api/resources/ticketing/types/Role.d.ts +6 -3
  2846. package/dist/api/resources/ticketing/types/RoleEnum.d.ts +6 -6
  2847. package/dist/api/resources/ticketing/types/RoleTicketAccess.d.ts +3 -3
  2848. package/dist/api/resources/ticketing/types/SelectiveSyncConfigurationsUsageEnum.d.ts +2 -2
  2849. package/dist/api/resources/ticketing/types/SyncStatus.d.ts +3 -0
  2850. package/dist/api/resources/ticketing/types/SyncStatusStatusEnum.d.ts +6 -6
  2851. package/dist/api/resources/ticketing/types/Tag.d.ts +3 -0
  2852. package/dist/api/resources/ticketing/types/Team.d.ts +3 -0
  2853. package/dist/api/resources/ticketing/types/Ticket.d.ts +11 -8
  2854. package/dist/api/resources/ticketing/types/TicketAccessEnum.d.ts +3 -3
  2855. package/dist/api/resources/ticketing/types/TicketActionsEnum.d.ts +6 -6
  2856. package/dist/api/resources/ticketing/types/TicketPriority.d.ts +4 -4
  2857. package/dist/api/resources/ticketing/types/TicketRequest.d.ts +11 -8
  2858. package/dist/api/resources/ticketing/types/TicketRequestPriority.d.ts +4 -4
  2859. package/dist/api/resources/ticketing/types/TicketRequestStatus.d.ts +4 -4
  2860. package/dist/api/resources/ticketing/types/TicketStatus.d.ts +4 -4
  2861. package/dist/api/resources/ticketing/types/TicketStatusEnum.d.ts +4 -4
  2862. package/dist/api/resources/ticketing/types/User.d.ts +3 -0
  2863. package/dist/api/resources/ticketing/types/index.d.ts +19 -37
  2864. package/dist/api/resources/ticketing/types/index.js +19 -37
  2865. package/dist/core/fetcher/APIResponse.d.ts +1 -0
  2866. package/dist/core/fetcher/Fetcher.d.ts +3 -6
  2867. package/dist/core/fetcher/Fetcher.js +80 -35
  2868. package/dist/core/fetcher/getHeader.d.ts +1 -0
  2869. package/dist/core/fetcher/getHeader.js +12 -0
  2870. package/dist/core/fetcher/index.d.ts +1 -0
  2871. package/dist/core/fetcher/index.js +3 -1
  2872. package/dist/core/index.d.ts +0 -1
  2873. package/dist/core/index.js +0 -1
  2874. package/dist/core/schemas/Schema.d.ts +1 -0
  2875. package/dist/core/schemas/Schema.js +1 -0
  2876. package/dist/core/schemas/builders/literals/booleanLiteral.d.ts +2 -0
  2877. package/dist/core/schemas/builders/literals/booleanLiteral.js +29 -0
  2878. package/dist/core/schemas/builders/literals/index.d.ts +1 -0
  2879. package/dist/core/schemas/builders/literals/index.js +3 -1
  2880. package/dist/core/schemas/builders/object/index.d.ts +2 -0
  2881. package/dist/core/schemas/builders/object/index.js +3 -1
  2882. package/dist/core/schemas/builders/object/objectWithoutOptionalProperties.d.ts +6 -0
  2883. package/dist/core/schemas/builders/object/objectWithoutOptionalProperties.js +8 -0
  2884. package/dist/serialization/resources/accounting/index.d.ts +1 -1
  2885. package/dist/serialization/resources/accounting/index.js +1 -1
  2886. package/dist/serialization/resources/accounting/resources/accounts/index.d.ts +1 -0
  2887. package/dist/serialization/resources/accounting/resources/accounts/index.js +1 -0
  2888. package/dist/serialization/resources/accounting/resources/accounts/types/AccountsListRequestRemoteFields.d.ts +10 -0
  2889. package/dist/serialization/resources/accounting/resources/accounts/types/AccountsListRequestRemoteFields.js +31 -0
  2890. package/dist/serialization/resources/accounting/resources/accounts/types/AccountsListRequestShowEnumOrigins.d.ts +10 -0
  2891. package/dist/serialization/resources/accounting/resources/accounts/types/AccountsListRequestShowEnumOrigins.js +31 -0
  2892. package/dist/serialization/resources/accounting/resources/accounts/types/AccountsRetrieveRequestRemoteFields.d.ts +10 -0
  2893. package/dist/serialization/resources/accounting/resources/accounts/types/AccountsRetrieveRequestRemoteFields.js +31 -0
  2894. package/dist/serialization/resources/accounting/resources/accounts/types/AccountsRetrieveRequestShowEnumOrigins.d.ts +10 -0
  2895. package/dist/serialization/resources/accounting/resources/accounts/types/AccountsRetrieveRequestShowEnumOrigins.js +31 -0
  2896. package/dist/serialization/resources/accounting/resources/accounts/types/index.d.ts +4 -0
  2897. package/dist/serialization/resources/accounting/resources/accounts/types/index.js +20 -0
  2898. package/dist/serialization/resources/accounting/resources/companyInfo/index.d.ts +1 -0
  2899. package/dist/serialization/resources/accounting/resources/companyInfo/index.js +17 -0
  2900. package/dist/serialization/resources/accounting/resources/companyInfo/types/CompanyInfoListRequestExpand.d.ts +10 -0
  2901. package/dist/serialization/resources/accounting/resources/companyInfo/types/CompanyInfoListRequestExpand.js +31 -0
  2902. package/dist/serialization/resources/accounting/resources/companyInfo/types/CompanyInfoRetrieveRequestExpand.d.ts +10 -0
  2903. package/dist/serialization/resources/accounting/resources/companyInfo/types/CompanyInfoRetrieveRequestExpand.js +31 -0
  2904. package/dist/serialization/resources/accounting/resources/companyInfo/types/index.d.ts +2 -0
  2905. package/dist/serialization/resources/accounting/resources/companyInfo/types/index.js +18 -0
  2906. package/dist/serialization/resources/accounting/resources/contacts/index.d.ts +1 -0
  2907. package/dist/serialization/resources/accounting/resources/contacts/index.js +1 -0
  2908. package/dist/serialization/resources/accounting/resources/contacts/types/ContactsListRequestExpand.d.ts +10 -0
  2909. package/dist/serialization/resources/accounting/resources/contacts/types/ContactsListRequestExpand.js +39 -0
  2910. package/dist/serialization/resources/accounting/resources/contacts/types/ContactsRetrieveRequestExpand.d.ts +10 -0
  2911. package/dist/serialization/resources/accounting/resources/contacts/types/ContactsRetrieveRequestExpand.js +39 -0
  2912. package/dist/serialization/resources/accounting/resources/contacts/types/index.d.ts +2 -0
  2913. package/dist/serialization/resources/accounting/resources/contacts/types/index.js +18 -0
  2914. package/dist/serialization/resources/accounting/resources/creditNotes/index.d.ts +1 -0
  2915. package/dist/serialization/resources/accounting/resources/creditNotes/index.js +17 -0
  2916. package/dist/serialization/resources/accounting/resources/creditNotes/types/CreditNotesListRequestExpand.d.ts +10 -0
  2917. package/dist/serialization/resources/accounting/resources/creditNotes/types/CreditNotesListRequestExpand.js +159 -0
  2918. package/dist/serialization/resources/accounting/resources/creditNotes/types/CreditNotesListRequestRemoteFields.d.ts +10 -0
  2919. package/dist/serialization/resources/accounting/resources/creditNotes/types/CreditNotesListRequestRemoteFields.js +31 -0
  2920. package/dist/serialization/resources/accounting/resources/creditNotes/types/CreditNotesListRequestShowEnumOrigins.d.ts +10 -0
  2921. package/dist/serialization/resources/accounting/resources/creditNotes/types/CreditNotesListRequestShowEnumOrigins.js +31 -0
  2922. package/dist/serialization/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestExpand.d.ts +10 -0
  2923. package/dist/serialization/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestExpand.js +159 -0
  2924. package/dist/serialization/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestRemoteFields.d.ts +10 -0
  2925. package/dist/serialization/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestRemoteFields.js +31 -0
  2926. package/dist/serialization/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestShowEnumOrigins.d.ts +10 -0
  2927. package/dist/serialization/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestShowEnumOrigins.js +31 -0
  2928. package/dist/serialization/resources/accounting/resources/creditNotes/types/index.d.ts +6 -0
  2929. package/dist/serialization/resources/accounting/resources/creditNotes/types/index.js +22 -0
  2930. package/dist/serialization/resources/accounting/resources/expenses/index.d.ts +1 -0
  2931. package/dist/serialization/resources/accounting/resources/expenses/index.js +1 -0
  2932. package/dist/serialization/resources/accounting/resources/expenses/types/ExpensesListRequestExpand.d.ts +10 -0
  2933. package/dist/serialization/resources/accounting/resources/expenses/types/ExpensesListRequestExpand.js +63 -0
  2934. package/dist/serialization/resources/accounting/resources/expenses/types/ExpensesRetrieveRequestExpand.d.ts +10 -0
  2935. package/dist/serialization/resources/accounting/resources/expenses/types/ExpensesRetrieveRequestExpand.js +63 -0
  2936. package/dist/serialization/resources/accounting/resources/expenses/types/index.d.ts +2 -0
  2937. package/dist/serialization/resources/accounting/resources/expenses/types/index.js +18 -0
  2938. package/dist/serialization/resources/accounting/resources/index.d.ts +28 -7
  2939. package/dist/serialization/resources/accounting/resources/index.js +29 -8
  2940. package/dist/serialization/resources/accounting/resources/invoices/index.d.ts +1 -0
  2941. package/dist/serialization/resources/accounting/resources/invoices/index.js +1 -0
  2942. package/dist/serialization/resources/accounting/resources/invoices/types/InvoicesListRequestExpand.d.ts +10 -0
  2943. package/dist/serialization/resources/accounting/resources/invoices/types/InvoicesListRequestExpand.js +287 -0
  2944. package/dist/serialization/resources/accounting/resources/invoices/types/InvoicesListRequestType.d.ts +10 -0
  2945. package/dist/serialization/resources/accounting/resources/invoices/types/InvoicesListRequestType.js +31 -0
  2946. package/dist/serialization/resources/accounting/resources/invoices/types/InvoicesRetrieveRequestExpand.d.ts +10 -0
  2947. package/dist/serialization/resources/accounting/resources/invoices/types/InvoicesRetrieveRequestExpand.js +287 -0
  2948. package/dist/serialization/resources/accounting/resources/invoices/types/index.d.ts +3 -0
  2949. package/dist/serialization/resources/accounting/resources/invoices/types/index.js +19 -0
  2950. package/dist/serialization/resources/accounting/resources/issues/index.d.ts +1 -0
  2951. package/dist/serialization/resources/accounting/resources/issues/index.js +17 -0
  2952. package/dist/serialization/resources/accounting/resources/issues/types/IssuesListRequestStatus.d.ts +10 -0
  2953. package/dist/serialization/resources/accounting/resources/issues/types/IssuesListRequestStatus.js +31 -0
  2954. package/dist/serialization/resources/accounting/resources/issues/types/index.d.ts +1 -0
  2955. package/dist/serialization/resources/accounting/resources/issues/types/index.js +17 -0
  2956. package/dist/serialization/resources/accounting/resources/items/index.d.ts +1 -0
  2957. package/dist/serialization/resources/accounting/resources/items/index.js +17 -0
  2958. package/dist/serialization/resources/accounting/resources/items/types/ItemsListRequestExpand.d.ts +10 -0
  2959. package/dist/serialization/resources/accounting/resources/items/types/ItemsListRequestExpand.js +39 -0
  2960. package/dist/serialization/resources/accounting/resources/items/types/ItemsRetrieveRequestExpand.d.ts +10 -0
  2961. package/dist/serialization/resources/accounting/resources/items/types/ItemsRetrieveRequestExpand.js +39 -0
  2962. package/dist/serialization/resources/accounting/resources/items/types/index.d.ts +2 -0
  2963. package/dist/serialization/resources/accounting/resources/items/types/index.js +18 -0
  2964. package/dist/serialization/resources/accounting/resources/journalEntries/index.d.ts +1 -0
  2965. package/dist/serialization/resources/accounting/resources/journalEntries/index.js +1 -0
  2966. package/dist/serialization/resources/accounting/resources/journalEntries/types/JournalEntriesListRequestExpand.d.ts +10 -0
  2967. package/dist/serialization/resources/accounting/resources/journalEntries/types/JournalEntriesListRequestExpand.js +95 -0
  2968. package/dist/serialization/resources/accounting/resources/journalEntries/types/JournalEntriesRetrieveRequestExpand.d.ts +10 -0
  2969. package/dist/serialization/resources/accounting/resources/journalEntries/types/JournalEntriesRetrieveRequestExpand.js +95 -0
  2970. package/dist/serialization/resources/accounting/resources/journalEntries/types/index.d.ts +2 -0
  2971. package/dist/serialization/resources/accounting/resources/journalEntries/types/index.js +18 -0
  2972. package/dist/serialization/resources/accounting/resources/linkedAccounts/index.d.ts +1 -0
  2973. package/dist/serialization/resources/accounting/resources/linkedAccounts/index.js +17 -0
  2974. package/dist/serialization/resources/accounting/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.d.ts +10 -0
  2975. package/dist/serialization/resources/accounting/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.js +31 -0
  2976. package/dist/serialization/resources/accounting/resources/linkedAccounts/types/index.d.ts +1 -0
  2977. package/dist/serialization/resources/accounting/resources/linkedAccounts/types/index.js +17 -0
  2978. package/dist/serialization/resources/accounting/resources/payments/index.d.ts +1 -0
  2979. package/dist/serialization/resources/accounting/resources/payments/index.js +1 -0
  2980. package/dist/serialization/resources/accounting/resources/payments/types/PaymentsListRequestExpand.d.ts +10 -0
  2981. package/dist/serialization/resources/accounting/resources/payments/types/PaymentsListRequestExpand.js +95 -0
  2982. package/dist/serialization/resources/accounting/resources/payments/types/PaymentsRetrieveRequestExpand.d.ts +10 -0
  2983. package/dist/serialization/resources/accounting/resources/payments/types/PaymentsRetrieveRequestExpand.js +95 -0
  2984. package/dist/serialization/resources/accounting/resources/payments/types/index.d.ts +2 -0
  2985. package/dist/serialization/resources/accounting/resources/payments/types/index.js +18 -0
  2986. package/dist/serialization/resources/accounting/resources/purchaseOrders/index.d.ts +1 -0
  2987. package/dist/serialization/resources/accounting/resources/purchaseOrders/index.js +1 -0
  2988. package/dist/serialization/resources/accounting/resources/purchaseOrders/types/PurchaseOrdersListRequestExpand.d.ts +10 -0
  2989. package/dist/serialization/resources/accounting/resources/purchaseOrders/types/PurchaseOrdersListRequestExpand.js +95 -0
  2990. package/dist/serialization/resources/accounting/resources/purchaseOrders/types/PurchaseOrdersRetrieveRequestExpand.d.ts +10 -0
  2991. package/dist/serialization/resources/accounting/resources/purchaseOrders/types/PurchaseOrdersRetrieveRequestExpand.js +95 -0
  2992. package/dist/serialization/resources/accounting/resources/purchaseOrders/types/index.d.ts +2 -0
  2993. package/dist/serialization/resources/accounting/resources/purchaseOrders/types/index.js +18 -0
  2994. package/dist/serialization/resources/accounting/resources/transactions/index.d.ts +1 -0
  2995. package/dist/serialization/resources/accounting/resources/transactions/index.js +17 -0
  2996. package/dist/serialization/resources/accounting/resources/transactions/types/TransactionsListRequestExpand.d.ts +10 -0
  2997. package/dist/serialization/resources/accounting/resources/transactions/types/TransactionsListRequestExpand.js +63 -0
  2998. package/dist/serialization/resources/accounting/resources/transactions/types/TransactionsRetrieveRequestExpand.d.ts +10 -0
  2999. package/dist/serialization/resources/accounting/resources/transactions/types/TransactionsRetrieveRequestExpand.js +63 -0
  3000. package/dist/serialization/resources/accounting/resources/transactions/types/index.d.ts +2 -0
  3001. package/dist/serialization/resources/accounting/resources/transactions/types/index.js +18 -0
  3002. package/dist/serialization/resources/accounting/resources/vendorCredits/index.d.ts +1 -0
  3003. package/dist/serialization/resources/accounting/resources/vendorCredits/index.js +17 -0
  3004. package/dist/serialization/resources/accounting/resources/vendorCredits/types/VendorCreditsListRequestExpand.d.ts +10 -0
  3005. package/dist/serialization/resources/accounting/resources/vendorCredits/types/VendorCreditsListRequestExpand.js +63 -0
  3006. package/dist/serialization/resources/accounting/resources/vendorCredits/types/VendorCreditsRetrieveRequestExpand.d.ts +10 -0
  3007. package/dist/serialization/resources/accounting/resources/vendorCredits/types/VendorCreditsRetrieveRequestExpand.js +63 -0
  3008. package/dist/serialization/resources/accounting/resources/vendorCredits/types/index.d.ts +2 -0
  3009. package/dist/serialization/resources/accounting/resources/vendorCredits/types/index.js +18 -0
  3010. package/dist/serialization/resources/accounting/types/RemoteData.d.ts +1 -1
  3011. package/dist/serialization/resources/accounting/types/RemoteData.js +1 -1
  3012. package/dist/serialization/resources/accounting/types/index.d.ts +43 -76
  3013. package/dist/serialization/resources/accounting/types/index.js +43 -76
  3014. package/dist/serialization/resources/ats/index.d.ts +1 -1
  3015. package/dist/serialization/resources/ats/index.js +1 -1
  3016. package/dist/serialization/resources/ats/resources/activities/index.d.ts +1 -0
  3017. package/dist/serialization/resources/ats/resources/activities/index.js +1 -0
  3018. package/dist/serialization/resources/ats/resources/activities/types/ActivitiesListRequestRemoteFields.d.ts +10 -0
  3019. package/dist/serialization/resources/ats/resources/activities/types/ActivitiesListRequestRemoteFields.js +31 -0
  3020. package/dist/serialization/resources/ats/resources/activities/types/ActivitiesListRequestShowEnumOrigins.d.ts +10 -0
  3021. package/dist/serialization/resources/ats/resources/activities/types/ActivitiesListRequestShowEnumOrigins.js +31 -0
  3022. package/dist/serialization/resources/ats/resources/activities/types/ActivitiesRetrieveRequestRemoteFields.d.ts +10 -0
  3023. package/dist/serialization/resources/ats/resources/activities/types/ActivitiesRetrieveRequestRemoteFields.js +31 -0
  3024. package/dist/serialization/resources/ats/resources/activities/types/ActivitiesRetrieveRequestShowEnumOrigins.d.ts +10 -0
  3025. package/dist/serialization/resources/ats/resources/activities/types/ActivitiesRetrieveRequestShowEnumOrigins.js +31 -0
  3026. package/dist/serialization/resources/ats/resources/activities/types/index.d.ts +4 -0
  3027. package/dist/serialization/resources/ats/resources/activities/types/index.js +20 -0
  3028. package/dist/serialization/resources/ats/resources/applications/index.d.ts +1 -0
  3029. package/dist/serialization/resources/ats/resources/applications/index.js +1 -0
  3030. package/dist/serialization/resources/ats/resources/applications/types/ApplicationsListRequestExpand.d.ts +10 -0
  3031. package/dist/serialization/resources/ats/resources/applications/types/ApplicationsListRequestExpand.js +63 -0
  3032. package/dist/serialization/resources/ats/resources/applications/types/ApplicationsRetrieveRequestExpand.d.ts +10 -0
  3033. package/dist/serialization/resources/ats/resources/applications/types/ApplicationsRetrieveRequestExpand.js +63 -0
  3034. package/dist/serialization/resources/ats/resources/applications/types/index.d.ts +2 -0
  3035. package/dist/serialization/resources/ats/resources/applications/types/index.js +18 -0
  3036. package/dist/serialization/resources/ats/resources/candidates/index.d.ts +1 -0
  3037. package/dist/serialization/resources/ats/resources/candidates/index.js +1 -0
  3038. package/dist/serialization/resources/ats/resources/candidates/types/CandidatesListRequestExpand.d.ts +10 -0
  3039. package/dist/serialization/resources/ats/resources/candidates/types/CandidatesListRequestExpand.js +31 -0
  3040. package/dist/serialization/resources/ats/resources/candidates/types/CandidatesRetrieveRequestExpand.d.ts +10 -0
  3041. package/dist/serialization/resources/ats/resources/candidates/types/CandidatesRetrieveRequestExpand.js +31 -0
  3042. package/dist/serialization/resources/ats/resources/candidates/types/index.d.ts +2 -0
  3043. package/dist/serialization/resources/ats/resources/candidates/types/index.js +18 -0
  3044. package/dist/serialization/resources/ats/resources/eeocs/index.d.ts +1 -0
  3045. package/dist/serialization/resources/ats/resources/eeocs/index.js +17 -0
  3046. package/dist/serialization/resources/ats/resources/eeocs/types/EeocsListRequestRemoteFields.d.ts +10 -0
  3047. package/dist/serialization/resources/ats/resources/eeocs/types/EeocsListRequestRemoteFields.js +47 -0
  3048. package/dist/serialization/resources/ats/resources/eeocs/types/EeocsListRequestShowEnumOrigins.d.ts +10 -0
  3049. package/dist/serialization/resources/ats/resources/eeocs/types/EeocsListRequestShowEnumOrigins.js +47 -0
  3050. package/dist/serialization/resources/ats/resources/eeocs/types/EeocsRetrieveRequestRemoteFields.d.ts +10 -0
  3051. package/dist/serialization/resources/ats/resources/eeocs/types/EeocsRetrieveRequestRemoteFields.js +47 -0
  3052. package/dist/serialization/resources/ats/resources/eeocs/types/EeocsRetrieveRequestShowEnumOrigins.d.ts +10 -0
  3053. package/dist/serialization/resources/ats/resources/eeocs/types/EeocsRetrieveRequestShowEnumOrigins.js +47 -0
  3054. package/dist/serialization/resources/ats/resources/eeocs/types/index.d.ts +4 -0
  3055. package/dist/serialization/resources/ats/resources/eeocs/types/index.js +20 -0
  3056. package/dist/serialization/resources/ats/resources/index.d.ts +20 -4
  3057. package/dist/serialization/resources/ats/resources/index.js +21 -5
  3058. package/dist/serialization/resources/ats/resources/interviews/index.d.ts +1 -0
  3059. package/dist/serialization/resources/ats/resources/interviews/index.js +1 -0
  3060. package/dist/serialization/resources/ats/resources/interviews/types/InterviewsListRequestExpand.d.ts +10 -0
  3061. package/dist/serialization/resources/ats/resources/interviews/types/InterviewsListRequestExpand.js +47 -0
  3062. package/dist/serialization/resources/ats/resources/interviews/types/InterviewsRetrieveRequestExpand.d.ts +10 -0
  3063. package/dist/serialization/resources/ats/resources/interviews/types/InterviewsRetrieveRequestExpand.js +47 -0
  3064. package/dist/serialization/resources/ats/resources/interviews/types/index.d.ts +2 -0
  3065. package/dist/serialization/resources/ats/resources/interviews/types/index.js +18 -0
  3066. package/dist/serialization/resources/ats/resources/issues/index.d.ts +1 -0
  3067. package/dist/serialization/resources/ats/resources/issues/index.js +17 -0
  3068. package/dist/serialization/resources/ats/resources/issues/types/IssuesListRequestStatus.d.ts +10 -0
  3069. package/dist/serialization/resources/ats/resources/issues/types/IssuesListRequestStatus.js +31 -0
  3070. package/dist/serialization/resources/ats/resources/issues/types/index.d.ts +1 -0
  3071. package/dist/serialization/resources/ats/resources/issues/types/index.js +17 -0
  3072. package/dist/serialization/resources/ats/resources/jobs/index.d.ts +1 -0
  3073. package/dist/serialization/resources/ats/resources/jobs/index.js +17 -0
  3074. package/dist/serialization/resources/ats/resources/jobs/types/JobsListRequestExpand.d.ts +10 -0
  3075. package/dist/serialization/resources/ats/resources/jobs/types/JobsListRequestExpand.js +47 -0
  3076. package/dist/serialization/resources/ats/resources/jobs/types/JobsListRequestStatus.d.ts +10 -0
  3077. package/dist/serialization/resources/ats/resources/jobs/types/JobsListRequestStatus.js +31 -0
  3078. package/dist/serialization/resources/ats/resources/jobs/types/JobsRetrieveRequestExpand.d.ts +10 -0
  3079. package/dist/serialization/resources/ats/resources/jobs/types/JobsRetrieveRequestExpand.js +47 -0
  3080. package/dist/serialization/resources/ats/resources/jobs/types/JobsScreeningQuestionsListRequestExpand.d.ts +10 -0
  3081. package/dist/serialization/resources/ats/resources/jobs/types/JobsScreeningQuestionsListRequestExpand.js +31 -0
  3082. package/dist/serialization/resources/ats/resources/jobs/types/index.d.ts +4 -0
  3083. package/dist/serialization/resources/ats/resources/jobs/types/index.js +20 -0
  3084. package/dist/serialization/resources/ats/resources/linkedAccounts/index.d.ts +1 -0
  3085. package/dist/serialization/resources/ats/resources/linkedAccounts/index.js +17 -0
  3086. package/dist/serialization/resources/ats/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.d.ts +10 -0
  3087. package/dist/serialization/resources/ats/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.js +31 -0
  3088. package/dist/serialization/resources/ats/resources/linkedAccounts/types/index.d.ts +1 -0
  3089. package/dist/serialization/resources/ats/resources/linkedAccounts/types/index.js +17 -0
  3090. package/dist/serialization/resources/ats/resources/offers/index.d.ts +1 -0
  3091. package/dist/serialization/resources/ats/resources/offers/index.js +17 -0
  3092. package/dist/serialization/resources/ats/resources/offers/types/OffersListRequestExpand.d.ts +10 -0
  3093. package/dist/serialization/resources/ats/resources/offers/types/OffersListRequestExpand.js +31 -0
  3094. package/dist/serialization/resources/ats/resources/offers/types/OffersRetrieveRequestExpand.d.ts +10 -0
  3095. package/dist/serialization/resources/ats/resources/offers/types/OffersRetrieveRequestExpand.js +31 -0
  3096. package/dist/serialization/resources/ats/resources/offers/types/index.d.ts +2 -0
  3097. package/dist/serialization/resources/ats/resources/offers/types/index.js +18 -0
  3098. package/dist/serialization/resources/ats/resources/scorecards/index.d.ts +1 -0
  3099. package/dist/serialization/resources/ats/resources/scorecards/index.js +17 -0
  3100. package/dist/serialization/resources/ats/resources/scorecards/types/ScorecardsListRequestExpand.d.ts +10 -0
  3101. package/dist/serialization/resources/ats/resources/scorecards/types/ScorecardsListRequestExpand.js +39 -0
  3102. package/dist/serialization/resources/ats/resources/scorecards/types/ScorecardsRetrieveRequestExpand.d.ts +10 -0
  3103. package/dist/serialization/resources/ats/resources/scorecards/types/ScorecardsRetrieveRequestExpand.js +39 -0
  3104. package/dist/serialization/resources/ats/resources/scorecards/types/index.d.ts +2 -0
  3105. package/dist/serialization/resources/ats/resources/scorecards/types/index.js +18 -0
  3106. package/dist/serialization/resources/ats/types/RemoteData.d.ts +1 -1
  3107. package/dist/serialization/resources/ats/types/RemoteData.js +1 -1
  3108. package/dist/serialization/resources/ats/types/index.d.ts +29 -53
  3109. package/dist/serialization/resources/ats/types/index.js +29 -53
  3110. package/dist/serialization/resources/crm/index.d.ts +1 -1
  3111. package/dist/serialization/resources/crm/index.js +1 -1
  3112. package/dist/serialization/resources/crm/resources/contacts/index.d.ts +1 -0
  3113. package/dist/serialization/resources/crm/resources/contacts/index.js +1 -0
  3114. package/dist/serialization/resources/crm/resources/contacts/types/ContactsListRequestExpand.d.ts +10 -0
  3115. package/dist/serialization/resources/crm/resources/contacts/types/ContactsListRequestExpand.js +31 -0
  3116. package/dist/serialization/resources/crm/resources/contacts/types/ContactsRetrieveRequestExpand.d.ts +10 -0
  3117. package/dist/serialization/resources/crm/resources/contacts/types/ContactsRetrieveRequestExpand.js +31 -0
  3118. package/dist/serialization/resources/crm/resources/contacts/types/index.d.ts +2 -0
  3119. package/dist/serialization/resources/crm/resources/contacts/types/index.js +18 -0
  3120. package/dist/serialization/resources/crm/resources/engagements/index.d.ts +1 -0
  3121. package/dist/serialization/resources/crm/resources/engagements/index.js +1 -0
  3122. package/dist/serialization/resources/crm/resources/engagements/types/EngagementsListRequestExpand.d.ts +10 -0
  3123. package/dist/serialization/resources/crm/resources/engagements/types/EngagementsListRequestExpand.js +47 -0
  3124. package/dist/serialization/resources/crm/resources/engagements/types/EngagementsRetrieveRequestExpand.d.ts +10 -0
  3125. package/dist/serialization/resources/crm/resources/engagements/types/EngagementsRetrieveRequestExpand.js +47 -0
  3126. package/dist/serialization/resources/crm/resources/engagements/types/index.d.ts +2 -0
  3127. package/dist/serialization/resources/crm/resources/engagements/types/index.js +18 -0
  3128. package/dist/serialization/resources/crm/resources/index.d.ts +16 -6
  3129. package/dist/serialization/resources/crm/resources/index.js +17 -7
  3130. package/dist/serialization/resources/crm/resources/issues/index.d.ts +1 -0
  3131. package/dist/serialization/resources/crm/resources/issues/index.js +17 -0
  3132. package/dist/serialization/resources/crm/resources/issues/types/IssuesListRequestStatus.d.ts +10 -0
  3133. package/dist/serialization/resources/crm/resources/issues/types/IssuesListRequestStatus.js +31 -0
  3134. package/dist/serialization/resources/crm/resources/issues/types/index.d.ts +1 -0
  3135. package/dist/serialization/resources/crm/resources/issues/types/index.js +17 -0
  3136. package/dist/serialization/resources/crm/resources/leads/index.d.ts +1 -0
  3137. package/dist/serialization/resources/crm/resources/leads/index.js +1 -0
  3138. package/dist/serialization/resources/crm/resources/leads/types/LeadsListRequestExpand.d.ts +10 -0
  3139. package/dist/serialization/resources/crm/resources/leads/types/LeadsListRequestExpand.js +39 -0
  3140. package/dist/serialization/resources/crm/resources/leads/types/LeadsRetrieveRequestExpand.d.ts +10 -0
  3141. package/dist/serialization/resources/crm/resources/leads/types/LeadsRetrieveRequestExpand.js +39 -0
  3142. package/dist/serialization/resources/crm/resources/leads/types/index.d.ts +2 -0
  3143. package/dist/serialization/resources/crm/resources/leads/types/index.js +18 -0
  3144. package/dist/serialization/resources/crm/resources/linkedAccounts/index.d.ts +1 -0
  3145. package/dist/serialization/resources/crm/resources/linkedAccounts/index.js +17 -0
  3146. package/dist/serialization/resources/crm/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.d.ts +10 -0
  3147. package/dist/serialization/resources/crm/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.js +31 -0
  3148. package/dist/serialization/resources/crm/resources/linkedAccounts/types/index.d.ts +1 -0
  3149. package/dist/serialization/resources/crm/resources/linkedAccounts/types/index.js +17 -0
  3150. package/dist/serialization/resources/crm/resources/notes/index.d.ts +1 -0
  3151. package/dist/serialization/resources/crm/resources/notes/index.js +1 -0
  3152. package/dist/serialization/resources/crm/resources/notes/types/NotesListRequestExpand.d.ts +10 -0
  3153. package/dist/serialization/resources/crm/resources/notes/types/NotesListRequestExpand.js +47 -0
  3154. package/dist/serialization/resources/crm/resources/notes/types/NotesRetrieveRequestExpand.d.ts +10 -0
  3155. package/dist/serialization/resources/crm/resources/notes/types/NotesRetrieveRequestExpand.js +47 -0
  3156. package/dist/serialization/resources/crm/resources/notes/types/index.d.ts +2 -0
  3157. package/dist/serialization/resources/crm/resources/notes/types/index.js +18 -0
  3158. package/dist/serialization/resources/crm/resources/opportunities/index.d.ts +1 -0
  3159. package/dist/serialization/resources/crm/resources/opportunities/index.js +1 -0
  3160. package/dist/serialization/resources/crm/resources/opportunities/types/OpportunitiesListRequestExpand.d.ts +10 -0
  3161. package/dist/serialization/resources/crm/resources/opportunities/types/OpportunitiesListRequestExpand.js +39 -0
  3162. package/dist/serialization/resources/crm/resources/opportunities/types/OpportunitiesListRequestStatus.d.ts +10 -0
  3163. package/dist/serialization/resources/crm/resources/opportunities/types/OpportunitiesListRequestStatus.js +31 -0
  3164. package/dist/serialization/resources/crm/resources/opportunities/types/OpportunitiesRetrieveRequestExpand.d.ts +10 -0
  3165. package/dist/serialization/resources/crm/resources/opportunities/types/OpportunitiesRetrieveRequestExpand.js +39 -0
  3166. package/dist/serialization/resources/crm/resources/opportunities/types/index.d.ts +3 -0
  3167. package/dist/serialization/resources/crm/resources/opportunities/types/index.js +19 -0
  3168. package/dist/serialization/resources/crm/resources/tasks/index.d.ts +1 -0
  3169. package/dist/serialization/resources/crm/resources/tasks/index.js +1 -0
  3170. package/dist/serialization/resources/crm/resources/tasks/types/TasksListRequestExpand.d.ts +10 -0
  3171. package/dist/serialization/resources/crm/resources/tasks/types/TasksListRequestExpand.js +39 -0
  3172. package/dist/serialization/resources/crm/resources/tasks/types/TasksRetrieveRequestExpand.d.ts +10 -0
  3173. package/dist/serialization/resources/crm/resources/tasks/types/TasksRetrieveRequestExpand.js +39 -0
  3174. package/dist/serialization/resources/crm/resources/tasks/types/index.d.ts +2 -0
  3175. package/dist/serialization/resources/crm/resources/tasks/types/index.js +18 -0
  3176. package/dist/serialization/resources/crm/types/RemoteData.d.ts +1 -1
  3177. package/dist/serialization/resources/crm/types/RemoteData.js +1 -1
  3178. package/dist/serialization/resources/crm/types/index.d.ts +33 -48
  3179. package/dist/serialization/resources/crm/types/index.js +33 -48
  3180. package/dist/serialization/resources/filestorage/index.d.ts +1 -1
  3181. package/dist/serialization/resources/filestorage/index.js +1 -1
  3182. package/dist/serialization/resources/filestorage/resources/files/index.d.ts +1 -0
  3183. package/dist/serialization/resources/filestorage/resources/files/index.js +1 -0
  3184. package/dist/serialization/resources/filestorage/resources/files/types/FilesListRequestExpand.d.ts +10 -0
  3185. package/dist/serialization/resources/filestorage/resources/files/types/FilesListRequestExpand.js +39 -0
  3186. package/dist/serialization/resources/filestorage/resources/files/types/FilesRetrieveRequestExpand.d.ts +10 -0
  3187. package/dist/serialization/resources/filestorage/resources/files/types/FilesRetrieveRequestExpand.js +39 -0
  3188. package/dist/serialization/resources/filestorage/resources/files/types/index.d.ts +2 -0
  3189. package/dist/serialization/resources/filestorage/resources/files/types/index.js +18 -0
  3190. package/dist/serialization/resources/filestorage/resources/folders/index.d.ts +1 -0
  3191. package/dist/serialization/resources/filestorage/resources/folders/index.js +1 -0
  3192. package/dist/serialization/resources/filestorage/resources/folders/types/FoldersListRequestExpand.d.ts +10 -0
  3193. package/dist/serialization/resources/filestorage/resources/folders/types/FoldersListRequestExpand.js +39 -0
  3194. package/dist/serialization/resources/filestorage/resources/folders/types/FoldersRetrieveRequestExpand.d.ts +10 -0
  3195. package/dist/serialization/resources/filestorage/resources/folders/types/FoldersRetrieveRequestExpand.js +39 -0
  3196. package/dist/serialization/resources/filestorage/resources/folders/types/index.d.ts +2 -0
  3197. package/dist/serialization/resources/filestorage/resources/folders/types/index.js +18 -0
  3198. package/dist/serialization/resources/filestorage/resources/index.d.ts +8 -2
  3199. package/dist/serialization/resources/filestorage/resources/index.js +9 -3
  3200. package/dist/serialization/resources/filestorage/resources/issues/index.d.ts +1 -0
  3201. package/dist/serialization/resources/filestorage/resources/issues/index.js +17 -0
  3202. package/dist/serialization/resources/filestorage/resources/issues/types/IssuesListRequestStatus.d.ts +10 -0
  3203. package/dist/serialization/resources/filestorage/resources/issues/types/IssuesListRequestStatus.js +31 -0
  3204. package/dist/serialization/resources/filestorage/resources/issues/types/index.d.ts +1 -0
  3205. package/dist/serialization/resources/filestorage/resources/issues/types/index.js +17 -0
  3206. package/dist/serialization/resources/filestorage/resources/linkedAccounts/index.d.ts +1 -0
  3207. package/dist/serialization/resources/filestorage/resources/linkedAccounts/index.js +17 -0
  3208. package/dist/serialization/resources/filestorage/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.d.ts +10 -0
  3209. package/dist/serialization/resources/filestorage/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.js +31 -0
  3210. package/dist/serialization/resources/filestorage/resources/linkedAccounts/types/index.d.ts +1 -0
  3211. package/dist/serialization/resources/filestorage/resources/linkedAccounts/types/index.js +17 -0
  3212. package/dist/serialization/resources/filestorage/types/index.d.ts +15 -21
  3213. package/dist/serialization/resources/filestorage/types/index.js +15 -21
  3214. package/dist/serialization/resources/hris/index.d.ts +1 -1
  3215. package/dist/serialization/resources/hris/index.js +1 -1
  3216. package/dist/serialization/resources/hris/resources/bankInfo/index.d.ts +1 -0
  3217. package/dist/serialization/resources/hris/resources/bankInfo/index.js +17 -0
  3218. package/dist/serialization/resources/hris/resources/bankInfo/types/BankInfoListRequestAccountType.d.ts +10 -0
  3219. package/dist/serialization/resources/hris/resources/bankInfo/types/BankInfoListRequestAccountType.js +31 -0
  3220. package/dist/serialization/resources/hris/resources/bankInfo/types/BankInfoListRequestOrderBy.d.ts +10 -0
  3221. package/dist/serialization/resources/hris/resources/bankInfo/types/BankInfoListRequestOrderBy.js +31 -0
  3222. package/dist/serialization/resources/hris/resources/bankInfo/types/index.d.ts +2 -0
  3223. package/dist/serialization/resources/hris/resources/bankInfo/types/index.js +18 -0
  3224. package/dist/serialization/resources/hris/resources/employeePayrollRuns/index.d.ts +1 -0
  3225. package/dist/serialization/resources/hris/resources/employeePayrollRuns/index.js +17 -0
  3226. package/dist/serialization/resources/hris/resources/employeePayrollRuns/types/EmployeePayrollRunsListRequestExpand.d.ts +10 -0
  3227. package/dist/serialization/resources/hris/resources/employeePayrollRuns/types/EmployeePayrollRunsListRequestExpand.js +31 -0
  3228. package/dist/serialization/resources/hris/resources/employeePayrollRuns/types/EmployeePayrollRunsRetrieveRequestExpand.d.ts +10 -0
  3229. package/dist/serialization/resources/hris/resources/employeePayrollRuns/types/EmployeePayrollRunsRetrieveRequestExpand.js +31 -0
  3230. package/dist/serialization/resources/hris/resources/employeePayrollRuns/types/index.d.ts +2 -0
  3231. package/dist/serialization/resources/hris/resources/employeePayrollRuns/types/index.js +18 -0
  3232. package/dist/serialization/resources/hris/resources/employees/index.d.ts +1 -0
  3233. package/dist/serialization/resources/hris/resources/employees/index.js +1 -0
  3234. package/dist/serialization/resources/hris/resources/employees/types/EmployeesListRequestEmploymentStatus.d.ts +10 -0
  3235. package/dist/serialization/resources/hris/resources/employees/types/EmployeesListRequestEmploymentStatus.js +31 -0
  3236. package/dist/serialization/resources/hris/resources/employees/types/EmployeesListRequestExpand.d.ts +10 -0
  3237. package/dist/serialization/resources/hris/resources/employees/types/EmployeesListRequestExpand.js +287 -0
  3238. package/dist/serialization/resources/hris/resources/employees/types/EmployeesListRequestRemoteFields.d.ts +10 -0
  3239. package/dist/serialization/resources/hris/resources/employees/types/EmployeesListRequestRemoteFields.js +47 -0
  3240. package/dist/serialization/resources/hris/resources/employees/types/EmployeesListRequestShowEnumOrigins.d.ts +10 -0
  3241. package/dist/serialization/resources/hris/resources/employees/types/EmployeesListRequestShowEnumOrigins.js +47 -0
  3242. package/dist/serialization/resources/hris/resources/employees/types/EmployeesRetrieveRequestExpand.d.ts +10 -0
  3243. package/dist/serialization/resources/hris/resources/employees/types/EmployeesRetrieveRequestExpand.js +287 -0
  3244. package/dist/serialization/resources/hris/resources/employees/types/EmployeesRetrieveRequestRemoteFields.d.ts +10 -0
  3245. package/dist/serialization/resources/hris/resources/employees/types/EmployeesRetrieveRequestRemoteFields.js +47 -0
  3246. package/dist/serialization/resources/hris/resources/employees/types/EmployeesRetrieveRequestShowEnumOrigins.d.ts +10 -0
  3247. package/dist/serialization/resources/hris/resources/employees/types/EmployeesRetrieveRequestShowEnumOrigins.js +47 -0
  3248. package/dist/serialization/resources/hris/resources/employees/types/IgnoreCommonModelRequestReason.d.ts +10 -0
  3249. package/dist/serialization/resources/hris/resources/employees/types/IgnoreCommonModelRequestReason.js +43 -0
  3250. package/dist/serialization/resources/hris/resources/employees/types/index.d.ts +8 -0
  3251. package/dist/serialization/resources/hris/resources/employees/types/index.js +24 -0
  3252. package/dist/serialization/resources/hris/resources/employments/index.d.ts +1 -0
  3253. package/dist/serialization/resources/hris/resources/employments/index.js +17 -0
  3254. package/dist/serialization/resources/hris/resources/employments/types/EmploymentsListRequestExpand.d.ts +10 -0
  3255. package/dist/serialization/resources/hris/resources/employments/types/EmploymentsListRequestExpand.js +31 -0
  3256. package/dist/serialization/resources/hris/resources/employments/types/EmploymentsListRequestOrderBy.d.ts +10 -0
  3257. package/dist/serialization/resources/hris/resources/employments/types/EmploymentsListRequestOrderBy.js +31 -0
  3258. package/dist/serialization/resources/hris/resources/employments/types/EmploymentsListRequestRemoteFields.d.ts +10 -0
  3259. package/dist/serialization/resources/hris/resources/employments/types/EmploymentsListRequestRemoteFields.js +47 -0
  3260. package/dist/serialization/resources/hris/resources/employments/types/EmploymentsListRequestShowEnumOrigins.d.ts +10 -0
  3261. package/dist/serialization/resources/hris/resources/employments/types/EmploymentsListRequestShowEnumOrigins.js +47 -0
  3262. package/dist/serialization/resources/hris/resources/employments/types/EmploymentsRetrieveRequestExpand.d.ts +10 -0
  3263. package/dist/serialization/resources/hris/resources/employments/types/EmploymentsRetrieveRequestExpand.js +31 -0
  3264. package/dist/serialization/resources/hris/resources/employments/types/EmploymentsRetrieveRequestRemoteFields.d.ts +10 -0
  3265. package/dist/serialization/resources/hris/resources/employments/types/EmploymentsRetrieveRequestRemoteFields.js +47 -0
  3266. package/dist/serialization/resources/hris/resources/employments/types/EmploymentsRetrieveRequestShowEnumOrigins.d.ts +10 -0
  3267. package/dist/serialization/resources/hris/resources/employments/types/EmploymentsRetrieveRequestShowEnumOrigins.js +47 -0
  3268. package/dist/serialization/resources/hris/resources/employments/types/index.d.ts +7 -0
  3269. package/dist/serialization/resources/hris/resources/employments/types/index.js +23 -0
  3270. package/dist/serialization/resources/hris/resources/index.d.ts +22 -3
  3271. package/dist/serialization/resources/hris/resources/index.js +23 -4
  3272. package/dist/serialization/resources/hris/resources/issues/index.d.ts +1 -0
  3273. package/dist/serialization/resources/hris/resources/issues/index.js +17 -0
  3274. package/dist/serialization/resources/hris/resources/issues/types/IssuesListRequestStatus.d.ts +10 -0
  3275. package/dist/serialization/resources/hris/resources/issues/types/IssuesListRequestStatus.js +31 -0
  3276. package/dist/serialization/resources/hris/resources/issues/types/index.d.ts +1 -0
  3277. package/dist/serialization/resources/hris/resources/issues/types/index.js +17 -0
  3278. package/dist/serialization/resources/hris/resources/linkedAccounts/index.d.ts +1 -0
  3279. package/dist/serialization/resources/hris/resources/linkedAccounts/index.js +17 -0
  3280. package/dist/serialization/resources/hris/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.d.ts +10 -0
  3281. package/dist/serialization/resources/hris/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.js +31 -0
  3282. package/dist/serialization/resources/hris/resources/linkedAccounts/types/index.d.ts +1 -0
  3283. package/dist/serialization/resources/hris/resources/linkedAccounts/types/index.js +17 -0
  3284. package/dist/serialization/resources/hris/resources/locations/index.d.ts +1 -0
  3285. package/dist/serialization/resources/hris/resources/locations/index.js +17 -0
  3286. package/dist/serialization/resources/hris/resources/locations/types/LocationsListRequestLocationType.d.ts +10 -0
  3287. package/dist/serialization/resources/hris/resources/locations/types/LocationsListRequestLocationType.js +31 -0
  3288. package/dist/serialization/resources/hris/resources/locations/types/index.d.ts +1 -0
  3289. package/dist/serialization/resources/hris/resources/locations/types/index.js +17 -0
  3290. package/dist/serialization/resources/hris/resources/payrollRuns/index.d.ts +1 -0
  3291. package/dist/serialization/resources/hris/resources/payrollRuns/index.js +17 -0
  3292. package/dist/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsListRequestRemoteFields.d.ts +10 -0
  3293. package/dist/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsListRequestRemoteFields.js +31 -0
  3294. package/dist/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsListRequestRunType.d.ts +10 -0
  3295. package/dist/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsListRequestRunType.js +31 -0
  3296. package/dist/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsListRequestShowEnumOrigins.d.ts +10 -0
  3297. package/dist/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsListRequestShowEnumOrigins.js +31 -0
  3298. package/dist/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsRetrieveRequestRemoteFields.d.ts +10 -0
  3299. package/dist/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsRetrieveRequestRemoteFields.js +31 -0
  3300. package/dist/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsRetrieveRequestShowEnumOrigins.d.ts +10 -0
  3301. package/dist/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsRetrieveRequestShowEnumOrigins.js +31 -0
  3302. package/dist/serialization/resources/hris/resources/payrollRuns/types/index.d.ts +5 -0
  3303. package/dist/serialization/resources/hris/resources/payrollRuns/types/index.js +21 -0
  3304. package/dist/serialization/resources/hris/resources/timeOff/index.d.ts +1 -0
  3305. package/dist/serialization/resources/hris/resources/timeOff/index.js +1 -0
  3306. package/dist/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestExpand.d.ts +10 -0
  3307. package/dist/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestExpand.js +31 -0
  3308. package/dist/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestRemoteFields.d.ts +10 -0
  3309. package/dist/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestRemoteFields.js +39 -0
  3310. package/dist/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestRequestType.d.ts +10 -0
  3311. package/dist/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestRequestType.js +31 -0
  3312. package/dist/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestShowEnumOrigins.d.ts +10 -0
  3313. package/dist/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestShowEnumOrigins.js +39 -0
  3314. package/dist/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestStatus.d.ts +10 -0
  3315. package/dist/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestStatus.js +31 -0
  3316. package/dist/serialization/resources/hris/resources/timeOff/types/TimeOffRetrieveRequestExpand.d.ts +10 -0
  3317. package/dist/serialization/resources/hris/resources/timeOff/types/TimeOffRetrieveRequestExpand.js +31 -0
  3318. package/dist/serialization/resources/hris/resources/timeOff/types/TimeOffRetrieveRequestRemoteFields.d.ts +10 -0
  3319. package/dist/serialization/resources/hris/resources/timeOff/types/TimeOffRetrieveRequestRemoteFields.js +39 -0
  3320. package/dist/serialization/resources/hris/resources/timeOff/types/TimeOffRetrieveRequestShowEnumOrigins.d.ts +10 -0
  3321. package/dist/serialization/resources/hris/resources/timeOff/types/TimeOffRetrieveRequestShowEnumOrigins.js +39 -0
  3322. package/dist/serialization/resources/hris/resources/timeOff/types/index.d.ts +8 -0
  3323. package/dist/serialization/resources/hris/resources/timeOff/types/index.js +24 -0
  3324. package/dist/serialization/resources/hris/resources/timeOffBalances/index.d.ts +1 -0
  3325. package/dist/serialization/resources/hris/resources/timeOffBalances/index.js +17 -0
  3326. package/dist/serialization/resources/hris/resources/timeOffBalances/types/TimeOffBalancesListRequestPolicyType.d.ts +10 -0
  3327. package/dist/serialization/resources/hris/resources/timeOffBalances/types/TimeOffBalancesListRequestPolicyType.js +31 -0
  3328. package/dist/serialization/resources/hris/resources/timeOffBalances/types/index.d.ts +1 -0
  3329. package/dist/serialization/resources/hris/resources/timeOffBalances/types/index.js +17 -0
  3330. package/dist/serialization/resources/hris/resources/timesheetEntries/index.d.ts +1 -0
  3331. package/dist/serialization/resources/hris/resources/timesheetEntries/index.js +1 -0
  3332. package/dist/serialization/resources/hris/resources/timesheetEntries/types/TimesheetEntriesListRequestOrderBy.d.ts +10 -0
  3333. package/dist/serialization/resources/hris/resources/timesheetEntries/types/TimesheetEntriesListRequestOrderBy.js +31 -0
  3334. package/dist/serialization/resources/hris/resources/timesheetEntries/types/index.d.ts +1 -0
  3335. package/dist/serialization/resources/hris/resources/timesheetEntries/types/index.js +17 -0
  3336. package/dist/serialization/resources/hris/types/index.d.ts +22 -59
  3337. package/dist/serialization/resources/hris/types/index.js +22 -59
  3338. package/dist/serialization/resources/ticketing/index.d.ts +1 -1
  3339. package/dist/serialization/resources/ticketing/index.js +1 -1
  3340. package/dist/serialization/resources/ticketing/resources/collections/index.d.ts +1 -0
  3341. package/dist/serialization/resources/ticketing/resources/collections/index.js +17 -0
  3342. package/dist/serialization/resources/ticketing/resources/collections/types/CollectionsListRequestCollectionType.d.ts +10 -0
  3343. package/dist/serialization/resources/ticketing/resources/collections/types/CollectionsListRequestCollectionType.js +31 -0
  3344. package/dist/serialization/resources/ticketing/resources/collections/types/CollectionsUsersListRequestExpand.d.ts +10 -0
  3345. package/dist/serialization/resources/ticketing/resources/collections/types/CollectionsUsersListRequestExpand.js +31 -0
  3346. package/dist/serialization/resources/ticketing/resources/collections/types/index.d.ts +2 -0
  3347. package/dist/serialization/resources/ticketing/resources/collections/types/index.js +18 -0
  3348. package/dist/serialization/resources/ticketing/resources/comments/index.d.ts +1 -0
  3349. package/dist/serialization/resources/ticketing/resources/comments/index.js +1 -0
  3350. package/dist/serialization/resources/ticketing/resources/comments/types/CommentsListRequestExpand.d.ts +10 -0
  3351. package/dist/serialization/resources/ticketing/resources/comments/types/CommentsListRequestExpand.js +39 -0
  3352. package/dist/serialization/resources/ticketing/resources/comments/types/CommentsRetrieveRequestExpand.d.ts +10 -0
  3353. package/dist/serialization/resources/ticketing/resources/comments/types/CommentsRetrieveRequestExpand.js +39 -0
  3354. package/dist/serialization/resources/ticketing/resources/comments/types/index.d.ts +2 -0
  3355. package/dist/serialization/resources/ticketing/resources/comments/types/index.js +18 -0
  3356. package/dist/serialization/resources/ticketing/resources/index.d.ts +14 -2
  3357. package/dist/serialization/resources/ticketing/resources/index.js +15 -3
  3358. package/dist/serialization/resources/ticketing/resources/issues/index.d.ts +1 -0
  3359. package/dist/serialization/resources/ticketing/resources/issues/index.js +17 -0
  3360. package/dist/serialization/resources/ticketing/resources/issues/types/IssuesListRequestStatus.d.ts +10 -0
  3361. package/dist/serialization/resources/ticketing/resources/issues/types/IssuesListRequestStatus.js +31 -0
  3362. package/dist/serialization/resources/ticketing/resources/issues/types/index.d.ts +1 -0
  3363. package/dist/serialization/resources/ticketing/resources/issues/types/index.js +17 -0
  3364. package/dist/serialization/resources/ticketing/resources/linkedAccounts/index.d.ts +1 -0
  3365. package/dist/serialization/resources/ticketing/resources/linkedAccounts/index.js +17 -0
  3366. package/dist/serialization/resources/ticketing/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.d.ts +10 -0
  3367. package/dist/serialization/resources/ticketing/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.js +31 -0
  3368. package/dist/serialization/resources/ticketing/resources/linkedAccounts/types/index.d.ts +1 -0
  3369. package/dist/serialization/resources/ticketing/resources/linkedAccounts/types/index.js +17 -0
  3370. package/dist/serialization/resources/ticketing/resources/projects/index.d.ts +1 -0
  3371. package/dist/serialization/resources/ticketing/resources/projects/index.js +17 -0
  3372. package/dist/serialization/resources/ticketing/resources/projects/types/ProjectsUsersListRequestExpand.d.ts +10 -0
  3373. package/dist/serialization/resources/ticketing/resources/projects/types/ProjectsUsersListRequestExpand.js +31 -0
  3374. package/dist/serialization/resources/ticketing/resources/projects/types/index.d.ts +1 -0
  3375. package/dist/serialization/resources/ticketing/resources/projects/types/index.js +17 -0
  3376. package/dist/serialization/resources/ticketing/resources/tickets/index.d.ts +1 -0
  3377. package/dist/serialization/resources/ticketing/resources/tickets/index.js +1 -0
  3378. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsCollaboratorsListRequestExpand.d.ts +10 -0
  3379. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsCollaboratorsListRequestExpand.js +31 -0
  3380. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestExpand.d.ts +10 -0
  3381. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestExpand.js +159 -0
  3382. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestPriority.d.ts +10 -0
  3383. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestPriority.js +31 -0
  3384. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestRemoteFields.d.ts +10 -0
  3385. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestRemoteFields.js +39 -0
  3386. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestShowEnumOrigins.d.ts +10 -0
  3387. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestShowEnumOrigins.js +39 -0
  3388. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestStatus.d.ts +10 -0
  3389. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestStatus.js +31 -0
  3390. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsRetrieveRequestExpand.d.ts +10 -0
  3391. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsRetrieveRequestExpand.js +159 -0
  3392. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsRetrieveRequestRemoteFields.d.ts +10 -0
  3393. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsRetrieveRequestRemoteFields.js +39 -0
  3394. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsRetrieveRequestShowEnumOrigins.d.ts +10 -0
  3395. package/dist/serialization/resources/ticketing/resources/tickets/types/TicketsRetrieveRequestShowEnumOrigins.js +39 -0
  3396. package/dist/serialization/resources/ticketing/resources/tickets/types/index.d.ts +9 -0
  3397. package/dist/serialization/resources/ticketing/resources/tickets/types/index.js +25 -0
  3398. package/dist/serialization/resources/ticketing/resources/users/index.d.ts +1 -0
  3399. package/dist/serialization/resources/ticketing/resources/users/index.js +17 -0
  3400. package/dist/serialization/resources/ticketing/resources/users/types/UsersListRequestExpand.d.ts +10 -0
  3401. package/dist/serialization/resources/ticketing/resources/users/types/UsersListRequestExpand.js +31 -0
  3402. package/dist/serialization/resources/ticketing/resources/users/types/UsersRetrieveRequestExpand.d.ts +10 -0
  3403. package/dist/serialization/resources/ticketing/resources/users/types/UsersRetrieveRequestExpand.js +31 -0
  3404. package/dist/serialization/resources/ticketing/resources/users/types/index.d.ts +2 -0
  3405. package/dist/serialization/resources/ticketing/resources/users/types/index.js +18 -0
  3406. package/dist/serialization/resources/ticketing/types/RemoteData.d.ts +1 -1
  3407. package/dist/serialization/resources/ticketing/types/RemoteData.js +1 -1
  3408. package/dist/serialization/resources/ticketing/types/index.d.ts +19 -37
  3409. package/dist/serialization/resources/ticketing/types/index.js +19 -37
  3410. package/package.json +7 -4
  3411. package/serialization/resources/accounting/index.d.ts +1 -1
  3412. package/serialization/resources/accounting/index.js +1 -1
  3413. package/serialization/resources/accounting/resources/accounts/index.d.ts +1 -0
  3414. package/serialization/resources/accounting/resources/accounts/index.js +1 -0
  3415. package/serialization/resources/accounting/resources/accounts/types/AccountsListRequestRemoteFields.d.ts +10 -0
  3416. package/serialization/resources/accounting/resources/accounts/types/AccountsListRequestRemoteFields.js +31 -0
  3417. package/serialization/resources/accounting/resources/accounts/types/AccountsListRequestShowEnumOrigins.d.ts +10 -0
  3418. package/serialization/resources/accounting/resources/accounts/types/AccountsListRequestShowEnumOrigins.js +31 -0
  3419. package/serialization/resources/accounting/resources/accounts/types/AccountsRetrieveRequestRemoteFields.d.ts +10 -0
  3420. package/serialization/resources/accounting/resources/accounts/types/AccountsRetrieveRequestRemoteFields.js +31 -0
  3421. package/serialization/resources/accounting/resources/accounts/types/AccountsRetrieveRequestShowEnumOrigins.d.ts +10 -0
  3422. package/serialization/resources/accounting/resources/accounts/types/AccountsRetrieveRequestShowEnumOrigins.js +31 -0
  3423. package/serialization/resources/accounting/resources/accounts/types/index.d.ts +4 -0
  3424. package/serialization/resources/accounting/resources/accounts/types/index.js +20 -0
  3425. package/serialization/resources/accounting/resources/companyInfo/index.d.ts +1 -0
  3426. package/serialization/resources/accounting/resources/companyInfo/index.js +17 -0
  3427. package/serialization/resources/accounting/resources/companyInfo/types/CompanyInfoListRequestExpand.d.ts +10 -0
  3428. package/serialization/resources/accounting/resources/companyInfo/types/CompanyInfoListRequestExpand.js +31 -0
  3429. package/serialization/resources/accounting/resources/companyInfo/types/CompanyInfoRetrieveRequestExpand.d.ts +10 -0
  3430. package/serialization/resources/accounting/resources/companyInfo/types/CompanyInfoRetrieveRequestExpand.js +31 -0
  3431. package/serialization/resources/accounting/resources/companyInfo/types/index.d.ts +2 -0
  3432. package/serialization/resources/accounting/resources/companyInfo/types/index.js +18 -0
  3433. package/serialization/resources/accounting/resources/contacts/index.d.ts +1 -0
  3434. package/serialization/resources/accounting/resources/contacts/index.js +1 -0
  3435. package/serialization/resources/accounting/resources/contacts/types/ContactsListRequestExpand.d.ts +10 -0
  3436. package/serialization/resources/accounting/resources/contacts/types/ContactsListRequestExpand.js +39 -0
  3437. package/serialization/resources/accounting/resources/contacts/types/ContactsRetrieveRequestExpand.d.ts +10 -0
  3438. package/serialization/resources/accounting/resources/contacts/types/ContactsRetrieveRequestExpand.js +39 -0
  3439. package/serialization/resources/accounting/resources/contacts/types/index.d.ts +2 -0
  3440. package/serialization/resources/accounting/resources/contacts/types/index.js +18 -0
  3441. package/serialization/resources/accounting/resources/creditNotes/index.d.ts +1 -0
  3442. package/serialization/resources/accounting/resources/creditNotes/index.js +17 -0
  3443. package/serialization/resources/accounting/resources/creditNotes/types/CreditNotesListRequestExpand.d.ts +10 -0
  3444. package/serialization/resources/accounting/resources/creditNotes/types/CreditNotesListRequestExpand.js +159 -0
  3445. package/serialization/resources/accounting/resources/creditNotes/types/CreditNotesListRequestRemoteFields.d.ts +10 -0
  3446. package/serialization/resources/accounting/resources/creditNotes/types/CreditNotesListRequestRemoteFields.js +31 -0
  3447. package/serialization/resources/accounting/resources/creditNotes/types/CreditNotesListRequestShowEnumOrigins.d.ts +10 -0
  3448. package/serialization/resources/accounting/resources/creditNotes/types/CreditNotesListRequestShowEnumOrigins.js +31 -0
  3449. package/serialization/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestExpand.d.ts +10 -0
  3450. package/serialization/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestExpand.js +159 -0
  3451. package/serialization/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestRemoteFields.d.ts +10 -0
  3452. package/serialization/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestRemoteFields.js +31 -0
  3453. package/serialization/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestShowEnumOrigins.d.ts +10 -0
  3454. package/serialization/resources/accounting/resources/creditNotes/types/CreditNotesRetrieveRequestShowEnumOrigins.js +31 -0
  3455. package/serialization/resources/accounting/resources/creditNotes/types/index.d.ts +6 -0
  3456. package/serialization/resources/accounting/resources/creditNotes/types/index.js +22 -0
  3457. package/serialization/resources/accounting/resources/expenses/index.d.ts +1 -0
  3458. package/serialization/resources/accounting/resources/expenses/index.js +1 -0
  3459. package/serialization/resources/accounting/resources/expenses/types/ExpensesListRequestExpand.d.ts +10 -0
  3460. package/serialization/resources/accounting/resources/expenses/types/ExpensesListRequestExpand.js +63 -0
  3461. package/serialization/resources/accounting/resources/expenses/types/ExpensesRetrieveRequestExpand.d.ts +10 -0
  3462. package/serialization/resources/accounting/resources/expenses/types/ExpensesRetrieveRequestExpand.js +63 -0
  3463. package/serialization/resources/accounting/resources/expenses/types/index.d.ts +2 -0
  3464. package/serialization/resources/accounting/resources/expenses/types/index.js +18 -0
  3465. package/serialization/resources/accounting/resources/index.d.ts +28 -7
  3466. package/serialization/resources/accounting/resources/index.js +29 -8
  3467. package/serialization/resources/accounting/resources/invoices/index.d.ts +1 -0
  3468. package/serialization/resources/accounting/resources/invoices/index.js +1 -0
  3469. package/serialization/resources/accounting/resources/invoices/types/InvoicesListRequestExpand.d.ts +10 -0
  3470. package/serialization/resources/accounting/resources/invoices/types/InvoicesListRequestExpand.js +287 -0
  3471. package/serialization/resources/accounting/resources/invoices/types/InvoicesListRequestType.d.ts +10 -0
  3472. package/serialization/resources/accounting/resources/invoices/types/InvoicesListRequestType.js +31 -0
  3473. package/serialization/resources/accounting/resources/invoices/types/InvoicesRetrieveRequestExpand.d.ts +10 -0
  3474. package/serialization/resources/accounting/resources/invoices/types/InvoicesRetrieveRequestExpand.js +287 -0
  3475. package/serialization/resources/accounting/resources/invoices/types/index.d.ts +3 -0
  3476. package/serialization/resources/accounting/resources/invoices/types/index.js +19 -0
  3477. package/serialization/resources/accounting/resources/issues/index.d.ts +1 -0
  3478. package/serialization/resources/accounting/resources/issues/index.js +17 -0
  3479. package/serialization/resources/accounting/resources/issues/types/IssuesListRequestStatus.d.ts +10 -0
  3480. package/serialization/resources/accounting/resources/issues/types/IssuesListRequestStatus.js +31 -0
  3481. package/serialization/resources/accounting/resources/issues/types/index.d.ts +1 -0
  3482. package/serialization/resources/accounting/resources/issues/types/index.js +17 -0
  3483. package/serialization/resources/accounting/resources/items/index.d.ts +1 -0
  3484. package/serialization/resources/accounting/resources/items/index.js +17 -0
  3485. package/serialization/resources/accounting/resources/items/types/ItemsListRequestExpand.d.ts +10 -0
  3486. package/serialization/resources/accounting/resources/items/types/ItemsListRequestExpand.js +39 -0
  3487. package/serialization/resources/accounting/resources/items/types/ItemsRetrieveRequestExpand.d.ts +10 -0
  3488. package/serialization/resources/accounting/resources/items/types/ItemsRetrieveRequestExpand.js +39 -0
  3489. package/serialization/resources/accounting/resources/items/types/index.d.ts +2 -0
  3490. package/serialization/resources/accounting/resources/items/types/index.js +18 -0
  3491. package/serialization/resources/accounting/resources/journalEntries/index.d.ts +1 -0
  3492. package/serialization/resources/accounting/resources/journalEntries/index.js +1 -0
  3493. package/serialization/resources/accounting/resources/journalEntries/types/JournalEntriesListRequestExpand.d.ts +10 -0
  3494. package/serialization/resources/accounting/resources/journalEntries/types/JournalEntriesListRequestExpand.js +95 -0
  3495. package/serialization/resources/accounting/resources/journalEntries/types/JournalEntriesRetrieveRequestExpand.d.ts +10 -0
  3496. package/serialization/resources/accounting/resources/journalEntries/types/JournalEntriesRetrieveRequestExpand.js +95 -0
  3497. package/serialization/resources/accounting/resources/journalEntries/types/index.d.ts +2 -0
  3498. package/serialization/resources/accounting/resources/journalEntries/types/index.js +18 -0
  3499. package/serialization/resources/accounting/resources/linkedAccounts/index.d.ts +1 -0
  3500. package/serialization/resources/accounting/resources/linkedAccounts/index.js +17 -0
  3501. package/serialization/resources/accounting/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.d.ts +10 -0
  3502. package/serialization/resources/accounting/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.js +31 -0
  3503. package/serialization/resources/accounting/resources/linkedAccounts/types/index.d.ts +1 -0
  3504. package/serialization/resources/accounting/resources/linkedAccounts/types/index.js +17 -0
  3505. package/serialization/resources/accounting/resources/payments/index.d.ts +1 -0
  3506. package/serialization/resources/accounting/resources/payments/index.js +1 -0
  3507. package/serialization/resources/accounting/resources/payments/types/PaymentsListRequestExpand.d.ts +10 -0
  3508. package/serialization/resources/accounting/resources/payments/types/PaymentsListRequestExpand.js +95 -0
  3509. package/serialization/resources/accounting/resources/payments/types/PaymentsRetrieveRequestExpand.d.ts +10 -0
  3510. package/serialization/resources/accounting/resources/payments/types/PaymentsRetrieveRequestExpand.js +95 -0
  3511. package/serialization/resources/accounting/resources/payments/types/index.d.ts +2 -0
  3512. package/serialization/resources/accounting/resources/payments/types/index.js +18 -0
  3513. package/serialization/resources/accounting/resources/purchaseOrders/index.d.ts +1 -0
  3514. package/serialization/resources/accounting/resources/purchaseOrders/index.js +1 -0
  3515. package/serialization/resources/accounting/resources/purchaseOrders/types/PurchaseOrdersListRequestExpand.d.ts +10 -0
  3516. package/serialization/resources/accounting/resources/purchaseOrders/types/PurchaseOrdersListRequestExpand.js +95 -0
  3517. package/serialization/resources/accounting/resources/purchaseOrders/types/PurchaseOrdersRetrieveRequestExpand.d.ts +10 -0
  3518. package/serialization/resources/accounting/resources/purchaseOrders/types/PurchaseOrdersRetrieveRequestExpand.js +95 -0
  3519. package/serialization/resources/accounting/resources/purchaseOrders/types/index.d.ts +2 -0
  3520. package/serialization/resources/accounting/resources/purchaseOrders/types/index.js +18 -0
  3521. package/serialization/resources/accounting/resources/transactions/index.d.ts +1 -0
  3522. package/serialization/resources/accounting/resources/transactions/index.js +17 -0
  3523. package/serialization/resources/accounting/resources/transactions/types/TransactionsListRequestExpand.d.ts +10 -0
  3524. package/serialization/resources/accounting/resources/transactions/types/TransactionsListRequestExpand.js +63 -0
  3525. package/serialization/resources/accounting/resources/transactions/types/TransactionsRetrieveRequestExpand.d.ts +10 -0
  3526. package/serialization/resources/accounting/resources/transactions/types/TransactionsRetrieveRequestExpand.js +63 -0
  3527. package/serialization/resources/accounting/resources/transactions/types/index.d.ts +2 -0
  3528. package/serialization/resources/accounting/resources/transactions/types/index.js +18 -0
  3529. package/serialization/resources/accounting/resources/vendorCredits/index.d.ts +1 -0
  3530. package/serialization/resources/accounting/resources/vendorCredits/index.js +17 -0
  3531. package/serialization/resources/accounting/resources/vendorCredits/types/VendorCreditsListRequestExpand.d.ts +10 -0
  3532. package/serialization/resources/accounting/resources/vendorCredits/types/VendorCreditsListRequestExpand.js +63 -0
  3533. package/serialization/resources/accounting/resources/vendorCredits/types/VendorCreditsRetrieveRequestExpand.d.ts +10 -0
  3534. package/serialization/resources/accounting/resources/vendorCredits/types/VendorCreditsRetrieveRequestExpand.js +63 -0
  3535. package/serialization/resources/accounting/resources/vendorCredits/types/index.d.ts +2 -0
  3536. package/serialization/resources/accounting/resources/vendorCredits/types/index.js +18 -0
  3537. package/serialization/resources/accounting/types/RemoteData.d.ts +1 -1
  3538. package/serialization/resources/accounting/types/RemoteData.js +1 -1
  3539. package/serialization/resources/accounting/types/index.d.ts +43 -76
  3540. package/serialization/resources/accounting/types/index.js +43 -76
  3541. package/serialization/resources/ats/index.d.ts +1 -1
  3542. package/serialization/resources/ats/index.js +1 -1
  3543. package/serialization/resources/ats/resources/activities/index.d.ts +1 -0
  3544. package/serialization/resources/ats/resources/activities/index.js +1 -0
  3545. package/serialization/resources/ats/resources/activities/types/ActivitiesListRequestRemoteFields.d.ts +10 -0
  3546. package/serialization/resources/ats/resources/activities/types/ActivitiesListRequestRemoteFields.js +31 -0
  3547. package/serialization/resources/ats/resources/activities/types/ActivitiesListRequestShowEnumOrigins.d.ts +10 -0
  3548. package/serialization/resources/ats/resources/activities/types/ActivitiesListRequestShowEnumOrigins.js +31 -0
  3549. package/serialization/resources/ats/resources/activities/types/ActivitiesRetrieveRequestRemoteFields.d.ts +10 -0
  3550. package/serialization/resources/ats/resources/activities/types/ActivitiesRetrieveRequestRemoteFields.js +31 -0
  3551. package/serialization/resources/ats/resources/activities/types/ActivitiesRetrieveRequestShowEnumOrigins.d.ts +10 -0
  3552. package/serialization/resources/ats/resources/activities/types/ActivitiesRetrieveRequestShowEnumOrigins.js +31 -0
  3553. package/serialization/resources/ats/resources/activities/types/index.d.ts +4 -0
  3554. package/serialization/resources/ats/resources/activities/types/index.js +20 -0
  3555. package/serialization/resources/ats/resources/applications/index.d.ts +1 -0
  3556. package/serialization/resources/ats/resources/applications/index.js +1 -0
  3557. package/serialization/resources/ats/resources/applications/types/ApplicationsListRequestExpand.d.ts +10 -0
  3558. package/serialization/resources/ats/resources/applications/types/ApplicationsListRequestExpand.js +63 -0
  3559. package/serialization/resources/ats/resources/applications/types/ApplicationsRetrieveRequestExpand.d.ts +10 -0
  3560. package/serialization/resources/ats/resources/applications/types/ApplicationsRetrieveRequestExpand.js +63 -0
  3561. package/serialization/resources/ats/resources/applications/types/index.d.ts +2 -0
  3562. package/serialization/resources/ats/resources/applications/types/index.js +18 -0
  3563. package/serialization/resources/ats/resources/candidates/index.d.ts +1 -0
  3564. package/serialization/resources/ats/resources/candidates/index.js +1 -0
  3565. package/serialization/resources/ats/resources/candidates/types/CandidatesListRequestExpand.d.ts +10 -0
  3566. package/serialization/resources/ats/resources/candidates/types/CandidatesListRequestExpand.js +31 -0
  3567. package/serialization/resources/ats/resources/candidates/types/CandidatesRetrieveRequestExpand.d.ts +10 -0
  3568. package/serialization/resources/ats/resources/candidates/types/CandidatesRetrieveRequestExpand.js +31 -0
  3569. package/serialization/resources/ats/resources/candidates/types/index.d.ts +2 -0
  3570. package/serialization/resources/ats/resources/candidates/types/index.js +18 -0
  3571. package/serialization/resources/ats/resources/eeocs/index.d.ts +1 -0
  3572. package/serialization/resources/ats/resources/eeocs/index.js +17 -0
  3573. package/serialization/resources/ats/resources/eeocs/types/EeocsListRequestRemoteFields.d.ts +10 -0
  3574. package/serialization/resources/ats/resources/eeocs/types/EeocsListRequestRemoteFields.js +47 -0
  3575. package/serialization/resources/ats/resources/eeocs/types/EeocsListRequestShowEnumOrigins.d.ts +10 -0
  3576. package/serialization/resources/ats/resources/eeocs/types/EeocsListRequestShowEnumOrigins.js +47 -0
  3577. package/serialization/resources/ats/resources/eeocs/types/EeocsRetrieveRequestRemoteFields.d.ts +10 -0
  3578. package/serialization/resources/ats/resources/eeocs/types/EeocsRetrieveRequestRemoteFields.js +47 -0
  3579. package/serialization/resources/ats/resources/eeocs/types/EeocsRetrieveRequestShowEnumOrigins.d.ts +10 -0
  3580. package/serialization/resources/ats/resources/eeocs/types/EeocsRetrieveRequestShowEnumOrigins.js +47 -0
  3581. package/serialization/resources/ats/resources/eeocs/types/index.d.ts +4 -0
  3582. package/serialization/resources/ats/resources/eeocs/types/index.js +20 -0
  3583. package/serialization/resources/ats/resources/index.d.ts +20 -4
  3584. package/serialization/resources/ats/resources/index.js +21 -5
  3585. package/serialization/resources/ats/resources/interviews/index.d.ts +1 -0
  3586. package/serialization/resources/ats/resources/interviews/index.js +1 -0
  3587. package/serialization/resources/ats/resources/interviews/types/InterviewsListRequestExpand.d.ts +10 -0
  3588. package/serialization/resources/ats/resources/interviews/types/InterviewsListRequestExpand.js +47 -0
  3589. package/serialization/resources/ats/resources/interviews/types/InterviewsRetrieveRequestExpand.d.ts +10 -0
  3590. package/serialization/resources/ats/resources/interviews/types/InterviewsRetrieveRequestExpand.js +47 -0
  3591. package/serialization/resources/ats/resources/interviews/types/index.d.ts +2 -0
  3592. package/serialization/resources/ats/resources/interviews/types/index.js +18 -0
  3593. package/serialization/resources/ats/resources/issues/index.d.ts +1 -0
  3594. package/serialization/resources/ats/resources/issues/index.js +17 -0
  3595. package/serialization/resources/ats/resources/issues/types/IssuesListRequestStatus.d.ts +10 -0
  3596. package/serialization/resources/ats/resources/issues/types/IssuesListRequestStatus.js +31 -0
  3597. package/serialization/resources/ats/resources/issues/types/index.d.ts +1 -0
  3598. package/serialization/resources/ats/resources/issues/types/index.js +17 -0
  3599. package/serialization/resources/ats/resources/jobs/index.d.ts +1 -0
  3600. package/serialization/resources/ats/resources/jobs/index.js +17 -0
  3601. package/serialization/resources/ats/resources/jobs/types/JobsListRequestExpand.d.ts +10 -0
  3602. package/serialization/resources/ats/resources/jobs/types/JobsListRequestExpand.js +47 -0
  3603. package/serialization/resources/ats/resources/jobs/types/JobsListRequestStatus.d.ts +10 -0
  3604. package/serialization/resources/ats/resources/jobs/types/JobsListRequestStatus.js +31 -0
  3605. package/serialization/resources/ats/resources/jobs/types/JobsRetrieveRequestExpand.d.ts +10 -0
  3606. package/serialization/resources/ats/resources/jobs/types/JobsRetrieveRequestExpand.js +47 -0
  3607. package/serialization/resources/ats/resources/jobs/types/JobsScreeningQuestionsListRequestExpand.d.ts +10 -0
  3608. package/serialization/resources/ats/resources/jobs/types/JobsScreeningQuestionsListRequestExpand.js +31 -0
  3609. package/serialization/resources/ats/resources/jobs/types/index.d.ts +4 -0
  3610. package/serialization/resources/ats/resources/jobs/types/index.js +20 -0
  3611. package/serialization/resources/ats/resources/linkedAccounts/index.d.ts +1 -0
  3612. package/serialization/resources/ats/resources/linkedAccounts/index.js +17 -0
  3613. package/serialization/resources/ats/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.d.ts +10 -0
  3614. package/serialization/resources/ats/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.js +31 -0
  3615. package/serialization/resources/ats/resources/linkedAccounts/types/index.d.ts +1 -0
  3616. package/serialization/resources/ats/resources/linkedAccounts/types/index.js +17 -0
  3617. package/serialization/resources/ats/resources/offers/index.d.ts +1 -0
  3618. package/serialization/resources/ats/resources/offers/index.js +17 -0
  3619. package/serialization/resources/ats/resources/offers/types/OffersListRequestExpand.d.ts +10 -0
  3620. package/serialization/resources/ats/resources/offers/types/OffersListRequestExpand.js +31 -0
  3621. package/serialization/resources/ats/resources/offers/types/OffersRetrieveRequestExpand.d.ts +10 -0
  3622. package/serialization/resources/ats/resources/offers/types/OffersRetrieveRequestExpand.js +31 -0
  3623. package/serialization/resources/ats/resources/offers/types/index.d.ts +2 -0
  3624. package/serialization/resources/ats/resources/offers/types/index.js +18 -0
  3625. package/serialization/resources/ats/resources/scorecards/index.d.ts +1 -0
  3626. package/serialization/resources/ats/resources/scorecards/index.js +17 -0
  3627. package/serialization/resources/ats/resources/scorecards/types/ScorecardsListRequestExpand.d.ts +10 -0
  3628. package/serialization/resources/ats/resources/scorecards/types/ScorecardsListRequestExpand.js +39 -0
  3629. package/serialization/resources/ats/resources/scorecards/types/ScorecardsRetrieveRequestExpand.d.ts +10 -0
  3630. package/serialization/resources/ats/resources/scorecards/types/ScorecardsRetrieveRequestExpand.js +39 -0
  3631. package/serialization/resources/ats/resources/scorecards/types/index.d.ts +2 -0
  3632. package/serialization/resources/ats/resources/scorecards/types/index.js +18 -0
  3633. package/serialization/resources/ats/types/RemoteData.d.ts +1 -1
  3634. package/serialization/resources/ats/types/RemoteData.js +1 -1
  3635. package/serialization/resources/ats/types/index.d.ts +29 -53
  3636. package/serialization/resources/ats/types/index.js +29 -53
  3637. package/serialization/resources/crm/index.d.ts +1 -1
  3638. package/serialization/resources/crm/index.js +1 -1
  3639. package/serialization/resources/crm/resources/contacts/index.d.ts +1 -0
  3640. package/serialization/resources/crm/resources/contacts/index.js +1 -0
  3641. package/serialization/resources/crm/resources/contacts/types/ContactsListRequestExpand.d.ts +10 -0
  3642. package/serialization/resources/crm/resources/contacts/types/ContactsListRequestExpand.js +31 -0
  3643. package/serialization/resources/crm/resources/contacts/types/ContactsRetrieveRequestExpand.d.ts +10 -0
  3644. package/serialization/resources/crm/resources/contacts/types/ContactsRetrieveRequestExpand.js +31 -0
  3645. package/serialization/resources/crm/resources/contacts/types/index.d.ts +2 -0
  3646. package/serialization/resources/crm/resources/contacts/types/index.js +18 -0
  3647. package/serialization/resources/crm/resources/engagements/index.d.ts +1 -0
  3648. package/serialization/resources/crm/resources/engagements/index.js +1 -0
  3649. package/serialization/resources/crm/resources/engagements/types/EngagementsListRequestExpand.d.ts +10 -0
  3650. package/serialization/resources/crm/resources/engagements/types/EngagementsListRequestExpand.js +47 -0
  3651. package/serialization/resources/crm/resources/engagements/types/EngagementsRetrieveRequestExpand.d.ts +10 -0
  3652. package/serialization/resources/crm/resources/engagements/types/EngagementsRetrieveRequestExpand.js +47 -0
  3653. package/serialization/resources/crm/resources/engagements/types/index.d.ts +2 -0
  3654. package/serialization/resources/crm/resources/engagements/types/index.js +18 -0
  3655. package/serialization/resources/crm/resources/index.d.ts +16 -6
  3656. package/serialization/resources/crm/resources/index.js +17 -7
  3657. package/serialization/resources/crm/resources/issues/index.d.ts +1 -0
  3658. package/serialization/resources/crm/resources/issues/index.js +17 -0
  3659. package/serialization/resources/crm/resources/issues/types/IssuesListRequestStatus.d.ts +10 -0
  3660. package/serialization/resources/crm/resources/issues/types/IssuesListRequestStatus.js +31 -0
  3661. package/serialization/resources/crm/resources/issues/types/index.d.ts +1 -0
  3662. package/serialization/resources/crm/resources/issues/types/index.js +17 -0
  3663. package/serialization/resources/crm/resources/leads/index.d.ts +1 -0
  3664. package/serialization/resources/crm/resources/leads/index.js +1 -0
  3665. package/serialization/resources/crm/resources/leads/types/LeadsListRequestExpand.d.ts +10 -0
  3666. package/serialization/resources/crm/resources/leads/types/LeadsListRequestExpand.js +39 -0
  3667. package/serialization/resources/crm/resources/leads/types/LeadsRetrieveRequestExpand.d.ts +10 -0
  3668. package/serialization/resources/crm/resources/leads/types/LeadsRetrieveRequestExpand.js +39 -0
  3669. package/serialization/resources/crm/resources/leads/types/index.d.ts +2 -0
  3670. package/serialization/resources/crm/resources/leads/types/index.js +18 -0
  3671. package/serialization/resources/crm/resources/linkedAccounts/index.d.ts +1 -0
  3672. package/serialization/resources/crm/resources/linkedAccounts/index.js +17 -0
  3673. package/serialization/resources/crm/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.d.ts +10 -0
  3674. package/serialization/resources/crm/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.js +31 -0
  3675. package/serialization/resources/crm/resources/linkedAccounts/types/index.d.ts +1 -0
  3676. package/serialization/resources/crm/resources/linkedAccounts/types/index.js +17 -0
  3677. package/serialization/resources/crm/resources/notes/index.d.ts +1 -0
  3678. package/serialization/resources/crm/resources/notes/index.js +1 -0
  3679. package/serialization/resources/crm/resources/notes/types/NotesListRequestExpand.d.ts +10 -0
  3680. package/serialization/resources/crm/resources/notes/types/NotesListRequestExpand.js +47 -0
  3681. package/serialization/resources/crm/resources/notes/types/NotesRetrieveRequestExpand.d.ts +10 -0
  3682. package/serialization/resources/crm/resources/notes/types/NotesRetrieveRequestExpand.js +47 -0
  3683. package/serialization/resources/crm/resources/notes/types/index.d.ts +2 -0
  3684. package/serialization/resources/crm/resources/notes/types/index.js +18 -0
  3685. package/serialization/resources/crm/resources/opportunities/index.d.ts +1 -0
  3686. package/serialization/resources/crm/resources/opportunities/index.js +1 -0
  3687. package/serialization/resources/crm/resources/opportunities/types/OpportunitiesListRequestExpand.d.ts +10 -0
  3688. package/serialization/resources/crm/resources/opportunities/types/OpportunitiesListRequestExpand.js +39 -0
  3689. package/serialization/resources/crm/resources/opportunities/types/OpportunitiesListRequestStatus.d.ts +10 -0
  3690. package/serialization/resources/crm/resources/opportunities/types/OpportunitiesListRequestStatus.js +31 -0
  3691. package/serialization/resources/crm/resources/opportunities/types/OpportunitiesRetrieveRequestExpand.d.ts +10 -0
  3692. package/serialization/resources/crm/resources/opportunities/types/OpportunitiesRetrieveRequestExpand.js +39 -0
  3693. package/serialization/resources/crm/resources/opportunities/types/index.d.ts +3 -0
  3694. package/serialization/resources/crm/resources/opportunities/types/index.js +19 -0
  3695. package/serialization/resources/crm/resources/tasks/index.d.ts +1 -0
  3696. package/serialization/resources/crm/resources/tasks/index.js +1 -0
  3697. package/serialization/resources/crm/resources/tasks/types/TasksListRequestExpand.d.ts +10 -0
  3698. package/serialization/resources/crm/resources/tasks/types/TasksListRequestExpand.js +39 -0
  3699. package/serialization/resources/crm/resources/tasks/types/TasksRetrieveRequestExpand.d.ts +10 -0
  3700. package/serialization/resources/crm/resources/tasks/types/TasksRetrieveRequestExpand.js +39 -0
  3701. package/serialization/resources/crm/resources/tasks/types/index.d.ts +2 -0
  3702. package/serialization/resources/crm/resources/tasks/types/index.js +18 -0
  3703. package/serialization/resources/crm/types/RemoteData.d.ts +1 -1
  3704. package/serialization/resources/crm/types/RemoteData.js +1 -1
  3705. package/serialization/resources/crm/types/index.d.ts +33 -48
  3706. package/serialization/resources/crm/types/index.js +33 -48
  3707. package/serialization/resources/filestorage/index.d.ts +1 -1
  3708. package/serialization/resources/filestorage/index.js +1 -1
  3709. package/serialization/resources/filestorage/resources/files/index.d.ts +1 -0
  3710. package/serialization/resources/filestorage/resources/files/index.js +1 -0
  3711. package/serialization/resources/filestorage/resources/files/types/FilesListRequestExpand.d.ts +10 -0
  3712. package/serialization/resources/filestorage/resources/files/types/FilesListRequestExpand.js +39 -0
  3713. package/serialization/resources/filestorage/resources/files/types/FilesRetrieveRequestExpand.d.ts +10 -0
  3714. package/serialization/resources/filestorage/resources/files/types/FilesRetrieveRequestExpand.js +39 -0
  3715. package/serialization/resources/filestorage/resources/files/types/index.d.ts +2 -0
  3716. package/serialization/resources/filestorage/resources/files/types/index.js +18 -0
  3717. package/serialization/resources/filestorage/resources/folders/index.d.ts +1 -0
  3718. package/serialization/resources/filestorage/resources/folders/index.js +1 -0
  3719. package/serialization/resources/filestorage/resources/folders/types/FoldersListRequestExpand.d.ts +10 -0
  3720. package/serialization/resources/filestorage/resources/folders/types/FoldersListRequestExpand.js +39 -0
  3721. package/serialization/resources/filestorage/resources/folders/types/FoldersRetrieveRequestExpand.d.ts +10 -0
  3722. package/serialization/resources/filestorage/resources/folders/types/FoldersRetrieveRequestExpand.js +39 -0
  3723. package/serialization/resources/filestorage/resources/folders/types/index.d.ts +2 -0
  3724. package/serialization/resources/filestorage/resources/folders/types/index.js +18 -0
  3725. package/serialization/resources/filestorage/resources/index.d.ts +8 -2
  3726. package/serialization/resources/filestorage/resources/index.js +9 -3
  3727. package/serialization/resources/filestorage/resources/issues/index.d.ts +1 -0
  3728. package/serialization/resources/filestorage/resources/issues/index.js +17 -0
  3729. package/serialization/resources/filestorage/resources/issues/types/IssuesListRequestStatus.d.ts +10 -0
  3730. package/serialization/resources/filestorage/resources/issues/types/IssuesListRequestStatus.js +31 -0
  3731. package/serialization/resources/filestorage/resources/issues/types/index.d.ts +1 -0
  3732. package/serialization/resources/filestorage/resources/issues/types/index.js +17 -0
  3733. package/serialization/resources/filestorage/resources/linkedAccounts/index.d.ts +1 -0
  3734. package/serialization/resources/filestorage/resources/linkedAccounts/index.js +17 -0
  3735. package/serialization/resources/filestorage/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.d.ts +10 -0
  3736. package/serialization/resources/filestorage/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.js +31 -0
  3737. package/serialization/resources/filestorage/resources/linkedAccounts/types/index.d.ts +1 -0
  3738. package/serialization/resources/filestorage/resources/linkedAccounts/types/index.js +17 -0
  3739. package/serialization/resources/filestorage/types/index.d.ts +15 -21
  3740. package/serialization/resources/filestorage/types/index.js +15 -21
  3741. package/serialization/resources/hris/index.d.ts +1 -1
  3742. package/serialization/resources/hris/index.js +1 -1
  3743. package/serialization/resources/hris/resources/bankInfo/index.d.ts +1 -0
  3744. package/serialization/resources/hris/resources/bankInfo/index.js +17 -0
  3745. package/serialization/resources/hris/resources/bankInfo/types/BankInfoListRequestAccountType.d.ts +10 -0
  3746. package/serialization/resources/hris/resources/bankInfo/types/BankInfoListRequestAccountType.js +31 -0
  3747. package/serialization/resources/hris/resources/bankInfo/types/BankInfoListRequestOrderBy.d.ts +10 -0
  3748. package/serialization/resources/hris/resources/bankInfo/types/BankInfoListRequestOrderBy.js +31 -0
  3749. package/serialization/resources/hris/resources/bankInfo/types/index.d.ts +2 -0
  3750. package/serialization/resources/hris/resources/bankInfo/types/index.js +18 -0
  3751. package/serialization/resources/hris/resources/employeePayrollRuns/index.d.ts +1 -0
  3752. package/serialization/resources/hris/resources/employeePayrollRuns/index.js +17 -0
  3753. package/serialization/resources/hris/resources/employeePayrollRuns/types/EmployeePayrollRunsListRequestExpand.d.ts +10 -0
  3754. package/serialization/resources/hris/resources/employeePayrollRuns/types/EmployeePayrollRunsListRequestExpand.js +31 -0
  3755. package/serialization/resources/hris/resources/employeePayrollRuns/types/EmployeePayrollRunsRetrieveRequestExpand.d.ts +10 -0
  3756. package/serialization/resources/hris/resources/employeePayrollRuns/types/EmployeePayrollRunsRetrieveRequestExpand.js +31 -0
  3757. package/serialization/resources/hris/resources/employeePayrollRuns/types/index.d.ts +2 -0
  3758. package/serialization/resources/hris/resources/employeePayrollRuns/types/index.js +18 -0
  3759. package/serialization/resources/hris/resources/employees/index.d.ts +1 -0
  3760. package/serialization/resources/hris/resources/employees/index.js +1 -0
  3761. package/serialization/resources/hris/resources/employees/types/EmployeesListRequestEmploymentStatus.d.ts +10 -0
  3762. package/serialization/resources/hris/resources/employees/types/EmployeesListRequestEmploymentStatus.js +31 -0
  3763. package/serialization/resources/hris/resources/employees/types/EmployeesListRequestExpand.d.ts +10 -0
  3764. package/serialization/resources/hris/resources/employees/types/EmployeesListRequestExpand.js +287 -0
  3765. package/serialization/resources/hris/resources/employees/types/EmployeesListRequestRemoteFields.d.ts +10 -0
  3766. package/serialization/resources/hris/resources/employees/types/EmployeesListRequestRemoteFields.js +47 -0
  3767. package/serialization/resources/hris/resources/employees/types/EmployeesListRequestShowEnumOrigins.d.ts +10 -0
  3768. package/serialization/resources/hris/resources/employees/types/EmployeesListRequestShowEnumOrigins.js +47 -0
  3769. package/serialization/resources/hris/resources/employees/types/EmployeesRetrieveRequestExpand.d.ts +10 -0
  3770. package/serialization/resources/hris/resources/employees/types/EmployeesRetrieveRequestExpand.js +287 -0
  3771. package/serialization/resources/hris/resources/employees/types/EmployeesRetrieveRequestRemoteFields.d.ts +10 -0
  3772. package/serialization/resources/hris/resources/employees/types/EmployeesRetrieveRequestRemoteFields.js +47 -0
  3773. package/serialization/resources/hris/resources/employees/types/EmployeesRetrieveRequestShowEnumOrigins.d.ts +10 -0
  3774. package/serialization/resources/hris/resources/employees/types/EmployeesRetrieveRequestShowEnumOrigins.js +47 -0
  3775. package/serialization/resources/hris/resources/employees/types/IgnoreCommonModelRequestReason.d.ts +10 -0
  3776. package/serialization/resources/hris/resources/employees/types/IgnoreCommonModelRequestReason.js +43 -0
  3777. package/serialization/resources/hris/resources/employees/types/index.d.ts +8 -0
  3778. package/serialization/resources/hris/resources/employees/types/index.js +24 -0
  3779. package/serialization/resources/hris/resources/employments/index.d.ts +1 -0
  3780. package/serialization/resources/hris/resources/employments/index.js +17 -0
  3781. package/serialization/resources/hris/resources/employments/types/EmploymentsListRequestExpand.d.ts +10 -0
  3782. package/serialization/resources/hris/resources/employments/types/EmploymentsListRequestExpand.js +31 -0
  3783. package/serialization/resources/hris/resources/employments/types/EmploymentsListRequestOrderBy.d.ts +10 -0
  3784. package/serialization/resources/hris/resources/employments/types/EmploymentsListRequestOrderBy.js +31 -0
  3785. package/serialization/resources/hris/resources/employments/types/EmploymentsListRequestRemoteFields.d.ts +10 -0
  3786. package/serialization/resources/hris/resources/employments/types/EmploymentsListRequestRemoteFields.js +47 -0
  3787. package/serialization/resources/hris/resources/employments/types/EmploymentsListRequestShowEnumOrigins.d.ts +10 -0
  3788. package/serialization/resources/hris/resources/employments/types/EmploymentsListRequestShowEnumOrigins.js +47 -0
  3789. package/serialization/resources/hris/resources/employments/types/EmploymentsRetrieveRequestExpand.d.ts +10 -0
  3790. package/serialization/resources/hris/resources/employments/types/EmploymentsRetrieveRequestExpand.js +31 -0
  3791. package/serialization/resources/hris/resources/employments/types/EmploymentsRetrieveRequestRemoteFields.d.ts +10 -0
  3792. package/serialization/resources/hris/resources/employments/types/EmploymentsRetrieveRequestRemoteFields.js +47 -0
  3793. package/serialization/resources/hris/resources/employments/types/EmploymentsRetrieveRequestShowEnumOrigins.d.ts +10 -0
  3794. package/serialization/resources/hris/resources/employments/types/EmploymentsRetrieveRequestShowEnumOrigins.js +47 -0
  3795. package/serialization/resources/hris/resources/employments/types/index.d.ts +7 -0
  3796. package/serialization/resources/hris/resources/employments/types/index.js +23 -0
  3797. package/serialization/resources/hris/resources/index.d.ts +22 -3
  3798. package/serialization/resources/hris/resources/index.js +23 -4
  3799. package/serialization/resources/hris/resources/issues/index.d.ts +1 -0
  3800. package/serialization/resources/hris/resources/issues/index.js +17 -0
  3801. package/serialization/resources/hris/resources/issues/types/IssuesListRequestStatus.d.ts +10 -0
  3802. package/serialization/resources/hris/resources/issues/types/IssuesListRequestStatus.js +31 -0
  3803. package/serialization/resources/hris/resources/issues/types/index.d.ts +1 -0
  3804. package/serialization/resources/hris/resources/issues/types/index.js +17 -0
  3805. package/serialization/resources/hris/resources/linkedAccounts/index.d.ts +1 -0
  3806. package/serialization/resources/hris/resources/linkedAccounts/index.js +17 -0
  3807. package/serialization/resources/hris/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.d.ts +10 -0
  3808. package/serialization/resources/hris/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.js +31 -0
  3809. package/serialization/resources/hris/resources/linkedAccounts/types/index.d.ts +1 -0
  3810. package/serialization/resources/hris/resources/linkedAccounts/types/index.js +17 -0
  3811. package/serialization/resources/hris/resources/locations/index.d.ts +1 -0
  3812. package/serialization/resources/hris/resources/locations/index.js +17 -0
  3813. package/serialization/resources/hris/resources/locations/types/LocationsListRequestLocationType.d.ts +10 -0
  3814. package/serialization/resources/hris/resources/locations/types/LocationsListRequestLocationType.js +31 -0
  3815. package/serialization/resources/hris/resources/locations/types/index.d.ts +1 -0
  3816. package/serialization/resources/hris/resources/locations/types/index.js +17 -0
  3817. package/serialization/resources/hris/resources/payrollRuns/index.d.ts +1 -0
  3818. package/serialization/resources/hris/resources/payrollRuns/index.js +17 -0
  3819. package/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsListRequestRemoteFields.d.ts +10 -0
  3820. package/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsListRequestRemoteFields.js +31 -0
  3821. package/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsListRequestRunType.d.ts +10 -0
  3822. package/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsListRequestRunType.js +31 -0
  3823. package/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsListRequestShowEnumOrigins.d.ts +10 -0
  3824. package/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsListRequestShowEnumOrigins.js +31 -0
  3825. package/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsRetrieveRequestRemoteFields.d.ts +10 -0
  3826. package/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsRetrieveRequestRemoteFields.js +31 -0
  3827. package/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsRetrieveRequestShowEnumOrigins.d.ts +10 -0
  3828. package/serialization/resources/hris/resources/payrollRuns/types/PayrollRunsRetrieveRequestShowEnumOrigins.js +31 -0
  3829. package/serialization/resources/hris/resources/payrollRuns/types/index.d.ts +5 -0
  3830. package/serialization/resources/hris/resources/payrollRuns/types/index.js +21 -0
  3831. package/serialization/resources/hris/resources/timeOff/index.d.ts +1 -0
  3832. package/serialization/resources/hris/resources/timeOff/index.js +1 -0
  3833. package/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestExpand.d.ts +10 -0
  3834. package/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestExpand.js +31 -0
  3835. package/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestRemoteFields.d.ts +10 -0
  3836. package/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestRemoteFields.js +39 -0
  3837. package/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestRequestType.d.ts +10 -0
  3838. package/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestRequestType.js +31 -0
  3839. package/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestShowEnumOrigins.d.ts +10 -0
  3840. package/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestShowEnumOrigins.js +39 -0
  3841. package/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestStatus.d.ts +10 -0
  3842. package/serialization/resources/hris/resources/timeOff/types/TimeOffListRequestStatus.js +31 -0
  3843. package/serialization/resources/hris/resources/timeOff/types/TimeOffRetrieveRequestExpand.d.ts +10 -0
  3844. package/serialization/resources/hris/resources/timeOff/types/TimeOffRetrieveRequestExpand.js +31 -0
  3845. package/serialization/resources/hris/resources/timeOff/types/TimeOffRetrieveRequestRemoteFields.d.ts +10 -0
  3846. package/serialization/resources/hris/resources/timeOff/types/TimeOffRetrieveRequestRemoteFields.js +39 -0
  3847. package/serialization/resources/hris/resources/timeOff/types/TimeOffRetrieveRequestShowEnumOrigins.d.ts +10 -0
  3848. package/serialization/resources/hris/resources/timeOff/types/TimeOffRetrieveRequestShowEnumOrigins.js +39 -0
  3849. package/serialization/resources/hris/resources/timeOff/types/index.d.ts +8 -0
  3850. package/serialization/resources/hris/resources/timeOff/types/index.js +24 -0
  3851. package/serialization/resources/hris/resources/timeOffBalances/index.d.ts +1 -0
  3852. package/serialization/resources/hris/resources/timeOffBalances/index.js +17 -0
  3853. package/serialization/resources/hris/resources/timeOffBalances/types/TimeOffBalancesListRequestPolicyType.d.ts +10 -0
  3854. package/serialization/resources/hris/resources/timeOffBalances/types/TimeOffBalancesListRequestPolicyType.js +31 -0
  3855. package/serialization/resources/hris/resources/timeOffBalances/types/index.d.ts +1 -0
  3856. package/serialization/resources/hris/resources/timeOffBalances/types/index.js +17 -0
  3857. package/serialization/resources/hris/resources/timesheetEntries/index.d.ts +1 -0
  3858. package/serialization/resources/hris/resources/timesheetEntries/index.js +1 -0
  3859. package/serialization/resources/hris/resources/timesheetEntries/types/TimesheetEntriesListRequestOrderBy.d.ts +10 -0
  3860. package/serialization/resources/hris/resources/timesheetEntries/types/TimesheetEntriesListRequestOrderBy.js +31 -0
  3861. package/serialization/resources/hris/resources/timesheetEntries/types/index.d.ts +1 -0
  3862. package/serialization/resources/hris/resources/timesheetEntries/types/index.js +17 -0
  3863. package/serialization/resources/hris/types/index.d.ts +22 -59
  3864. package/serialization/resources/hris/types/index.js +22 -59
  3865. package/serialization/resources/ticketing/index.d.ts +1 -1
  3866. package/serialization/resources/ticketing/index.js +1 -1
  3867. package/serialization/resources/ticketing/resources/collections/index.d.ts +1 -0
  3868. package/serialization/resources/ticketing/resources/collections/index.js +17 -0
  3869. package/serialization/resources/ticketing/resources/collections/types/CollectionsListRequestCollectionType.d.ts +10 -0
  3870. package/serialization/resources/ticketing/resources/collections/types/CollectionsListRequestCollectionType.js +31 -0
  3871. package/serialization/resources/ticketing/resources/collections/types/CollectionsUsersListRequestExpand.d.ts +10 -0
  3872. package/serialization/resources/ticketing/resources/collections/types/CollectionsUsersListRequestExpand.js +31 -0
  3873. package/serialization/resources/ticketing/resources/collections/types/index.d.ts +2 -0
  3874. package/serialization/resources/ticketing/resources/collections/types/index.js +18 -0
  3875. package/serialization/resources/ticketing/resources/comments/index.d.ts +1 -0
  3876. package/serialization/resources/ticketing/resources/comments/index.js +1 -0
  3877. package/serialization/resources/ticketing/resources/comments/types/CommentsListRequestExpand.d.ts +10 -0
  3878. package/serialization/resources/ticketing/resources/comments/types/CommentsListRequestExpand.js +39 -0
  3879. package/serialization/resources/ticketing/resources/comments/types/CommentsRetrieveRequestExpand.d.ts +10 -0
  3880. package/serialization/resources/ticketing/resources/comments/types/CommentsRetrieveRequestExpand.js +39 -0
  3881. package/serialization/resources/ticketing/resources/comments/types/index.d.ts +2 -0
  3882. package/serialization/resources/ticketing/resources/comments/types/index.js +18 -0
  3883. package/serialization/resources/ticketing/resources/index.d.ts +14 -2
  3884. package/serialization/resources/ticketing/resources/index.js +15 -3
  3885. package/serialization/resources/ticketing/resources/issues/index.d.ts +1 -0
  3886. package/serialization/resources/ticketing/resources/issues/index.js +17 -0
  3887. package/serialization/resources/ticketing/resources/issues/types/IssuesListRequestStatus.d.ts +10 -0
  3888. package/serialization/resources/ticketing/resources/issues/types/IssuesListRequestStatus.js +31 -0
  3889. package/serialization/resources/ticketing/resources/issues/types/index.d.ts +1 -0
  3890. package/serialization/resources/ticketing/resources/issues/types/index.js +17 -0
  3891. package/serialization/resources/ticketing/resources/linkedAccounts/index.d.ts +1 -0
  3892. package/serialization/resources/ticketing/resources/linkedAccounts/index.js +17 -0
  3893. package/serialization/resources/ticketing/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.d.ts +10 -0
  3894. package/serialization/resources/ticketing/resources/linkedAccounts/types/LinkedAccountsListRequestCategory.js +31 -0
  3895. package/serialization/resources/ticketing/resources/linkedAccounts/types/index.d.ts +1 -0
  3896. package/serialization/resources/ticketing/resources/linkedAccounts/types/index.js +17 -0
  3897. package/serialization/resources/ticketing/resources/projects/index.d.ts +1 -0
  3898. package/serialization/resources/ticketing/resources/projects/index.js +17 -0
  3899. package/serialization/resources/ticketing/resources/projects/types/ProjectsUsersListRequestExpand.d.ts +10 -0
  3900. package/serialization/resources/ticketing/resources/projects/types/ProjectsUsersListRequestExpand.js +31 -0
  3901. package/serialization/resources/ticketing/resources/projects/types/index.d.ts +1 -0
  3902. package/serialization/resources/ticketing/resources/projects/types/index.js +17 -0
  3903. package/serialization/resources/ticketing/resources/tickets/index.d.ts +1 -0
  3904. package/serialization/resources/ticketing/resources/tickets/index.js +1 -0
  3905. package/serialization/resources/ticketing/resources/tickets/types/TicketsCollaboratorsListRequestExpand.d.ts +10 -0
  3906. package/serialization/resources/ticketing/resources/tickets/types/TicketsCollaboratorsListRequestExpand.js +31 -0
  3907. package/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestExpand.d.ts +10 -0
  3908. package/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestExpand.js +159 -0
  3909. package/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestPriority.d.ts +10 -0
  3910. package/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestPriority.js +31 -0
  3911. package/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestRemoteFields.d.ts +10 -0
  3912. package/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestRemoteFields.js +39 -0
  3913. package/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestShowEnumOrigins.d.ts +10 -0
  3914. package/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestShowEnumOrigins.js +39 -0
  3915. package/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestStatus.d.ts +10 -0
  3916. package/serialization/resources/ticketing/resources/tickets/types/TicketsListRequestStatus.js +31 -0
  3917. package/serialization/resources/ticketing/resources/tickets/types/TicketsRetrieveRequestExpand.d.ts +10 -0
  3918. package/serialization/resources/ticketing/resources/tickets/types/TicketsRetrieveRequestExpand.js +159 -0
  3919. package/serialization/resources/ticketing/resources/tickets/types/TicketsRetrieveRequestRemoteFields.d.ts +10 -0
  3920. package/serialization/resources/ticketing/resources/tickets/types/TicketsRetrieveRequestRemoteFields.js +39 -0
  3921. package/serialization/resources/ticketing/resources/tickets/types/TicketsRetrieveRequestShowEnumOrigins.d.ts +10 -0
  3922. package/serialization/resources/ticketing/resources/tickets/types/TicketsRetrieveRequestShowEnumOrigins.js +39 -0
  3923. package/serialization/resources/ticketing/resources/tickets/types/index.d.ts +9 -0
  3924. package/serialization/resources/ticketing/resources/tickets/types/index.js +25 -0
  3925. package/serialization/resources/ticketing/resources/users/index.d.ts +1 -0
  3926. package/serialization/resources/ticketing/resources/users/index.js +17 -0
  3927. package/serialization/resources/ticketing/resources/users/types/UsersListRequestExpand.d.ts +10 -0
  3928. package/serialization/resources/ticketing/resources/users/types/UsersListRequestExpand.js +31 -0
  3929. package/serialization/resources/ticketing/resources/users/types/UsersRetrieveRequestExpand.d.ts +10 -0
  3930. package/serialization/resources/ticketing/resources/users/types/UsersRetrieveRequestExpand.js +31 -0
  3931. package/serialization/resources/ticketing/resources/users/types/index.d.ts +2 -0
  3932. package/serialization/resources/ticketing/resources/users/types/index.js +18 -0
  3933. package/serialization/resources/ticketing/types/RemoteData.d.ts +1 -1
  3934. package/serialization/resources/ticketing/types/RemoteData.js +1 -1
  3935. package/serialization/resources/ticketing/types/index.d.ts +19 -37
  3936. package/serialization/resources/ticketing/types/index.js +19 -37
  3937. package/api/resources/hris/types/IgnoreCommonModelRequestReason.d.ts +0 -5
  3938. package/core/streaming-fetcher/StreamingFetcher.d.ts +0 -30
  3939. package/core/streaming-fetcher/StreamingFetcher.js +0 -79
  3940. package/core/streaming-fetcher/getHeader.d.ts +0 -2
  3941. package/core/streaming-fetcher/getHeader.js +0 -12
  3942. package/core/streaming-fetcher/index.d.ts +0 -3
  3943. package/core/streaming-fetcher/index.js +0 -7
  3944. package/dist/api/resources/hris/types/IgnoreCommonModelRequestReason.d.ts +0 -5
  3945. package/dist/core/streaming-fetcher/StreamingFetcher.d.ts +0 -30
  3946. package/dist/core/streaming-fetcher/StreamingFetcher.js +0 -79
  3947. package/dist/core/streaming-fetcher/getHeader.d.ts +0 -2
  3948. package/dist/core/streaming-fetcher/getHeader.js +0 -12
  3949. package/dist/core/streaming-fetcher/index.d.ts +0 -3
  3950. package/dist/core/streaming-fetcher/index.js +0 -7
  3951. package/dist/serialization/resources/accounting/types/AccountsListRequestRemoteFields.d.ts +0 -10
  3952. package/dist/serialization/resources/accounting/types/AccountsListRequestRemoteFields.js +0 -31
  3953. package/dist/serialization/resources/accounting/types/AccountsListRequestShowEnumOrigins.d.ts +0 -10
  3954. package/dist/serialization/resources/accounting/types/AccountsListRequestShowEnumOrigins.js +0 -31
  3955. package/dist/serialization/resources/accounting/types/AccountsRetrieveRequestRemoteFields.d.ts +0 -10
  3956. package/dist/serialization/resources/accounting/types/AccountsRetrieveRequestRemoteFields.js +0 -31
  3957. package/dist/serialization/resources/accounting/types/AccountsRetrieveRequestShowEnumOrigins.d.ts +0 -10
  3958. package/dist/serialization/resources/accounting/types/AccountsRetrieveRequestShowEnumOrigins.js +0 -31
  3959. package/dist/serialization/resources/accounting/types/CompanyInfoListRequestExpand.d.ts +0 -10
  3960. package/dist/serialization/resources/accounting/types/CompanyInfoListRequestExpand.js +0 -31
  3961. package/dist/serialization/resources/accounting/types/CompanyInfoRetrieveRequestExpand.d.ts +0 -10
  3962. package/dist/serialization/resources/accounting/types/CompanyInfoRetrieveRequestExpand.js +0 -31
  3963. package/dist/serialization/resources/accounting/types/ContactsListRequestExpand.d.ts +0 -10
  3964. package/dist/serialization/resources/accounting/types/ContactsListRequestExpand.js +0 -39
  3965. package/dist/serialization/resources/accounting/types/ContactsRetrieveRequestExpand.d.ts +0 -10
  3966. package/dist/serialization/resources/accounting/types/ContactsRetrieveRequestExpand.js +0 -39
  3967. package/dist/serialization/resources/accounting/types/CreditNotesListRequestExpand.d.ts +0 -10
  3968. package/dist/serialization/resources/accounting/types/CreditNotesListRequestExpand.js +0 -159
  3969. package/dist/serialization/resources/accounting/types/CreditNotesListRequestRemoteFields.d.ts +0 -10
  3970. package/dist/serialization/resources/accounting/types/CreditNotesListRequestRemoteFields.js +0 -31
  3971. package/dist/serialization/resources/accounting/types/CreditNotesListRequestShowEnumOrigins.d.ts +0 -10
  3972. package/dist/serialization/resources/accounting/types/CreditNotesListRequestShowEnumOrigins.js +0 -31
  3973. package/dist/serialization/resources/accounting/types/CreditNotesRetrieveRequestExpand.d.ts +0 -10
  3974. package/dist/serialization/resources/accounting/types/CreditNotesRetrieveRequestExpand.js +0 -159
  3975. package/dist/serialization/resources/accounting/types/CreditNotesRetrieveRequestRemoteFields.d.ts +0 -10
  3976. package/dist/serialization/resources/accounting/types/CreditNotesRetrieveRequestRemoteFields.js +0 -31
  3977. package/dist/serialization/resources/accounting/types/CreditNotesRetrieveRequestShowEnumOrigins.d.ts +0 -10
  3978. package/dist/serialization/resources/accounting/types/CreditNotesRetrieveRequestShowEnumOrigins.js +0 -31
  3979. package/dist/serialization/resources/accounting/types/ExpensesListRequestExpand.d.ts +0 -10
  3980. package/dist/serialization/resources/accounting/types/ExpensesListRequestExpand.js +0 -63
  3981. package/dist/serialization/resources/accounting/types/ExpensesRetrieveRequestExpand.d.ts +0 -10
  3982. package/dist/serialization/resources/accounting/types/ExpensesRetrieveRequestExpand.js +0 -63
  3983. package/dist/serialization/resources/accounting/types/InvoicesListRequestExpand.d.ts +0 -10
  3984. package/dist/serialization/resources/accounting/types/InvoicesListRequestExpand.js +0 -287
  3985. package/dist/serialization/resources/accounting/types/InvoicesListRequestType.d.ts +0 -10
  3986. package/dist/serialization/resources/accounting/types/InvoicesListRequestType.js +0 -31
  3987. package/dist/serialization/resources/accounting/types/InvoicesRetrieveRequestExpand.d.ts +0 -10
  3988. package/dist/serialization/resources/accounting/types/InvoicesRetrieveRequestExpand.js +0 -287
  3989. package/dist/serialization/resources/accounting/types/IssuesListRequestStatus.d.ts +0 -10
  3990. package/dist/serialization/resources/accounting/types/IssuesListRequestStatus.js +0 -31
  3991. package/dist/serialization/resources/accounting/types/ItemsListRequestExpand.d.ts +0 -10
  3992. package/dist/serialization/resources/accounting/types/ItemsListRequestExpand.js +0 -39
  3993. package/dist/serialization/resources/accounting/types/ItemsRetrieveRequestExpand.d.ts +0 -10
  3994. package/dist/serialization/resources/accounting/types/ItemsRetrieveRequestExpand.js +0 -39
  3995. package/dist/serialization/resources/accounting/types/JournalEntriesListRequestExpand.d.ts +0 -10
  3996. package/dist/serialization/resources/accounting/types/JournalEntriesListRequestExpand.js +0 -95
  3997. package/dist/serialization/resources/accounting/types/JournalEntriesRetrieveRequestExpand.d.ts +0 -10
  3998. package/dist/serialization/resources/accounting/types/JournalEntriesRetrieveRequestExpand.js +0 -95
  3999. package/dist/serialization/resources/accounting/types/LinkedAccountsListRequestCategory.d.ts +0 -10
  4000. package/dist/serialization/resources/accounting/types/LinkedAccountsListRequestCategory.js +0 -31
  4001. package/dist/serialization/resources/accounting/types/PaymentsListRequestExpand.d.ts +0 -10
  4002. package/dist/serialization/resources/accounting/types/PaymentsListRequestExpand.js +0 -95
  4003. package/dist/serialization/resources/accounting/types/PaymentsRetrieveRequestExpand.d.ts +0 -10
  4004. package/dist/serialization/resources/accounting/types/PaymentsRetrieveRequestExpand.js +0 -95
  4005. package/dist/serialization/resources/accounting/types/PurchaseOrdersListRequestExpand.d.ts +0 -10
  4006. package/dist/serialization/resources/accounting/types/PurchaseOrdersListRequestExpand.js +0 -95
  4007. package/dist/serialization/resources/accounting/types/PurchaseOrdersRetrieveRequestExpand.d.ts +0 -10
  4008. package/dist/serialization/resources/accounting/types/PurchaseOrdersRetrieveRequestExpand.js +0 -95
  4009. package/dist/serialization/resources/accounting/types/TransactionsListRequestExpand.d.ts +0 -10
  4010. package/dist/serialization/resources/accounting/types/TransactionsListRequestExpand.js +0 -63
  4011. package/dist/serialization/resources/accounting/types/TransactionsRetrieveRequestExpand.d.ts +0 -10
  4012. package/dist/serialization/resources/accounting/types/TransactionsRetrieveRequestExpand.js +0 -63
  4013. package/dist/serialization/resources/accounting/types/VendorCreditsListRequestExpand.d.ts +0 -10
  4014. package/dist/serialization/resources/accounting/types/VendorCreditsListRequestExpand.js +0 -63
  4015. package/dist/serialization/resources/accounting/types/VendorCreditsRetrieveRequestExpand.d.ts +0 -10
  4016. package/dist/serialization/resources/accounting/types/VendorCreditsRetrieveRequestExpand.js +0 -63
  4017. package/dist/serialization/resources/ats/types/ActivitiesListRequestRemoteFields.d.ts +0 -10
  4018. package/dist/serialization/resources/ats/types/ActivitiesListRequestRemoteFields.js +0 -31
  4019. package/dist/serialization/resources/ats/types/ActivitiesListRequestShowEnumOrigins.d.ts +0 -10
  4020. package/dist/serialization/resources/ats/types/ActivitiesListRequestShowEnumOrigins.js +0 -31
  4021. package/dist/serialization/resources/ats/types/ActivitiesRetrieveRequestRemoteFields.d.ts +0 -10
  4022. package/dist/serialization/resources/ats/types/ActivitiesRetrieveRequestRemoteFields.js +0 -31
  4023. package/dist/serialization/resources/ats/types/ActivitiesRetrieveRequestShowEnumOrigins.d.ts +0 -10
  4024. package/dist/serialization/resources/ats/types/ActivitiesRetrieveRequestShowEnumOrigins.js +0 -31
  4025. package/dist/serialization/resources/ats/types/ApplicationsListRequestExpand.d.ts +0 -10
  4026. package/dist/serialization/resources/ats/types/ApplicationsListRequestExpand.js +0 -63
  4027. package/dist/serialization/resources/ats/types/ApplicationsRetrieveRequestExpand.d.ts +0 -10
  4028. package/dist/serialization/resources/ats/types/ApplicationsRetrieveRequestExpand.js +0 -63
  4029. package/dist/serialization/resources/ats/types/CandidatesListRequestExpand.d.ts +0 -10
  4030. package/dist/serialization/resources/ats/types/CandidatesListRequestExpand.js +0 -31
  4031. package/dist/serialization/resources/ats/types/CandidatesRetrieveRequestExpand.d.ts +0 -10
  4032. package/dist/serialization/resources/ats/types/CandidatesRetrieveRequestExpand.js +0 -31
  4033. package/dist/serialization/resources/ats/types/EeocsListRequestRemoteFields.d.ts +0 -10
  4034. package/dist/serialization/resources/ats/types/EeocsListRequestRemoteFields.js +0 -47
  4035. package/dist/serialization/resources/ats/types/EeocsListRequestShowEnumOrigins.d.ts +0 -10
  4036. package/dist/serialization/resources/ats/types/EeocsListRequestShowEnumOrigins.js +0 -47
  4037. package/dist/serialization/resources/ats/types/EeocsRetrieveRequestRemoteFields.d.ts +0 -10
  4038. package/dist/serialization/resources/ats/types/EeocsRetrieveRequestRemoteFields.js +0 -47
  4039. package/dist/serialization/resources/ats/types/EeocsRetrieveRequestShowEnumOrigins.d.ts +0 -10
  4040. package/dist/serialization/resources/ats/types/EeocsRetrieveRequestShowEnumOrigins.js +0 -47
  4041. package/dist/serialization/resources/ats/types/InterviewsListRequestExpand.d.ts +0 -10
  4042. package/dist/serialization/resources/ats/types/InterviewsListRequestExpand.js +0 -47
  4043. package/dist/serialization/resources/ats/types/InterviewsRetrieveRequestExpand.d.ts +0 -10
  4044. package/dist/serialization/resources/ats/types/InterviewsRetrieveRequestExpand.js +0 -47
  4045. package/dist/serialization/resources/ats/types/IssuesListRequestStatus.d.ts +0 -10
  4046. package/dist/serialization/resources/ats/types/IssuesListRequestStatus.js +0 -31
  4047. package/dist/serialization/resources/ats/types/JobsListRequestExpand.d.ts +0 -10
  4048. package/dist/serialization/resources/ats/types/JobsListRequestExpand.js +0 -47
  4049. package/dist/serialization/resources/ats/types/JobsListRequestStatus.d.ts +0 -10
  4050. package/dist/serialization/resources/ats/types/JobsListRequestStatus.js +0 -31
  4051. package/dist/serialization/resources/ats/types/JobsRetrieveRequestExpand.d.ts +0 -10
  4052. package/dist/serialization/resources/ats/types/JobsRetrieveRequestExpand.js +0 -47
  4053. package/dist/serialization/resources/ats/types/JobsScreeningQuestionsListRequestExpand.d.ts +0 -10
  4054. package/dist/serialization/resources/ats/types/JobsScreeningQuestionsListRequestExpand.js +0 -31
  4055. package/dist/serialization/resources/ats/types/LinkedAccountsListRequestCategory.d.ts +0 -10
  4056. package/dist/serialization/resources/ats/types/LinkedAccountsListRequestCategory.js +0 -31
  4057. package/dist/serialization/resources/ats/types/OffersListRequestExpand.d.ts +0 -10
  4058. package/dist/serialization/resources/ats/types/OffersListRequestExpand.js +0 -31
  4059. package/dist/serialization/resources/ats/types/OffersRetrieveRequestExpand.d.ts +0 -10
  4060. package/dist/serialization/resources/ats/types/OffersRetrieveRequestExpand.js +0 -31
  4061. package/dist/serialization/resources/ats/types/ScorecardsListRequestExpand.d.ts +0 -10
  4062. package/dist/serialization/resources/ats/types/ScorecardsListRequestExpand.js +0 -39
  4063. package/dist/serialization/resources/ats/types/ScorecardsRetrieveRequestExpand.d.ts +0 -10
  4064. package/dist/serialization/resources/ats/types/ScorecardsRetrieveRequestExpand.js +0 -39
  4065. package/dist/serialization/resources/crm/types/ContactsListRequestExpand.d.ts +0 -10
  4066. package/dist/serialization/resources/crm/types/ContactsListRequestExpand.js +0 -31
  4067. package/dist/serialization/resources/crm/types/ContactsRetrieveRequestExpand.d.ts +0 -10
  4068. package/dist/serialization/resources/crm/types/ContactsRetrieveRequestExpand.js +0 -31
  4069. package/dist/serialization/resources/crm/types/EngagementsListRequestExpand.d.ts +0 -10
  4070. package/dist/serialization/resources/crm/types/EngagementsListRequestExpand.js +0 -47
  4071. package/dist/serialization/resources/crm/types/EngagementsRetrieveRequestExpand.d.ts +0 -10
  4072. package/dist/serialization/resources/crm/types/EngagementsRetrieveRequestExpand.js +0 -47
  4073. package/dist/serialization/resources/crm/types/IssuesListRequestStatus.d.ts +0 -10
  4074. package/dist/serialization/resources/crm/types/IssuesListRequestStatus.js +0 -31
  4075. package/dist/serialization/resources/crm/types/LeadsListRequestExpand.d.ts +0 -10
  4076. package/dist/serialization/resources/crm/types/LeadsListRequestExpand.js +0 -39
  4077. package/dist/serialization/resources/crm/types/LeadsRetrieveRequestExpand.d.ts +0 -10
  4078. package/dist/serialization/resources/crm/types/LeadsRetrieveRequestExpand.js +0 -39
  4079. package/dist/serialization/resources/crm/types/LinkedAccountsListRequestCategory.d.ts +0 -10
  4080. package/dist/serialization/resources/crm/types/LinkedAccountsListRequestCategory.js +0 -31
  4081. package/dist/serialization/resources/crm/types/NotesListRequestExpand.d.ts +0 -10
  4082. package/dist/serialization/resources/crm/types/NotesListRequestExpand.js +0 -47
  4083. package/dist/serialization/resources/crm/types/NotesRetrieveRequestExpand.d.ts +0 -10
  4084. package/dist/serialization/resources/crm/types/NotesRetrieveRequestExpand.js +0 -47
  4085. package/dist/serialization/resources/crm/types/OpportunitiesListRequestExpand.d.ts +0 -10
  4086. package/dist/serialization/resources/crm/types/OpportunitiesListRequestExpand.js +0 -39
  4087. package/dist/serialization/resources/crm/types/OpportunitiesListRequestStatus.d.ts +0 -10
  4088. package/dist/serialization/resources/crm/types/OpportunitiesListRequestStatus.js +0 -31
  4089. package/dist/serialization/resources/crm/types/OpportunitiesRetrieveRequestExpand.d.ts +0 -10
  4090. package/dist/serialization/resources/crm/types/OpportunitiesRetrieveRequestExpand.js +0 -39
  4091. package/dist/serialization/resources/crm/types/TasksListRequestExpand.d.ts +0 -10
  4092. package/dist/serialization/resources/crm/types/TasksListRequestExpand.js +0 -39
  4093. package/dist/serialization/resources/crm/types/TasksRetrieveRequestExpand.d.ts +0 -10
  4094. package/dist/serialization/resources/crm/types/TasksRetrieveRequestExpand.js +0 -39
  4095. package/dist/serialization/resources/filestorage/types/FilesListRequestExpand.d.ts +0 -10
  4096. package/dist/serialization/resources/filestorage/types/FilesListRequestExpand.js +0 -39
  4097. package/dist/serialization/resources/filestorage/types/FilesRetrieveRequestExpand.d.ts +0 -10
  4098. package/dist/serialization/resources/filestorage/types/FilesRetrieveRequestExpand.js +0 -39
  4099. package/dist/serialization/resources/filestorage/types/FoldersListRequestExpand.d.ts +0 -10
  4100. package/dist/serialization/resources/filestorage/types/FoldersListRequestExpand.js +0 -39
  4101. package/dist/serialization/resources/filestorage/types/FoldersRetrieveRequestExpand.d.ts +0 -10
  4102. package/dist/serialization/resources/filestorage/types/FoldersRetrieveRequestExpand.js +0 -39
  4103. package/dist/serialization/resources/filestorage/types/IssuesListRequestStatus.d.ts +0 -10
  4104. package/dist/serialization/resources/filestorage/types/IssuesListRequestStatus.js +0 -31
  4105. package/dist/serialization/resources/filestorage/types/LinkedAccountsListRequestCategory.d.ts +0 -10
  4106. package/dist/serialization/resources/filestorage/types/LinkedAccountsListRequestCategory.js +0 -31
  4107. package/dist/serialization/resources/hris/types/BankInfoListRequestAccountType.d.ts +0 -10
  4108. package/dist/serialization/resources/hris/types/BankInfoListRequestAccountType.js +0 -31
  4109. package/dist/serialization/resources/hris/types/BankInfoListRequestOrderBy.d.ts +0 -10
  4110. package/dist/serialization/resources/hris/types/BankInfoListRequestOrderBy.js +0 -31
  4111. package/dist/serialization/resources/hris/types/EmployeePayrollRunsListRequestExpand.d.ts +0 -10
  4112. package/dist/serialization/resources/hris/types/EmployeePayrollRunsListRequestExpand.js +0 -31
  4113. package/dist/serialization/resources/hris/types/EmployeePayrollRunsRetrieveRequestExpand.d.ts +0 -10
  4114. package/dist/serialization/resources/hris/types/EmployeePayrollRunsRetrieveRequestExpand.js +0 -31
  4115. package/dist/serialization/resources/hris/types/EmployeesListRequestEmploymentStatus.d.ts +0 -10
  4116. package/dist/serialization/resources/hris/types/EmployeesListRequestEmploymentStatus.js +0 -31
  4117. package/dist/serialization/resources/hris/types/EmployeesListRequestExpand.d.ts +0 -10
  4118. package/dist/serialization/resources/hris/types/EmployeesListRequestExpand.js +0 -287
  4119. package/dist/serialization/resources/hris/types/EmployeesListRequestRemoteFields.d.ts +0 -10
  4120. package/dist/serialization/resources/hris/types/EmployeesListRequestRemoteFields.js +0 -47
  4121. package/dist/serialization/resources/hris/types/EmployeesListRequestShowEnumOrigins.d.ts +0 -10
  4122. package/dist/serialization/resources/hris/types/EmployeesListRequestShowEnumOrigins.js +0 -47
  4123. package/dist/serialization/resources/hris/types/EmployeesRetrieveRequestExpand.d.ts +0 -10
  4124. package/dist/serialization/resources/hris/types/EmployeesRetrieveRequestExpand.js +0 -287
  4125. package/dist/serialization/resources/hris/types/EmployeesRetrieveRequestRemoteFields.d.ts +0 -10
  4126. package/dist/serialization/resources/hris/types/EmployeesRetrieveRequestRemoteFields.js +0 -47
  4127. package/dist/serialization/resources/hris/types/EmployeesRetrieveRequestShowEnumOrigins.d.ts +0 -10
  4128. package/dist/serialization/resources/hris/types/EmployeesRetrieveRequestShowEnumOrigins.js +0 -47
  4129. package/dist/serialization/resources/hris/types/EmploymentsListRequestExpand.d.ts +0 -10
  4130. package/dist/serialization/resources/hris/types/EmploymentsListRequestExpand.js +0 -31
  4131. package/dist/serialization/resources/hris/types/EmploymentsListRequestOrderBy.d.ts +0 -10
  4132. package/dist/serialization/resources/hris/types/EmploymentsListRequestOrderBy.js +0 -31
  4133. package/dist/serialization/resources/hris/types/EmploymentsListRequestRemoteFields.d.ts +0 -10
  4134. package/dist/serialization/resources/hris/types/EmploymentsListRequestRemoteFields.js +0 -47
  4135. package/dist/serialization/resources/hris/types/EmploymentsListRequestShowEnumOrigins.d.ts +0 -10
  4136. package/dist/serialization/resources/hris/types/EmploymentsListRequestShowEnumOrigins.js +0 -47
  4137. package/dist/serialization/resources/hris/types/EmploymentsRetrieveRequestExpand.d.ts +0 -10
  4138. package/dist/serialization/resources/hris/types/EmploymentsRetrieveRequestExpand.js +0 -31
  4139. package/dist/serialization/resources/hris/types/EmploymentsRetrieveRequestRemoteFields.d.ts +0 -10
  4140. package/dist/serialization/resources/hris/types/EmploymentsRetrieveRequestRemoteFields.js +0 -47
  4141. package/dist/serialization/resources/hris/types/EmploymentsRetrieveRequestShowEnumOrigins.d.ts +0 -10
  4142. package/dist/serialization/resources/hris/types/EmploymentsRetrieveRequestShowEnumOrigins.js +0 -47
  4143. package/dist/serialization/resources/hris/types/IgnoreCommonModelRequestReason.d.ts +0 -10
  4144. package/dist/serialization/resources/hris/types/IgnoreCommonModelRequestReason.js +0 -43
  4145. package/dist/serialization/resources/hris/types/IssuesListRequestStatus.d.ts +0 -10
  4146. package/dist/serialization/resources/hris/types/IssuesListRequestStatus.js +0 -31
  4147. package/dist/serialization/resources/hris/types/LinkedAccountsListRequestCategory.d.ts +0 -10
  4148. package/dist/serialization/resources/hris/types/LinkedAccountsListRequestCategory.js +0 -31
  4149. package/dist/serialization/resources/hris/types/LocationsListRequestLocationType.d.ts +0 -10
  4150. package/dist/serialization/resources/hris/types/LocationsListRequestLocationType.js +0 -31
  4151. package/dist/serialization/resources/hris/types/PayrollRunsListRequestRemoteFields.d.ts +0 -10
  4152. package/dist/serialization/resources/hris/types/PayrollRunsListRequestRemoteFields.js +0 -31
  4153. package/dist/serialization/resources/hris/types/PayrollRunsListRequestRunType.d.ts +0 -10
  4154. package/dist/serialization/resources/hris/types/PayrollRunsListRequestRunType.js +0 -31
  4155. package/dist/serialization/resources/hris/types/PayrollRunsListRequestShowEnumOrigins.d.ts +0 -10
  4156. package/dist/serialization/resources/hris/types/PayrollRunsListRequestShowEnumOrigins.js +0 -31
  4157. package/dist/serialization/resources/hris/types/PayrollRunsRetrieveRequestRemoteFields.d.ts +0 -10
  4158. package/dist/serialization/resources/hris/types/PayrollRunsRetrieveRequestRemoteFields.js +0 -31
  4159. package/dist/serialization/resources/hris/types/PayrollRunsRetrieveRequestShowEnumOrigins.d.ts +0 -10
  4160. package/dist/serialization/resources/hris/types/PayrollRunsRetrieveRequestShowEnumOrigins.js +0 -31
  4161. package/dist/serialization/resources/hris/types/TimeOffBalancesListRequestPolicyType.d.ts +0 -10
  4162. package/dist/serialization/resources/hris/types/TimeOffBalancesListRequestPolicyType.js +0 -31
  4163. package/dist/serialization/resources/hris/types/TimeOffListRequestExpand.d.ts +0 -10
  4164. package/dist/serialization/resources/hris/types/TimeOffListRequestExpand.js +0 -31
  4165. package/dist/serialization/resources/hris/types/TimeOffListRequestRemoteFields.d.ts +0 -10
  4166. package/dist/serialization/resources/hris/types/TimeOffListRequestRemoteFields.js +0 -39
  4167. package/dist/serialization/resources/hris/types/TimeOffListRequestRequestType.d.ts +0 -10
  4168. package/dist/serialization/resources/hris/types/TimeOffListRequestRequestType.js +0 -31
  4169. package/dist/serialization/resources/hris/types/TimeOffListRequestShowEnumOrigins.d.ts +0 -10
  4170. package/dist/serialization/resources/hris/types/TimeOffListRequestShowEnumOrigins.js +0 -39
  4171. package/dist/serialization/resources/hris/types/TimeOffListRequestStatus.d.ts +0 -10
  4172. package/dist/serialization/resources/hris/types/TimeOffListRequestStatus.js +0 -31
  4173. package/dist/serialization/resources/hris/types/TimeOffRetrieveRequestExpand.d.ts +0 -10
  4174. package/dist/serialization/resources/hris/types/TimeOffRetrieveRequestExpand.js +0 -31
  4175. package/dist/serialization/resources/hris/types/TimeOffRetrieveRequestRemoteFields.d.ts +0 -10
  4176. package/dist/serialization/resources/hris/types/TimeOffRetrieveRequestRemoteFields.js +0 -39
  4177. package/dist/serialization/resources/hris/types/TimeOffRetrieveRequestShowEnumOrigins.d.ts +0 -10
  4178. package/dist/serialization/resources/hris/types/TimeOffRetrieveRequestShowEnumOrigins.js +0 -39
  4179. package/dist/serialization/resources/hris/types/TimesheetEntriesListRequestOrderBy.d.ts +0 -10
  4180. package/dist/serialization/resources/hris/types/TimesheetEntriesListRequestOrderBy.js +0 -31
  4181. package/dist/serialization/resources/ticketing/types/CollectionsListRequestCollectionType.d.ts +0 -10
  4182. package/dist/serialization/resources/ticketing/types/CollectionsListRequestCollectionType.js +0 -31
  4183. package/dist/serialization/resources/ticketing/types/CollectionsUsersListRequestExpand.d.ts +0 -10
  4184. package/dist/serialization/resources/ticketing/types/CollectionsUsersListRequestExpand.js +0 -31
  4185. package/dist/serialization/resources/ticketing/types/CommentsListRequestExpand.d.ts +0 -10
  4186. package/dist/serialization/resources/ticketing/types/CommentsListRequestExpand.js +0 -39
  4187. package/dist/serialization/resources/ticketing/types/CommentsRetrieveRequestExpand.d.ts +0 -10
  4188. package/dist/serialization/resources/ticketing/types/CommentsRetrieveRequestExpand.js +0 -39
  4189. package/dist/serialization/resources/ticketing/types/IssuesListRequestStatus.d.ts +0 -10
  4190. package/dist/serialization/resources/ticketing/types/IssuesListRequestStatus.js +0 -31
  4191. package/dist/serialization/resources/ticketing/types/LinkedAccountsListRequestCategory.d.ts +0 -10
  4192. package/dist/serialization/resources/ticketing/types/LinkedAccountsListRequestCategory.js +0 -31
  4193. package/dist/serialization/resources/ticketing/types/ProjectsUsersListRequestExpand.d.ts +0 -10
  4194. package/dist/serialization/resources/ticketing/types/ProjectsUsersListRequestExpand.js +0 -31
  4195. package/dist/serialization/resources/ticketing/types/TicketsCollaboratorsListRequestExpand.d.ts +0 -10
  4196. package/dist/serialization/resources/ticketing/types/TicketsCollaboratorsListRequestExpand.js +0 -31
  4197. package/dist/serialization/resources/ticketing/types/TicketsListRequestExpand.d.ts +0 -10
  4198. package/dist/serialization/resources/ticketing/types/TicketsListRequestExpand.js +0 -159
  4199. package/dist/serialization/resources/ticketing/types/TicketsListRequestPriority.d.ts +0 -10
  4200. package/dist/serialization/resources/ticketing/types/TicketsListRequestPriority.js +0 -31
  4201. package/dist/serialization/resources/ticketing/types/TicketsListRequestRemoteFields.d.ts +0 -10
  4202. package/dist/serialization/resources/ticketing/types/TicketsListRequestRemoteFields.js +0 -39
  4203. package/dist/serialization/resources/ticketing/types/TicketsListRequestShowEnumOrigins.d.ts +0 -10
  4204. package/dist/serialization/resources/ticketing/types/TicketsListRequestShowEnumOrigins.js +0 -39
  4205. package/dist/serialization/resources/ticketing/types/TicketsListRequestStatus.d.ts +0 -10
  4206. package/dist/serialization/resources/ticketing/types/TicketsListRequestStatus.js +0 -31
  4207. package/dist/serialization/resources/ticketing/types/TicketsRetrieveRequestExpand.d.ts +0 -10
  4208. package/dist/serialization/resources/ticketing/types/TicketsRetrieveRequestExpand.js +0 -159
  4209. package/dist/serialization/resources/ticketing/types/TicketsRetrieveRequestRemoteFields.d.ts +0 -10
  4210. package/dist/serialization/resources/ticketing/types/TicketsRetrieveRequestRemoteFields.js +0 -39
  4211. package/dist/serialization/resources/ticketing/types/TicketsRetrieveRequestShowEnumOrigins.d.ts +0 -10
  4212. package/dist/serialization/resources/ticketing/types/TicketsRetrieveRequestShowEnumOrigins.js +0 -39
  4213. package/dist/serialization/resources/ticketing/types/UsersListRequestExpand.d.ts +0 -10
  4214. package/dist/serialization/resources/ticketing/types/UsersListRequestExpand.js +0 -31
  4215. package/dist/serialization/resources/ticketing/types/UsersRetrieveRequestExpand.d.ts +0 -10
  4216. package/dist/serialization/resources/ticketing/types/UsersRetrieveRequestExpand.js +0 -31
  4217. package/serialization/resources/accounting/types/AccountsListRequestRemoteFields.d.ts +0 -10
  4218. package/serialization/resources/accounting/types/AccountsListRequestRemoteFields.js +0 -31
  4219. package/serialization/resources/accounting/types/AccountsListRequestShowEnumOrigins.d.ts +0 -10
  4220. package/serialization/resources/accounting/types/AccountsListRequestShowEnumOrigins.js +0 -31
  4221. package/serialization/resources/accounting/types/AccountsRetrieveRequestRemoteFields.d.ts +0 -10
  4222. package/serialization/resources/accounting/types/AccountsRetrieveRequestRemoteFields.js +0 -31
  4223. package/serialization/resources/accounting/types/AccountsRetrieveRequestShowEnumOrigins.d.ts +0 -10
  4224. package/serialization/resources/accounting/types/AccountsRetrieveRequestShowEnumOrigins.js +0 -31
  4225. package/serialization/resources/accounting/types/CompanyInfoListRequestExpand.d.ts +0 -10
  4226. package/serialization/resources/accounting/types/CompanyInfoListRequestExpand.js +0 -31
  4227. package/serialization/resources/accounting/types/CompanyInfoRetrieveRequestExpand.d.ts +0 -10
  4228. package/serialization/resources/accounting/types/CompanyInfoRetrieveRequestExpand.js +0 -31
  4229. package/serialization/resources/accounting/types/ContactsListRequestExpand.d.ts +0 -10
  4230. package/serialization/resources/accounting/types/ContactsListRequestExpand.js +0 -39
  4231. package/serialization/resources/accounting/types/ContactsRetrieveRequestExpand.d.ts +0 -10
  4232. package/serialization/resources/accounting/types/ContactsRetrieveRequestExpand.js +0 -39
  4233. package/serialization/resources/accounting/types/CreditNotesListRequestExpand.d.ts +0 -10
  4234. package/serialization/resources/accounting/types/CreditNotesListRequestExpand.js +0 -159
  4235. package/serialization/resources/accounting/types/CreditNotesListRequestRemoteFields.d.ts +0 -10
  4236. package/serialization/resources/accounting/types/CreditNotesListRequestRemoteFields.js +0 -31
  4237. package/serialization/resources/accounting/types/CreditNotesListRequestShowEnumOrigins.d.ts +0 -10
  4238. package/serialization/resources/accounting/types/CreditNotesListRequestShowEnumOrigins.js +0 -31
  4239. package/serialization/resources/accounting/types/CreditNotesRetrieveRequestExpand.d.ts +0 -10
  4240. package/serialization/resources/accounting/types/CreditNotesRetrieveRequestExpand.js +0 -159
  4241. package/serialization/resources/accounting/types/CreditNotesRetrieveRequestRemoteFields.d.ts +0 -10
  4242. package/serialization/resources/accounting/types/CreditNotesRetrieveRequestRemoteFields.js +0 -31
  4243. package/serialization/resources/accounting/types/CreditNotesRetrieveRequestShowEnumOrigins.d.ts +0 -10
  4244. package/serialization/resources/accounting/types/CreditNotesRetrieveRequestShowEnumOrigins.js +0 -31
  4245. package/serialization/resources/accounting/types/ExpensesListRequestExpand.d.ts +0 -10
  4246. package/serialization/resources/accounting/types/ExpensesListRequestExpand.js +0 -63
  4247. package/serialization/resources/accounting/types/ExpensesRetrieveRequestExpand.d.ts +0 -10
  4248. package/serialization/resources/accounting/types/ExpensesRetrieveRequestExpand.js +0 -63
  4249. package/serialization/resources/accounting/types/InvoicesListRequestExpand.d.ts +0 -10
  4250. package/serialization/resources/accounting/types/InvoicesListRequestExpand.js +0 -287
  4251. package/serialization/resources/accounting/types/InvoicesListRequestType.d.ts +0 -10
  4252. package/serialization/resources/accounting/types/InvoicesListRequestType.js +0 -31
  4253. package/serialization/resources/accounting/types/InvoicesRetrieveRequestExpand.d.ts +0 -10
  4254. package/serialization/resources/accounting/types/InvoicesRetrieveRequestExpand.js +0 -287
  4255. package/serialization/resources/accounting/types/IssuesListRequestStatus.d.ts +0 -10
  4256. package/serialization/resources/accounting/types/IssuesListRequestStatus.js +0 -31
  4257. package/serialization/resources/accounting/types/ItemsListRequestExpand.d.ts +0 -10
  4258. package/serialization/resources/accounting/types/ItemsListRequestExpand.js +0 -39
  4259. package/serialization/resources/accounting/types/ItemsRetrieveRequestExpand.d.ts +0 -10
  4260. package/serialization/resources/accounting/types/ItemsRetrieveRequestExpand.js +0 -39
  4261. package/serialization/resources/accounting/types/JournalEntriesListRequestExpand.d.ts +0 -10
  4262. package/serialization/resources/accounting/types/JournalEntriesListRequestExpand.js +0 -95
  4263. package/serialization/resources/accounting/types/JournalEntriesRetrieveRequestExpand.d.ts +0 -10
  4264. package/serialization/resources/accounting/types/JournalEntriesRetrieveRequestExpand.js +0 -95
  4265. package/serialization/resources/accounting/types/LinkedAccountsListRequestCategory.d.ts +0 -10
  4266. package/serialization/resources/accounting/types/LinkedAccountsListRequestCategory.js +0 -31
  4267. package/serialization/resources/accounting/types/PaymentsListRequestExpand.d.ts +0 -10
  4268. package/serialization/resources/accounting/types/PaymentsListRequestExpand.js +0 -95
  4269. package/serialization/resources/accounting/types/PaymentsRetrieveRequestExpand.d.ts +0 -10
  4270. package/serialization/resources/accounting/types/PaymentsRetrieveRequestExpand.js +0 -95
  4271. package/serialization/resources/accounting/types/PurchaseOrdersListRequestExpand.d.ts +0 -10
  4272. package/serialization/resources/accounting/types/PurchaseOrdersListRequestExpand.js +0 -95
  4273. package/serialization/resources/accounting/types/PurchaseOrdersRetrieveRequestExpand.d.ts +0 -10
  4274. package/serialization/resources/accounting/types/PurchaseOrdersRetrieveRequestExpand.js +0 -95
  4275. package/serialization/resources/accounting/types/TransactionsListRequestExpand.d.ts +0 -10
  4276. package/serialization/resources/accounting/types/TransactionsListRequestExpand.js +0 -63
  4277. package/serialization/resources/accounting/types/TransactionsRetrieveRequestExpand.d.ts +0 -10
  4278. package/serialization/resources/accounting/types/TransactionsRetrieveRequestExpand.js +0 -63
  4279. package/serialization/resources/accounting/types/VendorCreditsListRequestExpand.d.ts +0 -10
  4280. package/serialization/resources/accounting/types/VendorCreditsListRequestExpand.js +0 -63
  4281. package/serialization/resources/accounting/types/VendorCreditsRetrieveRequestExpand.d.ts +0 -10
  4282. package/serialization/resources/accounting/types/VendorCreditsRetrieveRequestExpand.js +0 -63
  4283. package/serialization/resources/ats/types/ActivitiesListRequestRemoteFields.d.ts +0 -10
  4284. package/serialization/resources/ats/types/ActivitiesListRequestRemoteFields.js +0 -31
  4285. package/serialization/resources/ats/types/ActivitiesListRequestShowEnumOrigins.d.ts +0 -10
  4286. package/serialization/resources/ats/types/ActivitiesListRequestShowEnumOrigins.js +0 -31
  4287. package/serialization/resources/ats/types/ActivitiesRetrieveRequestRemoteFields.d.ts +0 -10
  4288. package/serialization/resources/ats/types/ActivitiesRetrieveRequestRemoteFields.js +0 -31
  4289. package/serialization/resources/ats/types/ActivitiesRetrieveRequestShowEnumOrigins.d.ts +0 -10
  4290. package/serialization/resources/ats/types/ActivitiesRetrieveRequestShowEnumOrigins.js +0 -31
  4291. package/serialization/resources/ats/types/ApplicationsListRequestExpand.d.ts +0 -10
  4292. package/serialization/resources/ats/types/ApplicationsListRequestExpand.js +0 -63
  4293. package/serialization/resources/ats/types/ApplicationsRetrieveRequestExpand.d.ts +0 -10
  4294. package/serialization/resources/ats/types/ApplicationsRetrieveRequestExpand.js +0 -63
  4295. package/serialization/resources/ats/types/CandidatesListRequestExpand.d.ts +0 -10
  4296. package/serialization/resources/ats/types/CandidatesListRequestExpand.js +0 -31
  4297. package/serialization/resources/ats/types/CandidatesRetrieveRequestExpand.d.ts +0 -10
  4298. package/serialization/resources/ats/types/CandidatesRetrieveRequestExpand.js +0 -31
  4299. package/serialization/resources/ats/types/EeocsListRequestRemoteFields.d.ts +0 -10
  4300. package/serialization/resources/ats/types/EeocsListRequestRemoteFields.js +0 -47
  4301. package/serialization/resources/ats/types/EeocsListRequestShowEnumOrigins.d.ts +0 -10
  4302. package/serialization/resources/ats/types/EeocsListRequestShowEnumOrigins.js +0 -47
  4303. package/serialization/resources/ats/types/EeocsRetrieveRequestRemoteFields.d.ts +0 -10
  4304. package/serialization/resources/ats/types/EeocsRetrieveRequestRemoteFields.js +0 -47
  4305. package/serialization/resources/ats/types/EeocsRetrieveRequestShowEnumOrigins.d.ts +0 -10
  4306. package/serialization/resources/ats/types/EeocsRetrieveRequestShowEnumOrigins.js +0 -47
  4307. package/serialization/resources/ats/types/InterviewsListRequestExpand.d.ts +0 -10
  4308. package/serialization/resources/ats/types/InterviewsListRequestExpand.js +0 -47
  4309. package/serialization/resources/ats/types/InterviewsRetrieveRequestExpand.d.ts +0 -10
  4310. package/serialization/resources/ats/types/InterviewsRetrieveRequestExpand.js +0 -47
  4311. package/serialization/resources/ats/types/IssuesListRequestStatus.d.ts +0 -10
  4312. package/serialization/resources/ats/types/IssuesListRequestStatus.js +0 -31
  4313. package/serialization/resources/ats/types/JobsListRequestExpand.d.ts +0 -10
  4314. package/serialization/resources/ats/types/JobsListRequestExpand.js +0 -47
  4315. package/serialization/resources/ats/types/JobsListRequestStatus.d.ts +0 -10
  4316. package/serialization/resources/ats/types/JobsListRequestStatus.js +0 -31
  4317. package/serialization/resources/ats/types/JobsRetrieveRequestExpand.d.ts +0 -10
  4318. package/serialization/resources/ats/types/JobsRetrieveRequestExpand.js +0 -47
  4319. package/serialization/resources/ats/types/JobsScreeningQuestionsListRequestExpand.d.ts +0 -10
  4320. package/serialization/resources/ats/types/JobsScreeningQuestionsListRequestExpand.js +0 -31
  4321. package/serialization/resources/ats/types/LinkedAccountsListRequestCategory.d.ts +0 -10
  4322. package/serialization/resources/ats/types/LinkedAccountsListRequestCategory.js +0 -31
  4323. package/serialization/resources/ats/types/OffersListRequestExpand.d.ts +0 -10
  4324. package/serialization/resources/ats/types/OffersListRequestExpand.js +0 -31
  4325. package/serialization/resources/ats/types/OffersRetrieveRequestExpand.d.ts +0 -10
  4326. package/serialization/resources/ats/types/OffersRetrieveRequestExpand.js +0 -31
  4327. package/serialization/resources/ats/types/ScorecardsListRequestExpand.d.ts +0 -10
  4328. package/serialization/resources/ats/types/ScorecardsListRequestExpand.js +0 -39
  4329. package/serialization/resources/ats/types/ScorecardsRetrieveRequestExpand.d.ts +0 -10
  4330. package/serialization/resources/ats/types/ScorecardsRetrieveRequestExpand.js +0 -39
  4331. package/serialization/resources/crm/types/ContactsListRequestExpand.d.ts +0 -10
  4332. package/serialization/resources/crm/types/ContactsListRequestExpand.js +0 -31
  4333. package/serialization/resources/crm/types/ContactsRetrieveRequestExpand.d.ts +0 -10
  4334. package/serialization/resources/crm/types/ContactsRetrieveRequestExpand.js +0 -31
  4335. package/serialization/resources/crm/types/EngagementsListRequestExpand.d.ts +0 -10
  4336. package/serialization/resources/crm/types/EngagementsListRequestExpand.js +0 -47
  4337. package/serialization/resources/crm/types/EngagementsRetrieveRequestExpand.d.ts +0 -10
  4338. package/serialization/resources/crm/types/EngagementsRetrieveRequestExpand.js +0 -47
  4339. package/serialization/resources/crm/types/IssuesListRequestStatus.d.ts +0 -10
  4340. package/serialization/resources/crm/types/IssuesListRequestStatus.js +0 -31
  4341. package/serialization/resources/crm/types/LeadsListRequestExpand.d.ts +0 -10
  4342. package/serialization/resources/crm/types/LeadsListRequestExpand.js +0 -39
  4343. package/serialization/resources/crm/types/LeadsRetrieveRequestExpand.d.ts +0 -10
  4344. package/serialization/resources/crm/types/LeadsRetrieveRequestExpand.js +0 -39
  4345. package/serialization/resources/crm/types/LinkedAccountsListRequestCategory.d.ts +0 -10
  4346. package/serialization/resources/crm/types/LinkedAccountsListRequestCategory.js +0 -31
  4347. package/serialization/resources/crm/types/NotesListRequestExpand.d.ts +0 -10
  4348. package/serialization/resources/crm/types/NotesListRequestExpand.js +0 -47
  4349. package/serialization/resources/crm/types/NotesRetrieveRequestExpand.d.ts +0 -10
  4350. package/serialization/resources/crm/types/NotesRetrieveRequestExpand.js +0 -47
  4351. package/serialization/resources/crm/types/OpportunitiesListRequestExpand.d.ts +0 -10
  4352. package/serialization/resources/crm/types/OpportunitiesListRequestExpand.js +0 -39
  4353. package/serialization/resources/crm/types/OpportunitiesListRequestStatus.d.ts +0 -10
  4354. package/serialization/resources/crm/types/OpportunitiesListRequestStatus.js +0 -31
  4355. package/serialization/resources/crm/types/OpportunitiesRetrieveRequestExpand.d.ts +0 -10
  4356. package/serialization/resources/crm/types/OpportunitiesRetrieveRequestExpand.js +0 -39
  4357. package/serialization/resources/crm/types/TasksListRequestExpand.d.ts +0 -10
  4358. package/serialization/resources/crm/types/TasksListRequestExpand.js +0 -39
  4359. package/serialization/resources/crm/types/TasksRetrieveRequestExpand.d.ts +0 -10
  4360. package/serialization/resources/crm/types/TasksRetrieveRequestExpand.js +0 -39
  4361. package/serialization/resources/filestorage/types/FilesListRequestExpand.d.ts +0 -10
  4362. package/serialization/resources/filestorage/types/FilesListRequestExpand.js +0 -39
  4363. package/serialization/resources/filestorage/types/FilesRetrieveRequestExpand.d.ts +0 -10
  4364. package/serialization/resources/filestorage/types/FilesRetrieveRequestExpand.js +0 -39
  4365. package/serialization/resources/filestorage/types/FoldersListRequestExpand.d.ts +0 -10
  4366. package/serialization/resources/filestorage/types/FoldersListRequestExpand.js +0 -39
  4367. package/serialization/resources/filestorage/types/FoldersRetrieveRequestExpand.d.ts +0 -10
  4368. package/serialization/resources/filestorage/types/FoldersRetrieveRequestExpand.js +0 -39
  4369. package/serialization/resources/filestorage/types/IssuesListRequestStatus.d.ts +0 -10
  4370. package/serialization/resources/filestorage/types/IssuesListRequestStatus.js +0 -31
  4371. package/serialization/resources/filestorage/types/LinkedAccountsListRequestCategory.d.ts +0 -10
  4372. package/serialization/resources/filestorage/types/LinkedAccountsListRequestCategory.js +0 -31
  4373. package/serialization/resources/hris/types/BankInfoListRequestAccountType.d.ts +0 -10
  4374. package/serialization/resources/hris/types/BankInfoListRequestAccountType.js +0 -31
  4375. package/serialization/resources/hris/types/BankInfoListRequestOrderBy.d.ts +0 -10
  4376. package/serialization/resources/hris/types/BankInfoListRequestOrderBy.js +0 -31
  4377. package/serialization/resources/hris/types/EmployeePayrollRunsListRequestExpand.d.ts +0 -10
  4378. package/serialization/resources/hris/types/EmployeePayrollRunsListRequestExpand.js +0 -31
  4379. package/serialization/resources/hris/types/EmployeePayrollRunsRetrieveRequestExpand.d.ts +0 -10
  4380. package/serialization/resources/hris/types/EmployeePayrollRunsRetrieveRequestExpand.js +0 -31
  4381. package/serialization/resources/hris/types/EmployeesListRequestEmploymentStatus.d.ts +0 -10
  4382. package/serialization/resources/hris/types/EmployeesListRequestEmploymentStatus.js +0 -31
  4383. package/serialization/resources/hris/types/EmployeesListRequestExpand.d.ts +0 -10
  4384. package/serialization/resources/hris/types/EmployeesListRequestExpand.js +0 -287
  4385. package/serialization/resources/hris/types/EmployeesListRequestRemoteFields.d.ts +0 -10
  4386. package/serialization/resources/hris/types/EmployeesListRequestRemoteFields.js +0 -47
  4387. package/serialization/resources/hris/types/EmployeesListRequestShowEnumOrigins.d.ts +0 -10
  4388. package/serialization/resources/hris/types/EmployeesListRequestShowEnumOrigins.js +0 -47
  4389. package/serialization/resources/hris/types/EmployeesRetrieveRequestExpand.d.ts +0 -10
  4390. package/serialization/resources/hris/types/EmployeesRetrieveRequestExpand.js +0 -287
  4391. package/serialization/resources/hris/types/EmployeesRetrieveRequestRemoteFields.d.ts +0 -10
  4392. package/serialization/resources/hris/types/EmployeesRetrieveRequestRemoteFields.js +0 -47
  4393. package/serialization/resources/hris/types/EmployeesRetrieveRequestShowEnumOrigins.d.ts +0 -10
  4394. package/serialization/resources/hris/types/EmployeesRetrieveRequestShowEnumOrigins.js +0 -47
  4395. package/serialization/resources/hris/types/EmploymentsListRequestExpand.d.ts +0 -10
  4396. package/serialization/resources/hris/types/EmploymentsListRequestExpand.js +0 -31
  4397. package/serialization/resources/hris/types/EmploymentsListRequestOrderBy.d.ts +0 -10
  4398. package/serialization/resources/hris/types/EmploymentsListRequestOrderBy.js +0 -31
  4399. package/serialization/resources/hris/types/EmploymentsListRequestRemoteFields.d.ts +0 -10
  4400. package/serialization/resources/hris/types/EmploymentsListRequestRemoteFields.js +0 -47
  4401. package/serialization/resources/hris/types/EmploymentsListRequestShowEnumOrigins.d.ts +0 -10
  4402. package/serialization/resources/hris/types/EmploymentsListRequestShowEnumOrigins.js +0 -47
  4403. package/serialization/resources/hris/types/EmploymentsRetrieveRequestExpand.d.ts +0 -10
  4404. package/serialization/resources/hris/types/EmploymentsRetrieveRequestExpand.js +0 -31
  4405. package/serialization/resources/hris/types/EmploymentsRetrieveRequestRemoteFields.d.ts +0 -10
  4406. package/serialization/resources/hris/types/EmploymentsRetrieveRequestRemoteFields.js +0 -47
  4407. package/serialization/resources/hris/types/EmploymentsRetrieveRequestShowEnumOrigins.d.ts +0 -10
  4408. package/serialization/resources/hris/types/EmploymentsRetrieveRequestShowEnumOrigins.js +0 -47
  4409. package/serialization/resources/hris/types/IgnoreCommonModelRequestReason.d.ts +0 -10
  4410. package/serialization/resources/hris/types/IgnoreCommonModelRequestReason.js +0 -43
  4411. package/serialization/resources/hris/types/IssuesListRequestStatus.d.ts +0 -10
  4412. package/serialization/resources/hris/types/IssuesListRequestStatus.js +0 -31
  4413. package/serialization/resources/hris/types/LinkedAccountsListRequestCategory.d.ts +0 -10
  4414. package/serialization/resources/hris/types/LinkedAccountsListRequestCategory.js +0 -31
  4415. package/serialization/resources/hris/types/LocationsListRequestLocationType.d.ts +0 -10
  4416. package/serialization/resources/hris/types/LocationsListRequestLocationType.js +0 -31
  4417. package/serialization/resources/hris/types/PayrollRunsListRequestRemoteFields.d.ts +0 -10
  4418. package/serialization/resources/hris/types/PayrollRunsListRequestRemoteFields.js +0 -31
  4419. package/serialization/resources/hris/types/PayrollRunsListRequestRunType.d.ts +0 -10
  4420. package/serialization/resources/hris/types/PayrollRunsListRequestRunType.js +0 -31
  4421. package/serialization/resources/hris/types/PayrollRunsListRequestShowEnumOrigins.d.ts +0 -10
  4422. package/serialization/resources/hris/types/PayrollRunsListRequestShowEnumOrigins.js +0 -31
  4423. package/serialization/resources/hris/types/PayrollRunsRetrieveRequestRemoteFields.d.ts +0 -10
  4424. package/serialization/resources/hris/types/PayrollRunsRetrieveRequestRemoteFields.js +0 -31
  4425. package/serialization/resources/hris/types/PayrollRunsRetrieveRequestShowEnumOrigins.d.ts +0 -10
  4426. package/serialization/resources/hris/types/PayrollRunsRetrieveRequestShowEnumOrigins.js +0 -31
  4427. package/serialization/resources/hris/types/TimeOffBalancesListRequestPolicyType.d.ts +0 -10
  4428. package/serialization/resources/hris/types/TimeOffBalancesListRequestPolicyType.js +0 -31
  4429. package/serialization/resources/hris/types/TimeOffListRequestExpand.d.ts +0 -10
  4430. package/serialization/resources/hris/types/TimeOffListRequestExpand.js +0 -31
  4431. package/serialization/resources/hris/types/TimeOffListRequestRemoteFields.d.ts +0 -10
  4432. package/serialization/resources/hris/types/TimeOffListRequestRemoteFields.js +0 -39
  4433. package/serialization/resources/hris/types/TimeOffListRequestRequestType.d.ts +0 -10
  4434. package/serialization/resources/hris/types/TimeOffListRequestRequestType.js +0 -31
  4435. package/serialization/resources/hris/types/TimeOffListRequestShowEnumOrigins.d.ts +0 -10
  4436. package/serialization/resources/hris/types/TimeOffListRequestShowEnumOrigins.js +0 -39
  4437. package/serialization/resources/hris/types/TimeOffListRequestStatus.d.ts +0 -10
  4438. package/serialization/resources/hris/types/TimeOffListRequestStatus.js +0 -31
  4439. package/serialization/resources/hris/types/TimeOffRetrieveRequestExpand.d.ts +0 -10
  4440. package/serialization/resources/hris/types/TimeOffRetrieveRequestExpand.js +0 -31
  4441. package/serialization/resources/hris/types/TimeOffRetrieveRequestRemoteFields.d.ts +0 -10
  4442. package/serialization/resources/hris/types/TimeOffRetrieveRequestRemoteFields.js +0 -39
  4443. package/serialization/resources/hris/types/TimeOffRetrieveRequestShowEnumOrigins.d.ts +0 -10
  4444. package/serialization/resources/hris/types/TimeOffRetrieveRequestShowEnumOrigins.js +0 -39
  4445. package/serialization/resources/hris/types/TimesheetEntriesListRequestOrderBy.d.ts +0 -10
  4446. package/serialization/resources/hris/types/TimesheetEntriesListRequestOrderBy.js +0 -31
  4447. package/serialization/resources/ticketing/types/CollectionsListRequestCollectionType.d.ts +0 -10
  4448. package/serialization/resources/ticketing/types/CollectionsListRequestCollectionType.js +0 -31
  4449. package/serialization/resources/ticketing/types/CollectionsUsersListRequestExpand.d.ts +0 -10
  4450. package/serialization/resources/ticketing/types/CollectionsUsersListRequestExpand.js +0 -31
  4451. package/serialization/resources/ticketing/types/CommentsListRequestExpand.d.ts +0 -10
  4452. package/serialization/resources/ticketing/types/CommentsListRequestExpand.js +0 -39
  4453. package/serialization/resources/ticketing/types/CommentsRetrieveRequestExpand.d.ts +0 -10
  4454. package/serialization/resources/ticketing/types/CommentsRetrieveRequestExpand.js +0 -39
  4455. package/serialization/resources/ticketing/types/IssuesListRequestStatus.d.ts +0 -10
  4456. package/serialization/resources/ticketing/types/IssuesListRequestStatus.js +0 -31
  4457. package/serialization/resources/ticketing/types/LinkedAccountsListRequestCategory.d.ts +0 -10
  4458. package/serialization/resources/ticketing/types/LinkedAccountsListRequestCategory.js +0 -31
  4459. package/serialization/resources/ticketing/types/ProjectsUsersListRequestExpand.d.ts +0 -10
  4460. package/serialization/resources/ticketing/types/ProjectsUsersListRequestExpand.js +0 -31
  4461. package/serialization/resources/ticketing/types/TicketsCollaboratorsListRequestExpand.d.ts +0 -10
  4462. package/serialization/resources/ticketing/types/TicketsCollaboratorsListRequestExpand.js +0 -31
  4463. package/serialization/resources/ticketing/types/TicketsListRequestExpand.d.ts +0 -10
  4464. package/serialization/resources/ticketing/types/TicketsListRequestExpand.js +0 -159
  4465. package/serialization/resources/ticketing/types/TicketsListRequestPriority.d.ts +0 -10
  4466. package/serialization/resources/ticketing/types/TicketsListRequestPriority.js +0 -31
  4467. package/serialization/resources/ticketing/types/TicketsListRequestRemoteFields.d.ts +0 -10
  4468. package/serialization/resources/ticketing/types/TicketsListRequestRemoteFields.js +0 -39
  4469. package/serialization/resources/ticketing/types/TicketsListRequestShowEnumOrigins.d.ts +0 -10
  4470. package/serialization/resources/ticketing/types/TicketsListRequestShowEnumOrigins.js +0 -39
  4471. package/serialization/resources/ticketing/types/TicketsListRequestStatus.d.ts +0 -10
  4472. package/serialization/resources/ticketing/types/TicketsListRequestStatus.js +0 -31
  4473. package/serialization/resources/ticketing/types/TicketsRetrieveRequestExpand.d.ts +0 -10
  4474. package/serialization/resources/ticketing/types/TicketsRetrieveRequestExpand.js +0 -159
  4475. package/serialization/resources/ticketing/types/TicketsRetrieveRequestRemoteFields.d.ts +0 -10
  4476. package/serialization/resources/ticketing/types/TicketsRetrieveRequestRemoteFields.js +0 -39
  4477. package/serialization/resources/ticketing/types/TicketsRetrieveRequestShowEnumOrigins.d.ts +0 -10
  4478. package/serialization/resources/ticketing/types/TicketsRetrieveRequestShowEnumOrigins.js +0 -39
  4479. package/serialization/resources/ticketing/types/UsersListRequestExpand.d.ts +0 -10
  4480. package/serialization/resources/ticketing/types/UsersListRequestExpand.js +0 -31
  4481. package/serialization/resources/ticketing/types/UsersRetrieveRequestExpand.d.ts +0 -10
  4482. package/serialization/resources/ticketing/types/UsersRetrieveRequestExpand.js +0 -31
  4483. /package/api/resources/accounting/{types → resources/accounts/types}/AccountsListRequestRemoteFields.d.ts +0 -0
  4484. /package/api/resources/accounting/{types → resources/accounts/types}/AccountsListRequestRemoteFields.js +0 -0
  4485. /package/api/resources/accounting/{types → resources/accounts/types}/AccountsListRequestShowEnumOrigins.d.ts +0 -0
  4486. /package/api/resources/accounting/{types → resources/accounts/types}/AccountsListRequestShowEnumOrigins.js +0 -0
  4487. /package/api/resources/accounting/{types → resources/accounts/types}/AccountsRetrieveRequestRemoteFields.d.ts +0 -0
  4488. /package/api/resources/accounting/{types → resources/accounts/types}/AccountsRetrieveRequestRemoteFields.js +0 -0
  4489. /package/api/resources/accounting/{types → resources/accounts/types}/AccountsRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4490. /package/api/resources/accounting/{types → resources/accounts/types}/AccountsRetrieveRequestShowEnumOrigins.js +0 -0
  4491. /package/api/resources/accounting/{types → resources/companyInfo/types}/CompanyInfoListRequestExpand.d.ts +0 -0
  4492. /package/api/resources/accounting/{types → resources/companyInfo/types}/CompanyInfoListRequestExpand.js +0 -0
  4493. /package/api/resources/accounting/{types → resources/companyInfo/types}/CompanyInfoRetrieveRequestExpand.d.ts +0 -0
  4494. /package/api/resources/accounting/{types → resources/companyInfo/types}/CompanyInfoRetrieveRequestExpand.js +0 -0
  4495. /package/api/resources/accounting/{types → resources/contacts/types}/ContactsListRequestExpand.d.ts +0 -0
  4496. /package/api/resources/accounting/{types → resources/contacts/types}/ContactsListRequestExpand.js +0 -0
  4497. /package/api/resources/accounting/{types → resources/contacts/types}/ContactsRetrieveRequestExpand.d.ts +0 -0
  4498. /package/api/resources/accounting/{types → resources/contacts/types}/ContactsRetrieveRequestExpand.js +0 -0
  4499. /package/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesListRequestExpand.d.ts +0 -0
  4500. /package/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesListRequestExpand.js +0 -0
  4501. /package/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesListRequestRemoteFields.d.ts +0 -0
  4502. /package/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesListRequestRemoteFields.js +0 -0
  4503. /package/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesListRequestShowEnumOrigins.d.ts +0 -0
  4504. /package/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesListRequestShowEnumOrigins.js +0 -0
  4505. /package/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesRetrieveRequestExpand.d.ts +0 -0
  4506. /package/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesRetrieveRequestExpand.js +0 -0
  4507. /package/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesRetrieveRequestRemoteFields.d.ts +0 -0
  4508. /package/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesRetrieveRequestRemoteFields.js +0 -0
  4509. /package/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4510. /package/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesRetrieveRequestShowEnumOrigins.js +0 -0
  4511. /package/api/resources/accounting/{types → resources/expenses/types}/ExpensesListRequestExpand.d.ts +0 -0
  4512. /package/api/resources/accounting/{types → resources/expenses/types}/ExpensesListRequestExpand.js +0 -0
  4513. /package/api/resources/accounting/{types → resources/expenses/types}/ExpensesRetrieveRequestExpand.d.ts +0 -0
  4514. /package/api/resources/accounting/{types → resources/expenses/types}/ExpensesRetrieveRequestExpand.js +0 -0
  4515. /package/api/resources/accounting/{types → resources/invoices/types}/InvoicesListRequestExpand.d.ts +0 -0
  4516. /package/api/resources/accounting/{types → resources/invoices/types}/InvoicesListRequestExpand.js +0 -0
  4517. /package/api/resources/accounting/{types → resources/invoices/types}/InvoicesListRequestType.d.ts +0 -0
  4518. /package/api/resources/accounting/{types → resources/invoices/types}/InvoicesListRequestType.js +0 -0
  4519. /package/api/resources/accounting/{types → resources/invoices/types}/InvoicesRetrieveRequestExpand.d.ts +0 -0
  4520. /package/api/resources/accounting/{types → resources/invoices/types}/InvoicesRetrieveRequestExpand.js +0 -0
  4521. /package/api/resources/accounting/{types → resources/issues/types}/IssuesListRequestStatus.d.ts +0 -0
  4522. /package/api/resources/accounting/{types → resources/issues/types}/IssuesListRequestStatus.js +0 -0
  4523. /package/api/resources/accounting/{types → resources/items/types}/ItemsListRequestExpand.d.ts +0 -0
  4524. /package/api/resources/accounting/{types → resources/items/types}/ItemsListRequestExpand.js +0 -0
  4525. /package/api/resources/accounting/{types → resources/items/types}/ItemsRetrieveRequestExpand.d.ts +0 -0
  4526. /package/api/resources/accounting/{types → resources/items/types}/ItemsRetrieveRequestExpand.js +0 -0
  4527. /package/api/resources/accounting/{types → resources/journalEntries/types}/JournalEntriesListRequestExpand.d.ts +0 -0
  4528. /package/api/resources/accounting/{types → resources/journalEntries/types}/JournalEntriesListRequestExpand.js +0 -0
  4529. /package/api/resources/accounting/{types → resources/journalEntries/types}/JournalEntriesRetrieveRequestExpand.d.ts +0 -0
  4530. /package/api/resources/accounting/{types → resources/journalEntries/types}/JournalEntriesRetrieveRequestExpand.js +0 -0
  4531. /package/api/resources/accounting/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.d.ts +0 -0
  4532. /package/api/resources/accounting/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.js +0 -0
  4533. /package/api/resources/accounting/{types → resources/payments/types}/PaymentsListRequestExpand.d.ts +0 -0
  4534. /package/api/resources/accounting/{types → resources/payments/types}/PaymentsListRequestExpand.js +0 -0
  4535. /package/api/resources/accounting/{types → resources/payments/types}/PaymentsRetrieveRequestExpand.d.ts +0 -0
  4536. /package/api/resources/accounting/{types → resources/payments/types}/PaymentsRetrieveRequestExpand.js +0 -0
  4537. /package/api/resources/accounting/{types → resources/purchaseOrders/types}/PurchaseOrdersListRequestExpand.d.ts +0 -0
  4538. /package/api/resources/accounting/{types → resources/purchaseOrders/types}/PurchaseOrdersListRequestExpand.js +0 -0
  4539. /package/api/resources/accounting/{types → resources/purchaseOrders/types}/PurchaseOrdersRetrieveRequestExpand.d.ts +0 -0
  4540. /package/api/resources/accounting/{types → resources/purchaseOrders/types}/PurchaseOrdersRetrieveRequestExpand.js +0 -0
  4541. /package/api/resources/accounting/{types → resources/transactions/types}/TransactionsListRequestExpand.d.ts +0 -0
  4542. /package/api/resources/accounting/{types → resources/transactions/types}/TransactionsListRequestExpand.js +0 -0
  4543. /package/api/resources/accounting/{types → resources/transactions/types}/TransactionsRetrieveRequestExpand.d.ts +0 -0
  4544. /package/api/resources/accounting/{types → resources/transactions/types}/TransactionsRetrieveRequestExpand.js +0 -0
  4545. /package/api/resources/accounting/{types → resources/vendorCredits/types}/VendorCreditsListRequestExpand.d.ts +0 -0
  4546. /package/api/resources/accounting/{types → resources/vendorCredits/types}/VendorCreditsListRequestExpand.js +0 -0
  4547. /package/api/resources/accounting/{types → resources/vendorCredits/types}/VendorCreditsRetrieveRequestExpand.d.ts +0 -0
  4548. /package/api/resources/accounting/{types → resources/vendorCredits/types}/VendorCreditsRetrieveRequestExpand.js +0 -0
  4549. /package/api/resources/ats/{types → resources/activities/types}/ActivitiesListRequestRemoteFields.d.ts +0 -0
  4550. /package/api/resources/ats/{types → resources/activities/types}/ActivitiesListRequestRemoteFields.js +0 -0
  4551. /package/api/resources/ats/{types → resources/activities/types}/ActivitiesListRequestShowEnumOrigins.d.ts +0 -0
  4552. /package/api/resources/ats/{types → resources/activities/types}/ActivitiesListRequestShowEnumOrigins.js +0 -0
  4553. /package/api/resources/ats/{types → resources/activities/types}/ActivitiesRetrieveRequestRemoteFields.d.ts +0 -0
  4554. /package/api/resources/ats/{types → resources/activities/types}/ActivitiesRetrieveRequestRemoteFields.js +0 -0
  4555. /package/api/resources/ats/{types → resources/activities/types}/ActivitiesRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4556. /package/api/resources/ats/{types → resources/activities/types}/ActivitiesRetrieveRequestShowEnumOrigins.js +0 -0
  4557. /package/api/resources/ats/{types → resources/applications/types}/ApplicationsListRequestExpand.d.ts +0 -0
  4558. /package/api/resources/ats/{types → resources/applications/types}/ApplicationsListRequestExpand.js +0 -0
  4559. /package/api/resources/ats/{types → resources/applications/types}/ApplicationsRetrieveRequestExpand.d.ts +0 -0
  4560. /package/api/resources/ats/{types → resources/applications/types}/ApplicationsRetrieveRequestExpand.js +0 -0
  4561. /package/api/resources/ats/{types → resources/candidates/types}/CandidatesListRequestExpand.d.ts +0 -0
  4562. /package/api/resources/ats/{types → resources/candidates/types}/CandidatesListRequestExpand.js +0 -0
  4563. /package/api/resources/ats/{types → resources/candidates/types}/CandidatesRetrieveRequestExpand.d.ts +0 -0
  4564. /package/api/resources/ats/{types → resources/candidates/types}/CandidatesRetrieveRequestExpand.js +0 -0
  4565. /package/api/resources/ats/{types → resources/eeocs/types}/EeocsListRequestRemoteFields.d.ts +0 -0
  4566. /package/api/resources/ats/{types → resources/eeocs/types}/EeocsListRequestRemoteFields.js +0 -0
  4567. /package/api/resources/ats/{types → resources/eeocs/types}/EeocsListRequestShowEnumOrigins.d.ts +0 -0
  4568. /package/api/resources/ats/{types → resources/eeocs/types}/EeocsListRequestShowEnumOrigins.js +0 -0
  4569. /package/api/resources/ats/{types → resources/eeocs/types}/EeocsRetrieveRequestRemoteFields.d.ts +0 -0
  4570. /package/api/resources/ats/{types → resources/eeocs/types}/EeocsRetrieveRequestRemoteFields.js +0 -0
  4571. /package/api/resources/ats/{types → resources/eeocs/types}/EeocsRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4572. /package/api/resources/ats/{types → resources/eeocs/types}/EeocsRetrieveRequestShowEnumOrigins.js +0 -0
  4573. /package/api/resources/ats/{types → resources/interviews/types}/InterviewsListRequestExpand.d.ts +0 -0
  4574. /package/api/resources/ats/{types → resources/interviews/types}/InterviewsListRequestExpand.js +0 -0
  4575. /package/api/resources/ats/{types → resources/interviews/types}/InterviewsRetrieveRequestExpand.d.ts +0 -0
  4576. /package/api/resources/ats/{types → resources/interviews/types}/InterviewsRetrieveRequestExpand.js +0 -0
  4577. /package/api/resources/ats/{types → resources/issues/types}/IssuesListRequestStatus.d.ts +0 -0
  4578. /package/api/resources/ats/{types → resources/issues/types}/IssuesListRequestStatus.js +0 -0
  4579. /package/api/resources/ats/{types → resources/jobs/types}/JobsListRequestExpand.d.ts +0 -0
  4580. /package/api/resources/ats/{types → resources/jobs/types}/JobsListRequestExpand.js +0 -0
  4581. /package/api/resources/ats/{types → resources/jobs/types}/JobsListRequestStatus.d.ts +0 -0
  4582. /package/api/resources/ats/{types → resources/jobs/types}/JobsListRequestStatus.js +0 -0
  4583. /package/api/resources/ats/{types → resources/jobs/types}/JobsRetrieveRequestExpand.d.ts +0 -0
  4584. /package/api/resources/ats/{types → resources/jobs/types}/JobsRetrieveRequestExpand.js +0 -0
  4585. /package/api/resources/ats/{types → resources/jobs/types}/JobsScreeningQuestionsListRequestExpand.d.ts +0 -0
  4586. /package/api/resources/ats/{types → resources/jobs/types}/JobsScreeningQuestionsListRequestExpand.js +0 -0
  4587. /package/api/resources/ats/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.d.ts +0 -0
  4588. /package/api/resources/ats/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.js +0 -0
  4589. /package/api/resources/ats/{types → resources/offers/types}/OffersListRequestExpand.d.ts +0 -0
  4590. /package/api/resources/ats/{types → resources/offers/types}/OffersListRequestExpand.js +0 -0
  4591. /package/api/resources/ats/{types → resources/offers/types}/OffersRetrieveRequestExpand.d.ts +0 -0
  4592. /package/api/resources/ats/{types → resources/offers/types}/OffersRetrieveRequestExpand.js +0 -0
  4593. /package/api/resources/ats/{types → resources/scorecards/types}/ScorecardsListRequestExpand.d.ts +0 -0
  4594. /package/api/resources/ats/{types → resources/scorecards/types}/ScorecardsListRequestExpand.js +0 -0
  4595. /package/api/resources/ats/{types → resources/scorecards/types}/ScorecardsRetrieveRequestExpand.d.ts +0 -0
  4596. /package/api/resources/ats/{types → resources/scorecards/types}/ScorecardsRetrieveRequestExpand.js +0 -0
  4597. /package/api/resources/crm/{types → resources/contacts/types}/ContactsListRequestExpand.d.ts +0 -0
  4598. /package/api/resources/crm/{types → resources/contacts/types}/ContactsListRequestExpand.js +0 -0
  4599. /package/api/resources/crm/{types → resources/contacts/types}/ContactsRetrieveRequestExpand.d.ts +0 -0
  4600. /package/api/resources/crm/{types → resources/contacts/types}/ContactsRetrieveRequestExpand.js +0 -0
  4601. /package/api/resources/crm/{types → resources/engagements/types}/EngagementsListRequestExpand.d.ts +0 -0
  4602. /package/api/resources/crm/{types → resources/engagements/types}/EngagementsListRequestExpand.js +0 -0
  4603. /package/api/resources/crm/{types → resources/engagements/types}/EngagementsRetrieveRequestExpand.d.ts +0 -0
  4604. /package/api/resources/crm/{types → resources/engagements/types}/EngagementsRetrieveRequestExpand.js +0 -0
  4605. /package/api/resources/crm/{types → resources/issues/types}/IssuesListRequestStatus.d.ts +0 -0
  4606. /package/api/resources/crm/{types → resources/issues/types}/IssuesListRequestStatus.js +0 -0
  4607. /package/api/resources/crm/{types → resources/leads/types}/LeadsListRequestExpand.d.ts +0 -0
  4608. /package/api/resources/crm/{types → resources/leads/types}/LeadsListRequestExpand.js +0 -0
  4609. /package/api/resources/crm/{types → resources/leads/types}/LeadsRetrieveRequestExpand.d.ts +0 -0
  4610. /package/api/resources/crm/{types → resources/leads/types}/LeadsRetrieveRequestExpand.js +0 -0
  4611. /package/api/resources/crm/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.d.ts +0 -0
  4612. /package/api/resources/crm/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.js +0 -0
  4613. /package/api/resources/crm/{types → resources/notes/types}/NotesListRequestExpand.d.ts +0 -0
  4614. /package/api/resources/crm/{types → resources/notes/types}/NotesListRequestExpand.js +0 -0
  4615. /package/api/resources/crm/{types → resources/notes/types}/NotesRetrieveRequestExpand.d.ts +0 -0
  4616. /package/api/resources/crm/{types → resources/notes/types}/NotesRetrieveRequestExpand.js +0 -0
  4617. /package/api/resources/crm/{types → resources/opportunities/types}/OpportunitiesListRequestExpand.d.ts +0 -0
  4618. /package/api/resources/crm/{types → resources/opportunities/types}/OpportunitiesListRequestExpand.js +0 -0
  4619. /package/api/resources/crm/{types → resources/opportunities/types}/OpportunitiesListRequestStatus.d.ts +0 -0
  4620. /package/api/resources/crm/{types → resources/opportunities/types}/OpportunitiesListRequestStatus.js +0 -0
  4621. /package/api/resources/crm/{types → resources/opportunities/types}/OpportunitiesRetrieveRequestExpand.d.ts +0 -0
  4622. /package/api/resources/crm/{types → resources/opportunities/types}/OpportunitiesRetrieveRequestExpand.js +0 -0
  4623. /package/api/resources/crm/{types → resources/tasks/types}/TasksListRequestExpand.d.ts +0 -0
  4624. /package/api/resources/crm/{types → resources/tasks/types}/TasksListRequestExpand.js +0 -0
  4625. /package/api/resources/crm/{types → resources/tasks/types}/TasksRetrieveRequestExpand.d.ts +0 -0
  4626. /package/api/resources/crm/{types → resources/tasks/types}/TasksRetrieveRequestExpand.js +0 -0
  4627. /package/api/resources/filestorage/{types → resources/files/types}/FilesListRequestExpand.d.ts +0 -0
  4628. /package/api/resources/filestorage/{types → resources/files/types}/FilesListRequestExpand.js +0 -0
  4629. /package/api/resources/filestorage/{types → resources/files/types}/FilesRetrieveRequestExpand.d.ts +0 -0
  4630. /package/api/resources/filestorage/{types → resources/files/types}/FilesRetrieveRequestExpand.js +0 -0
  4631. /package/api/resources/filestorage/{types → resources/folders/types}/FoldersListRequestExpand.d.ts +0 -0
  4632. /package/api/resources/filestorage/{types → resources/folders/types}/FoldersListRequestExpand.js +0 -0
  4633. /package/api/resources/filestorage/{types → resources/folders/types}/FoldersRetrieveRequestExpand.d.ts +0 -0
  4634. /package/api/resources/filestorage/{types → resources/folders/types}/FoldersRetrieveRequestExpand.js +0 -0
  4635. /package/api/resources/filestorage/{types → resources/issues/types}/IssuesListRequestStatus.d.ts +0 -0
  4636. /package/api/resources/filestorage/{types → resources/issues/types}/IssuesListRequestStatus.js +0 -0
  4637. /package/api/resources/filestorage/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.d.ts +0 -0
  4638. /package/api/resources/filestorage/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.js +0 -0
  4639. /package/api/resources/hris/{types → resources/bankInfo/types}/BankInfoListRequestAccountType.d.ts +0 -0
  4640. /package/api/resources/hris/{types → resources/bankInfo/types}/BankInfoListRequestAccountType.js +0 -0
  4641. /package/api/resources/hris/{types → resources/bankInfo/types}/BankInfoListRequestOrderBy.d.ts +0 -0
  4642. /package/api/resources/hris/{types → resources/bankInfo/types}/BankInfoListRequestOrderBy.js +0 -0
  4643. /package/api/resources/hris/{types → resources/employeePayrollRuns/types}/EmployeePayrollRunsListRequestExpand.d.ts +0 -0
  4644. /package/api/resources/hris/{types → resources/employeePayrollRuns/types}/EmployeePayrollRunsListRequestExpand.js +0 -0
  4645. /package/api/resources/hris/{types → resources/employeePayrollRuns/types}/EmployeePayrollRunsRetrieveRequestExpand.d.ts +0 -0
  4646. /package/api/resources/hris/{types → resources/employeePayrollRuns/types}/EmployeePayrollRunsRetrieveRequestExpand.js +0 -0
  4647. /package/api/resources/hris/{types → resources/employees/types}/EmployeesListRequestEmploymentStatus.d.ts +0 -0
  4648. /package/api/resources/hris/{types → resources/employees/types}/EmployeesListRequestEmploymentStatus.js +0 -0
  4649. /package/api/resources/hris/{types → resources/employees/types}/EmployeesListRequestExpand.d.ts +0 -0
  4650. /package/api/resources/hris/{types → resources/employees/types}/EmployeesListRequestExpand.js +0 -0
  4651. /package/api/resources/hris/{types → resources/employees/types}/EmployeesListRequestRemoteFields.d.ts +0 -0
  4652. /package/api/resources/hris/{types → resources/employees/types}/EmployeesListRequestRemoteFields.js +0 -0
  4653. /package/api/resources/hris/{types → resources/employees/types}/EmployeesListRequestShowEnumOrigins.d.ts +0 -0
  4654. /package/api/resources/hris/{types → resources/employees/types}/EmployeesListRequestShowEnumOrigins.js +0 -0
  4655. /package/api/resources/hris/{types → resources/employees/types}/EmployeesRetrieveRequestExpand.d.ts +0 -0
  4656. /package/api/resources/hris/{types → resources/employees/types}/EmployeesRetrieveRequestExpand.js +0 -0
  4657. /package/api/resources/hris/{types → resources/employees/types}/EmployeesRetrieveRequestRemoteFields.d.ts +0 -0
  4658. /package/api/resources/hris/{types → resources/employees/types}/EmployeesRetrieveRequestRemoteFields.js +0 -0
  4659. /package/api/resources/hris/{types → resources/employees/types}/EmployeesRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4660. /package/api/resources/hris/{types → resources/employees/types}/EmployeesRetrieveRequestShowEnumOrigins.js +0 -0
  4661. /package/api/resources/hris/{types → resources/employees/types}/IgnoreCommonModelRequestReason.js +0 -0
  4662. /package/api/resources/hris/{types → resources/employments/types}/EmploymentsListRequestExpand.d.ts +0 -0
  4663. /package/api/resources/hris/{types → resources/employments/types}/EmploymentsListRequestExpand.js +0 -0
  4664. /package/api/resources/hris/{types → resources/employments/types}/EmploymentsListRequestOrderBy.d.ts +0 -0
  4665. /package/api/resources/hris/{types → resources/employments/types}/EmploymentsListRequestOrderBy.js +0 -0
  4666. /package/api/resources/hris/{types → resources/employments/types}/EmploymentsListRequestRemoteFields.d.ts +0 -0
  4667. /package/api/resources/hris/{types → resources/employments/types}/EmploymentsListRequestRemoteFields.js +0 -0
  4668. /package/api/resources/hris/{types → resources/employments/types}/EmploymentsListRequestShowEnumOrigins.d.ts +0 -0
  4669. /package/api/resources/hris/{types → resources/employments/types}/EmploymentsListRequestShowEnumOrigins.js +0 -0
  4670. /package/api/resources/hris/{types → resources/employments/types}/EmploymentsRetrieveRequestExpand.d.ts +0 -0
  4671. /package/api/resources/hris/{types → resources/employments/types}/EmploymentsRetrieveRequestExpand.js +0 -0
  4672. /package/api/resources/hris/{types → resources/employments/types}/EmploymentsRetrieveRequestRemoteFields.d.ts +0 -0
  4673. /package/api/resources/hris/{types → resources/employments/types}/EmploymentsRetrieveRequestRemoteFields.js +0 -0
  4674. /package/api/resources/hris/{types → resources/employments/types}/EmploymentsRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4675. /package/api/resources/hris/{types → resources/employments/types}/EmploymentsRetrieveRequestShowEnumOrigins.js +0 -0
  4676. /package/api/resources/hris/{types → resources/issues/types}/IssuesListRequestStatus.d.ts +0 -0
  4677. /package/api/resources/hris/{types → resources/issues/types}/IssuesListRequestStatus.js +0 -0
  4678. /package/api/resources/hris/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.d.ts +0 -0
  4679. /package/api/resources/hris/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.js +0 -0
  4680. /package/api/resources/hris/{types → resources/locations/types}/LocationsListRequestLocationType.d.ts +0 -0
  4681. /package/api/resources/hris/{types → resources/locations/types}/LocationsListRequestLocationType.js +0 -0
  4682. /package/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsListRequestRemoteFields.d.ts +0 -0
  4683. /package/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsListRequestRemoteFields.js +0 -0
  4684. /package/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsListRequestRunType.d.ts +0 -0
  4685. /package/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsListRequestRunType.js +0 -0
  4686. /package/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsListRequestShowEnumOrigins.d.ts +0 -0
  4687. /package/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsListRequestShowEnumOrigins.js +0 -0
  4688. /package/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsRetrieveRequestRemoteFields.d.ts +0 -0
  4689. /package/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsRetrieveRequestRemoteFields.js +0 -0
  4690. /package/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4691. /package/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsRetrieveRequestShowEnumOrigins.js +0 -0
  4692. /package/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestExpand.d.ts +0 -0
  4693. /package/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestExpand.js +0 -0
  4694. /package/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestRemoteFields.d.ts +0 -0
  4695. /package/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestRemoteFields.js +0 -0
  4696. /package/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestRequestType.d.ts +0 -0
  4697. /package/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestRequestType.js +0 -0
  4698. /package/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestShowEnumOrigins.d.ts +0 -0
  4699. /package/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestShowEnumOrigins.js +0 -0
  4700. /package/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestStatus.d.ts +0 -0
  4701. /package/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestStatus.js +0 -0
  4702. /package/api/resources/hris/{types → resources/timeOff/types}/TimeOffRetrieveRequestExpand.d.ts +0 -0
  4703. /package/api/resources/hris/{types → resources/timeOff/types}/TimeOffRetrieveRequestExpand.js +0 -0
  4704. /package/api/resources/hris/{types → resources/timeOff/types}/TimeOffRetrieveRequestRemoteFields.d.ts +0 -0
  4705. /package/api/resources/hris/{types → resources/timeOff/types}/TimeOffRetrieveRequestRemoteFields.js +0 -0
  4706. /package/api/resources/hris/{types → resources/timeOff/types}/TimeOffRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4707. /package/api/resources/hris/{types → resources/timeOff/types}/TimeOffRetrieveRequestShowEnumOrigins.js +0 -0
  4708. /package/api/resources/hris/{types → resources/timeOffBalances/types}/TimeOffBalancesListRequestPolicyType.d.ts +0 -0
  4709. /package/api/resources/hris/{types → resources/timeOffBalances/types}/TimeOffBalancesListRequestPolicyType.js +0 -0
  4710. /package/api/resources/hris/{types → resources/timesheetEntries/types}/TimesheetEntriesListRequestOrderBy.d.ts +0 -0
  4711. /package/api/resources/hris/{types → resources/timesheetEntries/types}/TimesheetEntriesListRequestOrderBy.js +0 -0
  4712. /package/api/resources/ticketing/{types → resources/collections/types}/CollectionsListRequestCollectionType.d.ts +0 -0
  4713. /package/api/resources/ticketing/{types → resources/collections/types}/CollectionsListRequestCollectionType.js +0 -0
  4714. /package/api/resources/ticketing/{types → resources/collections/types}/CollectionsUsersListRequestExpand.d.ts +0 -0
  4715. /package/api/resources/ticketing/{types → resources/collections/types}/CollectionsUsersListRequestExpand.js +0 -0
  4716. /package/api/resources/ticketing/{types → resources/comments/types}/CommentsListRequestExpand.d.ts +0 -0
  4717. /package/api/resources/ticketing/{types → resources/comments/types}/CommentsListRequestExpand.js +0 -0
  4718. /package/api/resources/ticketing/{types → resources/comments/types}/CommentsRetrieveRequestExpand.d.ts +0 -0
  4719. /package/api/resources/ticketing/{types → resources/comments/types}/CommentsRetrieveRequestExpand.js +0 -0
  4720. /package/api/resources/ticketing/{types → resources/issues/types}/IssuesListRequestStatus.d.ts +0 -0
  4721. /package/api/resources/ticketing/{types → resources/issues/types}/IssuesListRequestStatus.js +0 -0
  4722. /package/api/resources/ticketing/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.d.ts +0 -0
  4723. /package/api/resources/ticketing/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.js +0 -0
  4724. /package/api/resources/ticketing/{types → resources/projects/types}/ProjectsUsersListRequestExpand.d.ts +0 -0
  4725. /package/api/resources/ticketing/{types → resources/projects/types}/ProjectsUsersListRequestExpand.js +0 -0
  4726. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsCollaboratorsListRequestExpand.d.ts +0 -0
  4727. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsCollaboratorsListRequestExpand.js +0 -0
  4728. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestExpand.d.ts +0 -0
  4729. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestExpand.js +0 -0
  4730. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestPriority.d.ts +0 -0
  4731. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestPriority.js +0 -0
  4732. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestRemoteFields.d.ts +0 -0
  4733. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestRemoteFields.js +0 -0
  4734. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestShowEnumOrigins.d.ts +0 -0
  4735. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestShowEnumOrigins.js +0 -0
  4736. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestStatus.d.ts +0 -0
  4737. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestStatus.js +0 -0
  4738. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsRetrieveRequestExpand.d.ts +0 -0
  4739. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsRetrieveRequestExpand.js +0 -0
  4740. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsRetrieveRequestRemoteFields.d.ts +0 -0
  4741. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsRetrieveRequestRemoteFields.js +0 -0
  4742. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4743. /package/api/resources/ticketing/{types → resources/tickets/types}/TicketsRetrieveRequestShowEnumOrigins.js +0 -0
  4744. /package/api/resources/ticketing/{types → resources/users/types}/UsersListRequestExpand.d.ts +0 -0
  4745. /package/api/resources/ticketing/{types → resources/users/types}/UsersListRequestExpand.js +0 -0
  4746. /package/api/resources/ticketing/{types → resources/users/types}/UsersRetrieveRequestExpand.d.ts +0 -0
  4747. /package/api/resources/ticketing/{types → resources/users/types}/UsersRetrieveRequestExpand.js +0 -0
  4748. /package/dist/api/resources/accounting/{types → resources/accounts/types}/AccountsListRequestRemoteFields.d.ts +0 -0
  4749. /package/dist/api/resources/accounting/{types → resources/accounts/types}/AccountsListRequestRemoteFields.js +0 -0
  4750. /package/dist/api/resources/accounting/{types → resources/accounts/types}/AccountsListRequestShowEnumOrigins.d.ts +0 -0
  4751. /package/dist/api/resources/accounting/{types → resources/accounts/types}/AccountsListRequestShowEnumOrigins.js +0 -0
  4752. /package/dist/api/resources/accounting/{types → resources/accounts/types}/AccountsRetrieveRequestRemoteFields.d.ts +0 -0
  4753. /package/dist/api/resources/accounting/{types → resources/accounts/types}/AccountsRetrieveRequestRemoteFields.js +0 -0
  4754. /package/dist/api/resources/accounting/{types → resources/accounts/types}/AccountsRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4755. /package/dist/api/resources/accounting/{types → resources/accounts/types}/AccountsRetrieveRequestShowEnumOrigins.js +0 -0
  4756. /package/dist/api/resources/accounting/{types → resources/companyInfo/types}/CompanyInfoListRequestExpand.d.ts +0 -0
  4757. /package/dist/api/resources/accounting/{types → resources/companyInfo/types}/CompanyInfoListRequestExpand.js +0 -0
  4758. /package/dist/api/resources/accounting/{types → resources/companyInfo/types}/CompanyInfoRetrieveRequestExpand.d.ts +0 -0
  4759. /package/dist/api/resources/accounting/{types → resources/companyInfo/types}/CompanyInfoRetrieveRequestExpand.js +0 -0
  4760. /package/dist/api/resources/accounting/{types → resources/contacts/types}/ContactsListRequestExpand.d.ts +0 -0
  4761. /package/dist/api/resources/accounting/{types → resources/contacts/types}/ContactsListRequestExpand.js +0 -0
  4762. /package/dist/api/resources/accounting/{types → resources/contacts/types}/ContactsRetrieveRequestExpand.d.ts +0 -0
  4763. /package/dist/api/resources/accounting/{types → resources/contacts/types}/ContactsRetrieveRequestExpand.js +0 -0
  4764. /package/dist/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesListRequestExpand.d.ts +0 -0
  4765. /package/dist/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesListRequestExpand.js +0 -0
  4766. /package/dist/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesListRequestRemoteFields.d.ts +0 -0
  4767. /package/dist/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesListRequestRemoteFields.js +0 -0
  4768. /package/dist/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesListRequestShowEnumOrigins.d.ts +0 -0
  4769. /package/dist/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesListRequestShowEnumOrigins.js +0 -0
  4770. /package/dist/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesRetrieveRequestExpand.d.ts +0 -0
  4771. /package/dist/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesRetrieveRequestExpand.js +0 -0
  4772. /package/dist/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesRetrieveRequestRemoteFields.d.ts +0 -0
  4773. /package/dist/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesRetrieveRequestRemoteFields.js +0 -0
  4774. /package/dist/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4775. /package/dist/api/resources/accounting/{types → resources/creditNotes/types}/CreditNotesRetrieveRequestShowEnumOrigins.js +0 -0
  4776. /package/dist/api/resources/accounting/{types → resources/expenses/types}/ExpensesListRequestExpand.d.ts +0 -0
  4777. /package/dist/api/resources/accounting/{types → resources/expenses/types}/ExpensesListRequestExpand.js +0 -0
  4778. /package/dist/api/resources/accounting/{types → resources/expenses/types}/ExpensesRetrieveRequestExpand.d.ts +0 -0
  4779. /package/dist/api/resources/accounting/{types → resources/expenses/types}/ExpensesRetrieveRequestExpand.js +0 -0
  4780. /package/dist/api/resources/accounting/{types → resources/invoices/types}/InvoicesListRequestExpand.d.ts +0 -0
  4781. /package/dist/api/resources/accounting/{types → resources/invoices/types}/InvoicesListRequestExpand.js +0 -0
  4782. /package/dist/api/resources/accounting/{types → resources/invoices/types}/InvoicesListRequestType.d.ts +0 -0
  4783. /package/dist/api/resources/accounting/{types → resources/invoices/types}/InvoicesListRequestType.js +0 -0
  4784. /package/dist/api/resources/accounting/{types → resources/invoices/types}/InvoicesRetrieveRequestExpand.d.ts +0 -0
  4785. /package/dist/api/resources/accounting/{types → resources/invoices/types}/InvoicesRetrieveRequestExpand.js +0 -0
  4786. /package/dist/api/resources/accounting/{types → resources/issues/types}/IssuesListRequestStatus.d.ts +0 -0
  4787. /package/dist/api/resources/accounting/{types → resources/issues/types}/IssuesListRequestStatus.js +0 -0
  4788. /package/dist/api/resources/accounting/{types → resources/items/types}/ItemsListRequestExpand.d.ts +0 -0
  4789. /package/dist/api/resources/accounting/{types → resources/items/types}/ItemsListRequestExpand.js +0 -0
  4790. /package/dist/api/resources/accounting/{types → resources/items/types}/ItemsRetrieveRequestExpand.d.ts +0 -0
  4791. /package/dist/api/resources/accounting/{types → resources/items/types}/ItemsRetrieveRequestExpand.js +0 -0
  4792. /package/dist/api/resources/accounting/{types → resources/journalEntries/types}/JournalEntriesListRequestExpand.d.ts +0 -0
  4793. /package/dist/api/resources/accounting/{types → resources/journalEntries/types}/JournalEntriesListRequestExpand.js +0 -0
  4794. /package/dist/api/resources/accounting/{types → resources/journalEntries/types}/JournalEntriesRetrieveRequestExpand.d.ts +0 -0
  4795. /package/dist/api/resources/accounting/{types → resources/journalEntries/types}/JournalEntriesRetrieveRequestExpand.js +0 -0
  4796. /package/dist/api/resources/accounting/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.d.ts +0 -0
  4797. /package/dist/api/resources/accounting/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.js +0 -0
  4798. /package/dist/api/resources/accounting/{types → resources/payments/types}/PaymentsListRequestExpand.d.ts +0 -0
  4799. /package/dist/api/resources/accounting/{types → resources/payments/types}/PaymentsListRequestExpand.js +0 -0
  4800. /package/dist/api/resources/accounting/{types → resources/payments/types}/PaymentsRetrieveRequestExpand.d.ts +0 -0
  4801. /package/dist/api/resources/accounting/{types → resources/payments/types}/PaymentsRetrieveRequestExpand.js +0 -0
  4802. /package/dist/api/resources/accounting/{types → resources/purchaseOrders/types}/PurchaseOrdersListRequestExpand.d.ts +0 -0
  4803. /package/dist/api/resources/accounting/{types → resources/purchaseOrders/types}/PurchaseOrdersListRequestExpand.js +0 -0
  4804. /package/dist/api/resources/accounting/{types → resources/purchaseOrders/types}/PurchaseOrdersRetrieveRequestExpand.d.ts +0 -0
  4805. /package/dist/api/resources/accounting/{types → resources/purchaseOrders/types}/PurchaseOrdersRetrieveRequestExpand.js +0 -0
  4806. /package/dist/api/resources/accounting/{types → resources/transactions/types}/TransactionsListRequestExpand.d.ts +0 -0
  4807. /package/dist/api/resources/accounting/{types → resources/transactions/types}/TransactionsListRequestExpand.js +0 -0
  4808. /package/dist/api/resources/accounting/{types → resources/transactions/types}/TransactionsRetrieveRequestExpand.d.ts +0 -0
  4809. /package/dist/api/resources/accounting/{types → resources/transactions/types}/TransactionsRetrieveRequestExpand.js +0 -0
  4810. /package/dist/api/resources/accounting/{types → resources/vendorCredits/types}/VendorCreditsListRequestExpand.d.ts +0 -0
  4811. /package/dist/api/resources/accounting/{types → resources/vendorCredits/types}/VendorCreditsListRequestExpand.js +0 -0
  4812. /package/dist/api/resources/accounting/{types → resources/vendorCredits/types}/VendorCreditsRetrieveRequestExpand.d.ts +0 -0
  4813. /package/dist/api/resources/accounting/{types → resources/vendorCredits/types}/VendorCreditsRetrieveRequestExpand.js +0 -0
  4814. /package/dist/api/resources/ats/{types → resources/activities/types}/ActivitiesListRequestRemoteFields.d.ts +0 -0
  4815. /package/dist/api/resources/ats/{types → resources/activities/types}/ActivitiesListRequestRemoteFields.js +0 -0
  4816. /package/dist/api/resources/ats/{types → resources/activities/types}/ActivitiesListRequestShowEnumOrigins.d.ts +0 -0
  4817. /package/dist/api/resources/ats/{types → resources/activities/types}/ActivitiesListRequestShowEnumOrigins.js +0 -0
  4818. /package/dist/api/resources/ats/{types → resources/activities/types}/ActivitiesRetrieveRequestRemoteFields.d.ts +0 -0
  4819. /package/dist/api/resources/ats/{types → resources/activities/types}/ActivitiesRetrieveRequestRemoteFields.js +0 -0
  4820. /package/dist/api/resources/ats/{types → resources/activities/types}/ActivitiesRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4821. /package/dist/api/resources/ats/{types → resources/activities/types}/ActivitiesRetrieveRequestShowEnumOrigins.js +0 -0
  4822. /package/dist/api/resources/ats/{types → resources/applications/types}/ApplicationsListRequestExpand.d.ts +0 -0
  4823. /package/dist/api/resources/ats/{types → resources/applications/types}/ApplicationsListRequestExpand.js +0 -0
  4824. /package/dist/api/resources/ats/{types → resources/applications/types}/ApplicationsRetrieveRequestExpand.d.ts +0 -0
  4825. /package/dist/api/resources/ats/{types → resources/applications/types}/ApplicationsRetrieveRequestExpand.js +0 -0
  4826. /package/dist/api/resources/ats/{types → resources/candidates/types}/CandidatesListRequestExpand.d.ts +0 -0
  4827. /package/dist/api/resources/ats/{types → resources/candidates/types}/CandidatesListRequestExpand.js +0 -0
  4828. /package/dist/api/resources/ats/{types → resources/candidates/types}/CandidatesRetrieveRequestExpand.d.ts +0 -0
  4829. /package/dist/api/resources/ats/{types → resources/candidates/types}/CandidatesRetrieveRequestExpand.js +0 -0
  4830. /package/dist/api/resources/ats/{types → resources/eeocs/types}/EeocsListRequestRemoteFields.d.ts +0 -0
  4831. /package/dist/api/resources/ats/{types → resources/eeocs/types}/EeocsListRequestRemoteFields.js +0 -0
  4832. /package/dist/api/resources/ats/{types → resources/eeocs/types}/EeocsListRequestShowEnumOrigins.d.ts +0 -0
  4833. /package/dist/api/resources/ats/{types → resources/eeocs/types}/EeocsListRequestShowEnumOrigins.js +0 -0
  4834. /package/dist/api/resources/ats/{types → resources/eeocs/types}/EeocsRetrieveRequestRemoteFields.d.ts +0 -0
  4835. /package/dist/api/resources/ats/{types → resources/eeocs/types}/EeocsRetrieveRequestRemoteFields.js +0 -0
  4836. /package/dist/api/resources/ats/{types → resources/eeocs/types}/EeocsRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4837. /package/dist/api/resources/ats/{types → resources/eeocs/types}/EeocsRetrieveRequestShowEnumOrigins.js +0 -0
  4838. /package/dist/api/resources/ats/{types → resources/interviews/types}/InterviewsListRequestExpand.d.ts +0 -0
  4839. /package/dist/api/resources/ats/{types → resources/interviews/types}/InterviewsListRequestExpand.js +0 -0
  4840. /package/dist/api/resources/ats/{types → resources/interviews/types}/InterviewsRetrieveRequestExpand.d.ts +0 -0
  4841. /package/dist/api/resources/ats/{types → resources/interviews/types}/InterviewsRetrieveRequestExpand.js +0 -0
  4842. /package/dist/api/resources/ats/{types → resources/issues/types}/IssuesListRequestStatus.d.ts +0 -0
  4843. /package/dist/api/resources/ats/{types → resources/issues/types}/IssuesListRequestStatus.js +0 -0
  4844. /package/dist/api/resources/ats/{types → resources/jobs/types}/JobsListRequestExpand.d.ts +0 -0
  4845. /package/dist/api/resources/ats/{types → resources/jobs/types}/JobsListRequestExpand.js +0 -0
  4846. /package/dist/api/resources/ats/{types → resources/jobs/types}/JobsListRequestStatus.d.ts +0 -0
  4847. /package/dist/api/resources/ats/{types → resources/jobs/types}/JobsListRequestStatus.js +0 -0
  4848. /package/dist/api/resources/ats/{types → resources/jobs/types}/JobsRetrieveRequestExpand.d.ts +0 -0
  4849. /package/dist/api/resources/ats/{types → resources/jobs/types}/JobsRetrieveRequestExpand.js +0 -0
  4850. /package/dist/api/resources/ats/{types → resources/jobs/types}/JobsScreeningQuestionsListRequestExpand.d.ts +0 -0
  4851. /package/dist/api/resources/ats/{types → resources/jobs/types}/JobsScreeningQuestionsListRequestExpand.js +0 -0
  4852. /package/dist/api/resources/ats/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.d.ts +0 -0
  4853. /package/dist/api/resources/ats/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.js +0 -0
  4854. /package/dist/api/resources/ats/{types → resources/offers/types}/OffersListRequestExpand.d.ts +0 -0
  4855. /package/dist/api/resources/ats/{types → resources/offers/types}/OffersListRequestExpand.js +0 -0
  4856. /package/dist/api/resources/ats/{types → resources/offers/types}/OffersRetrieveRequestExpand.d.ts +0 -0
  4857. /package/dist/api/resources/ats/{types → resources/offers/types}/OffersRetrieveRequestExpand.js +0 -0
  4858. /package/dist/api/resources/ats/{types → resources/scorecards/types}/ScorecardsListRequestExpand.d.ts +0 -0
  4859. /package/dist/api/resources/ats/{types → resources/scorecards/types}/ScorecardsListRequestExpand.js +0 -0
  4860. /package/dist/api/resources/ats/{types → resources/scorecards/types}/ScorecardsRetrieveRequestExpand.d.ts +0 -0
  4861. /package/dist/api/resources/ats/{types → resources/scorecards/types}/ScorecardsRetrieveRequestExpand.js +0 -0
  4862. /package/dist/api/resources/crm/{types → resources/contacts/types}/ContactsListRequestExpand.d.ts +0 -0
  4863. /package/dist/api/resources/crm/{types → resources/contacts/types}/ContactsListRequestExpand.js +0 -0
  4864. /package/dist/api/resources/crm/{types → resources/contacts/types}/ContactsRetrieveRequestExpand.d.ts +0 -0
  4865. /package/dist/api/resources/crm/{types → resources/contacts/types}/ContactsRetrieveRequestExpand.js +0 -0
  4866. /package/dist/api/resources/crm/{types → resources/engagements/types}/EngagementsListRequestExpand.d.ts +0 -0
  4867. /package/dist/api/resources/crm/{types → resources/engagements/types}/EngagementsListRequestExpand.js +0 -0
  4868. /package/dist/api/resources/crm/{types → resources/engagements/types}/EngagementsRetrieveRequestExpand.d.ts +0 -0
  4869. /package/dist/api/resources/crm/{types → resources/engagements/types}/EngagementsRetrieveRequestExpand.js +0 -0
  4870. /package/dist/api/resources/crm/{types → resources/issues/types}/IssuesListRequestStatus.d.ts +0 -0
  4871. /package/dist/api/resources/crm/{types → resources/issues/types}/IssuesListRequestStatus.js +0 -0
  4872. /package/dist/api/resources/crm/{types → resources/leads/types}/LeadsListRequestExpand.d.ts +0 -0
  4873. /package/dist/api/resources/crm/{types → resources/leads/types}/LeadsListRequestExpand.js +0 -0
  4874. /package/dist/api/resources/crm/{types → resources/leads/types}/LeadsRetrieveRequestExpand.d.ts +0 -0
  4875. /package/dist/api/resources/crm/{types → resources/leads/types}/LeadsRetrieveRequestExpand.js +0 -0
  4876. /package/dist/api/resources/crm/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.d.ts +0 -0
  4877. /package/dist/api/resources/crm/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.js +0 -0
  4878. /package/dist/api/resources/crm/{types → resources/notes/types}/NotesListRequestExpand.d.ts +0 -0
  4879. /package/dist/api/resources/crm/{types → resources/notes/types}/NotesListRequestExpand.js +0 -0
  4880. /package/dist/api/resources/crm/{types → resources/notes/types}/NotesRetrieveRequestExpand.d.ts +0 -0
  4881. /package/dist/api/resources/crm/{types → resources/notes/types}/NotesRetrieveRequestExpand.js +0 -0
  4882. /package/dist/api/resources/crm/{types → resources/opportunities/types}/OpportunitiesListRequestExpand.d.ts +0 -0
  4883. /package/dist/api/resources/crm/{types → resources/opportunities/types}/OpportunitiesListRequestExpand.js +0 -0
  4884. /package/dist/api/resources/crm/{types → resources/opportunities/types}/OpportunitiesListRequestStatus.d.ts +0 -0
  4885. /package/dist/api/resources/crm/{types → resources/opportunities/types}/OpportunitiesListRequestStatus.js +0 -0
  4886. /package/dist/api/resources/crm/{types → resources/opportunities/types}/OpportunitiesRetrieveRequestExpand.d.ts +0 -0
  4887. /package/dist/api/resources/crm/{types → resources/opportunities/types}/OpportunitiesRetrieveRequestExpand.js +0 -0
  4888. /package/dist/api/resources/crm/{types → resources/tasks/types}/TasksListRequestExpand.d.ts +0 -0
  4889. /package/dist/api/resources/crm/{types → resources/tasks/types}/TasksListRequestExpand.js +0 -0
  4890. /package/dist/api/resources/crm/{types → resources/tasks/types}/TasksRetrieveRequestExpand.d.ts +0 -0
  4891. /package/dist/api/resources/crm/{types → resources/tasks/types}/TasksRetrieveRequestExpand.js +0 -0
  4892. /package/dist/api/resources/filestorage/{types → resources/files/types}/FilesListRequestExpand.d.ts +0 -0
  4893. /package/dist/api/resources/filestorage/{types → resources/files/types}/FilesListRequestExpand.js +0 -0
  4894. /package/dist/api/resources/filestorage/{types → resources/files/types}/FilesRetrieveRequestExpand.d.ts +0 -0
  4895. /package/dist/api/resources/filestorage/{types → resources/files/types}/FilesRetrieveRequestExpand.js +0 -0
  4896. /package/dist/api/resources/filestorage/{types → resources/folders/types}/FoldersListRequestExpand.d.ts +0 -0
  4897. /package/dist/api/resources/filestorage/{types → resources/folders/types}/FoldersListRequestExpand.js +0 -0
  4898. /package/dist/api/resources/filestorage/{types → resources/folders/types}/FoldersRetrieveRequestExpand.d.ts +0 -0
  4899. /package/dist/api/resources/filestorage/{types → resources/folders/types}/FoldersRetrieveRequestExpand.js +0 -0
  4900. /package/dist/api/resources/filestorage/{types → resources/issues/types}/IssuesListRequestStatus.d.ts +0 -0
  4901. /package/dist/api/resources/filestorage/{types → resources/issues/types}/IssuesListRequestStatus.js +0 -0
  4902. /package/dist/api/resources/filestorage/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.d.ts +0 -0
  4903. /package/dist/api/resources/filestorage/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.js +0 -0
  4904. /package/dist/api/resources/hris/{types → resources/bankInfo/types}/BankInfoListRequestAccountType.d.ts +0 -0
  4905. /package/dist/api/resources/hris/{types → resources/bankInfo/types}/BankInfoListRequestAccountType.js +0 -0
  4906. /package/dist/api/resources/hris/{types → resources/bankInfo/types}/BankInfoListRequestOrderBy.d.ts +0 -0
  4907. /package/dist/api/resources/hris/{types → resources/bankInfo/types}/BankInfoListRequestOrderBy.js +0 -0
  4908. /package/dist/api/resources/hris/{types → resources/employeePayrollRuns/types}/EmployeePayrollRunsListRequestExpand.d.ts +0 -0
  4909. /package/dist/api/resources/hris/{types → resources/employeePayrollRuns/types}/EmployeePayrollRunsListRequestExpand.js +0 -0
  4910. /package/dist/api/resources/hris/{types → resources/employeePayrollRuns/types}/EmployeePayrollRunsRetrieveRequestExpand.d.ts +0 -0
  4911. /package/dist/api/resources/hris/{types → resources/employeePayrollRuns/types}/EmployeePayrollRunsRetrieveRequestExpand.js +0 -0
  4912. /package/dist/api/resources/hris/{types → resources/employees/types}/EmployeesListRequestEmploymentStatus.d.ts +0 -0
  4913. /package/dist/api/resources/hris/{types → resources/employees/types}/EmployeesListRequestEmploymentStatus.js +0 -0
  4914. /package/dist/api/resources/hris/{types → resources/employees/types}/EmployeesListRequestExpand.d.ts +0 -0
  4915. /package/dist/api/resources/hris/{types → resources/employees/types}/EmployeesListRequestExpand.js +0 -0
  4916. /package/dist/api/resources/hris/{types → resources/employees/types}/EmployeesListRequestRemoteFields.d.ts +0 -0
  4917. /package/dist/api/resources/hris/{types → resources/employees/types}/EmployeesListRequestRemoteFields.js +0 -0
  4918. /package/dist/api/resources/hris/{types → resources/employees/types}/EmployeesListRequestShowEnumOrigins.d.ts +0 -0
  4919. /package/dist/api/resources/hris/{types → resources/employees/types}/EmployeesListRequestShowEnumOrigins.js +0 -0
  4920. /package/dist/api/resources/hris/{types → resources/employees/types}/EmployeesRetrieveRequestExpand.d.ts +0 -0
  4921. /package/dist/api/resources/hris/{types → resources/employees/types}/EmployeesRetrieveRequestExpand.js +0 -0
  4922. /package/dist/api/resources/hris/{types → resources/employees/types}/EmployeesRetrieveRequestRemoteFields.d.ts +0 -0
  4923. /package/dist/api/resources/hris/{types → resources/employees/types}/EmployeesRetrieveRequestRemoteFields.js +0 -0
  4924. /package/dist/api/resources/hris/{types → resources/employees/types}/EmployeesRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4925. /package/dist/api/resources/hris/{types → resources/employees/types}/EmployeesRetrieveRequestShowEnumOrigins.js +0 -0
  4926. /package/dist/api/resources/hris/{types → resources/employees/types}/IgnoreCommonModelRequestReason.js +0 -0
  4927. /package/dist/api/resources/hris/{types → resources/employments/types}/EmploymentsListRequestExpand.d.ts +0 -0
  4928. /package/dist/api/resources/hris/{types → resources/employments/types}/EmploymentsListRequestExpand.js +0 -0
  4929. /package/dist/api/resources/hris/{types → resources/employments/types}/EmploymentsListRequestOrderBy.d.ts +0 -0
  4930. /package/dist/api/resources/hris/{types → resources/employments/types}/EmploymentsListRequestOrderBy.js +0 -0
  4931. /package/dist/api/resources/hris/{types → resources/employments/types}/EmploymentsListRequestRemoteFields.d.ts +0 -0
  4932. /package/dist/api/resources/hris/{types → resources/employments/types}/EmploymentsListRequestRemoteFields.js +0 -0
  4933. /package/dist/api/resources/hris/{types → resources/employments/types}/EmploymentsListRequestShowEnumOrigins.d.ts +0 -0
  4934. /package/dist/api/resources/hris/{types → resources/employments/types}/EmploymentsListRequestShowEnumOrigins.js +0 -0
  4935. /package/dist/api/resources/hris/{types → resources/employments/types}/EmploymentsRetrieveRequestExpand.d.ts +0 -0
  4936. /package/dist/api/resources/hris/{types → resources/employments/types}/EmploymentsRetrieveRequestExpand.js +0 -0
  4937. /package/dist/api/resources/hris/{types → resources/employments/types}/EmploymentsRetrieveRequestRemoteFields.d.ts +0 -0
  4938. /package/dist/api/resources/hris/{types → resources/employments/types}/EmploymentsRetrieveRequestRemoteFields.js +0 -0
  4939. /package/dist/api/resources/hris/{types → resources/employments/types}/EmploymentsRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4940. /package/dist/api/resources/hris/{types → resources/employments/types}/EmploymentsRetrieveRequestShowEnumOrigins.js +0 -0
  4941. /package/dist/api/resources/hris/{types → resources/issues/types}/IssuesListRequestStatus.d.ts +0 -0
  4942. /package/dist/api/resources/hris/{types → resources/issues/types}/IssuesListRequestStatus.js +0 -0
  4943. /package/dist/api/resources/hris/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.d.ts +0 -0
  4944. /package/dist/api/resources/hris/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.js +0 -0
  4945. /package/dist/api/resources/hris/{types → resources/locations/types}/LocationsListRequestLocationType.d.ts +0 -0
  4946. /package/dist/api/resources/hris/{types → resources/locations/types}/LocationsListRequestLocationType.js +0 -0
  4947. /package/dist/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsListRequestRemoteFields.d.ts +0 -0
  4948. /package/dist/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsListRequestRemoteFields.js +0 -0
  4949. /package/dist/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsListRequestRunType.d.ts +0 -0
  4950. /package/dist/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsListRequestRunType.js +0 -0
  4951. /package/dist/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsListRequestShowEnumOrigins.d.ts +0 -0
  4952. /package/dist/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsListRequestShowEnumOrigins.js +0 -0
  4953. /package/dist/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsRetrieveRequestRemoteFields.d.ts +0 -0
  4954. /package/dist/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsRetrieveRequestRemoteFields.js +0 -0
  4955. /package/dist/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4956. /package/dist/api/resources/hris/{types → resources/payrollRuns/types}/PayrollRunsRetrieveRequestShowEnumOrigins.js +0 -0
  4957. /package/dist/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestExpand.d.ts +0 -0
  4958. /package/dist/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestExpand.js +0 -0
  4959. /package/dist/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestRemoteFields.d.ts +0 -0
  4960. /package/dist/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestRemoteFields.js +0 -0
  4961. /package/dist/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestRequestType.d.ts +0 -0
  4962. /package/dist/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestRequestType.js +0 -0
  4963. /package/dist/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestShowEnumOrigins.d.ts +0 -0
  4964. /package/dist/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestShowEnumOrigins.js +0 -0
  4965. /package/dist/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestStatus.d.ts +0 -0
  4966. /package/dist/api/resources/hris/{types → resources/timeOff/types}/TimeOffListRequestStatus.js +0 -0
  4967. /package/dist/api/resources/hris/{types → resources/timeOff/types}/TimeOffRetrieveRequestExpand.d.ts +0 -0
  4968. /package/dist/api/resources/hris/{types → resources/timeOff/types}/TimeOffRetrieveRequestExpand.js +0 -0
  4969. /package/dist/api/resources/hris/{types → resources/timeOff/types}/TimeOffRetrieveRequestRemoteFields.d.ts +0 -0
  4970. /package/dist/api/resources/hris/{types → resources/timeOff/types}/TimeOffRetrieveRequestRemoteFields.js +0 -0
  4971. /package/dist/api/resources/hris/{types → resources/timeOff/types}/TimeOffRetrieveRequestShowEnumOrigins.d.ts +0 -0
  4972. /package/dist/api/resources/hris/{types → resources/timeOff/types}/TimeOffRetrieveRequestShowEnumOrigins.js +0 -0
  4973. /package/dist/api/resources/hris/{types → resources/timeOffBalances/types}/TimeOffBalancesListRequestPolicyType.d.ts +0 -0
  4974. /package/dist/api/resources/hris/{types → resources/timeOffBalances/types}/TimeOffBalancesListRequestPolicyType.js +0 -0
  4975. /package/dist/api/resources/hris/{types → resources/timesheetEntries/types}/TimesheetEntriesListRequestOrderBy.d.ts +0 -0
  4976. /package/dist/api/resources/hris/{types → resources/timesheetEntries/types}/TimesheetEntriesListRequestOrderBy.js +0 -0
  4977. /package/dist/api/resources/ticketing/{types → resources/collections/types}/CollectionsListRequestCollectionType.d.ts +0 -0
  4978. /package/dist/api/resources/ticketing/{types → resources/collections/types}/CollectionsListRequestCollectionType.js +0 -0
  4979. /package/dist/api/resources/ticketing/{types → resources/collections/types}/CollectionsUsersListRequestExpand.d.ts +0 -0
  4980. /package/dist/api/resources/ticketing/{types → resources/collections/types}/CollectionsUsersListRequestExpand.js +0 -0
  4981. /package/dist/api/resources/ticketing/{types → resources/comments/types}/CommentsListRequestExpand.d.ts +0 -0
  4982. /package/dist/api/resources/ticketing/{types → resources/comments/types}/CommentsListRequestExpand.js +0 -0
  4983. /package/dist/api/resources/ticketing/{types → resources/comments/types}/CommentsRetrieveRequestExpand.d.ts +0 -0
  4984. /package/dist/api/resources/ticketing/{types → resources/comments/types}/CommentsRetrieveRequestExpand.js +0 -0
  4985. /package/dist/api/resources/ticketing/{types → resources/issues/types}/IssuesListRequestStatus.d.ts +0 -0
  4986. /package/dist/api/resources/ticketing/{types → resources/issues/types}/IssuesListRequestStatus.js +0 -0
  4987. /package/dist/api/resources/ticketing/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.d.ts +0 -0
  4988. /package/dist/api/resources/ticketing/{types → resources/linkedAccounts/types}/LinkedAccountsListRequestCategory.js +0 -0
  4989. /package/dist/api/resources/ticketing/{types → resources/projects/types}/ProjectsUsersListRequestExpand.d.ts +0 -0
  4990. /package/dist/api/resources/ticketing/{types → resources/projects/types}/ProjectsUsersListRequestExpand.js +0 -0
  4991. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsCollaboratorsListRequestExpand.d.ts +0 -0
  4992. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsCollaboratorsListRequestExpand.js +0 -0
  4993. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestExpand.d.ts +0 -0
  4994. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestExpand.js +0 -0
  4995. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestPriority.d.ts +0 -0
  4996. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestPriority.js +0 -0
  4997. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestRemoteFields.d.ts +0 -0
  4998. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestRemoteFields.js +0 -0
  4999. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestShowEnumOrigins.d.ts +0 -0
  5000. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestShowEnumOrigins.js +0 -0
  5001. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestStatus.d.ts +0 -0
  5002. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsListRequestStatus.js +0 -0
  5003. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsRetrieveRequestExpand.d.ts +0 -0
  5004. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsRetrieveRequestExpand.js +0 -0
  5005. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsRetrieveRequestRemoteFields.d.ts +0 -0
  5006. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsRetrieveRequestRemoteFields.js +0 -0
  5007. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsRetrieveRequestShowEnumOrigins.d.ts +0 -0
  5008. /package/dist/api/resources/ticketing/{types → resources/tickets/types}/TicketsRetrieveRequestShowEnumOrigins.js +0 -0
  5009. /package/dist/api/resources/ticketing/{types → resources/users/types}/UsersListRequestExpand.d.ts +0 -0
  5010. /package/dist/api/resources/ticketing/{types → resources/users/types}/UsersListRequestExpand.js +0 -0
  5011. /package/dist/api/resources/ticketing/{types → resources/users/types}/UsersRetrieveRequestExpand.d.ts +0 -0
  5012. /package/dist/api/resources/ticketing/{types → resources/users/types}/UsersRetrieveRequestExpand.js +0 -0
@@ -5,311 +5,311 @@ import * as Merge from "../../..";
5
5
  /**
6
6
  * The journal's currency.
7
7
  *
8
- * * `XUA` - ADB Unit of Account
9
- * * `AFN` - Afghan Afghani
10
- * * `AFA` - Afghan Afghani (1927–2002)
11
- * * `ALL` - Albanian Lek
12
- * * `ALK` - Albanian Lek (1946–1965)
13
- * * `DZD` - Algerian Dinar
14
- * * `ADP` - Andorran Peseta
15
- * * `AOA` - Angolan Kwanza
16
- * * `AOK` - Angolan Kwanza (1977–1991)
17
- * * `AON` - Angolan New Kwanza (1990–2000)
18
- * * `AOR` - Angolan Readjusted Kwanza (1995–1999)
19
- * * `ARA` - Argentine Austral
20
- * * `ARS` - Argentine Peso
21
- * * `ARM` - Argentine Peso (1881–1970)
22
- * * `ARP` - Argentine Peso (1983–1985)
23
- * * `ARL` - Argentine Peso Ley (1970–1983)
24
- * * `AMD` - Armenian Dram
25
- * * `AWG` - Aruban Florin
26
- * * `AUD` - Australian Dollar
27
- * * `ATS` - Austrian Schilling
28
- * * `AZN` - Azerbaijani Manat
29
- * * `AZM` - Azerbaijani Manat (1993–2006)
30
- * * `BSD` - Bahamian Dollar
31
- * * `BHD` - Bahraini Dinar
32
- * * `BDT` - Bangladeshi Taka
33
- * * `BBD` - Barbadian Dollar
34
- * * `BYN` - Belarusian Ruble
35
- * * `BYB` - Belarusian Ruble (1994–1999)
36
- * * `BYR` - Belarusian Ruble (2000–2016)
37
- * * `BEF` - Belgian Franc
38
- * * `BEC` - Belgian Franc (convertible)
39
- * * `BEL` - Belgian Franc (financial)
40
- * * `BZD` - Belize Dollar
41
- * * `BMD` - Bermudan Dollar
42
- * * `BTN` - Bhutanese Ngultrum
43
- * * `BOB` - Bolivian Boliviano
44
- * * `BOL` - Bolivian Boliviano (1863–1963)
45
- * * `BOV` - Bolivian Mvdol
46
- * * `BOP` - Bolivian Peso
47
- * * `BAM` - Bosnia-Herzegovina Convertible Mark
48
- * * `BAD` - Bosnia-Herzegovina Dinar (1992–1994)
49
- * * `BAN` - Bosnia-Herzegovina New Dinar (1994–1997)
50
- * * `BWP` - Botswanan Pula
51
- * * `BRC` - Brazilian Cruzado (1986–1989)
52
- * * `BRZ` - Brazilian Cruzeiro (1942–1967)
53
- * * `BRE` - Brazilian Cruzeiro (1990–1993)
54
- * * `BRR` - Brazilian Cruzeiro (1993–1994)
55
- * * `BRN` - Brazilian New Cruzado (1989–1990)
56
- * * `BRB` - Brazilian New Cruzeiro (1967–1986)
57
- * * `BRL` - Brazilian Real
58
- * * `GBP` - British Pound
59
- * * `BND` - Brunei Dollar
60
- * * `BGL` - Bulgarian Hard Lev
61
- * * `BGN` - Bulgarian Lev
62
- * * `BGO` - Bulgarian Lev (1879–1952)
63
- * * `BGM` - Bulgarian Socialist Lev
64
- * * `BUK` - Burmese Kyat
65
- * * `BIF` - Burundian Franc
66
- * * `XPF` - CFP Franc
67
- * * `KHR` - Cambodian Riel
68
- * * `CAD` - Canadian Dollar
69
- * * `CVE` - Cape Verdean Escudo
70
- * * `KYD` - Cayman Islands Dollar
71
- * * `XAF` - Central African CFA Franc
72
- * * `CLE` - Chilean Escudo
73
- * * `CLP` - Chilean Peso
74
- * * `CLF` - Chilean Unit of Account (UF)
75
- * * `CNX` - Chinese People’s Bank Dollar
76
- * * `CNY` - Chinese Yuan
77
- * * `CNH` - Chinese Yuan (offshore)
78
- * * `COP` - Colombian Peso
79
- * * `COU` - Colombian Real Value Unit
80
- * * `KMF` - Comorian Franc
81
- * * `CDF` - Congolese Franc
82
- * * `CRC` - Costa Rican Colón
83
- * * `HRD` - Croatian Dinar
84
- * * `HRK` - Croatian Kuna
85
- * * `CUC` - Cuban Convertible Peso
86
- * * `CUP` - Cuban Peso
87
- * * `CYP` - Cypriot Pound
88
- * * `CZK` - Czech Koruna
89
- * * `CSK` - Czechoslovak Hard Koruna
90
- * * `DKK` - Danish Krone
91
- * * `DJF` - Djiboutian Franc
92
- * * `DOP` - Dominican Peso
93
- * * `NLG` - Dutch Guilder
94
- * * `XCD` - East Caribbean Dollar
95
- * * `DDM` - East German Mark
96
- * * `ECS` - Ecuadorian Sucre
97
- * * `ECV` - Ecuadorian Unit of Constant Value
98
- * * `EGP` - Egyptian Pound
99
- * * `GQE` - Equatorial Guinean Ekwele
100
- * * `ERN` - Eritrean Nakfa
101
- * * `EEK` - Estonian Kroon
102
- * * `ETB` - Ethiopian Birr
103
- * * `EUR` - Euro
104
- * * `XBA` - European Composite Unit
105
- * * `XEU` - European Currency Unit
106
- * * `XBB` - European Monetary Unit
107
- * * `XBC` - European Unit of Account (XBC)
108
- * * `XBD` - European Unit of Account (XBD)
109
- * * `FKP` - Falkland Islands Pound
110
- * * `FJD` - Fijian Dollar
111
- * * `FIM` - Finnish Markka
112
- * * `FRF` - French Franc
113
- * * `XFO` - French Gold Franc
114
- * * `XFU` - French UIC-Franc
115
- * * `GMD` - Gambian Dalasi
116
- * * `GEK` - Georgian Kupon Larit
117
- * * `GEL` - Georgian Lari
118
- * * `DEM` - German Mark
119
- * * `GHS` - Ghanaian Cedi
120
- * * `GHC` - Ghanaian Cedi (1979–2007)
121
- * * `GIP` - Gibraltar Pound
122
- * * `XAU` - Gold
123
- * * `GRD` - Greek Drachma
124
- * * `GTQ` - Guatemalan Quetzal
125
- * * `GWP` - Guinea-Bissau Peso
126
- * * `GNF` - Guinean Franc
127
- * * `GNS` - Guinean Syli
128
- * * `GYD` - Guyanaese Dollar
129
- * * `HTG` - Haitian Gourde
130
- * * `HNL` - Honduran Lempira
131
- * * `HKD` - Hong Kong Dollar
132
- * * `HUF` - Hungarian Forint
133
- * * `IMP` - IMP
134
- * * `ISK` - Icelandic Króna
135
- * * `ISJ` - Icelandic Króna (1918–1981)
136
- * * `INR` - Indian Rupee
137
- * * `IDR` - Indonesian Rupiah
138
- * * `IRR` - Iranian Rial
139
- * * `IQD` - Iraqi Dinar
140
- * * `IEP` - Irish Pound
141
- * * `ILS` - Israeli New Shekel
142
- * * `ILP` - Israeli Pound
143
- * * `ILR` - Israeli Shekel (1980–1985)
144
- * * `ITL` - Italian Lira
145
- * * `JMD` - Jamaican Dollar
146
- * * `JPY` - Japanese Yen
147
- * * `JOD` - Jordanian Dinar
148
- * * `KZT` - Kazakhstani Tenge
149
- * * `KES` - Kenyan Shilling
150
- * * `KWD` - Kuwaiti Dinar
151
- * * `KGS` - Kyrgystani Som
152
- * * `LAK` - Laotian Kip
153
- * * `LVL` - Latvian Lats
154
- * * `LVR` - Latvian Ruble
155
- * * `LBP` - Lebanese Pound
156
- * * `LSL` - Lesotho Loti
157
- * * `LRD` - Liberian Dollar
158
- * * `LYD` - Libyan Dinar
159
- * * `LTL` - Lithuanian Litas
160
- * * `LTT` - Lithuanian Talonas
161
- * * `LUL` - Luxembourg Financial Franc
162
- * * `LUC` - Luxembourgian Convertible Franc
163
- * * `LUF` - Luxembourgian Franc
164
- * * `MOP` - Macanese Pataca
165
- * * `MKD` - Macedonian Denar
166
- * * `MKN` - Macedonian Denar (1992–1993)
167
- * * `MGA` - Malagasy Ariary
168
- * * `MGF` - Malagasy Franc
169
- * * `MWK` - Malawian Kwacha
170
- * * `MYR` - Malaysian Ringgit
171
- * * `MVR` - Maldivian Rufiyaa
172
- * * `MVP` - Maldivian Rupee (1947–1981)
173
- * * `MLF` - Malian Franc
174
- * * `MTL` - Maltese Lira
175
- * * `MTP` - Maltese Pound
176
- * * `MRU` - Mauritanian Ouguiya
177
- * * `MRO` - Mauritanian Ouguiya (1973–2017)
178
- * * `MUR` - Mauritian Rupee
179
- * * `MXV` - Mexican Investment Unit
180
- * * `MXN` - Mexican Peso
181
- * * `MXP` - Mexican Silver Peso (1861–1992)
182
- * * `MDC` - Moldovan Cupon
183
- * * `MDL` - Moldovan Leu
184
- * * `MCF` - Monegasque Franc
185
- * * `MNT` - Mongolian Tugrik
186
- * * `MAD` - Moroccan Dirham
187
- * * `MAF` - Moroccan Franc
188
- * * `MZE` - Mozambican Escudo
189
- * * `MZN` - Mozambican Metical
190
- * * `MZM` - Mozambican Metical (1980–2006)
191
- * * `MMK` - Myanmar Kyat
192
- * * `NAD` - Namibian Dollar
193
- * * `NPR` - Nepalese Rupee
194
- * * `ANG` - Netherlands Antillean Guilder
195
- * * `TWD` - New Taiwan Dollar
196
- * * `NZD` - New Zealand Dollar
197
- * * `NIO` - Nicaraguan Córdoba
198
- * * `NIC` - Nicaraguan Córdoba (1988–1991)
199
- * * `NGN` - Nigerian Naira
200
- * * `KPW` - North Korean Won
201
- * * `NOK` - Norwegian Krone
202
- * * `OMR` - Omani Rial
203
- * * `PKR` - Pakistani Rupee
204
- * * `XPD` - Palladium
205
- * * `PAB` - Panamanian Balboa
206
- * * `PGK` - Papua New Guinean Kina
207
- * * `PYG` - Paraguayan Guarani
208
- * * `PEI` - Peruvian Inti
209
- * * `PEN` - Peruvian Sol
210
- * * `PES` - Peruvian Sol (1863–1965)
211
- * * `PHP` - Philippine Peso
212
- * * `XPT` - Platinum
213
- * * `PLN` - Polish Zloty
214
- * * `PLZ` - Polish Zloty (1950–1995)
215
- * * `PTE` - Portuguese Escudo
216
- * * `GWE` - Portuguese Guinea Escudo
217
- * * `QAR` - Qatari Rial
218
- * * `XRE` - RINET Funds
219
- * * `RHD` - Rhodesian Dollar
220
- * * `RON` - Romanian Leu
221
- * * `ROL` - Romanian Leu (1952–2006)
222
- * * `RUB` - Russian Ruble
223
- * * `RUR` - Russian Ruble (1991–1998)
224
- * * `RWF` - Rwandan Franc
225
- * * `SVC` - Salvadoran Colón
226
- * * `WST` - Samoan Tala
227
- * * `SAR` - Saudi Riyal
228
- * * `RSD` - Serbian Dinar
229
- * * `CSD` - Serbian Dinar (2002–2006)
230
- * * `SCR` - Seychellois Rupee
231
- * * `SLL` - Sierra Leonean Leone
232
- * * `XAG` - Silver
233
- * * `SGD` - Singapore Dollar
234
- * * `SKK` - Slovak Koruna
235
- * * `SIT` - Slovenian Tolar
236
- * * `SBD` - Solomon Islands Dollar
237
- * * `SOS` - Somali Shilling
238
- * * `ZAR` - South African Rand
239
- * * `ZAL` - South African Rand (financial)
240
- * * `KRH` - South Korean Hwan (1953–1962)
241
- * * `KRW` - South Korean Won
242
- * * `KRO` - South Korean Won (1945–1953)
243
- * * `SSP` - South Sudanese Pound
244
- * * `SUR` - Soviet Rouble
245
- * * `ESP` - Spanish Peseta
246
- * * `ESA` - Spanish Peseta (A account)
247
- * * `ESB` - Spanish Peseta (convertible account)
248
- * * `XDR` - Special Drawing Rights
249
- * * `LKR` - Sri Lankan Rupee
250
- * * `SHP` - St. Helena Pound
251
- * * `XSU` - Sucre
252
- * * `SDD` - Sudanese Dinar (1992–2007)
253
- * * `SDG` - Sudanese Pound
254
- * * `SDP` - Sudanese Pound (1957–1998)
255
- * * `SRD` - Surinamese Dollar
256
- * * `SRG` - Surinamese Guilder
257
- * * `SZL` - Swazi Lilangeni
258
- * * `SEK` - Swedish Krona
259
- * * `CHF` - Swiss Franc
260
- * * `SYP` - Syrian Pound
261
- * * `STN` - São Tomé & Príncipe Dobra
262
- * * `STD` - São Tomé & Príncipe Dobra (1977–2017)
263
- * * `TVD` - TVD
264
- * * `TJR` - Tajikistani Ruble
265
- * * `TJS` - Tajikistani Somoni
266
- * * `TZS` - Tanzanian Shilling
267
- * * `XTS` - Testing Currency Code
268
- * * `THB` - Thai Baht
269
- * * `XXX` - The codes assigned for transactions where no currency is involved
270
- * * `TPE` - Timorese Escudo
271
- * * `TOP` - Tongan Paʻanga
272
- * * `TTD` - Trinidad & Tobago Dollar
273
- * * `TND` - Tunisian Dinar
274
- * * `TRY` - Turkish Lira
275
- * * `TRL` - Turkish Lira (1922–2005)
276
- * * `TMT` - Turkmenistani Manat
277
- * * `TMM` - Turkmenistani Manat (1993–2009)
278
- * * `USD` - US Dollar
279
- * * `USN` - US Dollar (Next day)
280
- * * `USS` - US Dollar (Same day)
281
- * * `UGX` - Ugandan Shilling
282
- * * `UGS` - Ugandan Shilling (1966–1987)
283
- * * `UAH` - Ukrainian Hryvnia
284
- * * `UAK` - Ukrainian Karbovanets
285
- * * `AED` - United Arab Emirates Dirham
286
- * * `UYW` - Uruguayan Nominal Wage Index Unit
287
- * * `UYU` - Uruguayan Peso
288
- * * `UYP` - Uruguayan Peso (1975–1993)
289
- * * `UYI` - Uruguayan Peso (Indexed Units)
290
- * * `UZS` - Uzbekistani Som
291
- * * `VUV` - Vanuatu Vatu
292
- * * `VES` - Venezuelan Bolívar
293
- * * `VEB` - Venezuelan Bolívar (1871–2008)
294
- * * `VEF` - Venezuelan Bolívar (2008–2018)
295
- * * `VND` - Vietnamese Dong
296
- * * `VNN` - Vietnamese Dong (1978–1985)
297
- * * `CHE` - WIR Euro
298
- * * `CHW` - WIR Franc
299
- * * `XOF` - West African CFA Franc
300
- * * `YDD` - Yemeni Dinar
301
- * * `YER` - Yemeni Rial
302
- * * `YUN` - Yugoslavian Convertible Dinar (1990–1992)
303
- * * `YUD` - Yugoslavian Hard Dinar (1966–1990)
304
- * * `YUM` - Yugoslavian New Dinar (1994–2002)
305
- * * `YUR` - Yugoslavian Reformed Dinar (1992–1993)
306
- * * `ZWN` - ZWN
307
- * * `ZRN` - Zairean New Zaire (1993–1998)
308
- * * `ZRZ` - Zairean Zaire (1971–1993)
309
- * * `ZMW` - Zambian Kwacha
310
- * * `ZMK` - Zambian Kwacha (1968–2012)
311
- * * `ZWD` - Zimbabwean Dollar (1980–2008)
312
- * * `ZWR` - Zimbabwean Dollar (2008)
313
- * * `ZWL` - Zimbabwean Dollar (2009)
8
+ * - `XUA` - ADB Unit of Account
9
+ * - `AFN` - Afghan Afghani
10
+ * - `AFA` - Afghan Afghani (1927–2002)
11
+ * - `ALL` - Albanian Lek
12
+ * - `ALK` - Albanian Lek (1946–1965)
13
+ * - `DZD` - Algerian Dinar
14
+ * - `ADP` - Andorran Peseta
15
+ * - `AOA` - Angolan Kwanza
16
+ * - `AOK` - Angolan Kwanza (1977–1991)
17
+ * - `AON` - Angolan New Kwanza (1990–2000)
18
+ * - `AOR` - Angolan Readjusted Kwanza (1995–1999)
19
+ * - `ARA` - Argentine Austral
20
+ * - `ARS` - Argentine Peso
21
+ * - `ARM` - Argentine Peso (1881–1970)
22
+ * - `ARP` - Argentine Peso (1983–1985)
23
+ * - `ARL` - Argentine Peso Ley (1970–1983)
24
+ * - `AMD` - Armenian Dram
25
+ * - `AWG` - Aruban Florin
26
+ * - `AUD` - Australian Dollar
27
+ * - `ATS` - Austrian Schilling
28
+ * - `AZN` - Azerbaijani Manat
29
+ * - `AZM` - Azerbaijani Manat (1993–2006)
30
+ * - `BSD` - Bahamian Dollar
31
+ * - `BHD` - Bahraini Dinar
32
+ * - `BDT` - Bangladeshi Taka
33
+ * - `BBD` - Barbadian Dollar
34
+ * - `BYN` - Belarusian Ruble
35
+ * - `BYB` - Belarusian Ruble (1994–1999)
36
+ * - `BYR` - Belarusian Ruble (2000–2016)
37
+ * - `BEF` - Belgian Franc
38
+ * - `BEC` - Belgian Franc (convertible)
39
+ * - `BEL` - Belgian Franc (financial)
40
+ * - `BZD` - Belize Dollar
41
+ * - `BMD` - Bermudan Dollar
42
+ * - `BTN` - Bhutanese Ngultrum
43
+ * - `BOB` - Bolivian Boliviano
44
+ * - `BOL` - Bolivian Boliviano (1863–1963)
45
+ * - `BOV` - Bolivian Mvdol
46
+ * - `BOP` - Bolivian Peso
47
+ * - `BAM` - Bosnia-Herzegovina Convertible Mark
48
+ * - `BAD` - Bosnia-Herzegovina Dinar (1992–1994)
49
+ * - `BAN` - Bosnia-Herzegovina New Dinar (1994–1997)
50
+ * - `BWP` - Botswanan Pula
51
+ * - `BRC` - Brazilian Cruzado (1986–1989)
52
+ * - `BRZ` - Brazilian Cruzeiro (1942–1967)
53
+ * - `BRE` - Brazilian Cruzeiro (1990–1993)
54
+ * - `BRR` - Brazilian Cruzeiro (1993–1994)
55
+ * - `BRN` - Brazilian New Cruzado (1989–1990)
56
+ * - `BRB` - Brazilian New Cruzeiro (1967–1986)
57
+ * - `BRL` - Brazilian Real
58
+ * - `GBP` - British Pound
59
+ * - `BND` - Brunei Dollar
60
+ * - `BGL` - Bulgarian Hard Lev
61
+ * - `BGN` - Bulgarian Lev
62
+ * - `BGO` - Bulgarian Lev (1879–1952)
63
+ * - `BGM` - Bulgarian Socialist Lev
64
+ * - `BUK` - Burmese Kyat
65
+ * - `BIF` - Burundian Franc
66
+ * - `XPF` - CFP Franc
67
+ * - `KHR` - Cambodian Riel
68
+ * - `CAD` - Canadian Dollar
69
+ * - `CVE` - Cape Verdean Escudo
70
+ * - `KYD` - Cayman Islands Dollar
71
+ * - `XAF` - Central African CFA Franc
72
+ * - `CLE` - Chilean Escudo
73
+ * - `CLP` - Chilean Peso
74
+ * - `CLF` - Chilean Unit of Account (UF)
75
+ * - `CNX` - Chinese People’s Bank Dollar
76
+ * - `CNY` - Chinese Yuan
77
+ * - `CNH` - Chinese Yuan (offshore)
78
+ * - `COP` - Colombian Peso
79
+ * - `COU` - Colombian Real Value Unit
80
+ * - `KMF` - Comorian Franc
81
+ * - `CDF` - Congolese Franc
82
+ * - `CRC` - Costa Rican Colón
83
+ * - `HRD` - Croatian Dinar
84
+ * - `HRK` - Croatian Kuna
85
+ * - `CUC` - Cuban Convertible Peso
86
+ * - `CUP` - Cuban Peso
87
+ * - `CYP` - Cypriot Pound
88
+ * - `CZK` - Czech Koruna
89
+ * - `CSK` - Czechoslovak Hard Koruna
90
+ * - `DKK` - Danish Krone
91
+ * - `DJF` - Djiboutian Franc
92
+ * - `DOP` - Dominican Peso
93
+ * - `NLG` - Dutch Guilder
94
+ * - `XCD` - East Caribbean Dollar
95
+ * - `DDM` - East German Mark
96
+ * - `ECS` - Ecuadorian Sucre
97
+ * - `ECV` - Ecuadorian Unit of Constant Value
98
+ * - `EGP` - Egyptian Pound
99
+ * - `GQE` - Equatorial Guinean Ekwele
100
+ * - `ERN` - Eritrean Nakfa
101
+ * - `EEK` - Estonian Kroon
102
+ * - `ETB` - Ethiopian Birr
103
+ * - `EUR` - Euro
104
+ * - `XBA` - European Composite Unit
105
+ * - `XEU` - European Currency Unit
106
+ * - `XBB` - European Monetary Unit
107
+ * - `XBC` - European Unit of Account (XBC)
108
+ * - `XBD` - European Unit of Account (XBD)
109
+ * - `FKP` - Falkland Islands Pound
110
+ * - `FJD` - Fijian Dollar
111
+ * - `FIM` - Finnish Markka
112
+ * - `FRF` - French Franc
113
+ * - `XFO` - French Gold Franc
114
+ * - `XFU` - French UIC-Franc
115
+ * - `GMD` - Gambian Dalasi
116
+ * - `GEK` - Georgian Kupon Larit
117
+ * - `GEL` - Georgian Lari
118
+ * - `DEM` - German Mark
119
+ * - `GHS` - Ghanaian Cedi
120
+ * - `GHC` - Ghanaian Cedi (1979–2007)
121
+ * - `GIP` - Gibraltar Pound
122
+ * - `XAU` - Gold
123
+ * - `GRD` - Greek Drachma
124
+ * - `GTQ` - Guatemalan Quetzal
125
+ * - `GWP` - Guinea-Bissau Peso
126
+ * - `GNF` - Guinean Franc
127
+ * - `GNS` - Guinean Syli
128
+ * - `GYD` - Guyanaese Dollar
129
+ * - `HTG` - Haitian Gourde
130
+ * - `HNL` - Honduran Lempira
131
+ * - `HKD` - Hong Kong Dollar
132
+ * - `HUF` - Hungarian Forint
133
+ * - `IMP` - IMP
134
+ * - `ISK` - Icelandic Króna
135
+ * - `ISJ` - Icelandic Króna (1918–1981)
136
+ * - `INR` - Indian Rupee
137
+ * - `IDR` - Indonesian Rupiah
138
+ * - `IRR` - Iranian Rial
139
+ * - `IQD` - Iraqi Dinar
140
+ * - `IEP` - Irish Pound
141
+ * - `ILS` - Israeli New Shekel
142
+ * - `ILP` - Israeli Pound
143
+ * - `ILR` - Israeli Shekel (1980–1985)
144
+ * - `ITL` - Italian Lira
145
+ * - `JMD` - Jamaican Dollar
146
+ * - `JPY` - Japanese Yen
147
+ * - `JOD` - Jordanian Dinar
148
+ * - `KZT` - Kazakhstani Tenge
149
+ * - `KES` - Kenyan Shilling
150
+ * - `KWD` - Kuwaiti Dinar
151
+ * - `KGS` - Kyrgystani Som
152
+ * - `LAK` - Laotian Kip
153
+ * - `LVL` - Latvian Lats
154
+ * - `LVR` - Latvian Ruble
155
+ * - `LBP` - Lebanese Pound
156
+ * - `LSL` - Lesotho Loti
157
+ * - `LRD` - Liberian Dollar
158
+ * - `LYD` - Libyan Dinar
159
+ * - `LTL` - Lithuanian Litas
160
+ * - `LTT` - Lithuanian Talonas
161
+ * - `LUL` - Luxembourg Financial Franc
162
+ * - `LUC` - Luxembourgian Convertible Franc
163
+ * - `LUF` - Luxembourgian Franc
164
+ * - `MOP` - Macanese Pataca
165
+ * - `MKD` - Macedonian Denar
166
+ * - `MKN` - Macedonian Denar (1992–1993)
167
+ * - `MGA` - Malagasy Ariary
168
+ * - `MGF` - Malagasy Franc
169
+ * - `MWK` - Malawian Kwacha
170
+ * - `MYR` - Malaysian Ringgit
171
+ * - `MVR` - Maldivian Rufiyaa
172
+ * - `MVP` - Maldivian Rupee (1947–1981)
173
+ * - `MLF` - Malian Franc
174
+ * - `MTL` - Maltese Lira
175
+ * - `MTP` - Maltese Pound
176
+ * - `MRU` - Mauritanian Ouguiya
177
+ * - `MRO` - Mauritanian Ouguiya (1973–2017)
178
+ * - `MUR` - Mauritian Rupee
179
+ * - `MXV` - Mexican Investment Unit
180
+ * - `MXN` - Mexican Peso
181
+ * - `MXP` - Mexican Silver Peso (1861–1992)
182
+ * - `MDC` - Moldovan Cupon
183
+ * - `MDL` - Moldovan Leu
184
+ * - `MCF` - Monegasque Franc
185
+ * - `MNT` - Mongolian Tugrik
186
+ * - `MAD` - Moroccan Dirham
187
+ * - `MAF` - Moroccan Franc
188
+ * - `MZE` - Mozambican Escudo
189
+ * - `MZN` - Mozambican Metical
190
+ * - `MZM` - Mozambican Metical (1980–2006)
191
+ * - `MMK` - Myanmar Kyat
192
+ * - `NAD` - Namibian Dollar
193
+ * - `NPR` - Nepalese Rupee
194
+ * - `ANG` - Netherlands Antillean Guilder
195
+ * - `TWD` - New Taiwan Dollar
196
+ * - `NZD` - New Zealand Dollar
197
+ * - `NIO` - Nicaraguan Córdoba
198
+ * - `NIC` - Nicaraguan Córdoba (1988–1991)
199
+ * - `NGN` - Nigerian Naira
200
+ * - `KPW` - North Korean Won
201
+ * - `NOK` - Norwegian Krone
202
+ * - `OMR` - Omani Rial
203
+ * - `PKR` - Pakistani Rupee
204
+ * - `XPD` - Palladium
205
+ * - `PAB` - Panamanian Balboa
206
+ * - `PGK` - Papua New Guinean Kina
207
+ * - `PYG` - Paraguayan Guarani
208
+ * - `PEI` - Peruvian Inti
209
+ * - `PEN` - Peruvian Sol
210
+ * - `PES` - Peruvian Sol (1863–1965)
211
+ * - `PHP` - Philippine Peso
212
+ * - `XPT` - Platinum
213
+ * - `PLN` - Polish Zloty
214
+ * - `PLZ` - Polish Zloty (1950–1995)
215
+ * - `PTE` - Portuguese Escudo
216
+ * - `GWE` - Portuguese Guinea Escudo
217
+ * - `QAR` - Qatari Rial
218
+ * - `XRE` - RINET Funds
219
+ * - `RHD` - Rhodesian Dollar
220
+ * - `RON` - Romanian Leu
221
+ * - `ROL` - Romanian Leu (1952–2006)
222
+ * - `RUB` - Russian Ruble
223
+ * - `RUR` - Russian Ruble (1991–1998)
224
+ * - `RWF` - Rwandan Franc
225
+ * - `SVC` - Salvadoran Colón
226
+ * - `WST` - Samoan Tala
227
+ * - `SAR` - Saudi Riyal
228
+ * - `RSD` - Serbian Dinar
229
+ * - `CSD` - Serbian Dinar (2002–2006)
230
+ * - `SCR` - Seychellois Rupee
231
+ * - `SLL` - Sierra Leonean Leone
232
+ * - `XAG` - Silver
233
+ * - `SGD` - Singapore Dollar
234
+ * - `SKK` - Slovak Koruna
235
+ * - `SIT` - Slovenian Tolar
236
+ * - `SBD` - Solomon Islands Dollar
237
+ * - `SOS` - Somali Shilling
238
+ * - `ZAR` - South African Rand
239
+ * - `ZAL` - South African Rand (financial)
240
+ * - `KRH` - South Korean Hwan (1953–1962)
241
+ * - `KRW` - South Korean Won
242
+ * - `KRO` - South Korean Won (1945–1953)
243
+ * - `SSP` - South Sudanese Pound
244
+ * - `SUR` - Soviet Rouble
245
+ * - `ESP` - Spanish Peseta
246
+ * - `ESA` - Spanish Peseta (A account)
247
+ * - `ESB` - Spanish Peseta (convertible account)
248
+ * - `XDR` - Special Drawing Rights
249
+ * - `LKR` - Sri Lankan Rupee
250
+ * - `SHP` - St. Helena Pound
251
+ * - `XSU` - Sucre
252
+ * - `SDD` - Sudanese Dinar (1992–2007)
253
+ * - `SDG` - Sudanese Pound
254
+ * - `SDP` - Sudanese Pound (1957–1998)
255
+ * - `SRD` - Surinamese Dollar
256
+ * - `SRG` - Surinamese Guilder
257
+ * - `SZL` - Swazi Lilangeni
258
+ * - `SEK` - Swedish Krona
259
+ * - `CHF` - Swiss Franc
260
+ * - `SYP` - Syrian Pound
261
+ * - `STN` - São Tomé & Príncipe Dobra
262
+ * - `STD` - São Tomé & Príncipe Dobra (1977–2017)
263
+ * - `TVD` - TVD
264
+ * - `TJR` - Tajikistani Ruble
265
+ * - `TJS` - Tajikistani Somoni
266
+ * - `TZS` - Tanzanian Shilling
267
+ * - `XTS` - Testing Currency Code
268
+ * - `THB` - Thai Baht
269
+ * - `XXX` - The codes assigned for transactions where no currency is involved
270
+ * - `TPE` - Timorese Escudo
271
+ * - `TOP` - Tongan Paʻanga
272
+ * - `TTD` - Trinidad & Tobago Dollar
273
+ * - `TND` - Tunisian Dinar
274
+ * - `TRY` - Turkish Lira
275
+ * - `TRL` - Turkish Lira (1922–2005)
276
+ * - `TMT` - Turkmenistani Manat
277
+ * - `TMM` - Turkmenistani Manat (1993–2009)
278
+ * - `USD` - US Dollar
279
+ * - `USN` - US Dollar (Next day)
280
+ * - `USS` - US Dollar (Same day)
281
+ * - `UGX` - Ugandan Shilling
282
+ * - `UGS` - Ugandan Shilling (1966–1987)
283
+ * - `UAH` - Ukrainian Hryvnia
284
+ * - `UAK` - Ukrainian Karbovanets
285
+ * - `AED` - United Arab Emirates Dirham
286
+ * - `UYW` - Uruguayan Nominal Wage Index Unit
287
+ * - `UYU` - Uruguayan Peso
288
+ * - `UYP` - Uruguayan Peso (1975–1993)
289
+ * - `UYI` - Uruguayan Peso (Indexed Units)
290
+ * - `UZS` - Uzbekistani Som
291
+ * - `VUV` - Vanuatu Vatu
292
+ * - `VES` - Venezuelan Bolívar
293
+ * - `VEB` - Venezuelan Bolívar (1871–2008)
294
+ * - `VEF` - Venezuelan Bolívar (2008–2018)
295
+ * - `VND` - Vietnamese Dong
296
+ * - `VNN` - Vietnamese Dong (1978–1985)
297
+ * - `CHE` - WIR Euro
298
+ * - `CHW` - WIR Franc
299
+ * - `XOF` - West African CFA Franc
300
+ * - `YDD` - Yemeni Dinar
301
+ * - `YER` - Yemeni Rial
302
+ * - `YUN` - Yugoslavian Convertible Dinar (1990–1992)
303
+ * - `YUD` - Yugoslavian Hard Dinar (1966–1990)
304
+ * - `YUM` - Yugoslavian New Dinar (1994–2002)
305
+ * - `YUR` - Yugoslavian Reformed Dinar (1992–1993)
306
+ * - `ZWN` - ZWN
307
+ * - `ZRN` - Zairean New Zaire (1993–1998)
308
+ * - `ZRZ` - Zairean Zaire (1971–1993)
309
+ * - `ZMW` - Zambian Kwacha
310
+ * - `ZMK` - Zambian Kwacha (1968–2012)
311
+ * - `ZWD` - Zimbabwean Dollar (1980–2008)
312
+ * - `ZWR` - Zimbabwean Dollar (2008)
313
+ * - `ZWL` - Zimbabwean Dollar (2009)
314
314
  */
315
315
  export declare type JournalEntryRequestCurrency = Merge.accounting.CurrencyEnum | string;
@@ -5,7 +5,7 @@ import * as Merge from "../../..";
5
5
  /**
6
6
  * The journal's posting status.
7
7
  *
8
- * * `UNPOSTED` - UNPOSTED
9
- * * `POSTED` - POSTED
8
+ * - `UNPOSTED` - UNPOSTED
9
+ * - `POSTED` - POSTED
10
10
  */
11
11
  export declare type JournalEntryRequestPostingStatus = Merge.accounting.PostingStatusEnum | string;