@mergeapi/merge-node-client 0.1.7 → 0.1.8

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 (2302) hide show
  1. package/api/resources/accounting/client/Client.d.ts +6 -0
  2. package/api/resources/accounting/client/Client.js +76 -66
  3. package/api/resources/accounting/resources/accountDetails/client/Client.js +1 -1
  4. package/api/resources/accounting/resources/accountToken/client/Client.js +1 -1
  5. package/api/resources/accounting/resources/accountingPeriods/client/Client.d.ts +29 -0
  6. package/api/resources/accounting/resources/accountingPeriods/client/Client.js +179 -0
  7. package/api/resources/accounting/resources/accountingPeriods/client/index.d.ts +1 -0
  8. package/api/resources/accounting/resources/accountingPeriods/client/index.js +17 -0
  9. package/api/resources/accounting/resources/accountingPeriods/client/requests/AccountingPeriodsListRequest.d.ts +21 -0
  10. package/api/resources/accounting/resources/accountingPeriods/client/requests/AccountingPeriodsRetrieveRequest.d.ts +9 -0
  11. package/api/resources/accounting/resources/accountingPeriods/client/requests/index.d.ts +2 -0
  12. package/api/resources/accounting/resources/accountingPeriods/client/requests/index.js +2 -0
  13. package/api/resources/accounting/resources/accountingPeriods/index.d.ts +1 -0
  14. package/api/resources/accounting/resources/accountingPeriods/index.js +17 -0
  15. package/api/resources/accounting/resources/accounts/client/Client.js +4 -4
  16. package/api/resources/accounting/resources/addresses/client/Client.js +1 -1
  17. package/api/resources/accounting/resources/asyncPassthrough/client/Client.js +2 -2
  18. package/api/resources/accounting/resources/attachments/client/Client.js +4 -4
  19. package/api/resources/accounting/resources/auditTrail/client/Client.d.ts +25 -0
  20. package/api/resources/accounting/resources/auditTrail/client/Client.js +129 -0
  21. package/api/resources/accounting/resources/auditTrail/client/index.d.ts +1 -0
  22. package/api/resources/accounting/resources/auditTrail/client/index.js +17 -0
  23. package/api/resources/accounting/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +29 -0
  24. package/api/resources/accounting/resources/auditTrail/client/requests/index.d.ts +1 -0
  25. package/api/resources/accounting/resources/auditTrail/client/requests/index.js +2 -0
  26. package/api/resources/accounting/resources/auditTrail/index.d.ts +1 -0
  27. package/api/resources/accounting/resources/auditTrail/index.js +17 -0
  28. package/api/resources/accounting/resources/availableActions/client/Client.js +1 -1
  29. package/api/resources/accounting/resources/balanceSheets/client/Client.js +2 -2
  30. package/api/resources/accounting/resources/cashFlowStatements/client/Client.js +2 -2
  31. package/api/resources/accounting/resources/companyInfo/client/Client.js +2 -2
  32. package/api/resources/accounting/resources/contacts/client/Client.js +4 -4
  33. package/api/resources/accounting/resources/creditNotes/client/Client.js +2 -2
  34. package/api/resources/accounting/resources/deleteAccount/client/Client.js +1 -1
  35. package/api/resources/accounting/resources/expenses/client/Client.js +4 -4
  36. package/api/resources/accounting/resources/forceResync/client/Client.js +1 -1
  37. package/api/resources/accounting/resources/generateKey/client/Client.js +1 -1
  38. package/api/resources/accounting/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +0 -1
  39. package/api/resources/accounting/resources/incomeStatements/client/Client.js +2 -2
  40. package/api/resources/accounting/resources/index.d.ts +4 -0
  41. package/api/resources/accounting/resources/index.js +5 -1
  42. package/api/resources/accounting/resources/invoices/client/Client.js +4 -4
  43. package/api/resources/accounting/resources/issues/client/Client.js +2 -2
  44. package/api/resources/accounting/resources/items/client/Client.js +2 -2
  45. package/api/resources/accounting/resources/journalEntries/client/Client.js +4 -4
  46. package/api/resources/accounting/resources/linkToken/client/Client.js +1 -1
  47. package/api/resources/accounting/resources/linkToken/client/requests/EndUserDetailsRequest.d.ts +4 -4
  48. package/api/resources/accounting/resources/linkedAccounts/client/Client.js +1 -1
  49. package/api/resources/accounting/resources/passthrough/client/Client.js +1 -1
  50. package/api/resources/accounting/resources/payments/client/Client.js +4 -4
  51. package/api/resources/accounting/resources/phoneNumbers/client/Client.js +1 -1
  52. package/api/resources/accounting/resources/purchaseOrders/client/Client.js +4 -4
  53. package/api/resources/accounting/resources/regenerateKey/client/Client.js +1 -1
  54. package/api/resources/accounting/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +0 -1
  55. package/api/resources/accounting/resources/selectiveSync/client/Client.js +3 -3
  56. package/api/resources/accounting/resources/syncStatus/client/Client.js +1 -1
  57. package/api/resources/accounting/resources/taxRates/client/Client.js +2 -2
  58. package/api/resources/accounting/resources/trackingCategories/client/Client.js +2 -2
  59. package/api/resources/accounting/resources/transactions/client/Client.js +2 -2
  60. package/api/resources/accounting/resources/vendorCredits/client/Client.js +2 -2
  61. package/api/resources/accounting/resources/webhookReceivers/client/Client.js +2 -2
  62. package/api/resources/accounting/resources/webhookReceivers/client/requests/WebhookReceiverRequest.d.ts +0 -2
  63. package/api/resources/accounting/types/Account.d.ts +10 -2
  64. package/api/resources/accounting/types/AccountIntegration.d.ts +3 -1
  65. package/api/resources/accounting/types/AccountRequest.d.ts +8 -1
  66. package/api/resources/accounting/types/AccountingAttachment.d.ts +2 -1
  67. package/api/resources/accounting/types/AccountingPeriod.d.ts +25 -0
  68. package/api/resources/accounting/types/AccountingPeriodStatus.d.ts +5 -0
  69. package/api/resources/accounting/types/AccountingPeriodStatusEnum.d.ts +12 -0
  70. package/api/resources/accounting/types/AccountingPeriodStatusEnum.js +10 -0
  71. package/api/resources/accounting/types/AccountingPhoneNumber.d.ts +1 -0
  72. package/api/resources/accounting/types/Address.d.ts +1 -0
  73. package/api/resources/accounting/types/AddressRequest.d.ts +287 -0
  74. package/api/resources/accounting/types/AddressRequestCountry.d.ts +258 -0
  75. package/api/resources/accounting/types/AddressRequestType.d.ts +11 -0
  76. package/api/resources/accounting/types/AuditLogEvent.d.ts +54 -0
  77. package/api/resources/accounting/types/AuditLogEventEventType.d.ts +33 -0
  78. package/api/resources/accounting/types/AuditLogEventRole.d.ts +15 -0
  79. package/api/resources/accounting/types/BalanceSheet.d.ts +2 -1
  80. package/api/resources/accounting/types/CashFlowStatement.d.ts +2 -1
  81. package/api/resources/accounting/types/CommonModelScopesBodyRequest.d.ts +0 -1
  82. package/api/resources/accounting/types/CompanyInfo.d.ts +3 -2
  83. package/api/resources/accounting/types/Contact.d.ts +6 -3
  84. package/{dist/api/resources/accounting/types/CreditNoteApplyLineInvoice.d.ts → api/resources/accounting/types/ContactAddressesItem.d.ts} +1 -1
  85. package/api/resources/accounting/types/ContactRequest.d.ts +4 -2
  86. package/{dist/api/resources/accounting/types/VendorCreditApplyLineInvoice.d.ts → api/resources/accounting/types/ContactRequestAddressesItem.d.ts} +1 -1
  87. package/api/resources/accounting/types/CreditNote.d.ts +8 -5
  88. package/api/resources/accounting/types/CreditNoteAccountingPeriod.d.ts +8 -0
  89. package/api/resources/accounting/types/CreditNoteCompany.d.ts +8 -0
  90. package/api/resources/accounting/types/CreditNoteContact.d.ts +8 -0
  91. package/api/resources/accounting/types/CreditNoteLineItem.d.ts +1 -0
  92. package/api/resources/accounting/types/CreditNotesListRequestExpand.d.ts +57 -9
  93. package/api/resources/accounting/types/CreditNotesListRequestExpand.js +56 -8
  94. package/api/resources/accounting/types/CreditNotesRetrieveRequestExpand.d.ts +57 -9
  95. package/api/resources/accounting/types/CreditNotesRetrieveRequestExpand.js +56 -8
  96. package/api/resources/accounting/types/DataPassthroughRequest.d.ts +0 -3
  97. package/api/resources/accounting/types/EventTypeEnum.d.ts +56 -0
  98. package/api/resources/accounting/types/EventTypeEnum.js +32 -0
  99. package/api/resources/accounting/types/Expense.d.ts +7 -2
  100. package/api/resources/accounting/types/ExpenseAccountingPeriod.d.ts +8 -0
  101. package/api/resources/accounting/types/ExpenseLine.d.ts +3 -0
  102. package/api/resources/accounting/types/ExpenseRequest.d.ts +5 -1
  103. package/api/resources/accounting/types/ExpenseRequestAccountingPeriod.d.ts +8 -0
  104. package/api/resources/accounting/types/ExpensesListRequestExpand.d.ts +17 -1
  105. package/api/resources/accounting/types/ExpensesListRequestExpand.js +16 -0
  106. package/api/resources/accounting/types/ExpensesRetrieveRequestExpand.d.ts +17 -1
  107. package/api/resources/accounting/types/ExpensesRetrieveRequestExpand.js +16 -0
  108. package/api/resources/accounting/types/IncomeStatement.d.ts +2 -1
  109. package/api/resources/accounting/types/Invoice.d.ts +4 -0
  110. package/api/resources/accounting/types/InvoiceAccountingPeriod.d.ts +8 -0
  111. package/api/resources/accounting/types/InvoiceLineItem.d.ts +3 -0
  112. package/api/resources/accounting/types/InvoicePurchaseOrdersItem.d.ts +5 -0
  113. package/api/resources/accounting/types/InvoicesListRequestExpand.d.ts +97 -1
  114. package/api/resources/accounting/types/InvoicesListRequestExpand.js +96 -0
  115. package/api/resources/accounting/types/InvoicesRetrieveRequestExpand.d.ts +97 -1
  116. package/api/resources/accounting/types/InvoicesRetrieveRequestExpand.js +96 -0
  117. package/api/resources/accounting/types/Item.d.ts +2 -1
  118. package/api/resources/accounting/types/JournalEntriesListRequestExpand.d.ts +17 -1
  119. package/api/resources/accounting/types/JournalEntriesListRequestExpand.js +16 -0
  120. package/api/resources/accounting/types/JournalEntriesRetrieveRequestExpand.d.ts +17 -1
  121. package/api/resources/accounting/types/JournalEntriesRetrieveRequestExpand.js +16 -0
  122. package/api/resources/accounting/types/JournalEntry.d.ts +8 -1
  123. package/api/resources/accounting/types/JournalEntryAccountingPeriod.d.ts +8 -0
  124. package/api/resources/accounting/types/JournalEntryAccountingPeriod.js +5 -0
  125. package/api/resources/accounting/types/JournalLine.d.ts +3 -0
  126. package/api/resources/accounting/types/LinkedAccountConditionRequest.d.ts +1 -1
  127. package/api/resources/accounting/types/MultipartFormFieldRequest.d.ts +2 -2
  128. package/api/resources/accounting/types/PaginatedAccountingPeriodList.d.ts +9 -0
  129. package/api/resources/accounting/types/PaginatedAccountingPeriodList.js +5 -0
  130. package/api/resources/accounting/types/PaginatedAuditLogEventList.d.ts +9 -0
  131. package/api/resources/accounting/types/PaginatedAuditLogEventList.js +5 -0
  132. package/api/resources/accounting/types/Payment.d.ts +4 -2
  133. package/api/resources/accounting/types/PaymentAccountingPeriod.d.ts +8 -0
  134. package/api/resources/accounting/types/PaymentAccountingPeriod.js +5 -0
  135. package/api/resources/accounting/types/PaymentRequest.d.ts +2 -1
  136. package/api/resources/accounting/types/PaymentRequestAccountingPeriod.d.ts +8 -0
  137. package/api/resources/accounting/types/PaymentRequestAccountingPeriod.js +5 -0
  138. package/api/resources/accounting/types/PaymentsListRequestExpand.d.ts +17 -17
  139. package/api/resources/accounting/types/PaymentsListRequestExpand.js +16 -16
  140. package/api/resources/accounting/types/PaymentsRetrieveRequestExpand.d.ts +17 -17
  141. package/api/resources/accounting/types/PaymentsRetrieveRequestExpand.js +16 -16
  142. package/api/resources/accounting/types/PurchaseOrder.d.ts +7 -2
  143. package/api/resources/accounting/types/PurchaseOrderAccountingPeriod.d.ts +8 -0
  144. package/api/resources/accounting/types/PurchaseOrderAccountingPeriod.js +5 -0
  145. package/api/resources/accounting/types/PurchaseOrderLineItem.d.ts +3 -0
  146. package/api/resources/accounting/types/PurchaseOrdersListRequestExpand.d.ts +33 -1
  147. package/api/resources/accounting/types/PurchaseOrdersListRequestExpand.js +32 -0
  148. package/api/resources/accounting/types/PurchaseOrdersRetrieveRequestExpand.d.ts +33 -1
  149. package/api/resources/accounting/types/PurchaseOrdersRetrieveRequestExpand.js +32 -0
  150. package/api/resources/accounting/types/ReportItem.d.ts +1 -0
  151. package/api/resources/accounting/types/RoleEnum.d.ts +20 -0
  152. package/api/resources/accounting/types/RoleEnum.js +14 -0
  153. package/api/resources/accounting/types/TaxRate.d.ts +2 -1
  154. package/api/resources/accounting/types/TrackingCategory.d.ts +3 -2
  155. package/api/resources/accounting/types/Transaction.d.ts +12 -2
  156. package/api/resources/accounting/types/TransactionAccountingPeriod.d.ts +8 -0
  157. package/api/resources/accounting/types/TransactionAccountingPeriod.js +5 -0
  158. package/api/resources/accounting/types/TransactionLineItem.d.ts +3 -0
  159. package/api/resources/accounting/types/TransactionsListRequestExpand.d.ts +17 -1
  160. package/api/resources/accounting/types/TransactionsListRequestExpand.js +16 -0
  161. package/api/resources/accounting/types/TransactionsRetrieveRequestExpand.d.ts +17 -1
  162. package/api/resources/accounting/types/TransactionsRetrieveRequestExpand.js +16 -0
  163. package/api/resources/accounting/types/VendorCredit.d.ts +5 -3
  164. package/api/resources/accounting/types/VendorCreditAccountingPeriod.d.ts +8 -0
  165. package/api/resources/accounting/types/VendorCreditAccountingPeriod.js +5 -0
  166. package/api/resources/accounting/types/VendorCreditLine.d.ts +1 -0
  167. package/api/resources/accounting/types/VendorCreditsListRequestExpand.d.ts +17 -17
  168. package/api/resources/accounting/types/VendorCreditsListRequestExpand.js +16 -16
  169. package/api/resources/accounting/types/VendorCreditsRetrieveRequestExpand.d.ts +17 -17
  170. package/api/resources/accounting/types/VendorCreditsRetrieveRequestExpand.js +16 -16
  171. package/api/resources/accounting/types/index.d.ts +28 -9
  172. package/api/resources/accounting/types/index.js +28 -9
  173. package/api/resources/ats/client/Client.d.ts +3 -0
  174. package/api/resources/ats/client/Client.js +53 -48
  175. package/api/resources/ats/resources/accountDetails/client/Client.js +1 -1
  176. package/api/resources/ats/resources/accountToken/client/Client.js +1 -1
  177. package/api/resources/ats/resources/activities/client/Client.js +4 -4
  178. package/api/resources/ats/resources/applications/client/Client.js +5 -5
  179. package/api/resources/ats/resources/applications/client/requests/UpdateApplicationStageRequest.d.ts +0 -1
  180. package/api/resources/ats/resources/asyncPassthrough/client/Client.js +2 -2
  181. package/api/resources/ats/resources/attachments/client/Client.js +4 -4
  182. package/api/resources/ats/resources/auditTrail/client/Client.d.ts +25 -0
  183. package/api/resources/ats/resources/auditTrail/client/Client.js +129 -0
  184. package/api/resources/ats/resources/auditTrail/client/index.d.ts +1 -0
  185. package/api/resources/ats/resources/auditTrail/client/index.js +17 -0
  186. package/api/resources/ats/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +29 -0
  187. package/api/resources/ats/resources/auditTrail/client/requests/AuditTrailListRequest.js +5 -0
  188. package/api/resources/ats/resources/auditTrail/client/requests/index.d.ts +1 -0
  189. package/api/resources/ats/resources/auditTrail/client/requests/index.js +2 -0
  190. package/api/resources/ats/resources/auditTrail/index.d.ts +1 -0
  191. package/api/resources/ats/resources/auditTrail/index.js +17 -0
  192. package/api/resources/ats/resources/availableActions/client/Client.js +1 -1
  193. package/api/resources/ats/resources/candidates/client/Client.js +7 -7
  194. package/api/resources/ats/resources/candidates/client/requests/IgnoreCommonModelRequest.d.ts +0 -1
  195. package/api/resources/ats/resources/deleteAccount/client/Client.js +1 -1
  196. package/api/resources/ats/resources/departments/client/Client.js +2 -2
  197. package/api/resources/ats/resources/eeocs/client/Client.js +2 -2
  198. package/api/resources/ats/resources/forceResync/client/Client.js +1 -1
  199. package/api/resources/ats/resources/generateKey/client/Client.js +1 -1
  200. package/api/resources/ats/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +0 -1
  201. package/api/resources/ats/resources/index.d.ts +2 -0
  202. package/api/resources/ats/resources/index.js +3 -1
  203. package/api/resources/ats/resources/interviews/client/Client.js +8 -5
  204. package/api/resources/ats/resources/interviews/client/requests/InterviewsListRequest.d.ts +4 -0
  205. package/api/resources/ats/resources/issues/client/Client.js +2 -2
  206. package/api/resources/ats/resources/jobInterviewStages/client/Client.js +2 -2
  207. package/api/resources/ats/resources/jobs/client/Client.d.ts +4 -0
  208. package/api/resources/ats/resources/jobs/client/Client.js +70 -2
  209. package/api/resources/ats/resources/jobs/client/requests/JobsScreeningQuestionsListRequest.d.ts +26 -0
  210. package/api/resources/ats/resources/jobs/client/requests/JobsScreeningQuestionsListRequest.js +5 -0
  211. package/api/resources/ats/resources/jobs/client/requests/index.d.ts +1 -0
  212. package/api/resources/ats/resources/linkToken/client/Client.js +1 -1
  213. package/api/resources/ats/resources/linkToken/client/requests/EndUserDetailsRequest.d.ts +4 -4
  214. package/api/resources/ats/resources/linkedAccounts/client/Client.js +1 -1
  215. package/api/resources/ats/resources/offers/client/Client.js +2 -2
  216. package/api/resources/ats/resources/offices/client/Client.js +2 -2
  217. package/api/resources/ats/resources/passthrough/client/Client.js +1 -1
  218. package/api/resources/ats/resources/regenerateKey/client/Client.js +1 -1
  219. package/api/resources/ats/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +0 -1
  220. package/api/resources/ats/resources/rejectReasons/client/Client.js +2 -2
  221. package/api/resources/ats/resources/scorecards/client/Client.js +2 -2
  222. package/api/resources/ats/resources/selectiveSync/client/Client.js +3 -3
  223. package/api/resources/ats/resources/syncStatus/client/Client.js +1 -1
  224. package/api/resources/ats/resources/tags/client/Client.js +1 -1
  225. package/api/resources/ats/resources/users/client/Client.js +2 -2
  226. package/api/resources/ats/resources/webhookReceivers/client/Client.js +2 -2
  227. package/api/resources/ats/resources/webhookReceivers/client/requests/WebhookReceiverRequest.d.ts +0 -2
  228. package/api/resources/ats/types/AccountIntegration.d.ts +3 -1
  229. package/api/resources/ats/types/Activity.d.ts +2 -1
  230. package/api/resources/ats/types/Application.d.ts +1 -0
  231. package/api/resources/ats/types/ApplicationRequest.d.ts +0 -1
  232. package/api/resources/ats/types/Attachment.d.ts +1 -0
  233. package/api/resources/ats/types/AuditLogEvent.d.ts +54 -0
  234. package/api/resources/ats/types/AuditLogEvent.js +5 -0
  235. package/api/resources/ats/types/AuditLogEventEventType.d.ts +33 -0
  236. package/api/resources/ats/types/AuditLogEventEventType.js +5 -0
  237. package/api/resources/ats/types/AuditLogEventRole.d.ts +15 -0
  238. package/api/resources/ats/types/AuditLogEventRole.js +5 -0
  239. package/api/resources/ats/types/Candidate.d.ts +1 -0
  240. package/api/resources/ats/types/CandidateRequest.d.ts +0 -1
  241. package/api/resources/ats/types/CommonModelScopesBodyRequest.d.ts +0 -1
  242. package/api/resources/ats/types/DataPassthroughRequest.d.ts +0 -3
  243. package/api/resources/ats/types/Department.d.ts +2 -1
  244. package/api/resources/ats/types/Eeoc.d.ts +2 -1
  245. package/api/resources/ats/types/EmailAddress.d.ts +1 -0
  246. package/api/resources/ats/types/EventTypeEnum.d.ts +56 -0
  247. package/api/resources/ats/types/EventTypeEnum.js +32 -0
  248. package/api/resources/ats/types/Job.d.ts +2 -1
  249. package/api/resources/ats/types/JobInterviewStage.d.ts +2 -1
  250. package/api/resources/ats/types/JobsScreeningQuestionsListRequestExpand.d.ts +9 -0
  251. package/api/resources/ats/types/JobsScreeningQuestionsListRequestExpand.js +11 -0
  252. package/api/resources/ats/types/LinkedAccountConditionRequest.d.ts +1 -1
  253. package/api/resources/ats/types/MultipartFormFieldRequest.d.ts +2 -2
  254. package/api/resources/ats/types/Offer.d.ts +2 -1
  255. package/api/resources/ats/types/Office.d.ts +2 -1
  256. package/api/resources/ats/types/PaginatedAuditLogEventList.d.ts +9 -0
  257. package/api/resources/ats/types/PaginatedAuditLogEventList.js +5 -0
  258. package/api/resources/ats/types/PaginatedScreeningQuestionList.d.ts +9 -0
  259. package/api/resources/ats/types/PaginatedScreeningQuestionList.js +5 -0
  260. package/api/resources/ats/types/PatchedCandidateRequest.d.ts +0 -1
  261. package/api/resources/ats/types/PhoneNumber.d.ts +1 -0
  262. package/api/resources/ats/types/RejectReason.d.ts +2 -1
  263. package/api/resources/ats/types/RemoteUser.d.ts +2 -1
  264. package/api/resources/ats/types/RoleEnum.d.ts +20 -0
  265. package/api/resources/ats/types/RoleEnum.js +14 -0
  266. package/api/resources/ats/types/ScheduledInterview.d.ts +2 -1
  267. package/api/resources/ats/types/Scorecard.d.ts +2 -1
  268. package/api/resources/ats/types/ScreeningQuestion.d.ts +42 -0
  269. package/api/resources/ats/types/ScreeningQuestion.js +5 -0
  270. package/api/resources/ats/types/ScreeningQuestionJob.d.ts +8 -0
  271. package/api/resources/ats/types/ScreeningQuestionJob.js +5 -0
  272. package/api/resources/ats/types/ScreeningQuestionOption.d.ts +21 -0
  273. package/api/resources/ats/types/ScreeningQuestionOption.js +5 -0
  274. package/api/resources/ats/types/ScreeningQuestionType.d.ts +17 -0
  275. package/api/resources/ats/types/ScreeningQuestionType.js +5 -0
  276. package/api/resources/ats/types/Tag.d.ts +2 -1
  277. package/api/resources/ats/types/TypeEnum.d.ts +24 -0
  278. package/api/resources/ats/types/TypeEnum.js +16 -0
  279. package/api/resources/ats/types/Url.d.ts +1 -0
  280. package/api/resources/ats/types/index.d.ts +13 -0
  281. package/api/resources/ats/types/index.js +13 -0
  282. package/api/resources/crm/client/Client.d.ts +3 -0
  283. package/api/resources/crm/client/Client.js +55 -50
  284. package/api/resources/crm/resources/accountDetails/client/Client.js +1 -1
  285. package/api/resources/crm/resources/accountToken/client/Client.js +1 -1
  286. package/api/resources/crm/resources/accounts/client/Client.js +7 -7
  287. package/api/resources/crm/resources/associationTypes/client/Client.js +4 -4
  288. package/api/resources/crm/resources/associations/client/Client.js +2 -2
  289. package/api/resources/crm/resources/asyncPassthrough/client/Client.js +2 -2
  290. package/api/resources/crm/resources/auditTrail/client/Client.d.ts +25 -0
  291. package/api/resources/crm/resources/auditTrail/client/Client.js +129 -0
  292. package/api/resources/crm/resources/auditTrail/client/index.d.ts +1 -0
  293. package/api/resources/crm/resources/auditTrail/client/index.js +17 -0
  294. package/api/resources/crm/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +29 -0
  295. package/api/resources/crm/resources/auditTrail/client/requests/AuditTrailListRequest.js +5 -0
  296. package/api/resources/crm/resources/auditTrail/client/requests/index.d.ts +1 -0
  297. package/api/resources/crm/resources/auditTrail/client/requests/index.js +2 -0
  298. package/api/resources/crm/resources/auditTrail/index.d.ts +1 -0
  299. package/api/resources/crm/resources/auditTrail/index.js +17 -0
  300. package/api/resources/crm/resources/availableActions/client/Client.js +1 -1
  301. package/api/resources/crm/resources/contacts/client/Client.js +8 -8
  302. package/api/resources/crm/resources/customObjectClasses/client/Client.d.ts +0 -4
  303. package/api/resources/crm/resources/customObjectClasses/client/Client.js +2 -61
  304. package/api/resources/crm/resources/customObjectClasses/client/requests/index.d.ts +0 -1
  305. package/api/resources/crm/resources/customObjects/client/Client.d.ts +0 -4
  306. package/api/resources/crm/resources/customObjects/client/Client.js +5 -67
  307. package/api/resources/crm/resources/customObjects/client/requests/index.d.ts +0 -1
  308. package/api/resources/crm/resources/deleteAccount/client/Client.js +1 -1
  309. package/api/resources/crm/resources/engagementTypes/client/Client.js +3 -3
  310. package/api/resources/crm/resources/engagements/client/Client.js +7 -7
  311. package/api/resources/crm/resources/forceResync/client/Client.js +1 -1
  312. package/api/resources/crm/resources/generateKey/client/Client.js +1 -1
  313. package/api/resources/crm/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +0 -1
  314. package/api/resources/crm/resources/index.d.ts +2 -0
  315. package/api/resources/crm/resources/index.js +3 -1
  316. package/api/resources/crm/resources/issues/client/Client.js +2 -2
  317. package/api/resources/crm/resources/leads/client/Client.js +5 -5
  318. package/api/resources/crm/resources/linkToken/client/Client.js +1 -1
  319. package/api/resources/crm/resources/linkToken/client/requests/EndUserDetailsRequest.d.ts +4 -4
  320. package/api/resources/crm/resources/linkedAccounts/client/Client.js +1 -1
  321. package/api/resources/crm/resources/notes/client/Client.js +5 -5
  322. package/api/resources/crm/resources/opportunities/client/Client.js +7 -7
  323. package/api/resources/crm/resources/passthrough/client/Client.js +1 -1
  324. package/api/resources/crm/resources/regenerateKey/client/Client.js +1 -1
  325. package/api/resources/crm/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +0 -1
  326. package/api/resources/crm/resources/selectiveSync/client/Client.js +3 -3
  327. package/api/resources/crm/resources/stages/client/Client.js +3 -3
  328. package/api/resources/crm/resources/syncStatus/client/Client.js +1 -1
  329. package/api/resources/crm/resources/tasks/client/Client.js +7 -7
  330. package/api/resources/crm/resources/users/client/Client.js +4 -4
  331. package/api/resources/crm/resources/webhookReceivers/client/Client.js +2 -2
  332. package/api/resources/crm/resources/webhookReceivers/client/requests/WebhookReceiverRequest.d.ts +0 -2
  333. package/api/resources/crm/types/Account.d.ts +1 -0
  334. package/api/resources/crm/types/AccountIntegration.d.ts +3 -1
  335. package/api/resources/crm/types/AccountRequest.d.ts +0 -2
  336. package/api/resources/crm/types/Address.d.ts +1 -0
  337. package/api/resources/crm/types/Association.d.ts +1 -0
  338. package/api/resources/crm/types/AssociationSubType.d.ts +1 -0
  339. package/api/resources/crm/types/AssociationType.d.ts +1 -0
  340. package/api/resources/crm/types/AssociationTypeRequestRequest.d.ts +0 -2
  341. package/api/resources/crm/types/AuditLogEvent.d.ts +54 -0
  342. package/api/resources/crm/types/AuditLogEvent.js +5 -0
  343. package/api/resources/crm/types/AuditLogEventEventType.d.ts +33 -0
  344. package/api/resources/crm/types/AuditLogEventEventType.js +5 -0
  345. package/api/resources/crm/types/AuditLogEventRole.d.ts +15 -0
  346. package/api/resources/crm/types/AuditLogEventRole.js +5 -0
  347. package/api/resources/crm/types/CommonModelScopesBodyRequest.d.ts +0 -1
  348. package/api/resources/crm/types/Contact.d.ts +1 -0
  349. package/api/resources/crm/types/CustomObject.d.ts +1 -0
  350. package/api/resources/crm/types/CustomObjectClass.d.ts +1 -0
  351. package/api/resources/crm/types/DataPassthroughRequest.d.ts +0 -3
  352. package/api/resources/crm/types/EmailAddress.d.ts +1 -0
  353. package/api/resources/crm/types/Engagement.d.ts +2 -1
  354. package/api/resources/crm/types/EngagementType.d.ts +1 -0
  355. package/api/resources/crm/types/EventTypeEnum.d.ts +56 -0
  356. package/api/resources/crm/types/EventTypeEnum.js +32 -0
  357. package/api/resources/crm/types/IgnoreCommonModelRequest.d.ts +0 -1
  358. package/api/resources/crm/types/Lead.d.ts +1 -0
  359. package/api/resources/crm/types/LinkedAccountConditionRequest.d.ts +1 -1
  360. package/api/resources/crm/types/MultipartFormFieldRequest.d.ts +2 -2
  361. package/api/resources/crm/types/Note.d.ts +1 -0
  362. package/api/resources/crm/types/ObjectClassDescriptionRequest.d.ts +0 -1
  363. package/api/resources/crm/types/Opportunity.d.ts +1 -0
  364. package/api/resources/crm/types/PaginatedAuditLogEventList.d.ts +9 -0
  365. package/api/resources/crm/types/PaginatedAuditLogEventList.js +5 -0
  366. package/api/resources/crm/types/PhoneNumber.d.ts +1 -0
  367. package/api/resources/crm/types/RemoteFieldClassForCustomObjectClass.d.ts +1 -0
  368. package/api/resources/crm/types/RoleEnum.d.ts +20 -0
  369. package/api/resources/crm/types/RoleEnum.js +14 -0
  370. package/api/resources/crm/types/Stage.d.ts +2 -1
  371. package/api/resources/crm/types/Task.d.ts +2 -1
  372. package/api/resources/crm/types/User.d.ts +2 -1
  373. package/api/resources/crm/types/index.d.ts +6 -0
  374. package/api/resources/crm/types/index.js +6 -0
  375. package/api/resources/filestorage/client/Client.d.ts +3 -0
  376. package/api/resources/filestorage/client/Client.js +39 -34
  377. package/api/resources/filestorage/resources/accountDetails/client/Client.js +1 -1
  378. package/api/resources/filestorage/resources/accountToken/client/Client.js +1 -1
  379. package/api/resources/filestorage/resources/asyncPassthrough/client/Client.js +2 -2
  380. package/api/resources/filestorage/resources/auditTrail/client/Client.d.ts +25 -0
  381. package/api/resources/filestorage/resources/auditTrail/client/Client.js +129 -0
  382. package/api/resources/filestorage/resources/auditTrail/client/index.d.ts +1 -0
  383. package/api/resources/filestorage/resources/auditTrail/client/index.js +17 -0
  384. package/api/resources/filestorage/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +29 -0
  385. package/api/resources/filestorage/resources/auditTrail/client/requests/AuditTrailListRequest.js +5 -0
  386. package/api/resources/filestorage/resources/auditTrail/client/requests/index.d.ts +1 -0
  387. package/api/resources/filestorage/resources/auditTrail/client/requests/index.js +2 -0
  388. package/api/resources/filestorage/resources/auditTrail/index.d.ts +1 -0
  389. package/api/resources/filestorage/resources/auditTrail/index.js +17 -0
  390. package/api/resources/filestorage/resources/availableActions/client/Client.js +1 -1
  391. package/api/resources/filestorage/resources/deleteAccount/client/Client.js +1 -1
  392. package/api/resources/filestorage/resources/drives/client/Client.js +2 -2
  393. package/api/resources/filestorage/resources/files/client/Client.js +5 -5
  394. package/api/resources/filestorage/resources/folders/client/Client.js +4 -4
  395. package/api/resources/filestorage/resources/forceResync/client/Client.js +1 -1
  396. package/api/resources/filestorage/resources/generateKey/client/Client.js +1 -1
  397. package/api/resources/filestorage/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +0 -1
  398. package/api/resources/filestorage/resources/groups/client/Client.js +2 -2
  399. package/api/resources/filestorage/resources/index.d.ts +2 -0
  400. package/api/resources/filestorage/resources/index.js +3 -1
  401. package/api/resources/filestorage/resources/issues/client/Client.js +2 -2
  402. package/api/resources/filestorage/resources/linkToken/client/Client.js +1 -1
  403. package/api/resources/filestorage/resources/linkToken/client/requests/EndUserDetailsRequest.d.ts +4 -4
  404. package/api/resources/filestorage/resources/linkedAccounts/client/Client.js +1 -1
  405. package/api/resources/filestorage/resources/passthrough/client/Client.js +1 -1
  406. package/api/resources/filestorage/resources/regenerateKey/client/Client.js +1 -1
  407. package/api/resources/filestorage/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +0 -1
  408. package/api/resources/filestorage/resources/selectiveSync/client/Client.js +3 -3
  409. package/api/resources/filestorage/resources/syncStatus/client/Client.js +1 -1
  410. package/api/resources/filestorage/resources/users/client/Client.js +2 -2
  411. package/api/resources/filestorage/resources/webhookReceivers/client/Client.js +2 -2
  412. package/api/resources/filestorage/resources/webhookReceivers/client/requests/WebhookReceiverRequest.d.ts +0 -2
  413. package/api/resources/filestorage/types/AccountIntegration.d.ts +3 -1
  414. package/api/resources/filestorage/types/AuditLogEvent.d.ts +54 -0
  415. package/api/resources/filestorage/types/AuditLogEvent.js +5 -0
  416. package/api/resources/filestorage/types/AuditLogEventEventType.d.ts +33 -0
  417. package/api/resources/filestorage/types/AuditLogEventEventType.js +5 -0
  418. package/api/resources/filestorage/types/AuditLogEventRole.d.ts +15 -0
  419. package/api/resources/filestorage/types/AuditLogEventRole.js +5 -0
  420. package/api/resources/filestorage/types/CommonModelScopesBodyRequest.d.ts +0 -1
  421. package/api/resources/filestorage/types/DataPassthroughRequest.d.ts +0 -3
  422. package/api/resources/filestorage/types/Drive.d.ts +2 -1
  423. package/api/resources/filestorage/types/EventTypeEnum.d.ts +56 -0
  424. package/api/resources/filestorage/types/EventTypeEnum.js +32 -0
  425. package/api/resources/filestorage/types/FileDrive.d.ts +8 -0
  426. package/api/resources/filestorage/types/FileDrive.js +5 -0
  427. package/api/resources/filestorage/types/FileFolder.d.ts +8 -0
  428. package/api/resources/filestorage/types/FileFolder.js +5 -0
  429. package/api/resources/filestorage/types/FileRequest.d.ts +2 -2
  430. package/api/resources/filestorage/types/FileRequestDrive.d.ts +8 -0
  431. package/api/resources/filestorage/types/FileRequestDrive.js +5 -0
  432. package/api/resources/filestorage/types/FileRequestFolder.d.ts +8 -0
  433. package/api/resources/filestorage/types/FileRequestFolder.js +5 -0
  434. package/api/resources/filestorage/types/File_.d.ts +4 -3
  435. package/api/resources/filestorage/types/Folder.d.ts +4 -3
  436. package/api/resources/filestorage/types/FolderDrive.d.ts +8 -0
  437. package/api/resources/filestorage/types/FolderDrive.js +5 -0
  438. package/api/resources/filestorage/types/FolderParentFolder.d.ts +8 -0
  439. package/api/resources/filestorage/types/FolderParentFolder.js +5 -0
  440. package/api/resources/filestorage/types/FolderRequest.d.ts +2 -2
  441. package/api/resources/filestorage/types/FolderRequestDrive.d.ts +8 -0
  442. package/api/resources/filestorage/types/FolderRequestDrive.js +5 -0
  443. package/api/resources/filestorage/types/FolderRequestParentFolder.d.ts +8 -0
  444. package/api/resources/filestorage/types/FolderRequestParentFolder.js +5 -0
  445. package/api/resources/filestorage/types/Group.d.ts +2 -1
  446. package/api/resources/filestorage/types/LinkedAccountConditionRequest.d.ts +1 -1
  447. package/api/resources/filestorage/types/MultipartFormFieldRequest.d.ts +2 -2
  448. package/api/resources/filestorage/types/PaginatedAuditLogEventList.d.ts +9 -0
  449. package/api/resources/filestorage/types/PaginatedAuditLogEventList.js +5 -0
  450. package/api/resources/filestorage/types/Permission.d.ts +5 -4
  451. package/api/resources/filestorage/types/PermissionGroup.d.ts +8 -0
  452. package/api/resources/filestorage/types/PermissionGroup.js +5 -0
  453. package/api/resources/filestorage/types/PermissionRequest.d.ts +4 -4
  454. package/api/resources/filestorage/types/PermissionRequestGroup.d.ts +8 -0
  455. package/api/resources/filestorage/types/PermissionRequestGroup.js +5 -0
  456. package/api/resources/filestorage/types/PermissionRequestRolesItem.d.ts +12 -0
  457. package/api/resources/filestorage/types/PermissionRequestRolesItem.js +5 -0
  458. package/api/resources/filestorage/types/PermissionRequestType.d.ts +13 -0
  459. package/api/resources/filestorage/types/PermissionRequestType.js +5 -0
  460. package/api/resources/filestorage/types/PermissionRequestUser.d.ts +8 -0
  461. package/api/resources/filestorage/types/PermissionRequestUser.js +5 -0
  462. package/api/resources/filestorage/types/PermissionRolesItem.d.ts +12 -0
  463. package/api/resources/filestorage/types/PermissionRolesItem.js +5 -0
  464. package/api/resources/filestorage/types/PermissionType.d.ts +13 -0
  465. package/api/resources/filestorage/types/PermissionType.js +5 -0
  466. package/api/resources/filestorage/types/PermissionUser.d.ts +8 -0
  467. package/api/resources/filestorage/types/PermissionUser.js +5 -0
  468. package/api/resources/filestorage/types/RoleEnum.d.ts +20 -0
  469. package/api/resources/filestorage/types/RoleEnum.js +14 -0
  470. package/api/resources/filestorage/types/User.d.ts +2 -1
  471. package/api/resources/filestorage/types/index.d.ts +22 -0
  472. package/api/resources/filestorage/types/index.js +22 -0
  473. package/api/resources/hris/client/Client.d.ts +6 -0
  474. package/api/resources/hris/client/Client.js +64 -54
  475. package/api/resources/hris/resources/accountDetails/client/Client.js +1 -1
  476. package/api/resources/hris/resources/accountToken/client/Client.js +1 -1
  477. package/api/resources/hris/resources/asyncPassthrough/client/Client.js +2 -2
  478. package/api/resources/hris/resources/auditTrail/client/Client.d.ts +25 -0
  479. package/api/resources/hris/resources/auditTrail/client/Client.js +129 -0
  480. package/api/resources/hris/resources/auditTrail/client/index.d.ts +1 -0
  481. package/api/resources/hris/resources/auditTrail/client/index.js +17 -0
  482. package/api/resources/hris/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +29 -0
  483. package/api/resources/hris/resources/auditTrail/client/requests/AuditTrailListRequest.js +5 -0
  484. package/api/resources/hris/resources/auditTrail/client/requests/index.d.ts +1 -0
  485. package/api/resources/hris/resources/auditTrail/client/requests/index.js +2 -0
  486. package/api/resources/hris/resources/auditTrail/index.d.ts +1 -0
  487. package/api/resources/hris/resources/auditTrail/index.js +17 -0
  488. package/api/resources/hris/resources/availableActions/client/Client.js +1 -1
  489. package/api/resources/hris/resources/bankInfo/client/Client.js +2 -2
  490. package/api/resources/hris/resources/benefits/client/Client.js +2 -2
  491. package/api/resources/hris/resources/companies/client/Client.js +2 -2
  492. package/api/resources/hris/resources/deleteAccount/client/Client.js +1 -1
  493. package/api/resources/hris/resources/dependents/client/Client.js +2 -2
  494. package/api/resources/hris/resources/employeePayrollRuns/client/Client.js +2 -2
  495. package/api/resources/hris/resources/employees/client/Client.js +5 -5
  496. package/api/resources/hris/resources/employees/client/requests/IgnoreCommonModelRequest.d.ts +0 -1
  497. package/api/resources/hris/resources/employerBenefits/client/Client.js +2 -2
  498. package/api/resources/hris/resources/employments/client/Client.js +2 -2
  499. package/api/resources/hris/resources/forceResync/client/Client.js +1 -1
  500. package/api/resources/hris/resources/generateKey/client/Client.js +1 -1
  501. package/api/resources/hris/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +0 -1
  502. package/api/resources/hris/resources/groups/client/Client.js +2 -2
  503. package/api/resources/hris/resources/index.d.ts +4 -0
  504. package/api/resources/hris/resources/index.js +5 -1
  505. package/api/resources/hris/resources/issues/client/Client.js +2 -2
  506. package/api/resources/hris/resources/linkToken/client/Client.js +1 -1
  507. package/api/resources/hris/resources/linkToken/client/requests/EndUserDetailsRequest.d.ts +4 -4
  508. package/api/resources/hris/resources/linkedAccounts/client/Client.js +1 -1
  509. package/api/resources/hris/resources/locations/client/Client.js +6 -3
  510. package/api/resources/hris/resources/locations/client/requests/LocationsListRequest.d.ts +8 -0
  511. package/api/resources/hris/resources/passthrough/client/Client.js +1 -1
  512. package/api/resources/hris/resources/payGroups/client/Client.js +2 -2
  513. package/api/resources/hris/resources/payrollRuns/client/Client.js +2 -2
  514. package/api/resources/hris/resources/regenerateKey/client/Client.js +1 -1
  515. package/api/resources/hris/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +0 -1
  516. package/api/resources/hris/resources/selectiveSync/client/Client.js +3 -3
  517. package/api/resources/hris/resources/syncStatus/client/Client.js +1 -1
  518. package/api/resources/hris/resources/teams/client/Client.js +2 -2
  519. package/api/resources/hris/resources/timeOff/client/Client.js +4 -4
  520. package/api/resources/hris/resources/timeOffBalances/client/Client.js +2 -2
  521. package/api/resources/hris/resources/timesheetEntries/client/Client.d.ts +37 -0
  522. package/api/resources/hris/resources/timesheetEntries/client/Client.js +335 -0
  523. package/api/resources/hris/resources/timesheetEntries/client/index.d.ts +1 -0
  524. package/api/resources/hris/resources/timesheetEntries/client/index.js +17 -0
  525. package/api/resources/hris/resources/timesheetEntries/client/requests/TimesheetEntriesListRequest.d.ts +66 -0
  526. package/api/resources/hris/resources/timesheetEntries/client/requests/TimesheetEntriesListRequest.js +5 -0
  527. package/api/resources/hris/resources/timesheetEntries/client/requests/TimesheetEntriesRetrieveRequest.d.ts +9 -0
  528. package/api/resources/hris/resources/timesheetEntries/client/requests/TimesheetEntriesRetrieveRequest.js +5 -0
  529. package/api/resources/{crm/resources/customObjects/client/requests/PatchedCrmCustomObjectEndpointRequest.d.ts → hris/resources/timesheetEntries/client/requests/TimesheetEntryEndpointRequest.d.ts} +2 -2
  530. package/api/resources/hris/resources/timesheetEntries/client/requests/TimesheetEntryEndpointRequest.js +5 -0
  531. package/api/resources/hris/resources/timesheetEntries/client/requests/index.d.ts +3 -0
  532. package/api/resources/hris/resources/timesheetEntries/client/requests/index.js +2 -0
  533. package/api/resources/hris/resources/timesheetEntries/index.d.ts +1 -0
  534. package/api/resources/hris/resources/timesheetEntries/index.js +17 -0
  535. package/api/resources/hris/resources/webhookReceivers/client/Client.js +2 -2
  536. package/api/resources/hris/resources/webhookReceivers/client/requests/WebhookReceiverRequest.d.ts +0 -2
  537. package/api/resources/hris/types/AccountIntegration.d.ts +3 -1
  538. package/api/resources/hris/types/AuditLogEvent.d.ts +54 -0
  539. package/api/resources/hris/types/AuditLogEvent.js +5 -0
  540. package/api/resources/hris/types/AuditLogEventEventType.d.ts +33 -0
  541. package/api/resources/hris/types/AuditLogEventEventType.js +5 -0
  542. package/api/resources/hris/types/AuditLogEventRole.d.ts +15 -0
  543. package/api/resources/hris/types/AuditLogEventRole.js +5 -0
  544. package/api/resources/hris/types/BankInfo.d.ts +2 -1
  545. package/api/resources/hris/types/Benefit.d.ts +2 -1
  546. package/api/resources/hris/types/CommonModelScopesBodyRequest.d.ts +0 -1
  547. package/api/resources/hris/types/Company.d.ts +2 -1
  548. package/api/resources/hris/types/DataPassthroughRequest.d.ts +0 -3
  549. package/api/resources/hris/types/Deduction.d.ts +2 -1
  550. package/api/resources/hris/types/Dependent.d.ts +2 -1
  551. package/api/resources/hris/types/Earning.d.ts +2 -1
  552. package/api/resources/hris/types/Employee.d.ts +1 -0
  553. package/api/resources/hris/types/EmployeePayrollRun.d.ts +2 -1
  554. package/api/resources/hris/types/EmployerBenefit.d.ts +2 -1
  555. package/api/resources/hris/types/Employment.d.ts +2 -1
  556. package/api/resources/hris/types/EventTypeEnum.d.ts +56 -0
  557. package/api/resources/hris/types/EventTypeEnum.js +32 -0
  558. package/api/resources/hris/types/Group.d.ts +2 -1
  559. package/api/resources/hris/types/LinkedAccountConditionRequest.d.ts +1 -1
  560. package/api/resources/hris/types/Location.d.ts +2 -1
  561. package/api/resources/hris/types/LocationsListRequestLocationType.d.ts +8 -0
  562. package/api/resources/hris/types/LocationsListRequestLocationType.js +10 -0
  563. package/api/resources/hris/types/MultipartFormFieldRequest.d.ts +2 -2
  564. package/api/resources/hris/types/PaginatedAuditLogEventList.d.ts +9 -0
  565. package/api/resources/hris/types/PaginatedAuditLogEventList.js +5 -0
  566. package/api/resources/hris/types/PaginatedTimesheetEntryList.d.ts +9 -0
  567. package/api/resources/hris/types/PaginatedTimesheetEntryList.js +5 -0
  568. package/api/resources/hris/types/PayGroup.d.ts +2 -1
  569. package/api/resources/hris/types/PayrollRun.d.ts +2 -1
  570. package/api/resources/hris/types/RoleEnum.d.ts +20 -0
  571. package/api/resources/hris/types/RoleEnum.js +14 -0
  572. package/api/resources/hris/types/Tax.d.ts +2 -1
  573. package/api/resources/hris/types/Team.d.ts +2 -1
  574. package/api/resources/hris/types/TimeOff.d.ts +1 -0
  575. package/api/resources/hris/types/TimeOffBalance.d.ts +2 -1
  576. package/api/resources/hris/types/TimesheetEntriesListRequestOrderBy.d.ts +8 -0
  577. package/api/resources/hris/types/TimesheetEntriesListRequestOrderBy.js +10 -0
  578. package/api/resources/hris/types/TimesheetEntry.d.ts +28 -0
  579. package/api/resources/hris/types/TimesheetEntry.js +5 -0
  580. package/api/resources/hris/types/TimesheetEntryRequest.d.ts +24 -0
  581. package/api/resources/hris/types/TimesheetEntryRequest.js +5 -0
  582. package/api/resources/hris/types/TimesheetEntryResponse.d.ts +10 -0
  583. package/api/resources/hris/types/TimesheetEntryResponse.js +5 -0
  584. package/api/resources/hris/types/index.d.ts +12 -0
  585. package/api/resources/hris/types/index.js +12 -0
  586. package/api/resources/ticketing/client/Client.d.ts +3 -0
  587. package/api/resources/ticketing/client/Client.js +45 -40
  588. package/api/resources/ticketing/resources/accountDetails/client/Client.js +1 -1
  589. package/api/resources/ticketing/resources/accountToken/client/Client.js +1 -1
  590. package/api/resources/ticketing/resources/accounts/client/Client.js +2 -2
  591. package/api/resources/ticketing/resources/asyncPassthrough/client/Client.js +2 -2
  592. package/api/resources/ticketing/resources/attachments/client/Client.js +5 -5
  593. package/api/resources/ticketing/resources/auditTrail/client/Client.d.ts +25 -0
  594. package/api/resources/ticketing/resources/auditTrail/client/Client.js +129 -0
  595. package/api/resources/ticketing/resources/auditTrail/client/index.d.ts +1 -0
  596. package/api/resources/ticketing/resources/auditTrail/client/index.js +17 -0
  597. package/api/resources/ticketing/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +29 -0
  598. package/api/resources/ticketing/resources/auditTrail/client/requests/AuditTrailListRequest.js +5 -0
  599. package/api/resources/ticketing/resources/auditTrail/client/requests/index.d.ts +1 -0
  600. package/api/resources/ticketing/resources/auditTrail/client/requests/index.js +2 -0
  601. package/api/resources/ticketing/resources/auditTrail/index.d.ts +1 -0
  602. package/api/resources/ticketing/resources/auditTrail/index.js +17 -0
  603. package/api/resources/ticketing/resources/availableActions/client/Client.js +1 -1
  604. package/api/resources/ticketing/resources/collections/client/Client.js +3 -3
  605. package/api/resources/ticketing/resources/comments/client/Client.js +4 -4
  606. package/api/resources/ticketing/resources/contacts/client/Client.js +2 -2
  607. package/api/resources/ticketing/resources/deleteAccount/client/Client.js +1 -1
  608. package/api/resources/ticketing/resources/forceResync/client/Client.js +1 -1
  609. package/api/resources/ticketing/resources/generateKey/client/Client.js +1 -1
  610. package/api/resources/ticketing/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +0 -1
  611. package/api/resources/ticketing/resources/index.d.ts +2 -0
  612. package/api/resources/ticketing/resources/index.js +3 -1
  613. package/api/resources/ticketing/resources/issues/client/Client.js +2 -2
  614. package/api/resources/ticketing/resources/linkToken/client/Client.js +1 -1
  615. package/api/resources/ticketing/resources/linkToken/client/requests/EndUserDetailsRequest.d.ts +4 -4
  616. package/api/resources/ticketing/resources/linkedAccounts/client/Client.js +1 -1
  617. package/api/resources/ticketing/resources/passthrough/client/Client.js +1 -1
  618. package/api/resources/ticketing/resources/projects/client/Client.js +3 -3
  619. package/api/resources/ticketing/resources/regenerateKey/client/Client.js +1 -1
  620. package/api/resources/ticketing/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +0 -1
  621. package/api/resources/ticketing/resources/selectiveSync/client/Client.js +3 -3
  622. package/api/resources/ticketing/resources/syncStatus/client/Client.js +1 -1
  623. package/api/resources/ticketing/resources/tags/client/Client.js +2 -2
  624. package/api/resources/ticketing/resources/teams/client/Client.js +2 -2
  625. package/api/resources/ticketing/resources/tickets/client/Client.js +8 -8
  626. package/api/resources/ticketing/resources/users/client/Client.js +2 -2
  627. package/api/resources/ticketing/resources/webhookReceivers/client/Client.js +2 -2
  628. package/api/resources/ticketing/resources/webhookReceivers/client/requests/WebhookReceiverRequest.d.ts +0 -2
  629. package/api/resources/ticketing/types/Account.d.ts +2 -1
  630. package/api/resources/ticketing/types/AccountIntegration.d.ts +3 -1
  631. package/api/resources/ticketing/types/Attachment.d.ts +1 -0
  632. package/api/resources/ticketing/types/AuditLogEvent.d.ts +54 -0
  633. package/api/resources/ticketing/types/AuditLogEvent.js +5 -0
  634. package/api/resources/ticketing/types/AuditLogEventEventType.d.ts +33 -0
  635. package/api/resources/ticketing/types/AuditLogEventEventType.js +5 -0
  636. package/api/resources/ticketing/types/AuditLogEventRole.d.ts +15 -0
  637. package/api/resources/ticketing/types/AuditLogEventRole.js +5 -0
  638. package/api/resources/ticketing/types/Collection.d.ts +2 -1
  639. package/api/resources/ticketing/types/Comment.d.ts +1 -0
  640. package/api/resources/ticketing/types/CommonModelScopesBodyRequest.d.ts +0 -1
  641. package/api/resources/ticketing/types/Contact.d.ts +2 -1
  642. package/api/resources/ticketing/types/DataPassthroughRequest.d.ts +0 -3
  643. package/api/resources/ticketing/types/EventTypeEnum.d.ts +56 -0
  644. package/api/resources/ticketing/types/EventTypeEnum.js +32 -0
  645. package/api/resources/ticketing/types/LinkedAccountConditionRequest.d.ts +1 -1
  646. package/api/resources/ticketing/types/MultipartFormFieldRequest.d.ts +2 -2
  647. package/api/resources/ticketing/types/PaginatedAuditLogEventList.d.ts +9 -0
  648. package/api/resources/ticketing/types/PaginatedAuditLogEventList.js +5 -0
  649. package/api/resources/ticketing/types/Project.d.ts +2 -1
  650. package/api/resources/ticketing/types/RoleEnum.d.ts +20 -0
  651. package/api/resources/ticketing/types/RoleEnum.js +14 -0
  652. package/api/resources/ticketing/types/Tag.d.ts +2 -1
  653. package/api/resources/ticketing/types/Team.d.ts +2 -1
  654. package/api/resources/ticketing/types/Ticket.d.ts +1 -0
  655. package/api/resources/ticketing/types/User.d.ts +2 -1
  656. package/api/resources/ticketing/types/index.d.ts +6 -0
  657. package/api/resources/ticketing/types/index.js +6 -0
  658. package/dist/api/resources/accounting/client/Client.d.ts +6 -0
  659. package/dist/api/resources/accounting/client/Client.js +76 -66
  660. package/dist/api/resources/accounting/resources/accountDetails/client/Client.js +1 -1
  661. package/dist/api/resources/accounting/resources/accountToken/client/Client.js +1 -1
  662. package/dist/api/resources/accounting/resources/accountingPeriods/client/Client.d.ts +29 -0
  663. package/dist/api/resources/accounting/resources/accountingPeriods/client/Client.js +179 -0
  664. package/dist/api/resources/accounting/resources/accountingPeriods/client/index.d.ts +1 -0
  665. package/dist/api/resources/accounting/resources/accountingPeriods/client/index.js +17 -0
  666. package/dist/api/resources/accounting/resources/accountingPeriods/client/requests/AccountingPeriodsListRequest.d.ts +21 -0
  667. package/dist/api/resources/accounting/resources/accountingPeriods/client/requests/AccountingPeriodsListRequest.js +5 -0
  668. package/dist/api/resources/accounting/resources/accountingPeriods/client/requests/AccountingPeriodsRetrieveRequest.d.ts +9 -0
  669. package/dist/api/resources/accounting/resources/accountingPeriods/client/requests/AccountingPeriodsRetrieveRequest.js +5 -0
  670. package/dist/api/resources/accounting/resources/accountingPeriods/client/requests/index.d.ts +2 -0
  671. package/dist/api/resources/accounting/resources/accountingPeriods/client/requests/index.js +2 -0
  672. package/dist/api/resources/accounting/resources/accountingPeriods/index.d.ts +1 -0
  673. package/dist/api/resources/accounting/resources/accountingPeriods/index.js +17 -0
  674. package/dist/api/resources/accounting/resources/accounts/client/Client.js +4 -4
  675. package/dist/api/resources/accounting/resources/addresses/client/Client.js +1 -1
  676. package/dist/api/resources/accounting/resources/asyncPassthrough/client/Client.js +2 -2
  677. package/dist/api/resources/accounting/resources/attachments/client/Client.js +4 -4
  678. package/dist/api/resources/accounting/resources/auditTrail/client/Client.d.ts +25 -0
  679. package/dist/api/resources/accounting/resources/auditTrail/client/Client.js +129 -0
  680. package/dist/api/resources/accounting/resources/auditTrail/client/index.d.ts +1 -0
  681. package/dist/api/resources/accounting/resources/auditTrail/client/index.js +17 -0
  682. package/dist/api/resources/accounting/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +29 -0
  683. package/dist/api/resources/accounting/resources/auditTrail/client/requests/AuditTrailListRequest.js +5 -0
  684. package/dist/api/resources/accounting/resources/auditTrail/client/requests/index.d.ts +1 -0
  685. package/dist/api/resources/accounting/resources/auditTrail/client/requests/index.js +2 -0
  686. package/dist/api/resources/accounting/resources/auditTrail/index.d.ts +1 -0
  687. package/dist/api/resources/accounting/resources/auditTrail/index.js +17 -0
  688. package/dist/api/resources/accounting/resources/availableActions/client/Client.js +1 -1
  689. package/dist/api/resources/accounting/resources/balanceSheets/client/Client.js +2 -2
  690. package/dist/api/resources/accounting/resources/cashFlowStatements/client/Client.js +2 -2
  691. package/dist/api/resources/accounting/resources/companyInfo/client/Client.js +2 -2
  692. package/dist/api/resources/accounting/resources/contacts/client/Client.js +4 -4
  693. package/dist/api/resources/accounting/resources/creditNotes/client/Client.js +2 -2
  694. package/dist/api/resources/accounting/resources/deleteAccount/client/Client.js +1 -1
  695. package/dist/api/resources/accounting/resources/expenses/client/Client.js +4 -4
  696. package/dist/api/resources/accounting/resources/forceResync/client/Client.js +1 -1
  697. package/dist/api/resources/accounting/resources/generateKey/client/Client.js +1 -1
  698. package/dist/api/resources/accounting/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +0 -1
  699. package/dist/api/resources/accounting/resources/incomeStatements/client/Client.js +2 -2
  700. package/dist/api/resources/accounting/resources/index.d.ts +4 -0
  701. package/dist/api/resources/accounting/resources/index.js +5 -1
  702. package/dist/api/resources/accounting/resources/invoices/client/Client.js +4 -4
  703. package/dist/api/resources/accounting/resources/issues/client/Client.js +2 -2
  704. package/dist/api/resources/accounting/resources/items/client/Client.js +2 -2
  705. package/dist/api/resources/accounting/resources/journalEntries/client/Client.js +4 -4
  706. package/dist/api/resources/accounting/resources/linkToken/client/Client.js +1 -1
  707. package/dist/api/resources/accounting/resources/linkToken/client/requests/EndUserDetailsRequest.d.ts +4 -4
  708. package/dist/api/resources/accounting/resources/linkedAccounts/client/Client.js +1 -1
  709. package/dist/api/resources/accounting/resources/passthrough/client/Client.js +1 -1
  710. package/dist/api/resources/accounting/resources/payments/client/Client.js +4 -4
  711. package/dist/api/resources/accounting/resources/phoneNumbers/client/Client.js +1 -1
  712. package/dist/api/resources/accounting/resources/purchaseOrders/client/Client.js +4 -4
  713. package/dist/api/resources/accounting/resources/regenerateKey/client/Client.js +1 -1
  714. package/dist/api/resources/accounting/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +0 -1
  715. package/dist/api/resources/accounting/resources/selectiveSync/client/Client.js +3 -3
  716. package/dist/api/resources/accounting/resources/syncStatus/client/Client.js +1 -1
  717. package/dist/api/resources/accounting/resources/taxRates/client/Client.js +2 -2
  718. package/dist/api/resources/accounting/resources/trackingCategories/client/Client.js +2 -2
  719. package/dist/api/resources/accounting/resources/transactions/client/Client.js +2 -2
  720. package/dist/api/resources/accounting/resources/vendorCredits/client/Client.js +2 -2
  721. package/dist/api/resources/accounting/resources/webhookReceivers/client/Client.js +2 -2
  722. package/dist/api/resources/accounting/resources/webhookReceivers/client/requests/WebhookReceiverRequest.d.ts +0 -2
  723. package/dist/api/resources/accounting/types/Account.d.ts +10 -2
  724. package/dist/api/resources/accounting/types/AccountIntegration.d.ts +3 -1
  725. package/dist/api/resources/accounting/types/AccountRequest.d.ts +8 -1
  726. package/dist/api/resources/accounting/types/AccountingAttachment.d.ts +2 -1
  727. package/dist/api/resources/accounting/types/AccountingPeriod.d.ts +25 -0
  728. package/dist/api/resources/accounting/types/AccountingPeriod.js +5 -0
  729. package/dist/api/resources/accounting/types/AccountingPeriodStatus.d.ts +5 -0
  730. package/dist/api/resources/accounting/types/AccountingPeriodStatus.js +5 -0
  731. package/dist/api/resources/accounting/types/AccountingPeriodStatusEnum.d.ts +12 -0
  732. package/dist/api/resources/accounting/types/AccountingPeriodStatusEnum.js +10 -0
  733. package/dist/api/resources/accounting/types/AccountingPhoneNumber.d.ts +1 -0
  734. package/dist/api/resources/accounting/types/Address.d.ts +1 -0
  735. package/dist/api/resources/accounting/types/AddressRequest.d.ts +287 -0
  736. package/dist/api/resources/accounting/types/AddressRequest.js +5 -0
  737. package/dist/api/resources/accounting/types/AddressRequestCountry.d.ts +258 -0
  738. package/dist/api/resources/accounting/types/AddressRequestCountry.js +5 -0
  739. package/dist/api/resources/accounting/types/AddressRequestType.d.ts +11 -0
  740. package/dist/api/resources/accounting/types/AddressRequestType.js +5 -0
  741. package/dist/api/resources/accounting/types/AuditLogEvent.d.ts +54 -0
  742. package/dist/api/resources/accounting/types/AuditLogEvent.js +5 -0
  743. package/dist/api/resources/accounting/types/AuditLogEventEventType.d.ts +33 -0
  744. package/dist/api/resources/accounting/types/AuditLogEventEventType.js +5 -0
  745. package/dist/api/resources/accounting/types/AuditLogEventRole.d.ts +15 -0
  746. package/dist/api/resources/accounting/types/AuditLogEventRole.js +5 -0
  747. package/dist/api/resources/accounting/types/BalanceSheet.d.ts +2 -1
  748. package/dist/api/resources/accounting/types/CashFlowStatement.d.ts +2 -1
  749. package/dist/api/resources/accounting/types/CommonModelScopesBodyRequest.d.ts +0 -1
  750. package/dist/api/resources/accounting/types/CompanyInfo.d.ts +3 -2
  751. package/dist/api/resources/accounting/types/Contact.d.ts +6 -3
  752. package/{api/resources/accounting/types/CreditNoteApplyLineInvoice.d.ts → dist/api/resources/accounting/types/ContactAddressesItem.d.ts} +1 -1
  753. package/dist/api/resources/accounting/types/ContactAddressesItem.js +5 -0
  754. package/dist/api/resources/accounting/types/ContactRequest.d.ts +4 -2
  755. package/{api/resources/accounting/types/VendorCreditApplyLineInvoice.d.ts → dist/api/resources/accounting/types/ContactRequestAddressesItem.d.ts} +1 -1
  756. package/dist/api/resources/accounting/types/ContactRequestAddressesItem.js +5 -0
  757. package/dist/api/resources/accounting/types/CreditNote.d.ts +8 -5
  758. package/dist/api/resources/accounting/types/CreditNoteAccountingPeriod.d.ts +8 -0
  759. package/dist/api/resources/accounting/types/CreditNoteAccountingPeriod.js +5 -0
  760. package/dist/api/resources/accounting/types/CreditNoteCompany.d.ts +8 -0
  761. package/dist/api/resources/accounting/types/CreditNoteCompany.js +5 -0
  762. package/dist/api/resources/accounting/types/CreditNoteContact.d.ts +8 -0
  763. package/dist/api/resources/accounting/types/CreditNoteContact.js +5 -0
  764. package/dist/api/resources/accounting/types/CreditNoteLineItem.d.ts +1 -0
  765. package/dist/api/resources/accounting/types/CreditNotesListRequestExpand.d.ts +57 -9
  766. package/dist/api/resources/accounting/types/CreditNotesListRequestExpand.js +56 -8
  767. package/dist/api/resources/accounting/types/CreditNotesRetrieveRequestExpand.d.ts +57 -9
  768. package/dist/api/resources/accounting/types/CreditNotesRetrieveRequestExpand.js +56 -8
  769. package/dist/api/resources/accounting/types/DataPassthroughRequest.d.ts +0 -3
  770. package/dist/api/resources/accounting/types/EventTypeEnum.d.ts +56 -0
  771. package/dist/api/resources/accounting/types/EventTypeEnum.js +32 -0
  772. package/dist/api/resources/accounting/types/Expense.d.ts +7 -2
  773. package/dist/api/resources/accounting/types/ExpenseAccountingPeriod.d.ts +8 -0
  774. package/dist/api/resources/accounting/types/ExpenseAccountingPeriod.js +5 -0
  775. package/dist/api/resources/accounting/types/ExpenseLine.d.ts +3 -0
  776. package/dist/api/resources/accounting/types/ExpenseRequest.d.ts +5 -1
  777. package/dist/api/resources/accounting/types/ExpenseRequestAccountingPeriod.d.ts +8 -0
  778. package/dist/api/resources/accounting/types/ExpenseRequestAccountingPeriod.js +5 -0
  779. package/dist/api/resources/accounting/types/ExpensesListRequestExpand.d.ts +17 -1
  780. package/dist/api/resources/accounting/types/ExpensesListRequestExpand.js +16 -0
  781. package/dist/api/resources/accounting/types/ExpensesRetrieveRequestExpand.d.ts +17 -1
  782. package/dist/api/resources/accounting/types/ExpensesRetrieveRequestExpand.js +16 -0
  783. package/dist/api/resources/accounting/types/IncomeStatement.d.ts +2 -1
  784. package/dist/api/resources/accounting/types/Invoice.d.ts +4 -0
  785. package/dist/api/resources/accounting/types/InvoiceAccountingPeriod.d.ts +8 -0
  786. package/dist/api/resources/accounting/types/InvoiceAccountingPeriod.js +5 -0
  787. package/dist/api/resources/accounting/types/InvoiceLineItem.d.ts +3 -0
  788. package/dist/api/resources/accounting/types/InvoicePurchaseOrdersItem.d.ts +5 -0
  789. package/dist/api/resources/accounting/types/InvoicePurchaseOrdersItem.js +5 -0
  790. package/dist/api/resources/accounting/types/InvoicesListRequestExpand.d.ts +97 -1
  791. package/dist/api/resources/accounting/types/InvoicesListRequestExpand.js +96 -0
  792. package/dist/api/resources/accounting/types/InvoicesRetrieveRequestExpand.d.ts +97 -1
  793. package/dist/api/resources/accounting/types/InvoicesRetrieveRequestExpand.js +96 -0
  794. package/dist/api/resources/accounting/types/Item.d.ts +2 -1
  795. package/dist/api/resources/accounting/types/JournalEntriesListRequestExpand.d.ts +17 -1
  796. package/dist/api/resources/accounting/types/JournalEntriesListRequestExpand.js +16 -0
  797. package/dist/api/resources/accounting/types/JournalEntriesRetrieveRequestExpand.d.ts +17 -1
  798. package/dist/api/resources/accounting/types/JournalEntriesRetrieveRequestExpand.js +16 -0
  799. package/dist/api/resources/accounting/types/JournalEntry.d.ts +8 -1
  800. package/dist/api/resources/accounting/types/JournalEntryAccountingPeriod.d.ts +8 -0
  801. package/dist/api/resources/accounting/types/JournalEntryAccountingPeriod.js +5 -0
  802. package/dist/api/resources/accounting/types/JournalLine.d.ts +3 -0
  803. package/dist/api/resources/accounting/types/LinkedAccountConditionRequest.d.ts +1 -1
  804. package/dist/api/resources/accounting/types/MultipartFormFieldRequest.d.ts +2 -2
  805. package/dist/api/resources/accounting/types/PaginatedAccountingPeriodList.d.ts +9 -0
  806. package/dist/api/resources/accounting/types/PaginatedAccountingPeriodList.js +5 -0
  807. package/dist/api/resources/accounting/types/PaginatedAuditLogEventList.d.ts +9 -0
  808. package/dist/api/resources/accounting/types/PaginatedAuditLogEventList.js +5 -0
  809. package/dist/api/resources/accounting/types/Payment.d.ts +4 -2
  810. package/dist/api/resources/accounting/types/PaymentAccountingPeriod.d.ts +8 -0
  811. package/dist/api/resources/accounting/types/PaymentAccountingPeriod.js +5 -0
  812. package/dist/api/resources/accounting/types/PaymentRequest.d.ts +2 -1
  813. package/dist/api/resources/accounting/types/PaymentRequestAccountingPeriod.d.ts +8 -0
  814. package/dist/api/resources/accounting/types/PaymentRequestAccountingPeriod.js +5 -0
  815. package/dist/api/resources/accounting/types/PaymentsListRequestExpand.d.ts +17 -17
  816. package/dist/api/resources/accounting/types/PaymentsListRequestExpand.js +16 -16
  817. package/dist/api/resources/accounting/types/PaymentsRetrieveRequestExpand.d.ts +17 -17
  818. package/dist/api/resources/accounting/types/PaymentsRetrieveRequestExpand.js +16 -16
  819. package/dist/api/resources/accounting/types/PurchaseOrder.d.ts +7 -2
  820. package/dist/api/resources/accounting/types/PurchaseOrderAccountingPeriod.d.ts +8 -0
  821. package/dist/api/resources/accounting/types/PurchaseOrderAccountingPeriod.js +5 -0
  822. package/dist/api/resources/accounting/types/PurchaseOrderLineItem.d.ts +3 -0
  823. package/dist/api/resources/accounting/types/PurchaseOrdersListRequestExpand.d.ts +33 -1
  824. package/dist/api/resources/accounting/types/PurchaseOrdersListRequestExpand.js +32 -0
  825. package/dist/api/resources/accounting/types/PurchaseOrdersRetrieveRequestExpand.d.ts +33 -1
  826. package/dist/api/resources/accounting/types/PurchaseOrdersRetrieveRequestExpand.js +32 -0
  827. package/dist/api/resources/accounting/types/ReportItem.d.ts +1 -0
  828. package/dist/api/resources/accounting/types/RoleEnum.d.ts +20 -0
  829. package/dist/api/resources/accounting/types/RoleEnum.js +14 -0
  830. package/dist/api/resources/accounting/types/TaxRate.d.ts +2 -1
  831. package/dist/api/resources/accounting/types/TrackingCategory.d.ts +3 -2
  832. package/dist/api/resources/accounting/types/Transaction.d.ts +12 -2
  833. package/dist/api/resources/accounting/types/TransactionAccountingPeriod.d.ts +8 -0
  834. package/dist/api/resources/accounting/types/TransactionAccountingPeriod.js +5 -0
  835. package/dist/api/resources/accounting/types/TransactionLineItem.d.ts +3 -0
  836. package/dist/api/resources/accounting/types/TransactionsListRequestExpand.d.ts +17 -1
  837. package/dist/api/resources/accounting/types/TransactionsListRequestExpand.js +16 -0
  838. package/dist/api/resources/accounting/types/TransactionsRetrieveRequestExpand.d.ts +17 -1
  839. package/dist/api/resources/accounting/types/TransactionsRetrieveRequestExpand.js +16 -0
  840. package/dist/api/resources/accounting/types/VendorCredit.d.ts +5 -3
  841. package/dist/api/resources/accounting/types/VendorCreditAccountingPeriod.d.ts +8 -0
  842. package/dist/api/resources/accounting/types/VendorCreditAccountingPeriod.js +5 -0
  843. package/dist/api/resources/accounting/types/VendorCreditLine.d.ts +1 -0
  844. package/dist/api/resources/accounting/types/VendorCreditsListRequestExpand.d.ts +17 -17
  845. package/dist/api/resources/accounting/types/VendorCreditsListRequestExpand.js +16 -16
  846. package/dist/api/resources/accounting/types/VendorCreditsRetrieveRequestExpand.d.ts +17 -17
  847. package/dist/api/resources/accounting/types/VendorCreditsRetrieveRequestExpand.js +16 -16
  848. package/dist/api/resources/accounting/types/index.d.ts +28 -9
  849. package/dist/api/resources/accounting/types/index.js +28 -9
  850. package/dist/api/resources/ats/client/Client.d.ts +3 -0
  851. package/dist/api/resources/ats/client/Client.js +53 -48
  852. package/dist/api/resources/ats/resources/accountDetails/client/Client.js +1 -1
  853. package/dist/api/resources/ats/resources/accountToken/client/Client.js +1 -1
  854. package/dist/api/resources/ats/resources/activities/client/Client.js +4 -4
  855. package/dist/api/resources/ats/resources/applications/client/Client.js +5 -5
  856. package/dist/api/resources/ats/resources/applications/client/requests/UpdateApplicationStageRequest.d.ts +0 -1
  857. package/dist/api/resources/ats/resources/asyncPassthrough/client/Client.js +2 -2
  858. package/dist/api/resources/ats/resources/attachments/client/Client.js +4 -4
  859. package/dist/api/resources/ats/resources/auditTrail/client/Client.d.ts +25 -0
  860. package/dist/api/resources/ats/resources/auditTrail/client/Client.js +129 -0
  861. package/dist/api/resources/ats/resources/auditTrail/client/index.d.ts +1 -0
  862. package/dist/api/resources/ats/resources/auditTrail/client/index.js +17 -0
  863. package/dist/api/resources/ats/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +29 -0
  864. package/dist/api/resources/ats/resources/auditTrail/client/requests/AuditTrailListRequest.js +5 -0
  865. package/dist/api/resources/ats/resources/auditTrail/client/requests/index.d.ts +1 -0
  866. package/dist/api/resources/ats/resources/auditTrail/client/requests/index.js +2 -0
  867. package/dist/api/resources/ats/resources/auditTrail/index.d.ts +1 -0
  868. package/dist/api/resources/ats/resources/auditTrail/index.js +17 -0
  869. package/dist/api/resources/ats/resources/availableActions/client/Client.js +1 -1
  870. package/dist/api/resources/ats/resources/candidates/client/Client.js +7 -7
  871. package/dist/api/resources/ats/resources/candidates/client/requests/IgnoreCommonModelRequest.d.ts +0 -1
  872. package/dist/api/resources/ats/resources/deleteAccount/client/Client.js +1 -1
  873. package/dist/api/resources/ats/resources/departments/client/Client.js +2 -2
  874. package/dist/api/resources/ats/resources/eeocs/client/Client.js +2 -2
  875. package/dist/api/resources/ats/resources/forceResync/client/Client.js +1 -1
  876. package/dist/api/resources/ats/resources/generateKey/client/Client.js +1 -1
  877. package/dist/api/resources/ats/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +0 -1
  878. package/dist/api/resources/ats/resources/index.d.ts +2 -0
  879. package/dist/api/resources/ats/resources/index.js +3 -1
  880. package/dist/api/resources/ats/resources/interviews/client/Client.js +8 -5
  881. package/dist/api/resources/ats/resources/interviews/client/requests/InterviewsListRequest.d.ts +4 -0
  882. package/dist/api/resources/ats/resources/issues/client/Client.js +2 -2
  883. package/dist/api/resources/ats/resources/jobInterviewStages/client/Client.js +2 -2
  884. package/dist/api/resources/ats/resources/jobs/client/Client.d.ts +4 -0
  885. package/dist/api/resources/ats/resources/jobs/client/Client.js +70 -2
  886. package/dist/api/resources/ats/resources/jobs/client/requests/JobsScreeningQuestionsListRequest.d.ts +26 -0
  887. package/dist/api/resources/ats/resources/jobs/client/requests/JobsScreeningQuestionsListRequest.js +5 -0
  888. package/dist/api/resources/ats/resources/jobs/client/requests/index.d.ts +1 -0
  889. package/dist/api/resources/ats/resources/linkToken/client/Client.js +1 -1
  890. package/dist/api/resources/ats/resources/linkToken/client/requests/EndUserDetailsRequest.d.ts +4 -4
  891. package/dist/api/resources/ats/resources/linkedAccounts/client/Client.js +1 -1
  892. package/dist/api/resources/ats/resources/offers/client/Client.js +2 -2
  893. package/dist/api/resources/ats/resources/offices/client/Client.js +2 -2
  894. package/dist/api/resources/ats/resources/passthrough/client/Client.js +1 -1
  895. package/dist/api/resources/ats/resources/regenerateKey/client/Client.js +1 -1
  896. package/dist/api/resources/ats/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +0 -1
  897. package/dist/api/resources/ats/resources/rejectReasons/client/Client.js +2 -2
  898. package/dist/api/resources/ats/resources/scorecards/client/Client.js +2 -2
  899. package/dist/api/resources/ats/resources/selectiveSync/client/Client.js +3 -3
  900. package/dist/api/resources/ats/resources/syncStatus/client/Client.js +1 -1
  901. package/dist/api/resources/ats/resources/tags/client/Client.js +1 -1
  902. package/dist/api/resources/ats/resources/users/client/Client.js +2 -2
  903. package/dist/api/resources/ats/resources/webhookReceivers/client/Client.js +2 -2
  904. package/dist/api/resources/ats/resources/webhookReceivers/client/requests/WebhookReceiverRequest.d.ts +0 -2
  905. package/dist/api/resources/ats/types/AccountIntegration.d.ts +3 -1
  906. package/dist/api/resources/ats/types/Activity.d.ts +2 -1
  907. package/dist/api/resources/ats/types/Application.d.ts +1 -0
  908. package/dist/api/resources/ats/types/ApplicationRequest.d.ts +0 -1
  909. package/dist/api/resources/ats/types/Attachment.d.ts +1 -0
  910. package/dist/api/resources/ats/types/AuditLogEvent.d.ts +54 -0
  911. package/dist/api/resources/ats/types/AuditLogEvent.js +5 -0
  912. package/dist/api/resources/ats/types/AuditLogEventEventType.d.ts +33 -0
  913. package/dist/api/resources/ats/types/AuditLogEventEventType.js +5 -0
  914. package/dist/api/resources/ats/types/AuditLogEventRole.d.ts +15 -0
  915. package/dist/api/resources/ats/types/AuditLogEventRole.js +5 -0
  916. package/dist/api/resources/ats/types/Candidate.d.ts +1 -0
  917. package/dist/api/resources/ats/types/CandidateRequest.d.ts +0 -1
  918. package/dist/api/resources/ats/types/CommonModelScopesBodyRequest.d.ts +0 -1
  919. package/dist/api/resources/ats/types/DataPassthroughRequest.d.ts +0 -3
  920. package/dist/api/resources/ats/types/Department.d.ts +2 -1
  921. package/dist/api/resources/ats/types/Eeoc.d.ts +2 -1
  922. package/dist/api/resources/ats/types/EmailAddress.d.ts +1 -0
  923. package/dist/api/resources/ats/types/EventTypeEnum.d.ts +56 -0
  924. package/dist/api/resources/ats/types/EventTypeEnum.js +32 -0
  925. package/dist/api/resources/ats/types/Job.d.ts +2 -1
  926. package/dist/api/resources/ats/types/JobInterviewStage.d.ts +2 -1
  927. package/dist/api/resources/ats/types/JobsScreeningQuestionsListRequestExpand.d.ts +9 -0
  928. package/dist/api/resources/ats/types/JobsScreeningQuestionsListRequestExpand.js +11 -0
  929. package/dist/api/resources/ats/types/LinkedAccountConditionRequest.d.ts +1 -1
  930. package/dist/api/resources/ats/types/MultipartFormFieldRequest.d.ts +2 -2
  931. package/dist/api/resources/ats/types/Offer.d.ts +2 -1
  932. package/dist/api/resources/ats/types/Office.d.ts +2 -1
  933. package/dist/api/resources/ats/types/PaginatedAuditLogEventList.d.ts +9 -0
  934. package/dist/api/resources/ats/types/PaginatedAuditLogEventList.js +5 -0
  935. package/dist/api/resources/ats/types/PaginatedScreeningQuestionList.d.ts +9 -0
  936. package/dist/api/resources/ats/types/PaginatedScreeningQuestionList.js +5 -0
  937. package/dist/api/resources/ats/types/PatchedCandidateRequest.d.ts +0 -1
  938. package/dist/api/resources/ats/types/PhoneNumber.d.ts +1 -0
  939. package/dist/api/resources/ats/types/RejectReason.d.ts +2 -1
  940. package/dist/api/resources/ats/types/RemoteUser.d.ts +2 -1
  941. package/dist/api/resources/ats/types/RoleEnum.d.ts +20 -0
  942. package/dist/api/resources/ats/types/RoleEnum.js +14 -0
  943. package/dist/api/resources/ats/types/ScheduledInterview.d.ts +2 -1
  944. package/dist/api/resources/ats/types/Scorecard.d.ts +2 -1
  945. package/dist/api/resources/ats/types/ScreeningQuestion.d.ts +42 -0
  946. package/dist/api/resources/ats/types/ScreeningQuestion.js +5 -0
  947. package/dist/api/resources/ats/types/ScreeningQuestionJob.d.ts +8 -0
  948. package/dist/api/resources/ats/types/ScreeningQuestionJob.js +5 -0
  949. package/dist/api/resources/ats/types/ScreeningQuestionOption.d.ts +21 -0
  950. package/dist/api/resources/ats/types/ScreeningQuestionOption.js +5 -0
  951. package/dist/api/resources/ats/types/ScreeningQuestionType.d.ts +17 -0
  952. package/dist/api/resources/ats/types/ScreeningQuestionType.js +5 -0
  953. package/dist/api/resources/ats/types/Tag.d.ts +2 -1
  954. package/dist/api/resources/ats/types/TypeEnum.d.ts +24 -0
  955. package/dist/api/resources/ats/types/TypeEnum.js +16 -0
  956. package/dist/api/resources/ats/types/Url.d.ts +1 -0
  957. package/dist/api/resources/ats/types/index.d.ts +13 -0
  958. package/dist/api/resources/ats/types/index.js +13 -0
  959. package/dist/api/resources/crm/client/Client.d.ts +3 -0
  960. package/dist/api/resources/crm/client/Client.js +55 -50
  961. package/dist/api/resources/crm/resources/accountDetails/client/Client.js +1 -1
  962. package/dist/api/resources/crm/resources/accountToken/client/Client.js +1 -1
  963. package/dist/api/resources/crm/resources/accounts/client/Client.js +7 -7
  964. package/dist/api/resources/crm/resources/associationTypes/client/Client.js +4 -4
  965. package/dist/api/resources/crm/resources/associations/client/Client.js +2 -2
  966. package/dist/api/resources/crm/resources/asyncPassthrough/client/Client.js +2 -2
  967. package/dist/api/resources/crm/resources/auditTrail/client/Client.d.ts +25 -0
  968. package/dist/api/resources/crm/resources/auditTrail/client/Client.js +129 -0
  969. package/dist/api/resources/crm/resources/auditTrail/client/index.d.ts +1 -0
  970. package/dist/api/resources/crm/resources/auditTrail/client/index.js +17 -0
  971. package/dist/api/resources/crm/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +29 -0
  972. package/dist/api/resources/crm/resources/auditTrail/client/requests/AuditTrailListRequest.js +5 -0
  973. package/dist/api/resources/crm/resources/auditTrail/client/requests/index.d.ts +1 -0
  974. package/dist/api/resources/crm/resources/auditTrail/client/requests/index.js +2 -0
  975. package/dist/api/resources/crm/resources/auditTrail/index.d.ts +1 -0
  976. package/dist/api/resources/crm/resources/auditTrail/index.js +17 -0
  977. package/dist/api/resources/crm/resources/availableActions/client/Client.js +1 -1
  978. package/dist/api/resources/crm/resources/contacts/client/Client.js +8 -8
  979. package/dist/api/resources/crm/resources/customObjectClasses/client/Client.d.ts +0 -4
  980. package/dist/api/resources/crm/resources/customObjectClasses/client/Client.js +2 -61
  981. package/dist/api/resources/crm/resources/customObjectClasses/client/requests/index.d.ts +0 -1
  982. package/dist/api/resources/crm/resources/customObjects/client/Client.d.ts +0 -4
  983. package/dist/api/resources/crm/resources/customObjects/client/Client.js +5 -67
  984. package/dist/api/resources/crm/resources/customObjects/client/requests/index.d.ts +0 -1
  985. package/dist/api/resources/crm/resources/deleteAccount/client/Client.js +1 -1
  986. package/dist/api/resources/crm/resources/engagementTypes/client/Client.js +3 -3
  987. package/dist/api/resources/crm/resources/engagements/client/Client.js +7 -7
  988. package/dist/api/resources/crm/resources/forceResync/client/Client.js +1 -1
  989. package/dist/api/resources/crm/resources/generateKey/client/Client.js +1 -1
  990. package/dist/api/resources/crm/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +0 -1
  991. package/dist/api/resources/crm/resources/index.d.ts +2 -0
  992. package/dist/api/resources/crm/resources/index.js +3 -1
  993. package/dist/api/resources/crm/resources/issues/client/Client.js +2 -2
  994. package/dist/api/resources/crm/resources/leads/client/Client.js +5 -5
  995. package/dist/api/resources/crm/resources/linkToken/client/Client.js +1 -1
  996. package/dist/api/resources/crm/resources/linkToken/client/requests/EndUserDetailsRequest.d.ts +4 -4
  997. package/dist/api/resources/crm/resources/linkedAccounts/client/Client.js +1 -1
  998. package/dist/api/resources/crm/resources/notes/client/Client.js +5 -5
  999. package/dist/api/resources/crm/resources/opportunities/client/Client.js +7 -7
  1000. package/dist/api/resources/crm/resources/passthrough/client/Client.js +1 -1
  1001. package/dist/api/resources/crm/resources/regenerateKey/client/Client.js +1 -1
  1002. package/dist/api/resources/crm/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +0 -1
  1003. package/dist/api/resources/crm/resources/selectiveSync/client/Client.js +3 -3
  1004. package/dist/api/resources/crm/resources/stages/client/Client.js +3 -3
  1005. package/dist/api/resources/crm/resources/syncStatus/client/Client.js +1 -1
  1006. package/dist/api/resources/crm/resources/tasks/client/Client.js +7 -7
  1007. package/dist/api/resources/crm/resources/users/client/Client.js +4 -4
  1008. package/dist/api/resources/crm/resources/webhookReceivers/client/Client.js +2 -2
  1009. package/dist/api/resources/crm/resources/webhookReceivers/client/requests/WebhookReceiverRequest.d.ts +0 -2
  1010. package/dist/api/resources/crm/types/Account.d.ts +1 -0
  1011. package/dist/api/resources/crm/types/AccountIntegration.d.ts +3 -1
  1012. package/dist/api/resources/crm/types/AccountRequest.d.ts +0 -2
  1013. package/dist/api/resources/crm/types/Address.d.ts +1 -0
  1014. package/dist/api/resources/crm/types/Association.d.ts +1 -0
  1015. package/dist/api/resources/crm/types/AssociationSubType.d.ts +1 -0
  1016. package/dist/api/resources/crm/types/AssociationType.d.ts +1 -0
  1017. package/dist/api/resources/crm/types/AssociationTypeRequestRequest.d.ts +0 -2
  1018. package/dist/api/resources/crm/types/AuditLogEvent.d.ts +54 -0
  1019. package/dist/api/resources/crm/types/AuditLogEvent.js +5 -0
  1020. package/dist/api/resources/crm/types/AuditLogEventEventType.d.ts +33 -0
  1021. package/dist/api/resources/crm/types/AuditLogEventEventType.js +5 -0
  1022. package/dist/api/resources/crm/types/AuditLogEventRole.d.ts +15 -0
  1023. package/dist/api/resources/crm/types/AuditLogEventRole.js +5 -0
  1024. package/dist/api/resources/crm/types/CommonModelScopesBodyRequest.d.ts +0 -1
  1025. package/dist/api/resources/crm/types/Contact.d.ts +1 -0
  1026. package/dist/api/resources/crm/types/CustomObject.d.ts +1 -0
  1027. package/dist/api/resources/crm/types/CustomObjectClass.d.ts +1 -0
  1028. package/dist/api/resources/crm/types/DataPassthroughRequest.d.ts +0 -3
  1029. package/dist/api/resources/crm/types/EmailAddress.d.ts +1 -0
  1030. package/dist/api/resources/crm/types/Engagement.d.ts +2 -1
  1031. package/dist/api/resources/crm/types/EngagementType.d.ts +1 -0
  1032. package/dist/api/resources/crm/types/EventTypeEnum.d.ts +56 -0
  1033. package/dist/api/resources/crm/types/EventTypeEnum.js +32 -0
  1034. package/dist/api/resources/crm/types/IgnoreCommonModelRequest.d.ts +0 -1
  1035. package/dist/api/resources/crm/types/Lead.d.ts +1 -0
  1036. package/dist/api/resources/crm/types/LinkedAccountConditionRequest.d.ts +1 -1
  1037. package/dist/api/resources/crm/types/MultipartFormFieldRequest.d.ts +2 -2
  1038. package/dist/api/resources/crm/types/Note.d.ts +1 -0
  1039. package/dist/api/resources/crm/types/ObjectClassDescriptionRequest.d.ts +0 -1
  1040. package/dist/api/resources/crm/types/Opportunity.d.ts +1 -0
  1041. package/dist/api/resources/crm/types/PaginatedAuditLogEventList.d.ts +9 -0
  1042. package/dist/api/resources/crm/types/PaginatedAuditLogEventList.js +5 -0
  1043. package/dist/api/resources/crm/types/PhoneNumber.d.ts +1 -0
  1044. package/dist/api/resources/crm/types/RemoteFieldClassForCustomObjectClass.d.ts +1 -0
  1045. package/dist/api/resources/crm/types/RoleEnum.d.ts +20 -0
  1046. package/dist/api/resources/crm/types/RoleEnum.js +14 -0
  1047. package/dist/api/resources/crm/types/Stage.d.ts +2 -1
  1048. package/dist/api/resources/crm/types/Task.d.ts +2 -1
  1049. package/dist/api/resources/crm/types/User.d.ts +2 -1
  1050. package/dist/api/resources/crm/types/index.d.ts +6 -0
  1051. package/dist/api/resources/crm/types/index.js +6 -0
  1052. package/dist/api/resources/filestorage/client/Client.d.ts +3 -0
  1053. package/dist/api/resources/filestorage/client/Client.js +39 -34
  1054. package/dist/api/resources/filestorage/resources/accountDetails/client/Client.js +1 -1
  1055. package/dist/api/resources/filestorage/resources/accountToken/client/Client.js +1 -1
  1056. package/dist/api/resources/filestorage/resources/asyncPassthrough/client/Client.js +2 -2
  1057. package/dist/api/resources/filestorage/resources/auditTrail/client/Client.d.ts +25 -0
  1058. package/dist/api/resources/filestorage/resources/auditTrail/client/Client.js +129 -0
  1059. package/dist/api/resources/filestorage/resources/auditTrail/client/index.d.ts +1 -0
  1060. package/dist/api/resources/filestorage/resources/auditTrail/client/index.js +17 -0
  1061. package/dist/api/resources/filestorage/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +29 -0
  1062. package/dist/api/resources/filestorage/resources/auditTrail/client/requests/AuditTrailListRequest.js +5 -0
  1063. package/dist/api/resources/filestorage/resources/auditTrail/client/requests/index.d.ts +1 -0
  1064. package/dist/api/resources/filestorage/resources/auditTrail/client/requests/index.js +2 -0
  1065. package/dist/api/resources/filestorage/resources/auditTrail/index.d.ts +1 -0
  1066. package/dist/api/resources/filestorage/resources/auditTrail/index.js +17 -0
  1067. package/dist/api/resources/filestorage/resources/availableActions/client/Client.js +1 -1
  1068. package/dist/api/resources/filestorage/resources/deleteAccount/client/Client.js +1 -1
  1069. package/dist/api/resources/filestorage/resources/drives/client/Client.js +2 -2
  1070. package/dist/api/resources/filestorage/resources/files/client/Client.js +5 -5
  1071. package/dist/api/resources/filestorage/resources/folders/client/Client.js +4 -4
  1072. package/dist/api/resources/filestorage/resources/forceResync/client/Client.js +1 -1
  1073. package/dist/api/resources/filestorage/resources/generateKey/client/Client.js +1 -1
  1074. package/dist/api/resources/filestorage/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +0 -1
  1075. package/dist/api/resources/filestorage/resources/groups/client/Client.js +2 -2
  1076. package/dist/api/resources/filestorage/resources/index.d.ts +2 -0
  1077. package/dist/api/resources/filestorage/resources/index.js +3 -1
  1078. package/dist/api/resources/filestorage/resources/issues/client/Client.js +2 -2
  1079. package/dist/api/resources/filestorage/resources/linkToken/client/Client.js +1 -1
  1080. package/dist/api/resources/filestorage/resources/linkToken/client/requests/EndUserDetailsRequest.d.ts +4 -4
  1081. package/dist/api/resources/filestorage/resources/linkedAccounts/client/Client.js +1 -1
  1082. package/dist/api/resources/filestorage/resources/passthrough/client/Client.js +1 -1
  1083. package/dist/api/resources/filestorage/resources/regenerateKey/client/Client.js +1 -1
  1084. package/dist/api/resources/filestorage/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +0 -1
  1085. package/dist/api/resources/filestorage/resources/selectiveSync/client/Client.js +3 -3
  1086. package/dist/api/resources/filestorage/resources/syncStatus/client/Client.js +1 -1
  1087. package/dist/api/resources/filestorage/resources/users/client/Client.js +2 -2
  1088. package/dist/api/resources/filestorage/resources/webhookReceivers/client/Client.js +2 -2
  1089. package/dist/api/resources/filestorage/resources/webhookReceivers/client/requests/WebhookReceiverRequest.d.ts +0 -2
  1090. package/dist/api/resources/filestorage/types/AccountIntegration.d.ts +3 -1
  1091. package/dist/api/resources/filestorage/types/AuditLogEvent.d.ts +54 -0
  1092. package/dist/api/resources/filestorage/types/AuditLogEvent.js +5 -0
  1093. package/dist/api/resources/filestorage/types/AuditLogEventEventType.d.ts +33 -0
  1094. package/dist/api/resources/filestorage/types/AuditLogEventEventType.js +5 -0
  1095. package/dist/api/resources/filestorage/types/AuditLogEventRole.d.ts +15 -0
  1096. package/dist/api/resources/filestorage/types/AuditLogEventRole.js +5 -0
  1097. package/dist/api/resources/filestorage/types/CommonModelScopesBodyRequest.d.ts +0 -1
  1098. package/dist/api/resources/filestorage/types/DataPassthroughRequest.d.ts +0 -3
  1099. package/dist/api/resources/filestorage/types/Drive.d.ts +2 -1
  1100. package/dist/api/resources/filestorage/types/EventTypeEnum.d.ts +56 -0
  1101. package/dist/api/resources/filestorage/types/EventTypeEnum.js +32 -0
  1102. package/dist/api/resources/filestorage/types/FileDrive.d.ts +8 -0
  1103. package/dist/api/resources/filestorage/types/FileDrive.js +5 -0
  1104. package/dist/api/resources/filestorage/types/FileFolder.d.ts +8 -0
  1105. package/dist/api/resources/filestorage/types/FileFolder.js +5 -0
  1106. package/dist/api/resources/filestorage/types/FileRequest.d.ts +2 -2
  1107. package/dist/api/resources/filestorage/types/FileRequestDrive.d.ts +8 -0
  1108. package/dist/api/resources/filestorage/types/FileRequestDrive.js +5 -0
  1109. package/dist/api/resources/filestorage/types/FileRequestFolder.d.ts +8 -0
  1110. package/dist/api/resources/filestorage/types/FileRequestFolder.js +5 -0
  1111. package/dist/api/resources/filestorage/types/File_.d.ts +4 -3
  1112. package/dist/api/resources/filestorage/types/Folder.d.ts +4 -3
  1113. package/dist/api/resources/filestorage/types/FolderDrive.d.ts +8 -0
  1114. package/dist/api/resources/filestorage/types/FolderDrive.js +5 -0
  1115. package/dist/api/resources/filestorage/types/FolderParentFolder.d.ts +8 -0
  1116. package/dist/api/resources/filestorage/types/FolderParentFolder.js +5 -0
  1117. package/dist/api/resources/filestorage/types/FolderRequest.d.ts +2 -2
  1118. package/dist/api/resources/filestorage/types/FolderRequestDrive.d.ts +8 -0
  1119. package/dist/api/resources/filestorage/types/FolderRequestDrive.js +5 -0
  1120. package/dist/api/resources/filestorage/types/FolderRequestParentFolder.d.ts +8 -0
  1121. package/dist/api/resources/filestorage/types/FolderRequestParentFolder.js +5 -0
  1122. package/dist/api/resources/filestorage/types/Group.d.ts +2 -1
  1123. package/dist/api/resources/filestorage/types/LinkedAccountConditionRequest.d.ts +1 -1
  1124. package/dist/api/resources/filestorage/types/MultipartFormFieldRequest.d.ts +2 -2
  1125. package/dist/api/resources/filestorage/types/PaginatedAuditLogEventList.d.ts +9 -0
  1126. package/dist/api/resources/filestorage/types/PaginatedAuditLogEventList.js +5 -0
  1127. package/dist/api/resources/filestorage/types/Permission.d.ts +5 -4
  1128. package/dist/api/resources/filestorage/types/PermissionGroup.d.ts +8 -0
  1129. package/dist/api/resources/filestorage/types/PermissionGroup.js +5 -0
  1130. package/dist/api/resources/filestorage/types/PermissionRequest.d.ts +4 -4
  1131. package/dist/api/resources/filestorage/types/PermissionRequestGroup.d.ts +8 -0
  1132. package/dist/api/resources/filestorage/types/PermissionRequestGroup.js +5 -0
  1133. package/dist/api/resources/filestorage/types/PermissionRequestRolesItem.d.ts +12 -0
  1134. package/dist/api/resources/filestorage/types/PermissionRequestRolesItem.js +5 -0
  1135. package/dist/api/resources/filestorage/types/PermissionRequestType.d.ts +13 -0
  1136. package/dist/api/resources/filestorage/types/PermissionRequestType.js +5 -0
  1137. package/dist/api/resources/filestorage/types/PermissionRequestUser.d.ts +8 -0
  1138. package/dist/api/resources/filestorage/types/PermissionRequestUser.js +5 -0
  1139. package/dist/api/resources/filestorage/types/PermissionRolesItem.d.ts +12 -0
  1140. package/dist/api/resources/filestorage/types/PermissionRolesItem.js +5 -0
  1141. package/dist/api/resources/filestorage/types/PermissionType.d.ts +13 -0
  1142. package/dist/api/resources/filestorage/types/PermissionType.js +5 -0
  1143. package/dist/api/resources/filestorage/types/PermissionUser.d.ts +8 -0
  1144. package/dist/api/resources/filestorage/types/PermissionUser.js +5 -0
  1145. package/dist/api/resources/filestorage/types/RoleEnum.d.ts +20 -0
  1146. package/dist/api/resources/filestorage/types/RoleEnum.js +14 -0
  1147. package/dist/api/resources/filestorage/types/User.d.ts +2 -1
  1148. package/dist/api/resources/filestorage/types/index.d.ts +22 -0
  1149. package/dist/api/resources/filestorage/types/index.js +22 -0
  1150. package/dist/api/resources/hris/client/Client.d.ts +6 -0
  1151. package/dist/api/resources/hris/client/Client.js +64 -54
  1152. package/dist/api/resources/hris/resources/accountDetails/client/Client.js +1 -1
  1153. package/dist/api/resources/hris/resources/accountToken/client/Client.js +1 -1
  1154. package/dist/api/resources/hris/resources/asyncPassthrough/client/Client.js +2 -2
  1155. package/dist/api/resources/hris/resources/auditTrail/client/Client.d.ts +25 -0
  1156. package/dist/api/resources/hris/resources/auditTrail/client/Client.js +129 -0
  1157. package/dist/api/resources/hris/resources/auditTrail/client/index.d.ts +1 -0
  1158. package/dist/api/resources/hris/resources/auditTrail/client/index.js +17 -0
  1159. package/dist/api/resources/hris/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +29 -0
  1160. package/dist/api/resources/hris/resources/auditTrail/client/requests/AuditTrailListRequest.js +5 -0
  1161. package/dist/api/resources/hris/resources/auditTrail/client/requests/index.d.ts +1 -0
  1162. package/dist/api/resources/hris/resources/auditTrail/client/requests/index.js +2 -0
  1163. package/dist/api/resources/hris/resources/auditTrail/index.d.ts +1 -0
  1164. package/dist/api/resources/hris/resources/auditTrail/index.js +17 -0
  1165. package/dist/api/resources/hris/resources/availableActions/client/Client.js +1 -1
  1166. package/dist/api/resources/hris/resources/bankInfo/client/Client.js +2 -2
  1167. package/dist/api/resources/hris/resources/benefits/client/Client.js +2 -2
  1168. package/dist/api/resources/hris/resources/companies/client/Client.js +2 -2
  1169. package/dist/api/resources/hris/resources/deleteAccount/client/Client.js +1 -1
  1170. package/dist/api/resources/hris/resources/dependents/client/Client.js +2 -2
  1171. package/dist/api/resources/hris/resources/employeePayrollRuns/client/Client.js +2 -2
  1172. package/dist/api/resources/hris/resources/employees/client/Client.js +5 -5
  1173. package/dist/api/resources/hris/resources/employees/client/requests/IgnoreCommonModelRequest.d.ts +0 -1
  1174. package/dist/api/resources/hris/resources/employerBenefits/client/Client.js +2 -2
  1175. package/dist/api/resources/hris/resources/employments/client/Client.js +2 -2
  1176. package/dist/api/resources/hris/resources/forceResync/client/Client.js +1 -1
  1177. package/dist/api/resources/hris/resources/generateKey/client/Client.js +1 -1
  1178. package/dist/api/resources/hris/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +0 -1
  1179. package/dist/api/resources/hris/resources/groups/client/Client.js +2 -2
  1180. package/dist/api/resources/hris/resources/index.d.ts +4 -0
  1181. package/dist/api/resources/hris/resources/index.js +5 -1
  1182. package/dist/api/resources/hris/resources/issues/client/Client.js +2 -2
  1183. package/dist/api/resources/hris/resources/linkToken/client/Client.js +1 -1
  1184. package/dist/api/resources/hris/resources/linkToken/client/requests/EndUserDetailsRequest.d.ts +4 -4
  1185. package/dist/api/resources/hris/resources/linkedAccounts/client/Client.js +1 -1
  1186. package/dist/api/resources/hris/resources/locations/client/Client.js +6 -3
  1187. package/dist/api/resources/hris/resources/locations/client/requests/LocationsListRequest.d.ts +8 -0
  1188. package/dist/api/resources/hris/resources/passthrough/client/Client.js +1 -1
  1189. package/dist/api/resources/hris/resources/payGroups/client/Client.js +2 -2
  1190. package/dist/api/resources/hris/resources/payrollRuns/client/Client.js +2 -2
  1191. package/dist/api/resources/hris/resources/regenerateKey/client/Client.js +1 -1
  1192. package/dist/api/resources/hris/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +0 -1
  1193. package/dist/api/resources/hris/resources/selectiveSync/client/Client.js +3 -3
  1194. package/dist/api/resources/hris/resources/syncStatus/client/Client.js +1 -1
  1195. package/dist/api/resources/hris/resources/teams/client/Client.js +2 -2
  1196. package/dist/api/resources/hris/resources/timeOff/client/Client.js +4 -4
  1197. package/dist/api/resources/hris/resources/timeOffBalances/client/Client.js +2 -2
  1198. package/dist/api/resources/hris/resources/timesheetEntries/client/Client.d.ts +37 -0
  1199. package/dist/api/resources/hris/resources/timesheetEntries/client/Client.js +335 -0
  1200. package/dist/api/resources/hris/resources/timesheetEntries/client/index.d.ts +1 -0
  1201. package/dist/api/resources/hris/resources/timesheetEntries/client/index.js +17 -0
  1202. package/dist/api/resources/hris/resources/timesheetEntries/client/requests/TimesheetEntriesListRequest.d.ts +66 -0
  1203. package/dist/api/resources/hris/resources/timesheetEntries/client/requests/TimesheetEntriesListRequest.js +5 -0
  1204. package/dist/api/resources/hris/resources/timesheetEntries/client/requests/TimesheetEntriesRetrieveRequest.d.ts +9 -0
  1205. package/dist/api/resources/hris/resources/timesheetEntries/client/requests/TimesheetEntriesRetrieveRequest.js +5 -0
  1206. package/dist/api/resources/{crm/resources/customObjects/client/requests/PatchedCrmCustomObjectEndpointRequest.d.ts → hris/resources/timesheetEntries/client/requests/TimesheetEntryEndpointRequest.d.ts} +2 -2
  1207. package/dist/api/resources/hris/resources/timesheetEntries/client/requests/TimesheetEntryEndpointRequest.js +5 -0
  1208. package/dist/api/resources/hris/resources/timesheetEntries/client/requests/index.d.ts +3 -0
  1209. package/dist/api/resources/hris/resources/timesheetEntries/client/requests/index.js +2 -0
  1210. package/dist/api/resources/hris/resources/timesheetEntries/index.d.ts +1 -0
  1211. package/dist/api/resources/hris/resources/timesheetEntries/index.js +17 -0
  1212. package/dist/api/resources/hris/resources/webhookReceivers/client/Client.js +2 -2
  1213. package/dist/api/resources/hris/resources/webhookReceivers/client/requests/WebhookReceiverRequest.d.ts +0 -2
  1214. package/dist/api/resources/hris/types/AccountIntegration.d.ts +3 -1
  1215. package/dist/api/resources/hris/types/AuditLogEvent.d.ts +54 -0
  1216. package/dist/api/resources/hris/types/AuditLogEvent.js +5 -0
  1217. package/dist/api/resources/hris/types/AuditLogEventEventType.d.ts +33 -0
  1218. package/dist/api/resources/hris/types/AuditLogEventEventType.js +5 -0
  1219. package/dist/api/resources/hris/types/AuditLogEventRole.d.ts +15 -0
  1220. package/dist/api/resources/hris/types/AuditLogEventRole.js +5 -0
  1221. package/dist/api/resources/hris/types/BankInfo.d.ts +2 -1
  1222. package/dist/api/resources/hris/types/Benefit.d.ts +2 -1
  1223. package/dist/api/resources/hris/types/CommonModelScopesBodyRequest.d.ts +0 -1
  1224. package/dist/api/resources/hris/types/Company.d.ts +2 -1
  1225. package/dist/api/resources/hris/types/DataPassthroughRequest.d.ts +0 -3
  1226. package/dist/api/resources/hris/types/Deduction.d.ts +2 -1
  1227. package/dist/api/resources/hris/types/Dependent.d.ts +2 -1
  1228. package/dist/api/resources/hris/types/Earning.d.ts +2 -1
  1229. package/dist/api/resources/hris/types/Employee.d.ts +1 -0
  1230. package/dist/api/resources/hris/types/EmployeePayrollRun.d.ts +2 -1
  1231. package/dist/api/resources/hris/types/EmployerBenefit.d.ts +2 -1
  1232. package/dist/api/resources/hris/types/Employment.d.ts +2 -1
  1233. package/dist/api/resources/hris/types/EventTypeEnum.d.ts +56 -0
  1234. package/dist/api/resources/hris/types/EventTypeEnum.js +32 -0
  1235. package/dist/api/resources/hris/types/Group.d.ts +2 -1
  1236. package/dist/api/resources/hris/types/LinkedAccountConditionRequest.d.ts +1 -1
  1237. package/dist/api/resources/hris/types/Location.d.ts +2 -1
  1238. package/dist/api/resources/hris/types/LocationsListRequestLocationType.d.ts +8 -0
  1239. package/dist/api/resources/hris/types/LocationsListRequestLocationType.js +10 -0
  1240. package/dist/api/resources/hris/types/MultipartFormFieldRequest.d.ts +2 -2
  1241. package/dist/api/resources/hris/types/PaginatedAuditLogEventList.d.ts +9 -0
  1242. package/dist/api/resources/hris/types/PaginatedAuditLogEventList.js +5 -0
  1243. package/dist/api/resources/hris/types/PaginatedTimesheetEntryList.d.ts +9 -0
  1244. package/dist/api/resources/hris/types/PaginatedTimesheetEntryList.js +5 -0
  1245. package/dist/api/resources/hris/types/PayGroup.d.ts +2 -1
  1246. package/dist/api/resources/hris/types/PayrollRun.d.ts +2 -1
  1247. package/dist/api/resources/hris/types/RoleEnum.d.ts +20 -0
  1248. package/dist/api/resources/hris/types/RoleEnum.js +14 -0
  1249. package/dist/api/resources/hris/types/Tax.d.ts +2 -1
  1250. package/dist/api/resources/hris/types/Team.d.ts +2 -1
  1251. package/dist/api/resources/hris/types/TimeOff.d.ts +1 -0
  1252. package/dist/api/resources/hris/types/TimeOffBalance.d.ts +2 -1
  1253. package/dist/api/resources/hris/types/TimesheetEntriesListRequestOrderBy.d.ts +8 -0
  1254. package/dist/api/resources/hris/types/TimesheetEntriesListRequestOrderBy.js +10 -0
  1255. package/dist/api/resources/hris/types/TimesheetEntry.d.ts +28 -0
  1256. package/dist/api/resources/hris/types/TimesheetEntry.js +5 -0
  1257. package/dist/api/resources/hris/types/TimesheetEntryRequest.d.ts +24 -0
  1258. package/dist/api/resources/hris/types/TimesheetEntryRequest.js +5 -0
  1259. package/dist/api/resources/hris/types/TimesheetEntryResponse.d.ts +10 -0
  1260. package/dist/api/resources/hris/types/TimesheetEntryResponse.js +5 -0
  1261. package/dist/api/resources/hris/types/index.d.ts +12 -0
  1262. package/dist/api/resources/hris/types/index.js +12 -0
  1263. package/dist/api/resources/ticketing/client/Client.d.ts +3 -0
  1264. package/dist/api/resources/ticketing/client/Client.js +45 -40
  1265. package/dist/api/resources/ticketing/resources/accountDetails/client/Client.js +1 -1
  1266. package/dist/api/resources/ticketing/resources/accountToken/client/Client.js +1 -1
  1267. package/dist/api/resources/ticketing/resources/accounts/client/Client.js +2 -2
  1268. package/dist/api/resources/ticketing/resources/asyncPassthrough/client/Client.js +2 -2
  1269. package/dist/api/resources/ticketing/resources/attachments/client/Client.js +5 -5
  1270. package/dist/api/resources/ticketing/resources/auditTrail/client/Client.d.ts +25 -0
  1271. package/dist/api/resources/ticketing/resources/auditTrail/client/Client.js +129 -0
  1272. package/dist/api/resources/ticketing/resources/auditTrail/client/index.d.ts +1 -0
  1273. package/dist/api/resources/ticketing/resources/auditTrail/client/index.js +17 -0
  1274. package/dist/api/resources/ticketing/resources/auditTrail/client/requests/AuditTrailListRequest.d.ts +29 -0
  1275. package/dist/api/resources/ticketing/resources/auditTrail/client/requests/AuditTrailListRequest.js +5 -0
  1276. package/dist/api/resources/ticketing/resources/auditTrail/client/requests/index.d.ts +1 -0
  1277. package/dist/api/resources/ticketing/resources/auditTrail/client/requests/index.js +2 -0
  1278. package/dist/api/resources/ticketing/resources/auditTrail/index.d.ts +1 -0
  1279. package/dist/api/resources/ticketing/resources/auditTrail/index.js +17 -0
  1280. package/dist/api/resources/ticketing/resources/availableActions/client/Client.js +1 -1
  1281. package/dist/api/resources/ticketing/resources/collections/client/Client.js +3 -3
  1282. package/dist/api/resources/ticketing/resources/comments/client/Client.js +4 -4
  1283. package/dist/api/resources/ticketing/resources/contacts/client/Client.js +2 -2
  1284. package/dist/api/resources/ticketing/resources/deleteAccount/client/Client.js +1 -1
  1285. package/dist/api/resources/ticketing/resources/forceResync/client/Client.js +1 -1
  1286. package/dist/api/resources/ticketing/resources/generateKey/client/Client.js +1 -1
  1287. package/dist/api/resources/ticketing/resources/generateKey/client/requests/GenerateRemoteKeyRequest.d.ts +0 -1
  1288. package/dist/api/resources/ticketing/resources/index.d.ts +2 -0
  1289. package/dist/api/resources/ticketing/resources/index.js +3 -1
  1290. package/dist/api/resources/ticketing/resources/issues/client/Client.js +2 -2
  1291. package/dist/api/resources/ticketing/resources/linkToken/client/Client.js +1 -1
  1292. package/dist/api/resources/ticketing/resources/linkToken/client/requests/EndUserDetailsRequest.d.ts +4 -4
  1293. package/dist/api/resources/ticketing/resources/linkedAccounts/client/Client.js +1 -1
  1294. package/dist/api/resources/ticketing/resources/passthrough/client/Client.js +1 -1
  1295. package/dist/api/resources/ticketing/resources/projects/client/Client.js +3 -3
  1296. package/dist/api/resources/ticketing/resources/regenerateKey/client/Client.js +1 -1
  1297. package/dist/api/resources/ticketing/resources/regenerateKey/client/requests/RemoteKeyForRegenerationRequest.d.ts +0 -1
  1298. package/dist/api/resources/ticketing/resources/selectiveSync/client/Client.js +3 -3
  1299. package/dist/api/resources/ticketing/resources/syncStatus/client/Client.js +1 -1
  1300. package/dist/api/resources/ticketing/resources/tags/client/Client.js +2 -2
  1301. package/dist/api/resources/ticketing/resources/teams/client/Client.js +2 -2
  1302. package/dist/api/resources/ticketing/resources/tickets/client/Client.js +8 -8
  1303. package/dist/api/resources/ticketing/resources/users/client/Client.js +2 -2
  1304. package/dist/api/resources/ticketing/resources/webhookReceivers/client/Client.js +2 -2
  1305. package/dist/api/resources/ticketing/resources/webhookReceivers/client/requests/WebhookReceiverRequest.d.ts +0 -2
  1306. package/dist/api/resources/ticketing/types/Account.d.ts +2 -1
  1307. package/dist/api/resources/ticketing/types/AccountIntegration.d.ts +3 -1
  1308. package/dist/api/resources/ticketing/types/Attachment.d.ts +1 -0
  1309. package/dist/api/resources/ticketing/types/AuditLogEvent.d.ts +54 -0
  1310. package/dist/api/resources/ticketing/types/AuditLogEvent.js +5 -0
  1311. package/dist/api/resources/ticketing/types/AuditLogEventEventType.d.ts +33 -0
  1312. package/dist/api/resources/ticketing/types/AuditLogEventEventType.js +5 -0
  1313. package/dist/api/resources/ticketing/types/AuditLogEventRole.d.ts +15 -0
  1314. package/dist/api/resources/ticketing/types/AuditLogEventRole.js +5 -0
  1315. package/dist/api/resources/ticketing/types/Collection.d.ts +2 -1
  1316. package/dist/api/resources/ticketing/types/Comment.d.ts +1 -0
  1317. package/dist/api/resources/ticketing/types/CommonModelScopesBodyRequest.d.ts +0 -1
  1318. package/dist/api/resources/ticketing/types/Contact.d.ts +2 -1
  1319. package/dist/api/resources/ticketing/types/DataPassthroughRequest.d.ts +0 -3
  1320. package/dist/api/resources/ticketing/types/EventTypeEnum.d.ts +56 -0
  1321. package/dist/api/resources/ticketing/types/EventTypeEnum.js +32 -0
  1322. package/dist/api/resources/ticketing/types/LinkedAccountConditionRequest.d.ts +1 -1
  1323. package/dist/api/resources/ticketing/types/MultipartFormFieldRequest.d.ts +2 -2
  1324. package/dist/api/resources/ticketing/types/PaginatedAuditLogEventList.d.ts +9 -0
  1325. package/dist/api/resources/ticketing/types/PaginatedAuditLogEventList.js +5 -0
  1326. package/dist/api/resources/ticketing/types/Project.d.ts +2 -1
  1327. package/dist/api/resources/ticketing/types/RoleEnum.d.ts +20 -0
  1328. package/dist/api/resources/ticketing/types/RoleEnum.js +14 -0
  1329. package/dist/api/resources/ticketing/types/Tag.d.ts +2 -1
  1330. package/dist/api/resources/ticketing/types/Team.d.ts +2 -1
  1331. package/dist/api/resources/ticketing/types/Ticket.d.ts +1 -0
  1332. package/dist/api/resources/ticketing/types/User.d.ts +2 -1
  1333. package/dist/api/resources/ticketing/types/index.d.ts +6 -0
  1334. package/dist/api/resources/ticketing/types/index.js +6 -0
  1335. package/dist/serialization/resources/accounting/types/Account.d.ts +1 -0
  1336. package/dist/serialization/resources/accounting/types/Account.js +1 -0
  1337. package/dist/serialization/resources/accounting/types/AccountIntegration.d.ts +1 -0
  1338. package/dist/serialization/resources/accounting/types/AccountIntegration.js +1 -0
  1339. package/dist/serialization/resources/accounting/types/AccountingAttachment.d.ts +1 -0
  1340. package/dist/serialization/resources/accounting/types/AccountingAttachment.js +1 -0
  1341. package/dist/serialization/resources/accounting/types/AccountingPeriod.d.ts +18 -0
  1342. package/dist/serialization/resources/accounting/types/{CreditNoteApplyLine.js → AccountingPeriod.js} +9 -6
  1343. package/dist/serialization/resources/accounting/types/AccountingPeriodStatus.d.ts +10 -0
  1344. package/{serialization/resources/accounting/types/PaymentLineItemRelatedObjectType.js → dist/serialization/resources/accounting/types/AccountingPeriodStatus.js} +3 -3
  1345. package/dist/serialization/resources/accounting/types/AccountingPeriodStatusEnum.d.ts +10 -0
  1346. package/dist/serialization/resources/accounting/types/{RelatedObjectTypeEnum.js → AccountingPeriodStatusEnum.js} +2 -2
  1347. package/dist/serialization/resources/accounting/types/AccountingPhoneNumber.d.ts +1 -0
  1348. package/dist/serialization/resources/accounting/types/AccountingPhoneNumber.js +1 -0
  1349. package/dist/serialization/resources/accounting/types/Address.d.ts +1 -0
  1350. package/dist/serialization/resources/accounting/types/Address.js +1 -0
  1351. package/dist/serialization/resources/accounting/types/AddressRequest.d.ts +20 -0
  1352. package/{serialization/resources/accounting/types/PaymentLineItemRequest.js → dist/serialization/resources/accounting/types/AddressRequest.js} +11 -9
  1353. package/dist/serialization/resources/accounting/types/AddressRequestCountry.d.ts +10 -0
  1354. package/dist/serialization/resources/accounting/types/{PaymentLineItemRelatedObjectType.js → AddressRequestCountry.js} +3 -3
  1355. package/dist/serialization/resources/accounting/types/AddressRequestType.d.ts +10 -0
  1356. package/{serialization/resources/accounting/types/PaymentLineItemRequestRelatedObjectType.js → dist/serialization/resources/accounting/types/AddressRequestType.js} +3 -3
  1357. package/dist/serialization/resources/accounting/types/AuditLogEvent.d.ts +19 -0
  1358. package/dist/serialization/resources/accounting/types/AuditLogEvent.js +49 -0
  1359. package/dist/serialization/resources/accounting/types/AuditLogEventEventType.d.ts +10 -0
  1360. package/dist/serialization/resources/accounting/types/{PaymentLineItemRequestRelatedObjectType.js → AuditLogEventEventType.js} +3 -3
  1361. package/dist/serialization/resources/accounting/types/AuditLogEventRole.d.ts +10 -0
  1362. package/dist/serialization/resources/accounting/types/AuditLogEventRole.js +43 -0
  1363. package/dist/serialization/resources/accounting/types/BalanceSheet.d.ts +1 -0
  1364. package/dist/serialization/resources/accounting/types/BalanceSheet.js +1 -0
  1365. package/dist/serialization/resources/accounting/types/CashFlowStatement.d.ts +1 -0
  1366. package/dist/serialization/resources/accounting/types/CashFlowStatement.js +1 -0
  1367. package/dist/serialization/resources/accounting/types/CompanyInfo.d.ts +1 -0
  1368. package/dist/serialization/resources/accounting/types/CompanyInfo.js +1 -0
  1369. package/dist/serialization/resources/accounting/types/Contact.d.ts +2 -1
  1370. package/dist/serialization/resources/accounting/types/Contact.js +6 -1
  1371. package/dist/serialization/resources/accounting/types/ContactAddressesItem.d.ts +10 -0
  1372. package/dist/serialization/resources/accounting/types/ContactAddressesItem.js +43 -0
  1373. package/dist/serialization/resources/accounting/types/ContactRequest.d.ts +1 -1
  1374. package/dist/serialization/resources/accounting/types/ContactRequest.js +5 -1
  1375. package/dist/serialization/resources/accounting/types/ContactRequestAddressesItem.d.ts +10 -0
  1376. package/dist/serialization/resources/accounting/types/ContactRequestAddressesItem.js +43 -0
  1377. package/dist/serialization/resources/accounting/types/CreditNote.d.ts +4 -3
  1378. package/dist/serialization/resources/accounting/types/CreditNote.js +4 -5
  1379. package/dist/serialization/resources/accounting/types/CreditNoteAccountingPeriod.d.ts +10 -0
  1380. package/dist/serialization/resources/accounting/types/{CreditNoteApplyLineInvoice.js → CreditNoteAccountingPeriod.js} +3 -3
  1381. package/dist/serialization/resources/accounting/types/CreditNoteCompany.d.ts +10 -0
  1382. package/dist/serialization/resources/accounting/types/CreditNoteCompany.js +43 -0
  1383. package/dist/serialization/resources/accounting/types/CreditNoteContact.d.ts +10 -0
  1384. package/dist/serialization/resources/accounting/types/CreditNoteContact.js +43 -0
  1385. package/dist/serialization/resources/accounting/types/CreditNoteLineItem.d.ts +1 -0
  1386. package/dist/serialization/resources/accounting/types/CreditNoteLineItem.js +1 -0
  1387. package/dist/serialization/resources/accounting/types/CreditNotesListRequestExpand.d.ts +1 -1
  1388. package/dist/serialization/resources/accounting/types/CreditNotesListRequestExpand.js +56 -8
  1389. package/dist/serialization/resources/accounting/types/CreditNotesRetrieveRequestExpand.d.ts +1 -1
  1390. package/dist/serialization/resources/accounting/types/CreditNotesRetrieveRequestExpand.js +56 -8
  1391. package/dist/serialization/resources/accounting/types/EventTypeEnum.d.ts +10 -0
  1392. package/dist/serialization/resources/accounting/types/EventTypeEnum.js +56 -0
  1393. package/dist/serialization/resources/accounting/types/Expense.d.ts +2 -0
  1394. package/dist/serialization/resources/accounting/types/Expense.js +4 -0
  1395. package/dist/serialization/resources/accounting/types/ExpenseAccountingPeriod.d.ts +10 -0
  1396. package/dist/serialization/resources/accounting/types/ExpenseAccountingPeriod.js +43 -0
  1397. package/dist/serialization/resources/accounting/types/ExpenseLine.d.ts +2 -0
  1398. package/dist/serialization/resources/accounting/types/ExpenseLine.js +2 -0
  1399. package/dist/serialization/resources/accounting/types/ExpenseRequest.d.ts +1 -0
  1400. package/dist/serialization/resources/accounting/types/ExpenseRequest.js +3 -0
  1401. package/dist/serialization/resources/accounting/types/ExpenseRequestAccountingPeriod.d.ts +10 -0
  1402. package/dist/serialization/resources/accounting/types/ExpenseRequestAccountingPeriod.js +43 -0
  1403. package/dist/serialization/resources/accounting/types/ExpensesListRequestExpand.d.ts +1 -1
  1404. package/dist/serialization/resources/accounting/types/ExpensesListRequestExpand.js +16 -0
  1405. package/dist/serialization/resources/accounting/types/ExpensesRetrieveRequestExpand.d.ts +1 -1
  1406. package/dist/serialization/resources/accounting/types/ExpensesRetrieveRequestExpand.js +16 -0
  1407. package/dist/serialization/resources/accounting/types/IncomeStatement.d.ts +1 -0
  1408. package/dist/serialization/resources/accounting/types/IncomeStatement.js +1 -0
  1409. package/dist/serialization/resources/accounting/types/Invoice.d.ts +3 -0
  1410. package/dist/serialization/resources/accounting/types/Invoice.js +9 -0
  1411. package/dist/serialization/resources/accounting/types/InvoiceAccountingPeriod.d.ts +10 -0
  1412. package/dist/serialization/resources/accounting/types/InvoiceAccountingPeriod.js +43 -0
  1413. package/dist/serialization/resources/accounting/types/InvoiceLineItem.d.ts +2 -0
  1414. package/dist/serialization/resources/accounting/types/InvoiceLineItem.js +2 -0
  1415. package/dist/serialization/resources/accounting/types/InvoicePurchaseOrdersItem.d.ts +10 -0
  1416. package/dist/serialization/resources/accounting/types/InvoicePurchaseOrdersItem.js +43 -0
  1417. package/dist/serialization/resources/accounting/types/InvoicesListRequestExpand.d.ts +1 -1
  1418. package/dist/serialization/resources/accounting/types/InvoicesListRequestExpand.js +96 -0
  1419. package/dist/serialization/resources/accounting/types/InvoicesRetrieveRequestExpand.d.ts +1 -1
  1420. package/dist/serialization/resources/accounting/types/InvoicesRetrieveRequestExpand.js +96 -0
  1421. package/dist/serialization/resources/accounting/types/Item.d.ts +1 -0
  1422. package/dist/serialization/resources/accounting/types/Item.js +1 -0
  1423. package/dist/serialization/resources/accounting/types/JournalEntriesListRequestExpand.d.ts +1 -1
  1424. package/dist/serialization/resources/accounting/types/JournalEntriesListRequestExpand.js +16 -0
  1425. package/dist/serialization/resources/accounting/types/JournalEntriesRetrieveRequestExpand.d.ts +1 -1
  1426. package/dist/serialization/resources/accounting/types/JournalEntriesRetrieveRequestExpand.js +16 -0
  1427. package/dist/serialization/resources/accounting/types/JournalEntry.d.ts +2 -0
  1428. package/dist/serialization/resources/accounting/types/JournalEntry.js +4 -0
  1429. package/dist/serialization/resources/accounting/types/JournalEntryAccountingPeriod.d.ts +10 -0
  1430. package/dist/serialization/resources/accounting/types/{VendorCreditApplyLineInvoice.js → JournalEntryAccountingPeriod.js} +3 -3
  1431. package/dist/serialization/resources/accounting/types/JournalLine.d.ts +2 -0
  1432. package/dist/serialization/resources/accounting/types/JournalLine.js +2 -0
  1433. package/dist/serialization/resources/accounting/types/PaginatedAccountingPeriodList.d.ts +14 -0
  1434. package/dist/serialization/resources/accounting/types/PaginatedAccountingPeriodList.js +46 -0
  1435. package/dist/serialization/resources/accounting/types/PaginatedAuditLogEventList.d.ts +14 -0
  1436. package/dist/serialization/resources/accounting/types/PaginatedAuditLogEventList.js +46 -0
  1437. package/dist/serialization/resources/accounting/types/Payment.d.ts +2 -1
  1438. package/dist/serialization/resources/accounting/types/Payment.js +3 -2
  1439. package/dist/serialization/resources/accounting/types/PaymentAccountingPeriod.d.ts +10 -0
  1440. package/dist/serialization/resources/accounting/types/PaymentAccountingPeriod.js +43 -0
  1441. package/dist/serialization/resources/accounting/types/PaymentRequest.d.ts +1 -1
  1442. package/dist/serialization/resources/accounting/types/PaymentRequest.js +2 -2
  1443. package/dist/serialization/resources/accounting/types/PaymentRequestAccountingPeriod.d.ts +10 -0
  1444. package/dist/serialization/resources/accounting/types/PaymentRequestAccountingPeriod.js +43 -0
  1445. package/dist/serialization/resources/accounting/types/PaymentsListRequestExpand.d.ts +1 -1
  1446. package/dist/serialization/resources/accounting/types/PaymentsListRequestExpand.js +16 -16
  1447. package/dist/serialization/resources/accounting/types/PaymentsRetrieveRequestExpand.d.ts +1 -1
  1448. package/dist/serialization/resources/accounting/types/PaymentsRetrieveRequestExpand.js +16 -16
  1449. package/dist/serialization/resources/accounting/types/PurchaseOrder.d.ts +2 -0
  1450. package/dist/serialization/resources/accounting/types/PurchaseOrder.js +4 -0
  1451. package/dist/serialization/resources/accounting/types/PurchaseOrderAccountingPeriod.d.ts +10 -0
  1452. package/dist/serialization/resources/accounting/types/PurchaseOrderAccountingPeriod.js +43 -0
  1453. package/dist/serialization/resources/accounting/types/PurchaseOrderLineItem.d.ts +2 -0
  1454. package/dist/serialization/resources/accounting/types/PurchaseOrderLineItem.js +2 -0
  1455. package/dist/serialization/resources/accounting/types/PurchaseOrdersListRequestExpand.d.ts +1 -1
  1456. package/dist/serialization/resources/accounting/types/PurchaseOrdersListRequestExpand.js +32 -0
  1457. package/dist/serialization/resources/accounting/types/PurchaseOrdersRetrieveRequestExpand.d.ts +1 -1
  1458. package/dist/serialization/resources/accounting/types/PurchaseOrdersRetrieveRequestExpand.js +32 -0
  1459. package/dist/serialization/resources/accounting/types/ReportItem.d.ts +1 -0
  1460. package/dist/serialization/resources/accounting/types/ReportItem.js +1 -0
  1461. package/dist/serialization/resources/accounting/types/RoleEnum.d.ts +10 -0
  1462. package/{serialization/resources/accounting/types/RelatedObjectTypeEnum.js → dist/serialization/resources/accounting/types/RoleEnum.js} +2 -2
  1463. package/dist/serialization/resources/accounting/types/TaxRate.d.ts +1 -0
  1464. package/dist/serialization/resources/accounting/types/TaxRate.js +1 -0
  1465. package/dist/serialization/resources/accounting/types/TrackingCategory.d.ts +1 -0
  1466. package/dist/serialization/resources/accounting/types/TrackingCategory.js +1 -0
  1467. package/dist/serialization/resources/accounting/types/Transaction.d.ts +2 -0
  1468. package/dist/serialization/resources/accounting/types/Transaction.js +4 -0
  1469. package/dist/serialization/resources/accounting/types/TransactionAccountingPeriod.d.ts +10 -0
  1470. package/dist/serialization/resources/accounting/types/TransactionAccountingPeriod.js +43 -0
  1471. package/dist/serialization/resources/accounting/types/TransactionLineItem.d.ts +2 -0
  1472. package/dist/serialization/resources/accounting/types/TransactionLineItem.js +2 -0
  1473. package/dist/serialization/resources/accounting/types/TransactionsListRequestExpand.d.ts +1 -1
  1474. package/dist/serialization/resources/accounting/types/TransactionsListRequestExpand.js +16 -0
  1475. package/dist/serialization/resources/accounting/types/TransactionsRetrieveRequestExpand.d.ts +1 -1
  1476. package/dist/serialization/resources/accounting/types/TransactionsRetrieveRequestExpand.js +16 -0
  1477. package/dist/serialization/resources/accounting/types/VendorCredit.d.ts +2 -1
  1478. package/dist/serialization/resources/accounting/types/VendorCredit.js +3 -2
  1479. package/dist/serialization/resources/accounting/types/VendorCreditAccountingPeriod.d.ts +10 -0
  1480. package/{serialization/resources/accounting/types/VendorCreditApplyLineInvoice.js → dist/serialization/resources/accounting/types/VendorCreditAccountingPeriod.js} +3 -3
  1481. package/dist/serialization/resources/accounting/types/VendorCreditLine.d.ts +1 -0
  1482. package/dist/serialization/resources/accounting/types/VendorCreditLine.js +1 -0
  1483. package/dist/serialization/resources/accounting/types/VendorCreditsListRequestExpand.d.ts +1 -1
  1484. package/dist/serialization/resources/accounting/types/VendorCreditsListRequestExpand.js +16 -16
  1485. package/dist/serialization/resources/accounting/types/VendorCreditsRetrieveRequestExpand.d.ts +1 -1
  1486. package/dist/serialization/resources/accounting/types/VendorCreditsRetrieveRequestExpand.js +16 -16
  1487. package/dist/serialization/resources/accounting/types/index.d.ts +28 -9
  1488. package/dist/serialization/resources/accounting/types/index.js +28 -9
  1489. package/dist/serialization/resources/ats/types/AccountIntegration.d.ts +1 -0
  1490. package/dist/serialization/resources/ats/types/AccountIntegration.js +1 -0
  1491. package/dist/serialization/resources/ats/types/Activity.d.ts +1 -0
  1492. package/dist/serialization/resources/ats/types/Activity.js +1 -0
  1493. package/dist/serialization/resources/ats/types/Application.d.ts +1 -0
  1494. package/dist/serialization/resources/ats/types/Application.js +1 -0
  1495. package/dist/serialization/resources/ats/types/Attachment.d.ts +1 -0
  1496. package/dist/serialization/resources/ats/types/Attachment.js +1 -0
  1497. package/dist/serialization/resources/ats/types/AuditLogEvent.d.ts +19 -0
  1498. package/dist/serialization/resources/ats/types/AuditLogEvent.js +49 -0
  1499. package/dist/serialization/resources/ats/types/AuditLogEventEventType.d.ts +10 -0
  1500. package/dist/serialization/resources/ats/types/AuditLogEventEventType.js +43 -0
  1501. package/dist/serialization/resources/ats/types/AuditLogEventRole.d.ts +10 -0
  1502. package/dist/serialization/resources/ats/types/AuditLogEventRole.js +43 -0
  1503. package/dist/serialization/resources/ats/types/Candidate.d.ts +1 -0
  1504. package/dist/serialization/resources/ats/types/Candidate.js +1 -0
  1505. package/dist/serialization/resources/ats/types/Department.d.ts +1 -0
  1506. package/dist/serialization/resources/ats/types/Department.js +1 -0
  1507. package/dist/serialization/resources/ats/types/Eeoc.d.ts +1 -0
  1508. package/dist/serialization/resources/ats/types/Eeoc.js +1 -0
  1509. package/dist/serialization/resources/ats/types/EmailAddress.d.ts +1 -0
  1510. package/dist/serialization/resources/ats/types/EmailAddress.js +1 -0
  1511. package/dist/serialization/resources/ats/types/EventTypeEnum.d.ts +10 -0
  1512. package/dist/serialization/resources/ats/types/EventTypeEnum.js +56 -0
  1513. package/dist/serialization/resources/ats/types/Job.d.ts +1 -0
  1514. package/dist/serialization/resources/ats/types/Job.js +1 -0
  1515. package/dist/serialization/resources/ats/types/JobInterviewStage.d.ts +1 -0
  1516. package/dist/serialization/resources/ats/types/JobInterviewStage.js +1 -0
  1517. package/dist/serialization/resources/ats/types/JobsScreeningQuestionsListRequestExpand.d.ts +10 -0
  1518. package/dist/serialization/resources/ats/types/JobsScreeningQuestionsListRequestExpand.js +31 -0
  1519. package/dist/serialization/resources/ats/types/Offer.d.ts +1 -0
  1520. package/dist/serialization/resources/ats/types/Offer.js +1 -0
  1521. package/dist/serialization/resources/ats/types/Office.d.ts +1 -0
  1522. package/dist/serialization/resources/ats/types/Office.js +1 -0
  1523. package/dist/serialization/resources/ats/types/PaginatedAuditLogEventList.d.ts +14 -0
  1524. package/dist/serialization/resources/ats/types/PaginatedAuditLogEventList.js +46 -0
  1525. package/dist/serialization/resources/ats/types/PaginatedScreeningQuestionList.d.ts +14 -0
  1526. package/dist/serialization/resources/ats/types/PaginatedScreeningQuestionList.js +46 -0
  1527. package/dist/serialization/resources/ats/types/PhoneNumber.d.ts +1 -0
  1528. package/dist/serialization/resources/ats/types/PhoneNumber.js +1 -0
  1529. package/dist/serialization/resources/ats/types/RejectReason.d.ts +1 -0
  1530. package/dist/serialization/resources/ats/types/RejectReason.js +1 -0
  1531. package/dist/serialization/resources/ats/types/RemoteUser.d.ts +1 -0
  1532. package/dist/serialization/resources/ats/types/RemoteUser.js +1 -0
  1533. package/dist/serialization/resources/ats/types/RoleEnum.d.ts +10 -0
  1534. package/dist/serialization/resources/ats/types/RoleEnum.js +31 -0
  1535. package/dist/serialization/resources/ats/types/ScheduledInterview.d.ts +1 -0
  1536. package/dist/serialization/resources/ats/types/ScheduledInterview.js +1 -0
  1537. package/dist/serialization/resources/ats/types/Scorecard.d.ts +1 -0
  1538. package/dist/serialization/resources/ats/types/Scorecard.js +1 -0
  1539. package/dist/serialization/resources/ats/types/ScreeningQuestion.d.ts +21 -0
  1540. package/{serialization/resources/accounting/types/PaymentLineItem.js → dist/serialization/resources/ats/types/ScreeningQuestion.js} +10 -9
  1541. package/dist/serialization/resources/ats/types/ScreeningQuestionJob.d.ts +10 -0
  1542. package/dist/serialization/resources/ats/types/ScreeningQuestionJob.js +43 -0
  1543. package/dist/serialization/resources/ats/types/ScreeningQuestionOption.d.ts +16 -0
  1544. package/dist/serialization/resources/ats/types/ScreeningQuestionOption.js +37 -0
  1545. package/dist/serialization/resources/ats/types/ScreeningQuestionType.d.ts +10 -0
  1546. package/dist/serialization/resources/ats/types/ScreeningQuestionType.js +43 -0
  1547. package/dist/serialization/resources/ats/types/Tag.d.ts +1 -0
  1548. package/dist/serialization/resources/ats/types/Tag.js +1 -0
  1549. package/dist/serialization/resources/ats/types/TypeEnum.d.ts +10 -0
  1550. package/dist/serialization/resources/ats/types/TypeEnum.js +40 -0
  1551. package/dist/serialization/resources/ats/types/Url.d.ts +1 -0
  1552. package/dist/serialization/resources/ats/types/Url.js +1 -0
  1553. package/dist/serialization/resources/ats/types/index.d.ts +13 -0
  1554. package/dist/serialization/resources/ats/types/index.js +13 -0
  1555. package/dist/serialization/resources/crm/resources/customObjects/client/requests/index.d.ts +0 -1
  1556. package/dist/serialization/resources/crm/resources/customObjects/client/requests/index.js +1 -3
  1557. package/dist/serialization/resources/crm/types/Account.d.ts +1 -0
  1558. package/dist/serialization/resources/crm/types/Account.js +1 -0
  1559. package/dist/serialization/resources/crm/types/AccountIntegration.d.ts +1 -0
  1560. package/dist/serialization/resources/crm/types/AccountIntegration.js +1 -0
  1561. package/dist/serialization/resources/crm/types/AccountRequest.d.ts +0 -2
  1562. package/dist/serialization/resources/crm/types/AccountRequest.js +0 -6
  1563. package/dist/serialization/resources/crm/types/Address.d.ts +1 -0
  1564. package/dist/serialization/resources/crm/types/Address.js +1 -0
  1565. package/dist/serialization/resources/crm/types/Association.d.ts +1 -0
  1566. package/dist/serialization/resources/crm/types/Association.js +1 -0
  1567. package/dist/serialization/resources/crm/types/AssociationSubType.d.ts +1 -0
  1568. package/dist/serialization/resources/crm/types/AssociationSubType.js +1 -0
  1569. package/dist/serialization/resources/crm/types/AssociationType.d.ts +1 -0
  1570. package/dist/serialization/resources/crm/types/AssociationType.js +1 -0
  1571. package/dist/serialization/resources/crm/types/AuditLogEvent.d.ts +19 -0
  1572. package/dist/serialization/resources/crm/types/AuditLogEvent.js +49 -0
  1573. package/dist/serialization/resources/crm/types/AuditLogEventEventType.d.ts +10 -0
  1574. package/dist/serialization/resources/crm/types/AuditLogEventEventType.js +43 -0
  1575. package/dist/serialization/resources/crm/types/AuditLogEventRole.d.ts +10 -0
  1576. package/dist/serialization/resources/crm/types/AuditLogEventRole.js +43 -0
  1577. package/dist/serialization/resources/crm/types/Contact.d.ts +1 -0
  1578. package/dist/serialization/resources/crm/types/Contact.js +1 -0
  1579. package/dist/serialization/resources/crm/types/CustomObject.d.ts +1 -0
  1580. package/dist/serialization/resources/crm/types/CustomObject.js +1 -0
  1581. package/dist/serialization/resources/crm/types/CustomObjectClass.d.ts +1 -0
  1582. package/dist/serialization/resources/crm/types/CustomObjectClass.js +1 -0
  1583. package/dist/serialization/resources/crm/types/EmailAddress.d.ts +1 -0
  1584. package/dist/serialization/resources/crm/types/EmailAddress.js +1 -0
  1585. package/dist/serialization/resources/crm/types/Engagement.d.ts +1 -0
  1586. package/dist/serialization/resources/crm/types/Engagement.js +1 -0
  1587. package/dist/serialization/resources/crm/types/EngagementType.d.ts +1 -0
  1588. package/dist/serialization/resources/crm/types/EngagementType.js +1 -0
  1589. package/dist/serialization/resources/crm/types/EventTypeEnum.d.ts +10 -0
  1590. package/dist/serialization/resources/crm/types/EventTypeEnum.js +56 -0
  1591. package/dist/serialization/resources/crm/types/Lead.d.ts +1 -0
  1592. package/dist/serialization/resources/crm/types/Lead.js +1 -0
  1593. package/dist/serialization/resources/crm/types/Note.d.ts +1 -0
  1594. package/dist/serialization/resources/crm/types/Note.js +1 -0
  1595. package/dist/serialization/resources/crm/types/Opportunity.d.ts +1 -0
  1596. package/dist/serialization/resources/crm/types/Opportunity.js +1 -0
  1597. package/dist/serialization/resources/crm/types/PaginatedAuditLogEventList.d.ts +14 -0
  1598. package/dist/serialization/resources/crm/types/PaginatedAuditLogEventList.js +46 -0
  1599. package/dist/serialization/resources/crm/types/PhoneNumber.d.ts +1 -0
  1600. package/dist/serialization/resources/crm/types/PhoneNumber.js +1 -0
  1601. package/dist/serialization/resources/crm/types/RemoteFieldClassForCustomObjectClass.d.ts +1 -0
  1602. package/dist/serialization/resources/crm/types/RemoteFieldClassForCustomObjectClass.js +1 -0
  1603. package/dist/serialization/resources/crm/types/RoleEnum.d.ts +10 -0
  1604. package/dist/serialization/resources/crm/types/RoleEnum.js +31 -0
  1605. package/dist/serialization/resources/crm/types/Stage.d.ts +1 -0
  1606. package/dist/serialization/resources/crm/types/Stage.js +1 -0
  1607. package/dist/serialization/resources/crm/types/Task.d.ts +1 -0
  1608. package/dist/serialization/resources/crm/types/Task.js +1 -0
  1609. package/dist/serialization/resources/crm/types/User.d.ts +1 -0
  1610. package/dist/serialization/resources/crm/types/User.js +1 -0
  1611. package/dist/serialization/resources/crm/types/index.d.ts +6 -0
  1612. package/dist/serialization/resources/crm/types/index.js +6 -0
  1613. package/dist/serialization/resources/filestorage/types/AccountIntegration.d.ts +1 -0
  1614. package/dist/serialization/resources/filestorage/types/AccountIntegration.js +1 -0
  1615. package/dist/serialization/resources/filestorage/types/AuditLogEvent.d.ts +19 -0
  1616. package/dist/serialization/resources/filestorage/types/AuditLogEvent.js +49 -0
  1617. package/dist/serialization/resources/filestorage/types/AuditLogEventEventType.d.ts +10 -0
  1618. package/dist/serialization/resources/filestorage/types/AuditLogEventEventType.js +43 -0
  1619. package/dist/serialization/resources/filestorage/types/AuditLogEventRole.d.ts +10 -0
  1620. package/dist/serialization/resources/filestorage/types/AuditLogEventRole.js +43 -0
  1621. package/dist/serialization/resources/filestorage/types/Drive.d.ts +1 -0
  1622. package/dist/serialization/resources/filestorage/types/Drive.js +1 -0
  1623. package/dist/serialization/resources/filestorage/types/EventTypeEnum.d.ts +10 -0
  1624. package/dist/serialization/resources/filestorage/types/EventTypeEnum.js +56 -0
  1625. package/dist/serialization/resources/filestorage/types/FileDrive.d.ts +10 -0
  1626. package/dist/serialization/resources/filestorage/types/FileDrive.js +43 -0
  1627. package/dist/serialization/resources/filestorage/types/FileFolder.d.ts +10 -0
  1628. package/dist/serialization/resources/filestorage/types/FileFolder.js +43 -0
  1629. package/dist/serialization/resources/filestorage/types/FileRequest.d.ts +2 -2
  1630. package/dist/serialization/resources/filestorage/types/FileRequest.js +2 -2
  1631. package/dist/serialization/resources/filestorage/types/FileRequestDrive.d.ts +10 -0
  1632. package/dist/serialization/resources/filestorage/types/FileRequestDrive.js +43 -0
  1633. package/dist/serialization/resources/filestorage/types/FileRequestFolder.d.ts +10 -0
  1634. package/dist/serialization/resources/filestorage/types/FileRequestFolder.js +43 -0
  1635. package/dist/serialization/resources/filestorage/types/File_.d.ts +3 -2
  1636. package/dist/serialization/resources/filestorage/types/File_.js +3 -2
  1637. package/dist/serialization/resources/filestorage/types/Folder.d.ts +3 -2
  1638. package/dist/serialization/resources/filestorage/types/Folder.js +3 -2
  1639. package/dist/serialization/resources/filestorage/types/FolderDrive.d.ts +10 -0
  1640. package/dist/serialization/resources/filestorage/types/FolderDrive.js +43 -0
  1641. package/dist/serialization/resources/filestorage/types/FolderParentFolder.d.ts +10 -0
  1642. package/dist/serialization/resources/filestorage/types/FolderParentFolder.js +43 -0
  1643. package/dist/serialization/resources/filestorage/types/FolderRequest.d.ts +2 -2
  1644. package/dist/serialization/resources/filestorage/types/FolderRequest.js +2 -2
  1645. package/dist/serialization/resources/filestorage/types/FolderRequestDrive.d.ts +10 -0
  1646. package/dist/serialization/resources/filestorage/types/FolderRequestDrive.js +43 -0
  1647. package/dist/serialization/resources/filestorage/types/FolderRequestParentFolder.d.ts +10 -0
  1648. package/dist/serialization/resources/filestorage/types/FolderRequestParentFolder.js +43 -0
  1649. package/dist/serialization/resources/filestorage/types/Group.d.ts +1 -0
  1650. package/dist/serialization/resources/filestorage/types/Group.js +1 -0
  1651. package/dist/serialization/resources/filestorage/types/PaginatedAuditLogEventList.d.ts +14 -0
  1652. package/dist/serialization/resources/filestorage/types/PaginatedAuditLogEventList.js +46 -0
  1653. package/dist/serialization/resources/filestorage/types/Permission.d.ts +5 -4
  1654. package/dist/serialization/resources/filestorage/types/Permission.js +5 -4
  1655. package/dist/serialization/resources/filestorage/types/PermissionGroup.d.ts +10 -0
  1656. package/dist/serialization/resources/filestorage/types/PermissionGroup.js +43 -0
  1657. package/dist/serialization/resources/filestorage/types/PermissionRequest.d.ts +4 -4
  1658. package/dist/serialization/resources/filestorage/types/PermissionRequest.js +8 -4
  1659. package/dist/serialization/resources/filestorage/types/PermissionRequestGroup.d.ts +10 -0
  1660. package/dist/serialization/resources/filestorage/types/PermissionRequestGroup.js +43 -0
  1661. package/dist/serialization/resources/filestorage/types/PermissionRequestRolesItem.d.ts +10 -0
  1662. package/dist/serialization/resources/filestorage/types/PermissionRequestRolesItem.js +43 -0
  1663. package/dist/serialization/resources/filestorage/types/PermissionRequestType.d.ts +10 -0
  1664. package/dist/serialization/resources/filestorage/types/PermissionRequestType.js +43 -0
  1665. package/dist/serialization/resources/filestorage/types/PermissionRequestUser.d.ts +10 -0
  1666. package/dist/serialization/resources/filestorage/types/PermissionRequestUser.js +43 -0
  1667. package/dist/serialization/resources/filestorage/types/PermissionRolesItem.d.ts +10 -0
  1668. package/dist/serialization/resources/filestorage/types/PermissionRolesItem.js +43 -0
  1669. package/dist/serialization/resources/filestorage/types/PermissionType.d.ts +10 -0
  1670. package/dist/serialization/resources/filestorage/types/PermissionType.js +43 -0
  1671. package/dist/serialization/resources/filestorage/types/PermissionUser.d.ts +10 -0
  1672. package/dist/serialization/resources/filestorage/types/PermissionUser.js +43 -0
  1673. package/dist/serialization/resources/filestorage/types/RoleEnum.d.ts +10 -0
  1674. package/dist/serialization/resources/filestorage/types/RoleEnum.js +31 -0
  1675. package/dist/serialization/resources/filestorage/types/User.d.ts +1 -0
  1676. package/dist/serialization/resources/filestorage/types/User.js +1 -0
  1677. package/dist/serialization/resources/filestorage/types/index.d.ts +22 -0
  1678. package/dist/serialization/resources/filestorage/types/index.js +22 -0
  1679. package/dist/serialization/resources/hris/resources/index.d.ts +2 -0
  1680. package/dist/serialization/resources/hris/resources/index.js +3 -1
  1681. package/dist/serialization/resources/hris/resources/timesheetEntries/client/index.d.ts +1 -0
  1682. package/dist/serialization/resources/hris/resources/timesheetEntries/client/index.js +17 -0
  1683. package/dist/serialization/resources/hris/resources/timesheetEntries/client/requests/TimesheetEntryEndpointRequest.d.ts +12 -0
  1684. package/{serialization/resources/crm/resources/customObjects/client/requests/PatchedCrmCustomObjectEndpointRequest.js → dist/serialization/resources/hris/resources/timesheetEntries/client/requests/TimesheetEntryEndpointRequest.js} +3 -3
  1685. package/dist/serialization/resources/hris/resources/timesheetEntries/client/requests/index.d.ts +1 -0
  1686. package/dist/serialization/resources/hris/resources/timesheetEntries/client/requests/index.js +5 -0
  1687. package/dist/serialization/resources/hris/resources/timesheetEntries/index.d.ts +1 -0
  1688. package/dist/serialization/resources/hris/resources/timesheetEntries/index.js +17 -0
  1689. package/dist/serialization/resources/hris/types/AccountIntegration.d.ts +1 -0
  1690. package/dist/serialization/resources/hris/types/AccountIntegration.js +1 -0
  1691. package/dist/serialization/resources/hris/types/AuditLogEvent.d.ts +19 -0
  1692. package/dist/serialization/resources/hris/types/AuditLogEvent.js +49 -0
  1693. package/dist/serialization/resources/hris/types/AuditLogEventEventType.d.ts +10 -0
  1694. package/dist/serialization/resources/hris/types/AuditLogEventEventType.js +43 -0
  1695. package/dist/serialization/resources/hris/types/AuditLogEventRole.d.ts +10 -0
  1696. package/dist/serialization/resources/hris/types/AuditLogEventRole.js +43 -0
  1697. package/dist/serialization/resources/hris/types/BankInfo.d.ts +1 -0
  1698. package/dist/serialization/resources/hris/types/BankInfo.js +1 -0
  1699. package/dist/serialization/resources/hris/types/Benefit.d.ts +1 -0
  1700. package/dist/serialization/resources/hris/types/Benefit.js +1 -0
  1701. package/dist/serialization/resources/hris/types/Company.d.ts +1 -0
  1702. package/dist/serialization/resources/hris/types/Company.js +1 -0
  1703. package/dist/serialization/resources/hris/types/Deduction.d.ts +1 -0
  1704. package/dist/serialization/resources/hris/types/Deduction.js +1 -0
  1705. package/dist/serialization/resources/hris/types/Dependent.d.ts +1 -0
  1706. package/dist/serialization/resources/hris/types/Dependent.js +1 -0
  1707. package/dist/serialization/resources/hris/types/Earning.d.ts +1 -0
  1708. package/dist/serialization/resources/hris/types/Earning.js +1 -0
  1709. package/dist/serialization/resources/hris/types/Employee.d.ts +1 -0
  1710. package/dist/serialization/resources/hris/types/Employee.js +1 -0
  1711. package/dist/serialization/resources/hris/types/EmployeePayrollRun.d.ts +1 -0
  1712. package/dist/serialization/resources/hris/types/EmployeePayrollRun.js +1 -0
  1713. package/dist/serialization/resources/hris/types/EmployerBenefit.d.ts +1 -0
  1714. package/dist/serialization/resources/hris/types/EmployerBenefit.js +1 -0
  1715. package/dist/serialization/resources/hris/types/Employment.d.ts +1 -0
  1716. package/dist/serialization/resources/hris/types/Employment.js +1 -0
  1717. package/dist/serialization/resources/hris/types/EventTypeEnum.d.ts +10 -0
  1718. package/dist/serialization/resources/hris/types/EventTypeEnum.js +56 -0
  1719. package/dist/serialization/resources/hris/types/Group.d.ts +1 -0
  1720. package/dist/serialization/resources/hris/types/Group.js +1 -0
  1721. package/dist/serialization/resources/hris/types/Location.d.ts +1 -0
  1722. package/dist/serialization/resources/hris/types/Location.js +1 -0
  1723. package/dist/serialization/resources/hris/types/LocationsListRequestLocationType.d.ts +10 -0
  1724. package/dist/serialization/resources/hris/types/LocationsListRequestLocationType.js +31 -0
  1725. package/dist/serialization/resources/hris/types/PaginatedAuditLogEventList.d.ts +14 -0
  1726. package/dist/serialization/resources/hris/types/PaginatedAuditLogEventList.js +46 -0
  1727. package/dist/serialization/resources/hris/types/PaginatedTimesheetEntryList.d.ts +14 -0
  1728. package/dist/serialization/resources/hris/types/PaginatedTimesheetEntryList.js +46 -0
  1729. package/dist/serialization/resources/hris/types/PayGroup.d.ts +1 -0
  1730. package/dist/serialization/resources/hris/types/PayGroup.js +1 -0
  1731. package/dist/serialization/resources/hris/types/PayrollRun.d.ts +1 -0
  1732. package/dist/serialization/resources/hris/types/PayrollRun.js +1 -0
  1733. package/dist/serialization/resources/hris/types/RoleEnum.d.ts +10 -0
  1734. package/dist/serialization/resources/hris/types/RoleEnum.js +31 -0
  1735. package/dist/serialization/resources/hris/types/Tax.d.ts +1 -0
  1736. package/dist/serialization/resources/hris/types/Tax.js +1 -0
  1737. package/dist/serialization/resources/hris/types/Team.d.ts +1 -0
  1738. package/dist/serialization/resources/hris/types/Team.js +1 -0
  1739. package/dist/serialization/resources/hris/types/TimeOff.d.ts +1 -0
  1740. package/dist/serialization/resources/hris/types/TimeOff.js +1 -0
  1741. package/dist/serialization/resources/hris/types/TimeOffBalance.d.ts +1 -0
  1742. package/dist/serialization/resources/hris/types/TimeOffBalance.js +1 -0
  1743. package/dist/serialization/resources/hris/types/TimesheetEntriesListRequestOrderBy.d.ts +10 -0
  1744. package/dist/serialization/resources/hris/types/TimesheetEntriesListRequestOrderBy.js +31 -0
  1745. package/dist/serialization/resources/hris/types/TimesheetEntry.d.ts +19 -0
  1746. package/dist/serialization/resources/hris/types/TimesheetEntry.js +40 -0
  1747. package/dist/serialization/resources/hris/types/TimesheetEntryRequest.d.ts +17 -0
  1748. package/dist/serialization/resources/hris/types/TimesheetEntryRequest.js +38 -0
  1749. package/dist/serialization/resources/hris/types/TimesheetEntryResponse.d.ts +15 -0
  1750. package/{serialization/resources/accounting/types/CreditNoteApplyLine.js → dist/serialization/resources/hris/types/TimesheetEntryResponse.js} +7 -7
  1751. package/dist/serialization/resources/hris/types/index.d.ts +12 -0
  1752. package/dist/serialization/resources/hris/types/index.js +12 -0
  1753. package/dist/serialization/resources/ticketing/types/Account.d.ts +1 -0
  1754. package/dist/serialization/resources/ticketing/types/Account.js +1 -0
  1755. package/dist/serialization/resources/ticketing/types/AccountIntegration.d.ts +1 -0
  1756. package/dist/serialization/resources/ticketing/types/AccountIntegration.js +1 -0
  1757. package/dist/serialization/resources/ticketing/types/Attachment.d.ts +1 -0
  1758. package/dist/serialization/resources/ticketing/types/Attachment.js +1 -0
  1759. package/dist/serialization/resources/ticketing/types/AuditLogEvent.d.ts +19 -0
  1760. package/dist/serialization/resources/ticketing/types/AuditLogEvent.js +49 -0
  1761. package/dist/serialization/resources/ticketing/types/AuditLogEventEventType.d.ts +10 -0
  1762. package/dist/serialization/resources/ticketing/types/AuditLogEventEventType.js +43 -0
  1763. package/dist/serialization/resources/ticketing/types/AuditLogEventRole.d.ts +10 -0
  1764. package/dist/serialization/resources/ticketing/types/AuditLogEventRole.js +43 -0
  1765. package/dist/serialization/resources/ticketing/types/Collection.d.ts +1 -0
  1766. package/dist/serialization/resources/ticketing/types/Collection.js +1 -0
  1767. package/dist/serialization/resources/ticketing/types/Comment.d.ts +1 -0
  1768. package/dist/serialization/resources/ticketing/types/Comment.js +1 -0
  1769. package/dist/serialization/resources/ticketing/types/Contact.d.ts +1 -0
  1770. package/dist/serialization/resources/ticketing/types/Contact.js +1 -0
  1771. package/dist/serialization/resources/ticketing/types/EventTypeEnum.d.ts +10 -0
  1772. package/dist/serialization/resources/ticketing/types/EventTypeEnum.js +56 -0
  1773. package/dist/serialization/resources/ticketing/types/PaginatedAuditLogEventList.d.ts +14 -0
  1774. package/dist/serialization/resources/ticketing/types/PaginatedAuditLogEventList.js +46 -0
  1775. package/dist/serialization/resources/ticketing/types/Project.d.ts +1 -0
  1776. package/dist/serialization/resources/ticketing/types/Project.js +1 -0
  1777. package/dist/serialization/resources/ticketing/types/RoleEnum.d.ts +10 -0
  1778. package/dist/serialization/resources/ticketing/types/RoleEnum.js +31 -0
  1779. package/dist/serialization/resources/ticketing/types/Tag.d.ts +1 -0
  1780. package/dist/serialization/resources/ticketing/types/Tag.js +1 -0
  1781. package/dist/serialization/resources/ticketing/types/Team.d.ts +1 -0
  1782. package/dist/serialization/resources/ticketing/types/Team.js +1 -0
  1783. package/dist/serialization/resources/ticketing/types/Ticket.d.ts +1 -0
  1784. package/dist/serialization/resources/ticketing/types/Ticket.js +1 -0
  1785. package/dist/serialization/resources/ticketing/types/User.d.ts +1 -0
  1786. package/dist/serialization/resources/ticketing/types/User.js +1 -0
  1787. package/dist/serialization/resources/ticketing/types/index.d.ts +6 -0
  1788. package/dist/serialization/resources/ticketing/types/index.js +6 -0
  1789. package/package.json +1 -1
  1790. package/serialization/resources/accounting/types/Account.d.ts +1 -0
  1791. package/serialization/resources/accounting/types/Account.js +1 -0
  1792. package/serialization/resources/accounting/types/AccountIntegration.d.ts +1 -0
  1793. package/serialization/resources/accounting/types/AccountIntegration.js +1 -0
  1794. package/serialization/resources/accounting/types/AccountingAttachment.d.ts +1 -0
  1795. package/serialization/resources/accounting/types/AccountingAttachment.js +1 -0
  1796. package/serialization/resources/accounting/types/AccountingPeriod.d.ts +18 -0
  1797. package/{dist/serialization/resources/accounting/types/VendorCreditApplyLine.js → serialization/resources/accounting/types/AccountingPeriod.js} +9 -6
  1798. package/serialization/resources/accounting/types/AccountingPeriodStatus.d.ts +10 -0
  1799. package/serialization/resources/accounting/types/AccountingPeriodStatus.js +43 -0
  1800. package/serialization/resources/accounting/types/AccountingPeriodStatusEnum.d.ts +10 -0
  1801. package/serialization/resources/accounting/types/AccountingPeriodStatusEnum.js +31 -0
  1802. package/serialization/resources/accounting/types/AccountingPhoneNumber.d.ts +1 -0
  1803. package/serialization/resources/accounting/types/AccountingPhoneNumber.js +1 -0
  1804. package/serialization/resources/accounting/types/Address.d.ts +1 -0
  1805. package/serialization/resources/accounting/types/Address.js +1 -0
  1806. package/serialization/resources/accounting/types/AddressRequest.d.ts +20 -0
  1807. package/{dist/serialization/resources/accounting/types/PaymentLineItemRequest.js → serialization/resources/accounting/types/AddressRequest.js} +11 -9
  1808. package/serialization/resources/accounting/types/AddressRequestCountry.d.ts +10 -0
  1809. package/serialization/resources/accounting/types/AddressRequestCountry.js +43 -0
  1810. package/serialization/resources/accounting/types/AddressRequestType.d.ts +10 -0
  1811. package/serialization/resources/accounting/types/AddressRequestType.js +43 -0
  1812. package/serialization/resources/accounting/types/AuditLogEvent.d.ts +19 -0
  1813. package/serialization/resources/accounting/types/AuditLogEvent.js +49 -0
  1814. package/serialization/resources/accounting/types/AuditLogEventEventType.d.ts +10 -0
  1815. package/serialization/resources/accounting/types/AuditLogEventEventType.js +43 -0
  1816. package/serialization/resources/accounting/types/AuditLogEventRole.d.ts +10 -0
  1817. package/serialization/resources/accounting/types/AuditLogEventRole.js +43 -0
  1818. package/serialization/resources/accounting/types/BalanceSheet.d.ts +1 -0
  1819. package/serialization/resources/accounting/types/BalanceSheet.js +1 -0
  1820. package/serialization/resources/accounting/types/CashFlowStatement.d.ts +1 -0
  1821. package/serialization/resources/accounting/types/CashFlowStatement.js +1 -0
  1822. package/serialization/resources/accounting/types/CompanyInfo.d.ts +1 -0
  1823. package/serialization/resources/accounting/types/CompanyInfo.js +1 -0
  1824. package/serialization/resources/accounting/types/Contact.d.ts +2 -1
  1825. package/serialization/resources/accounting/types/Contact.js +6 -1
  1826. package/serialization/resources/accounting/types/ContactAddressesItem.d.ts +10 -0
  1827. package/serialization/resources/accounting/types/ContactAddressesItem.js +43 -0
  1828. package/serialization/resources/accounting/types/ContactRequest.d.ts +1 -1
  1829. package/serialization/resources/accounting/types/ContactRequest.js +5 -1
  1830. package/serialization/resources/accounting/types/ContactRequestAddressesItem.d.ts +10 -0
  1831. package/serialization/resources/accounting/types/ContactRequestAddressesItem.js +43 -0
  1832. package/serialization/resources/accounting/types/CreditNote.d.ts +4 -3
  1833. package/serialization/resources/accounting/types/CreditNote.js +4 -5
  1834. package/serialization/resources/accounting/types/CreditNoteAccountingPeriod.d.ts +10 -0
  1835. package/serialization/resources/accounting/types/{CreditNoteApplyLineInvoice.js → CreditNoteAccountingPeriod.js} +3 -3
  1836. package/serialization/resources/accounting/types/CreditNoteCompany.d.ts +10 -0
  1837. package/serialization/resources/accounting/types/CreditNoteCompany.js +43 -0
  1838. package/serialization/resources/accounting/types/CreditNoteContact.d.ts +10 -0
  1839. package/serialization/resources/accounting/types/CreditNoteContact.js +43 -0
  1840. package/serialization/resources/accounting/types/CreditNoteLineItem.d.ts +1 -0
  1841. package/serialization/resources/accounting/types/CreditNoteLineItem.js +1 -0
  1842. package/serialization/resources/accounting/types/CreditNotesListRequestExpand.d.ts +1 -1
  1843. package/serialization/resources/accounting/types/CreditNotesListRequestExpand.js +56 -8
  1844. package/serialization/resources/accounting/types/CreditNotesRetrieveRequestExpand.d.ts +1 -1
  1845. package/serialization/resources/accounting/types/CreditNotesRetrieveRequestExpand.js +56 -8
  1846. package/serialization/resources/accounting/types/EventTypeEnum.d.ts +10 -0
  1847. package/serialization/resources/accounting/types/EventTypeEnum.js +56 -0
  1848. package/serialization/resources/accounting/types/Expense.d.ts +2 -0
  1849. package/serialization/resources/accounting/types/Expense.js +4 -0
  1850. package/serialization/resources/accounting/types/ExpenseAccountingPeriod.d.ts +10 -0
  1851. package/serialization/resources/accounting/types/ExpenseAccountingPeriod.js +43 -0
  1852. package/serialization/resources/accounting/types/ExpenseLine.d.ts +2 -0
  1853. package/serialization/resources/accounting/types/ExpenseLine.js +2 -0
  1854. package/serialization/resources/accounting/types/ExpenseRequest.d.ts +1 -0
  1855. package/serialization/resources/accounting/types/ExpenseRequest.js +3 -0
  1856. package/serialization/resources/accounting/types/ExpenseRequestAccountingPeriod.d.ts +10 -0
  1857. package/serialization/resources/accounting/types/ExpenseRequestAccountingPeriod.js +43 -0
  1858. package/serialization/resources/accounting/types/ExpensesListRequestExpand.d.ts +1 -1
  1859. package/serialization/resources/accounting/types/ExpensesListRequestExpand.js +16 -0
  1860. package/serialization/resources/accounting/types/ExpensesRetrieveRequestExpand.d.ts +1 -1
  1861. package/serialization/resources/accounting/types/ExpensesRetrieveRequestExpand.js +16 -0
  1862. package/serialization/resources/accounting/types/IncomeStatement.d.ts +1 -0
  1863. package/serialization/resources/accounting/types/IncomeStatement.js +1 -0
  1864. package/serialization/resources/accounting/types/Invoice.d.ts +3 -0
  1865. package/serialization/resources/accounting/types/Invoice.js +9 -0
  1866. package/serialization/resources/accounting/types/InvoiceAccountingPeriod.d.ts +10 -0
  1867. package/serialization/resources/accounting/types/InvoiceAccountingPeriod.js +43 -0
  1868. package/serialization/resources/accounting/types/InvoiceLineItem.d.ts +2 -0
  1869. package/serialization/resources/accounting/types/InvoiceLineItem.js +2 -0
  1870. package/serialization/resources/accounting/types/InvoicePurchaseOrdersItem.d.ts +10 -0
  1871. package/serialization/resources/accounting/types/InvoicePurchaseOrdersItem.js +43 -0
  1872. package/serialization/resources/accounting/types/InvoicesListRequestExpand.d.ts +1 -1
  1873. package/serialization/resources/accounting/types/InvoicesListRequestExpand.js +96 -0
  1874. package/serialization/resources/accounting/types/InvoicesRetrieveRequestExpand.d.ts +1 -1
  1875. package/serialization/resources/accounting/types/InvoicesRetrieveRequestExpand.js +96 -0
  1876. package/serialization/resources/accounting/types/Item.d.ts +1 -0
  1877. package/serialization/resources/accounting/types/Item.js +1 -0
  1878. package/serialization/resources/accounting/types/JournalEntriesListRequestExpand.d.ts +1 -1
  1879. package/serialization/resources/accounting/types/JournalEntriesListRequestExpand.js +16 -0
  1880. package/serialization/resources/accounting/types/JournalEntriesRetrieveRequestExpand.d.ts +1 -1
  1881. package/serialization/resources/accounting/types/JournalEntriesRetrieveRequestExpand.js +16 -0
  1882. package/serialization/resources/accounting/types/JournalEntry.d.ts +2 -0
  1883. package/serialization/resources/accounting/types/JournalEntry.js +4 -0
  1884. package/serialization/resources/accounting/types/JournalEntryAccountingPeriod.d.ts +10 -0
  1885. package/serialization/resources/accounting/types/JournalEntryAccountingPeriod.js +43 -0
  1886. package/serialization/resources/accounting/types/JournalLine.d.ts +2 -0
  1887. package/serialization/resources/accounting/types/JournalLine.js +2 -0
  1888. package/serialization/resources/accounting/types/PaginatedAccountingPeriodList.d.ts +14 -0
  1889. package/serialization/resources/accounting/types/PaginatedAccountingPeriodList.js +46 -0
  1890. package/serialization/resources/accounting/types/PaginatedAuditLogEventList.d.ts +14 -0
  1891. package/serialization/resources/accounting/types/PaginatedAuditLogEventList.js +46 -0
  1892. package/serialization/resources/accounting/types/Payment.d.ts +2 -1
  1893. package/serialization/resources/accounting/types/Payment.js +3 -2
  1894. package/serialization/resources/accounting/types/PaymentAccountingPeriod.d.ts +10 -0
  1895. package/serialization/resources/accounting/types/PaymentAccountingPeriod.js +43 -0
  1896. package/serialization/resources/accounting/types/PaymentRequest.d.ts +1 -1
  1897. package/serialization/resources/accounting/types/PaymentRequest.js +2 -2
  1898. package/serialization/resources/accounting/types/PaymentRequestAccountingPeriod.d.ts +10 -0
  1899. package/serialization/resources/accounting/types/PaymentRequestAccountingPeriod.js +43 -0
  1900. package/serialization/resources/accounting/types/PaymentsListRequestExpand.d.ts +1 -1
  1901. package/serialization/resources/accounting/types/PaymentsListRequestExpand.js +16 -16
  1902. package/serialization/resources/accounting/types/PaymentsRetrieveRequestExpand.d.ts +1 -1
  1903. package/serialization/resources/accounting/types/PaymentsRetrieveRequestExpand.js +16 -16
  1904. package/serialization/resources/accounting/types/PurchaseOrder.d.ts +2 -0
  1905. package/serialization/resources/accounting/types/PurchaseOrder.js +4 -0
  1906. package/serialization/resources/accounting/types/PurchaseOrderAccountingPeriod.d.ts +10 -0
  1907. package/serialization/resources/accounting/types/PurchaseOrderAccountingPeriod.js +43 -0
  1908. package/serialization/resources/accounting/types/PurchaseOrderLineItem.d.ts +2 -0
  1909. package/serialization/resources/accounting/types/PurchaseOrderLineItem.js +2 -0
  1910. package/serialization/resources/accounting/types/PurchaseOrdersListRequestExpand.d.ts +1 -1
  1911. package/serialization/resources/accounting/types/PurchaseOrdersListRequestExpand.js +32 -0
  1912. package/serialization/resources/accounting/types/PurchaseOrdersRetrieveRequestExpand.d.ts +1 -1
  1913. package/serialization/resources/accounting/types/PurchaseOrdersRetrieveRequestExpand.js +32 -0
  1914. package/serialization/resources/accounting/types/ReportItem.d.ts +1 -0
  1915. package/serialization/resources/accounting/types/ReportItem.js +1 -0
  1916. package/serialization/resources/accounting/types/RoleEnum.d.ts +10 -0
  1917. package/serialization/resources/accounting/types/RoleEnum.js +31 -0
  1918. package/serialization/resources/accounting/types/TaxRate.d.ts +1 -0
  1919. package/serialization/resources/accounting/types/TaxRate.js +1 -0
  1920. package/serialization/resources/accounting/types/TrackingCategory.d.ts +1 -0
  1921. package/serialization/resources/accounting/types/TrackingCategory.js +1 -0
  1922. package/serialization/resources/accounting/types/Transaction.d.ts +2 -0
  1923. package/serialization/resources/accounting/types/Transaction.js +4 -0
  1924. package/serialization/resources/accounting/types/TransactionAccountingPeriod.d.ts +10 -0
  1925. package/serialization/resources/accounting/types/TransactionAccountingPeriod.js +43 -0
  1926. package/serialization/resources/accounting/types/TransactionLineItem.d.ts +2 -0
  1927. package/serialization/resources/accounting/types/TransactionLineItem.js +2 -0
  1928. package/serialization/resources/accounting/types/TransactionsListRequestExpand.d.ts +1 -1
  1929. package/serialization/resources/accounting/types/TransactionsListRequestExpand.js +16 -0
  1930. package/serialization/resources/accounting/types/TransactionsRetrieveRequestExpand.d.ts +1 -1
  1931. package/serialization/resources/accounting/types/TransactionsRetrieveRequestExpand.js +16 -0
  1932. package/serialization/resources/accounting/types/VendorCredit.d.ts +2 -1
  1933. package/serialization/resources/accounting/types/VendorCredit.js +3 -2
  1934. package/serialization/resources/accounting/types/VendorCreditAccountingPeriod.d.ts +10 -0
  1935. package/serialization/resources/accounting/types/VendorCreditAccountingPeriod.js +43 -0
  1936. package/serialization/resources/accounting/types/VendorCreditLine.d.ts +1 -0
  1937. package/serialization/resources/accounting/types/VendorCreditLine.js +1 -0
  1938. package/serialization/resources/accounting/types/VendorCreditsListRequestExpand.d.ts +1 -1
  1939. package/serialization/resources/accounting/types/VendorCreditsListRequestExpand.js +16 -16
  1940. package/serialization/resources/accounting/types/VendorCreditsRetrieveRequestExpand.d.ts +1 -1
  1941. package/serialization/resources/accounting/types/VendorCreditsRetrieveRequestExpand.js +16 -16
  1942. package/serialization/resources/accounting/types/index.d.ts +28 -9
  1943. package/serialization/resources/accounting/types/index.js +28 -9
  1944. package/serialization/resources/ats/types/AccountIntegration.d.ts +1 -0
  1945. package/serialization/resources/ats/types/AccountIntegration.js +1 -0
  1946. package/serialization/resources/ats/types/Activity.d.ts +1 -0
  1947. package/serialization/resources/ats/types/Activity.js +1 -0
  1948. package/serialization/resources/ats/types/Application.d.ts +1 -0
  1949. package/serialization/resources/ats/types/Application.js +1 -0
  1950. package/serialization/resources/ats/types/Attachment.d.ts +1 -0
  1951. package/serialization/resources/ats/types/Attachment.js +1 -0
  1952. package/serialization/resources/ats/types/AuditLogEvent.d.ts +19 -0
  1953. package/serialization/resources/ats/types/AuditLogEvent.js +49 -0
  1954. package/serialization/resources/ats/types/AuditLogEventEventType.d.ts +10 -0
  1955. package/serialization/resources/ats/types/AuditLogEventEventType.js +43 -0
  1956. package/serialization/resources/ats/types/AuditLogEventRole.d.ts +10 -0
  1957. package/serialization/resources/ats/types/AuditLogEventRole.js +43 -0
  1958. package/serialization/resources/ats/types/Candidate.d.ts +1 -0
  1959. package/serialization/resources/ats/types/Candidate.js +1 -0
  1960. package/serialization/resources/ats/types/Department.d.ts +1 -0
  1961. package/serialization/resources/ats/types/Department.js +1 -0
  1962. package/serialization/resources/ats/types/Eeoc.d.ts +1 -0
  1963. package/serialization/resources/ats/types/Eeoc.js +1 -0
  1964. package/serialization/resources/ats/types/EmailAddress.d.ts +1 -0
  1965. package/serialization/resources/ats/types/EmailAddress.js +1 -0
  1966. package/serialization/resources/ats/types/EventTypeEnum.d.ts +10 -0
  1967. package/serialization/resources/ats/types/EventTypeEnum.js +56 -0
  1968. package/serialization/resources/ats/types/Job.d.ts +1 -0
  1969. package/serialization/resources/ats/types/Job.js +1 -0
  1970. package/serialization/resources/ats/types/JobInterviewStage.d.ts +1 -0
  1971. package/serialization/resources/ats/types/JobInterviewStage.js +1 -0
  1972. package/serialization/resources/ats/types/JobsScreeningQuestionsListRequestExpand.d.ts +10 -0
  1973. package/serialization/resources/ats/types/JobsScreeningQuestionsListRequestExpand.js +31 -0
  1974. package/serialization/resources/ats/types/Offer.d.ts +1 -0
  1975. package/serialization/resources/ats/types/Offer.js +1 -0
  1976. package/serialization/resources/ats/types/Office.d.ts +1 -0
  1977. package/serialization/resources/ats/types/Office.js +1 -0
  1978. package/serialization/resources/ats/types/PaginatedAuditLogEventList.d.ts +14 -0
  1979. package/serialization/resources/ats/types/PaginatedAuditLogEventList.js +46 -0
  1980. package/serialization/resources/ats/types/PaginatedScreeningQuestionList.d.ts +14 -0
  1981. package/serialization/resources/ats/types/PaginatedScreeningQuestionList.js +46 -0
  1982. package/serialization/resources/ats/types/PhoneNumber.d.ts +1 -0
  1983. package/serialization/resources/ats/types/PhoneNumber.js +1 -0
  1984. package/serialization/resources/ats/types/RejectReason.d.ts +1 -0
  1985. package/serialization/resources/ats/types/RejectReason.js +1 -0
  1986. package/serialization/resources/ats/types/RemoteUser.d.ts +1 -0
  1987. package/serialization/resources/ats/types/RemoteUser.js +1 -0
  1988. package/serialization/resources/ats/types/RoleEnum.d.ts +10 -0
  1989. package/serialization/resources/ats/types/RoleEnum.js +31 -0
  1990. package/serialization/resources/ats/types/ScheduledInterview.d.ts +1 -0
  1991. package/serialization/resources/ats/types/ScheduledInterview.js +1 -0
  1992. package/serialization/resources/ats/types/Scorecard.d.ts +1 -0
  1993. package/serialization/resources/ats/types/Scorecard.js +1 -0
  1994. package/serialization/resources/ats/types/ScreeningQuestion.d.ts +21 -0
  1995. package/{dist/serialization/resources/accounting/types/PaymentLineItem.js → serialization/resources/ats/types/ScreeningQuestion.js} +10 -9
  1996. package/serialization/resources/ats/types/ScreeningQuestionJob.d.ts +10 -0
  1997. package/serialization/resources/ats/types/ScreeningQuestionJob.js +43 -0
  1998. package/serialization/resources/ats/types/ScreeningQuestionOption.d.ts +16 -0
  1999. package/serialization/resources/ats/types/ScreeningQuestionOption.js +37 -0
  2000. package/serialization/resources/ats/types/ScreeningQuestionType.d.ts +10 -0
  2001. package/serialization/resources/ats/types/ScreeningQuestionType.js +43 -0
  2002. package/serialization/resources/ats/types/Tag.d.ts +1 -0
  2003. package/serialization/resources/ats/types/Tag.js +1 -0
  2004. package/serialization/resources/ats/types/TypeEnum.d.ts +10 -0
  2005. package/serialization/resources/ats/types/TypeEnum.js +40 -0
  2006. package/serialization/resources/ats/types/Url.d.ts +1 -0
  2007. package/serialization/resources/ats/types/Url.js +1 -0
  2008. package/serialization/resources/ats/types/index.d.ts +13 -0
  2009. package/serialization/resources/ats/types/index.js +13 -0
  2010. package/serialization/resources/crm/resources/customObjects/client/requests/index.d.ts +0 -1
  2011. package/serialization/resources/crm/resources/customObjects/client/requests/index.js +1 -3
  2012. package/serialization/resources/crm/types/Account.d.ts +1 -0
  2013. package/serialization/resources/crm/types/Account.js +1 -0
  2014. package/serialization/resources/crm/types/AccountIntegration.d.ts +1 -0
  2015. package/serialization/resources/crm/types/AccountIntegration.js +1 -0
  2016. package/serialization/resources/crm/types/AccountRequest.d.ts +0 -2
  2017. package/serialization/resources/crm/types/AccountRequest.js +0 -6
  2018. package/serialization/resources/crm/types/Address.d.ts +1 -0
  2019. package/serialization/resources/crm/types/Address.js +1 -0
  2020. package/serialization/resources/crm/types/Association.d.ts +1 -0
  2021. package/serialization/resources/crm/types/Association.js +1 -0
  2022. package/serialization/resources/crm/types/AssociationSubType.d.ts +1 -0
  2023. package/serialization/resources/crm/types/AssociationSubType.js +1 -0
  2024. package/serialization/resources/crm/types/AssociationType.d.ts +1 -0
  2025. package/serialization/resources/crm/types/AssociationType.js +1 -0
  2026. package/serialization/resources/crm/types/AuditLogEvent.d.ts +19 -0
  2027. package/serialization/resources/crm/types/AuditLogEvent.js +49 -0
  2028. package/serialization/resources/crm/types/AuditLogEventEventType.d.ts +10 -0
  2029. package/serialization/resources/crm/types/AuditLogEventEventType.js +43 -0
  2030. package/serialization/resources/crm/types/AuditLogEventRole.d.ts +10 -0
  2031. package/serialization/resources/crm/types/AuditLogEventRole.js +43 -0
  2032. package/serialization/resources/crm/types/Contact.d.ts +1 -0
  2033. package/serialization/resources/crm/types/Contact.js +1 -0
  2034. package/serialization/resources/crm/types/CustomObject.d.ts +1 -0
  2035. package/serialization/resources/crm/types/CustomObject.js +1 -0
  2036. package/serialization/resources/crm/types/CustomObjectClass.d.ts +1 -0
  2037. package/serialization/resources/crm/types/CustomObjectClass.js +1 -0
  2038. package/serialization/resources/crm/types/EmailAddress.d.ts +1 -0
  2039. package/serialization/resources/crm/types/EmailAddress.js +1 -0
  2040. package/serialization/resources/crm/types/Engagement.d.ts +1 -0
  2041. package/serialization/resources/crm/types/Engagement.js +1 -0
  2042. package/serialization/resources/crm/types/EngagementType.d.ts +1 -0
  2043. package/serialization/resources/crm/types/EngagementType.js +1 -0
  2044. package/serialization/resources/crm/types/EventTypeEnum.d.ts +10 -0
  2045. package/serialization/resources/crm/types/EventTypeEnum.js +56 -0
  2046. package/serialization/resources/crm/types/Lead.d.ts +1 -0
  2047. package/serialization/resources/crm/types/Lead.js +1 -0
  2048. package/serialization/resources/crm/types/Note.d.ts +1 -0
  2049. package/serialization/resources/crm/types/Note.js +1 -0
  2050. package/serialization/resources/crm/types/Opportunity.d.ts +1 -0
  2051. package/serialization/resources/crm/types/Opportunity.js +1 -0
  2052. package/serialization/resources/crm/types/PaginatedAuditLogEventList.d.ts +14 -0
  2053. package/serialization/resources/crm/types/PaginatedAuditLogEventList.js +46 -0
  2054. package/serialization/resources/crm/types/PhoneNumber.d.ts +1 -0
  2055. package/serialization/resources/crm/types/PhoneNumber.js +1 -0
  2056. package/serialization/resources/crm/types/RemoteFieldClassForCustomObjectClass.d.ts +1 -0
  2057. package/serialization/resources/crm/types/RemoteFieldClassForCustomObjectClass.js +1 -0
  2058. package/serialization/resources/crm/types/RoleEnum.d.ts +10 -0
  2059. package/serialization/resources/crm/types/RoleEnum.js +31 -0
  2060. package/serialization/resources/crm/types/Stage.d.ts +1 -0
  2061. package/serialization/resources/crm/types/Stage.js +1 -0
  2062. package/serialization/resources/crm/types/Task.d.ts +1 -0
  2063. package/serialization/resources/crm/types/Task.js +1 -0
  2064. package/serialization/resources/crm/types/User.d.ts +1 -0
  2065. package/serialization/resources/crm/types/User.js +1 -0
  2066. package/serialization/resources/crm/types/index.d.ts +6 -0
  2067. package/serialization/resources/crm/types/index.js +6 -0
  2068. package/serialization/resources/filestorage/types/AccountIntegration.d.ts +1 -0
  2069. package/serialization/resources/filestorage/types/AccountIntegration.js +1 -0
  2070. package/serialization/resources/filestorage/types/AuditLogEvent.d.ts +19 -0
  2071. package/serialization/resources/filestorage/types/AuditLogEvent.js +49 -0
  2072. package/serialization/resources/filestorage/types/AuditLogEventEventType.d.ts +10 -0
  2073. package/serialization/resources/filestorage/types/AuditLogEventEventType.js +43 -0
  2074. package/serialization/resources/filestorage/types/AuditLogEventRole.d.ts +10 -0
  2075. package/serialization/resources/filestorage/types/AuditLogEventRole.js +43 -0
  2076. package/serialization/resources/filestorage/types/Drive.d.ts +1 -0
  2077. package/serialization/resources/filestorage/types/Drive.js +1 -0
  2078. package/serialization/resources/filestorage/types/EventTypeEnum.d.ts +10 -0
  2079. package/serialization/resources/filestorage/types/EventTypeEnum.js +56 -0
  2080. package/serialization/resources/filestorage/types/FileDrive.d.ts +10 -0
  2081. package/serialization/resources/filestorage/types/FileDrive.js +43 -0
  2082. package/serialization/resources/filestorage/types/FileFolder.d.ts +10 -0
  2083. package/serialization/resources/filestorage/types/FileFolder.js +43 -0
  2084. package/serialization/resources/filestorage/types/FileRequest.d.ts +2 -2
  2085. package/serialization/resources/filestorage/types/FileRequest.js +2 -2
  2086. package/serialization/resources/filestorage/types/FileRequestDrive.d.ts +10 -0
  2087. package/serialization/resources/filestorage/types/FileRequestDrive.js +43 -0
  2088. package/serialization/resources/filestorage/types/FileRequestFolder.d.ts +10 -0
  2089. package/serialization/resources/filestorage/types/FileRequestFolder.js +43 -0
  2090. package/serialization/resources/filestorage/types/File_.d.ts +3 -2
  2091. package/serialization/resources/filestorage/types/File_.js +3 -2
  2092. package/serialization/resources/filestorage/types/Folder.d.ts +3 -2
  2093. package/serialization/resources/filestorage/types/Folder.js +3 -2
  2094. package/serialization/resources/filestorage/types/FolderDrive.d.ts +10 -0
  2095. package/serialization/resources/filestorage/types/FolderDrive.js +43 -0
  2096. package/serialization/resources/filestorage/types/FolderParentFolder.d.ts +10 -0
  2097. package/serialization/resources/filestorage/types/FolderParentFolder.js +43 -0
  2098. package/serialization/resources/filestorage/types/FolderRequest.d.ts +2 -2
  2099. package/serialization/resources/filestorage/types/FolderRequest.js +2 -2
  2100. package/serialization/resources/filestorage/types/FolderRequestDrive.d.ts +10 -0
  2101. package/serialization/resources/filestorage/types/FolderRequestDrive.js +43 -0
  2102. package/serialization/resources/filestorage/types/FolderRequestParentFolder.d.ts +10 -0
  2103. package/serialization/resources/filestorage/types/FolderRequestParentFolder.js +43 -0
  2104. package/serialization/resources/filestorage/types/Group.d.ts +1 -0
  2105. package/serialization/resources/filestorage/types/Group.js +1 -0
  2106. package/serialization/resources/filestorage/types/PaginatedAuditLogEventList.d.ts +14 -0
  2107. package/serialization/resources/filestorage/types/PaginatedAuditLogEventList.js +46 -0
  2108. package/serialization/resources/filestorage/types/Permission.d.ts +5 -4
  2109. package/serialization/resources/filestorage/types/Permission.js +5 -4
  2110. package/serialization/resources/filestorage/types/PermissionGroup.d.ts +10 -0
  2111. package/serialization/resources/filestorage/types/PermissionGroup.js +43 -0
  2112. package/serialization/resources/filestorage/types/PermissionRequest.d.ts +4 -4
  2113. package/serialization/resources/filestorage/types/PermissionRequest.js +8 -4
  2114. package/serialization/resources/filestorage/types/PermissionRequestGroup.d.ts +10 -0
  2115. package/serialization/resources/filestorage/types/PermissionRequestGroup.js +43 -0
  2116. package/serialization/resources/filestorage/types/PermissionRequestRolesItem.d.ts +10 -0
  2117. package/serialization/resources/filestorage/types/PermissionRequestRolesItem.js +43 -0
  2118. package/serialization/resources/filestorage/types/PermissionRequestType.d.ts +10 -0
  2119. package/serialization/resources/filestorage/types/PermissionRequestType.js +43 -0
  2120. package/serialization/resources/filestorage/types/PermissionRequestUser.d.ts +10 -0
  2121. package/serialization/resources/filestorage/types/PermissionRequestUser.js +43 -0
  2122. package/serialization/resources/filestorage/types/PermissionRolesItem.d.ts +10 -0
  2123. package/serialization/resources/filestorage/types/PermissionRolesItem.js +43 -0
  2124. package/serialization/resources/filestorage/types/PermissionType.d.ts +10 -0
  2125. package/serialization/resources/filestorage/types/PermissionType.js +43 -0
  2126. package/serialization/resources/filestorage/types/PermissionUser.d.ts +10 -0
  2127. package/serialization/resources/filestorage/types/PermissionUser.js +43 -0
  2128. package/serialization/resources/filestorage/types/RoleEnum.d.ts +10 -0
  2129. package/serialization/resources/filestorage/types/RoleEnum.js +31 -0
  2130. package/serialization/resources/filestorage/types/User.d.ts +1 -0
  2131. package/serialization/resources/filestorage/types/User.js +1 -0
  2132. package/serialization/resources/filestorage/types/index.d.ts +22 -0
  2133. package/serialization/resources/filestorage/types/index.js +22 -0
  2134. package/serialization/resources/hris/resources/index.d.ts +2 -0
  2135. package/serialization/resources/hris/resources/index.js +3 -1
  2136. package/serialization/resources/hris/resources/timesheetEntries/client/index.d.ts +1 -0
  2137. package/serialization/resources/hris/resources/timesheetEntries/client/index.js +17 -0
  2138. package/serialization/resources/hris/resources/timesheetEntries/client/requests/TimesheetEntryEndpointRequest.d.ts +12 -0
  2139. package/{dist/serialization/resources/crm/resources/customObjects/client/requests/PatchedCrmCustomObjectEndpointRequest.js → serialization/resources/hris/resources/timesheetEntries/client/requests/TimesheetEntryEndpointRequest.js} +3 -3
  2140. package/serialization/resources/hris/resources/timesheetEntries/client/requests/index.d.ts +1 -0
  2141. package/serialization/resources/hris/resources/timesheetEntries/client/requests/index.js +5 -0
  2142. package/serialization/resources/hris/resources/timesheetEntries/index.d.ts +1 -0
  2143. package/serialization/resources/hris/resources/timesheetEntries/index.js +17 -0
  2144. package/serialization/resources/hris/types/AccountIntegration.d.ts +1 -0
  2145. package/serialization/resources/hris/types/AccountIntegration.js +1 -0
  2146. package/serialization/resources/hris/types/AuditLogEvent.d.ts +19 -0
  2147. package/serialization/resources/hris/types/AuditLogEvent.js +49 -0
  2148. package/serialization/resources/hris/types/AuditLogEventEventType.d.ts +10 -0
  2149. package/serialization/resources/hris/types/AuditLogEventEventType.js +43 -0
  2150. package/serialization/resources/hris/types/AuditLogEventRole.d.ts +10 -0
  2151. package/serialization/resources/hris/types/AuditLogEventRole.js +43 -0
  2152. package/serialization/resources/hris/types/BankInfo.d.ts +1 -0
  2153. package/serialization/resources/hris/types/BankInfo.js +1 -0
  2154. package/serialization/resources/hris/types/Benefit.d.ts +1 -0
  2155. package/serialization/resources/hris/types/Benefit.js +1 -0
  2156. package/serialization/resources/hris/types/Company.d.ts +1 -0
  2157. package/serialization/resources/hris/types/Company.js +1 -0
  2158. package/serialization/resources/hris/types/Deduction.d.ts +1 -0
  2159. package/serialization/resources/hris/types/Deduction.js +1 -0
  2160. package/serialization/resources/hris/types/Dependent.d.ts +1 -0
  2161. package/serialization/resources/hris/types/Dependent.js +1 -0
  2162. package/serialization/resources/hris/types/Earning.d.ts +1 -0
  2163. package/serialization/resources/hris/types/Earning.js +1 -0
  2164. package/serialization/resources/hris/types/Employee.d.ts +1 -0
  2165. package/serialization/resources/hris/types/Employee.js +1 -0
  2166. package/serialization/resources/hris/types/EmployeePayrollRun.d.ts +1 -0
  2167. package/serialization/resources/hris/types/EmployeePayrollRun.js +1 -0
  2168. package/serialization/resources/hris/types/EmployerBenefit.d.ts +1 -0
  2169. package/serialization/resources/hris/types/EmployerBenefit.js +1 -0
  2170. package/serialization/resources/hris/types/Employment.d.ts +1 -0
  2171. package/serialization/resources/hris/types/Employment.js +1 -0
  2172. package/serialization/resources/hris/types/EventTypeEnum.d.ts +10 -0
  2173. package/serialization/resources/hris/types/EventTypeEnum.js +56 -0
  2174. package/serialization/resources/hris/types/Group.d.ts +1 -0
  2175. package/serialization/resources/hris/types/Group.js +1 -0
  2176. package/serialization/resources/hris/types/Location.d.ts +1 -0
  2177. package/serialization/resources/hris/types/Location.js +1 -0
  2178. package/serialization/resources/hris/types/LocationsListRequestLocationType.d.ts +10 -0
  2179. package/serialization/resources/hris/types/LocationsListRequestLocationType.js +31 -0
  2180. package/serialization/resources/hris/types/PaginatedAuditLogEventList.d.ts +14 -0
  2181. package/serialization/resources/hris/types/PaginatedAuditLogEventList.js +46 -0
  2182. package/serialization/resources/hris/types/PaginatedTimesheetEntryList.d.ts +14 -0
  2183. package/serialization/resources/hris/types/PaginatedTimesheetEntryList.js +46 -0
  2184. package/serialization/resources/hris/types/PayGroup.d.ts +1 -0
  2185. package/serialization/resources/hris/types/PayGroup.js +1 -0
  2186. package/serialization/resources/hris/types/PayrollRun.d.ts +1 -0
  2187. package/serialization/resources/hris/types/PayrollRun.js +1 -0
  2188. package/serialization/resources/hris/types/RoleEnum.d.ts +10 -0
  2189. package/serialization/resources/hris/types/RoleEnum.js +31 -0
  2190. package/serialization/resources/hris/types/Tax.d.ts +1 -0
  2191. package/serialization/resources/hris/types/Tax.js +1 -0
  2192. package/serialization/resources/hris/types/Team.d.ts +1 -0
  2193. package/serialization/resources/hris/types/Team.js +1 -0
  2194. package/serialization/resources/hris/types/TimeOff.d.ts +1 -0
  2195. package/serialization/resources/hris/types/TimeOff.js +1 -0
  2196. package/serialization/resources/hris/types/TimeOffBalance.d.ts +1 -0
  2197. package/serialization/resources/hris/types/TimeOffBalance.js +1 -0
  2198. package/serialization/resources/hris/types/TimesheetEntriesListRequestOrderBy.d.ts +10 -0
  2199. package/serialization/resources/hris/types/TimesheetEntriesListRequestOrderBy.js +31 -0
  2200. package/serialization/resources/hris/types/TimesheetEntry.d.ts +19 -0
  2201. package/serialization/resources/hris/types/TimesheetEntry.js +40 -0
  2202. package/serialization/resources/hris/types/TimesheetEntryRequest.d.ts +17 -0
  2203. package/serialization/resources/hris/types/TimesheetEntryRequest.js +38 -0
  2204. package/serialization/resources/hris/types/TimesheetEntryResponse.d.ts +15 -0
  2205. package/serialization/resources/hris/types/TimesheetEntryResponse.js +47 -0
  2206. package/serialization/resources/hris/types/index.d.ts +12 -0
  2207. package/serialization/resources/hris/types/index.js +12 -0
  2208. package/serialization/resources/ticketing/types/Account.d.ts +1 -0
  2209. package/serialization/resources/ticketing/types/Account.js +1 -0
  2210. package/serialization/resources/ticketing/types/AccountIntegration.d.ts +1 -0
  2211. package/serialization/resources/ticketing/types/AccountIntegration.js +1 -0
  2212. package/serialization/resources/ticketing/types/Attachment.d.ts +1 -0
  2213. package/serialization/resources/ticketing/types/Attachment.js +1 -0
  2214. package/serialization/resources/ticketing/types/AuditLogEvent.d.ts +19 -0
  2215. package/serialization/resources/ticketing/types/AuditLogEvent.js +49 -0
  2216. package/serialization/resources/ticketing/types/AuditLogEventEventType.d.ts +10 -0
  2217. package/serialization/resources/ticketing/types/AuditLogEventEventType.js +43 -0
  2218. package/serialization/resources/ticketing/types/AuditLogEventRole.d.ts +10 -0
  2219. package/serialization/resources/ticketing/types/AuditLogEventRole.js +43 -0
  2220. package/serialization/resources/ticketing/types/Collection.d.ts +1 -0
  2221. package/serialization/resources/ticketing/types/Collection.js +1 -0
  2222. package/serialization/resources/ticketing/types/Comment.d.ts +1 -0
  2223. package/serialization/resources/ticketing/types/Comment.js +1 -0
  2224. package/serialization/resources/ticketing/types/Contact.d.ts +1 -0
  2225. package/serialization/resources/ticketing/types/Contact.js +1 -0
  2226. package/serialization/resources/ticketing/types/EventTypeEnum.d.ts +10 -0
  2227. package/serialization/resources/ticketing/types/EventTypeEnum.js +56 -0
  2228. package/serialization/resources/ticketing/types/PaginatedAuditLogEventList.d.ts +14 -0
  2229. package/serialization/resources/ticketing/types/PaginatedAuditLogEventList.js +46 -0
  2230. package/serialization/resources/ticketing/types/Project.d.ts +1 -0
  2231. package/serialization/resources/ticketing/types/Project.js +1 -0
  2232. package/serialization/resources/ticketing/types/RoleEnum.d.ts +10 -0
  2233. package/serialization/resources/ticketing/types/RoleEnum.js +31 -0
  2234. package/serialization/resources/ticketing/types/Tag.d.ts +1 -0
  2235. package/serialization/resources/ticketing/types/Tag.js +1 -0
  2236. package/serialization/resources/ticketing/types/Team.d.ts +1 -0
  2237. package/serialization/resources/ticketing/types/Team.js +1 -0
  2238. package/serialization/resources/ticketing/types/Ticket.d.ts +1 -0
  2239. package/serialization/resources/ticketing/types/Ticket.js +1 -0
  2240. package/serialization/resources/ticketing/types/User.d.ts +1 -0
  2241. package/serialization/resources/ticketing/types/User.js +1 -0
  2242. package/serialization/resources/ticketing/types/index.d.ts +6 -0
  2243. package/serialization/resources/ticketing/types/index.js +6 -0
  2244. package/api/resources/accounting/types/CreditNoteApplyLine.d.ts +0 -21
  2245. package/api/resources/accounting/types/PaymentLineItem.d.ts +0 -26
  2246. package/api/resources/accounting/types/PaymentLineItemRelatedObjectType.d.ts +0 -5
  2247. package/api/resources/accounting/types/PaymentLineItemRequest.d.ts +0 -25
  2248. package/api/resources/accounting/types/PaymentLineItemRequestRelatedObjectType.d.ts +0 -5
  2249. package/api/resources/accounting/types/RelatedObjectTypeEnum.d.ts +0 -16
  2250. package/api/resources/accounting/types/RelatedObjectTypeEnum.js +0 -12
  2251. package/api/resources/accounting/types/VendorCreditApplyLine.d.ts +0 -21
  2252. package/api/resources/crm/resources/customObjectClasses/client/requests/CustomObjectClassesGeneratorUpdateRequest.d.ts +0 -13
  2253. package/dist/api/resources/accounting/types/CreditNoteApplyLine.d.ts +0 -21
  2254. package/dist/api/resources/accounting/types/PaymentLineItem.d.ts +0 -26
  2255. package/dist/api/resources/accounting/types/PaymentLineItemRelatedObjectType.d.ts +0 -5
  2256. package/dist/api/resources/accounting/types/PaymentLineItemRequest.d.ts +0 -25
  2257. package/dist/api/resources/accounting/types/PaymentLineItemRequestRelatedObjectType.d.ts +0 -5
  2258. package/dist/api/resources/accounting/types/RelatedObjectTypeEnum.d.ts +0 -16
  2259. package/dist/api/resources/accounting/types/RelatedObjectTypeEnum.js +0 -12
  2260. package/dist/api/resources/accounting/types/VendorCreditApplyLine.d.ts +0 -21
  2261. package/dist/api/resources/crm/resources/customObjectClasses/client/requests/CustomObjectClassesGeneratorUpdateRequest.d.ts +0 -13
  2262. package/dist/serialization/resources/accounting/types/CreditNoteApplyLine.d.ts +0 -15
  2263. package/dist/serialization/resources/accounting/types/CreditNoteApplyLineInvoice.d.ts +0 -10
  2264. package/dist/serialization/resources/accounting/types/PaymentLineItem.d.ts +0 -18
  2265. package/dist/serialization/resources/accounting/types/PaymentLineItemRelatedObjectType.d.ts +0 -10
  2266. package/dist/serialization/resources/accounting/types/PaymentLineItemRequest.d.ts +0 -18
  2267. package/dist/serialization/resources/accounting/types/PaymentLineItemRequestRelatedObjectType.d.ts +0 -10
  2268. package/dist/serialization/resources/accounting/types/RelatedObjectTypeEnum.d.ts +0 -10
  2269. package/dist/serialization/resources/accounting/types/VendorCreditApplyLine.d.ts +0 -15
  2270. package/dist/serialization/resources/accounting/types/VendorCreditApplyLineInvoice.d.ts +0 -10
  2271. package/dist/serialization/resources/crm/resources/customObjects/client/requests/PatchedCrmCustomObjectEndpointRequest.d.ts +0 -12
  2272. package/serialization/resources/accounting/types/CreditNoteApplyLine.d.ts +0 -15
  2273. package/serialization/resources/accounting/types/CreditNoteApplyLineInvoice.d.ts +0 -10
  2274. package/serialization/resources/accounting/types/PaymentLineItem.d.ts +0 -18
  2275. package/serialization/resources/accounting/types/PaymentLineItemRelatedObjectType.d.ts +0 -10
  2276. package/serialization/resources/accounting/types/PaymentLineItemRequest.d.ts +0 -18
  2277. package/serialization/resources/accounting/types/PaymentLineItemRequestRelatedObjectType.d.ts +0 -10
  2278. package/serialization/resources/accounting/types/RelatedObjectTypeEnum.d.ts +0 -10
  2279. package/serialization/resources/accounting/types/VendorCreditApplyLine.d.ts +0 -15
  2280. package/serialization/resources/accounting/types/VendorCreditApplyLine.js +0 -47
  2281. package/serialization/resources/accounting/types/VendorCreditApplyLineInvoice.d.ts +0 -10
  2282. package/serialization/resources/crm/resources/customObjects/client/requests/PatchedCrmCustomObjectEndpointRequest.d.ts +0 -12
  2283. /package/api/resources/accounting/{types/CreditNoteApplyLine.js → resources/accountingPeriods/client/requests/AccountingPeriodsListRequest.js} +0 -0
  2284. /package/api/resources/accounting/{types/CreditNoteApplyLineInvoice.js → resources/accountingPeriods/client/requests/AccountingPeriodsRetrieveRequest.js} +0 -0
  2285. /package/api/resources/accounting/{types/PaymentLineItem.js → resources/auditTrail/client/requests/AuditTrailListRequest.js} +0 -0
  2286. /package/api/resources/accounting/types/{PaymentLineItemRelatedObjectType.js → AccountingPeriod.js} +0 -0
  2287. /package/api/resources/accounting/types/{PaymentLineItemRequest.js → AccountingPeriodStatus.js} +0 -0
  2288. /package/api/resources/accounting/types/{PaymentLineItemRequestRelatedObjectType.js → AddressRequest.js} +0 -0
  2289. /package/api/resources/accounting/types/{VendorCreditApplyLine.js → AddressRequestCountry.js} +0 -0
  2290. /package/api/resources/accounting/types/{VendorCreditApplyLineInvoice.js → AddressRequestType.js} +0 -0
  2291. /package/api/resources/{crm/resources/customObjectClasses/client/requests/CustomObjectClassesGeneratorUpdateRequest.js → accounting/types/AuditLogEvent.js} +0 -0
  2292. /package/api/resources/{crm/resources/customObjects/client/requests/PatchedCrmCustomObjectEndpointRequest.js → accounting/types/AuditLogEventEventType.js} +0 -0
  2293. /package/{dist/api/resources/accounting/types/CreditNoteApplyLine.js → api/resources/accounting/types/AuditLogEventRole.js} +0 -0
  2294. /package/{dist/api/resources/accounting/types/CreditNoteApplyLineInvoice.js → api/resources/accounting/types/ContactAddressesItem.js} +0 -0
  2295. /package/{dist/api/resources/accounting/types/PaymentLineItem.js → api/resources/accounting/types/ContactRequestAddressesItem.js} +0 -0
  2296. /package/{dist/api/resources/accounting/types/PaymentLineItemRelatedObjectType.js → api/resources/accounting/types/CreditNoteAccountingPeriod.js} +0 -0
  2297. /package/{dist/api/resources/accounting/types/PaymentLineItemRequest.js → api/resources/accounting/types/CreditNoteCompany.js} +0 -0
  2298. /package/{dist/api/resources/accounting/types/PaymentLineItemRequestRelatedObjectType.js → api/resources/accounting/types/CreditNoteContact.js} +0 -0
  2299. /package/{dist/api/resources/accounting/types/VendorCreditApplyLine.js → api/resources/accounting/types/ExpenseAccountingPeriod.js} +0 -0
  2300. /package/{dist/api/resources/accounting/types/VendorCreditApplyLineInvoice.js → api/resources/accounting/types/ExpenseRequestAccountingPeriod.js} +0 -0
  2301. /package/{dist/api/resources/crm/resources/customObjectClasses/client/requests/CustomObjectClassesGeneratorUpdateRequest.js → api/resources/accounting/types/InvoiceAccountingPeriod.js} +0 -0
  2302. /package/{dist/api/resources/crm/resources/customObjects/client/requests/PatchedCrmCustomObjectEndpointRequest.js → api/resources/accounting/types/InvoicePurchaseOrdersItem.js} +0 -0
@@ -5,7 +5,11 @@ import * as Merge from "../../..";
5
5
  /**
6
6
  * # The JournalEntry Object
7
7
  * ### Description
8
- * The `JournalEntry` object is used to get a record of all manually created entries made in a companys general ledger. The journal line items for each journal entry should sum to zero.
8
+ * A `JournalEntry` is a record of a transaction or event that is entered into a company's accounting system.
9
+ *
10
+ * The `JournalEntry` common model contains records that are automatically created as a result of a certain type of transaction, like an Invoice, and records that are manually created against a company’s ledger.
11
+ *
12
+ * The lines of a given `JournalEntry` object should always sum to 0. A positive `net_amount` means the line represents a debit and a negative net_amount represents a credit.
9
13
  *
10
14
  * ### Usage Example
11
15
  * Fetch from the `GET JournalEntry` endpoint and view a company's journey entry.
@@ -348,9 +352,12 @@ export interface JournalEntry {
348
352
  * * `POSTED` - POSTED
349
353
  */
350
354
  postingStatus?: Merge.accounting.JournalEntryPostingStatus;
355
+ /** The accounting period that the JournalEntry was generated in. */
356
+ accountingPeriod?: Merge.accounting.JournalEntryAccountingPeriod;
351
357
  id?: string;
352
358
  /** The third-party API ID of the matching object. */
353
359
  remoteId?: string;
360
+ createdAt?: Date;
354
361
  /** This is the datetime that this object was last updated by Merge */
355
362
  modifiedAt?: Date;
356
363
  fieldMappings?: Record<string, unknown>;
@@ -0,0 +1,8 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Merge from "../../..";
5
+ /**
6
+ * The accounting period that the JournalEntry was generated in.
7
+ */
8
+ export declare type JournalEntryAccountingPeriod = string | Merge.accounting.AccountingPeriod;
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -334,6 +334,9 @@ export interface JournalLine {
334
334
  description?: string;
335
335
  /** The journal line item's exchange rate. */
336
336
  exchangeRate?: string;
337
+ /** Indicates whether or not this object has been deleted in the third party platform. */
338
+ remoteWasDeleted?: boolean;
339
+ createdAt?: Date;
337
340
  /** This is the datetime that this object was last updated by Merge */
338
341
  modifiedAt?: Date;
339
342
  }
@@ -4,7 +4,7 @@
4
4
  export interface LinkedAccountConditionRequest {
5
5
  /** The ID indicating which condition schema to use for a specific condition. */
6
6
  conditionSchemaId: string;
7
- /** The operator for a specific condition. <span style="white-space: nowrap">`non-empty`</span> */
7
+ /** The operator for a specific condition. */
8
8
  operator: string;
9
9
  value?: unknown;
10
10
  }
@@ -11,9 +11,9 @@ import * as Merge from "../../..";
11
11
  * Create a `MultipartFormField` to define a multipart form entry.
12
12
  */
13
13
  export interface MultipartFormFieldRequest {
14
- /** The name of the form field <span style="white-space: nowrap">`non-empty`</span> */
14
+ /** The name of the form field */
15
15
  name: string;
16
- /** The data for the form field. <span style="white-space: nowrap">`non-empty`</span> */
16
+ /** The data for the form field. */
17
17
  data: string;
18
18
  /**
19
19
  * The encoding of the value of `data`. Defaults to `RAW` if not defined.
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Merge from "../../..";
5
+ export interface PaginatedAccountingPeriodList {
6
+ next?: string;
7
+ previous?: string;
8
+ results?: Merge.accounting.AccountingPeriod[];
9
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Merge from "../../..";
5
+ export interface PaginatedAuditLogEventList {
6
+ next?: string;
7
+ previous?: string;
8
+ results?: Merge.accounting.AuditLogEvent[];
9
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -340,9 +340,11 @@ export interface Payment {
340
340
  trackingCategories?: (Merge.accounting.PaymentTrackingCategoriesItem | undefined)[];
341
341
  /** When the third party's payment entry was updated. */
342
342
  remoteUpdatedAt?: Date;
343
- /** Indicates whether or not this object has been deleted by third party webhooks. */
343
+ /** Indicates whether or not this object has been deleted in the third party platform. */
344
344
  remoteWasDeleted?: boolean;
345
- appliedToLines?: Merge.accounting.PaymentLineItem[];
345
+ /** The accounting period that the Payment was generated in. */
346
+ accountingPeriod?: Merge.accounting.PaymentAccountingPeriod;
347
+ createdAt?: Date;
346
348
  /** This is the datetime that this object was last updated by Merge */
347
349
  modifiedAt?: Date;
348
350
  fieldMappings?: Record<string, unknown>;
@@ -0,0 +1,8 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Merge from "../../..";
5
+ /**
6
+ * The accounting period that the Payment was generated in.
7
+ */
8
+ export declare type PaymentAccountingPeriod = string | Merge.accounting.AccountingPeriod;
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -335,7 +335,8 @@ export interface PaymentRequest {
335
335
  /** The total amount of money being paid to the supplier, or customer, after taxes. */
336
336
  totalAmount?: number;
337
337
  trackingCategories?: (Merge.accounting.PaymentRequestTrackingCategoriesItem | undefined)[];
338
- appliedToLines?: Merge.accounting.PaymentLineItemRequest[];
338
+ /** The accounting period that the Payment was generated in. */
339
+ accountingPeriod?: Merge.accounting.PaymentRequestAccountingPeriod;
339
340
  integrationParams?: Record<string, unknown>;
340
341
  linkedAccountParams?: Record<string, unknown>;
341
342
  }
@@ -0,0 +1,8 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Merge from "../../..";
5
+ /**
6
+ * The accounting period that the Payment was generated in.
7
+ */
8
+ export declare type PaymentRequestAccountingPeriod = string | Merge.accounting.AccountingPeriod;
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,37 +1,37 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
- export declare type PaymentsListRequestExpand = "account" | "account,company" | "applied_to_lines" | "applied_to_lines,account" | "applied_to_lines,account,company" | "applied_to_lines,company" | "applied_to_lines,contact" | "applied_to_lines,contact,account" | "applied_to_lines,contact,account,company" | "applied_to_lines,contact,company" | "company" | "contact" | "contact,account" | "contact,account,company" | "contact,company" | "tracking_categories" | "tracking_categories,account" | "tracking_categories,account,company" | "tracking_categories,applied_to_lines" | "tracking_categories,applied_to_lines,account" | "tracking_categories,applied_to_lines,account,company" | "tracking_categories,applied_to_lines,company" | "tracking_categories,applied_to_lines,contact" | "tracking_categories,applied_to_lines,contact,account" | "tracking_categories,applied_to_lines,contact,account,company" | "tracking_categories,applied_to_lines,contact,company" | "tracking_categories,company" | "tracking_categories,contact" | "tracking_categories,contact,account" | "tracking_categories,contact,account,company" | "tracking_categories,contact,company";
4
+ export declare type PaymentsListRequestExpand = "account" | "account,accounting_period" | "account,company" | "account,company,accounting_period" | "accounting_period" | "company" | "company,accounting_period" | "contact" | "contact,account" | "contact,account,accounting_period" | "contact,account,company" | "contact,account,company,accounting_period" | "contact,accounting_period" | "contact,company" | "contact,company,accounting_period" | "tracking_categories" | "tracking_categories,account" | "tracking_categories,account,accounting_period" | "tracking_categories,account,company" | "tracking_categories,account,company,accounting_period" | "tracking_categories,accounting_period" | "tracking_categories,company" | "tracking_categories,company,accounting_period" | "tracking_categories,contact" | "tracking_categories,contact,account" | "tracking_categories,contact,account,accounting_period" | "tracking_categories,contact,account,company" | "tracking_categories,contact,account,company,accounting_period" | "tracking_categories,contact,accounting_period" | "tracking_categories,contact,company" | "tracking_categories,contact,company,accounting_period";
5
5
  export declare const PaymentsListRequestExpand: {
6
6
  readonly Account: "account";
7
+ readonly AccountAccountingPeriod: "account,accounting_period";
7
8
  readonly AccountCompany: "account,company";
8
- readonly AppliedToLines: "applied_to_lines";
9
- readonly AppliedToLinesAccount: "applied_to_lines,account";
10
- readonly AppliedToLinesAccountCompany: "applied_to_lines,account,company";
11
- readonly AppliedToLinesCompany: "applied_to_lines,company";
12
- readonly AppliedToLinesContact: "applied_to_lines,contact";
13
- readonly AppliedToLinesContactAccount: "applied_to_lines,contact,account";
14
- readonly AppliedToLinesContactAccountCompany: "applied_to_lines,contact,account,company";
15
- readonly AppliedToLinesContactCompany: "applied_to_lines,contact,company";
9
+ readonly AccountCompanyAccountingPeriod: "account,company,accounting_period";
10
+ readonly AccountingPeriod: "accounting_period";
16
11
  readonly Company: "company";
12
+ readonly CompanyAccountingPeriod: "company,accounting_period";
17
13
  readonly Contact: "contact";
18
14
  readonly ContactAccount: "contact,account";
15
+ readonly ContactAccountAccountingPeriod: "contact,account,accounting_period";
19
16
  readonly ContactAccountCompany: "contact,account,company";
17
+ readonly ContactAccountCompanyAccountingPeriod: "contact,account,company,accounting_period";
18
+ readonly ContactAccountingPeriod: "contact,accounting_period";
20
19
  readonly ContactCompany: "contact,company";
20
+ readonly ContactCompanyAccountingPeriod: "contact,company,accounting_period";
21
21
  readonly TrackingCategories: "tracking_categories";
22
22
  readonly TrackingCategoriesAccount: "tracking_categories,account";
23
+ readonly TrackingCategoriesAccountAccountingPeriod: "tracking_categories,account,accounting_period";
23
24
  readonly TrackingCategoriesAccountCompany: "tracking_categories,account,company";
24
- readonly TrackingCategoriesAppliedToLines: "tracking_categories,applied_to_lines";
25
- readonly TrackingCategoriesAppliedToLinesAccount: "tracking_categories,applied_to_lines,account";
26
- readonly TrackingCategoriesAppliedToLinesAccountCompany: "tracking_categories,applied_to_lines,account,company";
27
- readonly TrackingCategoriesAppliedToLinesCompany: "tracking_categories,applied_to_lines,company";
28
- readonly TrackingCategoriesAppliedToLinesContact: "tracking_categories,applied_to_lines,contact";
29
- readonly TrackingCategoriesAppliedToLinesContactAccount: "tracking_categories,applied_to_lines,contact,account";
30
- readonly TrackingCategoriesAppliedToLinesContactAccountCompany: "tracking_categories,applied_to_lines,contact,account,company";
31
- readonly TrackingCategoriesAppliedToLinesContactCompany: "tracking_categories,applied_to_lines,contact,company";
25
+ readonly TrackingCategoriesAccountCompanyAccountingPeriod: "tracking_categories,account,company,accounting_period";
26
+ readonly TrackingCategoriesAccountingPeriod: "tracking_categories,accounting_period";
32
27
  readonly TrackingCategoriesCompany: "tracking_categories,company";
28
+ readonly TrackingCategoriesCompanyAccountingPeriod: "tracking_categories,company,accounting_period";
33
29
  readonly TrackingCategoriesContact: "tracking_categories,contact";
34
30
  readonly TrackingCategoriesContactAccount: "tracking_categories,contact,account";
31
+ readonly TrackingCategoriesContactAccountAccountingPeriod: "tracking_categories,contact,account,accounting_period";
35
32
  readonly TrackingCategoriesContactAccountCompany: "tracking_categories,contact,account,company";
33
+ readonly TrackingCategoriesContactAccountCompanyAccountingPeriod: "tracking_categories,contact,account,company,accounting_period";
34
+ readonly TrackingCategoriesContactAccountingPeriod: "tracking_categories,contact,accounting_period";
36
35
  readonly TrackingCategoriesContactCompany: "tracking_categories,contact,company";
36
+ readonly TrackingCategoriesContactCompanyAccountingPeriod: "tracking_categories,contact,company,accounting_period";
37
37
  };
@@ -6,34 +6,34 @@ Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.PaymentsListRequestExpand = void 0;
7
7
  exports.PaymentsListRequestExpand = {
8
8
  Account: "account",
9
+ AccountAccountingPeriod: "account,accounting_period",
9
10
  AccountCompany: "account,company",
10
- AppliedToLines: "applied_to_lines",
11
- AppliedToLinesAccount: "applied_to_lines,account",
12
- AppliedToLinesAccountCompany: "applied_to_lines,account,company",
13
- AppliedToLinesCompany: "applied_to_lines,company",
14
- AppliedToLinesContact: "applied_to_lines,contact",
15
- AppliedToLinesContactAccount: "applied_to_lines,contact,account",
16
- AppliedToLinesContactAccountCompany: "applied_to_lines,contact,account,company",
17
- AppliedToLinesContactCompany: "applied_to_lines,contact,company",
11
+ AccountCompanyAccountingPeriod: "account,company,accounting_period",
12
+ AccountingPeriod: "accounting_period",
18
13
  Company: "company",
14
+ CompanyAccountingPeriod: "company,accounting_period",
19
15
  Contact: "contact",
20
16
  ContactAccount: "contact,account",
17
+ ContactAccountAccountingPeriod: "contact,account,accounting_period",
21
18
  ContactAccountCompany: "contact,account,company",
19
+ ContactAccountCompanyAccountingPeriod: "contact,account,company,accounting_period",
20
+ ContactAccountingPeriod: "contact,accounting_period",
22
21
  ContactCompany: "contact,company",
22
+ ContactCompanyAccountingPeriod: "contact,company,accounting_period",
23
23
  TrackingCategories: "tracking_categories",
24
24
  TrackingCategoriesAccount: "tracking_categories,account",
25
+ TrackingCategoriesAccountAccountingPeriod: "tracking_categories,account,accounting_period",
25
26
  TrackingCategoriesAccountCompany: "tracking_categories,account,company",
26
- TrackingCategoriesAppliedToLines: "tracking_categories,applied_to_lines",
27
- TrackingCategoriesAppliedToLinesAccount: "tracking_categories,applied_to_lines,account",
28
- TrackingCategoriesAppliedToLinesAccountCompany: "tracking_categories,applied_to_lines,account,company",
29
- TrackingCategoriesAppliedToLinesCompany: "tracking_categories,applied_to_lines,company",
30
- TrackingCategoriesAppliedToLinesContact: "tracking_categories,applied_to_lines,contact",
31
- TrackingCategoriesAppliedToLinesContactAccount: "tracking_categories,applied_to_lines,contact,account",
32
- TrackingCategoriesAppliedToLinesContactAccountCompany: "tracking_categories,applied_to_lines,contact,account,company",
33
- TrackingCategoriesAppliedToLinesContactCompany: "tracking_categories,applied_to_lines,contact,company",
27
+ TrackingCategoriesAccountCompanyAccountingPeriod: "tracking_categories,account,company,accounting_period",
28
+ TrackingCategoriesAccountingPeriod: "tracking_categories,accounting_period",
34
29
  TrackingCategoriesCompany: "tracking_categories,company",
30
+ TrackingCategoriesCompanyAccountingPeriod: "tracking_categories,company,accounting_period",
35
31
  TrackingCategoriesContact: "tracking_categories,contact",
36
32
  TrackingCategoriesContactAccount: "tracking_categories,contact,account",
33
+ TrackingCategoriesContactAccountAccountingPeriod: "tracking_categories,contact,account,accounting_period",
37
34
  TrackingCategoriesContactAccountCompany: "tracking_categories,contact,account,company",
35
+ TrackingCategoriesContactAccountCompanyAccountingPeriod: "tracking_categories,contact,account,company,accounting_period",
36
+ TrackingCategoriesContactAccountingPeriod: "tracking_categories,contact,accounting_period",
38
37
  TrackingCategoriesContactCompany: "tracking_categories,contact,company",
38
+ TrackingCategoriesContactCompanyAccountingPeriod: "tracking_categories,contact,company,accounting_period",
39
39
  };
@@ -1,37 +1,37 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
- export declare type PaymentsRetrieveRequestExpand = "account" | "account,company" | "applied_to_lines" | "applied_to_lines,account" | "applied_to_lines,account,company" | "applied_to_lines,company" | "applied_to_lines,contact" | "applied_to_lines,contact,account" | "applied_to_lines,contact,account,company" | "applied_to_lines,contact,company" | "company" | "contact" | "contact,account" | "contact,account,company" | "contact,company" | "tracking_categories" | "tracking_categories,account" | "tracking_categories,account,company" | "tracking_categories,applied_to_lines" | "tracking_categories,applied_to_lines,account" | "tracking_categories,applied_to_lines,account,company" | "tracking_categories,applied_to_lines,company" | "tracking_categories,applied_to_lines,contact" | "tracking_categories,applied_to_lines,contact,account" | "tracking_categories,applied_to_lines,contact,account,company" | "tracking_categories,applied_to_lines,contact,company" | "tracking_categories,company" | "tracking_categories,contact" | "tracking_categories,contact,account" | "tracking_categories,contact,account,company" | "tracking_categories,contact,company";
4
+ export declare type PaymentsRetrieveRequestExpand = "account" | "account,accounting_period" | "account,company" | "account,company,accounting_period" | "accounting_period" | "company" | "company,accounting_period" | "contact" | "contact,account" | "contact,account,accounting_period" | "contact,account,company" | "contact,account,company,accounting_period" | "contact,accounting_period" | "contact,company" | "contact,company,accounting_period" | "tracking_categories" | "tracking_categories,account" | "tracking_categories,account,accounting_period" | "tracking_categories,account,company" | "tracking_categories,account,company,accounting_period" | "tracking_categories,accounting_period" | "tracking_categories,company" | "tracking_categories,company,accounting_period" | "tracking_categories,contact" | "tracking_categories,contact,account" | "tracking_categories,contact,account,accounting_period" | "tracking_categories,contact,account,company" | "tracking_categories,contact,account,company,accounting_period" | "tracking_categories,contact,accounting_period" | "tracking_categories,contact,company" | "tracking_categories,contact,company,accounting_period";
5
5
  export declare const PaymentsRetrieveRequestExpand: {
6
6
  readonly Account: "account";
7
+ readonly AccountAccountingPeriod: "account,accounting_period";
7
8
  readonly AccountCompany: "account,company";
8
- readonly AppliedToLines: "applied_to_lines";
9
- readonly AppliedToLinesAccount: "applied_to_lines,account";
10
- readonly AppliedToLinesAccountCompany: "applied_to_lines,account,company";
11
- readonly AppliedToLinesCompany: "applied_to_lines,company";
12
- readonly AppliedToLinesContact: "applied_to_lines,contact";
13
- readonly AppliedToLinesContactAccount: "applied_to_lines,contact,account";
14
- readonly AppliedToLinesContactAccountCompany: "applied_to_lines,contact,account,company";
15
- readonly AppliedToLinesContactCompany: "applied_to_lines,contact,company";
9
+ readonly AccountCompanyAccountingPeriod: "account,company,accounting_period";
10
+ readonly AccountingPeriod: "accounting_period";
16
11
  readonly Company: "company";
12
+ readonly CompanyAccountingPeriod: "company,accounting_period";
17
13
  readonly Contact: "contact";
18
14
  readonly ContactAccount: "contact,account";
15
+ readonly ContactAccountAccountingPeriod: "contact,account,accounting_period";
19
16
  readonly ContactAccountCompany: "contact,account,company";
17
+ readonly ContactAccountCompanyAccountingPeriod: "contact,account,company,accounting_period";
18
+ readonly ContactAccountingPeriod: "contact,accounting_period";
20
19
  readonly ContactCompany: "contact,company";
20
+ readonly ContactCompanyAccountingPeriod: "contact,company,accounting_period";
21
21
  readonly TrackingCategories: "tracking_categories";
22
22
  readonly TrackingCategoriesAccount: "tracking_categories,account";
23
+ readonly TrackingCategoriesAccountAccountingPeriod: "tracking_categories,account,accounting_period";
23
24
  readonly TrackingCategoriesAccountCompany: "tracking_categories,account,company";
24
- readonly TrackingCategoriesAppliedToLines: "tracking_categories,applied_to_lines";
25
- readonly TrackingCategoriesAppliedToLinesAccount: "tracking_categories,applied_to_lines,account";
26
- readonly TrackingCategoriesAppliedToLinesAccountCompany: "tracking_categories,applied_to_lines,account,company";
27
- readonly TrackingCategoriesAppliedToLinesCompany: "tracking_categories,applied_to_lines,company";
28
- readonly TrackingCategoriesAppliedToLinesContact: "tracking_categories,applied_to_lines,contact";
29
- readonly TrackingCategoriesAppliedToLinesContactAccount: "tracking_categories,applied_to_lines,contact,account";
30
- readonly TrackingCategoriesAppliedToLinesContactAccountCompany: "tracking_categories,applied_to_lines,contact,account,company";
31
- readonly TrackingCategoriesAppliedToLinesContactCompany: "tracking_categories,applied_to_lines,contact,company";
25
+ readonly TrackingCategoriesAccountCompanyAccountingPeriod: "tracking_categories,account,company,accounting_period";
26
+ readonly TrackingCategoriesAccountingPeriod: "tracking_categories,accounting_period";
32
27
  readonly TrackingCategoriesCompany: "tracking_categories,company";
28
+ readonly TrackingCategoriesCompanyAccountingPeriod: "tracking_categories,company,accounting_period";
33
29
  readonly TrackingCategoriesContact: "tracking_categories,contact";
34
30
  readonly TrackingCategoriesContactAccount: "tracking_categories,contact,account";
31
+ readonly TrackingCategoriesContactAccountAccountingPeriod: "tracking_categories,contact,account,accounting_period";
35
32
  readonly TrackingCategoriesContactAccountCompany: "tracking_categories,contact,account,company";
33
+ readonly TrackingCategoriesContactAccountCompanyAccountingPeriod: "tracking_categories,contact,account,company,accounting_period";
34
+ readonly TrackingCategoriesContactAccountingPeriod: "tracking_categories,contact,accounting_period";
36
35
  readonly TrackingCategoriesContactCompany: "tracking_categories,contact,company";
36
+ readonly TrackingCategoriesContactCompanyAccountingPeriod: "tracking_categories,contact,company,accounting_period";
37
37
  };
@@ -6,34 +6,34 @@ Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.PaymentsRetrieveRequestExpand = void 0;
7
7
  exports.PaymentsRetrieveRequestExpand = {
8
8
  Account: "account",
9
+ AccountAccountingPeriod: "account,accounting_period",
9
10
  AccountCompany: "account,company",
10
- AppliedToLines: "applied_to_lines",
11
- AppliedToLinesAccount: "applied_to_lines,account",
12
- AppliedToLinesAccountCompany: "applied_to_lines,account,company",
13
- AppliedToLinesCompany: "applied_to_lines,company",
14
- AppliedToLinesContact: "applied_to_lines,contact",
15
- AppliedToLinesContactAccount: "applied_to_lines,contact,account",
16
- AppliedToLinesContactAccountCompany: "applied_to_lines,contact,account,company",
17
- AppliedToLinesContactCompany: "applied_to_lines,contact,company",
11
+ AccountCompanyAccountingPeriod: "account,company,accounting_period",
12
+ AccountingPeriod: "accounting_period",
18
13
  Company: "company",
14
+ CompanyAccountingPeriod: "company,accounting_period",
19
15
  Contact: "contact",
20
16
  ContactAccount: "contact,account",
17
+ ContactAccountAccountingPeriod: "contact,account,accounting_period",
21
18
  ContactAccountCompany: "contact,account,company",
19
+ ContactAccountCompanyAccountingPeriod: "contact,account,company,accounting_period",
20
+ ContactAccountingPeriod: "contact,accounting_period",
22
21
  ContactCompany: "contact,company",
22
+ ContactCompanyAccountingPeriod: "contact,company,accounting_period",
23
23
  TrackingCategories: "tracking_categories",
24
24
  TrackingCategoriesAccount: "tracking_categories,account",
25
+ TrackingCategoriesAccountAccountingPeriod: "tracking_categories,account,accounting_period",
25
26
  TrackingCategoriesAccountCompany: "tracking_categories,account,company",
26
- TrackingCategoriesAppliedToLines: "tracking_categories,applied_to_lines",
27
- TrackingCategoriesAppliedToLinesAccount: "tracking_categories,applied_to_lines,account",
28
- TrackingCategoriesAppliedToLinesAccountCompany: "tracking_categories,applied_to_lines,account,company",
29
- TrackingCategoriesAppliedToLinesCompany: "tracking_categories,applied_to_lines,company",
30
- TrackingCategoriesAppliedToLinesContact: "tracking_categories,applied_to_lines,contact",
31
- TrackingCategoriesAppliedToLinesContactAccount: "tracking_categories,applied_to_lines,contact,account",
32
- TrackingCategoriesAppliedToLinesContactAccountCompany: "tracking_categories,applied_to_lines,contact,account,company",
33
- TrackingCategoriesAppliedToLinesContactCompany: "tracking_categories,applied_to_lines,contact,company",
27
+ TrackingCategoriesAccountCompanyAccountingPeriod: "tracking_categories,account,company,accounting_period",
28
+ TrackingCategoriesAccountingPeriod: "tracking_categories,accounting_period",
34
29
  TrackingCategoriesCompany: "tracking_categories,company",
30
+ TrackingCategoriesCompanyAccountingPeriod: "tracking_categories,company,accounting_period",
35
31
  TrackingCategoriesContact: "tracking_categories,contact",
36
32
  TrackingCategoriesContactAccount: "tracking_categories,contact,account",
33
+ TrackingCategoriesContactAccountAccountingPeriod: "tracking_categories,contact,account,accounting_period",
37
34
  TrackingCategoriesContactAccountCompany: "tracking_categories,contact,account,company",
35
+ TrackingCategoriesContactAccountCompanyAccountingPeriod: "tracking_categories,contact,account,company,accounting_period",
36
+ TrackingCategoriesContactAccountingPeriod: "tracking_categories,contact,accounting_period",
38
37
  TrackingCategoriesContactCompany: "tracking_categories,contact,company",
38
+ TrackingCategoriesContactCompanyAccountingPeriod: "tracking_categories,contact,company,accounting_period",
39
39
  };
@@ -5,7 +5,9 @@ import * as Merge from "../../..";
5
5
  /**
6
6
  * # The PurchaseOrder Object
7
7
  * ### Description
8
- * The `PurchaseOrder` object is a record of request for a product or service between a buyer and seller.
8
+ * A `PurchaseOrder` represents a request to purchase goods or services from a vendor. It outlines the details of the purchase, such as the items or services requested, quantities, prices, and delivery details.
9
+ *
10
+ * A `PurchaseOrder` is a crucial component of the procurement process, but does not typically result in any impact on the company’s general ledger. The general ledger is typically only affected when the `PurchaseOrder` is fulfilled as an *Accounts Payable* Invoice object.
9
11
  *
10
12
  * ### Usage Example
11
13
  * Fetch from the `LIST PurchaseOrders` endpoint and view a company's purchase orders.
@@ -358,11 +360,14 @@ export interface PurchaseOrder {
358
360
  remoteCreatedAt?: Date;
359
361
  /** When the third party's purchase order note was updated. */
360
362
  remoteUpdatedAt?: Date;
361
- /** Indicates whether or not this object has been deleted by third party webhooks. */
363
+ /** Indicates whether or not this object has been deleted in the third party platform. */
362
364
  remoteWasDeleted?: boolean;
365
+ /** The accounting period that the PurchaseOrder was generated in. */
366
+ accountingPeriod?: Merge.accounting.PurchaseOrderAccountingPeriod;
363
367
  id?: string;
364
368
  /** The third-party API ID of the matching object. */
365
369
  remoteId?: string;
370
+ createdAt?: Date;
366
371
  /** This is the datetime that this object was last updated by Merge */
367
372
  modifiedAt?: Date;
368
373
  fieldMappings?: Record<string, unknown>;
@@ -0,0 +1,8 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as Merge from "../../..";
5
+ /**
6
+ * The accounting period that the PurchaseOrder was generated in.
7
+ */
8
+ export declare type PurchaseOrderAccountingPeriod = string | Merge.accounting.AccountingPeriod;
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * This file was auto-generated by Fern from our API Definition.
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -345,6 +345,9 @@ export interface PurchaseOrderLineItem {
345
345
  exchangeRate?: string;
346
346
  /** The company the purchase order line item belongs to. */
347
347
  company?: string;
348
+ /** Indicates whether or not this object has been deleted in the third party platform. */
349
+ remoteWasDeleted?: boolean;
350
+ createdAt?: Date;
348
351
  /** This is the datetime that this object was last updated by Merge */
349
352
  modifiedAt?: Date;
350
353
  }
@@ -1,37 +1,69 @@
1
1
  /**
2
2
  * This file was auto-generated by Fern from our API Definition.
3
3
  */
4
- export declare type PurchaseOrdersListRequestExpand = "company" | "delivery_address" | "delivery_address,company" | "delivery_address,vendor" | "delivery_address,vendor,company" | "line_items" | "line_items,company" | "line_items,delivery_address" | "line_items,delivery_address,company" | "line_items,delivery_address,vendor" | "line_items,delivery_address,vendor,company" | "line_items,tracking_categories" | "line_items,tracking_categories,company" | "line_items,tracking_categories,delivery_address" | "line_items,tracking_categories,delivery_address,company" | "line_items,tracking_categories,delivery_address,vendor" | "line_items,tracking_categories,delivery_address,vendor,company" | "line_items,tracking_categories,vendor" | "line_items,tracking_categories,vendor,company" | "line_items,vendor" | "line_items,vendor,company" | "tracking_categories" | "tracking_categories,company" | "tracking_categories,delivery_address" | "tracking_categories,delivery_address,company" | "tracking_categories,delivery_address,vendor" | "tracking_categories,delivery_address,vendor,company" | "tracking_categories,vendor" | "tracking_categories,vendor,company" | "vendor" | "vendor,company";
4
+ export declare type PurchaseOrdersListRequestExpand = "accounting_period" | "company" | "company,accounting_period" | "delivery_address" | "delivery_address,accounting_period" | "delivery_address,company" | "delivery_address,company,accounting_period" | "delivery_address,vendor" | "delivery_address,vendor,accounting_period" | "delivery_address,vendor,company" | "delivery_address,vendor,company,accounting_period" | "line_items" | "line_items,accounting_period" | "line_items,company" | "line_items,company,accounting_period" | "line_items,delivery_address" | "line_items,delivery_address,accounting_period" | "line_items,delivery_address,company" | "line_items,delivery_address,company,accounting_period" | "line_items,delivery_address,vendor" | "line_items,delivery_address,vendor,accounting_period" | "line_items,delivery_address,vendor,company" | "line_items,delivery_address,vendor,company,accounting_period" | "line_items,tracking_categories" | "line_items,tracking_categories,accounting_period" | "line_items,tracking_categories,company" | "line_items,tracking_categories,company,accounting_period" | "line_items,tracking_categories,delivery_address" | "line_items,tracking_categories,delivery_address,accounting_period" | "line_items,tracking_categories,delivery_address,company" | "line_items,tracking_categories,delivery_address,company,accounting_period" | "line_items,tracking_categories,delivery_address,vendor" | "line_items,tracking_categories,delivery_address,vendor,accounting_period" | "line_items,tracking_categories,delivery_address,vendor,company" | "line_items,tracking_categories,delivery_address,vendor,company,accounting_period" | "line_items,tracking_categories,vendor" | "line_items,tracking_categories,vendor,accounting_period" | "line_items,tracking_categories,vendor,company" | "line_items,tracking_categories,vendor,company,accounting_period" | "line_items,vendor" | "line_items,vendor,accounting_period" | "line_items,vendor,company" | "line_items,vendor,company,accounting_period" | "tracking_categories" | "tracking_categories,accounting_period" | "tracking_categories,company" | "tracking_categories,company,accounting_period" | "tracking_categories,delivery_address" | "tracking_categories,delivery_address,accounting_period" | "tracking_categories,delivery_address,company" | "tracking_categories,delivery_address,company,accounting_period" | "tracking_categories,delivery_address,vendor" | "tracking_categories,delivery_address,vendor,accounting_period" | "tracking_categories,delivery_address,vendor,company" | "tracking_categories,delivery_address,vendor,company,accounting_period" | "tracking_categories,vendor" | "tracking_categories,vendor,accounting_period" | "tracking_categories,vendor,company" | "tracking_categories,vendor,company,accounting_period" | "vendor" | "vendor,accounting_period" | "vendor,company" | "vendor,company,accounting_period";
5
5
  export declare const PurchaseOrdersListRequestExpand: {
6
+ readonly AccountingPeriod: "accounting_period";
6
7
  readonly Company: "company";
8
+ readonly CompanyAccountingPeriod: "company,accounting_period";
7
9
  readonly DeliveryAddress: "delivery_address";
10
+ readonly DeliveryAddressAccountingPeriod: "delivery_address,accounting_period";
8
11
  readonly DeliveryAddressCompany: "delivery_address,company";
12
+ readonly DeliveryAddressCompanyAccountingPeriod: "delivery_address,company,accounting_period";
9
13
  readonly DeliveryAddressVendor: "delivery_address,vendor";
14
+ readonly DeliveryAddressVendorAccountingPeriod: "delivery_address,vendor,accounting_period";
10
15
  readonly DeliveryAddressVendorCompany: "delivery_address,vendor,company";
16
+ readonly DeliveryAddressVendorCompanyAccountingPeriod: "delivery_address,vendor,company,accounting_period";
11
17
  readonly LineItems: "line_items";
18
+ readonly LineItemsAccountingPeriod: "line_items,accounting_period";
12
19
  readonly LineItemsCompany: "line_items,company";
20
+ readonly LineItemsCompanyAccountingPeriod: "line_items,company,accounting_period";
13
21
  readonly LineItemsDeliveryAddress: "line_items,delivery_address";
22
+ readonly LineItemsDeliveryAddressAccountingPeriod: "line_items,delivery_address,accounting_period";
14
23
  readonly LineItemsDeliveryAddressCompany: "line_items,delivery_address,company";
24
+ readonly LineItemsDeliveryAddressCompanyAccountingPeriod: "line_items,delivery_address,company,accounting_period";
15
25
  readonly LineItemsDeliveryAddressVendor: "line_items,delivery_address,vendor";
26
+ readonly LineItemsDeliveryAddressVendorAccountingPeriod: "line_items,delivery_address,vendor,accounting_period";
16
27
  readonly LineItemsDeliveryAddressVendorCompany: "line_items,delivery_address,vendor,company";
28
+ readonly LineItemsDeliveryAddressVendorCompanyAccountingPeriod: "line_items,delivery_address,vendor,company,accounting_period";
17
29
  readonly LineItemsTrackingCategories: "line_items,tracking_categories";
30
+ readonly LineItemsTrackingCategoriesAccountingPeriod: "line_items,tracking_categories,accounting_period";
18
31
  readonly LineItemsTrackingCategoriesCompany: "line_items,tracking_categories,company";
32
+ readonly LineItemsTrackingCategoriesCompanyAccountingPeriod: "line_items,tracking_categories,company,accounting_period";
19
33
  readonly LineItemsTrackingCategoriesDeliveryAddress: "line_items,tracking_categories,delivery_address";
34
+ readonly LineItemsTrackingCategoriesDeliveryAddressAccountingPeriod: "line_items,tracking_categories,delivery_address,accounting_period";
20
35
  readonly LineItemsTrackingCategoriesDeliveryAddressCompany: "line_items,tracking_categories,delivery_address,company";
36
+ readonly LineItemsTrackingCategoriesDeliveryAddressCompanyAccountingPeriod: "line_items,tracking_categories,delivery_address,company,accounting_period";
21
37
  readonly LineItemsTrackingCategoriesDeliveryAddressVendor: "line_items,tracking_categories,delivery_address,vendor";
38
+ readonly LineItemsTrackingCategoriesDeliveryAddressVendorAccountingPeriod: "line_items,tracking_categories,delivery_address,vendor,accounting_period";
22
39
  readonly LineItemsTrackingCategoriesDeliveryAddressVendorCompany: "line_items,tracking_categories,delivery_address,vendor,company";
40
+ readonly LineItemsTrackingCategoriesDeliveryAddressVendorCompanyAccountingPeriod: "line_items,tracking_categories,delivery_address,vendor,company,accounting_period";
23
41
  readonly LineItemsTrackingCategoriesVendor: "line_items,tracking_categories,vendor";
42
+ readonly LineItemsTrackingCategoriesVendorAccountingPeriod: "line_items,tracking_categories,vendor,accounting_period";
24
43
  readonly LineItemsTrackingCategoriesVendorCompany: "line_items,tracking_categories,vendor,company";
44
+ readonly LineItemsTrackingCategoriesVendorCompanyAccountingPeriod: "line_items,tracking_categories,vendor,company,accounting_period";
25
45
  readonly LineItemsVendor: "line_items,vendor";
46
+ readonly LineItemsVendorAccountingPeriod: "line_items,vendor,accounting_period";
26
47
  readonly LineItemsVendorCompany: "line_items,vendor,company";
48
+ readonly LineItemsVendorCompanyAccountingPeriod: "line_items,vendor,company,accounting_period";
27
49
  readonly TrackingCategories: "tracking_categories";
50
+ readonly TrackingCategoriesAccountingPeriod: "tracking_categories,accounting_period";
28
51
  readonly TrackingCategoriesCompany: "tracking_categories,company";
52
+ readonly TrackingCategoriesCompanyAccountingPeriod: "tracking_categories,company,accounting_period";
29
53
  readonly TrackingCategoriesDeliveryAddress: "tracking_categories,delivery_address";
54
+ readonly TrackingCategoriesDeliveryAddressAccountingPeriod: "tracking_categories,delivery_address,accounting_period";
30
55
  readonly TrackingCategoriesDeliveryAddressCompany: "tracking_categories,delivery_address,company";
56
+ readonly TrackingCategoriesDeliveryAddressCompanyAccountingPeriod: "tracking_categories,delivery_address,company,accounting_period";
31
57
  readonly TrackingCategoriesDeliveryAddressVendor: "tracking_categories,delivery_address,vendor";
58
+ readonly TrackingCategoriesDeliveryAddressVendorAccountingPeriod: "tracking_categories,delivery_address,vendor,accounting_period";
32
59
  readonly TrackingCategoriesDeliveryAddressVendorCompany: "tracking_categories,delivery_address,vendor,company";
60
+ readonly TrackingCategoriesDeliveryAddressVendorCompanyAccountingPeriod: "tracking_categories,delivery_address,vendor,company,accounting_period";
33
61
  readonly TrackingCategoriesVendor: "tracking_categories,vendor";
62
+ readonly TrackingCategoriesVendorAccountingPeriod: "tracking_categories,vendor,accounting_period";
34
63
  readonly TrackingCategoriesVendorCompany: "tracking_categories,vendor,company";
64
+ readonly TrackingCategoriesVendorCompanyAccountingPeriod: "tracking_categories,vendor,company,accounting_period";
35
65
  readonly Vendor: "vendor";
66
+ readonly VendorAccountingPeriod: "vendor,accounting_period";
36
67
  readonly VendorCompany: "vendor,company";
68
+ readonly VendorCompanyAccountingPeriod: "vendor,company,accounting_period";
37
69
  };
@@ -5,35 +5,67 @@
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.PurchaseOrdersListRequestExpand = void 0;
7
7
  exports.PurchaseOrdersListRequestExpand = {
8
+ AccountingPeriod: "accounting_period",
8
9
  Company: "company",
10
+ CompanyAccountingPeriod: "company,accounting_period",
9
11
  DeliveryAddress: "delivery_address",
12
+ DeliveryAddressAccountingPeriod: "delivery_address,accounting_period",
10
13
  DeliveryAddressCompany: "delivery_address,company",
14
+ DeliveryAddressCompanyAccountingPeriod: "delivery_address,company,accounting_period",
11
15
  DeliveryAddressVendor: "delivery_address,vendor",
16
+ DeliveryAddressVendorAccountingPeriod: "delivery_address,vendor,accounting_period",
12
17
  DeliveryAddressVendorCompany: "delivery_address,vendor,company",
18
+ DeliveryAddressVendorCompanyAccountingPeriod: "delivery_address,vendor,company,accounting_period",
13
19
  LineItems: "line_items",
20
+ LineItemsAccountingPeriod: "line_items,accounting_period",
14
21
  LineItemsCompany: "line_items,company",
22
+ LineItemsCompanyAccountingPeriod: "line_items,company,accounting_period",
15
23
  LineItemsDeliveryAddress: "line_items,delivery_address",
24
+ LineItemsDeliveryAddressAccountingPeriod: "line_items,delivery_address,accounting_period",
16
25
  LineItemsDeliveryAddressCompany: "line_items,delivery_address,company",
26
+ LineItemsDeliveryAddressCompanyAccountingPeriod: "line_items,delivery_address,company,accounting_period",
17
27
  LineItemsDeliveryAddressVendor: "line_items,delivery_address,vendor",
28
+ LineItemsDeliveryAddressVendorAccountingPeriod: "line_items,delivery_address,vendor,accounting_period",
18
29
  LineItemsDeliveryAddressVendorCompany: "line_items,delivery_address,vendor,company",
30
+ LineItemsDeliveryAddressVendorCompanyAccountingPeriod: "line_items,delivery_address,vendor,company,accounting_period",
19
31
  LineItemsTrackingCategories: "line_items,tracking_categories",
32
+ LineItemsTrackingCategoriesAccountingPeriod: "line_items,tracking_categories,accounting_period",
20
33
  LineItemsTrackingCategoriesCompany: "line_items,tracking_categories,company",
34
+ LineItemsTrackingCategoriesCompanyAccountingPeriod: "line_items,tracking_categories,company,accounting_period",
21
35
  LineItemsTrackingCategoriesDeliveryAddress: "line_items,tracking_categories,delivery_address",
36
+ LineItemsTrackingCategoriesDeliveryAddressAccountingPeriod: "line_items,tracking_categories,delivery_address,accounting_period",
22
37
  LineItemsTrackingCategoriesDeliveryAddressCompany: "line_items,tracking_categories,delivery_address,company",
38
+ LineItemsTrackingCategoriesDeliveryAddressCompanyAccountingPeriod: "line_items,tracking_categories,delivery_address,company,accounting_period",
23
39
  LineItemsTrackingCategoriesDeliveryAddressVendor: "line_items,tracking_categories,delivery_address,vendor",
40
+ LineItemsTrackingCategoriesDeliveryAddressVendorAccountingPeriod: "line_items,tracking_categories,delivery_address,vendor,accounting_period",
24
41
  LineItemsTrackingCategoriesDeliveryAddressVendorCompany: "line_items,tracking_categories,delivery_address,vendor,company",
42
+ LineItemsTrackingCategoriesDeliveryAddressVendorCompanyAccountingPeriod: "line_items,tracking_categories,delivery_address,vendor,company,accounting_period",
25
43
  LineItemsTrackingCategoriesVendor: "line_items,tracking_categories,vendor",
44
+ LineItemsTrackingCategoriesVendorAccountingPeriod: "line_items,tracking_categories,vendor,accounting_period",
26
45
  LineItemsTrackingCategoriesVendorCompany: "line_items,tracking_categories,vendor,company",
46
+ LineItemsTrackingCategoriesVendorCompanyAccountingPeriod: "line_items,tracking_categories,vendor,company,accounting_period",
27
47
  LineItemsVendor: "line_items,vendor",
48
+ LineItemsVendorAccountingPeriod: "line_items,vendor,accounting_period",
28
49
  LineItemsVendorCompany: "line_items,vendor,company",
50
+ LineItemsVendorCompanyAccountingPeriod: "line_items,vendor,company,accounting_period",
29
51
  TrackingCategories: "tracking_categories",
52
+ TrackingCategoriesAccountingPeriod: "tracking_categories,accounting_period",
30
53
  TrackingCategoriesCompany: "tracking_categories,company",
54
+ TrackingCategoriesCompanyAccountingPeriod: "tracking_categories,company,accounting_period",
31
55
  TrackingCategoriesDeliveryAddress: "tracking_categories,delivery_address",
56
+ TrackingCategoriesDeliveryAddressAccountingPeriod: "tracking_categories,delivery_address,accounting_period",
32
57
  TrackingCategoriesDeliveryAddressCompany: "tracking_categories,delivery_address,company",
58
+ TrackingCategoriesDeliveryAddressCompanyAccountingPeriod: "tracking_categories,delivery_address,company,accounting_period",
33
59
  TrackingCategoriesDeliveryAddressVendor: "tracking_categories,delivery_address,vendor",
60
+ TrackingCategoriesDeliveryAddressVendorAccountingPeriod: "tracking_categories,delivery_address,vendor,accounting_period",
34
61
  TrackingCategoriesDeliveryAddressVendorCompany: "tracking_categories,delivery_address,vendor,company",
62
+ TrackingCategoriesDeliveryAddressVendorCompanyAccountingPeriod: "tracking_categories,delivery_address,vendor,company,accounting_period",
35
63
  TrackingCategoriesVendor: "tracking_categories,vendor",
64
+ TrackingCategoriesVendorAccountingPeriod: "tracking_categories,vendor,accounting_period",
36
65
  TrackingCategoriesVendorCompany: "tracking_categories,vendor,company",
66
+ TrackingCategoriesVendorCompanyAccountingPeriod: "tracking_categories,vendor,company,accounting_period",
37
67
  Vendor: "vendor",
68
+ VendorAccountingPeriod: "vendor,accounting_period",
38
69
  VendorCompany: "vendor,company",
70
+ VendorCompanyAccountingPeriod: "vendor,company,accounting_period",
39
71
  };